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

Side by Side Diff: pkg/intl/test/message_extraction/foo_messages_fr.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, 10 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 fr locale. All the 3 * This is a library that provides messages for a fr 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_fr; 8 library messages_fr;
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 static outerGender(g) => "${Intl.gender(g, female: 'femme', male: 'homme', oth er: 'autre')}"; 45 static outerGender(g) => "${Intl.gender(g, female: 'femme', male: 'homme', oth er: 'autre')}";
46 46
47 static outerPlural(n) => "${Intl.plural(n, zero: 'rien', one: 'un', other: 'qu elques-uns')}"; 47 static outerPlural(n) => "${Intl.plural(n, zero: 'rien', one: 'un', other: 'qu elques-uns')}";
48 48
49 static outerSelect(currency, amount) => "${Intl.select(currency, {'CDN': '$amo unt dollars Canadiens', 'other': '$amount certaine devise ou autre.', })}"; 49 static outerSelect(currency, amount) => "${Intl.select(currency, {'CDN': '$amo unt dollars Canadiens', 'other': '$amount certaine devise ou autre.', })}";
50 50
51 static pluralThatFailsParsing(noOfThings) => "${Intl.plural(noOfThings, one: ' 1 chose:', other: '$noOfThings choses:')}"; 51 static pluralThatFailsParsing(noOfThings) => "${Intl.plural(noOfThings, one: ' 1 chose:', other: '$noOfThings choses:')}";
52 52
53 static plurals(num) => "${Intl.plural(num, zero: 'Est-ce que nulle est pluriel ?', one: 'C\'est singulier', other: 'C\'est pluriel ($num).')}"; 53 static plurals(num) => "${Intl.plural(num, zero: 'Est-ce que nulle est pluriel ?', one: 'C\'est singulier', other: 'C\'est pluriel ($num).')}";
54 54
55 static rentAsVerb() => "louer";
56
57 static rentToBePaid() => "loyer";
58
55 static staticMessage() => "Cela vient d\'une méthode statique"; 59 static staticMessage() => "Cela vient d\'une méthode statique";
56 60
57 static trickyInterpolation(s) => "L\'interpolation est délicate quand elle se termine une phrase comme ${s}."; 61 static trickyInterpolation(s) => "L\'interpolation est délicate quand elle se termine une phrase comme ${s}.";
58 62
59 static types(a, b, c) => "$a, $b, $c"; 63 static types(a, b, c) => "$a, $b, $c";
60 64
61 static whereTheyWentMessage(name, gender, place) => "${Intl.gender(gender, fem ale: '${name} est allée à sa ${place}', male: '${name} est allé à sa ${place}', other: '${name} est allé à sa ${place}')}"; 65 static whereTheyWentMessage(name, gender, place) => "${Intl.gender(gender, fem ale: '${name} est allée à sa ${place}', male: '${name} est allé à sa ${place}', other: '${name} est allé à sa ${place}')}";
62 66
63 67
64 final messages = const { 68 final messages = const {
65 "alwaysTranslated" : alwaysTranslated, 69 "alwaysTranslated" : alwaysTranslated,
66 "escapable" : escapable, 70 "escapable" : escapable,
67 "leadingQuotes" : leadingQuotes, 71 "leadingQuotes" : leadingQuotes,
68 "message1" : message1, 72 "message1" : message1,
69 "message2" : message2, 73 "message2" : message2,
70 "message3" : message3, 74 "message3" : message3,
71 "method" : method, 75 "method" : method,
72 "multiLine" : multiLine, 76 "multiLine" : multiLine,
73 "nestedMessage" : nestedMessage, 77 "nestedMessage" : nestedMessage,
74 "nestedOuter" : nestedOuter, 78 "nestedOuter" : nestedOuter,
75 "nestedSelect" : nestedSelect, 79 "nestedSelect" : nestedSelect,
76 "nonLambda" : nonLambda, 80 "nonLambda" : nonLambda,
77 "notAlwaysTranslated" : notAlwaysTranslated, 81 "notAlwaysTranslated" : notAlwaysTranslated,
78 "originalNotInBMP" : originalNotInBMP, 82 "originalNotInBMP" : originalNotInBMP,
79 "outerGender" : outerGender, 83 "outerGender" : outerGender,
80 "outerPlural" : outerPlural, 84 "outerPlural" : outerPlural,
81 "outerSelect" : outerSelect, 85 "outerSelect" : outerSelect,
82 "pluralThatFailsParsing" : pluralThatFailsParsing, 86 "pluralThatFailsParsing" : pluralThatFailsParsing,
83 "plurals" : plurals, 87 "plurals" : plurals,
88 "rentAsVerb" : rentAsVerb,
89 "rentToBePaid" : rentToBePaid,
84 "staticMessage" : staticMessage, 90 "staticMessage" : staticMessage,
85 "trickyInterpolation" : trickyInterpolation, 91 "trickyInterpolation" : trickyInterpolation,
86 "types" : types, 92 "types" : types,
87 "whereTheyWentMessage" : whereTheyWentMessage 93 "whereTheyWentMessage" : whereTheyWentMessage
88 }; 94 };
89 } 95 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698