aves/lib/widgets/settings/language/locales.dart
2022-01-11 21:53:05 +09:00

12 lines
308 B
Dart

// this class is kept minimal, without import
// so it can be reused in driver tests
class SupportedLocales {
static const languagesByLanguageCode = {
'de': 'Deutsch',
'en': 'English',
'es': 'Español (México)',
'fr': 'Français',
'ko': '한국어',
'ru': 'Русский',
};
}