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
class LanguageRepo { | |
// contains all the values. | |
// for readability when the translations are too much, consider moving all translations to their own files like | |
// en_US.dart and assign the en_US in the following line to the referenced value | |
static Map<String, String> en_US = { | |
"hello": "Hello", | |
"good_morning": "Good Morning", | |
"i_love_you": "I Love you", | |
}; | |
static Map<String, String> ny_NY = { |