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

Side by Side Diff: pkg/intl/data/dates/localeList.dart

Issue 10917069: Async initialization for DateFormat (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 /// Hard-coded list of all available locales for dates.
6 final availableLocalesForDateFormatting = const ["en_ISO",
7 "af",
8 "am",
9 "ar",
10 "bg",
11 "bn",
12 "ca",
13 "cs",
14 "da",
15 "de",
16 "de_AT",
17 "de_CH",
18 "el",
19 "en",
20 "en_AU",
21 "en_GB",
22 "en_IE",
23 "en_IN",
24 "en_SG",
25 "en_US",
26 "en_ZA",
27 "es",
28 "es_419",
29 "et",
30 "eu",
31 "fa",
32 "fi",
33 "fil",
34 "fr",
35 "fr_CA",
36 "gl",
37 "gsw",
38 "gu",
39 "he",
40 "hi",
41 "hr",
42 "hu",
43 "id",
44 "in",
45 "is",
46 "it",
47 "iw",
48 "ja",
49 "kn",
50 "ko",
51 "ln",
52 "lt",
53 "lv",
54 "ml",
55 "mr",
56 "ms",
57 "mt",
58 "nl",
59 "no",
60 "or",
61 "pl",
62 "pt",
63 "pt_BR",
64 "pt_PT",
65 "ro",
66 "ru",
67 "sk",
68 "sl",
69 "sq",
70 "sr",
71 "sv",
72 "sw",
73 "ta",
74 "te",
75 "th",
76 "tl",
77 "tr",
78 "uk",
79 "ur",
80 "vi",
81 "zh",
82 "zh_CN",
83 "zh_HK",
84 "zh_TW",
85 "zu"];
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698