chore: rename ARB files and add Spanish/Portuguese languages

This commit is contained in:
zarzet
2026-01-19 02:17:32 +07:00
parent bc3055f6e1
commit 3c118f74e4
4 changed files with 6 additions and 0 deletions
+2
View File
@@ -4,6 +4,8 @@
### Added
- **New Languages**: Added Spanish (es) and Portuguese (pt) translations
- **Quick Search Provider Switcher**: Dropdown menu in search bar for instant provider switching
- Tap the search icon to reveal a dropdown menu with all available search providers
- Shows default provider (Deezer/Spotify based on metadata source setting) at the top
+4
View File
@@ -15,12 +15,16 @@ const int translationThreshold = 70;
const List<Locale> filteredSupportedLocales = <Locale>[
Locale('en'),
Locale('ru'),
Locale('es', 'ES'),
Locale('id'),
Locale('pt', 'PT'),
];
/// Set of locale codes for quick lookup.
const Set<String> filteredLocaleCodes = <String>{
'en',
'ru',
'es_ES',
'id',
'pt_PT',
};