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.et;
  78 
  79 import java.util.ListResourceBundle;
  80 
  81 public class FormatData_et extends ListResourceBundle {
  82     /**
  83      * Overrides ListResourceBundle
  84      */
  85     protected final Object[][] getContents() {
  86         return new Object[][] {
  87             { "MonthNames",
  88                 new String[] {
  89                     "jaanuar", // january
  90                     "veebruar", // february
  91                     "m\u00e4rts", // march
  92                     "aprill", // april
  93                     "mai", // may
  94                     "juuni", // june
  95                     "juuli", // july
  96                     "august", // august
  97                     "september", // september
  98                     "oktoober", // october
  99                     "november", // november
 100                     "detsember", // december
 101                     "" // month 13 if applicable
 102                 }
 103             },
 104             { "MonthAbbreviations",
 105                 new String[] {
 106                     "jaan", // abb january
 107                     "veebr", // abb february
 108                     "m\u00e4rts", // abb march
 109                     "apr", // abb april
 110                     "mai", // abb may
 111                     "juuni", // abb june
 112                     "juuli", // abb july
 113                     "aug", // abb august
 114                     "sept", // abb september
 115                     "okt", // abb october
 116                     "nov", // abb november
 117                     "dets", // abb december
 118                     "" // abb month 13 if applicable
 119                 }
 120             },
 121             { "DayNames",
 122                 new String[] {
 123                     "p\u00fchap\u00e4ev", // Sunday
 124                     "esmasp\u00e4ev", // Monday
 125                     "teisip\u00e4ev", // Tuesday
 126                     "kolmap\u00e4ev", // Wednesday
 127                     "neljap\u00e4ev", // Thursday
 128                     "reede", // Friday
 129                     "laup\u00e4ev" // Saturday
 130                 }
 131             },
 132             { "DayAbbreviations",
 133                 new String[] {
 134                     "P", // abb Sunday
 135                     "E", // abb Monday
 136                     "T", // abb Tuesday
 137                     "K", // abb Wednesday
 138                     "N", // abb Thursday
 139                     "R", // abb Friday
 140                     "L" // abb Saturday
 141                 }
 142             },
 143             { "DayNarrows",
 144                 new String[] {
 145                     "P",
 146                     "E",
 147                     "T",
 148                     "K",
 149                     "N",
 150                     "R",
 151                     "L",
 152                 }
 153             },
 154             { "Eras",
 155                 new String[] { // era strings
 156                     "e.m.a.",
 157                     "m.a.j."
 158                 }
 159             },
 160             { "NumberElements",
 161                 new String[] {
 162                     ",", // decimal separator
 163                     "\u00a0", // group (thousands) separator
 164                     ";", // list separator
 165                     "%", // percent sign
 166                     "0", // native 0 digit
 167                     "#", // pattern digit
 168                     "-", // minus sign
 169                     "E", // exponential
 170                     "\u2030", // per mille
 171                     "\u221e", // infinity
 172                     "\ufffd" // NaN
 173                 }
 174             },
 175             { "TimePatterns",
 176                 new String[] {
 177                     "H:mm:ss z", // full time pattern
 178                     "H:mm:ss z", // long time pattern
 179                     "H:mm:ss", // medium time pattern
 180                     "H:mm", // short time pattern
 181                 }
 182             },
 183             { "DatePatterns",
 184                 new String[] {
 185                     "EEEE, d. MMMM yyyy", // full date pattern
 186                     "EEEE, d. MMMM yyyy. 'a'", // long date pattern
 187                     "d.MM.yyyy", // medium date pattern
 188                     "d.MM.yy", // short date pattern
 189                 }
 190             },
 191             { "DateTimePatterns",
 192                 new String[] {
 193                     "{1} {0}" // date-time pattern
 194                 }
 195             },
 196             { "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
 197             { "calendarname.islamic-civil", "islami ilmalik kalender" },
 198             { "calendarname.islamicc", "islami ilmalik kalender" },
 199             { "calendarname.roc", "Hiina Vabariigi kalender" },
 200             { "calendarname.islamic", "islamikalender" },
 201             { "calendarname.buddhist", "budistlik kalender" },
 202             { "calendarname.japanese", "Jaapani kalender" },
 203             { "calendarname.gregorian", "Gregoriuse kalender" },
 204             { "calendarname.gregory", "Gregoriuse kalender" },
 205             { "field.era", "ajastu" },
 206             { "field.year", "aasta" },
 207             { "field.month", "kuu" },
 208             { "field.week", "n\u00e4dal" },
 209             { "field.weekday", "n\u00e4dalap\u00e4ev" },
 210             { "field.dayperiod", "enne/p\u00e4rast l\u00f5unat" },
 211             { "field.hour", "tund" },
 212             { "field.minute", "minut" },
 213             { "field.second", "sekund" },
 214             { "field.zone", "v\u00f6\u00f6nd" },
 215         };
 216     }
 217 }