8352fb6c7e
Review URL: https://codereview.chromium.org//11366016 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@14372 260f80e4-7a28-3924-810f-c04153c831b5
15 lines
574 B
Dart
15 lines
574 B
Dart
// 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;
|
|
|
|
import 'messages_th_th.dart' as th_TH;
|
|
import 'messages_de.dart' as de;
|