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

Diff of /classpath/gnu/java/locale/LocaleInformation_ru_UA.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_ru_UA extends ListResourceBundle  public class LocaleInformation_ru_UA extends ListResourceBundle
46  {  {
   static final String decimalSeparator = ",";  
   static final String groupingSeparator = ".";  
47    static final String numberFormat = "#,###,##0.###";    static final String numberFormat = "#,###,##0.###";
48    static final String percentFormat = "#,###,##0%";    static final String percentFormat = "#,###,##0%";
49    static final String[] weekdays = { null, "\u0412\u043E\u0441\u043A\u0440\u0435\u0441\u0435\u043D\u044C\u0435", "\u041F\u043E\u043D\u0435\u0434\u0435\u043B\u044C\u043D\u0438\u043A", "\u0412\u0442\u043E\u0440\u043D\u0438\u043A", "\u0421\u0440\u0435\u0434\u0430", "\u0427\u0435\u0442\u0432\u0435\u0440\u0433", "\u041F\u044F\u0442\u043D\u0438\u0446\u0430", "\u0421\u0443\u0431\u0431\u043E\u0442\u0430" };    static final String[] weekdays = { null, "\u0412\u043E\u0441\u043A\u0440\u0435\u0441\u0435\u043D\u044C\u0435", "\u041F\u043E\u043D\u0435\u0434\u0435\u043B\u044C\u043D\u0438\u043A", "\u0412\u0442\u043E\u0440\u043D\u0438\u043A", "\u0421\u0440\u0435\u0434\u0430", "\u0427\u0435\u0442\u0432\u0435\u0440\u0433", "\u041F\u044F\u0442\u043D\u0438\u0446\u0430", "\u0421\u0443\u0431\u0431\u043E\u0442\u0430" };
# Line 57  public class LocaleInformation_ru_UA ext Line 55  public class LocaleInformation_ru_UA ext
55    static final String[] months = { "\u042F\u043D\u0432\u0430\u0440\u044C", "\u0424\u0435\u0432\u0440\u0430\u043B\u044C", "\u041C\u0430\u0440\u0442", "\u0410\u043F\u0440\u0435\u043B\u044C", "\u041C\u0430\u0439", "\u0418\u044E\u043D\u044C", "\u0418\u044E\u043B\u044C", "\u0410\u0432\u0433\u0443\u0441\u0442", "\u0421\u0435\u043D\u0442\u044F\u0431\u0440\u044C", "\u041E\u043A\u0442\u044F\u0431\u0440\u044C", "\u041D\u043E\u044F\u0431\u0440\u044C", "\u0414\u0435\u043A\u0430\u0431\u0440\u044C", null };    static final String[] months = { "\u042F\u043D\u0432\u0430\u0440\u044C", "\u0424\u0435\u0432\u0440\u0430\u043B\u044C", "\u041C\u0430\u0440\u0442", "\u0410\u043F\u0440\u0435\u043B\u044C", "\u041C\u0430\u0439", "\u0418\u044E\u043D\u044C", "\u0418\u044E\u043B\u044C", "\u0410\u0432\u0433\u0443\u0441\u0442", "\u0421\u0435\u043D\u0442\u044F\u0431\u0440\u044C", "\u041E\u043A\u0442\u044F\u0431\u0440\u044C", "\u041D\u043E\u044F\u0431\u0440\u044C", "\u0414\u0435\u043A\u0430\u0431\u0440\u044C", null };
56    
57    static final String[] ampms = { "", "" };    static final String[] ampms = { "", "" };
   
   static final String shortDateFormat = "dd.MM.yyyy";  
58    static final String currencySymbol = "\u0433\u0440";    static final String currencySymbol = "\u0433\u0440";
59    static final String intlCurrencySymbol = "UAH";    static final String intlCurrencySymbol = "UAH";
   static final String currencyFormat = "#,###,##0.00 $;-#,###,##0.00 $";  
60    
61    private static final Object[][] contents =    private static final Object[][] contents =
62    {    {
# Line 70  public class LocaleInformation_ru_UA ext Line 65  public class LocaleInformation_ru_UA ext
65      { "shortMonths", shortMonths },      { "shortMonths", shortMonths },
66      { "months", months },      { "months", months },
67      { "ampms", ampms },      { "ampms", ampms },
     { "shortDateFormat", shortDateFormat },  
68      { "currencySymbol", currencySymbol },      { "currencySymbol", currencySymbol },
69      { "intlCurrencySymbol", intlCurrencySymbol },      { "intlCurrencySymbol", intlCurrencySymbol },
     { "currencyFormat", currencyFormat },  
     { "decimalSeparator", decimalSeparator },  
     { "groupingSeparator", groupingSeparator },  
70      { "numberFormat", numberFormat },      { "numberFormat", numberFormat },
71      { "percentFormat", percentFormat },      { "percentFormat", percentFormat },
72        { "decimalSeparator", "," },
73        { "groupingSeparator", "\u00a0" },
74        { "currencyFormat", "#,##0.00 \u00a4;-#,##0.00 \u00a4" },
75        { "mediumDateFormat", "d MMM yyyy" },
76        { "longDateFormat", "d MMMM yyyy" },
77        { "fullDateFormat", "EEEE, d MMMM yyyy '\u0433.'" },
78        { "shortTimeFormat", "HH:mm" },
79        { "mediumTimeFormat", "HH:mm:ss" },
80        { "longTimeFormat", "HH:mm:ss z" },
81        { "fullTimeFormat", "HH:mm:ss 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