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

Side by Side Diff: pkg/intl/lib/src/data/dates/locale_list.dart

Issue 245783004: pkg/intl: turned part into library (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
« no previous file with comments | « pkg/intl/lib/src/data/dates/localeList.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 sourcecode is governed by a 2 // for details. All rights reserved. Use of this sourcecode 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 part of date_symbol_data_json; 5 library intl.locale_list;
kevmoo 2014/04/21 21:58:39 made a library so it can legally be used by two ot
6 6
7 /// Hard-coded list of all available locales for dates. 7 /// Hard-coded list of all available locales for dates.
8 final availableLocalesForDateFormatting = const ["en_ISO", 8 const availableLocalesForDateFormatting = const ["en_ISO",
kevmoo 2014/04/21 21:58:39 might as well be a const
9 "af", 9 "af",
10 "am", 10 "am",
11 "ar", 11 "ar",
12 "bg", 12 "bg",
13 "bn", 13 "bn",
14 "ca", 14 "ca",
15 "cs", 15 "cs",
16 "da", 16 "da",
17 "de", 17 "de",
18 "de_AT", 18 "de_AT",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 "th", 77 "th",
78 "tl", 78 "tl",
79 "tr", 79 "tr",
80 "uk", 80 "uk",
81 "ur", 81 "ur",
82 "vi", 82 "vi",
83 "zh", 83 "zh",
84 "zh_CN", 84 "zh_CN",
85 "zh_HK", 85 "zh_HK",
86 "zh_TW", 86 "zh_TW",
87 "zu"]; 87 "zu"];
kevmoo 2014/04/21 21:58:39 Just added a new line
OLDNEW
« no previous file with comments | « pkg/intl/lib/src/data/dates/localeList.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698