forked from avinashkranjan/Friday
-
Notifications
You must be signed in to change notification settings - Fork 0
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
4 changed files
with
290 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 KannadaTexts { | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
class MarathiTexts { | ||
|
||
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