001: /*
002: * Portions Copyright 1997-2005 Sun Microsystems, Inc. All Rights Reserved.
003: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
004: *
005: * This code is free software; you can redistribute it and/or modify it
006: * under the terms of the GNU General Public License version 2 only, as
007: * published by the Free Software Foundation. Sun designates this
008: * particular file as subject to the "Classpath" exception as provided
009: * by Sun in the LICENSE file that accompanied this code.
010: *
011: * This code is distributed in the hope that it will be useful, but WITHOUT
012: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
013: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
014: * version 2 for more details (a copy is included in the LICENSE file that
015: * accompanied this code).
016: *
017: * You should have received a copy of the GNU General Public License version
018: * 2 along with this work; if not, write to the Free Software Foundation,
019: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
020: *
021: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
022: * CA 95054 USA or visit www.sun.com if you need additional information or
023: * have any questions.
024: */
025:
026: /*
027: * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
028: * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
029: *
030: * The original version of this source code and documentation
031: * is copyrighted and owned by Taligent, Inc., a wholly-owned
032: * subsidiary of IBM. These materials are provided under terms
033: * of a License Agreement between Taligent and Sun. This technology
034: * is protected by multiple US and International patents.
035: *
036: * This notice and attribution to Taligent may not be removed.
037: * Taligent is a registered trademark of Taligent, Inc.
038: *
039: */
040:
041: package sun.text.resources;
042:
043: import java.util.ListResourceBundle;
044:
045: public class FormatData_hu extends ListResourceBundle {
046: /**
047: * Overrides ListResourceBundle
048: */
049: protected final Object[][] getContents() {
050: return new Object[][] {
051: { "MonthNames", new String[] { "janu\u00e1r", // january
052: "febru\u00e1r", // february
053: "m\u00e1rcius", // march
054: "\u00e1prilis", // april
055: "m\u00e1jus", // may
056: "j\u00fanius", // june
057: "j\u00falius", // july
058: "augusztus", // august
059: "szeptember", // september
060: "okt\u00f3ber", // october
061: "november", // november
062: "december", // december
063: "" // month 13 if applicable
064: } }, { "MonthAbbreviations", new String[] { "jan.", // abb january
065: "febr.", // abb february
066: "m\u00e1rc.", // abb march
067: "\u00e1pr.", // abb april
068: "m\u00e1j.", // abb may
069: "j\u00fan.", // abb june
070: "j\u00fal.", // abb july
071: "aug.", // abb august
072: "szept.", // abb september
073: "okt.", // abb october
074: "nov.", // abb november
075: "dec.", // abb december
076: "" // abb month 13 if applicable
077: } }, { "DayNames", new String[] { "vas\u00e1rnap", // Sunday
078: "h\u00e9tf\u0151", // Monday
079: "kedd", // Tuesday
080: "szerda", // Wednesday
081: "cs\u00fct\u00f6rt\u00f6k", // Thursday
082: "p\u00e9ntek", // Friday
083: "szombat" // Saturday
084: } }, { "DayAbbreviations", new String[] { "V", // abb Sunday
085: "H", // abb Monday
086: "K", // abb Tuesday
087: "Sze", // abb Wednesday
088: "Cs", // abb Thursday
089: "P", // abb Friday
090: "Szo" // abb Saturday
091: } }, { "AmPmMarkers", new String[] { "DE", // am marker
092: "DU" // pm marker
093: } }, { "Eras", new String[] { // era strings
094: "i.e.", "i.u." } },
095: { "NumberElements", new String[] { ",", // decimal separator
096: "\u00a0", // group (thousands) separator
097: ";", // list separator
098: "%", // percent sign
099: "0", // native 0 digit
100: "#", // pattern digit
101: "-", // minus sign
102: "E", // exponential
103: "\u2030", // per mille
104: "\u221e", // infinity
105: "\ufffd" // NaN
106: } }, { "DateTimePatterns", new String[] { "H:mm:ss z", // full time pattern
107: "H:mm:ss z", // long time pattern
108: "H:mm:ss", // medium time pattern
109: "H:mm", // short time pattern
110: "yyyy. MMMM d.", // full date pattern
111: "yyyy. MMMM d.", // long date pattern
112: "yyyy.MM.dd.", // medium date pattern
113: "yyyy.MM.dd.", // short date pattern
114: "{1} {0}" // date-time pattern
115: } }, { "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" }, };
116: }
117: }
|