1:
37:
38:
39:
40:
41: package ;
42:
43: import ;
44:
45: public class LocaleInformation_sv_FI extends ListResourceBundle
46: {
47: static final String decimalSeparator = LocaleInformation_fi_FI.decimalSeparator;
48: static final String groupingSeparator = LocaleInformation_fi_FI.groupingSeparator;
49: static final String numberFormat = LocaleInformation_fi_FI.numberFormat;
50: static final String percentFormat = LocaleInformation_fi_FI.percentFormat;
51: static final String[] weekdays = { null, "s\u00F6ndag", "m\u00E5ndag", "tisdag", "onsdag", "torsdag", "fredag", "l\u00F6rdag" };
52:
53: static final String[] shortWeekdays = { null, "s\u00F6n", "m\u00E5n", "tis", "ons", "tor", "fre", "l\u00F6r" };
54:
55: static final String[] shortMonths = { "jan", "feb", "mar", "apr", "maj", "jun", "jul", "aug", "sep", "okt", "nov", "dec", null };
56:
57: static final String[] months = { "januari", "februari", "mars", "april", "maj", "juni", "juli", "augusti", "september", "oktober", "november", "december", null };
58:
59: static final String[] ampms = { "", "" };
60:
61: static final String shortDateFormat = "yyyy-MM-dd";
62: static final String defaultTimeFormat = "";
63: static final String currencySymbol = LocaleInformation_fi_FI.currencySymbol;
64: static final String intlCurrencySymbol = LocaleInformation_fi_FI.intlCurrencySymbol;
65: static final String currencyFormat = LocaleInformation_fi_FI.currencyFormat;
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: }