-
-
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 #410 from jaivsh/patch7
Added Gujarati Language support for the project
- Loading branch information
Showing
3 changed files
with
167 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,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,123 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
class GujaratiTexts { | ||
|
||
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