| OLD | NEW |
| 1 part of date_symbol_data_json; | |
| 2 | |
| 3 // 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 |
| 4 // 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 |
| 5 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 6 | 4 |
| 7 /// Hard-coded list of all available locales for dates. | 5 /// Hard-coded list of all available locales for dates. |
| 8 final availableLocalesForDateFormatting = const ["en_ISO", | 6 final availableLocalesForDateFormatting = const ["en_ISO", |
| 9 "af", | 7 "af", |
| 10 "am", | 8 "am", |
| 11 "ar", | 9 "ar", |
| 12 "bg", | 10 "bg", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "tl", | 76 "tl", |
| 79 "tr", | 77 "tr", |
| 80 "uk", | 78 "uk", |
| 81 "ur", | 79 "ur", |
| 82 "vi", | 80 "vi", |
| 83 "zh", | 81 "zh", |
| 84 "zh_CN", | 82 "zh_CN", |
| 85 "zh_HK", | 83 "zh_HK", |
| 86 "zh_TW", | 84 "zh_TW", |
| 87 "zu"]; | 85 "zu"]; |
| OLD | NEW |