FormatData_et.java revision 2060
50N/A/*
2273N/A * Portions Copyright 1997-2005 Sun Microsystems, Inc. All Rights Reserved.
50N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
50N/A *
50N/A * This code is free software; you can redistribute it and/or modify it
50N/A * under the terms of the GNU General Public License version 2 only, as
50N/A * published by the Free Software Foundation. Sun designates this
50N/A * particular file as subject to the "Classpath" exception as provided
50N/A * by Sun in the LICENSE file that accompanied this code.
50N/A *
50N/A * This code is distributed in the hope that it will be useful, but WITHOUT
50N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
50N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
50N/A * version 2 for more details (a copy is included in the LICENSE file that
50N/A * accompanied this code).
50N/A *
50N/A * You should have received a copy of the GNU General Public License version
50N/A * 2 along with this work; if not, write to the Free Software Foundation,
1472N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1472N/A *
1472N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
50N/A * CA 95054 USA or visit www.sun.com if you need additional information or
50N/A * have any questions.
50N/A */
50N/A
50N/A/*
50N/A * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
50N/A * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
50N/A *
50N/A * The original version of this source code and documentation
50N/A * is copyrighted and owned by Taligent, Inc., a wholly-owned
2248N/A * subsidiary of IBM. These materials are provided under terms
2248N/A * of a License Agreement between Taligent and Sun. This technology
2248N/A * is protected by multiple US and International patents.
50N/A *
50N/A * This notice and attribution to Taligent may not be removed.
50N/A * Taligent is a registered trademark of Taligent, Inc.
50N/A *
50N/A */
50N/A
50N/Apackage sun.text.resources;
50N/A
50N/Aimport java.util.ListResourceBundle;
50N/A
50N/Apublic class FormatData_et extends ListResourceBundle {
50N/A /**
50N/A * Overrides ListResourceBundle
50N/A */
50N/A protected final Object[][] getContents() {
50N/A return new Object[][] {
50N/A { "MonthNames",
50N/A new String[] {
50N/A "jaanuar", // january
50N/A "veebruar", // february
50N/A "m\u00e4rts", // march
50N/A "aprill", // april
50N/A "mai", // may
50N/A "juuni", // june
50N/A "juuli", // july
50N/A "august", // august
50N/A "september", // september
50N/A "oktoober", // october
50N/A "november", // november
50N/A "detsember", // december
50N/A "" // month 13 if applicable
50N/A }
50N/A },
50N/A { "MonthAbbreviations",
50N/A new String[] {
50N/A "jaan", // abb january
50N/A "veebr", // abb february
50N/A "m\u00e4rts", // abb march
50N/A "apr", // abb april
50N/A "mai", // abb may
50N/A "juuni", // abb june
50N/A "juuli", // abb july
50N/A "aug", // abb august
50N/A "sept", // abb september
50N/A "okt", // abb october
1879N/A "nov", // abb november
1879N/A "dets", // abb december
1879N/A "" // abb month 13 if applicable
1879N/A }
1879N/A },
1890N/A { "DayNames",
1890N/A new String[] {
1890N/A "p\u00fchap\u00e4ev", // Sunday
50N/A "esmasp\u00e4ev", // Monday
50N/A "teisip\u00e4ev", // Tuesday
50N/A "kolmap\u00e4ev", // Wednesday
50N/A "neljap\u00e4ev", // Thursday
50N/A "reede", // Friday
50N/A "laup\u00e4ev" // Saturday
50N/A }
50N/A },
50N/A { "DayAbbreviations",
50N/A new String[] {
50N/A "P", // abb Sunday
50N/A "E", // abb Monday
50N/A "T", // abb Tuesday
50N/A "K", // abb Wednesday
50N/A "N", // abb Thursday
50N/A "R", // abb Friday
50N/A "L" // abb Saturday
}
},
{ "Eras",
new String[] { // era strings
"e.m.a.",
"m.a.j."
}
},
{ "NumberElements",
new String[] {
",", // decimal separator
"\u00a0", // group (thousands) separator
";", // list separator
"%", // percent sign
"0", // native 0 digit
"#", // pattern digit
"-", // minus sign
"E", // exponential
"\u2030", // per mille
"\u221e", // infinity
"\ufffd" // NaN
}
},
{ "DateTimePatterns",
new String[] {
"H:mm:ss z", // full time pattern
"H:mm:ss z", // long time pattern
"H:mm:ss", // medium time pattern
"H:mm", // short time pattern
"EEEE, d. MMMM yyyy", // full date pattern
"EEEE, d. MMMM yyyy. 'a'", // long date pattern
"d.MM.yyyy", // medium date pattern
"d.MM.yy", // short date pattern
"{1} {0}" // date-time pattern
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
};
}
}