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

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

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

revision 1.3 by mkoch, Wed Dec 1 19:17:59 2004 UTC revision 1.4 by mkoch, Fri Dec 17 11:01:32 2004 UTC
# Line 48  public class LocaleInformation_en_GB ext Line 48  public class LocaleInformation_en_GB 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 = { "", "" };    static final String[] ampms = { "", "" };
   
52    static final String shortDateFormat = "dd/MM/yy";    static final String shortDateFormat = "dd/MM/yy";
   static final String defaultTimeFormat = "";  
53    static final String currencySymbol = "\u00A3";    static final String currencySymbol = "\u00A3";
54    static final String intlCurrencySymbol = "GBP";    static final String intlCurrencySymbol = "GBP";
55    static final String currencyFormat = "$#,###,##0.00;-$#,###,##0.00";    static final String currencyFormat = "$#,###,##0.00;-$#,###,##0.00";
56      private static final String[][] zoneStrings =
57      {
58        { "Europe/London", "Greenwich Mean Time", "GMT", "", "" }
59      };
60    
61    private static final Object[][] contents =    private static final Object[][] contents =
62    {    {
63      { "weekdays", weekdays },      { "shortDateFormat", "dd/MM/yyyy" },
64      { "shortWeekdays", shortWeekdays },      { "mediumDateFormat", "d MMM yyyy" },
65      { "shortMonths", shortMonths },      { "longDateFormat", "d MMMM yyyy" },
66      { "months", months },      { "fullDateFormat", "EEEE, d MMMM yyyy" },
67        { "shortTimeFormat", "HH:mm" },
68        { "mediumTimeFormat", "HH:mm:ss" },
69        { "longTimeFormat", "HH:mm:ss z" },
70        { "fullTimeFormat", "HH:mm:ss z" },
71      { "ampms", ampms },      { "ampms", ampms },
     { "shortDateFormat", shortDateFormat },  
     { "defaultTimeFormat", defaultTimeFormat },  
72      { "currencySymbol", currencySymbol },      { "currencySymbol", currencySymbol },
73      { "intlCurrencySymbol", intlCurrencySymbol },      { "intlCurrencySymbol", intlCurrencySymbol },
74      { "currencyFormat", currencyFormat },      { "currencyFormat", currencyFormat },
# Line 80  public class LocaleInformation_en_GB ext Line 76  public class LocaleInformation_en_GB ext
76      { "groupingSeparator", groupingSeparator },      { "groupingSeparator", groupingSeparator },
77      { "numberFormat", numberFormat },      { "numberFormat", numberFormat },
78      { "percentFormat", percentFormat },      { "percentFormat", percentFormat },
79        { "zoneStrings", zoneStrings }
80    };    };
81    
82    public Object[][] getContents() { return contents; }    public Object[][] getContents() { return contents; }

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

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