mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-04-04 16:40:41 +00:00

* l10n: add German translation * l10n: add German to supported locales * l10n(german): improve translation of "none" * l10n(german): change about title * style: alphabetical sorting of languages
20 lines
534 B
Dart
20 lines
534 B
Dart
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:
|
|
return 'Français';
|
|
case SupportedLocale.ru:
|
|
return 'Русский';
|
|
case SupportedLocale.zh:
|
|
return '简体中文';
|
|
}
|
|
}
|
|
}
|