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  */
  28 
  29 /*
  30  * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
  31  * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
  32  *
  33  * The original version of this source code and documentation
  34  * is copyrighted and owned by Taligent, Inc., a wholly-owned
  35  * subsidiary of IBM. These materials are provided under terms
  36  * of a License Agreement between Taligent and Sun. This technology
  37  * is protected by multiple US and International patents.
  38  *
  39  * This notice and attribution to Taligent may not be removed.
  40  * Taligent is a registered trademark of Taligent, Inc.
  41  *
  42  */
  43 
  44 package sun.text.resources.ca;
  45 
  46 import java.util.ListResourceBundle;
  47 
  48 public class FormatData_ca extends ListResourceBundle {
  49     /**
  50      * Overrides ListResourceBundle
  51      */
  52     protected final Object[][] getContents() {
  53         return new Object[][] {
  54             { "MonthNames",
  55                 new String[] {
  56                     "de gener",
  57                     "de febrer",
  58                     "de mar\u00e7",
  59                     "d\u2019abril",
  60                     "de maig",
  61                     "de juny",
  62                     "de juliol",
  63                     "d\u2019agost",
  64                     "de setembre",
  65                     "d\u2019octubre",
  66                     "de novembre",
  67                     "de desembre",
  68                     "",
  69                 }
  70             },
  71             { "standalone.MonthNames",
  72                 new String[] {
  73                     "gener", // january
  74                     "febrer", // february
  75                     "mar\u00e7", // march
  76                     "abril", // april
  77                     "maig", // may
  78                     "juny", // june
  79                     "juliol", // july
  80                     "agost", // august
  81                     "setembre", // september
  82                     "octubre", // october
  83                     "novembre", // november
  84                     "desembre", // december
  85                     "" // month 13 if applicable
  86                 }
  87             },
  88             { "MonthAbbreviations",
  89                 new String[] {
  90                     "de gen.",
  91                     "de febr.",
  92                     "de mar\u00e7",
  93                     "d\u2019abr.",
  94                     "de maig",
  95                     "de juny",
  96                     "de jul.",
  97                     "d\u2019ag.",
  98                     "de set.",
  99                     "d\u2019oct.",
 100                     "de nov.",
 101                     "de des.",
 102                     "",
 103                 }
 104             },
 105             { "standalone.MonthAbbreviations",
 106                 new String[] {
 107                     "gen.", // abb january
 108                     "feb.", // abb february
 109                     "mar\u00e7", // abb march
 110                     "abr.", // abb april
 111                     "maig", // abb may
 112                     "juny", // abb june
 113                     "jul.", // abb july
 114                     "ag.", // abb august
 115                     "set.", // abb september
 116                     "oct.", // abb october
 117                     "nov.", // abb november
 118                     "des.", // abb december
 119                     "" // abb month 13 if applicable
 120                 }
 121             },
 122             { "DayNames",
 123                 new String[] {
 124                     "diumenge", // Sunday
 125                     "dilluns", // Monday
 126                     "dimarts", // Tuesday
 127                     "dimecres", // Wednesday
 128                     "dijous", // Thursday
 129                     "divendres", // Friday
 130                     "dissabte" // Saturday
 131                 }
 132             },
 133             { "DayAbbreviations",
 134                 new String[] {
 135                     "dg.", // abb Sunday
 136                     "dl.", // abb Monday
 137                     "dt.", // abb Tuesday
 138                     "dc.", // abb Wednesday
 139                     "dj.", // abb Thursday
 140                     "dv.", // abb Friday
 141                     "ds." // abb Saturday
 142                 }
 143             },
 144             { "NumberElements",
 145                 new String[] {
 146                     ",", // decimal separator
 147                     ".", // group (thousands) separator
 148                     ";", // list separator
 149                     "%", // percent sign
 150                     "0", // native 0 digit
 151                     "#", // pattern digit
 152                     "-", // minus sign
 153                     "E", // exponential
 154                     "\u2030", // per mille
 155                     "\u221e", // infinity
 156                     "\ufffd" // NaN
 157                 }
 158             },
 159             { "TimePatterns",
 160                 new String[] {
 161                     "HH:mm:ss z", // full time pattern
 162                     "HH:mm:ss z", // long time pattern
 163                     "HH:mm:ss", // medium time pattern
 164                     "HH:mm", // short time pattern
 165                 }
 166             },
 167             { "DatePatterns",
 168                 new String[] {
 169                     "EEEE, d' / 'MMMM' / 'yyyy", // full date pattern
 170                     "d' / 'MMMM' / 'yyyy", // long date pattern
 171                     "dd/MM/yyyy", // medium date pattern
 172                     "dd/MM/yy", // short date pattern
 173                 }
 174             },
 175             { "DateTimePatterns",
 176                 new String[] {
 177                     "{1} {0}" // date-time pattern
 178                 }
 179             },
 180             { "DateTimePatternChars", "GuMtkHmsSEDFwWahKzZ" },
 181         };
 182     }
 183 }