| Index: pkg/intl/test/message_extraction/make_hardcoded_translation.dart
|
| diff --git a/pkg/intl/test/message_extraction/make_hardcoded_translation.dart b/pkg/intl/test/message_extraction/make_hardcoded_translation.dart
|
| index e9585647fd8f322c5d5decc0a6acf9ab1a2df0e0..543ed6c0fe59e7fd8852f7537a932b28728528c8 100644
|
| --- a/pkg/intl/test/message_extraction/make_hardcoded_translation.dart
|
| +++ b/pkg/intl/test/message_extraction/make_hardcoded_translation.dart
|
| @@ -97,6 +97,11 @@ var french = {
|
| ['female', 'femme'],
|
| ['other', 'autre'],
|
| ], null)),
|
| + "pluralThatFailsParsing" : writer.write(new Plural.from("noOfThings",
|
| + [
|
| + ['one', '1 chose:'],
|
| + ['other', '\$noOfThings choses:']
|
| + ], null)),
|
| "nestedOuter" : writer.write ( new Plural.from("number",
|
| [
|
| ['other', new Gender.from("gen",
|
| @@ -183,6 +188,11 @@ var german = {
|
| ['female', 'Frau'],
|
| ['other', 'andere'],
|
| ], null)),
|
| + "pluralThatFailsParsing" : writer.write(new Plural.from("noOfThings",
|
| + [
|
| + ['one', 'eins:'],
|
| + ['other', '\$noOfThings Dinge:']
|
| + ], null)),
|
| "nestedOuter" : writer.write (new Plural.from("number",
|
| [
|
| ['other', new Gender.from("gen",
|
|
|