FormatData_sl.java revision 0
2454N/A/*
2887N/A * Portions Copyright 1997-2005 Sun Microsystems, Inc. All Rights Reserved.
2454N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2454N/A *
2454N/A * This code is free software; you can redistribute it and/or modify it
2454N/A * under the terms of the GNU General Public License version 2 only, as
2454N/A * published by the Free Software Foundation. Sun designates this
2454N/A * particular file as subject to the "Classpath" exception as provided
2454N/A * by Sun in the LICENSE file that accompanied this code.
2454N/A *
6982N/A * This code is distributed in the hope that it will be useful, but WITHOUT
6982N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2454N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
2454N/A * version 2 for more details (a copy is included in the LICENSE file that
2454N/A * accompanied this code).
2454N/A *
6982N/A * You should have received a copy of the GNU General Public License version
6982N/A * 2 along with this work; if not, write to the Free Software Foundation,
6982N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
6982N/A *
2454N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
2454N/A * CA 95054 USA or visit www.sun.com if you need additional information or
2454N/A * have any questions.
2454N/A */
4618N/A
2454N/A/*
2454N/A * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
2454N/A * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
2454N/A *
2454N/A * The original version of this source code and documentation
4618N/A * is copyrighted and owned by Taligent, Inc., a wholly-owned
2454N/A * subsidiary of IBM. These materials are provided under terms
2454N/A * of a License Agreement between Taligent and Sun. This technology
2454N/A * is protected by multiple US and International patents.
2454N/A *
2454N/A * This notice and attribution to Taligent may not be removed.
2454N/A * Taligent is a registered trademark of Taligent, Inc.
4618N/A *
4618N/A */
4618N/A
4618N/Apackage sun.text.resources;
4618N/A
4618N/Aimport java.util.ListResourceBundle;
4618N/A
3188N/Apublic class FormatData_sl extends ListResourceBundle {
3154N/A /**
3188N/A * Overrides ListResourceBundle
3188N/A */
3188N/A protected final Object[][] getContents() {
3154N/A return new Object[][] {
3154N/A { "MonthNames",
3154N/A new String[] {
3154N/A "januar", // january
3154N/A "februar", // february
3154N/A "marec", // march
3188N/A "april", // april
2454N/A "maj", // may
2454N/A "junij", // june
3188N/A "julij", // july
3188N/A "avgust", // august
2454N/A "september", // september
3188N/A "oktober", // october
3188N/A "november", // november
3188N/A "december", // december
2454N/A "" // month 13 if applicable
2454N/A }
2454N/A },
2454N/A { "MonthAbbreviations",
2454N/A new String[] {
2454N/A "jan", // abb january
2454N/A "feb", // abb february
2454N/A "mar", // abb march
2454N/A "apr", // abb april
2454N/A "maj", // abb may
2454N/A "jun", // abb june
2454N/A "jul", // abb july
2454N/A "avg", // abb august
2454N/A "sep", // abb september
2454N/A "okt", // abb october
2454N/A "nov", // abb november
2454N/A "dec", // abb december
2454N/A "" // abb month 13 if applicable
2454N/A }
2454N/A },
2454N/A { "DayNames",
2454N/A new String[] {
2454N/A "Nedelja", // Sunday
2454N/A "Ponedeljek", // Monday
2454N/A "Torek", // Tuesday
2454N/A "Sreda", // Wednesday
2454N/A "\u010cetrtek", // Thursday
2454N/A "Petek", // Friday
2454N/A "Sobota" // Saturday
2454N/A }
2454N/A },
2454N/A { "DayAbbreviations",
2454N/A new String[] {
2454N/A "Ned", // abb Sunday
2454N/A "Pon", // abb Monday
2454N/A "Tor", // abb Tuesday
2454N/A "Sre", // abb Wednesday
2454N/A "\u010cet", // abb Thursday
2454N/A "Pet", // abb Friday
2454N/A "Sob" // abb Saturday
2454N/A }
2454N/A },
3047N/A { "Eras",
2454N/A new String[] { // era strings
2454N/A "pr.n.\u0161.",
3047N/A "po Kr."
3047N/A }
3047N/A },
2454N/A { "NumberElements",
3047N/A new String[] {
2454N/A ",", // decimal separator
2454N/A ".", // group (thousands) separator
2454N/A ";", // list separator
2454N/A "%", // percent sign
2454N/A "0", // native 0 digit
2454N/A "#", // pattern digit
2454N/A "-", // minus sign
2454N/A "E", // exponential
2454N/A "\u2030", // per mille
3047N/A "\u221e", // infinity
3047N/A "\ufffd" // NaN
3047N/A }
3047N/A },
3047N/A { "DateTimePatterns",
2454N/A new String[] {
2454N/A "H:mm:ss z", // full time pattern
3960N/A "H:mm:ss z", // long time pattern
3960N/A "H:mm:ss", // medium time pattern
3960N/A "H:mm", // short time pattern
3960N/A "EEEE, d MMMM yyyy", // full date pattern
3960N/A "EEEE, d MMMM yyyy", // long date pattern
3960N/A "d.M.yyyy", // medium date pattern
3960N/A "d.M.y", // short date pattern
3960N/A "{1} {0}" // date-time pattern
3960N/A }
3960N/A },
3960N/A { "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
3047N/A };
2454N/A }
2454N/A}
2454N/A