mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-04-03 16:10:41 +00:00
style: alphabetical sorting of languages
This commit is contained in:
parent
2b526c3f1b
commit
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