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

Side by Side Diff: pkg/intl/lib/intl.dart

Issue 14188048: add installation instructions to pkg packages (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweaks from review Created 7 years, 8 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 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** 5 /**
6 * This library provides internationalization and localization. This includes 6 * This library provides internationalization and localization. This includes
7 * message formatting and replacement, date and number formatting and parsing, 7 * message formatting and replacement, date and number formatting and parsing,
8 * and utilities for working with Bidirectional text. 8 * and utilities for working with Bidirectional text.
9 * 9 *
10 * ## Installing ##
11 *
12 * Use [pub][] to install this package. Add the following to your `pubspec.yaml`
13 * file.
14 *
15 * dependencies:
16 * intl: any
17 *
18 * Then run `pub install`.
19 *
20 * For more information, see the
21 * [intl package on pub.dartlang.org](http://pub.dartlang.org/packages/intl).
22 *
10 * For things that require locale or other data, there are multiple different 23 * For things that require locale or other data, there are multiple different
11 * ways of making that data available, which may require importing different 24 * ways of making that data available, which may require importing different
12 * libraries. See the class comments for more details. 25 * libraries. See the class comments for more details.
13 * 26 *
14 * There is also a simple example application that can be found in the 27 * There is also a simple example application that can be found in the
15 * `example/basic` directory. 28 * `example/basic` directory.
29 *
30 * [pub]: http://pub.dartlang.org
16 */ 31 */
17 library intl; 32 library intl;
18 33
19 import 'dart:async'; 34 import 'dart:async';
20 import 'src/intl_helpers.dart'; 35 import 'src/intl_helpers.dart';
21 import 'dart:math'; 36 import 'dart:math';
22 import 'date_symbols.dart'; 37 import 'date_symbols.dart';
23 import 'src/date_format_internal.dart'; 38 import 'src/date_format_internal.dart';
24 import "number_symbols.dart"; 39 import "number_symbols.dart";
25 import "number_symbols_data.dart"; 40 import "number_symbols_data.dart";
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 * unless for some reason this gets called inside a message that resets the 288 * unless for some reason this gets called inside a message that resets the
274 * locale. 289 * locale.
275 */ 290 */
276 static String getCurrentLocale() { 291 static String getCurrentLocale() {
277 if (_defaultLocale == null) _defaultLocale = systemLocale; 292 if (_defaultLocale == null) _defaultLocale = systemLocale;
278 return _defaultLocale; 293 return _defaultLocale;
279 } 294 }
280 295
281 toString() => "Intl($locale)"; 296 toString() => "Intl($locale)";
282 } 297 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698