4169N/A/*
1178N/A * Copyright (c) 1996, 2006, Oracle and/or its affiliates. All rights reserved.
1178N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1178N/A *
1178N/A * This code is free software; you can redistribute it and/or modify it
1178N/A * under the terms of the GNU General Public License version 2 only, as
1178N/A * published by the Free Software Foundation. Oracle designates this
1178N/A * particular file as subject to the "Classpath" exception as provided
1178N/A * by Oracle in the LICENSE file that accompanied this code.
1178N/A *
1178N/A * This code is distributed in the hope that it will be useful, but WITHOUT
1178N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1178N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
1178N/A * version 2 for more details (a copy is included in the LICENSE file that
1178N/A * accompanied this code).
1178N/A *
1178N/A * You should have received a copy of the GNU General Public License version
2362N/A * 2 along with this work; if not, write to the Free Software Foundation,
2362N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2362N/A *
1178N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
5176N/A * or visit www.oracle.com if you need additional information or have any
1178N/A * questions.
0N/A */
4033N/A
1178N/A/*
1178N/A * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
4033N/A * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
4935N/A *
0N/A * The original version of this source code and documentation
1178N/A * is copyrighted and owned by Taligent, Inc., a wholly-owned
4935N/A * subsidiary of IBM. These materials are provided under terms
0N/A * of a License Agreement between Taligent and Sun. This technology
4935N/A * is protected by multiple US and International patents.
0N/A *
5176N/A * This notice and attribution to Taligent may not be removed.
0N/A * Taligent is a registered trademark of Taligent, Inc.
4033N/A *
0N/A */
0N/A
0N/Apackage sun.text.resources;
0N/A
0N/Aimport java.util.ListResourceBundle;
0N/A
0N/Apublic class FormatData_fi extends ListResourceBundle {
0N/A /**
0N/A * Overrides ListResourceBundle
0N/A */
4033N/A protected final Object[][] getContents() {
1178N/A return new Object[][] {
1178N/A { "MonthNames",
4935N/A new String[] {
0N/A "tammikuu", // january
0N/A "helmikuu", // february
0N/A "maaliskuu", // march
1178N/A "huhtikuu", // april
4935N/A "toukokuu", // may
0N/A "kes\u00e4kuu", // june
1178N/A "hein\u00e4kuu", // july
4935N/A "elokuu", // august
1178N/A "syyskuu", // september
1178N/A "lokakuu", // october
1178N/A "marraskuu", // november
1178N/A "joulukuu", // december
4935N/A "" // month 13 if applicable
1178N/A }
1178N/A },
4935N/A { "MonthAbbreviations",
1178N/A new String[] {
4935N/A "tammi", // abb january
1178N/A "helmi", // abb february
5176N/A "maalis", // abb march
1178N/A "huhti", // abb april
4033N/A "touko", // abb may
1178N/A "kes\u00e4", // abb june
1178N/A "hein\u00e4", // abb july
4033N/A "elo", // abb august
1178N/A "syys", // abb september
1178N/A "loka", // abb october
1178N/A "marras", // abb november
1178N/A "joulu", // abb december
4935N/A "" // abb month 13 if applicable
0N/A }
0N/A },
0N/A { "DayNames",
0N/A new String[] {
0N/A "sunnuntai", // Sunday
0N/A "maanantai", // Monday
1178N/A "tiistai", // Tuesday
4033N/A "keskiviikko", // Wednesday
1178N/A "torstai", // Thursday
1178N/A "perjantai", // Friday
0N/A "lauantai" // Saturday
1178N/A }
4935N/A },
1178N/A { "DayAbbreviations",
0N/A new String[] {
0N/A "su", // abb Sunday
1178N/A "ma", // abb Monday
0N/A "ti", // abb Tuesday
1178N/A "ke", // abb Wednesday
4935N/A "to", // abb Thursday
1178N/A "pe", // abb Friday
1178N/A "la" // abb Saturday
1178N/A }
1178N/A },
0N/A { "NumberElements",
1178N/A new String[] {
4935N/A ",", // decimal separator
1178N/A "\u00a0", // group (thousands) separator
1178N/A ";", // list separator
1178N/A "%", // percent sign
1178N/A "0", // native 0 digit
0N/A "#", // pattern digit
0N/A "-", // minus sign
4935N/A "E", // exponential
0N/A "\u2030", // per mille
0N/A "\u221e", // infinity
0N/A "\ufffd" // NaN
1178N/A }
1178N/A },
1178N/A { "DateTimePatterns",
4935N/A new String[] {
1178N/A "H.mm.ss z", // full time pattern
1178N/A "'klo 'H.mm.ss", // long time pattern
1178N/A "H:mm:ss", // medium time pattern
1178N/A "H:mm", // short time pattern
0N/A "d. MMMM'ta 'yyyy", // full date pattern
4935N/A "d. MMMM'ta 'yyyy", // long date pattern
0N/A "d.M.yyyy", // medium date pattern
0N/A "d.M.yyyy", // short date pattern
4935N/A "{1} {0}" // date-time pattern
1178N/A }
4935N/A },
1178N/A { "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
5176N/A { "AmPmMarkers",
1178N/A new String[] {
4935N/A "ap.", // am marker
1178N/A "ip." // pm marker
5176N/A }
1178N/A },
1178N/A };
4935N/A }
1178N/A}
1178N/A