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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: pkg/intl/test/message_extraction/foo_messages_fr.dart
diff --git a/pkg/intl/test/message_extraction/foo_messages_fr.dart b/pkg/intl/test/message_extraction/foo_messages_fr.dart
index b57a2516f15af59b63ec532482602cfcd591157c..fdc1937e157e93b810a152f894fa58244d8332e6 100644
--- a/pkg/intl/test/message_extraction/foo_messages_fr.dart
+++ b/pkg/intl/test/message_extraction/foo_messages_fr.dart
@@ -52,6 +52,10 @@ class MessageLookup extends MessageLookupByLibrary {
static plurals(num) => "${Intl.plural(num, zero: 'Est-ce que nulle est pluriel?', one: 'C\'est singulier', other: 'C\'est pluriel ($num).')}";
+ static rentAsVerb() => "louer";
+
+ static rentToBePaid() => "loyer";
+
static staticMessage() => "Cela vient d\'une méthode statique";
static trickyInterpolation(s) => "L\'interpolation est délicate quand elle se termine une phrase comme ${s}.";
@@ -81,6 +85,8 @@ class MessageLookup extends MessageLookupByLibrary {
"outerSelect" : outerSelect,
"pluralThatFailsParsing" : pluralThatFailsParsing,
"plurals" : plurals,
+ "rentAsVerb" : rentAsVerb,
+ "rentToBePaid" : rentToBePaid,
"staticMessage" : staticMessage,
"trickyInterpolation" : trickyInterpolation,
"types" : types,

Powered by Google App Engine
This is Rietveld 408576698