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

Unified Diff: pkg/intl/example/basic/messages_all.dart

Issue 10915215: Add async initialization for Intl.message and an example (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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/example/basic/messages_all.dart
===================================================================
--- pkg/intl/example/basic/messages_all.dart (revision 0)
+++ pkg/intl/example/basic/messages_all.dart (revision 0)
@@ -0,0 +1,14 @@
+// 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.
+
+/**
+ * In order to avoid needing to import the libraries for each locale
+ * individually in each program file, we make a separate library that imports
+ * all of them. In this example there's only one program file, so it doesn't
+ * make very much difference.
+ */
+#library('messages_all.dart');
+
+#import('messages_th_th.dart', prefix: 'th_TH');
+#import('messages_de_de.dart', prefix: 'de_DE');

Powered by Google App Engine
This is Rietveld 408576698