1:
37:
38:
39:
40:
41: package ;
42:
43: import ;
44:
45: public class LocaleInformation_es_US 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, "domingo", "lunes", "martes", "mi\u00E9rcoles", "jueves", "viernes", "s\u00E1bado" };
52:
53: static final String[] shortWeekdays = { null, "dom", "lun", "mar", "mi\u00E9", "jue", "vie", "s\u00E1b" };
54:
55: static final String[] shortMonths = { "ene", "feb", "mar", "abr", "may", "jun", "jul", "ago", "sep", "oct", "nov", "dic", null };
56:
57: static final String[] months = { "enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre", null };
58:
59: static final String[] ampms = { "", "" };
60:
61: static final String shortDateFormat = "dd/MM/yy";
62: static final String defaultTimeFormat = "";
63: static final String currencySymbol = "$";
64: static final String intlCurrencySymbol = "USD";
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: }