OLD | NEW |
---|---|
(Empty) | |
1 /** | |
2 * DO NOT EDIT. This is code generated via pkg/intl/generate_localized.dart | |
3 * This is a library that provides messages for a pt locale. All the | |
4 * messages from the main program should be duplicated here with the same | |
5 * function name. | |
6 */ | |
7 | |
8 library messages_pt; | |
9 import 'package:intl/intl.dart'; | |
shailentuli
2013/12/06 22:33:38
Unused import.
Alan Knight
2013/12/06 23:52:31
Done.
| |
10 import 'package:intl/message_lookup_by_library.dart'; | |
11 | |
12 final messages = new MessageLookup(); | |
13 | |
14 class MessageLookup extends MessageLookupByLibrary { | |
15 | |
16 get localeName => 'pt'; | |
17 static helloWorld() => "Olá, mundo do Dart!"; | |
18 | |
shailentuli
2013/12/06 22:33:38
Nit: extra blank line.
Alan Knight
2013/12/06 23:52:31
Done.
| |
19 | |
20 final messages = const { | |
21 "helloWorld" : helloWorld | |
22 }; | |
23 } | |
OLD | NEW |