| OLD | NEW |
| 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 library intl.locale_list; | |
| 6 | |
| 7 /// Hard-coded list of all available locales for dates. | 5 /// Hard-coded list of all available locales for dates. |
| 8 const availableLocalesForDateFormatting = const ["en_ISO", | 6 final availableLocalesForDateFormatting = const ["en_ISO", |
| 9 "af", | 7 "af", |
| 10 "am", | 8 "am", |
| 11 "ar", | 9 "ar", |
| 10 "az", |
| 12 "bg", | 11 "bg", |
| 13 "bn", | 12 "bn", |
| 13 "br", |
| 14 "ca", | 14 "ca", |
| 15 "chr", |
| 15 "cs", | 16 "cs", |
| 17 "cy", |
| 16 "da", | 18 "da", |
| 17 "de", | 19 "de", |
| 18 "de_AT", | 20 "de_AT", |
| 19 "de_CH", | 21 "de_CH", |
| 20 "el", | 22 "el", |
| 21 "en", | 23 "en", |
| 22 "en_AU", | 24 "en_AU", |
| 23 "en_GB", | 25 "en_GB", |
| 24 "en_IE", | 26 "en_IE", |
| 25 "en_IN", | 27 "en_IN", |
| 26 "en_SG", | 28 "en_SG", |
| 27 "en_US", | 29 "en_US", |
| 28 "en_ZA", | 30 "en_ZA", |
| 29 "es", | 31 "es", |
| 30 "es_419", | 32 "es_419", |
| 33 "es_ES", |
| 31 "et", | 34 "et", |
| 32 "eu", | 35 "eu", |
| 33 "fa", | 36 "fa", |
| 34 "fi", | 37 "fi", |
| 35 "fil", | 38 "fil", |
| 36 "fr", | 39 "fr", |
| 37 "fr_CA", | 40 "fr_CA", |
| 38 "gl", | 41 "gl", |
| 39 "gsw", | 42 "gsw", |
| 40 "gu", | 43 "gu", |
| 44 "haw", |
| 41 "he", | 45 "he", |
| 42 "hi", | 46 "hi", |
| 43 "hr", | 47 "hr", |
| 44 "hu", | 48 "hu", |
| 49 "hy", |
| 45 "id", | 50 "id", |
| 46 "in", | 51 "in", |
| 47 "is", | 52 "is", |
| 48 "it", | 53 "it", |
| 49 "iw", | 54 "iw", |
| 50 "ja", | 55 "ja", |
| 56 "ka", |
| 57 "kk", |
| 58 "km", |
| 51 "kn", | 59 "kn", |
| 52 "ko", | 60 "ko", |
| 61 "ky", |
| 53 "ln", | 62 "ln", |
| 63 "lo", |
| 54 "lt", | 64 "lt", |
| 55 "lv", | 65 "lv", |
| 66 "mk", |
| 56 "ml", | 67 "ml", |
| 68 "mn", |
| 57 "mr", | 69 "mr", |
| 58 "ms", | 70 "ms", |
| 59 "mt", | 71 "mt", |
| 72 "my", |
| 73 "nb", |
| 74 "ne", |
| 60 "nl", | 75 "nl", |
| 61 "no", | 76 "no", |
| 77 "no_NO", |
| 62 "or", | 78 "or", |
| 79 "pa", |
| 63 "pl", | 80 "pl", |
| 64 "pt", | 81 "pt", |
| 65 "pt_BR", | 82 "pt_BR", |
| 66 "pt_PT", | 83 "pt_PT", |
| 67 "ro", | 84 "ro", |
| 68 "ru", | 85 "ru", |
| 86 "si", |
| 69 "sk", | 87 "sk", |
| 70 "sl", | 88 "sl", |
| 71 "sq", | 89 "sq", |
| 72 "sr", | 90 "sr", |
| 73 "sv", | 91 "sv", |
| 74 "sw", | 92 "sw", |
| 75 "ta", | 93 "ta", |
| 76 "te", | 94 "te", |
| 77 "th", | 95 "th", |
| 78 "tl", | 96 "tl", |
| 79 "tr", | 97 "tr", |
| 80 "uk", | 98 "uk", |
| 81 "ur", | 99 "ur", |
| 100 "uz", |
| 82 "vi", | 101 "vi", |
| 83 "zh", | 102 "zh", |
| 84 "zh_CN", | 103 "zh_CN", |
| 85 "zh_HK", | 104 "zh_HK", |
| 86 "zh_TW", | 105 "zh_TW", |
| 87 "zu"]; | 106 "zu"]; |
| OLD | NEW |