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