4880N/A/*
4601N/A * Copyright (c) 1997, 2005, Oracle and/or its affiliates. All rights reserved.
4601N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4601N/A *
4601N/A * This code is free software; you can redistribute it and/or modify it
4601N/A * under the terms of the GNU General Public License version 2 only, as
4601N/A * published by the Free Software Foundation. Oracle designates this
4601N/A * particular file as subject to the "Classpath" exception as provided
4601N/A * by Oracle in the LICENSE file that accompanied this code.
4601N/A *
4601N/A * This code is distributed in the hope that it will be useful, but WITHOUT
4601N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4601N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
4601N/A * version 2 for more details (a copy is included in the LICENSE file that
4601N/A * accompanied this code).
4601N/A *
4601N/A * You should have received a copy of the GNU General Public License version
4601N/A * 2 along with this work; if not, write to the Free Software Foundation,
4601N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4601N/A *
4601N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4880N/A * or visit www.oracle.com if you need additional information or have any
4601N/A * questions.
4601N/A */
4601N/A
4601N/A/*
4880N/A * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
4880N/A * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
4880N/A *
4601N/A * The original version of this source code and documentation
4601N/A * is copyrighted and owned by Taligent, Inc., a wholly-owned
4601N/A * subsidiary of IBM. These materials are provided under terms
4601N/A * of a License Agreement between Taligent and Sun. This technology
4601N/A * is protected by multiple US and International patents.
4601N/A *
4880N/A * This notice and attribution to Taligent may not be removed.
4601N/A * Taligent is a registered trademark of Taligent, Inc.
4880N/A *
4601N/A */
4880N/A
4601N/Apackage sun.text.resources;
4880N/A
4601N/Aimport java.util.ListResourceBundle;
4601N/A
4601N/Apublic class FormatData_hr extends ListResourceBundle {
4601N/A /**
4601N/A * Overrides ListResourceBundle
4601N/A */
4601N/A protected final Object[][] getContents() {
4880N/A return new Object[][] {
4880N/A { "MonthNames",
4880N/A new String[] {
4880N/A "sije\u010danj", // january
4880N/A "velja\u010da", // february
4880N/A "o\u017eujak", // march
4880N/A "travanj", // april
4880N/A "svibanj", // may
4601N/A "lipanj", // june
4880N/A "srpanj", // july
4880N/A "kolovoz", // august
4880N/A "rujan", // september
4880N/A "listopad", // october
4880N/A "studeni", // november
4880N/A "prosinac", // december
4880N/A "" // month 13 if applicable
4880N/A }
4601N/A },
4601N/A { "MonthAbbreviations",
4601N/A new String[] {
4601N/A "sij", // abb january
4601N/A "vel", // abb february
4601N/A "o\u017eu", // abb march
4601N/A "tra", // abb april
4601N/A "svi", // abb may
4880N/A "lip", // abb june
4880N/A "srp", // abb july
4601N/A "kol", // abb august
4601N/A "ruj", // abb september
4880N/A "lis", // abb october
4601N/A "stu", // abb november
4601N/A "pro", // abb december
4601N/A "" // abb month 13 if applicable
4880N/A }
4601N/A },
4601N/A { "DayNames",
4601N/A new String[] {
4601N/A "nedjelja", // Sunday
4601N/A "ponedjeljak", // Monday
4601N/A "utorak", // Tuesday
4601N/A "srijeda", // Wednesday
4880N/A "\u010detvrtak", // Thursday
4880N/A "petak", // Friday
4880N/A "subota" // Saturday
4601N/A }
4880N/A },
4880N/A { "DayAbbreviations",
4880N/A new String[] {
4601N/A "ned", // abb Sunday
4880N/A "pon", // abb Monday
4880N/A "uto", // abb Tuesday
4880N/A "sri", // abb Wednesday
4601N/A "\u010det", // abb Thursday
4880N/A "pet", // abb Friday
4880N/A "sub" // abb Saturday
4880N/A }
4601N/A },
4880N/A { "NumberElements",
4880N/A new String[] {
4880N/A ",", // decimal separator
4880N/A ".", // group (thousands) separator
4601N/A ";", // list separator
4601N/A "%", // percent sign
4601N/A "0", // native 0 digit
4601N/A "#", // pattern digit
4601N/A "-", // minus sign
4601N/A "E", // exponential
4601N/A "\u2030", // per mille
4601N/A "\u221e", // infinity
4601N/A "\ufffd" // NaN
4880N/A }
4880N/A },
4880N/A { "DateTimePatterns",
4880N/A new String[] {
4601N/A "HH:mm:ss z", // full time pattern
"HH:mm:ss z", // long time pattern
"HH:mm:ss", // medium time pattern
"HH:mm", // short time pattern
"yyyy. MMMM dd", // full date pattern
"yyyy. MMMM dd", // long date pattern
"yyyy.MM.dd", // medium date pattern
"yyyy.MM.dd", // short date pattern
"{1} {0}" // date-time pattern
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
};
}
}