001: /*
002: * Portions Copyright 1997-2005 Sun Microsystems, Inc. All Rights Reserved.
003: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
004: *
005: * This code is free software; you can redistribute it and/or modify it
006: * under the terms of the GNU General Public License version 2 only, as
007: * published by the Free Software Foundation. Sun designates this
008: * particular file as subject to the "Classpath" exception as provided
009: * by Sun in the LICENSE file that accompanied this code.
010: *
011: * This code is distributed in the hope that it will be useful, but WITHOUT
012: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
013: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
014: * version 2 for more details (a copy is included in the LICENSE file that
015: * accompanied this code).
016: *
017: * You should have received a copy of the GNU General Public License version
018: * 2 along with this work; if not, write to the Free Software Foundation,
019: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
020: *
021: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
022: * CA 95054 USA or visit www.sun.com if you need additional information or
023: * have any questions.
024: */
025:
026: /*
027: * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
028: * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
029: *
030: * The original version of this source code and documentation
031: * is copyrighted and owned by Taligent, Inc., a wholly-owned
032: * subsidiary of IBM. These materials are provided under terms
033: * of a License Agreement between Taligent and Sun. This technology
034: * is protected by multiple US and International patents.
035: *
036: * This notice and attribution to Taligent may not be removed.
037: * Taligent is a registered trademark of Taligent, Inc.
038: *
039: */
040:
041: package sun.text.resources;
042:
043: import java.util.ListResourceBundle;
044:
045: public class FormatData_lt extends ListResourceBundle {
046: /**
047: * Overrides ListResourceBundle
048: */
049: protected final Object[][] getContents() {
050: return new Object[][] {
051: { "MonthNames", new String[] { "Sausio", // january
052: "Vasario", // february
053: "Kovo", // march
054: "Baland\u017eio", // april
055: "Gegu\u017e\u0117s", // may
056: "Bir\u017eelio", // june
057: "Liepos", // july
058: "Rugpj\u016b\u010dio", // august
059: "Rugs\u0117jo", // september
060: "Spalio", // october
061: "Lapkri\u010dio", // november
062: "Gruod\u017eio", // december
063: "" // month 13 if applicable
064: } }, { "MonthAbbreviations", new String[] { "Sau", // abb january
065: "Vas", // abb february
066: "Kov", // abb march
067: "Bal", // abb april
068: "Geg", // abb may
069: "Bir", // abb june
070: "Lie", // abb july
071: "Rgp", // abb august
072: "Rgs", // abb september
073: "Spa", // abb october
074: "Lap", // abb november
075: "Grd", // abb december
076: "" // abb month 13 if applicable
077: } }, { "DayNames", new String[] { "Sekmadienis", // Sunday
078: "Pirmadienis", // Monday
079: "Antradienis", // Tuesday
080: "Tre\u010diadienis", // Wednesday
081: "Ketvirtadienis", // Thursday
082: "Penktadienis", // Friday
083: "\u0160e\u0161tadienis" // Saturday
084: } }, { "DayAbbreviations", new String[] { "Sk", // abb Sunday
085: "Pr", // abb Monday
086: "An", // abb Tuesday
087: "Tr", // abb Wednesday
088: "Kt", // abb Thursday
089: "Pn", // abb Friday
090: "\u0160t" // abb Saturday
091: } }, { "Eras", new String[] { // era strings
092: "pr.Kr.", "po.Kr." } },
093: { "NumberElements", new String[] { ",", // decimal separator
094: ".", // group (thousands) separator
095: ";", // list separator
096: "%", // percent sign
097: "0", // native 0 digit
098: "#", // pattern digit
099: "-", // minus sign
100: "E", // exponential
101: "\u2030", // per mille
102: "\u221e", // infinity
103: "\ufffd" // NaN
104: } }, { "DateTimePatterns", new String[] { "HH.mm.ss z", // full time pattern
105: "HH.mm.ss z", // long time pattern
106: "HH.mm.ss", // medium time pattern
107: "HH.mm", // short time pattern
108: "EEEE, yyyy, MMMM d", // full date pattern
109: "EEEE, yyyy, MMMM d", // long date pattern
110: "yyyy.M.d", // medium date pattern
111: "yy.M.d", // short date pattern
112: "{1} {0}" // date-time pattern
113: } }, { "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" }, };
114: }
115: }
|