Skip to content

Commit

Permalink
Merge pull request #78 from mikropsoft/main
Browse files Browse the repository at this point in the history
Add tr locales
  • Loading branch information
simonoppowa committed Jun 1, 2024
2 parents 47daaa7 + a233cc4 commit 4d794fe
Show file tree
Hide file tree
Showing 4 changed files with 997 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/generated/intl/messages_all.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ import 'package:intl/src/intl_helpers.dart';

import 'messages_de.dart' as messages_de;
import 'messages_en.dart' as messages_en;
import 'messages_tr.dart' as messages_tr;

typedef Future<dynamic> LibraryLoader();
Map<String, LibraryLoader> _deferredLibraries = {
'de': () => new SynchronousFuture(null),
'en': () => new SynchronousFuture(null),
'tr': () => new SynchronousFuture(null),
};

MessageLookupByLibrary? _findExact(String localeName) {
Expand All @@ -31,6 +33,8 @@ MessageLookupByLibrary? _findExact(String localeName) {
return messages_de.messages;
case 'en':
return messages_en.messages;
case 'tr':
return messages_tr.messages;
default:
return null;
}
Expand Down
Loading

0 comments on commit 4d794fe

Please sign in to comment.