/[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.4 by mkoch, Wed Dec 1 19:17:59 2004 UTC revision 1.5 by mkoch, Fri Dec 17 11:01:32 2004 UTC
# Line 48  public class LocaleInformation_en_US ext Line 48  public class LocaleInformation_en_US ext
48    static final String groupingSeparator = ",";    static final String groupingSeparator = ",";
49    static final String numberFormat = "#,###,##0.###";    static final String numberFormat = "#,###,##0.###";
50    static final String percentFormat = "#,###,##0%";    static final String percentFormat = "#,###,##0%";
   static final String[] weekdays = { null, "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" };  
   
   static final String[] shortWeekdays = { null, "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };  
   
   static final String[] shortMonths = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", null };  
   
   static final String[] months = { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December", null };  
   
51    static final String[] ampms = { "AM", "PM" };    static final String[] ampms = { "AM", "PM" };
   
   static final String shortDateFormat = "MM/dd/yyyy";  
   static final String defaultTimeFormat = "hh:m:s a";  
52    static final String currencySymbol = "$";    static final String currencySymbol = "$";
53    static final String intlCurrencySymbol = "USD";    static final String intlCurrencySymbol = "USD";
   static final String currencyFormat = "$#,###,##0.00;-$#,###,##0.00";  
54    
55    private static final Object[][] contents =    private static final Object[][] contents =
56    {    {
     { "weekdays", weekdays },  
     { "shortWeekdays", shortWeekdays },  
     { "shortMonths", shortMonths },  
     { "months", months },  
57      { "ampms", ampms },      { "ampms", ampms },
     { "shortDateFormat", shortDateFormat },  
     { "defaultTimeFormat", defaultTimeFormat },  
58      { "currencySymbol", currencySymbol },      { "currencySymbol", currencySymbol },
59      { "intlCurrencySymbol", intlCurrencySymbol },      { "intlCurrencySymbol", intlCurrencySymbol },
     { "currencyFormat", currencyFormat },  
60      { "decimalSeparator", decimalSeparator },      { "decimalSeparator", decimalSeparator },
61      { "groupingSeparator", groupingSeparator },      { "groupingSeparator", groupingSeparator },
62      { "numberFormat", numberFormat },      { "numberFormat", numberFormat },
63      { "percentFormat", percentFormat },      { "percentFormat", percentFormat },
64        { "currencyFormat", "\u00a4#,##0.00;(\u00a4#,##0.00)" }
65    };    };
66    
67    public Object[][] getContents() { return contents; }    public Object[][] getContents() { return contents; }

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

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