Add polish translation

This commit is contained in:
Christian Pauly 2020-05-09 15:29:31 +02:00
commit 2c617ed779
5 changed files with 1712 additions and 2 deletions

View file

@ -18,12 +18,14 @@ import 'package:intl/src/intl_helpers.dart';
import 'messages_de.dart' as messages_de;
import 'messages_hu.dart' as messages_hu;
import 'messages_messages.dart' as messages_messages;
import 'messages_pl.dart' as messages_pl;
typedef Future<dynamic> LibraryLoader();
Map<String, LibraryLoader> _deferredLibraries = {
'de': () => new Future.value(null),
'hu': () => new Future.value(null),
'messages': () => new Future.value(null),
'pl': () => new Future.value(null),
};
MessageLookupByLibrary _findExact(String localeName) {
@ -34,6 +36,8 @@ MessageLookupByLibrary _findExact(String localeName) {
return messages_hu.messages;
case 'messages':
return messages_messages.messages;
case 'pl':
return messages_pl.messages;
default:
return null;
}