Created
April 19, 2022 12:33
-
-
Save FlutterWiz/df7a712d663207a14a09aac5811a9877 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// first, set the language, then set the key and value. | |
const localizedValues = { | |
'en': { | |
"timeIsUpTitle": "Time is Up!", | |
"timeIsUpBody": "Wooosh, it's time to give a break!", | |
"reset": "Reset", | |
"stop": "Stop", | |
"start": "Start", | |
"hours": "Hours", | |
"minutes": "Minutes", | |
"seconds": "Seconds", | |
"pivaTimer": "Piva - Timer", | |
"timeIsZero": "The time can not be zero!", | |
"workingTimeText": "You have been worked for{}{}{}..." | |
}, | |
'tr': { | |
'timeIsUpTitle': 'Zaman doldu!', | |
"timeIsUpBody": "Heeey! Mola verme zamanı.", | |
"reset": "Sıfırla", | |
"stop": "Durdur", | |
"start": "Başlat", | |
"hours": "Saat", | |
"minutes": "Dakika", | |
"seconds": "Saniye", | |
"pivaTimer": "Piva - Zamanlayıcı", | |
"timeIsZero": "Zaman sıfır olamaz!", | |
"workingTimeText": "{}{}{} boyunca çalıştın..." | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment