1/*
2 * Copyright (c) 1996, 2015, 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
77package sun.text.resources.ext;
78
79import sun.util.resources.ParallelListResourceBundle;
80
81public class FormatData_fi extends ParallelListResourceBundle {
82    /**
83     * Overrides ParallelListResourceBundle
84     */
85    protected final Object[][] getContents() {
86        return new Object[][] {
87            { "MonthNames",
88                new String[] {
89                    "tammikuuta",
90                    "helmikuuta",
91                    "maaliskuuta",
92                    "huhtikuuta",
93                    "toukokuuta",
94                    "kes\u00e4kuuta",
95                    "hein\u00e4kuuta",
96                    "elokuuta",
97                    "syyskuuta",
98                    "lokakuuta",
99                    "marraskuuta",
100                    "joulukuuta",
101                    "",
102                }
103            },
104            { "standalone.MonthNames",
105                new String[] {
106                    "tammikuu", // january
107                    "helmikuu", // february
108                    "maaliskuu", // march
109                    "huhtikuu", // april
110                    "toukokuu", // may
111                    "kes\u00e4kuu", // june
112                    "hein\u00e4kuu", // july
113                    "elokuu", // august
114                    "syyskuu", // september
115                    "lokakuu", // october
116                    "marraskuu", // november
117                    "joulukuu", // december
118                    "" // month 13 if applicable
119                }
120            },
121            { "MonthAbbreviations",
122                new String[] {
123                    "tammikuuta",
124                    "helmikuuta",
125                    "maaliskuuta",
126                    "huhtikuuta",
127                    "toukokuuta",
128                    "kes\u00e4kuuta",
129                    "hein\u00e4kuuta",
130                    "elokuuta",
131                    "syyskuuta",
132                    "lokakuuta",
133                    "marraskuuta",
134                    "joulukuuta",
135                    "",
136                }
137            },
138            { "standalone.MonthAbbreviations",
139                new String[] {
140                    "tammi", // abb january
141                    "helmi", // abb february
142                    "maalis", // abb march
143                    "huhti", // abb april
144                    "touko", // abb may
145                    "kes\u00e4", // abb june
146                    "hein\u00e4", // abb july
147                    "elo", // abb august
148                    "syys", // abb september
149                    "loka", // abb october
150                    "marras", // abb november
151                    "joulu", // abb december
152                    "" // abb month 13 if applicable
153                }
154            },
155            { "MonthNarrows",
156                new String[] {
157                    "T",
158                    "H",
159                    "M",
160                    "H",
161                    "T",
162                    "K",
163                    "H",
164                    "E",
165                    "S",
166                    "L",
167                    "M",
168                    "J",
169                    "",
170                }
171            },
172            { "standalone.MonthNarrows",
173                new String[] {
174                    "T",
175                    "H",
176                    "M",
177                    "H",
178                    "T",
179                    "K",
180                    "H",
181                    "E",
182                    "S",
183                    "L",
184                    "M",
185                    "J",
186                    "",
187                }
188            },
189            { "long.Eras",
190                new String[] {
191                    "ennen Kristuksen syntym\u00e4\u00e4",
192                    "j\u00e4lkeen Kristuksen syntym\u00e4n",
193                }
194            },
195            { "Eras",
196                new String[] {
197                    "eKr.",
198                    "jKr.",
199                }
200            },
201            { "narrow.Eras",
202                new String[] {
203                    "eK",
204                    "jK",
205                }
206            },
207            { "DayNames",
208                new String[] {
209                    "sunnuntai", // Sunday
210                    "maanantai", // Monday
211                    "tiistai", // Tuesday
212                    "keskiviikko", // Wednesday
213                    "torstai", // Thursday
214                    "perjantai", // Friday
215                    "lauantai" // Saturday
216                }
217            },
218            { "standalone.DayNames",
219                new String[] {
220                    "sunnuntai",
221                    "maanantai",
222                    "tiistai",
223                    "keskiviikko",
224                    "torstai",
225                    "perjantai",
226                    "lauantai",
227                }
228            },
229            { "DayAbbreviations",
230                new String[] {
231                    "su", // abb Sunday
232                    "ma", // abb Monday
233                    "ti", // abb Tuesday
234                    "ke", // abb Wednesday
235                    "to", // abb Thursday
236                    "pe", // abb Friday
237                    "la" // abb Saturday
238                }
239            },
240            { "standalone.DayAbbreviations",
241                new String[] {
242                    "su",
243                    "ma",
244                    "ti",
245                    "ke",
246                    "to",
247                    "pe",
248                    "la",
249                }
250            },
251            { "DayNarrows",
252                new String[] {
253                    "S",
254                    "M",
255                    "T",
256                    "K",
257                    "T",
258                    "P",
259                    "L",
260                }
261            },
262            { "standalone.DayNarrows",
263                new String[] {
264                    "S",
265                    "M",
266                    "T",
267                    "K",
268                    "T",
269                    "P",
270                    "L",
271                }
272            },
273            { "NumberElements",
274                new String[] {
275                    ",", // decimal separator
276                    "\u00a0", // group (thousands) separator
277                    ";", // list separator
278                    "%", // percent sign
279                    "0", // native 0 digit
280                    "#", // pattern digit
281                    "-", // minus sign
282                    "E", // exponential
283                    "\u2030", // per mille
284                    "\u221e", // infinity
285                    "\ufffd" // NaN
286                }
287            },
288            { "TimePatterns",
289                new String[] {
290                    "H.mm.ss z", // full time pattern
291                    "'klo 'H.mm.ss", // long time pattern
292                    "H:mm:ss", // medium time pattern
293                    "H:mm", // short time pattern
294                }
295            },
296            { "DatePatterns",
297                new String[] {
298                    "d. MMMM yyyy", // full date pattern
299                    "d. MMMM yyyy", // long date pattern
300                    "d.M.yyyy", // medium date pattern
301                    "d.M.yyyy", // short date pattern
302                }
303            },
304            { "DateTimePatterns",
305                new String[] {
306                    "{1} {0}" // date-time pattern
307                }
308            },
309            { "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
310            { "AmPmMarkers",
311                new String[] {
312                    "ap.", // am marker
313                    "ip."  // pm marker
314                }
315            },
316            { "narrow.AmPmMarkers",
317                new String[] {
318                    "ap.",
319                    "ip.",
320                }
321            },
322        };
323    }
324}
325