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

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

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

revision 1.2 by egagnon, Sun Aug 11 21:19:01 2002 UTC revision 1.2.2.1 by gnu_andrew, Sun Jan 16 15:15:03 2005 UTC
# Line 1  Line 1 
1  /* LocaleInformation_en_SG.java  /* LocaleInformation_en_SG.java --
2     Copyright (C) 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 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 localedef.  // This file was automatically generated by gnu.localegen from LDML
40    
41  package gnu.java.locale;  package gnu.java.locale;
42    
43    import java.util.Enumeration;
44    import java.util.Hashtable;
45    import java.util.StringTokenizer;
46  import java.util.ListResourceBundle;  import java.util.ListResourceBundle;
47    
48  public class LocaleInformation_en_SG extends ListResourceBundle  public class LocaleInformation_en_SG extends ListResourceBundle
49  {  {
50    static final String decimalSeparator = ".";    private static final String currenciesDisplayNameKeys = "USD";
   static final String groupingSeparator = ",";  
   static final String numberFormat = "#,##0.###";  
   static final String percentFormat = "#,##0%";  
   static final String[] weekdays = { null, "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" };  
51    
52    static final String[] shortWeekdays = { null, "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };    private static final String currenciesDisplayNameValues = "USD";
53    
54    static final String[] shortMonths = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", null };    private static final Hashtable currenciesDisplayName;
55      static
56      {
57        currenciesDisplayName = new Hashtable();
58        Enumeration keys = new StringTokenizer(currenciesDisplayNameKeys, "|");
59        Enumeration values = new StringTokenizer(currenciesDisplayNameValues, "|");
60        while (keys.hasMoreElements())
61          {
62             String key = (String) keys.nextElement();
63             String value = (String) values.nextElement();
64             currenciesDisplayName.put(key, value);
65          }
66      }
67    
68      private static final String currenciesSymbolKeys = "SGD";
69    
70    static final String[] months = { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December", null };    private static final String currenciesSymbolValues = "$";
71    
72    static final String[] ampms = { "AM", "PM" };    private static final Hashtable currenciesSymbol;
73      static
74      {
75        currenciesSymbol = new Hashtable();
76        Enumeration keys = new StringTokenizer(currenciesSymbolKeys, "|");
77        Enumeration values = new StringTokenizer(currenciesSymbolValues, "|");
78        while (keys.hasMoreElements())
79          {
80             String key = (String) keys.nextElement();
81             String value = (String) values.nextElement();
82             currenciesSymbol.put(key, value);
83          }
84      }
85    
86    static final String shortDateFormat = "EEEE dd,MMMM,yyyy";    private static final String[][] zoneStrings =
87    static final String defaultTimeFormat = "hh:m:s a z";    {
88    static final String currencySymbol = "$";      { "SST", "Singapore Standard Time", "SST", "Singapore Standard Time",  "Pacific/Guadalcanal" },
89    static final String intlCurrencySymbol = "SGD";    };
   static final String currencyFormat = "$#,##0.00;($#,##0.00)";  
90    
91    private static final Object[][] contents =    private static final Object[][] contents =
92    {    {
93      { "weekdays", weekdays },      { "currenciesDisplayName", currenciesDisplayName },
94      { "shortWeekdays", shortWeekdays },      { "currenciesSymbol", currenciesSymbol },
95      { "shortMonths", shortMonths },      { "shortDateFormat", "dd/MM/yyyy" },
96      { "months", months },      { "mediumDateFormat", "dd MMM yyyy" },
97      { "ampms", ampms },      { "longDateFormat", "dd MMMM yyyy" },
98      { "shortDateFormat", shortDateFormat },      { "fullDateFormat", "EEEE, dd MMMM yyyy" },
99      { "defaultTimeFormat", defaultTimeFormat },      { "shortTimeFormat", "h:mm a" },
100      { "currencySymbol", currencySymbol },      { "mediumTimeFormat", "h:mm:ss a" },
101      { "intlCurrencySymbol", intlCurrencySymbol },      { "longTimeFormat", "h:mm:ss a z" },
102      { "currencyFormat", currencyFormat },      { "fullTimeFormat", "h:mm:ss a z" },
103      { "decimalSeparator", decimalSeparator },      { "zoneStrings", zoneStrings },
     { "groupingSeparator", groupingSeparator },  
     { "numberFormat", numberFormat },  
     { "percentFormat", percentFormat },  
104    };    };
105    
106    public Object[][] getContents () { return contents; }    public Object[][] getContents() { return contents; }
107  }  }

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

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