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.lt;
  78 
  79 import java.util.ListResourceBundle;
  80 
  81 public class FormatData_lt extends ListResourceBundle {
  82     /**
  83      * Overrides ListResourceBundle
  84      */
  85     protected final Object[][] getContents() {
  86         return new Object[][] {
  87             { "MonthNames",
  88                 new String[] {
  89                     "sausio",
  90                     "vasaris",
  91                     "kovas",
  92                     "balandis",
  93                     "gegu\u017e\u0117",
  94                     "bir\u017eelis",
  95                     "liepa",
  96                     "rugpj\u016btis",
  97                     "rugs\u0117jis",
  98                     "spalis",
  99                     "lapkritis",
 100                     "gruodis",
 101                     "",
 102                 }
 103             },
 104             { "standalone.MonthNames",
 105                 new String[] {
 106                     "Sausio", // january
 107                     "Vasario", // february
 108                     "Kovo", // march
 109                     "Baland\u017eio", // april
 110                     "Gegu\u017e\u0117s", // may
 111                     "Bir\u017eelio", // june
 112                     "Liepos", // july
 113                     "Rugpj\u016b\u010dio", // august
 114                     "Rugs\u0117jo", // september
 115                     "Spalio", // october
 116                     "Lapkri\u010dio", // november
 117                     "Gruod\u017eio", // december
 118                     "" // month 13 if applicable
 119                 }
 120             },
 121             { "MonthAbbreviations",
 122                 new String[] {
 123                     "Sau", // abb january
 124                     "Vas", // abb february
 125                     "Kov", // abb march
 126                     "Bal", // abb april
 127                     "Geg", // abb may
 128                     "Bir", // abb june
 129                     "Lie", // abb july
 130                     "Rgp", // abb august
 131                     "Rgs", // abb september
 132                     "Spa", // abb october
 133                     "Lap", // abb november
 134                     "Grd", // abb december
 135                     "" // abb month 13 if applicable
 136                 }
 137             },
 138             { "standalone.MonthNarrows",
 139                 new String[] {
 140                     "S",
 141                     "V",
 142                     "K",
 143                     "B",
 144                     "G",
 145                     "B",
 146                     "L",
 147                     "R",
 148                     "R",
 149                     "S",
 150                     "L",
 151                     "G",
 152                     "",
 153                 }
 154             },
 155             { "DayNames",
 156                 new String[] {
 157                     "Sekmadienis", // Sunday
 158                     "Pirmadienis", // Monday
 159                     "Antradienis", // Tuesday
 160                     "Tre\u010diadienis", // Wednesday
 161                     "Ketvirtadienis", // Thursday
 162                     "Penktadienis", // Friday
 163                     "\u0160e\u0161tadienis" // Saturday
 164                 }
 165             },
 166             { "DayAbbreviations",
 167                 new String[] {
 168                     "Sk", // abb Sunday
 169                     "Pr", // abb Monday
 170                     "An", // abb Tuesday
 171                     "Tr", // abb Wednesday
 172                     "Kt", // abb Thursday
 173                     "Pn", // abb Friday
 174                     "\u0160t" // abb Saturday
 175                 }
 176             },
 177             { "DayNarrows",
 178                 new String[] {
 179                     "S",
 180                     "P",
 181                     "A",
 182                     "T",
 183                     "K",
 184                     "P",
 185                     "\u0160",
 186                 }
 187             },
 188             { "standalone.DayNarrows",
 189                 new String[] {
 190                     "S",
 191                     "P",
 192                     "A",
 193                     "T",
 194                     "K",
 195                     "P",
 196                     "\u0160",
 197                 }
 198             },
 199             { "Eras",
 200                 new String[] { // era strings
 201                     "pr.Kr.",
 202                     "po.Kr."
 203                 }
 204             },
 205             { "NumberElements",
 206                 new String[] {
 207                     ",", // decimal separator
 208                     "\u00a0", // group (thousands) separator
 209                     ";", // list separator
 210                     "%", // percent sign
 211                     "0", // native 0 digit
 212                     "#", // pattern digit
 213                     "-", // minus sign
 214                     "E", // exponential
 215                     "\u2030", // per mille
 216                     "\u221e", // infinity
 217                     "\ufffd" // NaN
 218                 }
 219             },
 220             { "TimePatterns",
 221                 new String[] {
 222                     "HH.mm.ss z", // full time pattern
 223                     "HH.mm.ss z", // long time pattern
 224                     "HH.mm.ss", // medium time pattern
 225                     "HH.mm", // short time pattern
 226                 }
 227             },
 228             { "DatePatterns",
 229                 new String[] {
 230                     "EEEE, yyyy, MMMM d", // full date pattern
 231                     "EEEE, yyyy, MMMM d", // long date pattern
 232                     "yyyy-MM-dd", // medium date pattern
 233                     "yy.M.d", // short date pattern
 234                 }
 235             },
 236             { "DateTimePatterns",
 237                 new String[] {
 238                     "{1} {0}" // date-time pattern
 239                 }
 240             },
 241             { "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
 242             { "cldr.buddhist.DatePatterns",
 243                 new String[] {
 244                     "y G, MMMM d, EEEE",
 245                     "G y MMMM d",
 246                     "G y MMM d",
 247                     "GGGGG yyyy-MM-dd",
 248                 }
 249             },
 250             { "calendarname.islamic-civil", "Pilietinis islamo kalendorius" },
 251             { "calendarname.islamicc", "Pilietinis islamo kalendorius" },
 252             { "calendarname.islamic", "Islamo kalendorius" },
 253             { "calendarname.japanese", "Japon\u0173 kalendorius" },
 254             { "calendarname.gregorian", "Grigaliaus kalendorius" },
 255             { "calendarname.gregory", "Grigaliaus kalendorius" },
 256             { "calendarname.roc", "Kinijos Respublikos kalendorius" },
 257             { "calendarname.buddhist", "Budist\u0173 kalendorius" },
 258             { "field.era", "era" },
 259             { "field.year", "metai" },
 260             { "field.month", "m\u0117nuo" },
 261             { "field.week", "savait\u0117" },
 262             { "field.weekday", "savait\u0117s diena" },
 263             { "field.dayperiod", "dienos metas" },
 264             { "field.hour", "valanda" },
 265             { "field.minute", "minut\u0117" },
 266             { "field.second", "sekund\u0117" },
 267             { "field.zone", "laiko juosta" },
 268         };
 269     }
 270 }