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

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

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

revision 1.4 by mkoch, Fri Dec 17 11:01:31 2004 UTC revision 1.5 by mkoch, Fri Dec 17 14:04:19 2004 UTC
# Line 47  public class LocaleInformation_ar_IN ext Line 47  public class LocaleInformation_ar_IN ext
47    static final String decimalSeparator = ".";    static final String decimalSeparator = ".";
48    static final String groupingSeparator = ",";    static final String groupingSeparator = ",";
49    static final String numberFormat = "#,##,##0.###";    static final String numberFormat = "#,##,##0.###";
   static final String percentFormat = "#,##,##0%";  
50    static final String[] weekdays = { null, "\u0627\u0644\u0623\u062D\u062F", "\u0627\u0644\u0627\u062B\u0646\u064A\u0646", "\u0627\u0644\u062B\u0644\u0627\u062B\u0627\u0621", "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", "\u0627\u0644\u062E\u0645\u064A\u0633", "\u0627\u0644\u062C\u0645\u0639\u0629", "\u0627\u0644\u0633\u0628\u062A" };    static final String[] weekdays = { null, "\u0627\u0644\u0623\u062D\u062F", "\u0627\u0644\u0627\u062B\u0646\u064A\u0646", "\u0627\u0644\u062B\u0644\u0627\u062B\u0627\u0621", "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", "\u0627\u0644\u062E\u0645\u064A\u0633", "\u0627\u0644\u062C\u0645\u0639\u0629", "\u0627\u0644\u0633\u0628\u062A" };
51    
52    static final String[] shortWeekdays = { null, "\u062D", "\u0646", "\u062B", "\u0631", "\u062E", "\u062C", "\u0633" };    static final String[] shortWeekdays = { null, "\u062D", "\u0646", "\u062B", "\u0631", "\u062E", "\u062C", "\u0633" };
# Line 57  public class LocaleInformation_ar_IN ext Line 56  public class LocaleInformation_ar_IN ext
56    static final String[] months = { "\u064A\u0646\u0627\u064A\u0631", "\u0641\u0628\u0631\u0627\u064A\u0631", "\u0645\u0627\u0631\u0633", "\u0623\u0628\u0631\u064A\u0644", "\u0645\u0627\u064A\u0648", "\u064A\u0648\u0646\u064A\u0648", "\u064A\u0648\u0644\u064A\u0648", "\u0623\u063A\u0633\u0637\u0633", "\u0633\u0628\u062A\u0645\u0628\u0631", "\u0623\u0643\u062A\u0648\u0628\u0631", "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062F\u064A\u0633\u0645\u0628\u0631", null };    static final String[] months = { "\u064A\u0646\u0627\u064A\u0631", "\u0641\u0628\u0631\u0627\u064A\u0631", "\u0645\u0627\u0631\u0633", "\u0623\u0628\u0631\u064A\u0644", "\u0645\u0627\u064A\u0648", "\u064A\u0648\u0646\u064A\u0648", "\u064A\u0648\u0644\u064A\u0648", "\u0623\u063A\u0633\u0637\u0633", "\u0633\u0628\u062A\u0645\u0628\u0631", "\u0623\u0643\u062A\u0648\u0628\u0631", "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062F\u064A\u0633\u0645\u0628\u0631", null };
57    
58    static final String[] ampms = { "\u0635", "\u0645" };    static final String[] ampms = { "\u0635", "\u0645" };
   
   static final String shortDateFormat = "EEEE dd MMMM yyyy";  
59    static final String currencySymbol = "\u20A8";    static final String currencySymbol = "\u20A8";
60    static final String intlCurrencySymbol = "INR";    static final String intlCurrencySymbol = "INR";
   static final String currencyFormat = "$ #,##,##0.00;-$ #,##,##0.00";  
61    
62    private static final Object[][] contents =    private static final Object[][] contents =
63    {    {
# Line 70  public class LocaleInformation_ar_IN ext Line 66  public class LocaleInformation_ar_IN ext
66      { "shortMonths", shortMonths },      { "shortMonths", shortMonths },
67      { "months", months },      { "months", months },
68      { "ampms", ampms },      { "ampms", ampms },
     { "shortDateFormat", shortDateFormat },  
69      { "currencySymbol", currencySymbol },      { "currencySymbol", currencySymbol },
70      { "intlCurrencySymbol", intlCurrencySymbol },      { "intlCurrencySymbol", intlCurrencySymbol },
     { "currencyFormat", currencyFormat },  
71      { "decimalSeparator", decimalSeparator },      { "decimalSeparator", decimalSeparator },
72      { "groupingSeparator", groupingSeparator },      { "groupingSeparator", groupingSeparator },
73      { "numberFormat", numberFormat },      { "numberFormat", numberFormat },
74      { "percentFormat", percentFormat },      { "percentFormat", "##,##,##0%" },
75        { "currencyFormat", "\u00a4 ##,##,##0.00;-\u00a4 ##,##,##0.00" },
76        { "shortDateFormat", "d-M-yy" },
77        { "mediumDateFormat", "dd-MM-yyyy" },
78        { "longDateFormat", "d MMMM yyyy" },
79        { "fullDateFormat", "EEEE d MMMM yyyy" },
80        { "longTimeFormat", "h:mm:ss a z" },
81        { "fullTimeFormat", "h:mm:ss a z" }
82    };    };
83    
84    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