| 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 part of date_symbol_data_json; |
| 6 |
| 5 /// Hard-coded list of all available locales for dates. | 7 /// Hard-coded list of all available locales for dates. |
| 6 final availableLocalesForDateFormatting = const ["en_ISO", | 8 final availableLocalesForDateFormatting = const ["en_ISO", |
| 7 "af", | 9 "af", |
| 8 "am", | 10 "am", |
| 9 "ar", | 11 "ar", |
| 10 "bg", | 12 "bg", |
| 11 "bn", | 13 "bn", |
| 12 "ca", | 14 "ca", |
| 13 "cs", | 15 "cs", |
| 14 "da", | 16 "da", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "tl", | 78 "tl", |
| 77 "tr", | 79 "tr", |
| 78 "uk", | 80 "uk", |
| 79 "ur", | 81 "ur", |
| 80 "vi", | 82 "vi", |
| 81 "zh", | 83 "zh", |
| 82 "zh_CN", | 84 "zh_CN", |
| 83 "zh_HK", | 85 "zh_HK", |
| 84 "zh_TW", | 86 "zh_TW", |
| 85 "zu"]; | 87 "zu"]; |
| OLD | NEW |