From 7b248d8ab47a1759afb1eb8b4046db7018359314 Mon Sep 17 00:00:00 2001 From: zarzet Date: Thu, 4 Jun 2026 21:03:02 +0700 Subject: [PATCH] feat(l10n): enable French and German locales --- lib/l10n/supported_locales.dart | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) 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', };