1 /*
   2  * Copyright (c) 1996, 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.it;
  78 
  79 import java.util.ListResourceBundle;
  80 
  81 public class FormatData_it extends ListResourceBundle {
  82     /**
  83      * Overrides ListResourceBundle
  84      */
  85     protected final Object[][] getContents() {
  86         return new Object[][] {
  87             { "MonthNames",
  88                 new String[] {
  89                     "gennaio", // january
  90                     "febbraio", // february
  91                     "marzo", // march
  92                     "aprile", // april
  93                     "maggio", // may
  94                     "giugno", // june
  95                     "luglio", // july
  96                     "agosto", // august
  97                     "settembre", // september
  98                     "ottobre", // october
  99                     "novembre", // november
 100                     "dicembre", // december
 101                     "" // month 13 if applicable
 102                 }
 103             },
 104             { "standalone.MonthNames",
 105                 new String[] {
 106                     "Gennaio",
 107                     "Febbraio",
 108                     "Marzo",
 109                     "Aprile",
 110                     "Maggio",
 111                     "Giugno",
 112                     "Luglio",
 113                     "Agosto",
 114                     "Settembre",
 115                     "Ottobre",
 116                     "Novembre",
 117                     "Dicembre",
 118                     "",
 119                 }
 120             },
 121             { "MonthAbbreviations",
 122                 new String[] {
 123                     "gen", // abb january
 124                     "feb", // abb february
 125                     "mar", // abb march
 126                     "apr", // abb april
 127                     "mag", // abb may
 128                     "giu", // abb june
 129                     "lug", // abb july
 130                     "ago", // abb august
 131                     "set", // abb september
 132                     "ott", // abb october
 133                     "nov", // abb november
 134                     "dic", // abb december
 135                     "" // abb month 13 if applicable
 136                 }
 137             },
 138             { "DayNames",
 139                 new String[] {
 140                     "domenica", // Sunday
 141                     "luned\u00ec", // Monday
 142                     "marted\u00ec", // Tuesday
 143                     "mercoled\u00ec", // Wednesday
 144                     "gioved\u00ec", // Thursday
 145                     "venerd\u00ec", // Friday
 146                     "sabato" // Saturday
 147                 }
 148             },
 149             { "DayAbbreviations",
 150                 new String[] {
 151                     "dom", // abb Sunday
 152                     "lun", // abb Monday
 153                     "mar", // abb Tuesday
 154                     "mer", // abb Wednesday
 155                     "gio", // abb Thursday
 156                     "ven", // abb Friday
 157                     "sab" // abb Saturday
 158                 }
 159             },
 160             { "DayNarrows",
 161                 new String[] {
 162                     "D",
 163                     "L",
 164                     "M",
 165                     "M",
 166                     "G",
 167                     "V",
 168                     "S",
 169                 }
 170             },
 171             { "Eras",
 172                 new String[] { // era strings
 173                     "BC",
 174                     "dopo Cristo"
 175                 }
 176             },
 177             { "NumberElements",
 178                 new String[] {
 179                     ",", // decimal separator
 180                     ".", // group (thousands) separator
 181                     ";", // list separator
 182                     "%", // percent sign
 183                     "0", // native 0 digit
 184                     "#", // pattern digit
 185                     "-", // minus sign
 186                     "E", // exponential
 187                     "\u2030", // per mille
 188                     "\u221e", // infinity
 189                     "\ufffd" // NaN
 190                 }
 191             },
 192             { "TimePatterns",
 193                 new String[] {
 194                     "H.mm.ss z", // full time pattern
 195                     "H.mm.ss z", // long time pattern
 196                     "H.mm.ss", // medium time pattern
 197                     "H.mm", // short time pattern
 198                 }
 199             },
 200             { "DatePatterns",
 201                 new String[] {
 202                     "EEEE d MMMM yyyy", // full date pattern
 203                     "d MMMM yyyy", // long date pattern
 204                     "d-MMM-yyyy", // medium date pattern
 205                     "dd/MM/yy", // short date pattern
 206                 }
 207             },
 208             { "DateTimePatterns",
 209                 new String[] {
 210                     "{1} {0}" // date-time pattern
 211                 }
 212             },
 213             { "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
 214             { "cldr.buddhist.DatePatterns",
 215                 new String[] {
 216                     "EEEE d MMMM y G",
 217                     "dd MMMM y G",
 218                     "dd/MMM/y G",
 219                     "dd/MM/y G",
 220                 }
 221             },
 222             { "cldr.japanese.DatePatterns",
 223                 new String[] {
 224                     "EEEE d MMMM y G",
 225                     "dd MMMM y G",
 226                     "dd/MMM/y G",
 227                     "dd/MM/y G",
 228                 }
 229             },
 230             { "cldr.roc.DatePatterns",
 231                 new String[] {
 232                     "EEEE d MMMM y G",
 233                     "dd MMMM y G",
 234                     "dd/MMM/y G",
 235                     "dd/MM/y G",
 236                 }
 237             },
 238             { "roc.DatePatterns",
 239                 new String[] {
 240                     "EEEE d MMMM y GGGG",
 241                     "dd MMMM y GGGG",
 242                     "dd/MMM/y GGGG",
 243                     "dd/MM/y GGGG",
 244                 }
 245             },
 246             { "cldr.islamic.DatePatterns",
 247                 new String[] {
 248                     "EEEE d MMMM y G",
 249                     "dd MMMM y G",
 250                     "dd/MMM/y G",
 251                     "dd/MM/y G",
 252                 }
 253             },
 254             { "islamic.DatePatterns",
 255                 new String[] {
 256                     "EEEE d MMMM y GGGG",
 257                     "dd MMMM y GGGG",
 258                     "dd/MMM/y GGGG",
 259                     "dd/MM/y GGGG",
 260                 }
 261             },
 262             { "calendarname.islamic-civil", "calendario civile islamico" },
 263             { "calendarname.islamicc", "calendario civile islamico" },
 264             { "calendarname.islamic", "calendario islamico" },
 265             { "calendarname.buddhist", "calendario buddista" },
 266             { "calendarname.japanese", "calendario giapponese" },
 267             { "calendarname.gregorian", "calendario gregoriano" },
 268             { "calendarname.gregory", "calendario gregoriano" },
 269             { "field.era", "era" },
 270             { "field.year", "anno" },
 271             { "field.month", "mese" },
 272             { "field.week", "settimana" },
 273             { "field.weekday", "giorno della settimana" },
 274             { "field.dayperiod", "periodo del giorno" },
 275             { "field.hour", "ora" },
 276             { "field.minute", "minuto" },
 277             { "field.second", "secondo" },
 278             { "field.zone", "zona" },
 279         };
 280     }
 281 }