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

Unified Diff: lib/i18n/intl.dart

Issue 10494005: Updated message formatting to be more compatible with Dart string interpolation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merged up to head, and wasn't that fun Created 8 years, 6 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: lib/i18n/intl.dart
diff --git a/lib/i18n/intl.dart b/lib/i18n/intl.dart
new file mode 100644
index 0000000000000000000000000000000000000000..aabb747eed18978b5b1b589fa5f974898f16e2ed
--- /dev/null
+++ b/lib/i18n/intl.dart
@@ -0,0 +1,59 @@
+/**
+ * Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+ * for details. All rights reserved. Use of this source code is governed by a
+ * BSD-style license that can be found in the LICENSE file.
+ *
+ */
+
+#library('Intl');
+#import('date_format.dart');
+#import('message_format.dart');
+
+class Intl {
+
+ /**
+ * As yet not clearly defined variable for holding onto our current locale,
+ * which may actually be a list of locales, or have different information
+ * for different aspects of internationalization (e.g. German locale but with
+ * Canadian date format)
+ * TODO(alanknight) Actually make this class do something with locales,
+ * just a skeleton right now.
+ */
+ var _locale;
+
+ /**
+ * Constructor
+ */
+ Intl([this._locale]);
+
+ /**
+ * Methods to return appropriate format objects.
+ **/
Emily Fortuna 2012/06/07 18:42:23 remove extra astrisk.
Alan Knight 2012/06/07 21:19:39 Done.
+ get date() => new DateFormat.fullDate();
Emily Fortuna 2012/06/07 18:42:23 put return types for getters since this is an API.
Alan Knight 2012/06/07 21:19:39 Hmm, I'd made them non-getters. So that wasn't mer
+ get time() => new DateFormat.fullTime();
+ get dateTime() => new DateFormat.fullDateTime();
+ get message() => new MessageFormat();
+
+ /**
+ * Support methods for message formatting.
+ */
+ String plural(num howMany, Map actions) {
+ var desiredKey = howMany.toString();
+ for (var key in actions.getKeys()) {
+ if(desiredKey == key) return actions[key];
+ }
+ if (actions.containsKey('other')) {
+ return actions['other'];
Emily Fortuna 2012/06/07 18:42:23 remove extra space here and below.
Alan Knight 2012/06/07 21:19:39 Done.
+ } else {
+ return '';
+ }
+ }
+
+ String select(String choice, Map actions) {
+ for (var key in actions.getKeys()) {
+ if (choice == key) return actions[key];
+ }
+ return '';
+ }
+
+}

Powered by Google App Engine
This is Rietveld 408576698