/[classpath]/classpath/gnu/java/locale/LocaleInformation_en_US.java
ViewVC logotype

Diff of /classpath/gnu/java/locale/LocaleInformation_en_US.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by tromey, Wed Sep 5 00:00:19 2001 UTC revision 1.2 by tromey, Tue Jan 8 23:55:44 2002 UTC
# Line 1  Line 1 
1  /* LocaleInformation_en.java -- US English locale data  // This file was automatically generated by localedef.
    Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.  
   
 This file is part of GNU Classpath.  
   
 GNU Classpath is free software; you can redistribute it and/or modify  
 it under the terms of the GNU General Public License as published by  
 the Free Software Foundation; either version 2, or (at your option)  
 any later version.  
   
 GNU Classpath is distributed in the hope that it will be useful, but  
 WITHOUT ANY WARRANTY; without even the implied warranty of  
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  
 General Public License for more details.  
   
 You should have received a copy of the GNU General Public License  
 along with GNU Classpath; see the file COPYING.  If not, write to the  
 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  
 02111-1307 USA.  
   
 As a special exception, if you link this library with other files to  
 produce an executable, this library does not by itself cause the  
 resulting executable to be covered by the GNU General Public License.  
 This exception does not however invalidate any other reasons why the  
 executable file might be covered by the GNU General Public License. */  
   
2    
3  package gnu.java.locale;  package gnu.java.locale;
4    
5  import java.util.ListResourceBundle;  import java.util.ListResourceBundle;
 import java.util.Calendar;  
 import java.util.Date;  
6    
 /**  
  * This class contains locale data for English in the US.  
  */  
7  public class LocaleInformation_en_US extends ListResourceBundle  public class LocaleInformation_en_US extends ListResourceBundle
8  {  {
9    // These are for DateFormatSymbols.    static final String decimalSeparator = ".";
10    private static final String[][] zoneStrings =    static final String groupingSeparator = ",";
11    {    static final String numberFormat = "#,###,##0.###";
12      { "GMT", "Greenwich Mean Time", "GMT",    static final String percentFormat = "#,###,##0%";
13        /**/   "Greenwich Mean Time", "GMT", "GMT" },    static final String[] weekdays = { null, "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" };
     { "PST", "Pacific Standard Time", "PST",  
       /**/   "Pacific Daylight Time", "PDT", "San Francisco" },  
     { "MST", "Mountain Standard Time", "MST",  
       /**/   "Mountain Daylight Time", "MDT", "Denver" },  
     { "PNT", "Mountain Standard Time", "MST",  
       /**/   "Mountain Standard Time", "MST", "Phoenix" },  
     { "CST", "Central Standard Time", "CST",  
       /**/   "Central Daylight Time", "CDT", "Chicago" },  
     { "EST", "Eastern Standard Time", "EST",  
       /**/   "Eastern Daylight Time", "EDT", "Boston" },  
     { "IET", "Eastern Standard Time", "EST",  
       /**/   "Eastern Standard Time", "EST", "Indianapolis" },  
     { "PRT", "Atlantic Standard Time", "AST",  
       /**/   "Atlantic Daylight Time", "ADT", "Halifax" },  
     { "CNT", "Newfoundland Standard Time", "NST",  
       /**/   "Newfoundland Daylight Time", "NDT", "St. Johns" },  
     { "ECT", "Central European Standard Time", "CET",  
       /**/   "Central European Daylight Time", "CEST", "Paris" },  
     { "CTT", "China Standard Time", "CST",  
       /**/   "China Standard Time", "CST", "Shanghai" },  
     { "JST", "Japan Standard Time", "JST",  
       /**/   "Japan Standard Time", "JST", "Tokyo" },  
     { "HST", "Hawaii Standard Time", "HST",  
       /**/   "Hawaii Standard Time", "HST", "Honolulu" },  
     { "AST", "Alaska Standard Time", "AKST",  
       /**/   "Alaska Daylight Time", "AKDT", "Anchorage" }  
   };  
14    
15    /**    static final String[] shortWeekdays = { null, "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
    * This is the object array used to hold the keys and values  
    * for this bundle  
    */  
16    
17    private static final Object[][] contents =    static final String[] shortMonths = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", null };
   {  
     // For SimpleDateFormat/DateFormatSymbols  
     { "zoneStrings", zoneStrings },  
     { "shortDateFormat", "M/d/yy" },          // Java's Y2K bug.  
     { "mediumDateFormat", "d-MMM-yy" },  
     { "longDateFormat", "MMMM d, yyyy" },  
     { "defaultDateFormat", "d-MMMM-yy" },  
     { "fullDateFormat", "EEEE MMMM d, yyyy G" },  
     { "shortTimeFormat", "h:mm a" },  
     { "mediumTimeFormat", "h:mm:ss a" },  
     { "longTimeFormat", "h:mm:ss a z" },  
     { "fullTimeFormat", "h:mm:ss;S 'o''clock' a z" },  
     { "defaultTimeFormat", "h:mm:ss a" },  
   
     // For DecimalFormat/DecimalFormatSymbols  
     { "currencySymbol", "$" },  
     { "intlCurrencySymbol", "US$" },  
18    
19      // For NumberFormat.    static final String[] months = { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December", null };
20      { "currencyFormat", "$#,##0.00;($#,##0.00)" }  
21    };    static final String[] ampms = { "AM", "PM" };
22    
23    /*************************************************************************/    static final String shortDateFormat = "MM/dd/yyyy";
24      static final String defaultTimeFormat = "hh:m:s a";
25      static final String currencySymbol = "$";
26      static final String intlCurrencySymbol = "USD";
27      static final String currencyFormat = "$#,###,##0.00;-$#,###,##0.00";
28    
29    /**    private static final Object[][] contents =
    * This method returns the object array of key, value pairs containing  
    * the data for this bundle.  
    *  
    * @return The key, value information.  
    */  
   public Object[][] getContents ()  
30    {    {
31      return contents;      { "weekdays", weekdays },
32    }      { "shortWeekdays", shortWeekdays },
33        { "shortMonths", shortMonths },
34        { "months", months },
35        { "ampms", ampms },
36        { "shortDateFormat", shortDateFormat },
37        { "defaultTimeFormat", defaultTimeFormat },
38        { "currencySymbol", currencySymbol },
39        { "intlCurrencySymbol", intlCurrencySymbol },
40        { "currencyFormat", currencyFormat },
41        { "decimalSeparator", decimalSeparator },
42        { "groupingSeparator", groupingSeparator },
43        { "numberFormat", numberFormat },
44        { "percentFormat", percentFormat },
45      };
46    
47      public Object[][] getContents () { return contents; }
48  }  }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26