mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-04-04 08:30:41 +00:00
Compare commits
2 commits
3f73cdb312
...
b94cded350
Author | SHA1 | Date | |
---|---|---|---|
![]() |
b94cded350 | ||
![]() |
04ded6c35f |
1 changed files with 3 additions and 3 deletions
|
@ -1,10 +1,12 @@
|
|||
enum SupportedLocale { en, fr, ru, zh, de }
|
||||
enum SupportedLocale { de, en, fr, ru, zh }
|
||||
|
||||
extension SupportedLocaleExtension on SupportedLocale {
|
||||
String get intlName => toString().replaceAll("SupportedLocale.", "");
|
||||
|
||||
String get localizedName {
|
||||
switch (this) {
|
||||
case SupportedLocale.de:
|
||||
return 'Deutsch';
|
||||
case SupportedLocale.en:
|
||||
return 'English';
|
||||
case SupportedLocale.fr:
|
||||
|
@ -13,8 +15,6 @@ extension SupportedLocaleExtension on SupportedLocale {
|
|||
return 'Русский';
|
||||
case SupportedLocale.zh:
|
||||
return '简体中文';
|
||||
case SupportedLocale.de:
|
||||
return 'Deutsch';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue