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.pt;
  78 
  79 import java.util.ListResourceBundle;
  80 
  81 public class FormatData_pt extends ListResourceBundle {
  82     /**
  83      * Overrides ListResourceBundle
  84      */
  85     protected final Object[][] getContents() {
  86         return new Object[][] {
  87             { "MonthNames",
  88                 new String[] {
  89                     "Janeiro", // january
  90                     "Fevereiro", // february
  91                     "Mar\u00e7o", // march
  92                     "Abril", // april
  93                     "Maio", // may
  94                     "Junho", // june
  95                     "Julho", // july
  96                     "Agosto", // august
  97                     "Setembro", // september
  98                     "Outubro", // october
  99                     "Novembro", // november
 100                     "Dezembro", // december
 101                     "" // month 13 if applicable
 102                 }
 103             },
 104             { "MonthAbbreviations",
 105                 new String[] {
 106                     "Jan", // abb january
 107                     "Fev", // abb february
 108                     "Mar", // abb march
 109                     "Abr", // abb april
 110                     "Mai", // abb may
 111                     "Jun", // abb june
 112                     "Jul", // abb july
 113                     "Ago", // abb august
 114                     "Set", // abb september
 115                     "Out", // abb october
 116                     "Nov", // abb november
 117                     "Dez", // abb december
 118                     "" // abb month 13 if applicable
 119                 }
 120             },
 121             { "DayNames",
 122                 new String[] {
 123                     "Domingo", // Sunday
 124                     "Segunda-feira", // Monday
 125                     "Ter\u00e7a-feira", // Tuesday
 126                     "Quarta-feira", // Wednesday
 127                     "Quinta-feira", // Thursday
 128                     "Sexta-feira", // Friday
 129                     "S\u00e1bado" // Saturday
 130                 }
 131             },
 132             { "DayAbbreviations",
 133                 new String[] {
 134                     "Dom", // abb Sunday
 135                     "Seg", // abb Monday
 136                     "Ter", // abb Tuesday
 137                     "Qua", // abb Wednesday
 138                     "Qui", // abb Thursday
 139                     "Sex", // abb Friday
 140                     "S\u00e1b" // abb Saturday
 141                 }
 142             },
 143             { "DayNarrows",
 144                 new String[] {
 145                     "D",
 146                     "S",
 147                     "T",
 148                     "Q",
 149                     "Q",
 150                     "S",
 151                     "S",
 152                 }
 153             },
 154             { "NumberElements",
 155                 new String[] {
 156                     ",", // decimal al separator
 157                     ".", // group (thousands) separator
 158                     ";", // list separator
 159                     "%", // percent sign
 160                     "0", // native 0 digit
 161                     "#", // pattern digit
 162                     "-", // minus sign
 163                     "E", // exponential
 164                     "\u2030", // per mille
 165                     "\u221e", // infinity
 166                     "\ufffd" // NaN
 167                 }
 168             },
 169             { "TimePatterns",
 170                 new String[] {
 171                     "HH'H'mm'm' z", // full time pattern
 172                     "H:mm:ss z", // long time pattern
 173                     "H:mm:ss", // medium time pattern
 174                     "H:mm", // short time pattern
 175                 }
 176             },
 177             { "DatePatterns",
 178                 new String[] {
 179                     "EEEE, d' de 'MMMM' de 'yyyy", // full date pattern
 180                     "d' de 'MMMM' de 'yyyy", // long date pattern
 181                     "d/MMM/yyyy", // medium date pattern
 182                     "dd-MM-yyyy", // short date pattern
 183                 }
 184             },
 185             { "DateTimePatterns",
 186                 new String[] {
 187                     "{1} {0}" // date-time pattern
 188                 }
 189             },
 190             { "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
 191             { "cldr.japanese.DatePatterns",
 192                 new String[] {
 193                     "EEEE, G y MMMM dd",
 194                     "G y MMMM d",
 195                     "G y MMM d",
 196                     "d/M/yy",
 197                 }
 198             },
 199             { "cldr.roc.DatePatterns",
 200                 new String[] {
 201                     "EEEE, d 'de' MMMM 'de' y G",
 202                     "d 'de' MMMM 'de' y G",
 203                     "dd/MM/yyyy G",
 204                     "d/M/yyyy",
 205                 }
 206             },
 207             { "roc.DatePatterns",
 208                 new String[] {
 209                     "EEEE, d 'de' MMMM 'de' y GGGG",
 210                     "d 'de' MMMM 'de' y GGGG",
 211                     "dd/MM/yyyy GGGG",
 212                     "d/M/yyyy",
 213                 }
 214             },
 215             { "cldr.islamic.DatePatterns",
 216                 new String[] {
 217                     "EEEE, d 'de' MMMM 'de' y G",
 218                     "d 'de' MMMM 'de' y G",
 219                     "dd/MM/yyyy G",
 220                     "d/M/yyyy",
 221                 }
 222             },
 223             { "islamic.DatePatterns",
 224                 new String[] {
 225                     "EEEE, d 'de' MMMM 'de' y GGGG",
 226                     "d 'de' MMMM 'de' y GGGG",
 227                     "dd/MM/yyyy GGGG",
 228                     "d/M/yyyy",
 229                 }
 230             },
 231             { "calendarname.islamic-civil", "Calend\u00e1rio Civil Isl\u00e2mico" },
 232             { "calendarname.islamicc", "Calend\u00e1rio Civil Isl\u00e2mico" },
 233             { "calendarname.islamic", "Calend\u00e1rio Isl\u00e2mico" },
 234             { "calendarname.japanese", "Calend\u00e1rio Japon\u00eas" },
 235             { "calendarname.gregorian", "Calend\u00e1rio Gregoriano" },
 236             { "calendarname.gregory", "Calend\u00e1rio Gregoriano" },
 237             { "calendarname.roc", "Calend\u00e1rio da Rep\u00fablica da China" },
 238             { "calendarname.buddhist", "Calend\u00e1rio Budista" },
 239             { "field.era", "Era" },
 240             { "field.year", "Ano" },
 241             { "field.month", "M\u00eas" },
 242             { "field.week", "Semana" },
 243             { "field.weekday", "Dia da semana" },
 244             { "field.dayperiod", "Per\u00edodo do dia" },
 245             { "field.hour", "Hora" },
 246             { "field.minute", "Minuto" },
 247             { "field.second", "Segundo" },
 248             { "field.zone", "Fuso" },
 249         };
 250     }
 251 }