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

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

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

revision 1.2 by mkoch, Sun Dec 26 15:06:15 2004 UTC revision 1.3 by mkoch, Wed Jan 5 07:22:27 2005 UTC
# Line 40  exception statement from your version. * Line 40  exception statement from your version. *
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_dz_BT extends ListResourceBundle  public class LocaleInformation_dz_BT extends ListResourceBundle
49  {  {
50      private static final String currenciesDisplayNameKeys = "BTN";
51    
52      private static final String currenciesDisplayNameValues = "\u0f51\u0f44\u0f74\u0f63\u0f0b\u0f40\u0fb2\u0f58\u0f0b";
53    
54      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 = "BTN";
69    
70      private static final String currenciesSymbolValues = "Nu";
71    
72      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    private static final Object[][] contents =    private static final Object[][] contents =
87    {    {
88      { "percent", "\u0f56\u0f62\u0f92\u0f0b\u0f46\u0f71" },      { "percent", "\u0f56\u0f62\u0f92\u0f0b\u0f46\u0f71" },
# Line 52  public class LocaleInformation_dz_BT ext Line 91  public class LocaleInformation_dz_BT ext
91      { "zeroDigit", "\u0f20" },      { "zeroDigit", "\u0f20" },
92      { "percentFormat", "#,##,##0 \u0f56\u0f62\u0f92\u0f0b\u0f46\u0f71" },      { "percentFormat", "#,##,##0 \u0f56\u0f62\u0f92\u0f0b\u0f46\u0f71" },
93      { "currencyFormat", "\u00a4#,##,##0.00;-\u00a4#,##,##0.00" },      { "currencyFormat", "\u00a4#,##,##0.00;-\u00a4#,##,##0.00" },
94        { "currenciesDisplayName", currenciesDisplayName },
95        { "currenciesSymbol", currenciesSymbol },
96    };    };
97    
98    public Object[][] getContents() { return contents; }    public Object[][] getContents() { return contents; }

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

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