| 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 de_DE locale. All the | |
| 4 * messages from the main program should be duplicated here with the same | |
| 5 * function name. | |
| 6 */ | |
| 7 | |
| 8 library messages_de_DE; | |
| 9 import 'package:intl/intl.dart'; | |
| 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 => 'de_DE'; | |
| 17 static alwaysTranslated() => "Diese Zeichenkette wird immer übersetzt"; | |
| 18 | |
| 19 static differentNameSameContents() => "Hallo Welt"; | |
| 20 | |
| 21 static escapable() => "Escapes: \n\r\f\b\t\v."; | |
| 22 | |
| 23 static leadingQuotes() => "\"Sogenannt\""; | |
| 24 | |
| 25 static message1() => "Dies ist eine Nachricht"; | |
| 26 | |
| 27 static message2(x) => "Eine weitere Meldung mit dem Parameter $x"; | |
| 28 | |
| 29 static message3(a, b, c) => "Zeichen, die Flucht benötigen, zB Schrägstriche \
\ Dollar \${ (geschweiften Klammern sind ok) und xml reservierte Zeichen <& und
Zitate \" Parameter $a, $b und $c"; | |
| 30 | |
| 31 static method() => "Dies ergibt sich aus einer Methode"; | |
| 32 | |
| 33 static multiLine() => "Dieser String erstreckt sich über mehrere Zeilen erstre
cken."; | |
| 34 | |
| 35 static nestedMessage(names, number, combinedGender, place) => "${Intl.gender(c
ombinedGender, female: '${Intl.plural(number, one: '$names ging in dem $place',
other: '$names gingen zum $place')}', other: '${Intl.plural(number, zero: 'Niema
nd ging zu $place', one: '${names} ging zum $place', other: '${names} gingen zum
$place')}')}"; | |
| 36 | |
| 37 static nestedOuter(number, gen) => "${Intl.plural(number, other: '${Intl.gende
r(gen, male: '$number Mann', other: '$number andere')}')}"; | |
| 38 | |
| 39 static nestedSelect(currency, amount) => "${Intl.select(currency, {'CDN': '${I
ntl.plural(amount, one: '$amount Kanadischer dollar', other: '$amount Kanadische
n dollar')}', 'other': 'whatever', })}"; | |
| 40 | |
| 41 static nonLambda() => "Diese Methode ist nicht eine Lambda"; | |
| 42 | |
| 43 static originalNotInBMP() => "Antike griechische Galgenmännchen Zeichen: 𐅆𐅇"; | |
| 44 | |
| 45 static outerGender(g) => "${Intl.gender(g, female: 'Frau', male: 'Mann', other
: 'andere')}"; | |
| 46 | |
| 47 static outerPlural(n) => "${Intl.plural(n, zero: 'Null', one: 'ein', other: 'e
inige')}"; | |
| 48 | |
| 49 static outerSelect(currency, amount) => "${Intl.select(currency, {'CDN': '$amo
unt Kanadischen dollar', 'other': '$amount einige Währung oder anderen.', })}"; | |
| 50 | |
| 51 static pluralThatFailsParsing(noOfThings) => "${Intl.plural(noOfThings, one: '
eins:', other: '$noOfThings Dinge:')}"; | |
| 52 | |
| 53 static plurals(num) => "${Intl.plural(num, zero: 'Ist Null Plural?', one: 'Die
s ist einmalig', other: 'Dies ist Plural ($num).')}"; | |
| 54 | |
| 55 static sameContentsDifferentName() => "Hallo Welt"; | |
| 56 | |
| 57 static rentAsVerb() => "mieten"; | |
| 58 | |
| 59 static rentToBePaid() => "Miete"; | |
| 60 | |
| 61 static staticMessage() => "Dies ergibt sich aus einer statischen Methode"; | |
| 62 | |
| 63 static trickyInterpolation(s) => "Interpolation ist schwierig, wenn es einen S
atz wie dieser endet ${s}."; | |
| 64 | |
| 65 static types(a, b, c) => "$a, $b, $c"; | |
| 66 | |
| 67 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}')}"; | |
| 68 | |
| 69 | |
| 70 final messages = const { | |
| 71 "alwaysTranslated" : alwaysTranslated, | |
| 72 "differentNameSameContents" : differentNameSameContents, | |
| 73 "escapable" : escapable, | |
| 74 "leadingQuotes" : leadingQuotes, | |
| 75 "message1" : message1, | |
| 76 "message2" : message2, | |
| 77 "message3" : message3, | |
| 78 "method" : method, | |
| 79 "multiLine" : multiLine, | |
| 80 "nestedMessage" : nestedMessage, | |
| 81 "nestedOuter" : nestedOuter, | |
| 82 "nestedSelect" : nestedSelect, | |
| 83 "nonLambda" : nonLambda, | |
| 84 "originalNotInBMP" : originalNotInBMP, | |
| 85 "outerGender" : outerGender, | |
| 86 "outerPlural" : outerPlural, | |
| 87 "outerSelect" : outerSelect, | |
| 88 "pluralThatFailsParsing" : pluralThatFailsParsing, | |
| 89 "plurals" : plurals, | |
| 90 "sameContentsDifferentName" : sameContentsDifferentName, | |
| 91 "rentAsVerb" : rentAsVerb, | |
| 92 "rentToBePaid" : rentToBePaid, | |
| 93 "staticMessage" : staticMessage, | |
| 94 "trickyInterpolation" : trickyInterpolation, | |
| 95 "types" : types, | |
| 96 "whereTheyWentMessage" : whereTheyWentMessage | |
| 97 }; | |
| 98 } | |
| OLD | NEW |