4169N/A/*
1178N/A * Copyright (c) 1997, 2005, Oracle and/or its affiliates. All rights reserved.
1178N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1178N/A *
1178N/A * This code is free software; you can redistribute it and/or modify it
1178N/A * under the terms of the GNU General Public License version 2 only, as
1178N/A * published by the Free Software Foundation. Oracle designates this
1178N/A * particular file as subject to the "Classpath" exception as provided
1178N/A * by Oracle in the LICENSE file that accompanied this code.
1178N/A *
1178N/A * This code is distributed in the hope that it will be useful, but WITHOUT
1178N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1178N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
1178N/A * version 2 for more details (a copy is included in the LICENSE file that
1178N/A * accompanied this code).
1178N/A *
1178N/A * You should have received a copy of the GNU General Public License version
2362N/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 *
1178N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4935N/A * or visit www.oracle.com if you need additional information or have any
1178N/A * questions.
0N/A */
4033N/A
1178N/A/*
1178N/A * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
4033N/A * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
4935N/A *
0N/A * The original version of this source code and documentation
1178N/A * is copyrighted and owned by Taligent, Inc., a wholly-owned
4935N/A * subsidiary of IBM. These materials are provided under terms
0N/A * of a License Agreement between Taligent and Sun. This technology
4935N/A * is protected by multiple US and International patents.
0N/A *
4935N/A * This notice and attribution to Taligent may not be removed.
0N/A * Taligent is a registered trademark of Taligent, Inc.
4033N/A *
0N/A */
0N/A
0N/Apackage sun.text.resources;
0N/A
0N/Aimport java.util.ListResourceBundle;
0N/A
0N/Apublic class FormatData_is extends ListResourceBundle {
0N/A /**
0N/A * Overrides ListResourceBundle
0N/A */
4033N/A protected final Object[][] getContents() {
1178N/A return new Object[][] {
1178N/A { "MonthNames",
4935N/A new String[] {
0N/A "jan\u00faar", // january
0N/A "febr\u00faar", // february
0N/A "mars", // march
1178N/A "apr\u00edl", // april
4935N/A "ma\u00ed", // may
0N/A "j\u00fan\u00ed", // june
1178N/A "j\u00fal\u00ed", // july
4935N/A "\u00e1g\u00fast", // august
1178N/A "september", // september
1178N/A "okt\u00f3ber", // october
1178N/A "n\u00f3vember", // november
1178N/A "desember", // december
4935N/A "" // month 13 if applicable
1178N/A }
1178N/A },
4935N/A { "MonthAbbreviations",
1178N/A new String[] {
4935N/A "jan.", // abb january
1178N/A "feb.", // abb february
4935N/A "mar.", // abb march
1178N/A "apr.", // abb april
4033N/A "ma\u00ed", // abb may
1178N/A "j\u00fan.", // abb june
1178N/A "j\u00fal.", // abb july
4033N/A "\u00e1g\u00fa.", // abb august
1178N/A "sep.", // abb september
1178N/A "okt.", // abb october
1178N/A "n\u00f3v.", // abb november
1178N/A "des.", // abb december
4935N/A "" // abb month 13 if applicable
0N/A }
0N/A },
0N/A { "DayNames",
0N/A new String[] {
0N/A "sunnudagur", // Sunday
0N/A "m\u00e1nudagur", // Monday
1178N/A "\u00feri\u00f0judagur", // Tuesday
4033N/A "mi\u00f0vikudagur", // Wednesday
1178N/A "fimmtudagur", // Thursday
1178N/A "f\u00f6studagur", // Friday
0N/A "laugardagur" // Saturday
1178N/A }
4935N/A },
1178N/A { "DayAbbreviations",
0N/A new String[] {
0N/A "sun.", // abb Sunday
1178N/A "m\u00e1n.", // abb Monday
0N/A "\u00feri.", // abb Tuesday
1178N/A "mi\u00f0.", // abb Wednesday
4935N/A "fim.", // abb Thursday
1178N/A "f\u00f6s.", // abb Friday
1178N/A "lau." // abb Saturday
1178N/A }
1178N/A },
0N/A { "NumberElements",
1178N/A new String[] {
4935N/A ",", // decimal separator
1178N/A ".", // group (thousands) separator
1178N/A ";", // list separator
1178N/A "%", // percent sign
1178N/A "0", // native 0 digit
0N/A "#", // pattern digit
0N/A "-", // minus sign
4935N/A "E", // exponential
0N/A "\u2030", // per mille
0N/A "\u221e", // infinity
0N/A "\ufffd" // NaN
1178N/A }
1178N/A },
1178N/A { "DateTimePatterns",
4935N/A new String[] {
1178N/A "HH:mm:ss z", // full time pattern
1178N/A "HH:mm:ss z", // long time pattern
1178N/A "HH:mm:ss", // medium time pattern
1178N/A "HH:mm", // short time pattern
0N/A "d. MMMM yyyy", // full date pattern
4935N/A "d. MMMM yyyy", // long date pattern
0N/A "d.M.yyyy", // medium date pattern
0N/A "d.M.yyyy", // short date pattern
4935N/A "{1} {0}" // date-time pattern
1178N/A }
4935N/A },
1178N/A { "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
4935N/A };
1178N/A }
4935N/A}
1178N/A