/[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.4 by mkoch, Fri Dec 17 11:01:32 2004 UTC revision 1.5 by mkoch, Fri Dec 17 14:04:19 2004 UTC
# Line 44  import java.util.ListResourceBundle; Line 44  import java.util.ListResourceBundle;
44    
45  public class LocaleInformation_en_SG extends ListResourceBundle  public class LocaleInformation_en_SG extends ListResourceBundle
46  {  {
47    static final String decimalSeparator = ".";    private static final String[][] zoneStrings =
48    static final String groupingSeparator = ",";    {
49    static final String numberFormat = "#,##0.###";      { "Pacific/Guadalcanal", "Singapore Standard Time", "SST", "Singapore Standard Time", "SST" }
50    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    
52    static final String[] ampms = { "AM", "PM" };    static final String[] ampms = { "AM", "PM" };
   
   static final String shortDateFormat = "EEEE dd,MMMM,yyyy";  
53    static final String currencySymbol = "$";    static final String currencySymbol = "$";
54    static final String intlCurrencySymbol = "SGD";    static final String intlCurrencySymbol = "SGD";
55    static final String currencyFormat = "$#,##0.00;($#,##0.00)";    static final String currencyFormat = "$#,##0.00;($#,##0.00)";
56    
57    private static final Object[][] contents =    private static final Object[][] contents =
58    {    {
59      { "weekdays", weekdays },      { "shortDateFormat", "dd/MM/yyyy" },
60      { "shortWeekdays", shortWeekdays },      { "mediumDateFormat", "dd MMM yyyy" },
61      { "shortMonths", shortMonths },      { "longDateFormat", "dd MMMM yyyy" },
62      { "months", months },      { "fullDateFormat", "EEEE, dd MMMM yyyy" },
63        { "shortTimeFormat", "h:mm a" },
64        { "mediumTimeFormat", "h:mm:ss a" },
65        { "longTimeFormat", "h:mm:ss a z" },
66        { "fullTimeFormat", "h:mm:ss a z" },
67      { "ampms", ampms },      { "ampms", ampms },
     { "shortDateFormat", shortDateFormat },  
68      { "currencySymbol", currencySymbol },      { "currencySymbol", currencySymbol },
69      { "intlCurrencySymbol", intlCurrencySymbol },      { "intlCurrencySymbol", intlCurrencySymbol },
70      { "currencyFormat", currencyFormat },      { "currencyFormat", currencyFormat },
71      { "decimalSeparator", decimalSeparator },      { "zoneStrings", zoneStrings }
     { "groupingSeparator", groupingSeparator },  
     { "numberFormat", numberFormat },  
     { "percentFormat", percentFormat },  
72    };    };
73    
74    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