mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-04-04 08:30: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 {
|
extension SupportedLocaleExtension on SupportedLocale {
|
||||||
String get intlName => toString().replaceAll("SupportedLocale.", "");
|
String get intlName => toString().replaceAll("SupportedLocale.", "");
|
||||||
|
|
||||||
String get localizedName {
|
String get localizedName {
|
||||||
switch (this) {
|
switch (this) {
|
||||||
|
case SupportedLocale.de:
|
||||||
|
return 'Deutsch';
|
||||||
case SupportedLocale.en:
|
case SupportedLocale.en:
|
||||||
return 'English';
|
return 'English';
|
||||||
case SupportedLocale.fr:
|
case SupportedLocale.fr:
|
||||||
|
@ -13,8 +15,6 @@ extension SupportedLocaleExtension on SupportedLocale {
|
||||||
return 'Русский';
|
return 'Русский';
|
||||||
case SupportedLocale.zh:
|
case SupportedLocale.zh:
|
||||||
return '简体中文';
|
return '简体中文';
|
||||||
case SupportedLocale.de:
|
|
||||||
return 'Deutsch';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue