-
-
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.
Merge pull request #404 from jaivsh/patch1
Added Arabic language support for the project
- Loading branch information
Showing
4 changed files
with
133 additions
and
57 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,43 @@ | ||
{ | ||
"friday": "الجمعة", | ||
"hellosir": "مرحباً يا سيدي!", | ||
"recentalerts": "تنبيهات حديثة", | ||
"viewall": "عرض الكل", | ||
"seefavourites": "عرض المفضلة", | ||
"search": "بحث", | ||
"recenthomework": "واجبات حديثة", | ||
"favourites": "المفضلة", | ||
"clearallfavourites": "مسح كل المفضلة", | ||
"hoursleft": "ساعات متبقية", | ||
"addnewclass": "إضافة صف دراسي جديد", | ||
"mode": "الوضع", | ||
"teachername": "اسم المعلم", | ||
"date": "تاريخ", | ||
"time": "وقت", | ||
"joinlink": "الانضمام عبر الرابط", | ||
"subject": "الموضوع", | ||
"save": "حفظ", | ||
"yourprofile": "ملفك الشخصي", | ||
"loading": "جاري التحميل...", | ||
"email": "البريد الإلكتروني", | ||
"bio": "السيرة الذاتية", | ||
"college": "الكلية", | ||
"course": "نوع الدورة", | ||
"departmentmajor": "القسم", | ||
"currentacademicyear": "السنة الأكاديمية الحالية", | ||
"gender": "الجنس", | ||
"age": "العمر", | ||
"logout": "تسجيل الخروج", | ||
"settings": "الإعدادات", | ||
"common": "شائع", | ||
"language": "اللغة", | ||
"lightmode": "وضع الإضاءة", | ||
"notifications": "الإشعارات", | ||
"notificationsdesc": "تفعيل أو تعطيل إشعارات التطبيق", | ||
"help": "المساعدة", | ||
"helpdesc": "راجع وحدة المساعدة للاستفسارات", | ||
"faqs": "الأسئلة الشائعة", | ||
"faqsdesc": "إرشادات الاستخدام الأساسية", | ||
"supportdevelopment": "دعم تطوير التطبيق", | ||
"supportdevelopmentdesc": "حل المشاكل، والإبلاغ عن الأخطاء، وما إلى ذلك." | ||
} |
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,84 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
class ArabicTexts { | ||
|
||
String get friday => 'الجمعة'; | ||
|
||
String get hellosir => 'مرحبًا سيدي!'; | ||
|
||
String get recentalerts => 'تنبيهات حديثة'; | ||
|
||
String get viewall => 'عرض الكل'; | ||
|
||
String get seefavourites => 'عرض المفضلة'; | ||
|
||
String get search => 'بحث'; | ||
|
||
String get recenthomework => 'واجبات حديثة'; | ||
|
||
String get favourites => 'المفضلة'; | ||
|
||
String get clearallfavourites => 'مسح كل المفضلة'; | ||
|
||
String get hoursleft => 'الساعات المتبقية'; | ||
|
||
String get addnewclass => 'إضافة صف جديد'; | ||
|
||
String get mode => 'الوضع'; | ||
|
||
String get teachername => 'اسم المعلم'; | ||
|
||
String get date => 'التاريخ'; | ||
|
||
String get time => 'الوقت'; | ||
|
||
String get joinlink => 'الانضمام عبر الرابط'; | ||
|
||
String get subject => 'الموضوع'; | ||
|
||
String get save => 'حفظ'; | ||
|
||
String get yourprofile => 'ملفك الشخصي'; | ||
|
||
String get loading => 'جاري التحميل...'; | ||
|
||
String get email => 'البريد الإلكتروني'; | ||
|
||
String get bio => 'السيرة الذاتية'; | ||
|
||
String get college => 'الكلية'; | ||
|
||
String get course => 'نوع الدورة'; | ||
|
||
String get departmentmajor => 'القسم'; | ||
|
||
String get currentacademicyear => 'العام الأكاديمي الحالي'; | ||
|
||
String get gender => 'الجنس'; | ||
|
||
String get age => 'العمر'; | ||
|
||
String get settings => 'الإعدادات'; | ||
|
||
String get common => 'مشترك'; | ||
|
||
String get language => 'اللغة'; | ||
|
||
String get lightmode => 'وضع الإضاءة'; | ||
|
||
String get notifications => 'الإشعارات'; | ||
|
||
String get notificationsdesc => 'تفعيل أو تعطيل إشعارات التطبيق'; | ||
|
||
String get help => 'المساعدة'; | ||
|
||
String get helpdesc => 'راجع وحدة المساعدة للاستفسارات'; | ||
|
||
String get faqs => 'الأسئلة الشائعة'; | ||
|
||
String get faqsdesc => 'إرشادات الاستخدام الأساسية'; | ||
|
||
String get supportdevelopment => 'دعم تطوير التطبيق'; | ||
|
||
String get supportdevelopmentdesc => 'حل المشاكل، والإبلاغ عن الأخطاء، وما إلى ذلك.'; | ||
} |
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
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