OSDN Git Service

a0f0209797546b305461f9e94a951620f0cda535
[pf3gnuchains/gcc-fork.git] / libjava / gnu / gcj / text / LocaleData_en_US.java
1 // US English locale data for java.text.
2
3 /* Copyright (C) 1999  Cygnus Solutions
4
5    This file is part of libgcj.
6
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
9 details.  */
10
11 package gnu.gcj.text;
12
13 import java.util.ListResourceBundle;
14
15 /**
16  * @author Tom Tromey <tromey@cygnus.com>
17  * @date March 4, 1999
18  */
19
20 public final class LocaleData_en_US extends ListResourceBundle
21 {
22   // These are for DateFormatSymbols.
23   static String[][] zoneStringsDefault = {
24     { "PST", "Pacific Standard Time", "PST",
25       /**/   "Pacific Daylight Time", "PDT", "San Francisco" },
26     { "MST", "Mountain Standard Time", "MST",
27       /**/   "Mountain Daylight Time", "MDT", "Denver" },
28     { "PNT", "Mountain Standard Time", "MST",
29       /**/   "Mountain Standard Time", "MST", "Phoenix" },
30     { "CST", "Central Standard Time", "CST",
31       /**/   "Central Daylight Time", "CDT", "Chicago" },
32     { "EST", "Eastern Standard Time", "EST",
33       /**/   "Eastern Daylight Time", "EDT", "Boston" },
34     { "IET", "Eastern Standard Time", "EST",
35       /**/   "Eastern Standard Time", "EST", "Indianapolis" },
36     { "PRT", "Atlantic Standard Time", "AST",
37       /**/   "Atlantic Daylight Time", "ADT", "Halifax" },
38     { "HST", "Hawaii Standard Time", "HST",
39       /**/   "Hawaii Daylight Time", "HDT", "Honolulu" },
40     { "AST", "Alaska Standard Time", "AST",
41       /**/   "Alaska Daylight Time", "ADT", "Anchorage" }
42   };
43
44   private static final Object[][] contents =
45   {
46     // These are for DecimalFormatSymbols.
47     { "currency", "$" },
48     { "intlCurrencySymbol", "$" },            // FIXME?
49
50     // These are for NumberFormat.
51     { "currencyFormat", "$#,##0.00;($#,##0.00)" },
52
53     // These are for DateFormatSymbols.
54     { "zoneStrings", zoneStringsDefault },
55
56     // These are for DateFormat.
57     { "shortDateFormat", "M/d/yy" },          // Java's Y2K bug.
58     { "mediumDateFormat", "d-MMM-yy" },
59     { "longDateFormat", "MMMM d, yyyy" },
60     { "fullDateFormat", "EEEE MMMM d, yyyy G" },
61     { "shortTimeFormat", "h:mm a" },
62     { "mediumTimeFormat", "h:mm:ss a" },
63     { "longTimeFormat", "h:mm:ss a z" },
64     { "fullTimeFormat", "h:mm:ss;S 'o''clock' a z" }
65   };
66
67   protected Object[][] getContents ()
68     {
69       return contents;
70     }
71 }