FormatData_it.java revision 0
4033N/A/*
1178N/A * Portions Copyright 1996-2005 Sun Microsystems, Inc. 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. Sun designates this
1178N/A * particular file as subject to the "Classpath" exception as provided
1178N/A * by Sun 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
4033N/A * CA 95054 USA or visit www.sun.com if you need additional information or
1178N/A * have any questions.
1178N/A */
4033N/A
4033N/A/*
0N/A * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
1178N/A * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
1178N/A *
1178N/A * The original version of this source code and documentation
4033N/A * is copyrighted and owned by Taligent, Inc., a wholly-owned
1178N/A * subsidiary of IBM. These materials are provided under terms
1178N/A * of a License Agreement between Taligent and Sun. This technology
4033N/A * is protected by multiple US and International patents.
1178N/A *
1178N/A * This notice and attribution to Taligent may not be removed.
4033N/A * Taligent is a registered trademark of Taligent, Inc.
1178N/A *
1178N/A */
4033N/A
1178N/Apackage sun.text.resources;
1178N/A
1178N/Aimport java.util.ListResourceBundle;
4033N/A
1178N/Apublic class FormatData_it extends ListResourceBundle {
1178N/A /**
1178N/A * Overrides ListResourceBundle
1178N/A */
1178N/A protected final Object[][] getContents() {
1178N/A return new Object[][] {
1178N/A { "MonthNames",
1178N/A new String[] {
1178N/A "gennaio", // january
1178N/A "febbraio", // february
0N/A "marzo", // march
1178N/A "aprile", // april
1178N/A "maggio", // may
1178N/A "giugno", // june
4033N/A "luglio", // july
1178N/A "agosto", // august
1178N/A "settembre", // september
4033N/A "ottobre", // october
1178N/A "novembre", // november
1178N/A "dicembre", // december
4033N/A "" // month 13 if applicable
1178N/A }
1178N/A },
4033N/A { "MonthAbbreviations",
1178N/A new String[] {
1178N/A "gen", // abb january
0N/A "feb", // abb february
4033N/A "mar", // abb march
1178N/A "apr", // abb april
1178N/A "mag", // abb may
4033N/A "giu", // abb june
1178N/A "lug", // abb july
0N/A "ago", // abb august
4033N/A "set", // abb september
1178N/A "ott", // abb october
1178N/A "nov", // abb november
1178N/A "dic", // abb december
1178N/A "" // abb month 13 if applicable
4033N/A }
1178N/A },
1178N/A { "DayNames",
1178N/A new String[] {
1178N/A "domenica", // Sunday
1178N/A "luned\u00ec", // Monday
1178N/A "marted\u00ec", // Tuesday
4033N/A "mercoled\u00ec", // Wednesday
1178N/A "gioved\u00ec", // Thursday
0N/A "venerd\u00ec", // Friday
4033N/A "sabato" // Saturday
1178N/A }
0N/A },
4033N/A { "DayAbbreviations",
1178N/A new String[] {
4033N/A "dom", // abb Sunday
0N/A "lun", // abb Monday
1178N/A "mar", // abb Tuesday
4033N/A "mer", // abb Wednesday
1178N/A "gio", // abb Thursday
4033N/A "ven", // abb Friday
1178N/A "sab" // abb Saturday
1178N/A }
0N/A },
1178N/A { "Eras",
0N/A new String[] { // era strings
4033N/A "BC",
1178N/A "dopo Cristo"
4033N/A }
0N/A },
4033N/A { "NumberElements",
1178N/A new String[] {
4033N/A ",", // decimal separator
1178N/A ".", // group (thousands) separator
1178N/A ";", // list separator
0N/A "%", // percent sign
4033N/A "0", // native 0 digit
0N/A "#", // pattern digit
4033N/A "-", // minus sign
0N/A "E", // exponential
4033N/A "\u2030", // per mille
0N/A "\u221e", // infinity
4033N/A "\ufffd" // NaN
1178N/A }
1178N/A },
4033N/A { "DateTimePatterns",
1178N/A new String[] {
1178N/A "H.mm.ss z", // full time pattern
1178N/A "H.mm.ss z", // long time pattern
1178N/A "H.mm.ss", // medium time pattern
1178N/A "H.mm", // short time pattern
1178N/A "EEEE d MMMM yyyy", // full date pattern
1178N/A "d MMMM yyyy", // long date pattern
4033N/A "d-MMM-yyyy", // medium date pattern
0N/A "dd/MM/yy", // short date pattern
4033N/A "{1} {0}" // date-time pattern
1178N/A }
4033N/A },
1178N/A { "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
1178N/A };
4033N/A }
1178N/A}
4033N/A