minor fix based on the comment of Adrian Marciniuk, on issue #56

This commit is contained in:
Horvath Gergely 2020-05-11 21:19:26 +02:00
parent c3540fb990
commit 1b7f7c971a
1 changed files with 1 additions and 1 deletions

View File

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