Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(406)

Side by Side Diff: pkg/intl/test/message_extraction/foo_messages_de_DE.dart

Issue 182443003: Add 'meaning' to Intl.messages (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /** 1 /**
2 * DO NOT EDIT. This is code generated via pkg/intl/generate_localized.dart 2 * DO NOT EDIT. This is code generated via pkg/intl/generate_localized.dart
3 * This is a library that provides messages for a de_DE locale. All the 3 * This is a library that provides messages for a de_DE locale. All the
4 * messages from the main program should be duplicated here with the same 4 * messages from the main program should be duplicated here with the same
5 * function name. 5 * function name.
6 */ 6 */
7 7
8 library messages_de_DE; 8 library messages_de_DE;
9 import 'package:intl/intl.dart'; 9 import 'package:intl/intl.dart';
10 import 'package:intl/message_lookup_by_library.dart'; 10 import 'package:intl/message_lookup_by_library.dart';
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 static outerGender(g) => "${Intl.gender(g, female: 'Frau', male: 'Mann', other : 'andere')}"; 43 static outerGender(g) => "${Intl.gender(g, female: 'Frau', male: 'Mann', other : 'andere')}";
44 44
45 static outerPlural(n) => "${Intl.plural(n, zero: 'Null', one: 'ein', other: 'e inige')}"; 45 static outerPlural(n) => "${Intl.plural(n, zero: 'Null', one: 'ein', other: 'e inige')}";
46 46
47 static outerSelect(currency, amount) => "${Intl.select(currency, {'CDN': '$amo unt Kanadischen dollar', 'other': '$amount einige Währung oder anderen.', })}"; 47 static outerSelect(currency, amount) => "${Intl.select(currency, {'CDN': '$amo unt Kanadischen dollar', 'other': '$amount einige Währung oder anderen.', })}";
48 48
49 static pluralThatFailsParsing(noOfThings) => "${Intl.plural(noOfThings, one: ' eins:', other: '$noOfThings Dinge:')}"; 49 static pluralThatFailsParsing(noOfThings) => "${Intl.plural(noOfThings, one: ' eins:', other: '$noOfThings Dinge:')}";
50 50
51 static plurals(num) => "${Intl.plural(num, zero: 'Ist Null Plural?', one: 'Die s ist einmalig', other: 'Dies ist Plural ($num).')}"; 51 static plurals(num) => "${Intl.plural(num, zero: 'Ist Null Plural?', one: 'Die s ist einmalig', other: 'Dies ist Plural ($num).')}";
52 52
53 static rentAsVerb() => "mieten";
54
55 static rentToBePaid() => "Miete";
56
53 static staticMessage() => "Dies ergibt sich aus einer statischen Methode"; 57 static staticMessage() => "Dies ergibt sich aus einer statischen Methode";
54 58
55 static trickyInterpolation(s) => "Interpolation ist schwierig, wenn es einen S atz wie dieser endet ${s}."; 59 static trickyInterpolation(s) => "Interpolation ist schwierig, wenn es einen S atz wie dieser endet ${s}.";
56 60
57 static types(a, b, c) => "$a, $b, $c"; 61 static types(a, b, c) => "$a, $b, $c";
58 62
59 static whereTheyWentMessage(name, gender, place) => "${Intl.gender(gender, fem ale: '${name} ging zu ihrem ${place}', male: '${name} ging zu seinem ${place}', other: '${name} ging zu seinem ${place}')}"; 63 static whereTheyWentMessage(name, gender, place) => "${Intl.gender(gender, fem ale: '${name} ging zu ihrem ${place}', male: '${name} ging zu seinem ${place}', other: '${name} ging zu seinem ${place}')}";
60 64
61 65
62 final messages = const { 66 final messages = const {
63 "alwaysTranslated" : alwaysTranslated, 67 "alwaysTranslated" : alwaysTranslated,
64 "escapable" : escapable, 68 "escapable" : escapable,
65 "leadingQuotes" : leadingQuotes, 69 "leadingQuotes" : leadingQuotes,
66 "message1" : message1, 70 "message1" : message1,
67 "message2" : message2, 71 "message2" : message2,
68 "message3" : message3, 72 "message3" : message3,
69 "method" : method, 73 "method" : method,
70 "multiLine" : multiLine, 74 "multiLine" : multiLine,
71 "nestedMessage" : nestedMessage, 75 "nestedMessage" : nestedMessage,
72 "nestedOuter" : nestedOuter, 76 "nestedOuter" : nestedOuter,
73 "nestedSelect" : nestedSelect, 77 "nestedSelect" : nestedSelect,
74 "nonLambda" : nonLambda, 78 "nonLambda" : nonLambda,
75 "originalNotInBMP" : originalNotInBMP, 79 "originalNotInBMP" : originalNotInBMP,
76 "outerGender" : outerGender, 80 "outerGender" : outerGender,
77 "outerPlural" : outerPlural, 81 "outerPlural" : outerPlural,
78 "outerSelect" : outerSelect, 82 "outerSelect" : outerSelect,
79 "pluralThatFailsParsing" : pluralThatFailsParsing, 83 "pluralThatFailsParsing" : pluralThatFailsParsing,
80 "plurals" : plurals, 84 "plurals" : plurals,
85 "rentAsVerb" : rentAsVerb,
86 "rentToBePaid" : rentToBePaid,
81 "staticMessage" : staticMessage, 87 "staticMessage" : staticMessage,
82 "trickyInterpolation" : trickyInterpolation, 88 "trickyInterpolation" : trickyInterpolation,
83 "types" : types, 89 "types" : types,
84 "whereTheyWentMessage" : whereTheyWentMessage 90 "whereTheyWentMessage" : whereTheyWentMessage
85 }; 91 };
86 } 92 }
OLDNEW
« no previous file with comments | « pkg/intl/lib/src/intl_message.dart ('k') | pkg/intl/test/message_extraction/foo_messages_fr.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698