1 /*
   2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /*
  27  * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
  28  * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
  29  *
  30  * The original version of this source code and documentation
  31  * is copyrighted and owned by Taligent, Inc., a wholly-owned
  32  * subsidiary of IBM. These materials are provided under terms
  33  * of a License Agreement between Taligent and Sun. This technology
  34  * is protected by multiple US and International patents.
  35  *
  36  * This notice and attribution to Taligent may not be removed.
  37  * Taligent is a registered trademark of Taligent, Inc.
  38  *
  39  */
  40 
  41 package sun.text.resources.hu;
  42 
  43 import java.util.ListResourceBundle;
  44 
  45 public class FormatData_hu extends ListResourceBundle {
  46     /**
  47      * Overrides ListResourceBundle
  48      */
  49     protected final Object[][] getContents() {
  50         return new Object[][] {
  51             { "MonthNames",
  52                 new String[] {
  53                     "janu\u00e1r", // january
  54                     "febru\u00e1r", // february
  55                     "m\u00e1rcius", // march
  56                     "\u00e1prilis", // april
  57                     "m\u00e1jus", // may
  58                     "j\u00fanius", // june
  59                     "j\u00falius", // july
  60                     "augusztus", // august
  61                     "szeptember", // september
  62                     "okt\u00f3ber", // october
  63                     "november", // november
  64                     "december", // december
  65                     "" // month 13 if applicable
  66                 }
  67             },
  68             { "MonthAbbreviations",
  69                 new String[] {
  70                     "jan.", // abb january
  71                     "febr.", // abb february
  72                     "m\u00e1rc.", // abb march
  73                     "\u00e1pr.", // abb april
  74                     "m\u00e1j.", // abb may
  75                     "j\u00fan.", // abb june
  76                     "j\u00fal.", // abb july
  77                     "aug.", // abb august
  78                     "szept.", // abb september
  79                     "okt.", // abb october
  80                     "nov.", // abb november
  81                     "dec.", // abb december
  82                     "" // abb month 13 if applicable
  83                 }
  84             },
  85             { "DayNames",
  86                 new String[] {
  87                     "vas\u00e1rnap", // Sunday
  88                     "h\u00e9tf\u0151", // Monday
  89                     "kedd", // Tuesday
  90                     "szerda", // Wednesday
  91                     "cs\u00fct\u00f6rt\u00f6k", // Thursday
  92                     "p\u00e9ntek", // Friday
  93                     "szombat" // Saturday
  94                 }
  95             },
  96             { "DayAbbreviations",
  97                 new String[] {
  98                     "V", // abb Sunday
  99                     "H", // abb Monday
 100                     "K", // abb Tuesday
 101                     "Sze", // abb Wednesday
 102                     "Cs", // abb Thursday
 103                     "P", // abb Friday
 104                     "Szo" // abb Saturday
 105                 }
 106             },
 107             { "AmPmMarkers",
 108                 new String[] {
 109                     "DE", // am marker
 110                     "DU" // pm marker
 111                 }
 112             },
 113             { "Eras",
 114                 new String[] { // era strings
 115                     "i.e.",
 116                     "i.u."
 117                 }
 118             },
 119             { "NumberElements",
 120                 new String[] {
 121                     ",", // decimal separator
 122                     "\u00a0", // group (thousands) separator
 123                     ";", // list separator
 124                     "%", // percent sign
 125                     "0", // native 0 digit
 126                     "#", // pattern digit
 127                     "-", // minus sign
 128                     "E", // exponential
 129                     "\u2030", // per mille
 130                     "\u221e", // infinity
 131                     "\ufffd" // NaN
 132                 }
 133             },
 134             { "TimePatterns",
 135                 new String[] {
 136                     "H:mm:ss z", // full time pattern
 137                     "H:mm:ss z", // long time pattern
 138                     "H:mm:ss", // medium time pattern
 139                     "H:mm", // short time pattern
 140                 }
 141             },
 142             { "DatePatterns",
 143                 new String[] {
 144                     "yyyy. MMMM d.", // full date pattern
 145                     "yyyy. MMMM d.", // long date pattern
 146                     "yyyy.MM.dd.", // medium date pattern
 147                     "yyyy.MM.dd.", // short date pattern
 148                 }
 149             },
 150             { "DateTimePatterns",
 151                 new String[] {
 152                     "{1} {0}" // date-time pattern
 153                 }
 154             },
 155             { "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
 156         };
 157     }
 158 }