8004489: Add support for Minguo and Hijrah calendars to CalendarNameProvider SPI

8006509: Add more calendar symbol names from CLDR

Reviewed-by: peytoia
This commit is contained in:
Masayoshi Okutsu 2013-01-21 15:41:30 +09:00
parent f9d0dd3d72
commit 6bc0d6d200
52 changed files with 5142 additions and 132 deletions

@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -274,7 +274,7 @@ class Bundle {
handleDateTimeFormatPatterns(DATETIME_PATTERN_KEYS, myMap, parentsMap, calendarType, "DateTimePatterns");
}
// if myMap has any empty timezone or metazone names, weed out them.
// First, weed out any empty timezone or metazone names from myMap.
// Fill in any missing abbreviations if locale is "en".
for (Iterator<String> it = myMap.keySet().iterator(); it.hasNext();) {
String key = it.next();
@ -426,7 +426,7 @@ class Bundle {
/*
* Adjusts String[] for era names because JRE's Calendars use different
* ERA value indexes in the Buddhist and Japanese Imperial calendars.
* ERA value indexes in the Buddhist, Japanese Imperial, and Islamic calendars.
*/
private void adjustEraNames(Map<String, Object> map, CalendarType type) {
String[][] eraNames = new String[ERA_KEYS.length][];
@ -458,6 +458,11 @@ class Bundle {
// Replace the value
value = new String[] {"BC", value[0]};
break;
case ISLAMIC:
// Replace the value
value = new String[] {"", value[0]};
break;
}
if (!key.equals(realKey)) {
map.put(realKey, value);
@ -479,6 +484,7 @@ class Bundle {
for (String k : patternKeys) {
if (myMap.containsKey(calendarPrefix + k)) {
int len = patternKeys.length;
List<String> rawPatterns = new ArrayList<>();
List<String> patterns = new ArrayList<>();
for (int i = 0; i < len; i++) {
String key = calendarPrefix + patternKeys[i];
@ -487,6 +493,7 @@ class Bundle {
pattern = (String) parentsMap.remove(key);
}
if (pattern != null) {
rawPatterns.add(i, pattern);
patterns.add(i, translateDateFormatLetters(calendarType, pattern));
}
}
@ -494,6 +501,9 @@ class Bundle {
return;
}
String key = calendarPrefix + name;
if (!rawPatterns.equals(patterns)) {
myMap.put("cldr." + key, rawPatterns.toArray(new String[len]));
}
myMap.put(key, patterns.toArray(new String[len]));
break;
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -58,6 +58,7 @@ public class CLDRConverter {
static final String LOCALE_NAME_PREFIX = "locale.displayname.";
static final String CURRENCY_SYMBOL_PREFIX = "currency.symbol.";
static final String CURRENCY_NAME_PREFIX = "currency.displayname.";
static final String CALENDAR_NAME_PREFIX = "calendarname.";
static final String TIMEZONE_ID_PREFIX = "timezone.id.";
static final String ZONE_NAME_PREFIX = "timezone.displayname.";
static final String METAZONE_ID_PREFIX = "metazone.id.";
@ -519,35 +520,70 @@ public class CLDRConverter {
return calendarData;
}
static final String[] FORMAT_DATA_ELEMENTS = {
"MonthNames",
"standalone.MonthNames",
"MonthAbbreviations",
"standalone.MonthAbbreviations",
"MonthNarrow",
"standalone.MonthNarrows",
"DayNames",
"standalone.DayNames",
"DayAbbreviations",
"standalone.DayAbbreviations",
"DayNarrows",
"standalone.DayNarrows",
"AmPmMarkers",
"narrow.AmPmMarkers",
"long.Eras",
"Eras",
"narrow.Eras",
"field.era",
"field.year",
"field.month",
"field.week",
"field.weekday",
"field.dayperiod",
"field.hour",
"field.minute",
"field.second",
"field.zone",
"TimePatterns",
"DatePatterns",
"DateTimePatterns",
"DateTimePatternChars"
};
private static Map<String, Object> extractFormatData(Map<String, Object> map, String id) {
Map<String, Object> formatData = new LinkedHashMap<>();
for (CalendarType calendarType : CalendarType.values()) {
String prefix = calendarType.keyElementName();
copyIfPresent(map, prefix + "MonthNames", formatData); // default FORMAT since JDK8
copyIfPresent(map, prefix + "standalone.MonthNames", formatData);
copyIfPresent(map, prefix + "MonthAbbreviations", formatData);
copyIfPresent(map, prefix + "standalone.MonthAbbreviations", formatData);
copyIfPresent(map, prefix + "MonthNarrow", formatData);
copyIfPresent(map, prefix + "standalone.MonthNarrows", formatData);
copyIfPresent(map, prefix + "DayNames", formatData);
copyIfPresent(map, prefix + "standalone.DayNames", formatData);
copyIfPresent(map, prefix + "DayAbbreviations", formatData);
copyIfPresent(map, prefix + "standalone.DayAbbreviations", formatData);
copyIfPresent(map, prefix + "DayNarrows", formatData);
copyIfPresent(map, prefix + "standalone.DayNarrows", formatData);
copyIfPresent(map, prefix + "AmPmMarkers", formatData);
copyIfPresent(map, prefix + "narrow.AmPmMarkers", formatData);
copyIfPresent(map, prefix + "long.Eras", formatData);
copyIfPresent(map, prefix + "Eras", formatData);
copyIfPresent(map, prefix + "narrow.Eras", formatData);
copyIfPresent(map, prefix + "TimePatterns", formatData);
copyIfPresent(map, prefix + "DatePatterns", formatData);
copyIfPresent(map, prefix + "DateTimePatterns", formatData);
copyIfPresent(map, prefix + "DateTimePatternChars", formatData);
for (String element : FORMAT_DATA_ELEMENTS) {
String key = prefix + element;
copyIfPresent(map, "cldr." + key, formatData);
copyIfPresent(map, key, formatData);
}
}
// Copy available calendar names
for (String key : map.keySet()) {
if (key.startsWith(CLDRConverter.CALENDAR_NAME_PREFIX)) {
String type = key.substring(CLDRConverter.CALENDAR_NAME_PREFIX.length());
for (CalendarType calendarType : CalendarType.values()) {
if (type.equals(calendarType.lname())) {
Object value = map.get(key);
formatData.put(key, value);
String ukey = CLDRConverter.CALENDAR_NAME_PREFIX + calendarType.uname();
if (!key.equals(ukey)) {
formatData.put(ukey, value);
}
}
}
}
}
copyIfPresent(map, "DefaultNumberingSystem", formatData);
String defaultScript = (String) map.get("DefaultNumberingSystem");
@SuppressWarnings("unchecked")
List<String> numberingScripts = (List<String>) map.remove("numberingScripts");
if (numberingScripts != null) {

@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -31,26 +31,42 @@ import java.util.Locale;
* Constants for the Calendars supported by JRE.
*/
enum CalendarType {
GREGORIAN, BUDDHIST, JAPANESE;
GREGORIAN("gregory"), BUDDHIST, JAPANESE, ROC, ISLAMIC, ISLAMIC_CIVIL("islamicc");
private static final int[][] ERA_DATA = {
// start index, array length
{0, 2}, // gregorian
{0, 1}, // buddhist
{232, 4}, // japanese (eras from Meiji)
{0, 2}, // roc (Minguo)
{0, 1}, // islamic (Hijrah)
{0, 1}, // islamicc (same as islamic)
};
private final String lname; // lowercase name
private final String uname; // unicode key name (e.g., "gregory" for GREGORIAN)
private CalendarType() {
lname = name().toLowerCase(Locale.ROOT);
this(null);
}
private CalendarType(String uname) {
String lname = name().toLowerCase(Locale.ROOT);
if (lname.equals("islamic_civil")) {
lname = "islamic-civil";
}
this.lname = lname;
this.uname = (uname != null) ? uname : lname;
}
String lname() {
return lname;
}
String uname() {
return uname;
}
String keyElementName() {
return (this == GREGORIAN) ? "" : lname + ".";
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -71,6 +71,13 @@ class LDMLParseHandler extends AbstractLDMLHandler<Object> {
// ignore this element - it has language and territory elements that aren't locale data
pushIgnoredContainer(qName);
break;
case "type":
if ("calendar".equals(attributes.getValue("key"))) {
pushStringEntry(qName, attributes, CLDRConverter.CALENDAR_NAME_PREFIX + attributes.getValue("type"));
} else {
pushIgnoredContainer(qName);
}
break;
case "language":
// for LocaleNames
// copy string
@ -98,19 +105,30 @@ class LDMLParseHandler extends AbstractLDMLHandler<Object> {
case "symbol":
// for CurrencyNames
// need to get the key from the containing <currency> element
pushStringEntry(qName, attributes, CLDRConverter.CURRENCY_SYMBOL_PREFIX + getContainerKey());
pushStringEntry(qName, attributes, CLDRConverter.CURRENCY_SYMBOL_PREFIX
+ getContainerKey());
break;
// Calendar or currency
case "displayName":
// for CurrencyNames
// need to get the key from the containing <currency> element
// ignore if is has "count" attribute
String containerKey = getContainerKey();
if (containerKey != null && attributes.getValue("count") == null) {
pushStringEntry(qName, attributes,
CLDRConverter.CURRENCY_NAME_PREFIX + containerKey.toLowerCase(Locale.ROOT),
attributes.getValue("type"));
} else {
pushIgnoredContainer(qName);
{
if (currentCalendarType != null) {
pushStringEntry(qName, attributes,
currentCalendarType.keyElementName() + "field." + getContainerKey());
} else {
// for CurrencyNames
// need to get the key from the containing <currency> element
// ignore if is has "count" attribute
String containerKey = getContainerKey();
if (containerKey != null && attributes.getValue("count") == null) {
pushStringEntry(qName, attributes,
CLDRConverter.CURRENCY_NAME_PREFIX
+ containerKey.toLowerCase(Locale.ROOT),
attributes.getValue("type"));
} else {
pushIgnoredContainer(qName);
}
}
}
break;
@ -130,6 +148,35 @@ class LDMLParseHandler extends AbstractLDMLHandler<Object> {
}
}
break;
case "fields":
if (currentCalendarType != null) {
pushContainer(qName, attributes);
} else {
pushIgnoredContainer(qName);
}
break;
case "field":
{
String type = attributes.getValue("type");
switch (type) {
case "era":
case "year":
case "month":
case "week":
case "weekday":
case "dayperiod":
case "hour":
case "minute":
case "second":
case "zone":
pushKeyContainer(qName, attributes, type);
break;
default:
pushIgnoredContainer(qName);
break;
}
}
break;
case "monthContext":
{
// for FormatData

@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -134,6 +134,26 @@ import java.util.Map;
* specified. See also the <a href="../../text/SimpleDateFormat.html#year">
* Year representation in {@code SimpleDateFormat}</a>.</td>
* </tr>
* <tr>
* <td rowspan="2" valign="top">{@code "roc"}</td>
* <td rowspan="2" valign="top">{@link Calendar#ERA}</td>
* <td>0</td>
* <td>Before R.O.C.</td>
* </tr>
* <tr>
* <td>1</td>
* <td>R.O.C.</td>
* </tr>
* <tr>
* <td rowspan="2" valign="top">{@code "islamic"}</td>
* <td rowspan="2" valign="top">{@link Calendar#ERA}</td>
* <td>0</td>
* <td>Before AH</td>
* </tr>
* <tr>
* <td>1</td>
* <td>Anno Hijrah (AH)</td>
* </tr>
* </table>
*
* <p>Calendar field value names for {@code "gregory"} must be consistent with

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -41,6 +41,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources;
import java.util.ListResourceBundle;
@ -762,6 +798,14 @@ public class FormatData extends ListResourceBundle {
"H:mm", // short time pattern
}
},
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE, G y MMMM dd",
"G y MMMM d",
"G y MMM d",
"GGGGG yyyy-MM-dd",
}
},
{ "buddhist.DatePatterns",
new String[] {
"EEEE d MMMM G yyyy", // full date pattern
@ -783,6 +827,14 @@ public class FormatData extends ListResourceBundle {
"h:mm a", // short time pattern
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE, G y MMMM dd",
"G y MMMM d",
"G y MMM d",
"GGGGG yy-MM-dd",
}
},
{ "japanese.DatePatterns",
new String[] {
"GGGG yyyy MMMM d (EEEE)", // full date pattern
@ -796,7 +848,103 @@ public class FormatData extends ListResourceBundle {
"{1} {0}" // date-time pattern
}
},
{ "roc.Eras",
new String[] {
"Before R.O.C.",
"R.O.C.",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE, G y MMMM dd",
"G y MMMM d",
"G y MMM d",
"GGGGG yyy-MM-dd",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, GGGG y MMMM dd",
"GGGG y MMMM d",
"GGGG y MMM d",
"G yyy-MM-dd",
}
},
{ "islamic.MonthNames",
new String[] {
"Muharram",
"Safar",
"Rabi\u02bb I",
"Rabi\u02bb II",
"Jumada I",
"Jumada II",
"Rajab",
"Sha\u02bbban",
"Ramadan",
"Shawwal",
"Dhu\u02bbl-Qi\u02bbdah",
"Dhu\u02bbl-Hijjah",
"",
}
},
{ "islamic.MonthAbbreviations",
new String[] {
"Muh.",
"Saf.",
"Rab. I",
"Rab. II",
"Jum. I",
"Jum. II",
"Raj.",
"Sha.",
"Ram.",
"Shaw.",
"Dhu\u02bbl-Q.",
"Dhu\u02bbl-H.",
"",
}
},
{ "islamic.Eras",
new String[] {
"",
"AH",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"EEEE, MMMM d, y G",
"MMMM d, y G",
"MMM d, y G",
"M/d/yy G",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, MMMM d, y GGGG",
"MMMM d, y GGGG",
"MMM d, y GGGG",
"M/d/yy GGGG",
}
},
{ "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
{ "calendarname.islamic-civil", "Islamic-Civil Calendar" },
{ "calendarname.islamicc", "Islamic-Civil Calendar" },
{ "calendarname.islamic", "Islamic Calendar" },
{ "calendarname.japanese", "Japanese Calendar" },
{ "calendarname.gregorian", "Gregorian Calendar" },
{ "calendarname.gregory", "Gregorian Calendar" },
{ "calendarname.roc", "Minguo Calendar" },
{ "calendarname.buddhist", "Buddhist Calendar" },
{ "field.era", "Era" },
{ "field.year", "Year" },
{ "field.month", "Month" },
{ "field.week", "Week" },
{ "field.weekday", "Day of the Week" },
{ "field.dayperiod", "Dayperiod" },
{ "field.hour", "Hour" },
{ "field.minute", "Minute" },
{ "field.second", "Second" },
{ "field.zone", "Zone" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -41,6 +41,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.ar;
import java.util.ListResourceBundle;
@ -159,6 +195,118 @@ public class FormatData_ar extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE\u060c d MMMM\u060c y G",
"d MMMM\u060c y G",
"dd\u200f/MM\u200f/y G",
"d\u200f/M\u200f/y G",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE\u060c d MMMM\u060c y G",
"d MMMM\u060c y G",
"dd\u200f/MM\u200f/y G",
"d\u200f/M\u200f/y G",
}
},
{ "roc.Eras",
new String[] {
"Before R.O.C.",
"\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0635\u064a",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE\u060c d MMMM\u060c y G",
"d MMMM\u060c y G",
"dd\u200f/MM\u200f/y G",
"d\u200f/M\u200f/y G",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE\u060c d MMMM\u060c y GGGG",
"d MMMM\u060c y GGGG",
"dd\u200f/MM\u200f/y GGGG",
"d\u200f/M\u200f/y GGGG",
}
},
{ "islamic.MonthNames",
new String[] {
"\u0645\u062d\u0631\u0645",
"\u0635\u0641\u0631",
"\u0631\u0628\u064a\u0639 \u0627\u0644\u0623\u0648\u0644",
"\u0631\u0628\u064a\u0639 \u0627\u0644\u0622\u062e\u0631",
"\u062c\u0645\u0627\u062f\u0649 \u0627\u0644\u0623\u0648\u0644\u0649",
"\u062c\u0645\u0627\u062f\u0649 \u0627\u0644\u0622\u062e\u0631\u0629",
"\u0631\u062c\u0628",
"\u0634\u0639\u0628\u0627\u0646",
"\u0631\u0645\u0636\u0627\u0646",
"\u0634\u0648\u0627\u0644",
"\u0630\u0648 \u0627\u0644\u0642\u0639\u062f\u0629",
"\u0630\u0648 \u0627\u0644\u062d\u062c\u0629",
"",
}
},
{ "islamic.MonthAbbreviations",
new String[] {
"\u0645\u062d\u0631\u0645",
"\u0635\u0641\u0631",
"\u0631\u0628\u064a\u0639 \u0627\u0644\u0623\u0648\u0644",
"\u0631\u0628\u064a\u0639 \u0627\u0644\u0622\u062e\u0631",
"\u062c\u0645\u0627\u062f\u0649 \u0627\u0644\u0623\u0648\u0644\u0649",
"\u062c\u0645\u0627\u062f\u0649 \u0627\u0644\u0622\u062e\u0631\u0629",
"\u0631\u062c\u0628",
"\u0634\u0639\u0628\u0627\u0646",
"\u0631\u0645\u0636\u0627\u0646",
"\u0634\u0648\u0627\u0644",
"\u0630\u0648 \u0627\u0644\u0642\u0639\u062f\u0629",
"\u0630\u0648 \u0627\u0644\u062d\u062c\u0629",
"",
}
},
{ "islamic.Eras",
new String[] {
"",
"\u0647\u0640",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"EEEE\u060c d MMMM y",
"d MMMM y",
"d MMM\u060c y G",
"d\u200f/M\u200f/yyyy",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE\u060c d MMMM y",
"d MMMM y",
"d MMM\u060c y GGGG",
"d\u200f/M\u200f/yyyy",
}
},
{ "calendarname.islamic-civil", "\u062a\u0642\u0648\u064a\u0645 \u0627\u0633\u0644\u0627\u0645\u064a \u0645\u062f\u0646\u064a" },
{ "calendarname.islamicc", "\u062a\u0642\u0648\u064a\u0645 \u0627\u0633\u0644\u0627\u0645\u064a \u0645\u062f\u0646\u064a" },
{ "calendarname.islamic", "\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0647\u062c\u0631\u064a" },
{ "calendarname.japanese", "\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u064a\u0627\u0628\u0627\u0646\u064a" },
{ "calendarname.gregorian", "\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0645\u064a\u0644\u0627\u062f\u064a" },
{ "calendarname.gregory", "\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0645\u064a\u0644\u0627\u062f\u064a" },
{ "calendarname.roc", "\u062a\u0642\u0648\u064a\u0645 \u0645\u064a\u0646\u062c\u0648" },
{ "calendarname.buddhist", "\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0628\u0648\u0630\u064a" },
{ "field.era", "\u0627\u0644\u0639\u0635\u0631" },
{ "field.year", "\u0627\u0644\u0633\u0646\u0629" },
{ "field.month", "\u0627\u0644\u0634\u0647\u0631" },
{ "field.week", "\u0627\u0644\u0623\u0633\u0628\u0648\u0639" },
{ "field.weekday", "\u0627\u0644\u064a\u0648\u0645" },
{ "field.dayperiod", "\u0635/\u0645" },
{ "field.hour", "\u0627\u0644\u0633\u0627\u0639\u0627\u062a" },
{ "field.minute", "\u0627\u0644\u062f\u0642\u0627\u0626\u0642" },
{ "field.second", "\u0627\u0644\u062b\u0648\u0627\u0646\u064a" },
{ "field.zone", "\u0627\u0644\u062a\u0648\u0642\u064a\u062a" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -41,6 +41,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.be;
import java.util.ListResourceBundle;
@ -178,6 +214,29 @@ public class FormatData_be extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE, d MMMM y G",
"d MMMM y G",
"d MMM y G",
"d.M.yy",
}
},
{ "calendarname.islamic-civil", "\u043c\u0443\u0441\u0443\u043b\u044c\u043c\u0430\u043d\u0441\u043a\u0456 \u0441\u0432\u0435\u0446\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
{ "calendarname.islamicc", "\u043c\u0443\u0441\u0443\u043b\u044c\u043c\u0430\u043d\u0441\u043a\u0456 \u0441\u0432\u0435\u0446\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
{ "calendarname.islamic", "\u043c\u0443\u0441\u0443\u043b\u044c\u043c\u0430\u043d\u0441\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
{ "calendarname.buddhist", "\u0431\u0443\u0434\u044b\u0441\u0446\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
{ "calendarname.japanese", "\u044f\u043f\u043e\u043d\u0441\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
{ "calendarname.gregorian", "\u0433\u0440\u044d\u0433\u0430\u0440\u044b\u044f\u043d\u0441\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
{ "calendarname.gregory", "\u0433\u0440\u044d\u0433\u0430\u0440\u044b\u044f\u043d\u0441\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
{ "field.era", "\u044d\u0440\u0430" },
{ "field.year", "\u0433\u043e\u0434" },
{ "field.month", "\u043c\u0435\u0441\u044f\u0446" },
{ "field.week", "\u0442\u044b\u0434\u0437\u0435\u043d\u044c" },
{ "field.weekday", "\u0434\u0437\u0435\u043d\u044c \u0442\u044b\u0434\u043d\u044f" },
{ "field.hour", "\u0433\u0430\u0434\u0437\u0456\u043d\u0430" },
{ "field.minute", "\u0445\u0432\u0456\u043b\u0456\u043d\u0430" },
{ "field.second", "\u0441\u0435\u043a\u0443\u043d\u0434\u0430" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -41,6 +41,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.bg;
import java.util.ListResourceBundle;
@ -161,6 +197,41 @@ public class FormatData_bg extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "islamic.MonthNames",
new String[] {
"\u043c\u0443\u0445\u0430\u0440\u0430\u043c",
"\u0441\u0430\u0444\u0430\u0440",
"\u0440\u0430\u0431\u0438-1",
"\u0440\u0430\u0431\u0438-2",
"\u0434\u0436\u0443\u043c\u0430\u0434\u0430-1",
"\u0434\u0436\u0443\u043c\u0430\u0434\u0430-2",
"\u0440\u0430\u0434\u0436\u0430\u0431",
"\u0448\u0430\u0431\u0430\u043d",
"\u0440\u0430\u043c\u0430\u0437\u0430\u043d",
"\u0428\u0430\u0432\u0430\u043b",
"\u0414\u0445\u0443\u043b-\u041a\u0430\u0430\u0434\u0430",
"\u0414\u0445\u0443\u043b-\u0445\u0438\u0434\u0436\u0430",
"",
}
},
{ "calendarname.islamic-civil", "\u0418\u0441\u043b\u044f\u043c\u0441\u043a\u0438 \u0446\u0438\u0432\u0438\u043b\u0435\u043d \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.islamicc", "\u0418\u0441\u043b\u044f\u043c\u0441\u043a\u0438 \u0446\u0438\u0432\u0438\u043b\u0435\u043d \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.islamic", "\u0418\u0441\u043b\u044f\u043c\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.japanese", "\u042f\u043f\u043e\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.gregorian", "\u0413\u0440\u0438\u0433\u043e\u0440\u0438\u0430\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.gregory", "\u0413\u0440\u0438\u0433\u043e\u0440\u0438\u0430\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.roc", "\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440 \u043d\u0430 \u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0438\u0442\u0430\u0439" },
{ "calendarname.buddhist", "\u0411\u0443\u0434\u0438\u0441\u0442\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "field.era", "\u0435\u0440\u0430" },
{ "field.year", "\u0433\u043e\u0434\u0438\u043d\u0430" },
{ "field.month", "\u043c\u0435\u0441\u0435\u0446" },
{ "field.week", "\u0441\u0435\u0434\u043c\u0438\u0446\u0430" },
{ "field.weekday", "\u0414\u0435\u043d \u043e\u0442 \u0441\u0435\u0434\u043c\u0438\u0446\u0430\u0442\u0430" },
{ "field.dayperiod", "\u0434\u0435\u043d" },
{ "field.hour", "\u0447\u0430\u0441" },
{ "field.minute", "\u043c\u0438\u043d\u0443\u0442\u0430" },
{ "field.second", "\u0441\u0435\u043a\u0443\u043d\u0434\u0430" },
{ "field.zone", "\u0437\u043e\u043d\u0430" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -41,6 +41,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.ca;
import java.util.ListResourceBundle;
@ -217,6 +253,24 @@ public class FormatData_ca extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GuMtkHmsSEDFwWahKzZ" },
{ "calendarname.islamic-civil", "calendari civil isl\u00e0mic" },
{ "calendarname.islamicc", "calendari civil isl\u00e0mic" },
{ "calendarname.roc", "calendari de la Rep\u00fablica de Xina" },
{ "calendarname.islamic", "calendari musulm\u00e0" },
{ "calendarname.buddhist", "calendari budista" },
{ "calendarname.japanese", "calendari japon\u00e8s" },
{ "calendarname.gregorian", "calendari gregori\u00e0" },
{ "calendarname.gregory", "calendari gregori\u00e0" },
{ "field.era", "era" },
{ "field.year", "any" },
{ "field.month", "mes" },
{ "field.week", "setmana" },
{ "field.weekday", "dia de la setmana" },
{ "field.dayperiod", "a.m./p.m." },
{ "field.hour", "hora" },
{ "field.minute", "minut" },
{ "field.second", "segon" },
{ "field.zone", "zona" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -41,6 +41,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.cs;
import java.util.ListResourceBundle;
@ -201,6 +237,22 @@ public class FormatData_cs extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GuMtkHmsSEDFwWahKzZ" },
{ "calendarname.islamic-civil", "Muslimsk\u00fd ob\u010dansk\u00fd kalend\u00e1\u0159" },
{ "calendarname.islamicc", "Muslimsk\u00fd ob\u010dansk\u00fd kalend\u00e1\u0159" },
{ "calendarname.islamic", "Muslimsk\u00fd kalend\u00e1\u0159" },
{ "calendarname.buddhist", "Buddhistick\u00fd kalend\u00e1\u0159" },
{ "calendarname.japanese", "Japonsk\u00fd kalend\u00e1\u0159" },
{ "calendarname.gregorian", "Gregori\u00e1nsk\u00fd kalend\u00e1\u0159" },
{ "calendarname.gregory", "Gregori\u00e1nsk\u00fd kalend\u00e1\u0159" },
{ "field.year", "Rok" },
{ "field.month", "M\u011bs\u00edc" },
{ "field.week", "T\u00fdden" },
{ "field.weekday", "Den v t\u00fddnu" },
{ "field.dayperiod", "AM/PM" },
{ "field.hour", "Hodina" },
{ "field.minute", "Minuta" },
{ "field.second", "Sekunda" },
{ "field.zone", "\u010casov\u00e9 p\u00e1smo" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -41,6 +41,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.da;
import java.util.ListResourceBundle;
@ -172,6 +208,64 @@ public class FormatData_da extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GuMtkHmsSEDFwWahKzZ" },
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE d. MMMM y G",
"d. MMMM y G",
"d. MMM y G",
"d/M/y GGGGG",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE d. MMMM y G",
"d. MMMM y G",
"d. MMM y G",
"d/M/y GGGGG",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE d. MMMM y GGGG",
"d. MMMM y GGGG",
"d. MMM y GGGG",
"d/M/y G",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"EEEE d. MMMM y G",
"d. MMMM y G",
"d. MMM y G",
"d/M/y G",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE d. MMMM y GGGG",
"d. MMMM y GGGG",
"d. MMM y GGGG",
"d/M/y GGGG",
}
},
{ "calendarname.islamic-civil", "verdslig islamisk kalender" },
{ "calendarname.islamicc", "verdslig islamisk kalender" },
{ "calendarname.roc", "kalender for Republikken Kina" },
{ "calendarname.islamic", "islamisk kalender" },
{ "calendarname.buddhist", "buddhistisk kalender" },
{ "calendarname.japanese", "japansk kalender" },
{ "calendarname.gregorian", "gregoriansk kalender" },
{ "calendarname.gregory", "gregoriansk kalender" },
{ "field.era", "\u00e6ra" },
{ "field.year", "\u00e5r" },
{ "field.month", "m\u00e5ned" },
{ "field.week", "uge" },
{ "field.weekday", "ugedag" },
{ "field.dayperiod", "dagtid" },
{ "field.hour", "time" },
{ "field.minute", "minut" },
{ "field.second", "sekund" },
{ "field.zone", "tidszone" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -41,6 +41,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.de;
import java.util.ListResourceBundle;
@ -178,6 +214,72 @@ public class FormatData_de extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GuMtkHmsSEDFwWahKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE d. MMMM y G",
"d. MMMM y G",
"d. MMM y G",
"d.M.yyyy",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE d. MMMM y G",
"d. MMMM y G",
"d. MMM y G",
"d.M.y GGGGG",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE d. MMMM y G",
"d. MMMM y G",
"d. MMM y G",
"d.M.y GGGGG",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE d. MMMM y GGGG",
"d. MMMM y GGGG",
"d. MMM y GGGG",
"d.M.y G",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"EEEE d. MMMM y G",
"d. MMMM y G",
"d. MMM y G",
"d.M.y G",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE d. MMMM y GGGG",
"d. MMMM y GGGG",
"d. MMM y GGGG",
"d.M.y GGGG",
}
},
{ "calendarname.islamic-civil", "B\u00fcrgerlicher islamischer Kalender" },
{ "calendarname.islamicc", "B\u00fcrgerlicher islamischer Kalender" },
{ "calendarname.roc", "Kalender der Republik China" },
{ "calendarname.islamic", "Islamischer Kalender" },
{ "calendarname.buddhist", "Buddhistischer Kalender" },
{ "calendarname.japanese", "Japanischer Kalender" },
{ "calendarname.gregorian", "Gregorianischer Kalender" },
{ "calendarname.gregory", "Gregorianischer Kalender" },
{ "field.era", "Epoche" },
{ "field.year", "Jahr" },
{ "field.month", "Monat" },
{ "field.week", "Woche" },
{ "field.weekday", "Wochentag" },
{ "field.dayperiod", "Tagesh\u00e4lfte" },
{ "field.hour", "Stunde" },
{ "field.minute", "Minute" },
{ "field.second", "Sekunde" },
{ "field.zone", "Zone" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -41,6 +41,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.el;
import java.util.ListResourceBundle;
@ -178,6 +214,62 @@ public class FormatData_el extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE, d MMMM, y G",
"d MMMM, y G",
"d MMM, y G",
"d/M/yyyy",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE, d MMMM, y G",
"d MMMM, y G",
"d MMM, y G",
"d/M/yy",
}
},
{ "roc.Eras",
new String[] {
"\u03a0\u03c1\u03b9\u03bd R.O.C.",
"R.O.C.",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE, d MMMM, y G",
"d MMMM, y G",
"d MMM, y G",
"d/M/y G",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, d MMMM, y GGGG",
"d MMMM, y GGGG",
"d MMM, y GGGG",
"d/M/y GGGG",
}
},
{ "calendarname.islamic-civil", "\u0399\u03c3\u03bb\u03b1\u03bc\u03b9\u03ba\u03cc \u03b1\u03c3\u03c4\u03b9\u03ba\u03cc \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf" },
{ "calendarname.islamicc", "\u0399\u03c3\u03bb\u03b1\u03bc\u03b9\u03ba\u03cc \u03b1\u03c3\u03c4\u03b9\u03ba\u03cc \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf" },
{ "calendarname.islamic", "\u0399\u03c3\u03bb\u03b1\u03bc\u03b9\u03ba\u03cc \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf" },
{ "calendarname.japanese", "\u0399\u03b1\u03c0\u03c9\u03bd\u03b9\u03ba\u03cc \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf" },
{ "calendarname.gregorian", "\u0393\u03c1\u03b7\u03b3\u03bf\u03c1\u03b9\u03b1\u03bd\u03cc \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf" },
{ "calendarname.gregory", "\u0393\u03c1\u03b7\u03b3\u03bf\u03c1\u03b9\u03b1\u03bd\u03cc \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf" },
{ "calendarname.roc", "\u0397\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf \u03c4\u03b7\u03c2 \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1\u03c2 \u03c4\u03b7\u03c2 \u039a\u03af\u03bd\u03b1\u03c2" },
{ "calendarname.buddhist", "\u0392\u03bf\u03c5\u03b4\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf" },
{ "field.era", "\u03a0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf\u03c2" },
{ "field.year", "\u0388\u03c4\u03bf\u03c2" },
{ "field.month", "\u039c\u03ae\u03bd\u03b1\u03c2" },
{ "field.week", "\u0395\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1" },
{ "field.weekday", "\u0397\u03bc\u03ad\u03c1\u03b1 \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1\u03c2" },
{ "field.dayperiod", "\u03c0.\u03bc./\u03bc.\u03bc." },
{ "field.hour", "\u038f\u03c1\u03b1" },
{ "field.minute", "\u039b\u03b5\u03c0\u03c4\u03cc" },
{ "field.second", "\u0394\u03b5\u03c5\u03c4\u03b5\u03c1\u03cc\u03bb\u03b5\u03c0\u03c4\u03bf" },
{ "field.zone", "\u0396\u03ce\u03bd\u03b7" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.es;
import java.util.ListResourceBundle;
@ -159,6 +195,72 @@ public class FormatData_es extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE, d 'de' MMMM 'de' y G",
"d 'de' MMMM 'de' y G",
"dd/MM/y G",
"dd/MM/y G",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE, d 'de' MMMM 'de' y G",
"d 'de' MMMM 'de' y G",
"dd/MM/y G",
"dd/MM/y GGGGG",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE, d 'de' MMMM 'de' y G",
"d 'de' MMMM 'de' y G",
"dd/MM/y G",
"dd/MM/y GGGGG",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, d 'de' MMMM 'de' y GGGG",
"d 'de' MMMM 'de' y GGGG",
"dd/MM/y GGGG",
"dd/MM/y G",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"EEEE, d 'de' MMMM 'de' y G",
"d 'de' MMMM 'de' y G",
"dd/MM/y G",
"dd/MM/y G",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, d 'de' MMMM 'de' y GGGG",
"d 'de' MMMM 'de' y GGGG",
"dd/MM/y GGGG",
"dd/MM/y GGGG",
}
},
{ "calendarname.islamic-civil", "calendario civil isl\u00e1mico" },
{ "calendarname.islamicc", "calendario civil isl\u00e1mico" },
{ "calendarname.islamic", "calendario isl\u00e1mico" },
{ "calendarname.japanese", "calendario japon\u00e9s" },
{ "calendarname.gregorian", "calendario gregoriano" },
{ "calendarname.gregory", "calendario gregoriano" },
{ "calendarname.roc", "calendario de la Rep\u00fablica de China" },
{ "calendarname.buddhist", "calendario budista" },
{ "field.era", "era" },
{ "field.year", "a\u00f1o" },
{ "field.month", "mes" },
{ "field.week", "semana" },
{ "field.weekday", "d\u00eda de la semana" },
{ "field.dayperiod", "periodo del d\u00eda" },
{ "field.hour", "hora" },
{ "field.minute", "minuto" },
{ "field.second", "segundo" },
{ "field.zone", "zona" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.et;
import java.util.ListResourceBundle;
@ -158,6 +194,24 @@ public class FormatData_et extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "calendarname.islamic-civil", "islami ilmalik kalender" },
{ "calendarname.islamicc", "islami ilmalik kalender" },
{ "calendarname.roc", "Hiina Vabariigi kalender" },
{ "calendarname.islamic", "islamikalender" },
{ "calendarname.buddhist", "budistlik kalender" },
{ "calendarname.japanese", "Jaapani kalender" },
{ "calendarname.gregorian", "Gregoriuse kalender" },
{ "calendarname.gregory", "Gregoriuse kalender" },
{ "field.era", "ajastu" },
{ "field.year", "aasta" },
{ "field.month", "kuu" },
{ "field.week", "n\u00e4dal" },
{ "field.weekday", "n\u00e4dalap\u00e4ev" },
{ "field.dayperiod", "enne/p\u00e4rast l\u00f5unat" },
{ "field.hour", "tund" },
{ "field.minute", "minut" },
{ "field.second", "sekund" },
{ "field.zone", "v\u00f6\u00f6nd" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.fi;
import java.util.ListResourceBundle;
@ -200,6 +236,14 @@ public class FormatData_fi extends ListResourceBundle {
"H:mm", // short time pattern
}
},
{ "cldr.DatePatterns",
new String[] {
"cccc, d. MMMM y",
"d. MMMM y",
"d.M.yyyy",
"d.M.yyyy",
}
},
{ "DatePatterns",
new String[] {
"d. MMMM'ta 'yyyy", // full date pattern
@ -226,6 +270,89 @@ public class FormatData_fi extends ListResourceBundle {
"ip.",
}
},
{ "cldr.buddhist.DatePatterns",
new String[] {
"cccc d. MMMM y G",
"d. MMMM y G",
"d.M.y G",
"d.M.y G",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"cccc d. MMMM y G",
"d. MMMM y G",
"d.M.y G",
"d.M.y G",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"cccc d. MMMM y G",
"d. MMMM y G",
"d.M.y G",
"d.M.y G",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE d. MMMM y GGGG",
"d. MMMM y GGGG",
"d.M.y GGGG",
"d.M.y GGGG",
}
},
{ "islamic.MonthNames",
new String[] {
"muharram",
"safar",
"rabi\u2019 al-awwal",
"rabi\u2019 al-akhir",
"d\u017eumada-l-ula",
"d\u017eumada-l-akhira",
"rad\u017eab",
"\u0161a\u2019ban",
"ramadan",
"\u0161awwal",
"dhu-l-qa\u2019da",
"dhu-l-hidd\u017ea",
"",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"cccc d. MMMM y G",
"d. MMMM y G",
"d.M.y G",
"d.M.y G",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE d. MMMM y GGGG",
"d. MMMM y GGGG",
"d.M.y GGGG",
"d.M.y GGGG",
}
},
{ "calendarname.islamic-civil", "islamilainen siviilikalenteri" },
{ "calendarname.islamicc", "islamilainen siviilikalenteri" },
{ "calendarname.islamic", "islamilainen kalenteri" },
{ "calendarname.japanese", "japanilainen kalenteri" },
{ "calendarname.gregorian", "gregoriaaninen kalenteri" },
{ "calendarname.gregory", "gregoriaaninen kalenteri" },
{ "calendarname.roc", "Kiinan tasavallan kalenteri" },
{ "calendarname.buddhist", "buddhalainen kalenteri" },
{ "field.era", "aikakausi" },
{ "field.year", "vuosi" },
{ "field.month", "kuukausi" },
{ "field.week", "viikko" },
{ "field.weekday", "viikonp\u00e4iv\u00e4" },
{ "field.dayperiod", "vuorokaudenaika" },
{ "field.hour", "tunti" },
{ "field.minute", "minuutti" },
{ "field.second", "sekunti" },
{ "field.zone", "aikavy\u00f6hyke" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.fr;
import java.util.ListResourceBundle;
@ -165,6 +201,112 @@ public class FormatData_fr extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GaMjkHmsSEDFwWxhKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"d MMMM y G",
"d MMM, y G",
"d/M/yyyy",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"d MMMM y G",
"d MMM, y G",
"d/M/y GGGGG",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"d MMMM y G",
"d MMM, y G",
"d/M/y GGGGG",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE d MMMM y GGGG",
"d MMMM y GGGG",
"d MMM, y GGGG",
"d/M/y G",
}
},
{ "islamic.MonthNames",
new String[] {
"Mouharram",
"Safar",
"Rabi\u02bb-oul-Aououal",
"Rabi\u02bb-out-Tani",
"Djoumada-l-Oula",
"Djoumada-t-Tania",
"Radjab",
"Cha\u02bbban",
"Ramadan",
"Chaououal",
"Dou-l-Qa\u02bbda",
"Dou-l-Hidjja",
"",
}
},
{ "islamic.MonthAbbreviations",
new String[] {
"Mouh.",
"Saf.",
"Rabi\u02bb-oul-A.",
"Rabi\u02bb-out-T.",
"Djoum.-l-O.",
"Djoum.-t-T.",
"Radj.",
"Cha.",
"Ram.",
"Chaou.",
"Dou-l-Q.",
"Dou-l-H.",
"",
}
},
{ "islamic.Eras",
new String[] {
"",
"AH",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"d MMMM y G",
"d MMM, y G",
"d/M/y G",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE d MMMM y GGGG",
"d MMMM y GGGG",
"d MMM, y GGGG",
"d/M/y GGGG",
}
},
{ "calendarname.islamic-civil", "Calendrier civil musulman" },
{ "calendarname.islamicc", "Calendrier civil musulman" },
{ "calendarname.islamic", "Calendrier musulman" },
{ "calendarname.japanese", "Calendrier japonais" },
{ "calendarname.gregorian", "Calendrier gr\u00e9gorien" },
{ "calendarname.gregory", "Calendrier gr\u00e9gorien" },
{ "calendarname.roc", "Calendrier r\u00e9publicain chinois" },
{ "calendarname.buddhist", "Calendrier bouddhiste" },
{ "field.era", "\u00e8re" },
{ "field.year", "ann\u00e9e" },
{ "field.month", "mois" },
{ "field.week", "semaine" },
{ "field.weekday", "jour de la semaine" },
{ "field.dayperiod", "cadran" },
{ "field.hour", "heure" },
{ "field.minute", "minute" },
{ "field.second", "seconde" },
{ "field.zone", "fuseau horaire" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -29,6 +29,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.hi;
import java.util.ListResourceBundle;
@ -159,6 +195,24 @@ public class FormatData_hi_IN extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
{ "calendarname.islamic-civil", "\u0907\u0938\u094d\u0932\u093e\u092e\u0940 \u0928\u093e\u0917\u0930\u093f\u0915 \u092a\u0902\u091a\u093e\u0902\u0917" },
{ "calendarname.islamicc", "\u0907\u0938\u094d\u0932\u093e\u092e\u0940 \u0928\u093e\u0917\u0930\u093f\u0915 \u092a\u0902\u091a\u093e\u0902\u0917" },
{ "calendarname.roc", "\u091a\u0940\u0928\u0940 \u0917\u0923\u0924\u0902\u0924\u094d\u0930 \u092a\u0902\u091a\u093e\u0902\u0917" },
{ "calendarname.islamic", "\u0907\u0938\u094d\u0932\u093e\u092e\u0940 \u092a\u0902\u091a\u093e\u0902\u0917" },
{ "calendarname.buddhist", "\u092c\u094c\u0926\u094d\u0927 \u092a\u0902\u091a\u093e\u0902\u0917" },
{ "calendarname.japanese", "\u091c\u093e\u092a\u093e\u0928\u0940 \u092a\u0902\u091a\u093e\u0902\u0917" },
{ "calendarname.gregorian", "\u0917\u094d\u0930\u0947\u0917\u0930\u0940 \u092a\u0902\u091a\u093e\u0902\u0917" },
{ "calendarname.gregory", "\u0917\u094d\u0930\u0947\u0917\u0930\u0940 \u092a\u0902\u091a\u093e\u0902\u0917" },
{ "field.era", "\u092f\u0941\u0917" },
{ "field.year", "\u0935\u0930\u094d\u0937" },
{ "field.month", "\u092e\u093e\u0938" },
{ "field.week", "\u0938\u092a\u094d\u0924\u093e\u0939" },
{ "field.weekday", "\u0938\u092a\u094d\u0924\u093e\u0939 \u0915\u093e \u0926\u093f\u0928" },
{ "field.dayperiod", "\u0938\u092e\u092f \u0905\u0935\u0927\u093f" },
{ "field.hour", "\u0918\u0902\u091f\u093e" },
{ "field.minute", "\u092e\u093f\u0928\u091f" },
{ "field.second", "\u0938\u0947\u0915\u0947\u0902\u0921" },
{ "field.zone", "\u0915\u094d\u0937\u0947\u0924\u094d\u0930" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.hr;
import java.util.ListResourceBundle;
@ -214,6 +250,62 @@ public class FormatData_hr extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE, d. MMMM y. G",
"d. MMMM y. G",
"d. M. y. G",
"d.M.y.",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE, d. MMMM y. G",
"d. MMMM y. G",
"d. M. y. G",
"d.M.y. G",
}
},
{ "roc.Eras",
new String[] {
"prije R.O.C.",
"R.O.C.",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE, d. MMMM y. G",
"d. MMMM y. G",
"d. M. y. G",
"d.M.y. G",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, d. MMMM y. GGGG",
"d. MMMM y. GGGG",
"d. M. y. GGGG",
"d.M.y. GGGG",
}
},
{ "calendarname.islamic-civil", "islamski civilni kalendar" },
{ "calendarname.islamicc", "islamski civilni kalendar" },
{ "calendarname.roc", "kalendar Republike Kine" },
{ "calendarname.islamic", "islamski kalendar" },
{ "calendarname.buddhist", "budisti\u010dki kalendar" },
{ "calendarname.japanese", "japanski kalendar" },
{ "calendarname.gregorian", "gregorijanski kalendar" },
{ "calendarname.gregory", "gregorijanski kalendar" },
{ "field.era", "era" },
{ "field.year", "godina" },
{ "field.month", "mjesec" },
{ "field.week", "tjedan" },
{ "field.weekday", "dan u tjednu" },
{ "field.dayperiod", "dio dana" },
{ "field.hour", "sat" },
{ "field.minute", "minuta" },
{ "field.second", "sekunda" },
{ "field.zone", "zona" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.hu;
import java.util.ListResourceBundle;
@ -164,6 +200,47 @@ public class FormatData_hu extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "islamic.MonthNames",
new String[] {
"Moharrem",
"Safar",
"R\u00e9bi el avvel",
"R\u00e9bi el accher",
"Dsem\u00e1di el avvel",
"Dsem\u00e1di el accher",
"Redseb",
"Sab\u00e1n",
"Ramad\u00e1n",
"Sevv\u00e1l",
"Ds\u00fcl kade",
"Ds\u00fcl hedse",
"",
}
},
{ "islamic.Eras",
new String[] {
"",
"MF",
}
},
{ "calendarname.islamic-civil", "iszl\u00e1m civil napt\u00e1r" },
{ "calendarname.islamicc", "iszl\u00e1m civil napt\u00e1r" },
{ "calendarname.islamic", "iszl\u00e1m napt\u00e1r" },
{ "calendarname.japanese", "jap\u00e1n napt\u00e1r" },
{ "calendarname.gregorian", "Gergely-napt\u00e1r" },
{ "calendarname.gregory", "Gergely-napt\u00e1r" },
{ "calendarname.roc", "K\u00ednai k\u00f6zt\u00e1rsas\u00e1gi napt\u00e1r" },
{ "calendarname.buddhist", "buddhista napt\u00e1r" },
{ "field.era", "\u00e9ra" },
{ "field.year", "\u00e9v" },
{ "field.month", "h\u00f3nap" },
{ "field.week", "h\u00e9t" },
{ "field.weekday", "h\u00e9t napja" },
{ "field.dayperiod", "napszak" },
{ "field.hour", "\u00f3ra" },
{ "field.minute", "perc" },
{ "field.second", "m\u00e1sodperc" },
{ "field.zone", "z\u00f3na" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.is;
import java.util.ListResourceBundle;
@ -180,6 +216,13 @@ public class FormatData_is extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
{ "calendarname.islamic-civil", "\u00cdslamskt borgaradagatal" },
{ "calendarname.islamicc", "\u00cdslamskt borgaradagatal" },
{ "calendarname.islamic", "\u00cdslamskt dagatal" },
{ "calendarname.buddhist", "B\u00fadd\u00edskt dagatal" },
{ "calendarname.japanese", "Japanskt dagatal" },
{ "calendarname.gregorian", "Gregor\u00edskt dagatal" },
{ "calendarname.gregory", "Gregor\u00edskt dagatal" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.it;
import java.util.ListResourceBundle;
@ -175,6 +211,71 @@ public class FormatData_it extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"dd MMMM y G",
"dd/MMM/y G",
"dd/MM/y G",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"dd MMMM y G",
"dd/MMM/y G",
"dd/MM/y G",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"dd MMMM y G",
"dd/MMM/y G",
"dd/MM/y G",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE d MMMM y GGGG",
"dd MMMM y GGGG",
"dd/MMM/y GGGG",
"dd/MM/y GGGG",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"dd MMMM y G",
"dd/MMM/y G",
"dd/MM/y G",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE d MMMM y GGGG",
"dd MMMM y GGGG",
"dd/MMM/y GGGG",
"dd/MM/y GGGG",
}
},
{ "calendarname.islamic-civil", "calendario civile islamico" },
{ "calendarname.islamicc", "calendario civile islamico" },
{ "calendarname.islamic", "calendario islamico" },
{ "calendarname.buddhist", "calendario buddista" },
{ "calendarname.japanese", "calendario giapponese" },
{ "calendarname.gregorian", "calendario gregoriano" },
{ "calendarname.gregory", "calendario gregoriano" },
{ "field.era", "era" },
{ "field.year", "anno" },
{ "field.month", "mese" },
{ "field.week", "settimana" },
{ "field.weekday", "giorno della settimana" },
{ "field.dayperiod", "periodo del giorno" },
{ "field.hour", "ora" },
{ "field.minute", "minuto" },
{ "field.second", "secondo" },
{ "field.zone", "zona" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.iw;
import java.util.ListResourceBundle;
@ -171,6 +207,46 @@ public class FormatData_iw extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "islamic.MonthNames",
new String[] {
"\u05de\u05d5\u05d7\u05e8\u05dd",
"\u05e1\u05e4\u05e8",
"\u05e8\u05d1\u05d9\u05e2 \u05d0\u05dc-\u05d0\u05d5\u05d5\u05d0\u05dc",
"\u05e8\u05d1\u05d9\u05e2 \u05d0\u05dc-\u05ea\u05e0\u05d9",
"\u05d2\u05f3\u05d5\u05de\u05d3\u05d4 \u05d0\u05dc-\u05d0\u05d5\u05d5\u05d0\u05dc",
"\u05d2\u05f3\u05d5\u05de\u05d3\u05d4 \u05d0\u05dc-\u05ea\u05e0\u05d9",
"\u05e8\u05d2\u05f3\u05d0\u05d1",
"\u05e9\u05e2\u05d1\u05d0\u05df",
"\u05e8\u05d0\u05de\u05d3\u05df",
"\u05e9\u05d5\u05d5\u05d0\u05dc",
"\u05d6\u05d5 \u05d0\u05dc-QI'DAH",
"\u05d6\u05d5 \u05d0\u05dc-\u05d7\u05d9\u05d2\u05f3\u05d4",
"",
}
},
{ "islamic.Eras",
new String[] {
"",
"\u05e9\u05e0\u05ea \u05d4\u05d9\u05d2\u05f3\u05e8\u05d4",
}
},
{ "calendarname.islamic-civil", "\u05dc\u05d5\u05d7 \u05e9\u05e0\u05d4 \u05de\u05d5\u05e1\u05dc\u05de\u05d9-\u05d0\u05d6\u05e8\u05d7\u05d9" },
{ "calendarname.islamicc", "\u05dc\u05d5\u05d7 \u05e9\u05e0\u05d4 \u05de\u05d5\u05e1\u05dc\u05de\u05d9-\u05d0\u05d6\u05e8\u05d7\u05d9" },
{ "calendarname.islamic", "\u05dc\u05d5\u05d7 \u05e9\u05e0\u05d4 \u05de\u05d5\u05e1\u05dc\u05de\u05d9" },
{ "calendarname.buddhist", "\u05dc\u05d5\u05d7 \u05e9\u05e0\u05d4 \u05d1\u05d5\u05d3\u05d4\u05d9\u05e1\u05d8\u05d9" },
{ "calendarname.japanese", "\u05dc\u05d5\u05d7 \u05e9\u05e0\u05d4 \u05d9\u05e4\u05e0\u05d9" },
{ "calendarname.gregorian", "\u05dc\u05d5\u05d7 \u05e9\u05e0\u05d4 \u05d2\u05e8\u05d2\u05d5\u05e8\u05d9\u05d0\u05e0\u05d9" },
{ "calendarname.gregory", "\u05dc\u05d5\u05d7 \u05e9\u05e0\u05d4 \u05d2\u05e8\u05d2\u05d5\u05e8\u05d9\u05d0\u05e0\u05d9" },
{ "field.era", "\u05ea\u05e7\u05d5\u05e4\u05d4" },
{ "field.year", "\u05e9\u05e0\u05d4" },
{ "field.month", "\u05d7\u05d5\u05d3\u05e9" },
{ "field.week", "\u05e9\u05d1\u05d5\u05e2" },
{ "field.weekday", "\u05d9\u05d5\u05dd \u05d1\u05e9\u05d1\u05d5\u05e2" },
{ "field.dayperiod", "\u05dc\u05e4\u05d4\u05f4\u05e6/\u05d0\u05d7\u05d4\u05f4\u05e6" },
{ "field.hour", "\u05e9\u05e2\u05d4" },
{ "field.minute", "\u05d3\u05e7\u05d4" },
{ "field.second", "\u05e9\u05e0\u05d9\u05d9\u05d4" },
{ "field.zone", "\u05d0\u05d6\u05d5\u05e8" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.ja;
import java.util.ListResourceBundle;
@ -133,6 +169,14 @@ public class FormatData_ja extends ListResourceBundle {
"\u4ecf\u66a6", // Butsureki
}
},
{ "cldr.buddhist.DatePatterns",
new String[] {
"GGGGy\u5e74M\u6708d\u65e5EEEE",
"GGGGy\u5e74M\u6708d\u65e5",
"Gy/MM/dd",
"Gy/MM/dd",
}
},
{ "japanese.Eras",
new String[] { // era strings for Japanese imperial calendar
"\u897f\u66a6", // Seireki (Gregorian)
@ -183,6 +227,14 @@ public class FormatData_ja extends ListResourceBundle {
"{1} {0}" // date-time pattern
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"Gy\u5e74M\u6708d\u65e5EEEE",
"Gy\u5e74M\u6708d\u65e5",
"Gy\u5e74M\u6708d\u65e5",
"Gyy/MM/dd",
}
},
{ "japanese.DatePatterns",
new String[] {
"GGGGyyyy'\u5e74'M'\u6708'd'\u65e5'", // full date pattern
@ -205,6 +257,46 @@ public class FormatData_ja extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
{ "roc.Eras",
new String[] {
"\u6c11\u56fd\u524d",
"\u6c11\u56fd",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"Gy\u5e74M\u6708d\u65e5EEEE",
"Gy\u5e74M\u6708d\u65e5",
"Gy/MM/dd",
"Gy/MM/dd",
}
},
{ "roc.DatePatterns",
new String[] {
"GGGGy\u5e74M\u6708d\u65e5EEEE",
"GGGGy\u5e74M\u6708d\u65e5",
"GGGGy/MM/dd",
"GGGGy/MM/dd",
}
},
{ "calendarname.islamic-civil", "\u592a\u967d\u30a4\u30b9\u30e9\u30e0\u66a6" },
{ "calendarname.islamicc", "\u592a\u967d\u30a4\u30b9\u30e9\u30e0\u66a6" },
{ "calendarname.islamic", "\u30a4\u30b9\u30e9\u30e0\u66a6" },
{ "calendarname.japanese", "\u548c\u66a6" },
{ "calendarname.gregorian", "\u897f\u66a6[\u30b0\u30ec\u30b4\u30ea\u30aa\u66a6]" },
{ "calendarname.gregory", "\u897f\u66a6[\u30b0\u30ec\u30b4\u30ea\u30aa\u66a6]" },
{ "calendarname.roc", "\u4e2d\u83ef\u6c11\u56fd\u66a6" },
{ "calendarname.buddhist", "\u30bf\u30a4\u4ecf\u6559\u66a6" },
{ "field.era", "\u6642\u4ee3" },
{ "field.year", "\u5e74" },
{ "field.month", "\u6708" },
{ "field.week", "\u9031" },
{ "field.weekday", "\u66dc\u65e5" },
{ "field.dayperiod", "\u5348\u524d/\u5348\u5f8c" },
{ "field.hour", "\u6642" },
{ "field.minute", "\u5206" },
{ "field.second", "\u79d2" },
{ "field.zone", "\u30bf\u30a4\u30e0\u30be\u30fc\u30f3" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.ko;
import java.util.ListResourceBundle;
@ -143,6 +179,62 @@ public class FormatData_ko extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"G y\ub144 M\uc6d4 d\uc77c EEEE",
"G y\ub144 M\uc6d4 d\uc77c",
"G y. M. d",
"G y. M. d",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"G y\ub144 M\uc6d4 d\uc77c EEEE",
"G y\ub144 M\uc6d4 d\uc77c",
"G y. M. d",
"G y. M. d",
}
},
{ "roc.Eras",
new String[] {
"\uc911\ud654\ubbfc\uad6d\uc804",
"\uc911\ud654\ubbfc\uad6d",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"G y\ub144 M\uc6d4 d\uc77c EEEE",
"G y\ub144 M\uc6d4 d\uc77c",
"G y. M. d",
"G y. M. d",
}
},
{ "roc.DatePatterns",
new String[] {
"GGGG y\ub144 M\uc6d4 d\uc77c EEEE",
"GGGG y\ub144 M\uc6d4 d\uc77c",
"GGGG y. M. d",
"GGGG y. M. d",
}
},
{ "calendarname.islamic-civil", "\uc774\uc2ac\ub78c \uc0c1\uc6a9\ub825" },
{ "calendarname.islamicc", "\uc774\uc2ac\ub78c \uc0c1\uc6a9\ub825" },
{ "calendarname.islamic", "\uc774\uc2ac\ub78c\ub825" },
{ "calendarname.japanese", "\uc77c\ubcf8\ub825" },
{ "calendarname.gregorian", "\ud0dc\uc591\ub825" },
{ "calendarname.gregory", "\ud0dc\uc591\ub825" },
{ "calendarname.roc", "\ub300\ub9cc\ub825" },
{ "calendarname.buddhist", "\ubd88\uad50\ub825" },
{ "field.era", "\uc5f0\ud638" },
{ "field.year", "\ub144" },
{ "field.month", "\uc6d4" },
{ "field.week", "\uc8fc" },
{ "field.weekday", "\uc694\uc77c" },
{ "field.dayperiod", "\uc624\uc804/\uc624\ud6c4" },
{ "field.hour", "\uc2dc" },
{ "field.minute", "\ubd84" },
{ "field.second", "\ucd08" },
{ "field.zone", "\uc2dc\uac04\ub300" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.lt;
import java.util.ListResourceBundle;
@ -203,6 +239,32 @@ public class FormatData_lt extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"y G, MMMM d, EEEE",
"G y MMMM d",
"G y MMM d",
"GGGGG yyyy-MM-dd",
}
},
{ "calendarname.islamic-civil", "Pilietinis islamo kalendorius" },
{ "calendarname.islamicc", "Pilietinis islamo kalendorius" },
{ "calendarname.islamic", "Islamo kalendorius" },
{ "calendarname.japanese", "Japon\u0173 kalendorius" },
{ "calendarname.gregorian", "Grigaliaus kalendorius" },
{ "calendarname.gregory", "Grigaliaus kalendorius" },
{ "calendarname.roc", "Kinijos Respublikos kalendorius" },
{ "calendarname.buddhist", "Budist\u0173 kalendorius" },
{ "field.era", "era" },
{ "field.year", "metai" },
{ "field.month", "m\u0117nuo" },
{ "field.week", "savait\u0117" },
{ "field.weekday", "savait\u0117s diena" },
{ "field.dayperiod", "dienos metas" },
{ "field.hour", "valanda" },
{ "field.minute", "minut\u0117" },
{ "field.second", "sekund\u0117" },
{ "field.zone", "laiko juosta" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.lv;
import java.util.ListResourceBundle;
@ -175,6 +211,41 @@ public class FormatData_lv extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "islamic.MonthNames",
new String[] {
"muharams",
"safars",
"1. rab\u012b",
"2. rab\u012b",
"1. d\u017eum\u0101d\u0101",
"2. d\u017eum\u0101d\u0101",
"rad\u017eabs",
"\u0161abans",
"ramad\u0101ns",
"\u0161auvals",
"du al-kid\u0101",
"du al-hid\u017e\u0101",
"",
}
},
{ "calendarname.islamic-civil", "isl\u0101ma pilso\u0146u kalend\u0101rs" },
{ "calendarname.islamicc", "isl\u0101ma pilso\u0146u kalend\u0101rs" },
{ "calendarname.islamic", "isl\u0101ma kalend\u0101rs" },
{ "calendarname.japanese", "jap\u0101\u0146u kalend\u0101rs" },
{ "calendarname.gregorian", "Gregora kalend\u0101rs" },
{ "calendarname.gregory", "Gregora kalend\u0101rs" },
{ "calendarname.roc", "\u0136\u012bnas Republikas kalend\u0101rs" },
{ "calendarname.buddhist", "budistu kalend\u0101rs" },
{ "field.era", "\u0113ra" },
{ "field.year", "Gads" },
{ "field.month", "M\u0113nesis" },
{ "field.week", "Ned\u0113\u013ca" },
{ "field.weekday", "Ned\u0113\u013cas diena" },
{ "field.dayperiod", "Dayperiod" },
{ "field.hour", "Stundas" },
{ "field.minute", "Min\u016btes" },
{ "field.second", "Sekundes" },
{ "field.zone", "Josla" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.mk;
import java.util.ListResourceBundle;
@ -158,6 +194,24 @@ public class FormatData_mk extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GuMtkHmsSEDFwWahKzZ" },
{ "calendarname.islamic-civil", "\u0418\u0441\u043b\u0430\u043c\u0441\u043a\u0438 \u0433\u0440\u0430\u0453\u0430\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.islamicc", "\u0418\u0441\u043b\u0430\u043c\u0441\u043a\u0438 \u0433\u0440\u0430\u0453\u0430\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.roc", "\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440 \u043d\u0430 \u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0438\u043d\u0430" },
{ "calendarname.islamic", "\u0418\u0441\u043b\u0430\u043c\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.buddhist", "\u0411\u0443\u0434\u0438\u0441\u0442\u0438\u0447\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.japanese", "\u0408\u0430\u043f\u043e\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.gregorian", "\u0413\u0440\u0435\u0433\u043e\u0440\u0438\u0458\u0430\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.gregory", "\u0413\u0440\u0435\u0433\u043e\u0440\u0438\u0458\u0430\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "field.era", "\u0415\u0440\u0430" },
{ "field.year", "\u0433\u043e\u0434\u0438\u043d\u0430" },
{ "field.month", "\u041c\u0435\u0441\u0435\u0446" },
{ "field.week", "\u041d\u0435\u0434\u0435\u043b\u0430" },
{ "field.weekday", "\u0414\u0435\u043d \u0432\u043e \u043d\u0435\u0434\u0435\u043b\u0430\u0442\u0430" },
{ "field.dayperiod", "\u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0434\u043d\u0435/\u043f\u043e\u043f\u043b\u0430\u0434\u043d\u0435" },
{ "field.hour", "\u0427\u0430\u0441" },
{ "field.minute", "\u041c\u0438\u043d\u0443\u0442\u0430" },
{ "field.second", "\u0421\u0435\u043a\u0443\u043d\u0434\u0430" },
{ "field.zone", "\u0437\u043e\u043d\u0430" },
};
}
}

@ -1,12 +1,12 @@
/*
* Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
@ -14,10 +14,10 @@
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do
* so, provided that (a) the above copyright notice(s) and this permission
* notice appear with all copies of the Data Files or Software, (b) both the
* above copyright notice(s) and this permission notice appear in associated
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
@ -27,19 +27,17 @@
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
* USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THE DATA FILES OR SOFTWARE.
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written
* authorization of the copyright holder.
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
// Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
package sun.text.resources.ms;
import java.util.ListResourceBundle;
@ -191,6 +189,71 @@ public class FormatData_ms extends ListResourceBundle {
"{1} {0}",
}
},
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE, d MMMM y G",
"d MMMM y G",
"dd/MM/y G",
"d/MM/y G",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE, d MMMM y G",
"d MMMM y G",
"dd/MM/y G",
"d/MM/y G",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE, d MMMM y G",
"d MMMM y G",
"dd/MM/y G",
"d/MM/y G",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, d MMMM y GGGG",
"d MMMM y GGGG",
"dd/MM/y GGGG",
"d/MM/y GGGG",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"EEEE, d MMMM y G",
"d MMMM y G",
"dd/MM/y G",
"d/MM/y G",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, d MMMM y GGGG",
"d MMMM y GGGG",
"dd/MM/y GGGG",
"d/MM/y GGGG",
}
},
{ "calendarname.islamic-civil", "Kalendar Sivil Islam" },
{ "calendarname.islamicc", "Kalendar Sivil Islam" },
{ "calendarname.islamic", "Kalendar Islam" },
{ "calendarname.buddhist", "Kalendar Buddha" },
{ "calendarname.japanese", "Kalendar Jepun" },
{ "calendarname.roc", "Kalendar Minguo" },
{ "calendarname.gregorian", "Kalendar Gregory" },
{ "calendarname.gregory", "Kalendar Gregory" },
{ "field.year", "Tahun" },
{ "field.month", "Bulan" },
{ "field.week", "Minggu" },
{ "field.weekday", "Hari dalam Minggu" },
{ "field.dayperiod", "PG/PTG" },
{ "field.hour", "Jam" },
{ "field.minute", "Minit" },
{ "field.second", "Kedua" },
{ "field.zone", "Zon Waktu" },
};
}
}

@ -1,12 +1,12 @@
/*
* Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
@ -14,10 +14,10 @@
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do
* so, provided that (a) the above copyright notice(s) and this permission
* notice appear with all copies of the Data Files or Software, (b) both the
* above copyright notice(s) and this permission notice appear in associated
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
@ -27,19 +27,17 @@
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
* USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THE DATA FILES OR SOFTWARE.
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written
* authorization of the copyright holder.
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
// Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
package sun.text.resources.mt;
import java.util.ListResourceBundle;
@ -169,6 +167,22 @@ public class FormatData_mt extends ListResourceBundle {
"{1} {0}",
}
},
{ "calendarname.islamic-civil", "Kalendarju Islamiku-\u010aivili" },
{ "calendarname.islamicc", "Kalendarju Islamiku-\u010aivili" },
{ "calendarname.islamic", "Kalendarju Islamiku" },
{ "calendarname.buddhist", "Kalendarju Buddist" },
{ "calendarname.japanese", "Kalendarju \u0120appuni\u017c" },
{ "calendarname.gregorian", "Kalendarju Gregorjan" },
{ "calendarname.gregory", "Kalendarju Gregorjan" },
{ "field.era", "Epoka" },
{ "field.year", "Sena" },
{ "field.month", "Xahar" },
{ "field.week", "\u0120img\u0127a" },
{ "field.weekday", "Jum tal-\u0120img\u0127a" },
{ "field.hour", "Sieg\u0127a" },
{ "field.minute", "Minuta" },
{ "field.second", "Sekonda" },
{ "field.zone", "\u017bona" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.nl;
import java.util.ListResourceBundle;
@ -158,6 +194,111 @@ public class FormatData_nl extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"d MMMM y G",
"d MMM y G",
"dd-MM-yy G",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"d MMMM y G",
"d MMM y G",
"dd-MM-yy GGGGG",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"d MMMM y G",
"d MMM y G",
"dd-MM-yy GGGGG",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE d MMMM y GGGG",
"d MMMM y GGGG",
"d MMM y GGGG",
"dd-MM-yy G",
}
},
{ "islamic.MonthNames",
new String[] {
"Moeharram",
"Safar",
"Rabi\u02bba al awal",
"Rabi\u02bba al thani",
"Joemad\u02bbal awal",
"Joemad\u02bbal thani",
"Rajab",
"Sja\u02bbaban",
"Ramadan",
"Sjawal",
"Doe al ka\u02bbaba",
"Doe al hizja",
"",
}
},
{ "islamic.MonthAbbreviations",
new String[] {
"Moeh.",
"Saf.",
"Rab. I",
"Rab. II",
"Joem. I",
"Joem. II",
"Raj.",
"Sja.",
"Ram.",
"Sjaw.",
"Doe al k.",
"Doe al h.",
"",
}
},
{ "islamic.Eras",
new String[] {
"",
"Sa\u02bbna Hizjria",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"d MMMM y G",
"d MMM y G",
"dd-MM-yy G",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE d MMMM y GGGG",
"d MMMM y GGGG",
"d MMM y GGGG",
"dd-MM-yy GGGG",
}
},
{ "calendarname.islamic-civil", "Islamitische kalender (cyclisch)" },
{ "calendarname.islamicc", "Islamitische kalender (cyclisch)" },
{ "calendarname.roc", "Kalender van de Chinese Republiek" },
{ "calendarname.islamic", "Islamitische kalender" },
{ "calendarname.buddhist", "Boeddhistische kalender" },
{ "calendarname.japanese", "Japanse kalender" },
{ "calendarname.gregorian", "Gregoriaanse kalender" },
{ "calendarname.gregory", "Gregoriaanse kalender" },
{ "field.era", "Tijdperk" },
{ "field.year", "Jaar" },
{ "field.month", "Maand" },
{ "field.weekday", "Dag van de week" },
{ "field.dayperiod", "AM/PM" },
{ "field.hour", "Uur" },
{ "field.minute", "Minuut" },
{ "field.second", "Seconde" },
{ "field.zone", "Zone" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.pl;
import java.util.ListResourceBundle;
@ -175,6 +211,71 @@ public class FormatData_pl extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE, G y MMMM dd",
"G y MMMM d",
"d MMM y G",
"dd.MM.yyyy G",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE, d MMMM, y G",
"d MMMM, y G",
"d MMM y G",
"dd.MM.yyyy G",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE, d MMMM, y G",
"d MMMM, y G",
"d MMM y G",
"dd.MM.yyyy G",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, d MMMM, y GGGG",
"d MMMM, y GGGG",
"d MMM y GGGG",
"dd.MM.yyyy GGGG",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"EEEE, d MMMM, y G",
"d MMMM, y G",
"d MMM y G",
"dd.MM.yyyy G",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, d MMMM, y GGGG",
"d MMMM, y GGGG",
"d MMM y GGGG",
"dd.MM.yyyy GGGG",
}
},
{ "calendarname.islamic-civil", "kalendarz islamski (metoda obliczeniowa)" },
{ "calendarname.islamicc", "kalendarz islamski (metoda obliczeniowa)" },
{ "calendarname.islamic", "kalendarz islamski (metoda wzrokowa)" },
{ "calendarname.japanese", "kalendarz japo\u0144ski" },
{ "calendarname.gregorian", "kalendarz gregoria\u0144ski" },
{ "calendarname.gregory", "kalendarz gregoria\u0144ski" },
{ "calendarname.roc", "kalendarz Republiki Chi\u0144skiej" },
{ "calendarname.buddhist", "kalendarz buddyjski" },
{ "field.era", "Era" },
{ "field.year", "Rok" },
{ "field.month", "Miesi\u0105c" },
{ "field.week", "Tydzie\u0144" },
{ "field.weekday", "Dzie\u0144 tygodnia" },
{ "field.hour", "Godzina" },
{ "field.minute", "Minuta" },
{ "field.second", "Sekunda" },
{ "field.zone", "Strefa" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.pt;
import java.util.ListResourceBundle;
@ -152,6 +188,64 @@ public class FormatData_pt extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE, G y MMMM dd",
"G y MMMM d",
"G y MMM d",
"d/M/yy",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE, d 'de' MMMM 'de' y G",
"d 'de' MMMM 'de' y G",
"dd/MM/yyyy G",
"d/M/yyyy",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, d 'de' MMMM 'de' y GGGG",
"d 'de' MMMM 'de' y GGGG",
"dd/MM/yyyy GGGG",
"d/M/yyyy",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"EEEE, d 'de' MMMM 'de' y G",
"d 'de' MMMM 'de' y G",
"dd/MM/yyyy G",
"d/M/yyyy",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, d 'de' MMMM 'de' y GGGG",
"d 'de' MMMM 'de' y GGGG",
"dd/MM/yyyy GGGG",
"d/M/yyyy",
}
},
{ "calendarname.islamic-civil", "Calend\u00e1rio Civil Isl\u00e2mico" },
{ "calendarname.islamicc", "Calend\u00e1rio Civil Isl\u00e2mico" },
{ "calendarname.islamic", "Calend\u00e1rio Isl\u00e2mico" },
{ "calendarname.japanese", "Calend\u00e1rio Japon\u00eas" },
{ "calendarname.gregorian", "Calend\u00e1rio Gregoriano" },
{ "calendarname.gregory", "Calend\u00e1rio Gregoriano" },
{ "calendarname.roc", "Calend\u00e1rio da Rep\u00fablica da China" },
{ "calendarname.buddhist", "Calend\u00e1rio Budista" },
{ "field.era", "Era" },
{ "field.year", "Ano" },
{ "field.month", "M\u00eas" },
{ "field.week", "Semana" },
{ "field.weekday", "Dia da semana" },
{ "field.dayperiod", "Per\u00edodo do dia" },
{ "field.hour", "Hora" },
{ "field.minute", "Minuto" },
{ "field.second", "Segundo" },
{ "field.zone", "Fuso" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.ro;
import java.util.ListResourceBundle;
@ -187,6 +223,32 @@ public class FormatData_ro extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE, G y MMMM dd",
"d MMMM y G",
"d MMM y G",
"d/M/yyyy",
}
},
{ "calendarname.islamic-civil", "calendar islamic civil" },
{ "calendarname.islamicc", "calendar islamic civil" },
{ "calendarname.roc", "calendar al Republicii Chineze" },
{ "calendarname.islamic", "calendar islamic" },
{ "calendarname.buddhist", "calendar budist" },
{ "calendarname.japanese", "calendar japonez" },
{ "calendarname.gregorian", "calendar gregorian" },
{ "calendarname.gregory", "calendar gregorian" },
{ "field.era", "er\u0103" },
{ "field.year", "an" },
{ "field.month", "lun\u0103" },
{ "field.week", "s\u0103pt\u0103m\u00e2n\u0103" },
{ "field.weekday", "zi a s\u0103pt\u0103m\u00e2nii" },
{ "field.dayperiod", "perioada zilei" },
{ "field.hour", "or\u0103" },
{ "field.minute", "minut" },
{ "field.second", "secund\u0103" },
{ "field.zone", "zon\u0103" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.ru;
import java.util.ListResourceBundle;
@ -203,6 +239,88 @@ public class FormatData_ru extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE, d MMMM y\u00a0'\u0433'. G",
"d MMMM y\u00a0'\u0433'. G",
"dd.MM.yyyy G",
"dd.MM.yy G",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE, d MMMM y\u00a0'\u0433'. G",
"d MMMM y\u00a0'\u0433'. G",
"dd.MM.yyyy G",
"dd.MM.yy G",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE, d MMMM y\u00a0'\u0433'. G",
"d MMMM y\u00a0'\u0433'. G",
"dd.MM.yyyy G",
"dd.MM.yy G",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, d MMMM y\u00a0'\u0433'. GGGG",
"d MMMM y\u00a0'\u0433'. GGGG",
"dd.MM.yyyy GGGG",
"dd.MM.yy GGGG",
}
},
{ "islamic.MonthNames",
new String[] {
"\u041c\u0443\u0445\u0430\u0440\u0440\u0430\u043c",
"\u0421\u0430\u0444\u0430\u0440",
"\u0420\u0430\u0431\u0438-\u0443\u043b\u044c-\u0430\u0432\u0432\u0430\u043b\u044c",
"\u0420\u0430\u0431\u0438-\u0443\u043b\u044c-\u0430\u0445\u0438\u0440",
"\u0414\u0436\u0443\u043c\u0430\u0434-\u0443\u043b\u044c-\u0430\u0432\u0432\u0430\u043b\u044c",
"\u0414\u0436\u0443\u043c\u0430\u0434-\u0443\u043b\u044c-\u0430\u0445\u0438\u0440",
"\u0420\u0430\u0434\u0436\u0430\u0431",
"\u0428\u0430\u0430\u0431\u0430\u043d",
"\u0420\u0430\u043c\u0430\u0434\u0430\u043d",
"\u0428\u0430\u0432\u0432\u0430\u043b\u044c",
"\u0417\u0443\u043b\u044c-\u041a\u0430\u0430\u0434\u0430",
"\u0417\u0443\u043b\u044c-\u0425\u0438\u0434\u0436\u0436\u0430",
"",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"EEEE, d MMMM y\u00a0'\u0433'. G",
"d MMMM y\u00a0'\u0433'. G",
"dd.MM.yyyy G",
"dd.MM.yy G",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, d MMMM y\u00a0'\u0433'. GGGG",
"d MMMM y\u00a0'\u0433'. GGGG",
"dd.MM.yyyy GGGG",
"dd.MM.yy GGGG",
}
},
{ "calendarname.islamic-civil", "\u0418\u0441\u043b\u0430\u043c\u0441\u043a\u0438\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0441\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c" },
{ "calendarname.islamicc", "\u0418\u0441\u043b\u0430\u043c\u0441\u043a\u0438\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0441\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c" },
{ "calendarname.islamic", "\u0418\u0441\u043b\u0430\u043c\u0441\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c" },
{ "calendarname.japanese", "\u042f\u043f\u043e\u043d\u0441\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c" },
{ "calendarname.gregorian", "\u0413\u0440\u0438\u0433\u043e\u0440\u0438\u0430\u043d\u0441\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c" },
{ "calendarname.gregory", "\u0413\u0440\u0438\u0433\u043e\u0440\u0438\u0430\u043d\u0441\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c" },
{ "calendarname.roc", "\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c" },
{ "calendarname.buddhist", "\u0411\u0443\u0434\u0434\u0438\u0439\u0441\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c" },
{ "field.era", "\u042d\u0440\u0430" },
{ "field.year", "\u0413\u043e\u0434" },
{ "field.month", "\u041c\u0435\u0441\u044f\u0446" },
{ "field.week", "\u041d\u0435\u0434\u0435\u043b\u044f" },
{ "field.weekday", "\u0414\u0435\u043d\u044c \u043d\u0435\u0434\u0435\u043b\u0438" },
{ "field.hour", "\u0427\u0430\u0441" },
{ "field.minute", "\u041c\u0438\u043d\u0443\u0442\u0430" },
{ "field.second", "\u0421\u0435\u043a\u0443\u043d\u0434\u0430" },
{ "field.zone", "\u0427\u0430\u0441\u043e\u0432\u043e\u0439 \u043f\u043e\u044f\u0441" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.sk;
import java.util.ListResourceBundle;
@ -192,6 +228,23 @@ public class FormatData_sk extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "calendarname.islamic-civil", "Islamsk\u00fd ob\u010diansky kalend\u00e1r" },
{ "calendarname.islamicc", "Islamsk\u00fd ob\u010diansky kalend\u00e1r" },
{ "calendarname.islamic", "Islamsk\u00fd kalend\u00e1r" },
{ "calendarname.buddhist", "Buddhistick\u00fd kalend\u00e1r" },
{ "calendarname.japanese", "Japonsk\u00fd kalend\u00e1r" },
{ "calendarname.gregorian", "Gregori\u00e1nsky kalend\u00e1r" },
{ "calendarname.gregory", "Gregori\u00e1nsky kalend\u00e1r" },
{ "field.era", "\u00c9ra" },
{ "field.year", "Rok" },
{ "field.month", "Mesiac" },
{ "field.week", "T\u00fd\u017ede\u0148" },
{ "field.weekday", "De\u0148 v t\u00fd\u017edni" },
{ "field.dayperiod", "\u010cas\u0165 d\u0148a" },
{ "field.hour", "Hodina" },
{ "field.minute", "Min\u00fata" },
{ "field.second", "Sekunda" },
{ "field.zone", "P\u00e1smo" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.sl;
import java.util.ListResourceBundle;
@ -175,6 +211,24 @@ public class FormatData_sl extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "calendarname.islamic-civil", "islamski civilni koledar" },
{ "calendarname.islamicc", "islamski civilni koledar" },
{ "calendarname.roc", "kitajski dr\u017eavni koledar" },
{ "calendarname.islamic", "islamski koledar" },
{ "calendarname.buddhist", "budisti\u010dni koledar" },
{ "calendarname.japanese", "japonski koledar" },
{ "calendarname.gregorian", "gregorijanski koledar" },
{ "calendarname.gregory", "gregorijanski koledar" },
{ "field.era", "Doba" },
{ "field.year", "Leto" },
{ "field.month", "Mesec" },
{ "field.week", "Teden" },
{ "field.weekday", "Dan v tednu" },
{ "field.dayperiod", "\u010cas dneva" },
{ "field.hour", "Ura" },
{ "field.minute", "Minuta" },
{ "field.second", "Sekunda" },
{ "field.zone", "Obmo\u010dje" },
};
}
}

@ -1,12 +1,12 @@
/*
* Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2006, 2013, Oracle and/or its affiliates. All rights reserved.
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
@ -14,10 +14,10 @@
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do
* so, provided that (a) the above copyright notice(s) and this permission
* notice appear with all copies of the Data Files or Software, (b) both the
* above copyright notice(s) and this permission notice appear in associated
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
@ -27,19 +27,17 @@
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
* USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THE DATA FILES OR SOFTWARE.
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written
* authorization of the copyright holder.
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
// Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
package sun.text.resources.sr;
import java.util.ListResourceBundle;
@ -176,6 +174,61 @@ public class FormatData_sr extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE, MMMM d, y G",
"MMMM d, y G",
"MMM d, y G",
"M/d/yy G",
}
},
{ "roc.Eras",
new String[] {
"\u041f\u0440\u0435 \u0420\u041a",
"\u0420\u041a",
}
},
{ "islamic.MonthNames",
new String[] {
"\u041c\u0443\u0440\u0430\u0445\u0430\u043c",
"\u0421\u0430\u0444\u0430\u0440",
"\u0420\u0430\u0431\u0438\u02bb I",
"\u0420\u0430\u0431\u0438\u02bb II",
"\u0408\u0443\u043c\u0430\u0434\u0430 I",
"\u0408\u0443\u043c\u0430\u0434\u0430 II",
"\u0420\u0430\u0452\u0430\u0431",
"\u0428\u0430\u02bb\u0431\u0430\u043d",
"\u0420\u0430\u043c\u0430\u0434\u0430\u043d",
"\u0428\u0430\u0432\u0430\u043b",
"\u0414\u0443\u02bb\u043b-\u041a\u0438\u02bb\u0434\u0430",
"\u0414\u0443\u02bb\u043b-\u0445\u0438\u0452\u0430",
"",
}
},
{ "islamic.Eras",
new String[] {
"",
"\u0410\u0425",
}
},
{ "calendarname.islamic-civil", "\u0418\u0441\u043b\u0430\u043c\u0441\u043a\u0438 \u0446\u0438\u0432\u0438\u043b\u043d\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.islamicc", "\u0418\u0441\u043b\u0430\u043c\u0441\u043a\u0438 \u0446\u0438\u0432\u0438\u043b\u043d\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.islamic", "\u0418\u0441\u043b\u0430\u043c\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.japanese", "\u0408\u0430\u043f\u0430\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.gregorian", "\u0413\u0440\u0435\u0433\u043e\u0440\u0438\u0458\u0430\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.gregory", "\u0413\u0440\u0435\u0433\u043e\u0440\u0438\u0458\u0430\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.roc", "\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440 \u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0435 \u041a\u0438\u043d\u0435" },
{ "calendarname.buddhist", "\u0411\u0443\u0434\u0438\u0441\u0442\u0438\u0447\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "field.era", "\u0435\u0440\u0430" },
{ "field.year", "\u0433\u043e\u0434\u0438\u043d\u0430" },
{ "field.month", "\u043c\u0435\u0441\u0435\u0446" },
{ "field.week", "\u043d\u0435\u0434\u0435\u0459\u0430" },
{ "field.weekday", "\u0434\u0430\u043d \u0443 \u043d\u0435\u0434\u0435\u0459\u0438" },
{ "field.dayperiod", "\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435/\u043f\u043e\u043f\u043e\u0434\u043d\u0435" },
{ "field.hour", "\u0447\u0430\u0441" },
{ "field.minute", "\u043c\u0438\u043d\u0443\u0442" },
{ "field.second", "\u0441\u0435\u043a\u0443\u043d\u0434" },
{ "field.zone", "\u0437\u043e\u043d\u0430" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.sv;
import java.util.ListResourceBundle;
@ -198,6 +234,78 @@ public class FormatData_sv extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"d MMMM y G",
"d MMM y G",
"G yyyy-MM-dd",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"d MMMM y G",
"d MMM y G",
"G y-MM-dd",
}
},
{ "roc.Eras",
new String[] {
"f\u00f6re R.K.",
"R.K.",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"d MMMM y G",
"d MMM y G",
"G y-MM-dd",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE d MMMM y GGGG",
"d MMMM y GGGG",
"d MMM y GGGG",
"GGGG y-MM-dd",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"EEEE d MMMM y G",
"d MMMM y G",
"d MMM y G",
"G y-MM-dd",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE d MMMM y GGGG",
"d MMMM y GGGG",
"d MMM y GGGG",
"GGGG y-MM-dd",
}
},
{ "calendarname.islamic-civil", "islamisk civil kalender" },
{ "calendarname.islamicc", "islamisk civil kalender" },
{ "calendarname.islamic", "islamisk kalender" },
{ "calendarname.japanese", "japansk kalender" },
{ "calendarname.gregorian", "gregoriansk kalender" },
{ "calendarname.gregory", "gregoriansk kalender" },
{ "calendarname.roc", "kinesiska republikens kalender" },
{ "calendarname.buddhist", "buddistisk kalender" },
{ "field.era", "era" },
{ "field.year", "\u00e5r" },
{ "field.month", "m\u00e5nad" },
{ "field.week", "vecka" },
{ "field.weekday", "veckodag" },
{ "field.dayperiod", "fm/em" },
{ "field.hour", "timme" },
{ "field.minute", "minut" },
{ "field.second", "sekund" },
{ "field.zone", "tidszon" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.th;
import java.util.ListResourceBundle;
@ -182,6 +218,14 @@ public class FormatData_th extends ListResourceBundle {
{ "buddhist.TimePatterns",
timePatterns
},
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE\u0e17\u0e35\u0e48 d MMMM G y",
"d MMMM y",
"d MMM y",
"d/M/yyyy",
}
},
{ "buddhist.DatePatterns",
datePatterns
},
@ -198,6 +242,77 @@ public class FormatData_th extends ListResourceBundle {
dateTimePatterns
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE\u0e17\u0e35\u0e48 d MMMM \u0e1b\u0e35G\u0e17\u0e35\u0e48 y",
"d MMMM \u0e1b\u0e35G y",
"d MMM G y",
"d/M/yy",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE\u0e17\u0e35\u0e48 d MMMM \u0e1b\u0e35G\u0e17\u0e35\u0e48 y",
"d MMMM \u0e1b\u0e35G y",
"d MMM G y",
"d/M/yy",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE\u0e17\u0e35\u0e48 d MMMM \u0e1b\u0e35GGGG\u0e17\u0e35\u0e48 y",
"d MMMM \u0e1b\u0e35GGGG y",
"d MMM GGGG y",
"d/M/yy",
}
},
{ "islamic.MonthNames",
new String[] {
"\u0e21\u0e38\u0e2e\u0e30\u0e23\u0e4c\u0e23\u0e2d\u0e21",
"\u0e0b\u0e2d\u0e1f\u0e32\u0e23\u0e4c",
"\u0e23\u0e2d\u0e1a\u0e35 I",
"\u0e23\u0e2d\u0e1a\u0e35 II",
"\u0e08\u0e38\u0e21\u0e32\u0e14\u0e32 I",
"\u0e08\u0e38\u0e21\u0e32\u0e14\u0e32 II",
"\u0e23\u0e2d\u0e08\u0e31\u0e1a",
"\u0e0a\u0e30\u0e2d\u0e30\u0e1a\u0e32\u0e19",
"\u0e23\u0e2d\u0e21\u0e30\u0e14\u0e2d\u0e19",
"\u0e40\u0e0a\u0e32\u0e27\u0e31\u0e25",
"\u0e14\u0e2e\u0e38\u0e38\u0e2d\u0e31\u0e25\u0e01\u0e34\u0e14\u0e30\u0e2b\u0e4c",
"\u0e14\u0e2e\u0e38\u0e2d\u0e31\u0e25\u0e2e\u0e34\u0e08\u0e08\u0e30\u0e2b\u0e4c",
"",
}
},
{ "islamic.long.Eras",
new String[] {
"",
"\u0e2e\u0e34\u0e08\u0e40\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e28\u0e31\u0e01\u0e23\u0e32\u0e0a",
}
},
{ "islamic.Eras",
new String[] {
"",
"\u0e2e.\u0e28.",
}
},
{ "calendarname.islamic-civil", "\u0e1b\u0e0f\u0e34\u0e17\u0e34\u0e19\u0e2d\u0e34\u0e2a\u0e25\u0e32\u0e21\u0e0b\u0e35\u0e27\u0e34\u0e25" },
{ "calendarname.islamicc", "\u0e1b\u0e0f\u0e34\u0e17\u0e34\u0e19\u0e2d\u0e34\u0e2a\u0e25\u0e32\u0e21\u0e0b\u0e35\u0e27\u0e34\u0e25" },
{ "calendarname.islamic", "\u0e1b\u0e0f\u0e34\u0e17\u0e34\u0e19\u0e2d\u0e34\u0e2a\u0e25\u0e32\u0e21" },
{ "calendarname.japanese", "\u0e1b\u0e0f\u0e34\u0e17\u0e34\u0e19\u0e0d\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e19" },
{ "calendarname.gregorian", "\u0e1b\u0e0f\u0e34\u0e17\u0e34\u0e19\u0e40\u0e01\u0e23\u0e01\u0e2d\u0e40\u0e23\u0e35\u0e22\u0e19" },
{ "calendarname.gregory", "\u0e1b\u0e0f\u0e34\u0e17\u0e34\u0e19\u0e40\u0e01\u0e23\u0e01\u0e2d\u0e40\u0e23\u0e35\u0e22\u0e19" },
{ "calendarname.roc", "\u0e1b\u0e0f\u0e34\u0e17\u0e34\u0e19\u0e44\u0e15\u0e49\u0e2b\u0e27\u0e31\u0e19" },
{ "calendarname.buddhist", "\u0e1b\u0e0f\u0e34\u0e17\u0e34\u0e19\u0e1e\u0e38\u0e17\u0e18" },
{ "field.era", "\u0e2a\u0e21\u0e31\u0e22" },
{ "field.year", "\u0e1b\u0e35" },
{ "field.month", "\u0e40\u0e14\u0e37\u0e2d\u0e19" },
{ "field.week", "\u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c" },
{ "field.weekday", "\u0e27\u0e31\u0e19\u0e43\u0e19\u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c" },
{ "field.dayperiod", "\u0e0a\u0e48\u0e27\u0e07\u0e27\u0e31\u0e19" },
{ "field.hour", "\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07" },
{ "field.minute", "\u0e19\u0e32\u0e17\u0e35" },
{ "field.second", "\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35" },
{ "field.zone", "\u0e40\u0e02\u0e15" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.tr;
import java.util.ListResourceBundle;
@ -176,6 +212,89 @@ public class FormatData_tr extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"dd MMMM y G EEEE",
"dd MMMM y G",
"dd MMM y G",
"dd.MM.yyyy G",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"dd MMMM y G EEEE",
"dd MMMM y G",
"dd MMM y G",
"dd.MM.yyyy G",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"dd MMMM y G EEEE",
"dd MMMM y G",
"dd MMM y G",
"dd.MM.yyyy G",
}
},
{ "roc.DatePatterns",
new String[] {
"dd MMMM y GGGG EEEE",
"dd MMMM y GGGG",
"dd MMM y GGGG",
"dd.MM.yyyy GGGG",
}
},
{ "islamic.MonthNames",
new String[] {
"Muharrem",
"Safer",
"Rebi\u00fclevvel",
"Rebi\u00fclahir",
"Cemaziyelevvel",
"Cemaziyelahir",
"Recep",
"\u015eaban",
"Ramazan",
"\u015eevval",
"Zilkade",
"Zilhicce",
"",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"dd MMMM y G EEEE",
"dd MMMM y G",
"dd MMM y G",
"dd.MM.yyyy G",
}
},
{ "islamic.DatePatterns",
new String[] {
"dd MMMM y GGGG EEEE",
"dd MMMM y GGGG",
"dd MMM y GGGG",
"dd.MM.yyyy GGGG",
}
},
{ "calendarname.islamic-civil", "Arap Takvimi" },
{ "calendarname.islamicc", "Arap Takvimi" },
{ "calendarname.islamic", "Hicri Takvim" },
{ "calendarname.japanese", "Japon Takvimi" },
{ "calendarname.gregorian", "Miladi Takvim" },
{ "calendarname.gregory", "Miladi Takvim" },
{ "calendarname.roc", "\u00c7in Cumhuriyeti Takvimi" },
{ "calendarname.buddhist", "Budist Takvimi" },
{ "field.era", "Miladi D\u00f6nem" },
{ "field.year", "Y\u0131l" },
{ "field.month", "Ay" },
{ "field.week", "Hafta" },
{ "field.weekday", "Haftan\u0131n G\u00fcn\u00fc" },
{ "field.dayperiod", "AM/PM" },
{ "field.hour", "Saat" },
{ "field.minute", "Dakika" },
{ "field.second", "Saniye" },
{ "field.zone", "Saat Dilimi" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.uk;
import java.util.ListResourceBundle;
@ -192,6 +228,41 @@ public class FormatData_uk extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
{ "islamic.MonthNames",
new String[] {
"\u041c\u0443\u0445\u0430\u0440\u0440\u0430\u043c",
"\u0421\u0430\u0444\u0430\u0440",
"\u0420\u0430\u0431\u0456 I",
"\u0420\u0430\u0431\u0456 II",
"\u0414\u0436\u0443\u043c\u0430\u0434\u0430 I",
"\u0414\u0436\u0443\u043c\u0430\u0434\u0430 II",
"\u0420\u0430\u0434\u0436\u0430\u0431",
"\u0428\u0430\u0430\u0431\u0430\u043d",
"\u0420\u0430\u043c\u0430\u0434\u0430\u043d",
"\u0414\u0430\u0432\u0432\u0430\u043b",
"\u0417\u0443-\u043b\u044c-\u043a\u0430\u0430\u0434\u0430",
"\u0417\u0443-\u043b\u044c-\u0445\u0456\u0434\u0436\u0430",
"",
}
},
{ "calendarname.islamic-civil", "\u041c\u0443\u0441\u0443\u043b\u044c\u043c\u0430\u043d\u0441\u044c\u043a\u0438\u0439 \u0441\u0432\u0456\u0442\u0441\u044c\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.islamicc", "\u041c\u0443\u0441\u0443\u043b\u044c\u043c\u0430\u043d\u0441\u044c\u043a\u0438\u0439 \u0441\u0432\u0456\u0442\u0441\u044c\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.islamic", "\u041c\u0443\u0441\u0443\u043b\u044c\u043c\u0430\u043d\u0441\u044c\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.japanese", "\u042f\u043f\u043e\u043d\u0441\u044c\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.gregorian", "\u0413\u0440\u0438\u0433\u043e\u0440\u0456\u0430\u043d\u0441\u044c\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.gregory", "\u0413\u0440\u0438\u0433\u043e\u0440\u0456\u0430\u043d\u0441\u044c\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "calendarname.roc", "\u041a\u0438\u0442\u0430\u0439\u0441\u044c\u043a\u0438\u0439 \u0433\u0440\u0438\u0433\u043e\u0440\u0456\u0430\u043d\u0441\u044c\u043a\u0438\u0439" },
{ "calendarname.buddhist", "\u0411\u0443\u0434\u0434\u0456\u0439\u0441\u044c\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "field.era", "\u0415\u0440\u0430" },
{ "field.year", "\u0420\u0456\u043a" },
{ "field.month", "\u041c\u0456\u0441\u044f\u0446\u044c" },
{ "field.week", "\u0422\u0438\u0436\u0434\u0435\u043d\u044c" },
{ "field.weekday", "\u0414\u0435\u043d\u044c \u0442\u0438\u0436\u043d\u044f" },
{ "field.dayperiod", "\u0427\u0430\u0441\u0442\u0438\u043d\u0430 \u0434\u043e\u0431\u0438" },
{ "field.hour", "\u0413\u043e\u0434\u0438\u043d\u0430" },
{ "field.minute", "\u0425\u0432\u0438\u043b\u0438\u043d\u0430" },
{ "field.second", "\u0421\u0435\u043a\u0443\u043d\u0434\u0430" },
{ "field.zone", "\u0417\u043e\u043d\u0430" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -40,6 +40,42 @@
* http://oss.software.ibm.com/cvs/icu/icu/source/data/locales/vi.txt?rev=1.38
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.vi;
import java.util.ListResourceBundle;
@ -165,6 +201,72 @@ public class FormatData_vi extends ListResourceBundle {
"{0} {1}" // date-time pattern
}
},
{ "cldr.buddhist.DatePatterns",
new String[] {
"EEEE, 'ng\u00e0y' dd MMMM 'n\u0103m' y G",
"'Ng\u00e0y' dd 'th\u00e1ng' M 'n\u0103m' y G",
"dd-MM-yyyy G",
"dd/MM/yyyy G",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"EEEE, 'ng\u00e0y' dd MMMM 'n\u0103m' y G",
"'Ng\u00e0y' dd 'th\u00e1ng' M 'n\u0103m' y G",
"dd-MM-y G",
"dd/MM/y G",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"EEEE, 'ng\u00e0y' dd MMMM 'n\u0103m' y G",
"'Ng\u00e0y' dd 'th\u00e1ng' M 'n\u0103m' y G",
"dd-MM-y G",
"dd/MM/y G",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, 'ng\u00e0y' dd MMMM 'n\u0103m' y GGGG",
"'Ng\u00e0y' dd 'th\u00e1ng' M 'n\u0103m' y GGGG",
"dd-MM-y GGGG",
"dd/MM/y GGGG",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"EEEE, 'ng\u00e0y' dd MMMM 'n\u0103m' y G",
"'Ng\u00e0y' dd 'th\u00e1ng' M 'n\u0103m' y G",
"dd-MM-y G",
"dd/MM/y G",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, 'ng\u00e0y' dd MMMM 'n\u0103m' y GGGG",
"'Ng\u00e0y' dd 'th\u00e1ng' M 'n\u0103m' y GGGG",
"dd-MM-y GGGG",
"dd/MM/y GGGG",
}
},
{ "calendarname.islamic-civil", "L\u1ecbch Islamic-Civil" },
{ "calendarname.islamicc", "L\u1ecbch Islamic-Civil" },
{ "calendarname.islamic", "L\u1ecbch Islamic" },
{ "calendarname.buddhist", "L\u1ecbch Ph\u1eadt Gi\u00e1o" },
{ "calendarname.japanese", "L\u1ecbch Nh\u1eadt B\u1ea3n" },
{ "calendarname.roc", "L\u1ecbch Trung Hoa D\u00e2n Qu\u1ed1c" },
{ "calendarname.gregorian", "L\u1ecbch Gregory" },
{ "calendarname.gregory", "L\u1ecbch Gregory" },
{ "field.era", "Th\u1eddi \u0111\u1ea1i" },
{ "field.year", "N\u0103m" },
{ "field.month", "Th\u00e1ng" },
{ "field.week", "Tu\u1ea7n" },
{ "field.weekday", "Ng\u00e0y trong tu\u1ea7n" },
{ "field.dayperiod", "SA/CH" },
{ "field.hour", "Gi\u1edd" },
{ "field.minute", "Ph\u00fat" },
{ "field.second", "Gi\u00e2y" },
{ "field.zone", "M\u00fai gi\u1edd" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.zh;
import java.util.ListResourceBundle;
@ -165,6 +201,78 @@ public class FormatData_zh extends ListResourceBundle {
"{1} {0}" // date-time pattern
}
},
{ "cldr.buddhist.DatePatterns",
new String[] {
"Gy\u5e74M\u6708d\u65e5EEEE",
"Gy\u5e74M\u6708d\u65e5",
"Gyyyy-M-d",
"Gy-M-d",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"Gy\u5e74M\u6708d\u65e5EEEE",
"Gy\u5e74M\u6708d\u65e5",
"Gy\u5e74M\u6708d\u65e5",
"Gyy-MM-dd",
}
},
{ "roc.Eras",
new String[] {
"\u6c11\u56fd\u524d",
"\u6c11\u56fd",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"Gy\u5e74M\u6708d\u65e5EEEE",
"Gy\u5e74M\u6708d\u65e5",
"Gy-M-d",
"Gy-M-d",
}
},
{ "roc.DatePatterns",
new String[] {
"GGGGy\u5e74M\u6708d\u65e5EEEE",
"GGGGy\u5e74M\u6708d\u65e5",
"GGGGy-M-d",
"GGGGy-M-d",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"Gy\u5e74M\u6708d\u65e5EEEE",
"Gy\u5e74M\u6708d\u65e5",
"Gy\u5e74M\u6708d\u65e5",
"Gyy-MM-dd",
}
},
{ "islamic.DatePatterns",
new String[] {
"GGGGy\u5e74M\u6708d\u65e5EEEE",
"GGGGy\u5e74M\u6708d\u65e5",
"GGGGy\u5e74M\u6708d\u65e5",
"GGGGyy-MM-dd",
}
},
{ "calendarname.islamic-civil", "\u4f0a\u65af\u5170\u5e0c\u5409\u6765\u5386" },
{ "calendarname.islamicc", "\u4f0a\u65af\u5170\u5e0c\u5409\u6765\u5386" },
{ "calendarname.islamic", "\u4f0a\u65af\u5170\u65e5\u5386" },
{ "calendarname.japanese", "\u65e5\u672c\u65e5\u5386" },
{ "calendarname.gregorian", "\u516c\u5386" },
{ "calendarname.gregory", "\u516c\u5386" },
{ "calendarname.roc", "\u6c11\u56fd\u65e5\u5386" },
{ "calendarname.buddhist", "\u4f5b\u6559\u65e5\u5386" },
{ "field.era", "\u65f6\u671f" },
{ "field.year", "\u5e74" },
{ "field.month", "\u6708" },
{ "field.week", "\u5468" },
{ "field.weekday", "\u5468\u5929" },
{ "field.dayperiod", "\u4e0a\u5348/\u4e0b\u5348" },
{ "field.hour", "\u5c0f\u65f6" },
{ "field.minute", "\u5206\u949f" },
{ "field.second", "\u79d2\u949f" },
{ "field.zone", "\u533a\u57df" },
};
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -38,6 +38,42 @@
*
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
* the Terms of Use in http://www.unicode.org/copyright.html.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of the Unicode data files and any associated documentation (the "Data
* Files") or Unicode software and any associated documentation (the
* "Software") to deal in the Data Files or Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, and/or sell copies of the Data Files or Software, and
* to permit persons to whom the Data Files or Software are furnished to do so,
* provided that (a) the above copyright notice(s) and this permission notice
* appear with all copies of the Data Files or Software, (b) both the above
* copyright notice(s) and this permission notice appear in associated
* documentation, and (c) there is clear notice in each modified Data File or
* in the Software as well as in the documentation associated with the Data
* File(s) or Software that the data or software has been modified.
*
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THE DATA FILES OR SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall not
* be used in advertising or otherwise to promote the sale, use or other
* dealings in these Data Files or Software without prior written authorization
* of the copyright holder.
*/
package sun.text.resources.zh;
import java.util.ListResourceBundle;
@ -83,6 +119,77 @@ public class FormatData_zh_TW extends ListResourceBundle {
}
},
{ "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
{ "cldr.buddhist.DatePatterns",
new String[] {
"Gy\u5e74M\u6708d\u65e5EEEE",
"Gy\u5e74M\u6708d\u65e5",
"Gy/M/d",
"Gy/M/d",
}
},
{ "cldr.japanese.DatePatterns",
new String[] {
"Gy\u5e74M\u6708d\u65e5EEEE",
"Gy\u5e74M\u6708d\u65e5",
"Gy/M/d",
"Gy/M/d",
}
},
{ "roc.Eras",
new String[] {
"\u6c11\u570b\u524d",
"\u6c11\u570b",
}
},
{ "cldr.roc.DatePatterns",
new String[] {
"Gy\u5e74M\u6708d\u65e5EEEE",
"Gy\u5e74M\u6708d\u65e5",
"Gy/M/d",
"Gy/M/d",
}
},
{ "roc.DatePatterns",
new String[] {
"GGGGy\u5e74M\u6708d\u65e5EEEE",
"GGGGy\u5e74M\u6708d\u65e5",
"GGGGy/M/d",
"GGGGy/M/d",
}
},
{ "cldr.islamic.DatePatterns",
new String[] {
"Gy\u5e74M\u6708d\u65e5EEEE",
"Gy\u5e74M\u6708d\u65e5",
"Gy/M/d",
"Gy/M/d",
}
},
{ "islamic.DatePatterns",
new String[] {
"GGGGy\u5e74M\u6708d\u65e5EEEE",
"GGGGy\u5e74M\u6708d\u65e5",
"GGGGy/M/d",
"GGGGy/M/d",
}
},
{ "calendarname.islamic-civil", "\u4f0a\u65af\u862d\u57ce\u5e02\u66c6\u6cd5" },
{ "calendarname.islamicc", "\u4f0a\u65af\u862d\u57ce\u5e02\u66c6\u6cd5" },
{ "calendarname.islamic", "\u4f0a\u65af\u862d\u66c6\u6cd5" },
{ "calendarname.japanese", "\u65e5\u672c\u66c6\u6cd5" },
{ "calendarname.gregorian", "\u516c\u66c6" },
{ "calendarname.gregory", "\u516c\u66c6" },
{ "calendarname.roc", "\u6c11\u570b\u66c6" },
{ "calendarname.buddhist", "\u4f5b\u6559\u66c6\u6cd5" },
{ "field.era", "\u5e74\u4ee3" },
{ "field.year", "\u5e74" },
{ "field.month", "\u6708" },
{ "field.week", "\u9031" },
{ "field.weekday", "\u9031\u5929" },
{ "field.dayperiod", "\u4e0a\u5348/\u4e0b\u5348" },
{ "field.hour", "\u5c0f\u6642" },
{ "field.minute", "\u5206\u9418" },
{ "field.second", "\u79d2" },
};
}
}

@ -65,14 +65,27 @@ public class CalendarDataUtility {
public static String retrieveFieldValueName(String id, int field, int value, int style, Locale locale) {
LocaleServiceProviderPool pool =
LocaleServiceProviderPool.getPool(CalendarNameProvider.class);
return pool.getLocalizedObject(CalendarFieldValueNameGetter.INSTANCE, locale, id,
return pool.getLocalizedObject(CalendarFieldValueNameGetter.INSTANCE, locale, normalizeCalendarType(id),
field, value, style);
}
public static Map<String, Integer> retrieveFieldValueNames(String id, int field, int style, Locale locale) {
LocaleServiceProviderPool pool =
LocaleServiceProviderPool.getPool(CalendarNameProvider.class);
return pool.getLocalizedObject(CalendarFieldValueNamesMapGetter.INSTANCE, locale, id, field, style);
return pool.getLocalizedObject(CalendarFieldValueNamesMapGetter.INSTANCE, locale,
normalizeCalendarType(id), field, style);
}
private static String normalizeCalendarType(String requestID) {
String type;
if (requestID.equals("gregorian") || requestID.equals("iso8601")) {
type = "gregory";
} else if (requestID.startsWith("islamic")) {
type = "islamic";
} else {
type = requestID;
}
return type;
}
/**

@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -163,6 +163,8 @@ public class CalendarNameProviderImpl extends CalendarNameProvider implements Av
case "buddhist":
case "japanese":
case "gregory":
case "islamic":
case "roc":
break;
default:
// Unknown calendar type
@ -239,6 +241,9 @@ public class CalendarNameProviderImpl extends CalendarNameProvider implements Av
break;
case MONTH:
if ("islamic".equals(type)) {
key.append(type).append('.');
}
if (isStandalone) {
key.append("standalone.");
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -387,6 +387,15 @@ public class LocaleResources {
return numberPatterns;
}
/**
* Returns the FormatData resource bundle of this LocaleResources.
* The FormatData should be used only for accessing extra
* resources required by JSR 310.
*/
public ResourceBundle getFormatData() {
return localeData.getDateFormatData(locale);
}
private String getDateTimePattern(String key, int styleIndex, String calendarType) {
String resourceKey = "gregory".equals(calendarType) ? key : calendarType + "." + key;
String cacheKey = DATE_TIME_PATTERN + resourceKey;

@ -0,0 +1,178 @@
/*
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 8004489 8006509
* @compile -XDignore.symbol.file CldrFormatNamesTest.java
* @run main/othervm -Djava.locale.providers=CLDR CldrFormatNamesTest
* @summary Unit test for CLDR FormatData resources
*/
import java.util.*;
import static java.util.Calendar.*;
import sun.util.locale.provider.*;
public class CldrFormatNamesTest {
private static final Locale ARABIC = new Locale("ar");
private static final Locale ZH_HANT = Locale.forLanguageTag("zh-Hant");
/*
* The first element is a Locale followed by key-value pairs
* in a FormatData resource bundle. The value type is either
* String or String[].
*/
static final Object[][] CLDR_DATA = {
{
Locale.JAPAN,
"field.zone", "\u30bf\u30a4\u30e0\u30be\u30fc\u30f3",
"cldr.japanese.DatePatterns", new String[] {
"Gy\u5e74M\u6708d\u65e5EEEE",
"Gy\u5e74M\u6708d\u65e5",
"Gy\u5e74M\u6708d\u65e5",
"Gyy/MM/dd",
},
"cldr.roc.DatePatterns", new String[] {
"Gy\u5e74M\u6708d\u65e5EEEE",
"Gy\u5e74M\u6708d\u65e5",
"Gy/MM/dd",
"Gy/MM/dd",
},
"calendarname.buddhist", "\u30bf\u30a4\u4ecf\u6559\u66a6",
},
{
Locale.PRC,
"field.zone", "\u533a\u57df",
"cldr.islamic.DatePatterns", new String[] {
"Gy\u5e74M\u6708d\u65e5EEEE",
"Gy\u5e74M\u6708d\u65e5",
"Gy\u5e74M\u6708d\u65e5",
"Gyy-MM-dd",
},
"calendarname.islamic", "\u4f0a\u65af\u5170\u65e5\u5386",
},
{
Locale.GERMANY,
"field.dayperiod", "Tagesh\u00e4lfte",
"cldr.islamic.DatePatterns", new String[] {
"EEEE d. MMMM y G",
"d. MMMM y G",
"d. MMM y G",
"d.M.y G",
},
"calendarname.islamic", "Islamischer Kalender",
},
};
// Islamic calendar symbol names in ar
private static final String[] ISLAMIC_MONTH_NAMES = {
"\u0645\u062d\u0631\u0645",
"\u0635\u0641\u0631",
"\u0631\u0628\u064a\u0639 \u0627\u0644\u0623\u0648\u0644",
"\u0631\u0628\u064a\u0639 \u0627\u0644\u0622\u062e\u0631",
"\u062c\u0645\u0627\u062f\u0649 \u0627\u0644\u0623\u0648\u0644\u0649",
"\u062c\u0645\u0627\u062f\u0649 \u0627\u0644\u0622\u062e\u0631\u0629",
"\u0631\u062c\u0628",
"\u0634\u0639\u0628\u0627\u0646",
"\u0631\u0645\u0636\u0627\u0646",
"\u0634\u0648\u0627\u0644",
"\u0630\u0648 \u0627\u0644\u0642\u0639\u062f\u0629",
"\u0630\u0648 \u0627\u0644\u062d\u062c\u0629",
};
private static final String[] ISLAMIC_ERA_NAMES = {
"",
"\u0647\u0640",
};
// Minguo calendar symbol names in zh_Hant
private static final String[] ROC_ERA_NAMES = {
"\u6c11\u570b\u524d",
"\u6c11\u570b",
};
private static int errors = 0;
// This test is CLDR data dependent.
public static void main(String[] args) {
for (Object[] data : CLDR_DATA) {
Locale locale = (Locale) data[0];
ResourceBundle rb = LocaleProviderAdapter.getResourceBundleBased()
.getLocaleResources(locale).getFormatData();
for (int i = 1; i < data.length; ) {
String key = (String) data[i++];
Object expected = data[i++];
if (rb.containsKey(key)) {
Object value = rb.getObject(key);
if (expected instanceof String) {
if (!expected.equals(value)) {
errors++;
System.err.printf("error: key='%s', got '%s' expected '%s'%n",
key, value, expected);
}
} else if (expected instanceof String[]) {
try {
if (!Arrays.equals((Object[]) value, (Object[]) expected)) {
errors++;
System.err.printf("error: key='%s', got '%s' expected '%s'%n",
key, Arrays.asList((Object[])value),
Arrays.asList((Object[])expected));
}
} catch (Exception e) {
errors++;
e.printStackTrace();
}
}
} else {
errors++;
System.err.println("No resource for " + key);
}
}
}
// test Islamic calendar names in Arabic
testSymbolNames(ARABIC, "islamic", ISLAMIC_MONTH_NAMES, MONTH, LONG, "month");
testSymbolNames(ARABIC, "islamic", ISLAMIC_ERA_NAMES, ERA, SHORT, "era");
// test ROC (Minguo) calendar names in zh-Hant
testSymbolNames(ZH_HANT, "roc", ROC_ERA_NAMES, ERA, SHORT, "era");
if (errors > 0) {
throw new RuntimeException("test failed");
}
}
private static void testSymbolNames(Locale locale, String calType, String[] expected,
int field, int style, String fieldName) {
for (int i = 0; i < expected.length; i++) {
String expt = expected[i];
String name = CalendarDataUtility.retrieveFieldValueName(calType, field, i, style, locale);
if (!expt.equals(name)) {
errors++;
System.err.printf("error: wrong %s %s name in %s: value=%d, got='%s', expected='%s'%n",
calType, fieldName, locale, i, name, expt);
}
}
}
}

File diff suppressed because it is too large Load Diff

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -34,7 +34,7 @@
* 6509039 6609737 6610748 6645271 6507067 6873931 6450945 6645268 6646611
* 6645405 6650730 6910489 6573250 6870908 6585666 6716626 6914413 6916787
* 6919624 6998391 7019267 7020960 7025837 7020583 7036905 7066203 7101495
* 7003124 7085757 7028073 7171028 7189611 8000983 7195759
* 7003124 7085757 7028073 7171028 7189611 8000983 7195759 8004489 8006509
* @summary Verify locale data
*
*/