Add new locales to array

This commit is contained in:
Sorunome 2020-06-26 10:56:37 +02:00
parent e91d0bbaaf
commit 8027011e32
No known key found for this signature in database
GPG Key ID: B19471D07FC9BE9C
1 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,8 @@ class AppLocalizationsDelegate extends LocalizationsDelegate<L10n> {
@override
bool isSupported(Locale locale) {
return ['en', 'de', 'hu', 'pl', 'fr'].contains(locale.languageCode);
return ['en', 'de', 'hu', 'pl', 'fr', 'cs', 'es', 'sk']
.contains(locale.languageCode);
}
@override