FormatData_sv.java revision 434
0N/A/*
3261N/A * Portions Copyright 1997-2005 Sun Microsystems, Inc. All Rights Reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation. Sun designates this
0N/A * particular file as subject to the "Classpath" exception as provided
0N/A * by Sun in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
2362N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2362N/A *
2362N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
0N/A * CA 95054 USA or visit www.sun.com if you need additional information or
0N/A * have any questions.
0N/A */
0N/A
0N/A/*
0N/A * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
0N/A * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
0N/A *
0N/A * The original version of this source code and documentation
0N/A * is copyrighted and owned by Taligent, Inc., a wholly-owned
0N/A * subsidiary of IBM. These materials are provided under terms
0N/A * of a License Agreement between Taligent and Sun. This technology
0N/A * is protected by multiple US and International patents.
0N/A *
0N/A * This notice and attribution to Taligent may not be removed.
0N/A * Taligent is a registered trademark of Taligent, Inc.
0N/A *
0N/A */
0N/A
0N/Apackage sun.text.resources;
0N/A
0N/Aimport java.util.ListResourceBundle;
0N/A
0N/Apublic class FormatData_sv extends ListResourceBundle {
0N/A /**
0N/A * Overrides ListResourceBundle
0N/A */
0N/A protected final Object[][] getContents() {
0N/A return new Object[][] {
2078N/A { "MonthNames",
0N/A new String[] {
0N/A "januari", // january
0N/A "februari", // february
0N/A "mars", // march
0N/A "april", // april
0N/A "maj", // may
0N/A "juni", // june
0N/A "juli", // july
0N/A "augusti", // august
0N/A "september", // september
0N/A "oktober", // october
0N/A "november", // november
0N/A "december", // december
0N/A "" // month 13 if applicable
0N/A }
2078N/A },
2078N/A { "MonthAbbreviations",
2078N/A new String[] {
2078N/A "jan", // abb january
2078N/A "feb", // abb february
2078N/A "mar", // abb march
2078N/A "apr", // abb april
2078N/A "maj", // abb may
2078N/A "jun", // abb june
2078N/A "jul", // abb july
2078N/A "aug", // abb august
2078N/A "sep", // abb september
2078N/A "okt", // abb october
2078N/A "nov", // abb november
2078N/A "dec", // abb december
2078N/A "" // abb month 13 if applicable
0N/A }
0N/A },
0N/A { "DayNames",
0N/A new String[] {
0N/A "s\u00f6ndag", // Sunday
0N/A "m\u00e5ndag", // Monday
0N/A "tisdag", // Tuesday
0N/A "onsdag", // Wednesday
"torsdag", // Thursday
"fredag", // Friday
"l\u00f6rdag" // Saturday
}
},
{ "DayAbbreviations",
new String[] {
"s\u00f6", // abb Sunday
"m\u00e5", // abb Monday
"ti", // abb Tuesday
"on", // abb Wednesday
"to", // abb Thursday
"fr", // abb Friday
"l\u00f6" // abb Saturday
}
},
{ "AmPmMarkers",
new String[] {
"fm", // am marker
"em" // pm marker
}
},
{ "NumberElements",
new String[] {
",", // decimal separator
"\u00a0", // group (thousands) separator
";", // list separator
"%", // percent sign
"0", // native 0 digit
"#", // pattern digit
"-", // minus sign
"E", // exponential
"\u2030", // per mille
"\u221e", // infinity
"\ufffd" // NaN
}
},
{ "DateTimePatterns",
new String[] {
"'kl 'H:mm z", // full time pattern
"HH:mm:ss z", // long time pattern
"HH:mm:ss", // medium time pattern
"HH:mm", // short time pattern
"'den 'd MMMM yyyy", // full date pattern
"'den 'd MMMM yyyy", // long date pattern
"yyyy-MMM-dd", // medium date pattern
"yyyy-MM-dd", // short date pattern
"{1} {0}" // date-time pattern
}
},
{ "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
};
}
}