diff --git a/lib/l10n/supported_locales.dart b/lib/l10n/supported_locales.dart index 27d223d5..36595c93 100644 --- a/lib/l10n/supported_locales.dart +++ b/lib/l10n/supported_locales.dart @@ -14,23 +14,27 @@ const int translationThreshold = 70; /// Only these languages will be available in the app. const List filteredSupportedLocales = [ Locale('en'), - Locale('ru'), + Locale('fr'), + Locale('de'), Locale('es', 'ES'), - Locale('id'), - Locale('pt', 'PT'), - Locale('ja'), - Locale('tr'), Locale('uk'), + Locale('ru'), + Locale('tr'), + Locale('id'), + Locale('ja'), + Locale('pt', 'PT'), ]; /// Set of locale codes for quick lookup. const Set filteredLocaleCodes = { 'en', - 'ru', + 'fr', + 'de', 'es_ES', - 'id', - 'pt_PT', - 'ja', - 'tr', 'uk', + 'ru', + 'tr', + 'id', + 'ja', + 'pt_PT', };