1 /*
   2  * Copyright (c) 1997, 2013, 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 /*
  42  * COPYRIGHT AND PERMISSION NOTICE
  43  *
  44  * Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
  45  * the Terms of Use in http://www.unicode.org/copyright.html.
  46  *
  47  * Permission is hereby granted, free of charge, to any person obtaining a copy
  48  * of the Unicode data files and any associated documentation (the "Data
  49  * Files") or Unicode software and any associated documentation (the
  50  * "Software") to deal in the Data Files or Software without restriction,
  51  * including without limitation the rights to use, copy, modify, merge,
  52  * publish, distribute, and/or sell copies of the Data Files or Software, and
  53  * to permit persons to whom the Data Files or Software are furnished to do so,
  54  * provided that (a) the above copyright notice(s) and this permission notice
  55  * appear with all copies of the Data Files or Software, (b) both the above
  56  * copyright notice(s) and this permission notice appear in associated
  57  * documentation, and (c) there is clear notice in each modified Data File or
  58  * in the Software as well as in the documentation associated with the Data
  59  * File(s) or Software that the data or software has been modified.
  60  *
  61  * THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  62  * KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  63  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
  64  * THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
  65  * INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
  66  * CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  67  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  68  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  69  * OF THE DATA FILES OR SOFTWARE.
  70  *
  71  * Except as contained in this notice, the name of a copyright holder shall not
  72  * be used in advertising or otherwise to promote the sale, use or other
  73  * dealings in these Data Files or Software without prior written authorization
  74  * of the copyright holder.
  75  */
  76 
  77 package sun.text.resources.hu;
  78 
  79 import sun.util.resources.ParallelListResourceBundle;
  80 
  81 public class FormatData_hu extends ParallelListResourceBundle {
  82     /**
  83      * Overrides ParallelListResourceBundle
  84      */
  85     protected final Object[][] getContents() {
  86         return new Object[][] {
  87             { "MonthNames",
  88                 new String[] {
  89                     "janu\u00e1r", // january
  90                     "febru\u00e1r", // february
  91                     "m\u00e1rcius", // march
  92                     "\u00e1prilis", // april
  93                     "m\u00e1jus", // may
  94                     "j\u00fanius", // june
  95                     "j\u00falius", // july
  96                     "augusztus", // august
  97                     "szeptember", // september
  98                     "okt\u00f3ber", // october
  99                     "november", // november
 100                     "december", // december
 101                     "" // month 13 if applicable
 102                 }
 103             },
 104             { "standalone.MonthNames",
 105                 new String[] {
 106                     "janu\u00e1r",
 107                     "febru\u00e1r",
 108                     "m\u00e1rcius",
 109                     "\u00e1prilis",
 110                     "m\u00e1jus",
 111                     "j\u00fanius",
 112                     "j\u00falius",
 113                     "augusztus",
 114                     "szeptember",
 115                     "okt\u00f3ber",
 116                     "november",
 117                     "december",
 118                     "",
 119                 }
 120             },
 121             { "MonthAbbreviations",
 122                 new String[] {
 123                     "jan.", // abb january
 124                     "febr.", // abb february
 125                     "m\u00e1rc.", // abb march
 126                     "\u00e1pr.", // abb april
 127                     "m\u00e1j.", // abb may
 128                     "j\u00fan.", // abb june
 129                     "j\u00fal.", // abb july
 130                     "aug.", // abb august
 131                     "szept.", // abb september
 132                     "okt.", // abb october
 133                     "nov.", // abb november
 134                     "dec.", // abb december
 135                     "" // abb month 13 if applicable
 136                 }
 137             },
 138             { "standalone.MonthAbbreviations",
 139                 new String[] {
 140                     "jan.",
 141                     "febr.",
 142                     "m\u00e1rc.",
 143                     "\u00e1pr.",
 144                     "m\u00e1j.",
 145                     "j\u00fan.",
 146                     "j\u00fal.",
 147                     "aug.",
 148                     "szept.",
 149                     "okt.",
 150                     "nov.",
 151                     "dec.",
 152                     "",
 153                 }
 154             },
 155             { "MonthNarrows",
 156                 new String[] {
 157                     "J",
 158                     "F",
 159                     "M",
 160                     "\u00c1",
 161                     "M",
 162                     "J",
 163                     "J",
 164                     "A",
 165                     "Sz",
 166                     "O",
 167                     "N",
 168                     "D",
 169                     "",
 170                 }
 171             },
 172             { "standalone.MonthNarrows",
 173                 new String[] {
 174                     "J",
 175                     "F",
 176                     "M",
 177                     "\u00c1",
 178                     "M",
 179                     "J",
 180                     "J",
 181                     "A",
 182                     "Sz",
 183                     "O",
 184                     "N",
 185                     "D",
 186                     "",
 187                 }
 188             },
 189             { "DayNames",
 190                 new String[] {
 191                     "vas\u00e1rnap", // Sunday
 192                     "h\u00e9tf\u0151", // Monday
 193                     "kedd", // Tuesday
 194                     "szerda", // Wednesday
 195                     "cs\u00fct\u00f6rt\u00f6k", // Thursday
 196                     "p\u00e9ntek", // Friday
 197                     "szombat" // Saturday
 198                 }
 199             },
 200             { "standalone.DayNames",
 201                 new String[] {
 202                     "vas\u00e1rnap",
 203                     "h\u00e9tf\u0151",
 204                     "kedd",
 205                     "szerda",
 206                     "cs\u00fct\u00f6rt\u00f6k",
 207                     "p\u00e9ntek",
 208                     "szombat",
 209                 }
 210             },
 211             { "DayAbbreviations",
 212                 new String[] {
 213                     "V", // abb Sunday
 214                     "H", // abb Monday
 215                     "K", // abb Tuesday
 216                     "Sze", // abb Wednesday
 217                     "Cs", // abb Thursday
 218                     "P", // abb Friday
 219                     "Szo" // abb Saturday
 220                 }
 221             },
 222             { "standalone.DayAbbreviations",
 223                 new String[] {
 224                     "V",
 225                     "H",
 226                     "K",
 227                     "Sze",
 228                     "Cs",
 229                     "P",
 230                     "Szo",
 231                 }
 232             },
 233             { "DayNarrows",
 234                 new String[] {
 235                     "V",
 236                     "H",
 237                     "K",
 238                     "Sz",
 239                     "Cs",
 240                     "P",
 241                     "Sz",
 242                 }
 243             },
 244             { "standalone.DayNarrows",
 245                 new String[] {
 246                     "V",
 247                     "H",
 248                     "K",
 249                     "Sz",
 250                     "Cs",
 251                     "P",
 252                     "Sz",
 253                 }
 254             },
 255             { "AmPmMarkers",
 256                 new String[] {
 257                     "DE", // am marker
 258                     "DU" // pm marker
 259                 }
 260             },
 261             { "Eras",
 262                 new String[] { // era strings
 263                     "i.e.",
 264                     "i.u."
 265                 }
 266             },
 267             { "short.Eras",
 268                 new String[] {
 269                     "i. e.",
 270                     "i. sz.",
 271                 }
 272             },
 273             { "NumberElements",
 274                 new String[] {
 275                     ",", // decimal separator
 276                     "\u00a0", // group (thousands) separator
 277                     ";", // list separator
 278                     "%", // percent sign
 279                     "0", // native 0 digit
 280                     "#", // pattern digit
 281                     "-", // minus sign
 282                     "E", // exponential
 283                     "\u2030", // per mille
 284                     "\u221e", // infinity
 285                     "\ufffd" // NaN
 286                 }
 287             },
 288             { "TimePatterns",
 289                 new String[] {
 290                     "H:mm:ss z", // full time pattern
 291                     "H:mm:ss z", // long time pattern
 292                     "H:mm:ss", // medium time pattern
 293                     "H:mm", // short time pattern
 294                 }
 295             },
 296             { "DatePatterns",
 297                 new String[] {
 298                     "yyyy. MMMM d.", // full date pattern
 299                     "yyyy. MMMM d.", // long date pattern
 300                     "yyyy.MM.dd.", // medium date pattern
 301                     "yyyy.MM.dd.", // short date pattern
 302                 }
 303             },
 304             { "DateTimePatterns",
 305                 new String[] {
 306                     "{1} {0}" // date-time pattern
 307                 }
 308             },
 309             { "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
 310             { "buddhist.Eras",
 311                 new String[] {
 312                     "BC",
 313                     "BK",
 314                 }
 315             },
 316             { "buddhist.short.Eras",
 317                 new String[] {
 318                     "BC",
 319                     "BK",
 320                 }
 321             },
 322         };
 323     }
 324 }