-
-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
class LocalizationsTexts { | ||
|
||
static var friday = "Friday"; | ||
|
||
static var hellosir = "Hello, Sir!"; | ||
|
||
static var recentalerts = "Recent Alerts"; | ||
|
||
static var viewall = "View all"; | ||
|
||
static var seefavourites = "SEE FAVOURITES"; | ||
|
||
static var search = "search"; | ||
|
||
static var recenthomework = "Recent Homework"; | ||
|
||
static var favourites = "Favourites"; | ||
|
||
static var clearallfavourites = "CLEAR ALL FAVOURITES"; | ||
|
||
static var hoursleft = "hours left"; | ||
|
||
static var addnewclass = "Add New Class"; | ||
|
||
static var mode = "Mode"; | ||
|
||
static var teachername = "Teacher Name"; | ||
|
||
static var date = "Date"; | ||
|
||
static var time = "Time"; | ||
|
||
static var joinlink = "Join Link"; | ||
|
||
static var subject = "Subject"; | ||
|
||
static var save = "Save"; | ||
|
||
static var yourprofile = "Your Profile"; | ||
|
||
static var loading = "Loading..."; | ||
|
||
static var email = "Email"; | ||
|
||
static var bio = "Bio"; | ||
|
||
static var college = "College"; | ||
|
||
static var course = "Course"; | ||
|
||
static var departmentmajor = "Department/Major"; | ||
|
||
static var currentacademicyear = "Current Academic Year"; | ||
|
||
static var gender = "Gender"; | ||
|
||
static var age = "Age"; | ||
|
||
static var settings = "Settings"; | ||
|
||
static var common = "Common"; | ||
|
||
static var language = "Language"; | ||
|
||
static var lightmode = "Light Mode"; | ||
|
||
static var notifications = "Notifications"; | ||
|
||
static var notificationsdesc = "Turn your app notifications on or off"; | ||
|
||
static var help = "Help"; | ||
|
||
static var helpdesc = "See our help modules for queries"; | ||
|
||
static var faqs = "FAQs"; | ||
|
||
static var faqsdesc = "Basic usage guidelines"; | ||
|
||
static var supportdevelopment = "Support Development"; | ||
|
||
static var supportdevelopmentdesc = "See latest issues and contribute to the project!"; | ||
} | ||
|