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

Diff of /classpath/gnu/java/locale/LocaleInformation_de_CH.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_de_CH.java  /* LocaleInformation_de_CH.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_de_CH extends ListResourceBundle  public class LocaleInformation_de_CH extends ListResourceBundle
49  {  {
50    static final String decimalSeparator = ".";    private static final String territoriesKeys = "MH|BD|DJ|SB|BW|GB|ST|BN|RW|ZW|CV";
   static final String groupingSeparator = " ";  
   static final String numberFormat = "#,###,##0.###";  
   static final String percentFormat = "#,###,##0%";  
   static final String[] weekdays = { null, "Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag" };  
51    
52    static final String[] shortWeekdays = { null, "Son", "Mon", "Die", "Mit", "Don", "Fre", "Sam" };    private static final String territoriesValues = "Marshall-Inseln|Bangladesh|Djibouti|Salomon-Inseln|Botswana|Grossbritannien|Sao Tom\u00e9 und Principe|Brunei|Rwanda|Zimbabwe|Kapverden";
53    
54    static final String[] shortMonths = { "Jan", "Feb", "M\u00E4r", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez", null };    private static final Hashtable territories;
55      static
56    static final String[] months = { "Januar", "Februar", "M\u00E4rz", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember", null };    {
57        territories = new Hashtable();
58    static final String[] ampms = { "", "" };      Enumeration keys = new StringTokenizer(territoriesKeys, "|");
59        Enumeration values = new StringTokenizer(territoriesValues, "|");
60    static final String shortDateFormat = "yyyy-MM-dd";      while (keys.hasMoreElements())
61    static final String defaultTimeFormat = "";        {
62    static final String currencySymbol = "Fr.";           String key = (String) keys.nextElement();
63    static final String intlCurrencySymbol = "CHF";           String value = (String) values.nextElement();
64    static final String currencyFormat = "$ #,###,##0.00;$ -#,###,##0.00";           territories.put(key, value);
65          }
66      }
67    
68    private static final Object[][] contents =    private static final Object[][] contents =
69    {    {
70      { "weekdays", weekdays },      { "decimalSeparator", "." },
71      { "shortWeekdays", shortWeekdays },      { "groupingSeparator", "'" },
72      { "shortMonths", shortMonths },      { "currencyFormat", "\u00a4 #,##0.00;\u00a4-#,##0.00" },
73      { "months", months },      { "territories", territories },
     { "ampms", ampms },  
     { "shortDateFormat", shortDateFormat },  
     { "defaultTimeFormat", defaultTimeFormat },  
     { "currencySymbol", currencySymbol },  
     { "intlCurrencySymbol", intlCurrencySymbol },  
     { "currencyFormat", currencyFormat },  
     { "decimalSeparator", decimalSeparator },  
     { "groupingSeparator", groupingSeparator },  
     { "numberFormat", numberFormat },  
     { "percentFormat", percentFormat },  
74    };    };
75    
76    public Object[][] getContents () { return contents; }    public Object[][] getContents() { return contents; }
77  }  }

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