1:
37:
38:
39:
40:
41: package ;
42:
43: import ;
44:
45: public class LocaleInformation_tl_PH extends ListResourceBundle
46: {
47: static final String decimalSeparator = LocaleInformation_en_US.decimalSeparator;
48: static final String groupingSeparator = LocaleInformation_en_US.groupingSeparator;
49: static final String numberFormat = LocaleInformation_en_US.numberFormat;
50: static final String percentFormat = LocaleInformation_en_US.percentFormat;
51: static final String[] weekdays = { null, "Linggo", "Lunes", "Martes", "Miyerkoles", "Huwebes", "Biyernes", "Sabado" };
52:
53: static final String[] shortWeekdays = { null, "Lin", "Lun", "Mar", "Miy", "Huw", "Biy", "Sab" };
54:
55: static final String[] shortMonths = { "Ene", "Peb", "Mar", "Abr", "May", "Hun", "Hul", "Ago", "Sep", "Okt", "Nob", "Dis", null };
56:
57: static final String[] months = { "Enero", "Pebrero", "Marso", "Abril", "Mayo", "Hunyo", "Hulyo", "Agosto", "Septiyembre", "Oktubre", "Nobiyembre", "Disyembre", null };
58:
59: static final String[] ampms = { "AM", "PM" };
60:
61: static final String shortDateFormat = "MM/dd/yy";
62: static final String defaultTimeFormat = "hh:m:s a";
63: static final String currencySymbol = "PhP";
64: static final String intlCurrencySymbol = "PHP";
65: static final String currencyFormat = "$#,###,##0.00;-$ #,###,##0.00";
66:
67: private static final Object[][] contents =
68: {
69: { "weekdays", weekdays },
70: { "shortWeekdays", shortWeekdays },
71: { "shortMonths", shortMonths },
72: { "months", months },
73: { "ampms", ampms },
74: { "shortDateFormat", shortDateFormat },
75: { "defaultTimeFormat", defaultTimeFormat },
76: { "currencySymbol", currencySymbol },
77: { "intlCurrencySymbol", intlCurrencySymbol },
78: { "currencyFormat", currencyFormat },
79: { "decimalSeparator", decimalSeparator },
80: { "groupingSeparator", groupingSeparator },
81: { "numberFormat", numberFormat },
82: { "percentFormat", percentFormat },
83: };
84:
85: public Object[][] getContents () { return contents; }
86: }