| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * This is a program with various [Intl.message] messages. It just prints | 6 * This is a program with various [Intl.message] messages. It just prints |
| 7 * all of them, and is used for testing of message extraction, translation, | 7 * all of them, and is used for testing of message extraction, translation, |
| 8 * and code generation. | 8 * and code generation. |
| 9 */ | 9 */ |
| 10 library sample; | 10 library sample; |
| 11 | 11 |
| 12 import "package:intl/intl.dart"; | 12 import "package:intl/intl.dart"; |
| 13 import "package:intl/message_lookup_by_library.dart"; | 13 import "package:intl/message_lookup_by_library.dart"; |
| 14 import "dart:async"; | 14 import "dart:async"; |
| 15 import "package:intl/src/intl_helpers.dart"; | 15 import "package:intl/src/intl_helpers.dart"; |
| 16 import "messages_all.dart"; | 16 import "foo_messages_all.dart"; |
| 17 | 17 |
| 18 part 'part_of_sample_with_messages.dart'; | 18 part 'part_of_sample_with_messages.dart'; |
| 19 | 19 |
| 20 message1() => Intl.message("This is a message", name: 'message1', desc: 'foo' ); | 20 message1() => Intl.message("This is a message", name: 'message1', desc: 'foo' ); |
| 21 | 21 |
| 22 message2(x) => Intl.message("Another message with parameter $x", | 22 message2(x) => Intl.message("Another message with parameter $x", |
| 23 name: 'message2', desc: 'Description 2', args: [x]); | 23 name: 'message2', desc: 'Description 2', args: [x]); |
| 24 | 24 |
| 25 // A string with multiple adjacent strings concatenated together, verify | 25 // A string with multiple adjacent strings concatenated together, verify |
| 26 // that the parser handles this properly. | 26 // that the parser handles this properly. |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 var localeToUse = 'en_US'; | 123 var localeToUse = 'en_US'; |
| 124 | 124 |
| 125 main() { | 125 main() { |
| 126 var fr = new Intl("fr"); | 126 var fr = new Intl("fr"); |
| 127 var english = new Intl("en_US"); | 127 var english = new Intl("en_US"); |
| 128 var de = new Intl("de_DE"); | 128 var de = new Intl("de_DE"); |
| 129 initializeMessages(fr.locale).then((_) => printStuff(fr)); | 129 initializeMessages(fr.locale).then((_) => printStuff(fr)); |
| 130 initializeMessages(de.locale).then((_) => printStuff(de)); | 130 initializeMessages(de.locale).then((_) => printStuff(de)); |
| 131 printStuff(english); | 131 printStuff(english); |
| 132 } | 132 } |
| OLD | NEW |