001: /*
002: * Portions Copyright 1996-2006 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_fi extends ListResourceBundle {
046: /**
047: * Overrides ListResourceBundle
048: */
049: protected final Object[][] getContents() {
050: return new Object[][] {
051: { "MonthNames", new String[] { "tammikuu", // january
052: "helmikuu", // february
053: "maaliskuu", // march
054: "huhtikuu", // april
055: "toukokuu", // may
056: "kes\u00e4kuu", // june
057: "hein\u00e4kuu", // july
058: "elokuu", // august
059: "syyskuu", // september
060: "lokakuu", // october
061: "marraskuu", // november
062: "joulukuu", // december
063: "" // month 13 if applicable
064: } }, { "MonthAbbreviations", new String[] { "tammi", // abb january
065: "helmi", // abb february
066: "maalis", // abb march
067: "huhti", // abb april
068: "touko", // abb may
069: "kes\u00e4", // abb june
070: "hein\u00e4", // abb july
071: "elo", // abb august
072: "syys", // abb september
073: "loka", // abb october
074: "marras", // abb november
075: "joulu", // abb december
076: "" // abb month 13 if applicable
077: } }, { "DayNames", new String[] { "sunnuntai", // Sunday
078: "maanantai", // Monday
079: "tiistai", // Tuesday
080: "keskiviikko", // Wednesday
081: "torstai", // Thursday
082: "perjantai", // Friday
083: "lauantai" // Saturday
084: } }, { "DayAbbreviations", new String[] { "su", // abb Sunday
085: "ma", // abb Monday
086: "ti", // abb Tuesday
087: "ke", // abb Wednesday
088: "to", // abb Thursday
089: "pe", // abb Friday
090: "la" // abb Saturday
091: } }, { "NumberElements", new String[] { ",", // decimal separator
092: "\u00a0", // group (thousands) separator
093: ";", // list separator
094: "%", // percent sign
095: "0", // native 0 digit
096: "#", // pattern digit
097: "-", // minus sign
098: "E", // exponential
099: "\u2030", // per mille
100: "\u221e", // infinity
101: "\ufffd" // NaN
102: } }, { "DateTimePatterns", new String[] { "H.mm.ss z", // full time pattern
103: "'klo 'H.mm.ss", // long time pattern
104: "H:mm:ss", // medium time pattern
105: "H:mm", // short time pattern
106: "d. MMMM'ta 'yyyy", // full date pattern
107: "d. MMMM'ta 'yyyy", // long date pattern
108: "d.M.yyyy", // medium date pattern
109: "d.M.yyyy", // short date pattern
110: "{1} {0}" // date-time pattern
111: } }, { "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" }, };
112: }
113: }
|