Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(589)

Side by Side Diff: packages/intl/lib/date_symbols.dart

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 library date_symbols; 4 library date_symbols;
5 5
6 /** 6 /**
7 * This holds onto information about how a particular locale formats dates. It 7 * This holds onto information about how a particular locale formats dates. It
8 * contains mostly strings, e.g. what the names of months or weekdays are, 8 * contains mostly strings, e.g. what the names of months or weekdays are,
9 * but also indicates things like the first day of the week. We expect the data 9 * but also indicates things like the first day of the week. We expect the data
10 * for instances of these to be generated out of ICU or a similar reference 10 * for instances of these to be generated out of ICU or a similar reference
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 'jmz': 'h:mm a z', // HOUR_MINUTETZ 295 'jmz': 'h:mm a z', // HOUR_MINUTETZ
296 'jz': 'h a z', // HOURGENERIC_TZ 296 'jz': 'h a z', // HOURGENERIC_TZ
297 'm': 'm', // MINUTE 297 'm': 'm', // MINUTE
298 'ms': 'mm:ss', // MINUTE_SECOND 298 'ms': 'mm:ss', // MINUTE_SECOND
299 's': 's', // SECOND 299 's': 's', // SECOND
300 'v': 'v', // ABBR_GENERIC_TZ 300 'v': 'v', // ABBR_GENERIC_TZ
301 'z': 'z', // ABBR_SPECIFIC_TZ 301 'z': 'z', // ABBR_SPECIFIC_TZ
302 'zzzz': 'zzzz', // SPECIFIC_TZ 302 'zzzz': 'zzzz', // SPECIFIC_TZ
303 'ZZZZ': 'ZZZZ' // ABBR_UTC_TZ 303 'ZZZZ': 'ZZZZ' // ABBR_UTC_TZ
304 }; 304 };
OLDNEW
« no previous file with comments | « packages/intl/lib/date_symbol_data_local.dart ('k') | packages/intl/lib/date_time_patterns.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698