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.hr;
  78 
  79 import java.util.ListResourceBundle;
  80 
  81 public class FormatData_hr extends ListResourceBundle {
  82     /**
  83      * Overrides ListResourceBundle
  84      */
  85     @Override
  86     protected final Object[][] getContents() {
  87         final String[] rocEras ={
  88             "prije R.O.C.",
  89             "R.O.C.",
  90         };
  91         return new Object[][] {
  92             { "MonthNames",
  93                 new String[] {
  94                     "sije\u010dnja",
  95                     "velja\u010de",
  96                     "o\u017eujka",
  97                     "travnja",
  98                     "svibnja",
  99                     "lipnja",
 100                     "srpnja",
 101                     "kolovoza",
 102                     "rujna",
 103                     "listopada",
 104                     "studenoga",
 105                     "prosinca",
 106                     "",
 107                 }
 108             },
 109             { "standalone.MonthNames",
 110                 new String[] {
 111                     "sije\u010danj", // january
 112                     "velja\u010da", // february
 113                     "o\u017eujak", // march
 114                     "travanj", // april
 115                     "svibanj", // may
 116                     "lipanj", // june
 117                     "srpanj", // july
 118                     "kolovoz", // august
 119                     "rujan", // september
 120                     "listopad", // october
 121                     "studeni", // november
 122                     "prosinac", // december
 123                     "" // month 13 if applicable
 124                 }
 125             },
 126             { "MonthAbbreviations",
 127                 new String[] {
 128                     "sij",
 129                     "velj",
 130                     "o\u017eu",
 131                     "tra",
 132                     "svi",
 133                     "lip",
 134                     "srp",
 135                     "kol",
 136                     "ruj",
 137                     "lis",
 138                     "stu",
 139                     "pro",
 140                     "",
 141                 }
 142             },
 143             { "standalone.MonthAbbreviations",
 144                 new String[] {
 145                     "sij", // abb january
 146                     "vel", // abb february
 147                     "o\u017eu", // abb march
 148                     "tra", // abb april
 149                     "svi", // abb may
 150                     "lip", // abb june
 151                     "srp", // abb july
 152                     "kol", // abb august
 153                     "ruj", // abb september
 154                     "lis", // abb october
 155                     "stu", // abb november
 156                     "pro", // abb december
 157                     "" // abb month 13 if applicable
 158                 }
 159             },
 160             { "standalone.MonthNarrows",
 161                 new String[] {
 162                     "1.",
 163                     "2.",
 164                     "3.",
 165                     "4.",
 166                     "5.",
 167                     "6.",
 168                     "7.",
 169                     "8.",
 170                     "9.",
 171                     "10.",
 172                     "11.",
 173                     "12.",
 174                     "",
 175                 }
 176             },
 177             { "DayNames",
 178                 new String[] {
 179                     "nedjelja", // Sunday
 180                     "ponedjeljak", // Monday
 181                     "utorak", // Tuesday
 182                     "srijeda", // Wednesday
 183                     "\u010detvrtak", // Thursday
 184                     "petak", // Friday
 185                     "subota" // Saturday
 186                 }
 187             },
 188             { "DayAbbreviations",
 189                 new String[] {
 190                     "ned", // abb Sunday
 191                     "pon", // abb Monday
 192                     "uto", // abb Tuesday
 193                     "sri", // abb Wednesday
 194                     "\u010det", // abb Thursday
 195                     "pet", // abb Friday
 196                     "sub" // abb Saturday
 197                 }
 198             },
 199             { "DayNarrows",
 200                 new String[] {
 201                     "N",
 202                     "P",
 203                     "U",
 204                     "S",
 205                     "\u010c",
 206                     "P",
 207                     "S",
 208                 }
 209             },
 210             { "standalone.DayNarrows",
 211                 new String[] {
 212                     "n",
 213                     "p",
 214                     "u",
 215                     "s",
 216                     "\u010d",
 217                     "p",
 218                     "s",
 219                 }
 220             },
 221             { "NumberElements",
 222                 new String[] {
 223                     ",", // decimal separator
 224                     ".", // group (thousands) separator
 225                     ";", // list separator
 226                     "%", // percent sign
 227                     "0", // native 0 digit
 228                     "#", // pattern digit
 229                     "-", // minus sign
 230                     "E", // exponential
 231                     "\u2030", // per mille
 232                     "\u221e", // infinity
 233                     "\ufffd" // NaN
 234                 }
 235             },
 236             { "TimePatterns",
 237                 new String[] {
 238                     "HH:mm:ss z", // full time pattern
 239                     "HH:mm:ss z", // long time pattern
 240                     "HH:mm:ss", // medium time pattern
 241                     "HH:mm", // short time pattern
 242                 }
 243             },
 244             { "DatePatterns",
 245                 new String[] {
 246                     "yyyy. MMMM dd", // full date pattern
 247                     "yyyy. MMMM dd", // long date pattern
 248                     "yyyy.MM.dd", // medium date pattern
 249                     "yyyy.MM.dd", // short date pattern
 250                 }
 251             },
 252             { "DateTimePatterns",
 253                 new String[] {
 254                     "{1} {0}" // date-time pattern
 255                 }
 256             },
 257             { "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
 258             { "cldr.buddhist.DatePatterns",
 259                 new String[] {
 260                     "EEEE, d. MMMM y. G",
 261                     "d. MMMM y. G",
 262                     "d. M. y. G",
 263                     "d.M.y.",
 264                 }
 265             },
 266             { "cldr.japanese.DatePatterns",
 267                 new String[] {
 268                     "EEEE, d. MMMM y. G",
 269                     "d. MMMM y. G",
 270                     "d. M. y. G",
 271                     "d.M.y. G",
 272                 }
 273             },
 274             { "roc.Eras", rocEras },
 275             { "roc.short.Eras", rocEras },
 276             { "cldr.roc.DatePatterns",
 277                 new String[] {
 278                     "EEEE, d. MMMM y. G",
 279                     "d. MMMM y. G",
 280                     "d. M. y. G",
 281                     "d.M.y. G",
 282                 }
 283             },
 284             { "roc.DatePatterns",
 285                 new String[] {
 286                     "EEEE, d. MMMM y. GGGG",
 287                     "d. MMMM y. GGGG",
 288                     "d. M. y. GGGG",
 289                     "d.M.y. GGGG",
 290                 }
 291             },
 292             { "calendarname.islamic-civil", "islamski civilni kalendar" },
 293             { "calendarname.islamicc", "islamski civilni kalendar" },
 294             { "calendarname.roc", "kalendar Republike Kine" },
 295             { "calendarname.islamic", "islamski kalendar" },
 296             { "calendarname.buddhist", "budisti\u010dki kalendar" },
 297             { "calendarname.japanese", "japanski kalendar" },
 298             { "calendarname.gregorian", "gregorijanski kalendar" },
 299             { "calendarname.gregory", "gregorijanski kalendar" },
 300             { "field.era", "era" },
 301             { "field.year", "godina" },
 302             { "field.month", "mjesec" },
 303             { "field.week", "tjedan" },
 304             { "field.weekday", "dan u tjednu" },
 305             { "field.dayperiod", "dio dana" },
 306             { "field.hour", "sat" },
 307             { "field.minute", "minuta" },
 308             { "field.second", "sekunda" },
 309             { "field.zone", "zona" },
 310         };
 311     }
 312 }