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

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

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

revision 1.18 by robilad, Sun Jul 25 17:04:17 2004 UTC revision 1.19 by mkoch, Wed Dec 1 19:28:19 2004 UTC
# Line 1  Line 1 
1  /* LocaleInformation_en.java -- US English locale data  /* LocaleInformation_en.java --
2     Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc.     Copyright (C) 2004  Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 7  GNU Classpath is free software; you can Line 7  GNU Classpath is free software; you can
7  it under the terms of the GNU General Public License as published by  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2, or (at your option)  the Free Software Foundation; either version 2, or (at your option)
9  any later version.  any later version.
10    
11  GNU Classpath is distributed in the hope that it will be useful, but  GNU Classpath is distributed in the hope that it will be useful, but
12  WITHOUT ANY WARRANTY; without even the implied warranty of  WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Line 36  obligated to do so.  If you do not wish Line 36  obligated to do so.  If you do not wish
36  exception statement from your version. */  exception statement from your version. */
37    
38    
39    // This file was automatically generated by gnu.localegen from LDML en.xml
40    
41  package gnu.java.locale;  package gnu.java.locale;
42    
43  import java.util.ListResourceBundle;  import java.util.ListResourceBundle;
44    
 /**  
  * This class contains locale data for English.  
  */  
45  public class LocaleInformation_en extends ListResourceBundle  public class LocaleInformation_en extends ListResourceBundle
46  {  {
   
   /*  
    * This area is used for defining object values  
    */  
   
   /**  
    * This is the set of collation rules used by java.text.RuleBasedCollator  
    * to sort strings properly.  See the documentation of that class for the  
    * proper format.  
    */  
47    // FIXME: this is nowhere near complete.    // FIXME: this is nowhere near complete.
48    // In particular we must mark accents as ignorable,    // In particular we must mark accents as ignorable,
49    // and probably other things as well.    // and probably other things as well.
# Line 62  public class LocaleInformation_en extend Line 51  public class LocaleInformation_en extend
51    "<0<1<2<3<4<5<6<7<8<9<A,a<b,B<c,C<d,D<e,E<f,F<g,G<h,H<i,I<j,J<k,K" +    "<0<1<2<3<4<5<6<7<8<9<A,a<b,B<c,C<d,D<e,E<f,F<g,G<h,H<i,I<j,J<k,K" +
52    "<l,L<m,M<n,N<o,O<p,P<q,Q<r,R<s,S<t,T<u,U<v,V<w,W<x,X<y,Y<z,Z";    "<l,L<m,M<n,N<o,O<p,P<q,Q<r,R<s,S<t,T<u,U<v,V<w,W<x,X<y,Y<z,Z";
53    
   /**  
    * This is the list of months, fully spelled out  
    */  
54    private static final String[] months =    private static final String[] months =
55    {    {
56      "January", "February", "March", "April", "May", "June",      "January", "February", "March", "April", "May", "June",
57      "July", "August", "September", "October", "November", "December", null      "July", "August", "September", "October", "November", "December", null
58    };    };
59    
   /**  
    * This is the list of abbreviated month names  
    */  
60    private static final String[] shortMonths =    private static final String[] shortMonths =
61    {    {
62      "Jan", "Feb", "Mar", "Apr", "May", "Jun",      "Jan", "Feb", "Mar", "Apr", "May", "Jun",
63      "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", null      "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", null
64    };    };
65    
   /**  
    * This is the list of weekdays, fully spelled out  
    */  
66    private static final String[] weekdays =    private static final String[] weekdays =
67    {    {
68      null, "Sunday", "Monday", "Tuesday", "Wednesday",      null, "Sunday", "Monday", "Tuesday", "Wednesday",
69      "Thursday", "Friday", "Saturday"      "Thursday", "Friday", "Saturday"
70    };    };
71    
   /**  
    * This is the list of abbreviated weekdays  
    */  
72    private static final String[] shortWeekdays =    private static final String[] shortWeekdays =
73    {    {
74      null, "Sun", "Mon", "Tue", "Wed",      null, "Sun", "Mon", "Tue", "Wed",
75      "Thu", "Fri", "Sat"      "Thu", "Fri", "Sat"
76    };    };
77    
   /**  
    * This is the list of AM/PM strings  
    */  
78    private static final String[] ampms = { "AM", "PM" };    private static final String[] ampms = { "AM", "PM" };
79    
   /**  
    * This is the list of era identifiers  
    */  
80    private static final String[] eras = { "BC", "AD" };    private static final String[] eras = { "BC", "AD" };
81    
82    private static final String[][] zoneStrings =    private static final String[][] zoneStrings =
# Line 142  public class LocaleInformation_en extend Line 113  public class LocaleInformation_en extend
113    
114    /*************************************************************************/    /*************************************************************************/
115    
   /**  
    * This is the object array used to hold the keys and values  
    * for this bundle  
    */  
116    
117    private static final Object[][] contents =    private static final Object[][] contents =
118    {    {
     // For RuleBasedCollator  
119      { "collation_rules", collation_rules },      { "collation_rules", collation_rules },
120    
     // For SimpleDateFormat/DateFormatSymbols  
121      { "months", months },      { "months", months },
122      { "shortMonths", shortMonths },      { "shortMonths", shortMonths },
123      { "weekdays", weekdays },      { "weekdays", weekdays },
# Line 173  public class LocaleInformation_en extend Line 138  public class LocaleInformation_en extend
138      { "fullTimeFormat", "h:mm:ss;S 'o''clock' a z" },      { "fullTimeFormat", "h:mm:ss;S 'o''clock' a z" },
139      { "defaultTimeFormat", "h:mm:ss a" },      { "defaultTimeFormat", "h:mm:ss a" },
140    
     // For DecimalFormat/DecimalFormatSymbols  
141      { "decimalSeparator", "." },      { "decimalSeparator", "." },
142      { "digit", "#" },      { "digit", "#" },
143      { "exponential", "E" },      { "exponential", "E" },
# Line 192  public class LocaleInformation_en extend Line 156  public class LocaleInformation_en extend
156      { "percentFormat", "#,##0%" },      { "percentFormat", "#,##0%" },
157    };    };
158    
159    /*************************************************************************/    public Object[][] getContents() { return 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 ()  
   {  
     return contents;  
   }  
160  }  }

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19

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