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

Unified Diff: charted/lib/locale/languages/en_us.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « charted/lib/locale/format/time_format.dart ('k') | charted/lib/locale/locale.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: charted/lib/locale/languages/en_us.dart
diff --git a/charted/lib/locale/languages/en_us.dart b/charted/lib/locale/languages/en_us.dart
deleted file mode 100644
index 53be549bb6f002224040f7411b32429fb91a7d31..0000000000000000000000000000000000000000
--- a/charted/lib/locale/languages/en_us.dart
+++ /dev/null
@@ -1,44 +0,0 @@
-//
-// Copyright 2014 Google Inc. All rights reserved.
-//
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file or at
-// https://developers.google.com/open-source/licenses/bsd
-//
-part of charted.locale;
-
-// Defines the en_us locale and related format properties.
-class EnUsLocale extends Locale {
- static EnUsLocale instance;
-
- factory EnUsLocale() {
- if (EnUsLocale.instance == null) {
- EnUsLocale.instance = new EnUsLocale._create();
- }
- return EnUsLocale.instance;
- }
-
- EnUsLocale._create();
-
- final identifier = 'en_US';
- final decimal = '.';
- final thousands = ',';
- final grouping = const[3];
- final currency = const['\$', ''];
- final dateTime = '%a %b %e %X %Y';
- final date = '%m/%d/%Y';
- final time = '%H =>%M =>%S';
- final periods = const['AM', 'PM'];
-
- final days = const[
- 'Sunday', 'Monday', 'Tuesday',
- 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
- final shortDays = const['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'];
-
- final months = const[
- 'January', 'February', 'March', 'April', 'May', 'June',
- 'July', 'August', 'September', 'October', 'November', 'December'];
- final shortMonths = const[
- 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul',
- 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
-}
« no previous file with comments | « charted/lib/locale/format/time_format.dart ('k') | charted/lib/locale/locale.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698