| 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 source code is governed by a | 2 // for details. All rights reserved. Use of this source code 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 /** | 5 /** |
| 6 * Test data for one particular date formatted for a small number of locales. | 6 * Test data for one particular date formatted for a small number of locales. |
| 7 * Provides at least a basic check on formatting, including formatting with | 7 * Provides at least a basic check on formatting, including formatting with |
| 8 * non-ASCII characters and some different orderings. | 8 * non-ASCII characters and some different orderings. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 "ABBR_UTC_TZ" : "GMT-08:00", | 325 "ABBR_UTC_TZ" : "GMT-08:00", |
| 326 "YEAR_MONTH_WEEKDAY_DAY + HOUR_MINUTE_SECOND" : | 326 "YEAR_MONTH_WEEKDAY_DAY + HOUR_MINUTE_SECOND" : |
| 327 "Παρασκευή, 27 Ιανουαρίου 2012 8:58:59 μ.μ.", | 327 "Παρασκευή, 27 Ιανουαρίου 2012 8:58:59 μ.μ.", |
| 328 "YEAR_MONTH_WEEKDAY_DAY + HOUR_MINUTE_SECOND + GENERIC_TZ" : | 328 "YEAR_MONTH_WEEKDAY_DAY + HOUR_MINUTE_SECOND + GENERIC_TZ" : |
| 329 "Παρασκευή, 27 Ιανουαρίου 2012 8:58:59 μ.μ. Ώρα Ειρηνικού", | 329 "Παρασκευή, 27 Ιανουαρίου 2012 8:58:59 μ.μ. Ώρα Ειρηνικού", |
| 330 "YEAR_ABBR_MONTH_WEEKDAY_DAY + HOUR_MINUTE_SECOND + ABBR_SPECIFIC_TZ" : | 330 "YEAR_ABBR_MONTH_WEEKDAY_DAY + HOUR_MINUTE_SECOND + ABBR_SPECIFIC_TZ" : |
| 331 "Παρ, 27 Ιαν 2012 8:58:59 μ.μ. GMT-08:00", | 331 "Παρ, 27 Ιαν 2012 8:58:59 μ.μ. GMT-08:00", |
| 332 "HOUR_MINUTE_SECOND + ABBR_GENERIC_TZ" : | 332 "HOUR_MINUTE_SECOND + ABBR_GENERIC_TZ" : |
| 333 "8:58:59 μ.μ. Ηνωμένες Πολιτείες της Αμερικής (Λος Άντζελες)", | 333 "8:58:59 μ.μ. Ηνωμένες Πολιτείες της Αμερικής (Λος Άντζελες)", |
| 334 "HOUR_MINUTE + ABBR_SPECIFIC_TZ" : "8:58 μ.μ. GMT-08:00"}; | 334 "HOUR_MINUTE + ABBR_SPECIFIC_TZ" : "8:58 μ.μ. GMT-08:00"}; |
| OLD | NEW |