mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
485636c706
* added language picker * Create intl_ru.arb * Update README.md
28 lines
603 B
Dart
28 lines
603 B
Dart
import 'package:intl/intl.dart';
|
|
|
|
enum SupportedLocale { en, ru }
|
|
|
|
SupportedLocale get currentLanguage {
|
|
switch (Intl.getCurrentLocale()) {
|
|
case "en":
|
|
return SupportedLocale.en;
|
|
case "ru":
|
|
return SupportedLocale.ru;
|
|
default:
|
|
return SupportedLocale.en;
|
|
}
|
|
}
|
|
|
|
extension SupportedLocaleExtension on SupportedLocale {
|
|
String get intlName => toString().replaceAll("SupportedLocale.", "");
|
|
|
|
String get localizedName {
|
|
switch (this) {
|
|
case SupportedLocale.en:
|
|
return 'English';
|
|
case SupportedLocale.ru:
|
|
return 'Русский';
|
|
}
|
|
}
|
|
}
|
|
|