8145136: Upgrade CLDR locale data

Reviewed-by: naoto, okutsu, peytoia
This commit is contained in:
Rachna Goel 2016-05-31 13:00:48 +09:00
parent e94656ce65
commit 48873ebc3f
882 changed files with 214994 additions and 118028 deletions

View File

@ -1,5 +1,5 @@
#
# Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2012, 2016, 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
@ -23,8 +23,8 @@
# questions.
#
CLDRVERSION := 27.0.0
CLDRSRCDIR := $(JDK_TOPDIR)/src/jdk.localedata/share/classes/sun/util/cldr/resources/$(subst .,_,$(CLDRVERSION))
CLDRVERSION := 29.0.0
CLDRSRCDIR := $(JDK_TOPDIR)/src/jdk.localedata/share/classes/sun/util/cldr/resources/common
GENSRC_BASEDIR := $(SUPPORT_OUTPUTDIR)/gensrc/java.base
GENSRC_DIR := $(SUPPORT_OUTPUTDIR)/gensrc/jdk.localedata

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2016, 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
@ -284,6 +284,7 @@ class Bundle {
handleMultipleInheritance(myMap, parentsMap, calendarPrefix + "DayNarrows");
handleMultipleInheritance(myMap, parentsMap, calendarPrefix + "AmPmMarkers");
handleMultipleInheritance(myMap, parentsMap, calendarPrefix + "narrow.AmPmMarkers");
handleMultipleInheritance(myMap, parentsMap, calendarPrefix + "abbreviated.AmPmMarkers");
handleMultipleInheritance(myMap, parentsMap, calendarPrefix + "QuarterNames");
handleMultipleInheritance(myMap, parentsMap, calendarPrefix + "QuarterAbbreviations");
handleMultipleInheritance(myMap, parentsMap, calendarPrefix + "QuarterNarrows");

View File

@ -59,6 +59,7 @@ public class CLDRConverter {
private static String SPPL_SOURCE_FILE;
private static String NUMBERING_SOURCE_FILE;
private static String METAZONES_SOURCE_FILE;
private static String LIKELYSUBTAGS_SOURCE_FILE;
static String DESTINATION_DIR = "build/gensrc";
static final String LOCALE_NAME_PREFIX = "locale.displayname.";
@ -71,6 +72,7 @@ public class CLDRConverter {
static final String PARENT_LOCALE_PREFIX = "parentLocale.";
private static SupplementDataParseHandler handlerSuppl;
private static LikelySubtagsParseHandler handlerLikelySubtags;
static NumberingSystemsParseHandler handlerNumbering;
static MetaZonesParseHandler handlerMetaZones;
private static BundleGenerator bundleGenerator;
@ -196,12 +198,13 @@ public class CLDRConverter {
}
// Set up path names
LOCAL_LDML_DTD = CLDR_BASE + "common/dtd/ldml.dtd";
LOCAL_SPPL_LDML_DTD = CLDR_BASE + "common/dtd/ldmlSupplemental.dtd";
SOURCE_FILE_DIR = CLDR_BASE + "common/main";
SPPL_SOURCE_FILE = CLDR_BASE + "common/supplemental/supplementalData.xml";
NUMBERING_SOURCE_FILE = CLDR_BASE + "common/supplemental/numberingSystems.xml";
METAZONES_SOURCE_FILE = CLDR_BASE + "common/supplemental/metaZones.xml";
LOCAL_LDML_DTD = CLDR_BASE + "/dtd/ldml.dtd";
LOCAL_SPPL_LDML_DTD = CLDR_BASE + "/dtd/ldmlSupplemental.dtd";
SOURCE_FILE_DIR = CLDR_BASE + "/main";
SPPL_SOURCE_FILE = CLDR_BASE + "/supplemental/supplementalData.xml";
LIKELYSUBTAGS_SOURCE_FILE = CLDR_BASE + "/supplemental/likelySubtags.xml";
NUMBERING_SOURCE_FILE = CLDR_BASE + "/supplemental/numberingSystems.xml";
METAZONES_SOURCE_FILE = CLDR_BASE + "/supplemental/metaZones.xml";
if (BASE_LOCALES.isEmpty()) {
setupBaseLocales("en-US");
@ -220,8 +223,8 @@ public class CLDRConverter {
errout("Usage: java CLDRConverter [options]%n"
+ "\t-help output this usage message and exit%n"
+ "\t-verbose output information%n"
+ "\t-draft [approved | provisional | unconfirmed]%n"
+ "\t\t draft level for using data (default: approved)%n"
+ "\t-draft [contributed | approved | provisional | unconfirmed]%n"
+ "\t\t draft level for using data (default: contributed)%n"
+ "\t-base dir base directory for CLDR input files%n"
+ "\t-basemodule generates bundles that go into java.base module%n"
+ "\t-baselocales loc(,loc)* locales that go into the base module%n"
@ -379,7 +382,6 @@ public class CLDRConverter {
});
// Parse numberingSystems to get digit zero character information.
info("..... Parsing numberingSystem.xml .....");
SAXParserFactory numberingParser = SAXParserFactory.newInstance();
numberingParser.setValidating(true);
SAXParser parserNumbering = numberingParser.newSAXParser();
@ -396,7 +398,17 @@ public class CLDRConverter {
enableFileAccess(parserMetaZones);
handlerMetaZones = new MetaZonesParseHandler();
File fileMetaZones = new File(METAZONES_SOURCE_FILE);
parserNumbering.parse(fileMetaZones, handlerMetaZones);
parserMetaZones.parse(fileMetaZones, handlerMetaZones);
// Parse likelySubtags
info("..... Parsing likelySubtags.xml .....");
SAXParserFactory likelySubtagsParser = SAXParserFactory.newInstance();
likelySubtagsParser.setValidating(true);
SAXParser parserLikelySubtags = likelySubtagsParser.newSAXParser();
enableFileAccess(parserLikelySubtags);
handlerLikelySubtags = new LikelySubtagsParseHandler();
File fileLikelySubtags = new File(LIKELYSUBTAGS_SOURCE_FILE);
parserLikelySubtags.parse(fileLikelySubtags, handlerLikelySubtags);
}
private static void convertBundles(List<Bundle> bundles) throws Exception {
@ -434,6 +446,7 @@ public class CLDRConverter {
Map<String, Object> localeNamesMap = extractLocaleNames(targetMap, bundle.getID());
if (!localeNamesMap.isEmpty() || bundle.isRoot()) {
metaInfo.get("LocaleNames").add(toLanguageTag(bundle.getID()));
addLikelySubtags(metaInfo, "LocaleNames", bundle.getID());
bundleGenerator.generateBundle("util", "LocaleNames", bundle.getJavaID(), true, localeNamesMap, BundleType.OPEN);
}
}
@ -441,6 +454,7 @@ public class CLDRConverter {
Map<String, Object> currencyNamesMap = extractCurrencyNames(targetMap, bundle.getID(), bundle.getCurrencies());
if (!currencyNamesMap.isEmpty() || bundle.isRoot()) {
metaInfo.get("CurrencyNames").add(toLanguageTag(bundle.getID()));
addLikelySubtags(metaInfo, "CurrencyNames", bundle.getID());
bundleGenerator.generateBundle("util", "CurrencyNames", bundle.getJavaID(), true, currencyNamesMap, BundleType.OPEN);
}
}
@ -448,6 +462,7 @@ public class CLDRConverter {
Map<String, Object> zoneNamesMap = extractZoneNames(targetMap, bundle.getID());
if (!zoneNamesMap.isEmpty() || bundle.isRoot()) {
metaInfo.get("TimeZoneNames").add(toLanguageTag(bundle.getID()));
addLikelySubtags(metaInfo, "TimeZoneNames", bundle.getID());
bundleGenerator.generateBundle("util", "TimeZoneNames", bundle.getJavaID(), true, zoneNamesMap, BundleType.TIMEZONE);
}
}
@ -455,6 +470,7 @@ public class CLDRConverter {
Map<String, Object> calendarDataMap = extractCalendarData(targetMap, bundle.getID());
if (!calendarDataMap.isEmpty() || bundle.isRoot()) {
metaInfo.get("CalendarData").add(toLanguageTag(bundle.getID()));
addLikelySubtags(metaInfo, "CalendarData", bundle.getID());
bundleGenerator.generateBundle("util", "CalendarData", bundle.getJavaID(), true, calendarDataMap, BundleType.PLAIN);
}
}
@ -462,12 +478,14 @@ public class CLDRConverter {
Map<String, Object> formatDataMap = extractFormatData(targetMap, bundle.getID());
if (!formatDataMap.isEmpty() || bundle.isRoot()) {
metaInfo.get("FormatData").add(toLanguageTag(bundle.getID()));
addLikelySubtags(metaInfo, "FormatData", bundle.getID());
bundleGenerator.generateBundle("text", "FormatData", bundle.getJavaID(), true, formatDataMap, BundleType.PLAIN);
}
}
// For AvailableLocales
metaInfo.get("AvailableLocales").add(toLanguageTag(bundle.getID()));
addLikelySubtags(metaInfo, "AvailableLocales", bundle.getID());
}
bundleGenerator.generateMetaInfo(metaInfo);
@ -664,6 +682,7 @@ public class CLDRConverter {
"standalone.QuarterNarrows",
"AmPmMarkers",
"narrow.AmPmMarkers",
"abbreviated.AmPmMarkers",
"long.Eras",
"Eras",
"narrow.Eras",
@ -817,6 +836,14 @@ public class CLDRConverter {
return loc.toLanguageTag();
}
private static void addLikelySubtags(Map<String, SortedSet<String>> metaInfo, String category, String id) {
String likelySubtag = handlerLikelySubtags.get(id);
if (likelySubtag != null) {
// Remove Script for now
metaInfo.get(category).add(toLanguageTag(likelySubtag).replaceFirst("-[A-Z][a-z]{3}", ""));
}
}
private static String toLocaleName(String tag) {
if (tag.indexOf('-') == -1) {
return tag;
@ -830,7 +857,7 @@ public class CLDRConverter {
.map(l -> Control.getControl(Control.FORMAT_DEFAULT)
.getCandidateLocales("", l))
.forEach(BASE_LOCALES::addAll);
}
}
// applying parent locale rules to the passed candidates list
// This has to match with the one in sun.util.cldr.CLDRLocaleProviderAdapter

View File

@ -290,6 +290,9 @@ class LDMLParseHandler extends AbstractLDMLHandler<Object> {
case "narrow":
pushStringArrayEntry(qName, attributes, "narrow.AmPmMarkers/" + getContainerKey(), 2);
break;
case "abbreviated":
pushStringArrayEntry(qName, attributes, "abbreviated.AmPmMarkers/" + getContainerKey(), 2);
break;
default:
pushIgnoredContainer(qName);
break;
@ -460,6 +463,15 @@ class LDMLParseHandler extends AbstractLDMLHandler<Object> {
pushIgnoredContainer(qName);
}
break;
case "currencyFormatLength":
if (attributes.getValue("type") == null) {
// skipping type="short" data
// for FormatData
pushContainer(qName, attributes);
} else {
pushIgnoredContainer(qName);
}
break;
case "currencyFormat":
// for FormatData
// copy string for later assembly into NumberPatterns
@ -750,7 +762,7 @@ class LDMLParseHandler extends AbstractLDMLHandler<Object> {
keyName = "narrow.AmPmMarkers/" + context;
break;
case "abbreviated":
keyName = "";
keyName = "abbreviated.AmPmMarkers/" + context;
break;
}
break;

View File

@ -0,0 +1,71 @@
/*
* Copyright (c) 2016, 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.
*/
package build.tools.cldrconverter;
import java.io.File;
import java.io.IOException;
import org.xml.sax.Attributes;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
/**
* Handles parsing of files in Locale Data Markup Language for likelySubtags.xml
* and produces a map that uses the keys and values of JRE locale data.
*/
class LikelySubtagsParseHandler extends AbstractLDMLHandler<String> {
LikelySubtagsParseHandler() {
}
@Override
public InputSource resolveEntity(String publicID, String systemID) throws IOException, SAXException {
// avoid HTTP traffic to unicode.org
if (systemID.startsWith(CLDRConverter.SPPL_LDML_DTD_SYSTEM_ID)) {
return new InputSource((new File(CLDRConverter.LOCAL_SPPL_LDML_DTD)).toURI().toString());
}
return null;
}
@Override
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
switch (qName) {
case "likelySubtag":
// eg, <likelySubtag from="aa" to="aa_Latn_ET"/>
String from = attributes.getValue("from");
if (!from.startsWith("und")) {
// Ignore the "undefined" language for now
put(from, attributes.getValue("to"));
}
pushIgnoredContainer(qName);
break;
default:
// treat anything else as a container
pushContainer(qName, attributes);
break;
}
}
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -132,12 +132,6 @@ public class JavaTimeSupplementary extends OpenListResourceBundle {
"Year" },
{ "field.zone",
"Zone" },
{ "islamic.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "islamic.DatePatterns",
new String[] {
"GGGG y MMMM d, EEEE",
@ -245,18 +239,18 @@ public class JavaTimeSupplementary extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "islamic.long.Eras",
new String[] {
"",
"AH",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "islamic.narrow.Eras",
new String[] {
"",
@ -387,35 +381,35 @@ public class JavaTimeSupplementary extends OpenListResourceBundle {
},
{ "roc.MonthAbbreviations",
new String[] {
"M01",
"M02",
"M03",
"M04",
"M05",
"M06",
"M07",
"M08",
"M09",
"M10",
"M11",
"M12",
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec",
"",
}
},
{ "roc.MonthNames",
new String[] {
"M01",
"M02",
"M03",
"M04",
"M05",
"M06",
"M07",
"M08",
"M09",
"M10",
"M11",
"M12",
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec",
"",
}
},
@ -445,6 +439,12 @@ public class JavaTimeSupplementary extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "roc.long.Eras",
new String[] {
"Before R.O.C.",
@ -453,8 +453,8 @@ public class JavaTimeSupplementary extends OpenListResourceBundle {
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a",
"p",
"AM",
"PM",
}
},
{ "roc.narrow.Eras",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -99,8 +99,30 @@ public class JavaTimeSupplementary_en extends OpenListResourceBundle {
"Minguo Calendar" },
{ "field.dayperiod",
"AM/PM" },
{ "field.era",
"era" },
{ "field.hour",
"hour" },
{ "field.minute",
"minute" },
{ "field.month",
"month" },
{ "field.second",
"second" },
{ "field.week",
"week" },
{ "field.weekday",
"day of the week" },
{ "field.year",
"year" },
{ "field.zone",
"Time Zone" },
"time zone" },
{ "islamic.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, MMMM d, y GGGG",
@ -144,6 +166,12 @@ public class JavaTimeSupplementary_en extends OpenListResourceBundle {
"h:mm a",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "java.time.buddhist.DatePatterns",
new String[] {
"EEEE, MMMM d, y G",
@ -224,23 +252,6 @@ public class JavaTimeSupplementary_en extends OpenListResourceBundle {
"Minguo",
}
},
{ "roc.MonthAbbreviations",
new String[] {
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec",
"",
}
},
{ "roc.MonthNames",
new String[] {
"January",
@ -305,6 +316,12 @@ public class JavaTimeSupplementary_en extends OpenListResourceBundle {
"Minguo",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "roc.narrow.Eras",
new String[] {
"Before R.O.C.",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -273,6 +273,12 @@ public class JavaTimeSupplementary_ar extends OpenListResourceBundle {
"h:mm a",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"\u0635",
"\u0645",
}
},
{ "islamic.long.Eras",
new String[] {
"",
@ -499,6 +505,12 @@ public class JavaTimeSupplementary_ar extends OpenListResourceBundle {
"h:mm a",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"\u0635",
"\u0645",
}
},
{ "roc.long.Eras",
new String[] {
"Before R.O.C.",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -90,17 +90,19 @@ public class JavaTimeSupplementary_be extends OpenListResourceBundle {
}
},
{ "calendarname.buddhist",
"\u0431\u0443\u0434\u044b\u0441\u0446\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
"\u0431\u0443\u0434\u044b\u0439\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" },
"\u0433\u0440\u044b\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" },
"\u0433\u0440\u044b\u0433\u0430\u0440\u044b\u044f\u043d\u0441\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.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.japanese",
"\u044f\u043f\u043e\u043d\u0441\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
{ "calendarname.roc",
"\u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440 \u041c\u0456\u043d\u044c\u0433\u043e" },
{ "field.dayperiod",
"\u0414\u041f/\u041f\u041f" },
{ "field.era",
@ -119,10 +121,12 @@ public class JavaTimeSupplementary_be extends OpenListResourceBundle {
"\u0434\u0437\u0435\u043d\u044c \u0442\u044b\u0434\u043d\u044f" },
{ "field.year",
"\u0433\u043e\u0434" },
{ "field.zone",
"\u0447\u0430\u0441\u0430\u0432\u044b \u043f\u043e\u044f\u0441" },
{ "islamic.AmPmMarkers",
new String[] {
"\u0434\u0430 \u043f\u0430\u043b\u0443\u0434\u043d\u044f",
"\u043f\u0430\u0441\u043b\u044f \u043f\u0430\u043b\u0443\u0434\u043d\u044f",
"\u0434\u0430 \u043f\u0430\u045e\u0434\u043d\u044f",
"\u043f\u0430\u0441\u043b\u044f \u043f\u0430\u045e\u0434\u043d\u044f",
}
},
{ "islamic.DatePatterns",
@ -182,6 +186,14 @@ public class JavaTimeSupplementary_be extends OpenListResourceBundle {
"4-\u0442\u044b \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
}
},
{ "islamic.QuarterNarrows",
new String[] {
"1",
"2",
"3",
"4",
}
},
{ "islamic.TimePatterns",
new String[] {
"HH.mm.ss zzzz",
@ -190,6 +202,18 @@ public class JavaTimeSupplementary_be extends OpenListResourceBundle {
"HH.mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"\u0440\u0430\u043d\u0456\u0446\u044b",
"\u0432\u0435\u0447\u0430\u0440\u0430",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"\u0440\u0430\u043d.",
"\u0432\u0435\u0447.",
}
},
{ "java.time.buddhist.DatePatterns",
new String[] {
"EEEE, d MMMM y G",
@ -216,8 +240,8 @@ public class JavaTimeSupplementary_be extends OpenListResourceBundle {
},
{ "java.time.long.Eras",
new String[] {
"\u0434\u0430 \u043d.\u044d.",
"\u043d.\u044d.",
"\u0434\u0430 \u043d\u0430\u0448\u0430\u0439 \u044d\u0440\u044b",
"\u043d\u0430\u0448\u0430\u0439 \u044d\u0440\u044b",
}
},
{ "java.time.roc.DatePatterns",
@ -236,8 +260,8 @@ public class JavaTimeSupplementary_be extends OpenListResourceBundle {
},
{ "roc.AmPmMarkers",
new String[] {
"\u0434\u0430 \u043f\u0430\u043b\u0443\u0434\u043d\u044f",
"\u043f\u0430\u0441\u043b\u044f \u043f\u0430\u043b\u0443\u0434\u043d\u044f",
"\u0434\u0430 \u043f\u0430\u045e\u0434\u043d\u044f",
"\u043f\u0430\u0441\u043b\u044f \u043f\u0430\u045e\u0434\u043d\u044f",
}
},
{ "roc.DatePatterns",
@ -356,6 +380,18 @@ public class JavaTimeSupplementary_be extends OpenListResourceBundle {
"HH.mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"\u0440\u0430\u043d\u0456\u0446\u044b",
"\u0432\u0435\u0447\u0430\u0440\u0430",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"\u0440\u0430\u043d.",
"\u0432\u0435\u0447.",
}
},
};
}
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -219,6 +219,12 @@ public class JavaTimeSupplementary_bg extends OpenListResourceBundle {
"H:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"\u043f\u0440.\u043e\u0431.",
"\u0441\u043b.\u043e\u0431.",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"\u043f\u0440.\u043e\u0431.",
@ -318,18 +324,18 @@ public class JavaTimeSupplementary_bg extends OpenListResourceBundle {
},
{ "roc.MonthAbbreviations",
new String[] {
"\u044f\u043d.",
"\u0444\u0435\u0432\u0440.",
"\u044f\u043d\u0443",
"\u0444\u0435\u0432",
"\u043c\u0430\u0440\u0442",
"\u0430\u043f\u0440.",
"\u0430\u043f\u0440",
"\u043c\u0430\u0439",
"\u044e\u043d\u0438",
"\u044e\u043b\u0438",
"\u0430\u0432\u0433.",
"\u0441\u0435\u043f\u0442.",
"\u043e\u043a\u0442.",
"\u043d\u043e\u0435\u043c.",
"\u0434\u0435\u043a.",
"\u0430\u0432\u0433",
"\u0441\u0435\u043f",
"\u043e\u043a\u0442",
"\u043d\u043e\u0435",
"\u0434\u0435\u043a",
"",
}
},
@ -391,6 +397,12 @@ public class JavaTimeSupplementary_bg extends OpenListResourceBundle {
"H:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"\u043f\u0440.\u043e\u0431.",
"\u0441\u043b.\u043e\u0431.",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"\u043f\u0440.\u043e\u0431.",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -122,7 +122,7 @@ public class JavaTimeSupplementary_ca extends OpenListResourceBundle {
{ "field.year",
"any" },
{ "field.zone",
"zona" },
"fus horari" },
{ "islamic.AmPmMarkers",
new String[] {
"a. m.",
@ -133,8 +133,8 @@ public class JavaTimeSupplementary_ca extends OpenListResourceBundle {
new String[] {
"EEEE d MMMM 'de' y GGGG",
"d MMMM 'de' y GGGG",
"dd/MM/y GGGG",
"dd/MM/yy G",
"d/M/y GGGG",
"d/M/yy G",
}
},
{ "islamic.DayAbbreviations",
@ -202,10 +202,16 @@ public class JavaTimeSupplementary_ca extends OpenListResourceBundle {
"H:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"a. m.",
"p. m.",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
"a. m.",
"p. m.",
}
},
{ "java.time.buddhist.DatePatterns",
@ -232,16 +238,16 @@ public class JavaTimeSupplementary_ca extends OpenListResourceBundle {
new String[] {
"EEEE d MMMM 'de' y G",
"d MMMM 'de' y G",
"dd/MM/y G",
"dd/MM/yy GGGGG",
"d/M/y G",
"d/M/yy GGGGG",
}
},
{ "java.time.japanese.DatePatterns",
new String[] {
"EEEE d MMMM 'de' y G",
"d MMMM 'de' y G",
"dd/MM/y G",
"dd/MM/yy GGGGG",
"d/M/y G",
"d/M/yy GGGGG",
}
},
{ "java.time.long.Eras",
@ -386,10 +392,16 @@ public class JavaTimeSupplementary_ca extends OpenListResourceBundle {
"H:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"a. m.",
"p. m.",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
"a. m.",
"p. m.",
}
},
};

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -96,29 +96,29 @@ public class JavaTimeSupplementary_cs extends OpenListResourceBundle {
{ "calendarname.roc",
"Kalend\u00e1\u0159 \u010c\u00ednsk\u00e9 republiky" },
{ "field.dayperiod",
"dop./odp." },
"\u010d\u00e1st dne" },
{ "field.era",
"Letopo\u010det" },
"letopo\u010det" },
{ "field.hour",
"Hodina" },
"hodina" },
{ "field.minute",
"Minuta" },
"minuta" },
{ "field.month",
"M\u011bs\u00edc" },
"m\u011bs\u00edc" },
{ "field.second",
"Sekunda" },
"sekunda" },
{ "field.week",
"T\u00fdden" },
"t\u00fdden" },
{ "field.weekday",
"Den v t\u00fddnu" },
"den v t\u00fddnu" },
{ "field.year",
"Rok" },
"rok" },
{ "field.zone",
"\u010casov\u00e9 p\u00e1smo" },
"\u010dasov\u00e9 p\u00e1smo" },
{ "islamic.AmPmMarkers",
new String[] {
"dopoledne",
"odpoledne",
"dop.",
"odp.",
}
},
{ "islamic.DatePatterns",
@ -200,6 +200,12 @@ public class JavaTimeSupplementary_cs extends OpenListResourceBundle {
"H:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"dop.",
"odp.",
}
},
{ "islamic.long.Eras",
new String[] {
"",
@ -282,8 +288,8 @@ public class JavaTimeSupplementary_cs extends OpenListResourceBundle {
},
{ "roc.AmPmMarkers",
new String[] {
"dopoledne",
"odpoledne",
"dop.",
"odp.",
}
},
{ "roc.DatePatterns",
@ -408,6 +414,12 @@ public class JavaTimeSupplementary_cs extends OpenListResourceBundle {
"H:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"dop.",
"odp.",
}
},
{ "roc.long.Eras",
new String[] {
"P\u0159ed R. O. C.",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -112,23 +112,29 @@ public class JavaTimeSupplementary_da extends OpenListResourceBundle {
{ "field.dayperiod",
"AM/PM" },
{ "field.era",
"\u00c6ra" },
"\u00e6ra" },
{ "field.hour",
"Time" },
"time" },
{ "field.minute",
"Minut" },
"minut" },
{ "field.month",
"M\u00e5ned" },
"m\u00e5ned" },
{ "field.second",
"Sekund" },
"sekund" },
{ "field.week",
"Uge" },
"uge" },
{ "field.weekday",
"Ugedag" },
"ugedag" },
{ "field.year",
"\u00c5r" },
"\u00e5r" },
{ "field.zone",
"Tidszone" },
"tidszone" },
{ "islamic.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE d. MMMM y GGGG",
@ -214,6 +220,12 @@ public class JavaTimeSupplementary_da extends OpenListResourceBundle {
"AH",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "islamic.narrow.Eras",
new String[] {
"",
@ -274,6 +286,12 @@ public class JavaTimeSupplementary_da extends OpenListResourceBundle {
},
{ "java.time.short.Eras",
javatimelongEras },
{ "roc.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE d. MMMM y GGGG",
@ -402,6 +420,12 @@ public class JavaTimeSupplementary_da extends OpenListResourceBundle {
"Minguo",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "roc.narrow.Eras",
new String[] {
"Before R.O.C.",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -204,6 +204,12 @@ public class JavaTimeSupplementary_de extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"vorm.",
"nachm.",
}
},
{ "islamic.long.Eras",
new String[] {
"",
@ -404,6 +410,12 @@ public class JavaTimeSupplementary_de extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"vorm.",
"nachm.",
}
},
{ "roc.long.Eras",
new String[] {
"Before R.O.C.",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -106,23 +106,23 @@ public class JavaTimeSupplementary_el extends OpenListResourceBundle {
{ "field.dayperiod",
"\u03c0.\u03bc./\u03bc.\u03bc." },
{ "field.era",
"\u03a0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf\u03c2" },
"\u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf\u03c2" },
{ "field.hour",
"\u038f\u03c1\u03b1" },
"\u03ce\u03c1\u03b1" },
{ "field.minute",
"\u039b\u03b5\u03c0\u03c4\u03cc" },
"\u03bb\u03b5\u03c0\u03c4\u03cc" },
{ "field.month",
"\u039c\u03ae\u03bd\u03b1\u03c2" },
"\u03bc\u03ae\u03bd\u03b1\u03c2" },
{ "field.second",
"\u0394\u03b5\u03c5\u03c4\u03b5\u03c1\u03cc\u03bb\u03b5\u03c0\u03c4\u03bf" },
"\u03b4\u03b5\u03c5\u03c4\u03b5\u03c1\u03cc\u03bb\u03b5\u03c0\u03c4\u03bf" },
{ "field.week",
"\u0395\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1" },
"\u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1" },
{ "field.weekday",
"\u0397\u03bc\u03ad\u03c1\u03b1 \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1\u03c2" },
"\u03ba\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ae" },
{ "field.year",
"\u0388\u03c4\u03bf\u03c2" },
"\u03ad\u03c4\u03bf\u03c2" },
{ "field.zone",
"\u0396\u03ce\u03bd\u03b7 \u03ce\u03c1\u03b1\u03c2" },
"\u03b6\u03ce\u03bd\u03b7 \u03ce\u03c1\u03b1\u03c2" },
{ "islamic.AmPmMarkers",
new String[] {
"\u03c0.\u03bc.",
@ -202,10 +202,16 @@ public class JavaTimeSupplementary_el extends OpenListResourceBundle {
"h:mm a",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"\u03c0.\u03bc.",
"\u03bc.\u03bc.",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"\u03c0",
"\u03bc",
"\u03c0\u03bc",
"\u03bc\u03bc",
}
},
{ "java.time.buddhist.DatePatterns",
@ -392,6 +398,12 @@ public class JavaTimeSupplementary_el extends OpenListResourceBundle {
"h:mm a",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"\u03c0.\u03bc.",
"\u03bc.\u03bc.",
}
},
{ "roc.long.Eras",
new String[] {
"\u03a0\u03c1\u03b9\u03bd R.O.C.",
@ -400,8 +412,8 @@ public class JavaTimeSupplementary_el extends OpenListResourceBundle {
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"\u03c0",
"\u03bc",
"\u03c0\u03bc",
"\u03bc\u03bc",
}
},
{ "roc.narrow.Eras",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -73,52 +73,120 @@ public class JavaTimeSupplementary_en_AU extends OpenListResourceBundle {
@Override
protected final Object[][] getContents() {
return new Object[][] {
{ "islamic.DatePatterns",
{ "field.dayperiod",
"am/pm" },
{ "islamic.AmPmMarkers",
new String[] {
"GGGG y MMMM d, EEEE",
"GGGG y MMMM d",
"GGGG y MMM d",
"d/MM/y G",
"am",
"pm",
}
},
{ "java.time.buddhist.DatePatterns",
{ "islamic.DayAbbreviations",
new String[] {
"G y MMMM d, EEEE",
"G y MMMM d",
"G y MMM d",
"d/MM/y GGGGG",
"Sun.",
"Mon.",
"Tue.",
"Wed.",
"Thu.",
"Fri.",
"Sat.",
}
},
{ "java.time.islamic.DatePatterns",
{ "islamic.DayNarrows",
new String[] {
"G y MMMM d, EEEE",
"G y MMMM d",
"G y MMM d",
"d/MM/y GGGGG",
"Su.",
"M.",
"Tu.",
"W.",
"Th.",
"F.",
"Sa.",
}
},
{ "java.time.japanese.DatePatterns",
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"EEEE, MMMM d, y G",
"MMMM d, y G",
"MMM d, y G",
"d/MM/y GGGGG",
"am",
"pm",
}
},
{ "java.time.roc.DatePatterns",
{ "islamic.narrow.AmPmMarkers",
new String[] {
"G y MMMM d, EEEE",
"G y MMMM d",
"G y MMM d",
"d/MM/y GGGGG",
"am",
"pm",
}
},
{ "roc.DatePatterns",
{ "roc.AmPmMarkers",
new String[] {
"GGGG y MMMM d, EEEE",
"GGGG y MMMM d",
"GGGG y MMM d",
"d/MM/y G",
"am",
"pm",
}
},
{ "roc.DayAbbreviations",
new String[] {
"Sun.",
"Mon.",
"Tue.",
"Wed.",
"Thu.",
"Fri.",
"Sat.",
}
},
{ "roc.DayNarrows",
new String[] {
"Su.",
"M.",
"Tu.",
"W.",
"Th.",
"F.",
"Sa.",
}
},
{ "roc.MonthAbbreviations",
new String[] {
"Jan.",
"Feb.",
"Mar.",
"Apr.",
"May",
"Jun.",
"Jul.",
"Aug.",
"Sep.",
"Oct.",
"Nov.",
"Dec.",
"",
}
},
{ "roc.MonthNarrows",
new String[] {
"Jan.",
"Feb.",
"Mar.",
"Apr.",
"May",
"Jun.",
"Jul.",
"Aug.",
"Sep.",
"Oct.",
"Nov.",
"Dec.",
"",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"am",
"pm",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"am",
"pm",
}
},
};

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -74,11 +74,11 @@ public class JavaTimeSupplementary_en_GB extends OpenListResourceBundle {
protected final Object[][] getContents() {
return new Object[][] {
{ "field.dayperiod",
"a.m./p.m." },
"am/pm" },
{ "islamic.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
"am",
"pm",
}
},
{ "islamic.TimePatterns",
@ -89,10 +89,22 @@ public class JavaTimeSupplementary_en_GB extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"am",
"pm",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "roc.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
"am",
"pm",
}
},
{ "roc.TimePatterns",
@ -103,6 +115,18 @@ public class JavaTimeSupplementary_en_GB extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"am",
"pm",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
};
}
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -87,6 +87,14 @@ public class JavaTimeSupplementary_en_IE extends OpenListResourceBundle {
"G y-MM-dd",
}
},
{ "islamic.TimePatterns",
new String[] {
"HH:mm:ss zzzz",
"HH:mm:ss z",
"HH:mm:ss",
"HH:mm",
}
},
{ "java.time.buddhist.DatePatterns",
new String[] {
"EEEE d MMMM y G",
@ -133,6 +141,14 @@ public class JavaTimeSupplementary_en_IE extends OpenListResourceBundle {
"G y-MM-dd",
}
},
{ "roc.TimePatterns",
new String[] {
"HH:mm:ss zzzz",
"HH:mm:ss z",
"HH:mm:ss",
"HH:mm",
}
},
};
}
}

View File

@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -81,6 +81,14 @@ public class JavaTimeSupplementary_en_MT extends OpenListResourceBundle {
"G y-MM-dd",
}
},
{ "islamic.TimePatterns",
new String[] {
"HH:mm:ss zzzz",
"HH:mm:ss z",
"HH:mm:ss",
"HH:mm",
}
},
{ "java.time.buddhist.DatePatterns",
new String[] {
"G y MMMM d, EEEE",
@ -121,6 +129,14 @@ public class JavaTimeSupplementary_en_MT extends OpenListResourceBundle {
"G y-MM-dd",
}
},
{ "roc.TimePatterns",
new String[] {
"HH:mm:ss zzzz",
"HH:mm:ss z",
"HH:mm:ss",
"HH:mm",
}
},
};
}
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -105,22 +105,24 @@ public class JavaTimeSupplementary_es extends OpenListResourceBundle {
"calendario de la Rep\u00fablica de China" },
{ "field.dayperiod",
"a. m./p. m." },
{ "field.era",
"era" },
{ "field.hour",
"Hora" },
"hora" },
{ "field.minute",
"Minuto" },
"minuto" },
{ "field.month",
"Mes" },
"mes" },
{ "field.second",
"Segundo" },
"segundo" },
{ "field.week",
"Semana" },
"semana" },
{ "field.weekday",
"D\u00eda de la semana" },
"d\u00eda de la semana" },
{ "field.year",
"A\u00f1o" },
"a\u00f1o" },
{ "field.zone",
"Zona horaria" },
"zona horaria" },
{ "islamic.AmPmMarkers",
new String[] {
"a. m.",
@ -131,8 +133,8 @@ public class JavaTimeSupplementary_es extends OpenListResourceBundle {
new String[] {
"EEEE, d 'de' MMMM 'de' y GGGG",
"d 'de' MMMM 'de' y GGGG",
"dd/MM/y GGGG",
"dd/MM/yy G",
"d/M/y GGGG",
"d/M/yy GGGG",
}
},
{ "islamic.DayAbbreviations",
@ -190,6 +192,14 @@ public class JavaTimeSupplementary_es extends OpenListResourceBundle {
"4.\u00ba trimestre",
}
},
{ "islamic.QuarterNarrows",
new String[] {
"1",
"2",
"3",
"4",
}
},
{ "islamic.TimePatterns",
new String[] {
"H:mm:ss (zzzz)",
@ -198,6 +208,12 @@ public class JavaTimeSupplementary_es extends OpenListResourceBundle {
"H:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"a. m.",
"p. m.",
}
},
{ "islamic.long.Eras",
new String[] {
"",
@ -206,8 +222,8 @@ public class JavaTimeSupplementary_es extends OpenListResourceBundle {
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
"a. m.",
"p. m.",
}
},
{ "islamic.narrow.Eras",
@ -226,8 +242,8 @@ public class JavaTimeSupplementary_es extends OpenListResourceBundle {
new String[] {
"EEEE, d 'de' MMMM 'de' y G",
"d 'de' MMMM 'de' y G",
"dd/MM/y G",
"dd/MM/yy GGGGG",
"d/M/y G",
"d/M/yy G",
}
},
{ "java.time.buddhist.long.Eras",
@ -246,8 +262,8 @@ public class JavaTimeSupplementary_es extends OpenListResourceBundle {
new String[] {
"EEEE, d 'de' MMMM 'de' y G",
"d 'de' MMMM 'de' y G",
"dd/MM/y G",
"dd/MM/yy GGGGG",
"d/M/y G",
"d/M/yy G",
}
},
{ "java.time.japanese.DatePatterns",
@ -268,8 +284,8 @@ public class JavaTimeSupplementary_es extends OpenListResourceBundle {
new String[] {
"EEEE, d 'de' MMMM 'de' y G",
"d 'de' MMMM 'de' y G",
"dd/MM/y G",
"dd/MM/yy GGGGG",
"d/M/y G",
"d/M/yy G",
}
},
{ "java.time.short.Eras",
@ -288,8 +304,8 @@ public class JavaTimeSupplementary_es extends OpenListResourceBundle {
new String[] {
"EEEE, d 'de' MMMM 'de' y GGGG",
"d 'de' MMMM 'de' y GGGG",
"dd/MM/y GGGG",
"dd/MM/yy G",
"d/M/y GGGG",
"d/M/yy GGGG",
}
},
{ "roc.DayAbbreviations",
@ -406,6 +422,12 @@ public class JavaTimeSupplementary_es extends OpenListResourceBundle {
"H:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"a. m.",
"p. m.",
}
},
{ "roc.long.Eras",
new String[] {
"antes de R.O.C.",
@ -414,8 +436,8 @@ public class JavaTimeSupplementary_es extends OpenListResourceBundle {
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
"a. m.",
"p. m.",
}
},
{ "roc.narrow.Eras",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -73,6 +73,14 @@ public class JavaTimeSupplementary_es_CL extends OpenListResourceBundle {
@Override
protected final Object[][] getContents() {
return new Object[][] {
{ "QuarterNames",
new String[] {
"1.\u00b0 trimestre",
"2.\u00b0 trimestre",
"3.\u00b0 trimestre",
"4.\u00ba trimestre",
}
},
{ "islamic.DatePatterns",
new String[] {
"GGGG y MMMM d, EEEE",
@ -81,6 +89,14 @@ public class JavaTimeSupplementary_es_CL extends OpenListResourceBundle {
"dd-MM-y G",
}
},
{ "islamic.QuarterNames",
new String[] {
"1.\u00b0 trimestre",
"2.\u00b0 trimestre",
"3.\u00b0 trimestre",
"4.\u00ba trimestre",
}
},
{ "java.time.buddhist.DatePatterns",
new String[] {
"G y MMMM d, EEEE",
@ -121,6 +137,14 @@ public class JavaTimeSupplementary_es_CL extends OpenListResourceBundle {
"dd-MM-y G",
}
},
{ "roc.QuarterNames",
new String[] {
"1.\u00b0 trimestre",
"2.\u00b0 trimestre",
"3.\u00b0 trimestre",
"4.\u00ba trimestre",
}
},
};
}
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -81,10 +81,23 @@ public class JavaTimeSupplementary_es_CO extends OpenListResourceBundle {
"d/MM/yy G",
}
},
{ "islamic.narrow.AmPmMarkers",
{ "islamic.DayNarrows",
new String[] {
"a. m.",
"p. m.",
"d",
"l",
"m",
"m",
"j",
"v",
"s",
}
},
{ "islamic.TimePatterns",
new String[] {
"h:mm:ss a zzzz",
"h:mm:ss a z",
"h:mm:ss a",
"h:mm a",
}
},
{ "java.time.buddhist.DatePatterns",
@ -127,10 +140,23 @@ public class JavaTimeSupplementary_es_CO extends OpenListResourceBundle {
"d/MM/yy G",
}
},
{ "roc.narrow.AmPmMarkers",
{ "roc.DayNarrows",
new String[] {
"a. m.",
"p. m.",
"d",
"l",
"m",
"m",
"j",
"v",
"s",
}
},
{ "roc.TimePatterns",
new String[] {
"h:mm:ss a zzzz",
"h:mm:ss a z",
"h:mm:ss a",
"h:mm a",
}
},
};

View File

@ -0,0 +1,172 @@
/*
* Copyright (c) 2016, 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.
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2016 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) this copyright and permission notice appear with all copies
* of the Data Files or Software,
* (b) this copyright and 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.
*/
// Note: this file has been generated by a tool.
package sun.text.resources.ext;
import sun.util.resources.OpenListResourceBundle;
public class JavaTimeSupplementary_es_DO extends OpenListResourceBundle {
@Override
protected final Object[][] getContents() {
return new Object[][] {
{ "QuarterAbbreviations",
new String[] {
"Q1",
"Q2",
"Q3",
"Q4",
}
},
{ "field.era",
"Era" },
{ "field.minute",
"Minuto" },
{ "field.month",
"Mes" },
{ "field.second",
"Segundo" },
{ "field.week",
"Semana" },
{ "field.weekday",
"D\u00eda de la semana" },
{ "field.year",
"A\u00f1o" },
{ "islamic.DatePatterns",
new String[] {
"GGGG y MMMM d, EEEE",
"GGGG y MMMM d",
"dd/MM/y GGGG",
"G y-MM-dd",
}
},
{ "islamic.QuarterAbbreviations",
new String[] {
"Q1",
"Q2",
"Q3",
"Q4",
}
},
{ "islamic.TimePatterns",
new String[] {
"h:mm:ss a zzzz",
"h:mm:ss a z",
"h:mm:ss a",
"h:mm a",
}
},
{ "java.time.buddhist.DatePatterns",
new String[] {
"G y MMMM d, EEEE",
"G y MMMM d",
"dd/MM/y G",
"GGGGG y-MM-dd",
}
},
{ "java.time.islamic.DatePatterns",
new String[] {
"G y MMMM d, EEEE",
"G y MMMM d",
"dd/MM/y G",
"GGGGG y-MM-dd",
}
},
{ "java.time.roc.DatePatterns",
new String[] {
"G y MMMM d, EEEE",
"G y MMMM d",
"dd/MM/y G",
"GGGGG y-MM-dd",
}
},
{ "roc.DatePatterns",
new String[] {
"GGGG y MMMM d, EEEE",
"GGGG y MMMM d",
"dd/MM/y GGGG",
"G y-MM-dd",
}
},
{ "roc.QuarterAbbreviations",
new String[] {
"Q1",
"Q2",
"Q3",
"Q4",
}
},
{ "roc.TimePatterns",
new String[] {
"h:mm:ss a zzzz",
"h:mm:ss a z",
"h:mm:ss a",
"h:mm a",
}
},
};
}
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -103,16 +103,6 @@ public class JavaTimeSupplementary_es_MX extends OpenListResourceBundle {
"Calendario gregoriano" },
{ "calendarname.roc",
"calendario minguo" },
{ "field.dayperiod",
"a.m./p.m." },
{ "field.era",
"era" },
{ "islamic.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
}
},
{ "islamic.DatePatterns",
new String[] {
"GGGG y MMMM d, EEEE",
@ -188,12 +178,6 @@ public class JavaTimeSupplementary_es_MX extends OpenListResourceBundle {
"GGGGG y-MM-dd",
}
},
{ "roc.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
}
},
{ "roc.DatePatterns",
new String[] {
"GGGG y MMMM d, EEEE",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -73,6 +73,22 @@ public class JavaTimeSupplementary_es_PA extends OpenListResourceBundle {
@Override
protected final Object[][] getContents() {
return new Object[][] {
{ "QuarterAbbreviations",
new String[] {
"1er. trimestre",
"2do. trimestre",
"3er. trimestre",
"4.\u00ba trimestre",
}
},
{ "QuarterNames",
new String[] {
"1er. trimestre",
"2do. trimestre",
"3er. trimestre",
"4.\u00ba trimestre",
}
},
{ "islamic.DatePatterns",
new String[] {
"GGGG y MMMM d, EEEE",
@ -81,6 +97,22 @@ public class JavaTimeSupplementary_es_PA extends OpenListResourceBundle {
"MM/dd/yy G",
}
},
{ "islamic.QuarterNames",
new String[] {
"1er. trimestre",
"2do. trimestre",
"3er. trimestre",
"4.\u00ba trimestre",
}
},
{ "islamic.TimePatterns",
new String[] {
"h:mm:ss a zzzz",
"h:mm:ss a z",
"h:mm:ss a",
"h:mm a",
}
},
{ "java.time.buddhist.DatePatterns",
new String[] {
"G y MMMM d, EEEE",
@ -121,6 +153,22 @@ public class JavaTimeSupplementary_es_PA extends OpenListResourceBundle {
"MM/dd/yy G",
}
},
{ "roc.QuarterNames",
new String[] {
"1er. trimestre",
"2do. trimestre",
"3er. trimestre",
"4.\u00ba trimestre",
}
},
{ "roc.TimePatterns",
new String[] {
"h:mm:ss a zzzz",
"h:mm:ss a z",
"h:mm:ss a",
"h:mm a",
}
},
};
}
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -81,6 +81,14 @@ public class JavaTimeSupplementary_es_PR extends OpenListResourceBundle {
"MM/dd/yy G",
}
},
{ "islamic.TimePatterns",
new String[] {
"h:mm:ss a zzzz",
"h:mm:ss a z",
"h:mm:ss a",
"h:mm a",
}
},
{ "java.time.buddhist.DatePatterns",
new String[] {
"G y MMMM d, EEEE",
@ -121,6 +129,14 @@ public class JavaTimeSupplementary_es_PR extends OpenListResourceBundle {
"MM/dd/yy G",
}
},
{ "roc.TimePatterns",
new String[] {
"h:mm:ss a zzzz",
"h:mm:ss a z",
"h:mm:ss a",
"h:mm a",
}
},
};
}
}

View File

@ -0,0 +1,124 @@
/*
* Copyright (c) 2016, 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.
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2016 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) this copyright and permission notice appear with all copies
* of the Data Files or Software,
* (b) this copyright and 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.
*/
// Note: this file has been generated by a tool.
package sun.text.resources.ext;
import sun.util.resources.OpenListResourceBundle;
public class JavaTimeSupplementary_es_US extends OpenListResourceBundle {
@Override
protected final Object[][] getContents() {
return new Object[][] {
{ "islamic.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "islamic.TimePatterns",
new String[] {
"h:mm:ss a zzzz",
"h:mm:ss a z",
"h:mm:ss a",
"h:mm a",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "java.time.short.Eras",
new String[] {
"a.C.",
"d.C.",
}
},
{ "roc.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "roc.TimePatterns",
new String[] {
"h:mm:ss a zzzz",
"h:mm:ss a z",
"h:mm:ss a",
"h:mm a",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
};
}
}

View File

@ -0,0 +1,126 @@
/*
* Copyright (c) 2016, 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.
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2016 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) this copyright and permission notice appear with all copies
* of the Data Files or Software,
* (b) this copyright and 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.
*/
// Note: this file has been generated by a tool.
package sun.text.resources.ext;
import sun.util.resources.OpenListResourceBundle;
public class JavaTimeSupplementary_es_VE extends OpenListResourceBundle {
@Override
protected final Object[][] getContents() {
return new Object[][] {
{ "QuarterAbbreviations",
new String[] {
"1er trimestre",
"2do trimestre",
"3er trimestre",
"4to trimestre",
}
},
{ "QuarterNames",
new String[] {
"1er trimestre",
"2do trimestre",
"3er trimestre",
"4to trimestre",
}
},
{ "islamic.QuarterNames",
new String[] {
"1er trimestre",
"2do trimestre",
"3er trimestre",
"4to trimestre",
}
},
{ "islamic.TimePatterns",
new String[] {
"h:mm:ss a zzzz",
"h:mm:ss a z",
"h:mm:ss a",
"h:mm a",
}
},
{ "roc.QuarterNames",
new String[] {
"1er trimestre",
"2do trimestre",
"3er trimestre",
"4to trimestre",
}
},
{ "roc.TimePatterns",
new String[] {
"h:mm:ss a zzzz",
"h:mm:ss a z",
"h:mm:ss a",
"h:mm a",
}
},
};
}
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -123,6 +123,12 @@ public class JavaTimeSupplementary_et extends OpenListResourceBundle {
"aasta" },
{ "field.zone",
"ajav\u00f6\u00f6nd" },
{ "islamic.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, d. MMMM y GGGG",
@ -196,6 +202,12 @@ public class JavaTimeSupplementary_et extends OpenListResourceBundle {
"H:mm",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "java.time.buddhist.DatePatterns",
new String[] {
"EEEE, d. MMMM y G",
@ -222,8 +234,8 @@ public class JavaTimeSupplementary_et extends OpenListResourceBundle {
},
{ "java.time.long.Eras",
new String[] {
"enne meie aega",
"meie aja j\u00e4rgi",
"enne Kristust",
"p\u00e4rast Kristust",
}
},
{ "java.time.roc.DatePatterns",
@ -240,6 +252,12 @@ public class JavaTimeSupplementary_et extends OpenListResourceBundle {
"m.a.j.",
}
},
{ "roc.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, d. MMMM y GGGG",
@ -356,6 +374,12 @@ public class JavaTimeSupplementary_et extends OpenListResourceBundle {
"H:mm",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
};
}
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -221,6 +221,12 @@ public class JavaTimeSupplementary_fi extends OpenListResourceBundle {
"H.mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"ap.",
"ip.",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"ap.",
@ -419,6 +425,12 @@ public class JavaTimeSupplementary_fi extends OpenListResourceBundle {
"H.mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"ap.",
"ip.",
}
},
{ "roc.long.Eras",
new String[] {
"Before R.O.C.",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -127,6 +127,12 @@ public class JavaTimeSupplementary_fr extends OpenListResourceBundle {
"ann\u00e9e" },
{ "field.zone",
"fuseau horaire" },
{ "islamic.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE d MMMM y GGGG",
@ -246,6 +252,12 @@ public class JavaTimeSupplementary_fr extends OpenListResourceBundle {
"AH",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "islamic.narrow.Eras",
new String[] {
"",
@ -306,6 +318,12 @@ public class JavaTimeSupplementary_fr extends OpenListResourceBundle {
"ap. J.-C.",
}
},
{ "roc.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE d MMMM y GGGG",
@ -434,6 +452,12 @@ public class JavaTimeSupplementary_fr extends OpenListResourceBundle {
"RdC",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "roc.narrow.Eras",
new String[] {
"avant RdC",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -81,6 +81,12 @@ public class JavaTimeSupplementary_fr_CA extends OpenListResourceBundle {
"y-MM-dd G",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "java.time.buddhist.DatePatterns",
new String[] {
"EEEE d MMMM y G",
@ -121,6 +127,12 @@ public class JavaTimeSupplementary_fr_CA extends OpenListResourceBundle {
"yy-MM-dd G",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
};
}
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -200,6 +200,18 @@ public class JavaTimeSupplementary_ga extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "java.time.buddhist.DatePatterns",
new String[] {
"EEEE d MMMM y G",
@ -366,6 +378,18 @@ public class JavaTimeSupplementary_ga extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
};
}
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -219,6 +219,12 @@ public class JavaTimeSupplementary_hi_IN extends OpenListResourceBundle {
"h:mm a",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"\u092a\u0942\u0930\u094d\u0935",
"\u0905\u092a\u0930",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"\u092a\u0942",
@ -409,6 +415,12 @@ public class JavaTimeSupplementary_hi_IN extends OpenListResourceBundle {
"h:mm a",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"\u092a\u0942\u0930\u094d\u0935",
"\u0905\u092a\u0930",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"\u092a\u0942",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -72,10 +72,6 @@ import sun.util.resources.OpenListResourceBundle;
public class JavaTimeSupplementary_hr extends OpenListResourceBundle {
@Override
protected final Object[][] getContents() {
final String[] javatimelongEras = {
"Prije Krista",
"Poslije Krista",
};
return new Object[][] {
{ "QuarterAbbreviations",
new String[] {
@ -117,22 +113,30 @@ public class JavaTimeSupplementary_hr extends OpenListResourceBundle {
"kalendar Republike Kine" },
{ "field.dayperiod",
"AM/PM" },
{ "field.era",
"era" },
{ "field.hour",
"Sat" },
"sat" },
{ "field.minute",
"Minuta" },
"minuta" },
{ "field.month",
"Mjesec" },
"mjesec" },
{ "field.second",
"Sekunda" },
"sekunda" },
{ "field.week",
"Tjedan" },
"tjedan" },
{ "field.weekday",
"Dan u tjednu" },
"dan u tjednu" },
{ "field.year",
"Godina" },
"godina" },
{ "field.zone",
"Vremenska zona" },
"vremenska zona" },
{ "islamic.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, d. MMMM y. GGGG",
@ -240,7 +244,7 @@ public class JavaTimeSupplementary_hr extends OpenListResourceBundle {
new String[] {
"EEEE, d. MMMM y. G",
"d. MMMM y. G",
"d. M. y. G",
"d. MMM y. G",
"dd.MM.y. GGGGG",
}
},
@ -274,7 +278,7 @@ public class JavaTimeSupplementary_hr extends OpenListResourceBundle {
},
{ "java.time.japanese.long.Eras",
new String[] {
"Poslije Krista",
"poslije Krista",
"Meiji",
"Taish\u014d",
"Sh\u014dwa",
@ -291,22 +295,36 @@ public class JavaTimeSupplementary_hr extends OpenListResourceBundle {
}
},
{ "java.time.long.Eras",
javatimelongEras },
new String[] {
"prije Krista",
"poslije Krista",
}
},
{ "java.time.roc.DatePatterns",
new String[] {
"EEEE, d. MMMM y. G",
"d. MMMM y. G",
"d. M. y. G",
"d. MMM y. G",
"dd.MM.y. GGGGG",
}
},
{ "java.time.short.Eras",
javatimelongEras },
new String[] {
"Prije Krista",
"Poslije Krista",
}
},
{ "roc.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, d. MMMM y. GGGG",
"d. MMMM y. GGGG",
"d. M. y. GGGG",
"d. MMM y. GGGG",
"dd.MM.y. G",
}
},

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -192,8 +192,8 @@ public class JavaTimeSupplementary_hu extends OpenListResourceBundle {
new String[] {
"Moh.",
"Saf.",
"R\u00e9bi I",
"R\u00e9bi II",
"R\u00e9b. 1",
"R\u00e9b. 2",
"Dsem. I",
"Dsem. II",
"Red.",
@ -254,6 +254,12 @@ public class JavaTimeSupplementary_hu extends OpenListResourceBundle {
"H:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"de.",
"du.",
}
},
{ "islamic.long.Eras",
new String[] {
"",
@ -462,6 +468,12 @@ public class JavaTimeSupplementary_hu extends OpenListResourceBundle {
"H:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"de.",
"du.",
}
},
{ "roc.long.Eras",
new String[] {
"R.O.C. el\u0151tt",

View File

@ -0,0 +1,495 @@
/*
* Copyright (c) 2016, 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.
*/
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2016 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) this copyright and permission notice appear with all copies
* of the Data Files or Software,
* (b) this copyright and 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.
*/
// Note: this file has been generated by a tool.
package sun.text.resources.ext;
import sun.util.resources.OpenListResourceBundle;
public class JavaTimeSupplementary_in extends OpenListResourceBundle {
@Override
protected final Object[][] getContents() {
return new Object[][] {
{ "QuarterAbbreviations",
new String[] {
"K1",
"K2",
"K3",
"K4",
}
},
{ "QuarterNames",
new String[] {
"Kuartal ke-1",
"Kuartal ke-2",
"Kuartal ke-3",
"Kuartal ke-4",
}
},
{ "calendarname.buddhist",
"Kalender Buddha" },
{ "calendarname.gregorian",
"Kalender Gregorian" },
{ "calendarname.gregory",
"Kalender Gregorian" },
{ "calendarname.islamic",
"Kalender Islam" },
{ "calendarname.islamic-civil",
"Kalender Sipil Islam" },
{ "calendarname.japanese",
"Kalender Jepang" },
{ "calendarname.roc",
"Kalendar Minguo" },
{ "field.dayperiod",
"AM/PM" },
{ "field.hour",
"Jam" },
{ "field.minute",
"Menit" },
{ "field.month",
"Bulan" },
{ "field.second",
"Detik" },
{ "field.week",
"Minggu" },
{ "field.weekday",
"Hari dalam Seminggu" },
{ "field.year",
"Tahun" },
{ "field.zone",
"Zona Waktu" },
{ "islamic.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, dd MMMM y GGGG",
"d MMMM y GGGG",
"d MMM y GGGG",
"d/M/y G",
}
},
{ "islamic.DayAbbreviations",
new String[] {
"Min",
"Sen",
"Sel",
"Rab",
"Kam",
"Jum",
"Sab",
}
},
{ "islamic.DayNames",
new String[] {
"Minggu",
"Senin",
"Selasa",
"Rabu",
"Kamis",
"Jumat",
"Sabtu",
}
},
{ "islamic.DayNarrows",
new String[] {
"M",
"S",
"S",
"R",
"K",
"J",
"S",
}
},
{ "islamic.Eras",
new String[] {
"",
"AH",
}
},
{ "islamic.MonthAbbreviations",
new String[] {
"Muh.",
"Saf.",
"Rab. I",
"Rab. II",
"Jum. I",
"Jum. II",
"Raj.",
"Sha.",
"Ram.",
"Syaw.",
"Dhu\u02bbl-Q.",
"Dhu\u02bbl-H.",
"",
}
},
{ "islamic.MonthNames",
new String[] {
"Muharram",
"Safar",
"Rabi\u02bb I",
"Rabi\u02bb II",
"Jumada I",
"Jumada II",
"Rajab",
"Sya\u2019ban",
"Ramadhan",
"Syawal",
"Dhu\u02bbl-Qi\u02bbdah",
"Dhu\u02bbl-Hijjah",
"",
}
},
{ "islamic.QuarterAbbreviations",
new String[] {
"K1",
"K2",
"K3",
"K4",
}
},
{ "islamic.QuarterNames",
new String[] {
"Kuartal ke-1",
"Kuartal ke-2",
"Kuartal ke-3",
"Kuartal ke-4",
}
},
{ "islamic.QuarterNarrows",
new String[] {
"1",
"2",
"3",
"4",
}
},
{ "islamic.TimePatterns",
new String[] {
"HH.mm.ss zzzz",
"HH.mm.ss z",
"HH.mm.ss",
"HH.mm",
}
},
{ "islamic.long.Eras",
new String[] {
"",
"AH",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "islamic.narrow.Eras",
new String[] {
"",
"AH",
}
},
{ "islamic.short.Eras",
new String[] {
"",
"AH",
}
},
{ "java.time.buddhist.DatePatterns",
new String[] {
"EEEE, dd MMMM y G",
"d MMMM y G",
"d MMM y G",
"d/M/y GGGGG",
}
},
{ "java.time.buddhist.long.Eras",
new String[] {
"BC",
"BE",
}
},
{ "java.time.buddhist.short.Eras",
new String[] {
"BC",
"BE",
}
},
{ "java.time.islamic.DatePatterns",
new String[] {
"EEEE, dd MMMM y G",
"d MMMM y G",
"d MMM y G",
"d/M/y GGGGG",
}
},
{ "java.time.japanese.DatePatterns",
new String[] {
"EEEE, dd MMMM y G",
"d MMMM y G",
"d MMM y G",
"d/M/y GGGGG",
}
},
{ "java.time.japanese.long.Eras",
new String[] {
"M",
"Meiji",
"Taish\u014d",
"Sh\u014dwa",
"Heisei",
}
},
{ "java.time.japanese.short.Eras",
new String[] {
"M",
"Meiji",
"Taish\u014d",
"Sh\u014dwa",
"Heisei",
}
},
{ "java.time.long.Eras",
new String[] {
"Sebelum Masehi",
"M",
}
},
{ "java.time.roc.DatePatterns",
new String[] {
"EEEE, dd MMMM y G",
"d MMMM y G",
"d MMM y G",
"d/M/y GGGGG",
}
},
{ "java.time.short.Eras",
new String[] {
"BCE",
"CE",
}
},
{ "roc.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, dd MMMM y GGGG",
"d MMMM y GGGG",
"d MMM y GGGG",
"d/M/y G",
}
},
{ "roc.DayAbbreviations",
new String[] {
"Min",
"Sen",
"Sel",
"Rab",
"Kam",
"Jum",
"Sab",
}
},
{ "roc.DayNames",
new String[] {
"Minggu",
"Senin",
"Selasa",
"Rabu",
"Kamis",
"Jumat",
"Sabtu",
}
},
{ "roc.DayNarrows",
new String[] {
"M",
"S",
"S",
"R",
"K",
"J",
"S",
}
},
{ "roc.Eras",
new String[] {
"Sebelum R.O.C.",
"R.O.C.",
}
},
{ "roc.MonthAbbreviations",
new String[] {
"Jan",
"Feb",
"Mar",
"Apr",
"Mei",
"Jun",
"Jul",
"Agt",
"Sep",
"Okt",
"Nov",
"Des",
"",
}
},
{ "roc.MonthNames",
new String[] {
"Januari",
"Februari",
"Maret",
"April",
"Mei",
"Juni",
"Juli",
"Agustus",
"September",
"Oktober",
"November",
"Desember",
"",
}
},
{ "roc.MonthNarrows",
new String[] {
"J",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D",
"",
}
},
{ "roc.QuarterAbbreviations",
new String[] {
"K1",
"K2",
"K3",
"K4",
}
},
{ "roc.QuarterNames",
new String[] {
"Kuartal ke-1",
"Kuartal ke-2",
"Kuartal ke-3",
"Kuartal ke-4",
}
},
{ "roc.TimePatterns",
new String[] {
"HH.mm.ss zzzz",
"HH.mm.ss z",
"HH.mm.ss",
"HH.mm",
}
},
{ "roc.long.Eras",
new String[] {
"Sebelum R.O.C.",
"R.O.C.",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "roc.narrow.Eras",
new String[] {
"Sebelum R.O.C.",
"R.O.C.",
}
},
{ "roc.short.Eras",
new String[] {
"Sebelum R.O.C.",
"R.O.C.",
}
},
};
}
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -202,6 +202,12 @@ public class JavaTimeSupplementary_is extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"f.h.",
"e.h.",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"f.",
@ -374,6 +380,12 @@ public class JavaTimeSupplementary_is extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"f.h.",
"e.h.",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"f.",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -107,22 +107,30 @@ public class JavaTimeSupplementary_it extends OpenListResourceBundle {
"Calendario Minguo" },
{ "field.dayperiod",
"AM/PM" },
{ "field.era",
"era" },
{ "field.hour",
"Ora" },
"ora" },
{ "field.minute",
"Minuto" },
"minuto" },
{ "field.month",
"Mese" },
"mese" },
{ "field.second",
"Secondo" },
{ "field.week",
"Settimana" },
"settimana" },
{ "field.weekday",
"Giorno della settimana" },
"giorno della settimana" },
{ "field.year",
"Anno" },
"anno" },
{ "field.zone",
"Fuso orario" },
"fuso orario" },
{ "islamic.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE d MMMM y GGGG",
@ -282,6 +290,12 @@ public class JavaTimeSupplementary_it extends OpenListResourceBundle {
"dopo Cristo",
}
},
{ "roc.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE d MMMM y GGGG",
@ -325,7 +339,7 @@ public class JavaTimeSupplementary_it extends OpenListResourceBundle {
},
{ "roc.Eras",
new String[] {
"Prima della R.O.C.",
"Prima di R.O.C.",
"Minguo",
}
},
@ -406,7 +420,7 @@ public class JavaTimeSupplementary_it extends OpenListResourceBundle {
},
{ "roc.long.Eras",
new String[] {
"Prima della R.O.C.",
"Prima di R.O.C.",
"Minguo",
}
},
@ -418,13 +432,13 @@ public class JavaTimeSupplementary_it extends OpenListResourceBundle {
},
{ "roc.narrow.Eras",
new String[] {
"Prima della R.O.C.",
"Prima di R.O.C.",
"Minguo",
}
},
{ "roc.short.Eras",
new String[] {
"Prima della R.O.C.",
"Prima di R.O.C.",
"Minguo",
}
},

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -77,7 +77,7 @@ public class JavaTimeSupplementary_it_CH extends OpenListResourceBundle {
new String[] {
"EEEE, d MMMM y GGGG",
"d MMMM y GGGG",
"d-MMM-y GGGG",
"d MMM y GGGG",
"dd.MM.yy G",
}
},
@ -85,7 +85,7 @@ public class JavaTimeSupplementary_it_CH extends OpenListResourceBundle {
new String[] {
"EEEE, d MMMM y G",
"d MMMM y G",
"d-MMM-y G",
"d MMM y G",
"dd.MM.yy GGGGG",
}
},
@ -93,7 +93,7 @@ public class JavaTimeSupplementary_it_CH extends OpenListResourceBundle {
new String[] {
"EEEE, d MMMM y G",
"d MMMM y G",
"d-MMM-y G",
"d MMM y G",
"dd.MM.yy GGGGG",
}
},
@ -101,7 +101,7 @@ public class JavaTimeSupplementary_it_CH extends OpenListResourceBundle {
new String[] {
"EEEE, d MMMM y G",
"d MMMM y G",
"d-MMM-y G",
"d MMM y G",
"dd.MM.yy GGGGG",
}
},
@ -109,7 +109,7 @@ public class JavaTimeSupplementary_it_CH extends OpenListResourceBundle {
new String[] {
"EEEE, d MMMM y G",
"d MMMM y G",
"d-MMM-y G",
"d MMM y G",
"dd.MM.yy GGGGG",
}
},
@ -117,7 +117,7 @@ public class JavaTimeSupplementary_it_CH extends OpenListResourceBundle {
new String[] {
"EEEE, d MMMM y GGGG",
"d MMMM y GGGG",
"d-MMM-y GGGG",
"d MMM y GGGG",
"dd.MM.yy G",
}
},

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,37 +26,41 @@
/*
* 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.
* Copyright (C) 1991-2016 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.
* 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) this copyright and permission notice appear with all copies
* of the Data Files or Software,
* (b) this copyright and 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,
* 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.
* 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.
* 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.
*/
// Note: this file has been generated by a tool.
@ -69,7 +73,7 @@ public class JavaTimeSupplementary_iw extends OpenListResourceBundle {
@Override
protected final Object[][] getContents() {
return new Object[][] {
{ "QuarterNames",
{ "QuarterAbbreviations",
new String[] {
"\u05e8\u05d1\u05e2\u05d5\u05df 1",
"\u05e8\u05d1\u05e2\u05d5\u05df 2",
@ -77,12 +81,12 @@ public class JavaTimeSupplementary_iw extends OpenListResourceBundle {
"\u05e8\u05d1\u05e2\u05d5\u05df 4",
}
},
{ "QuarterNarrows",
{ "QuarterNames",
new String[] {
"1",
"2",
"3",
"4",
"\u05e8\u05d1\u05e2\u05d5\u05df 1",
"\u05e8\u05d1\u05e2\u05d5\u05df 2",
"\u05e8\u05d1\u05e2\u05d5\u05df 3",
"\u05e8\u05d1\u05e2\u05d5\u05df 4",
}
},
{ "calendarname.buddhist",
@ -95,14 +99,12 @@ public class JavaTimeSupplementary_iw extends OpenListResourceBundle {
"\u05dc\u05d5\u05d7 \u05e9\u05e0\u05d4 \u05de\u05d5\u05e1\u05dc\u05de\u05d9" },
{ "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.japanese",
"\u05dc\u05d5\u05d7 \u05e9\u05e0\u05d4 \u05d9\u05e4\u05e0\u05d9" },
{ "calendarname.roc",
"\u05dc\u05d5\u05d7 \u05d4\u05e9\u05e0\u05d4 \u05d4\u05e1\u05d9\u05e0\u05d9 Minguo" },
{ "field.dayperiod",
"\u05dc\u05e4\u05d4\u05f4\u05e6/\u05d0\u05d7\u05d4\u05f4\u05e6" },
"\u05dc\u05e4\u05e0\u05d4\u05f4\u05e6/\u05d0\u05d7\u05d4\u05f4\u05e6" },
{ "field.era",
"\u05ea\u05e7\u05d5\u05e4\u05d4" },
{ "field.hour",
@ -121,47 +123,327 @@ public class JavaTimeSupplementary_iw extends OpenListResourceBundle {
"\u05e9\u05e0\u05d4" },
{ "field.zone",
"\u05d0\u05d6\u05d5\u05e8" },
{ "islamic.AmPmMarkers",
new String[] {
"\u05dc\u05e4\u05e0\u05d4\u05f4\u05e6",
"\u05d0\u05d7\u05d4\u05f4\u05e6",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, d \u05d1MMMM y GGGG",
"d \u05d1MMMM y GGGG",
"d \u05d1MMM y GGGG",
"dd/MM/yy G",
}
},
{ "islamic.DayAbbreviations",
new String[] {
"\u05d9\u05d5\u05dd \u05d0\u05f3",
"\u05d9\u05d5\u05dd \u05d1\u05f3",
"\u05d9\u05d5\u05dd \u05d2\u05f3",
"\u05d9\u05d5\u05dd \u05d3\u05f3",
"\u05d9\u05d5\u05dd \u05d4\u05f3",
"\u05d9\u05d5\u05dd \u05d5\u05f3",
"\u05e9\u05d1\u05ea",
}
},
{ "islamic.DayNames",
new String[] {
"\u05d9\u05d5\u05dd \u05e8\u05d0\u05e9\u05d5\u05df",
"\u05d9\u05d5\u05dd \u05e9\u05e0\u05d9",
"\u05d9\u05d5\u05dd \u05e9\u05dc\u05d9\u05e9\u05d9",
"\u05d9\u05d5\u05dd \u05e8\u05d1\u05d9\u05e2\u05d9",
"\u05d9\u05d5\u05dd \u05d7\u05de\u05d9\u05e9\u05d9",
"\u05d9\u05d5\u05dd \u05e9\u05d9\u05e9\u05d9",
"\u05d9\u05d5\u05dd \u05e9\u05d1\u05ea",
}
},
{ "islamic.DayNarrows",
new String[] {
"\u05d0\u05f3",
"\u05d1\u05f3",
"\u05d2\u05f3",
"\u05d3\u05f3",
"\u05d4\u05f3",
"\u05d5\u05f3",
"\u05e9\u05f3",
}
},
{ "islamic.Eras",
new String[] {
"",
"\u05e9\u05e0\u05ea \u05d4\u05d9\u05d2\u05f3\u05e8\u05d4",
}
},
{ "islamic.MonthAbbreviations",
new String[] {
"\u05de\u05d5\u05d7\u05e8\u05dd",
"\u05e6\u05e4\u05e8",
"\u05e8\u05d1\u05d9\u05e2 \u05d0\u05f3",
"\u05e8\u05d1\u05d9\u05e2 \u05d1\u05f3",
"\u05d2\u05f3\u05d5\u05de\u05d0\u05d3\u05d0 \u05d0\u05f3",
"\u05d2\u05f3\u05d5\u05de\u05d0\u05d3\u05d0 \u05d1\u05f3",
"\u05e8\u05d2\u05f3\u05d1",
"\u05e9\u05e2\u05d1\u05d0\u05df",
"\u05e8\u05de\u05d3\u05d0\u05df",
"\u05e9\u05d5\u05d5\u05d0\u05dc",
"\u05d3\u05f3\u05d5 \u05d0\u05dc\u05be\u05e7\u05e2\u05d3\u05d4",
"\u05d3\u05f3\u05d5 \u05d0\u05dc\u05be\u05d7\u05d9\u05d2\u05f3\u05d4",
"",
}
},
{ "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",
"\u05e6\u05e4\u05e8",
"\u05e8\u05d1\u05d9\u05e2 \u05d0\u05dc-\u05d0\u05d5\u05d5\u05dc",
"\u05e8\u05d1\u05d9\u05e2 \u05d0-\u05ea\u05f3\u05d0\u05e0\u05d9",
"\u05d2\u05f3\u05d5\u05de\u05d0\u05d3\u05d0 \u05d0\u05dc-\u05d0\u05d5\u05dc\u05d0",
"\u05d2\u05f3\u05d5\u05de\u05d0\u05d3\u05d0 \u05d0-\u05ea\u05f3\u05d0\u05e0\u05d9\u05d4",
"\u05e8\u05d2\u05f3\u05d1",
"\u05e9\u05e2\u05d1\u05d0\u05df",
"\u05e8\u05d0\u05de\u05d3\u05df",
"\u05e8\u05de\u05d3\u05d0\u05df",
"\u05e9\u05d5\u05d5\u05d0\u05dc",
"\u05d6\u05d5 \u05d0\u05dc-QI'DAH",
"\u05d6\u05d5 \u05d0\u05dc-\u05d7\u05d9\u05d2\u05f3\u05d4",
"\u05d3\u05f3\u05d5 \u05d0\u05dc\u05be\u05e7\u05e2\u05d3\u05d4",
"\u05d3\u05f3\u05d5 \u05d0\u05dc\u05be\u05d7\u05d9\u05d2\u05f3\u05d4",
"",
}
},
{ "islamic.QuarterAbbreviations",
new String[] {
"\u05e8\u05d1\u05e2\u05d5\u05df 1",
"\u05e8\u05d1\u05e2\u05d5\u05df 2",
"\u05e8\u05d1\u05e2\u05d5\u05df 3",
"\u05e8\u05d1\u05e2\u05d5\u05df 4",
}
},
{ "islamic.QuarterNames",
new String[] {
"\u05e8\u05d1\u05e2\u05d5\u05df 1",
"\u05e8\u05d1\u05e2\u05d5\u05df 2",
"\u05e8\u05d1\u05e2\u05d5\u05df 3",
"\u05e8\u05d1\u05e2\u05d5\u05df 4",
}
},
{ "islamic.QuarterNarrows",
new String[] {
"1",
"2",
"3",
"4",
}
},
{ "islamic.TimePatterns",
new String[] {
"H:mm:ss zzzz",
"H:mm:ss z",
"H:mm:ss",
"H:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"\u05dc\u05e4\u05e0\u05d4\u05f4\u05e6",
"\u05d0\u05d7\u05d4\u05f4\u05e6",
}
},
{ "islamic.long.Eras",
new String[] {
"",
"\u05e9\u05e0\u05ea \u05d4\u05d9\u05d2\u05f3\u05e8\u05d4",
}
},
{ "islamic.narrow.Eras",
new String[] {
"",
"\u05e9\u05e0\u05ea \u05d4\u05d9\u05d2\u05f3\u05e8\u05d4",
}
},
{ "islamic.short.Eras",
new String[] {
"",
"\u05e9\u05e0\u05ea \u05d4\u05d9\u05d2\u05f3\u05e8\u05d4",
}
},
{ "java.time.buddhist.DatePatterns",
new String[] {
"EEEE, d \u05d1MMMM y G",
"d \u05d1MMMM y G",
"d \u05d1MMM y G",
"d.M.y GGGGG",
}
},
{ "java.time.islamic.DatePatterns",
new String[] {
"EEEE, d \u05d1MMMM y G",
"d \u05d1MMMM y G",
"d \u05d1MMM y G",
"dd/MM/yy GGGGG",
}
},
{ "java.time.japanese.DatePatterns",
new String[] {
"EEEE, d \u05d1MMMM y G",
"d \u05d1MMMM y G",
"d \u05d1MMM y G",
"d.M.y GGGGG",
}
},
{ "java.time.long.Eras",
new String[] {
"\u05dc\u05e4\u05e0\u05d9 \u05d4\u05e1\u05e4\u05d9\u05e8\u05d4",
"\u05dc\u05e1\u05e4\u05d9\u05e8\u05d4",
}
},
{ "java.time.roc.DatePatterns",
new String[] {
"EEEE, d \u05d1MMMM y G",
"d \u05d1MMMM y G",
"d \u05d1MMM y G",
"d.M.y GGGGG",
}
},
{ "java.time.short.Eras",
new String[] {
"\u05dc\u05e1\u05d4\"\u05e0",
"\u05dc\u05e4\u05e1\u05d4\"\u05e0",
}
},
{ "roc.AmPmMarkers",
new String[] {
"\u05dc\u05e4\u05e0\u05d4\u05f4\u05e6",
"\u05d0\u05d7\u05d4\u05f4\u05e6",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, d \u05d1MMMM y GGGG",
"d \u05d1MMMM y GGGG",
"d \u05d1MMM y GGGG",
"d.M.y G",
}
},
{ "roc.DayAbbreviations",
new String[] {
"\u05d9\u05d5\u05dd \u05d0\u05f3",
"\u05d9\u05d5\u05dd \u05d1\u05f3",
"\u05d9\u05d5\u05dd \u05d2\u05f3",
"\u05d9\u05d5\u05dd \u05d3\u05f3",
"\u05d9\u05d5\u05dd \u05d4\u05f3",
"\u05d9\u05d5\u05dd \u05d5\u05f3",
"\u05e9\u05d1\u05ea",
}
},
{ "roc.DayNames",
new String[] {
"\u05d9\u05d5\u05dd \u05e8\u05d0\u05e9\u05d5\u05df",
"\u05d9\u05d5\u05dd \u05e9\u05e0\u05d9",
"\u05d9\u05d5\u05dd \u05e9\u05dc\u05d9\u05e9\u05d9",
"\u05d9\u05d5\u05dd \u05e8\u05d1\u05d9\u05e2\u05d9",
"\u05d9\u05d5\u05dd \u05d7\u05de\u05d9\u05e9\u05d9",
"\u05d9\u05d5\u05dd \u05e9\u05d9\u05e9\u05d9",
"\u05d9\u05d5\u05dd \u05e9\u05d1\u05ea",
}
},
{ "roc.DayNarrows",
new String[] {
"\u05d0\u05f3",
"\u05d1\u05f3",
"\u05d2\u05f3",
"\u05d3\u05f3",
"\u05d4\u05f3",
"\u05d5\u05f3",
"\u05e9\u05f3",
}
},
{ "roc.MonthAbbreviations",
new String[] {
"\u05d9\u05e0\u05d5\u05f3",
"\u05e4\u05d1\u05e8\u05f3",
"\u05de\u05e8\u05e5",
"\u05d0\u05e4\u05e8\u05f3",
"\u05de\u05d0\u05d9",
"\u05d9\u05d5\u05e0\u05d9",
"\u05d9\u05d5\u05dc\u05d9",
"\u05d0\u05d5\u05d2\u05f3",
"\u05e1\u05e4\u05d8\u05f3",
"\u05d0\u05d5\u05e7\u05f3",
"\u05e0\u05d5\u05d1\u05f3",
"\u05d3\u05e6\u05de\u05f3",
"",
}
},
{ "roc.MonthNames",
new String[] {
"\u05d9\u05e0\u05d5\u05d0\u05e8",
"\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8",
"\u05de\u05e8\u05e5",
"\u05d0\u05e4\u05e8\u05d9\u05dc",
"\u05de\u05d0\u05d9",
"\u05d9\u05d5\u05e0\u05d9",
"\u05d9\u05d5\u05dc\u05d9",
"\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8",
"\u05e1\u05e4\u05d8\u05de\u05d1\u05e8",
"\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8",
"\u05e0\u05d5\u05d1\u05de\u05d1\u05e8",
"\u05d3\u05e6\u05de\u05d1\u05e8",
"",
}
},
{ "roc.MonthNarrows",
new String[] {
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"",
}
},
{ "roc.QuarterAbbreviations",
new String[] {
"\u05e8\u05d1\u05e2\u05d5\u05df 1",
"\u05e8\u05d1\u05e2\u05d5\u05df 2",
"\u05e8\u05d1\u05e2\u05d5\u05df 3",
"\u05e8\u05d1\u05e2\u05d5\u05df 4",
}
},
{ "roc.QuarterNames",
new String[] {
"\u05e8\u05d1\u05e2\u05d5\u05df 1",
"\u05e8\u05d1\u05e2\u05d5\u05df 2",
"\u05e8\u05d1\u05e2\u05d5\u05df 3",
"\u05e8\u05d1\u05e2\u05d5\u05df 4",
}
},
{ "roc.TimePatterns",
new String[] {
"H:mm:ss zzzz",
"H:mm:ss z",
"H:mm:ss",
"H:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"\u05dc\u05e4\u05e0\u05d4\u05f4\u05e6",
"\u05d0\u05d7\u05d4\u05f4\u05e6",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"\u05dc\u05e4\u05e0\u05d4\u05f4\u05e6",
"\u05d0\u05d7\u05d4\u05f4\u05e6",
}
},
};
}
}

View File

@ -1,167 +0,0 @@
/*
* 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.
*/
/*
* 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.
*/
// Note: this file has been generated by a tool.
package sun.text.resources.ext;
import sun.util.resources.OpenListResourceBundle;
public class JavaTimeSupplementary_iw_IL extends OpenListResourceBundle {
@Override
protected final Object[][] getContents() {
return new Object[][] {
{ "QuarterNames",
new String[] {
"\u05e8\u05d1\u05e2\u05d5\u05df 1",
"\u05e8\u05d1\u05e2\u05d5\u05df 2",
"\u05e8\u05d1\u05e2\u05d5\u05df 3",
"\u05e8\u05d1\u05e2\u05d5\u05df 4",
}
},
{ "QuarterNarrows",
new String[] {
"1",
"2",
"3",
"4",
}
},
{ "calendarname.buddhist",
"\u05dc\u05d5\u05d7 \u05e9\u05e0\u05d4 \u05d1\u05d5\u05d3\u05d4\u05d9\u05e1\u05d8\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" },
{ "calendarname.islamic",
"\u05dc\u05d5\u05d7 \u05e9\u05e0\u05d4 \u05de\u05d5\u05e1\u05dc\u05de\u05d9" },
{ "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.japanese",
"\u05dc\u05d5\u05d7 \u05e9\u05e0\u05d4 \u05d9\u05e4\u05e0\u05d9" },
{ "calendarname.roc",
"\u05dc\u05d5\u05d7 \u05d4\u05e9\u05e0\u05d4 \u05d4\u05e1\u05d9\u05e0\u05d9 Minguo" },
{ "field.dayperiod",
"\u05dc\u05e4\u05d4\u05f4\u05e6/\u05d0\u05d7\u05d4\u05f4\u05e6" },
{ "field.era",
"\u05ea\u05e7\u05d5\u05e4\u05d4" },
{ "field.hour",
"\u05e9\u05e2\u05d4" },
{ "field.minute",
"\u05d3\u05e7\u05d4" },
{ "field.month",
"\u05d7\u05d5\u05d3\u05e9" },
{ "field.second",
"\u05e9\u05e0\u05d9\u05d9\u05d4" },
{ "field.week",
"\u05e9\u05d1\u05d5\u05e2" },
{ "field.weekday",
"\u05d9\u05d5\u05dd \u05d1\u05e9\u05d1\u05d5\u05e2" },
{ "field.year",
"\u05e9\u05e0\u05d4" },
{ "field.zone",
"\u05d0\u05d6\u05d5\u05e8" },
{ "islamic.Eras",
new String[] {
"",
"\u05e9\u05e0\u05ea \u05d4\u05d9\u05d2\u05f3\u05e8\u05d4",
}
},
{ "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.short.Eras",
new String[] {
"",
"\u05e9\u05e0\u05ea \u05d4\u05d9\u05d2\u05f3\u05e8\u05d4",
}
},
{ "java.time.long.Eras",
new String[] {
"\u05dc\u05e4\u05e0\u05d9 \u05d4\u05e1\u05e4\u05d9\u05e8\u05d4",
"\u05dc\u05e1\u05e4\u05d9\u05e8\u05d4",
}
},
{ "java.time.short.Eras",
new String[] {
"\u05dc\u05e4\u05e0\u05d4\u05f4\u05e1",
"\u05dc\u05e1\u05d4\u05f4\u05e0",
}
},
};
}
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -240,6 +240,12 @@ public class JavaTimeSupplementary_ja extends OpenListResourceBundle {
"H:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"\u5348\u524d",
"\u5348\u5f8c",
}
},
{ "islamic.long.Eras",
new String[] {
"",
@ -458,6 +464,12 @@ public class JavaTimeSupplementary_ja extends OpenListResourceBundle {
"H:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"\u5348\u524d",
"\u5348\u5f8c",
}
},
{ "roc.long.Eras",
new String[] {
"\u6c11\u56fd\u524d",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -184,6 +184,23 @@ public class JavaTimeSupplementary_ko extends OpenListResourceBundle {
"AH",
}
},
{ "islamic.MonthNames",
new String[] {
"\ubb34\ud558\ub78c",
"\uc0ac\ud30c\ub974",
"\ub77c\ube44 \uc54c \uc544\uc648",
"\ub77c\ube44 \uc54c \uc384\ub2c8",
"\uc8fc\ub9c8\ub2e4 \uc54c \uc544\uc648",
"\uc8fc\ub9c8\ub2e4 \uc54c \uc384\ub2c8",
"\ub77c\uc7a1",
"\uc250\uc544\ubc18",
"\ub77c\ub9c8\ub2e8",
"\uc250\uc648",
"\ub4c0 \uc54c \uae4c\ub2e4",
"\ub4c0 \uc54c \ud788\uc790",
"",
}
},
{ "islamic.QuarterAbbreviations",
new String[] {
"1\ubd84\uae30",
@ -224,8 +241,8 @@ public class JavaTimeSupplementary_ko extends OpenListResourceBundle {
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"\uc624\uc804",
"\uc624\ud6c4",
"AM",
"PM",
}
},
{ "islamic.narrow.Eras",
@ -434,8 +451,8 @@ public class JavaTimeSupplementary_ko extends OpenListResourceBundle {
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"\uc624\uc804",
"\uc624\ud6c4",
"AM",
"PM",
}
},
{ "roc.narrow.Eras",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -106,23 +106,25 @@ public class JavaTimeSupplementary_lt extends OpenListResourceBundle {
{ "calendarname.roc",
"Kinijos Respublikos kalendorius" },
{ "field.dayperiod",
"Iki piet\u0173 / po piet\u0173" },
"iki piet\u0173 / po piet\u0173" },
{ "field.era",
"era" },
{ "field.hour",
"Valanda" },
"valanda" },
{ "field.minute",
"Minut\u0117" },
"minut\u0117" },
{ "field.month",
"M\u0117nuo" },
"m\u0117nuo" },
{ "field.second",
"Sekund\u0117" },
"sekund\u0117" },
{ "field.week",
"Savait\u0117" },
"savait\u0117" },
{ "field.weekday",
"Savait\u0117s diena" },
"savait\u0117s diena" },
{ "field.year",
"Metai" },
"metai" },
{ "field.zone",
"Laiko juosta" },
"laiko juosta" },
{ "islamic.AmPmMarkers",
new String[] {
"prie\u0161piet",
@ -208,6 +210,12 @@ public class JavaTimeSupplementary_lt extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"prie\u0161piet",
"popiet",
}
},
{ "islamic.long.Eras",
new String[] {
"",
@ -216,7 +224,7 @@ public class JavaTimeSupplementary_lt extends OpenListResourceBundle {
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"pr.p.",
"pr. p.",
"pop.",
}
},
@ -434,6 +442,12 @@ public class JavaTimeSupplementary_lt extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"prie\u0161piet",
"popiet",
}
},
{ "roc.long.Eras",
new String[] {
"Prie\u0161 R.O.C.",
@ -442,7 +456,7 @@ public class JavaTimeSupplementary_lt extends OpenListResourceBundle {
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"pr.p.",
"pr. p.",
"pop.",
}
},

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -112,25 +112,25 @@ public class JavaTimeSupplementary_lv extends OpenListResourceBundle {
{ "calendarname.roc",
"\u0136\u012bnas Republikas kalend\u0101rs" },
{ "field.dayperiod",
"Priek\u0161pusdien\u0101/p\u0113cpusdien\u0101" },
"priek\u0161pusdien\u0101/p\u0113cpusdien\u0101" },
{ "field.era",
"\u0112ra" },
"\u0113ra" },
{ "field.hour",
"Stundas" },
"stundas" },
{ "field.minute",
"Min\u016btes" },
"min\u016btes" },
{ "field.month",
"M\u0113nesis" },
"m\u0113nesis" },
{ "field.second",
"Sekundes" },
"sekundes" },
{ "field.week",
"ned\u0113\u013ca" },
{ "field.weekday",
"ned\u0113\u013cas diena" },
{ "field.year",
"Gads" },
"gads" },
{ "field.zone",
"Laika josla" },
"laika josla" },
{ "islamic.AmPmMarkers",
new String[] {
"priek\u0161pusdien\u0101",
@ -227,6 +227,12 @@ public class JavaTimeSupplementary_lv extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"priek\u0161p.",
"p\u0113cp.",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"priek\u0161p.",
@ -407,6 +413,12 @@ public class JavaTimeSupplementary_lv extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"priek\u0161p.",
"p\u0113cp.",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"priek\u0161p.",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -102,27 +102,27 @@ public class JavaTimeSupplementary_mk extends OpenListResourceBundle {
{ "calendarname.japanese",
"\u0408\u0430\u043f\u043e\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" },
"\u041c\u0438\u043d\u0433\u0443\u043e-\u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "field.dayperiod",
"\u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0434\u043d\u0435/\u043f\u043e\u043f\u043b\u0430\u0434\u043d\u0435" },
{ "field.era",
"\u0415\u0440\u0430" },
"\u0435\u0440\u0430" },
{ "field.hour",
"\u0427\u0430\u0441" },
"\u0447\u0430\u0441" },
{ "field.minute",
"\u041c\u0438\u043d\u0443\u0442\u0430" },
"\u043c\u0438\u043d\u0443\u0442\u0430" },
{ "field.month",
"\u041c\u0435\u0441\u0435\u0446" },
"\u043c\u0435\u0441\u0435\u0446" },
{ "field.second",
"\u0421\u0435\u043a\u0443\u043d\u0434\u0430" },
"\u0441\u0435\u043a\u0443\u043d\u0434\u0430" },
{ "field.week",
"\u041d\u0435\u0434\u0435\u043b\u0430" },
"\u043d\u0435\u0434\u0435\u043b\u0430" },
{ "field.weekday",
"\u0414\u0435\u043d \u0432\u043e \u043d\u0435\u0434\u0435\u043b\u0430\u0442\u0430" },
"\u0434\u0435\u043d \u0432\u043e \u043d\u0435\u0434\u0435\u043b\u0430\u0442\u0430" },
{ "field.year",
"\u0433\u043e\u0434\u0438\u043d\u0430" },
{ "field.zone",
"\u0437\u043e\u043d\u0430" },
"\u0432\u0440\u0435\u043c\u0435\u043d\u0441\u043a\u0430 \u0437\u043e\u043d\u0430" },
{ "islamic.AmPmMarkers",
new String[] {
"\u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0434\u043d\u0435",
@ -202,6 +202,12 @@ public class JavaTimeSupplementary_mk extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"\u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0434\u043d\u0435",
"\u043f\u043e\u043f\u043b\u0430\u0434\u043d\u0435",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"\u043f\u0440\u0435\u0442.",
@ -374,6 +380,12 @@ public class JavaTimeSupplementary_mk extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"\u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0434\u043d\u0435",
"\u043f\u043e\u043f\u043b\u0430\u0434\u043d\u0435",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"\u043f\u0440\u0435\u0442.",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -206,12 +206,24 @@ public class JavaTimeSupplementary_ms extends OpenListResourceBundle {
"h:mm a",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"PG",
"PTG",
}
},
{ "islamic.long.Eras",
new String[] {
"",
"AH",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "islamic.narrow.Eras",
new String[] {
"",
@ -402,6 +414,18 @@ public class JavaTimeSupplementary_ms extends OpenListResourceBundle {
"h:mm a",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"PG",
"PTG",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
};
}
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -119,6 +119,12 @@ public class JavaTimeSupplementary_mt extends OpenListResourceBundle {
"Sena" },
{ "field.zone",
"\u017bona" },
{ "islamic.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, d 'ta'\u2019 MMMM y GGGG",
@ -228,6 +234,12 @@ public class JavaTimeSupplementary_mt extends OpenListResourceBundle {
"WK",
}
},
{ "roc.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, d 'ta'\u2019 MMMM y GGGG",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -108,19 +108,23 @@ public class JavaTimeSupplementary_nl extends OpenListResourceBundle {
{ "field.dayperiod",
"a.m./p.m." },
{ "field.era",
"Tijdperk" },
"tijdperk" },
{ "field.hour",
"Uur" },
{ "field.minute",
"Minuut" },
"minuut" },
{ "field.month",
"Maand" },
"maand" },
{ "field.second",
"Seconde" },
"seconde" },
{ "field.week",
"week" },
{ "field.weekday",
"Dag van de week" },
"dag van de week" },
{ "field.year",
"Jaar" },
"jaar" },
{ "field.zone",
"tijdzone" },
{ "islamic.AmPmMarkers",
new String[] {
"a.m.",
@ -240,6 +244,12 @@ public class JavaTimeSupplementary_nl extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
}
},
{ "islamic.long.Eras",
new String[] {
"",
@ -300,6 +310,24 @@ public class JavaTimeSupplementary_nl extends OpenListResourceBundle {
"dd-MM-yy GGGGG",
}
},
{ "java.time.japanese.long.Eras",
new String[] {
"na Christus",
"Meiji",
"Taish\u014d",
"Sh\u014dwa",
"Heisei",
}
},
{ "java.time.japanese.short.Eras",
new String[] {
"n.Chr.",
"Meiji",
"Taish\u014d",
"Sh\u014dwa",
"Heisei",
}
},
{ "java.time.long.Eras",
new String[] {
"voor Christus",
@ -369,7 +397,7 @@ public class JavaTimeSupplementary_nl extends OpenListResourceBundle {
},
{ "roc.Eras",
new String[] {
"Before R.O.C.",
"voor R.O.C.",
"Minguo",
}
},
@ -448,9 +476,15 @@ public class JavaTimeSupplementary_nl extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
}
},
{ "roc.long.Eras",
new String[] {
"Before R.O.C.",
"voor R.O.C.",
"Minguo",
}
},
@ -462,13 +496,13 @@ public class JavaTimeSupplementary_nl extends OpenListResourceBundle {
},
{ "roc.narrow.Eras",
new String[] {
"Before R.O.C.",
"voor R.O.C.",
"Minguo",
}
},
{ "roc.short.Eras",
new String[] {
"Before R.O.C.",
"voor R.O.C.",
"Minguo",
}
},

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -89,6 +89,14 @@ public class JavaTimeSupplementary_no extends OpenListResourceBundle {
"4. kvartal",
}
},
{ "QuarterNarrows",
new String[] {
"1.",
"2.",
"3.",
"4.",
}
},
{ "calendarname.buddhist",
"buddhistisk kalender" },
{ "calendarname.gregorian",
@ -98,7 +106,7 @@ public class JavaTimeSupplementary_no extends OpenListResourceBundle {
{ "calendarname.islamic",
"islamsk kalender" },
{ "calendarname.islamic-civil",
"islamsk sivil kalender" },
"islamsk kalender (tabell, sivil)" },
{ "calendarname.islamic-umalqura",
"islamsk kalender (Umm al-Qura)" },
{ "calendarname.japanese",
@ -108,23 +116,23 @@ public class JavaTimeSupplementary_no extends OpenListResourceBundle {
{ "field.dayperiod",
"AM/PM" },
{ "field.era",
"Tidsalder" },
"tidsalder" },
{ "field.hour",
"Time" },
"time" },
{ "field.minute",
"Minutt" },
"minutt" },
{ "field.month",
"M\u00e5ned" },
"m\u00e5ned" },
{ "field.second",
"Sekund" },
"sekund" },
{ "field.week",
"Uke" },
"uke" },
{ "field.weekday",
"Ukedag" },
"ukedag" },
{ "field.year",
"\u00c5r" },
"\u00e5r" },
{ "field.zone",
"Tidssone" },
"tidssone" },
{ "islamic.AmPmMarkers",
new String[] {
"a.m.",
@ -178,6 +186,40 @@ public class JavaTimeSupplementary_no extends OpenListResourceBundle {
"AH",
}
},
{ "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.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.QuarterAbbreviations",
new String[] {
"K1",
@ -196,10 +238,10 @@ public class JavaTimeSupplementary_no extends OpenListResourceBundle {
},
{ "islamic.QuarterNarrows",
new String[] {
"1",
"2",
"3",
"4",
"1.",
"2.",
"3.",
"4.",
}
},
{ "islamic.TimePatterns",
@ -210,12 +252,24 @@ public class JavaTimeSupplementary_no extends OpenListResourceBundle {
"HH.mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
}
},
{ "islamic.long.Eras",
new String[] {
"",
"AH",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "islamic.narrow.Eras",
new String[] {
"",
@ -264,10 +318,28 @@ public class JavaTimeSupplementary_no extends OpenListResourceBundle {
"d.M y G",
}
},
{ "java.time.japanese.long.Eras",
new String[] {
"etter Kristus",
"Meiji",
"Taish\u014d",
"Sh\u014dwa",
"Heisei",
}
},
{ "java.time.japanese.short.Eras",
new String[] {
"e.Kr.",
"M",
"T",
"S",
"H",
}
},
{ "java.time.long.Eras",
new String[] {
"f.Kr.",
"e.Kr.",
"f\u00f8r Kristus",
"etter Kristus",
}
},
{ "java.time.roc.DatePatterns",
@ -404,6 +476,14 @@ public class JavaTimeSupplementary_no extends OpenListResourceBundle {
"4. kvartal",
}
},
{ "roc.QuarterNarrows",
new String[] {
"1.",
"2.",
"3.",
"4.",
}
},
{ "roc.TimePatterns",
new String[] {
"HH.mm.ss zzzz",
@ -412,12 +492,24 @@ public class JavaTimeSupplementary_no extends OpenListResourceBundle {
"HH.mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
}
},
{ "roc.long.Eras",
new String[] {
"Before R.O.C.",
"Minguo",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "roc.narrow.Eras",
new String[] {
"Before R.O.C.",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -129,6 +129,12 @@ public class JavaTimeSupplementary_pl extends OpenListResourceBundle {
"rok" },
{ "field.zone",
"strefa czasowa" },
{ "islamic.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, d MMMM y GGGG",
@ -236,6 +242,12 @@ public class JavaTimeSupplementary_pl extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "java.time.buddhist.DatePatterns",
new String[] {
"EEEE, d MMMM y G",
@ -284,6 +296,12 @@ public class JavaTimeSupplementary_pl extends OpenListResourceBundle {
},
{ "java.time.short.Eras",
javatimelongEras },
{ "roc.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, d MMMM y GGGG",
@ -412,6 +430,12 @@ public class JavaTimeSupplementary_pl extends OpenListResourceBundle {
"ROC",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "roc.narrow.Eras",
new String[] {
"Przed ROC",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -105,22 +105,30 @@ public class JavaTimeSupplementary_pt extends OpenListResourceBundle {
"Calend\u00e1rio da Rep\u00fablica da China" },
{ "field.dayperiod",
"AM/PM" },
{ "field.era",
"era" },
{ "field.hour",
"Hora" },
"hora" },
{ "field.minute",
"Minuto" },
"minuto" },
{ "field.month",
"M\u00eas" },
"m\u00eas" },
{ "field.second",
"Segundo" },
"segundo" },
{ "field.week",
"Semana" },
"semana" },
{ "field.weekday",
"Dia da semana" },
"dia da semana" },
{ "field.year",
"Ano" },
"ano" },
{ "field.zone",
"Fuso hor\u00e1rio" },
"fuso hor\u00e1rio" },
{ "islamic.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, d 'de' MMMM 'de' y GGGG",
@ -206,6 +214,12 @@ public class JavaTimeSupplementary_pt extends OpenListResourceBundle {
"AH",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "islamic.narrow.Eras",
new String[] {
"",
@ -256,8 +270,8 @@ public class JavaTimeSupplementary_pt extends OpenListResourceBundle {
},
{ "java.time.long.Eras",
new String[] {
"Antes de Cristo",
"Ano do Senhor",
"antes de Cristo",
"depois de Cristo",
}
},
{ "java.time.roc.DatePatterns",
@ -274,6 +288,12 @@ public class JavaTimeSupplementary_pt extends OpenListResourceBundle {
"d.C.",
}
},
{ "roc.AmPmMarkers",
new String[] {
"AM",
"PM",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, d 'de' MMMM 'de' y GGGG",
@ -402,6 +422,12 @@ public class JavaTimeSupplementary_pt extends OpenListResourceBundle {
"R.O.C.",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "roc.narrow.Eras",
new String[] {
"Antes de R.O.C.",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -109,10 +109,21 @@ public class JavaTimeSupplementary_pt_PT extends OpenListResourceBundle {
new String[] {
"GGGG y MMMM d, EEEE",
"GGGG y MMMM d",
"d 'de' MMM, y GGGG",
"GGGG y MMM d",
"d/M/y GGGG",
}
},
{ "islamic.DayAbbreviations",
new String[] {
"domingo",
"segunda",
"ter\u00e7a",
"quarta",
"quinta",
"sexta",
"s\u00e1bado",
}
},
{ "islamic.QuarterNames",
new String[] {
"1.\u00ba trimestre",
@ -121,6 +132,12 @@ public class JavaTimeSupplementary_pt_PT extends OpenListResourceBundle {
"4.\u00ba trimestre",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a.m.",
@ -131,7 +148,7 @@ public class JavaTimeSupplementary_pt_PT extends OpenListResourceBundle {
new String[] {
"G y MMMM d, EEEE",
"G y MMMM d",
"d 'de' MMM, y G",
"G y MMM d",
"d/M/y G",
}
},
@ -139,7 +156,7 @@ public class JavaTimeSupplementary_pt_PT extends OpenListResourceBundle {
new String[] {
"G y MMMM d, EEEE",
"G y MMMM d",
"d 'de' MMM, y G",
"G y MMM d",
"d/M/y G",
}
},
@ -147,21 +164,15 @@ public class JavaTimeSupplementary_pt_PT extends OpenListResourceBundle {
new String[] {
"EEEE, d 'de' MMMM 'de' y G",
"d 'de' MMMM 'de' y G",
"d 'de' MMM, y G",
"dd/MM/y G",
"d/M/y G",
}
},
{ "java.time.long.Eras",
new String[] {
"antes de Cristo",
"depois de Cristo",
}
},
{ "java.time.roc.DatePatterns",
new String[] {
"G y MMMM d, EEEE",
"G y MMMM d",
"d 'de' MMM, y G",
"G y MMM d",
"d/M/y G",
}
},
@ -175,10 +186,21 @@ public class JavaTimeSupplementary_pt_PT extends OpenListResourceBundle {
new String[] {
"GGGG y MMMM d, EEEE",
"GGGG y MMMM d",
"d 'de' MMM, y GGGG",
"GGGG y MMM d",
"d/M/y GGGG",
}
},
{ "roc.DayAbbreviations",
new String[] {
"domingo",
"segunda",
"ter\u00e7a",
"quarta",
"quinta",
"sexta",
"s\u00e1bado",
}
},
{ "roc.QuarterNames",
new String[] {
"1.\u00ba trimestre",
@ -187,6 +209,12 @@ public class JavaTimeSupplementary_pt_PT extends OpenListResourceBundle {
"4.\u00ba trimestre",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a.m.",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -139,13 +139,13 @@ public class JavaTimeSupplementary_ro extends OpenListResourceBundle {
},
{ "islamic.DayAbbreviations",
new String[] {
"Dum",
"Lun",
"Mar",
"Mie",
"Joi",
"Vin",
"S\u00e2m",
"dum.",
"lun.",
"mar.",
"mie.",
"joi",
"vin.",
"s\u00e2m.",
}
},
{ "islamic.DayNames",
@ -208,6 +208,12 @@ public class JavaTimeSupplementary_ro extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
}
},
{ "islamic.long.Eras",
new String[] {
"",
@ -304,13 +310,13 @@ public class JavaTimeSupplementary_ro extends OpenListResourceBundle {
},
{ "roc.DayAbbreviations",
new String[] {
"Dum",
"Lun",
"Mar",
"Mie",
"Joi",
"Vin",
"S\u00e2m",
"dum.",
"lun.",
"mar.",
"mie.",
"joi",
"vin.",
"s\u00e2m.",
}
},
{ "roc.DayNames",
@ -410,6 +416,12 @@ public class JavaTimeSupplementary_ro extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"a.m.",
"p.m.",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a.m.",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -108,23 +108,29 @@ public class JavaTimeSupplementary_ru extends OpenListResourceBundle {
{ "field.dayperiod",
"\u0414\u041f/\u041f\u041f" },
{ "field.era",
"\u042d\u0440\u0430" },
"\u044d\u0440\u0430" },
{ "field.hour",
"\u0427\u0430\u0441" },
"\u0447\u0430\u0441" },
{ "field.minute",
"\u041c\u0438\u043d\u0443\u0442\u0430" },
"\u043c\u0438\u043d\u0443\u0442\u0430" },
{ "field.month",
"\u041c\u0435\u0441\u044f\u0446" },
"\u043c\u0435\u0441\u044f\u0446" },
{ "field.second",
"\u0421\u0435\u043a\u0443\u043d\u0434\u0430" },
"\u0441\u0435\u043a\u0443\u043d\u0434\u0430" },
{ "field.week",
"\u041d\u0435\u0434\u0435\u043b\u044f" },
"\u043d\u0435\u0434\u0435\u043b\u044f" },
{ "field.weekday",
"\u0414\u0435\u043d\u044c \u043d\u0435\u0434\u0435\u043b\u0438" },
"\u0434\u0435\u043d\u044c \u043d\u0435\u0434\u0435\u043b\u0438" },
{ "field.year",
"\u0413\u043e\u0434" },
"\u0433\u043e\u0434" },
{ "field.zone",
"\u0427\u0430\u0441\u043e\u0432\u043e\u0439 \u043f\u043e\u044f\u0441" },
"\u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u043f\u043e\u044f\u0441" },
{ "islamic.AmPmMarkers",
new String[] {
"\u0414\u041f",
"\u041f\u041f",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, d MMMM y '\u0433'. GGGG",
@ -232,10 +238,16 @@ public class JavaTimeSupplementary_ru extends OpenListResourceBundle {
"H:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"\u0414\u041f",
"\u041f\u041f",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"AM",
"PM",
"\u0414\u041f",
"\u041f\u041f",
}
},
{ "java.time.buddhist.DatePatterns",
@ -276,7 +288,7 @@ public class JavaTimeSupplementary_ru extends OpenListResourceBundle {
},
{ "java.time.japanese.long.Eras",
new String[] {
"\u043d. \u044d.",
"\u043e\u0442 \u0420\u043e\u0436\u0434\u0435\u0441\u0442\u0432\u0430 \u0425\u0440\u0438\u0441\u0442\u043e\u0432\u0430",
"\u042d\u043f\u043e\u0445\u0430 \u041c\u044d\u0439\u0434\u0437\u0438",
"\u042d\u043f\u043e\u0445\u0430 \u0422\u0430\u0439\u0441\u044c\u043e",
"\u0421\u044c\u043e\u0432\u0430",
@ -294,8 +306,8 @@ public class JavaTimeSupplementary_ru extends OpenListResourceBundle {
},
{ "java.time.long.Eras",
new String[] {
"\u0434\u043e \u043d. \u044d.",
"\u043d. \u044d.",
"\u0434\u043e \u0420\u043e\u0436\u0434\u0435\u0441\u0442\u0432\u0430 \u0425\u0440\u0438\u0441\u0442\u043e\u0432\u0430",
"\u043e\u0442 \u0420\u043e\u0436\u0434\u0435\u0441\u0442\u0432\u0430 \u0425\u0440\u0438\u0441\u0442\u043e\u0432\u0430",
}
},
{ "java.time.roc.DatePatterns",
@ -312,6 +324,12 @@ public class JavaTimeSupplementary_ru extends OpenListResourceBundle {
"\u043d.\u044d.",
}
},
{ "roc.AmPmMarkers",
new String[] {
"\u0414\u041f",
"\u041f\u041f",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, d MMMM y '\u0433'. GGGG",
@ -363,11 +381,11 @@ public class JavaTimeSupplementary_ru extends OpenListResourceBundle {
new String[] {
"\u044f\u043d\u0432.",
"\u0444\u0435\u0432\u0440.",
"\u043c\u0430\u0440\u0442\u0430",
"\u043c\u0430\u0440.",
"\u0430\u043f\u0440.",
"\u043c\u0430\u044f",
"\u0438\u044e\u043d\u044f",
"\u0438\u044e\u043b\u044f",
"\u0438\u044e\u043d.",
"\u0438\u044e\u043b.",
"\u0430\u0432\u0433.",
"\u0441\u0435\u043d\u0442.",
"\u043e\u043a\u0442.",
@ -434,6 +452,12 @@ public class JavaTimeSupplementary_ru extends OpenListResourceBundle {
"H:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"\u0414\u041f",
"\u041f\u041f",
}
},
{ "roc.long.Eras",
new String[] {
"Before R.O.C.",
@ -442,8 +466,8 @@ public class JavaTimeSupplementary_ru extends OpenListResourceBundle {
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"AM",
"PM",
"\u0414\u041f",
"\u041f\u041f",
}
},
{ "roc.narrow.Eras",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -117,15 +117,15 @@ public class JavaTimeSupplementary_sk extends OpenListResourceBundle {
"\u010dasov\u00e9 p\u00e1smo" },
{ "islamic.AmPmMarkers",
new String[] {
"dopoludnia",
"odpoludnia",
"AM",
"PM",
}
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, d. MMMM y GGGG",
"d. MMMM y GGGG",
"d.M.y GGGG",
"EEEE, d. M. y GGGG",
"d. M. y GGGG",
"d. M. y GGGG",
"d.M.y G",
}
},
@ -153,13 +153,13 @@ public class JavaTimeSupplementary_sk extends OpenListResourceBundle {
},
{ "islamic.DayNarrows",
new String[] {
"N",
"P",
"U",
"S",
"\u0160",
"P",
"S",
"n",
"p",
"u",
"s",
"\u0161",
"p",
"s",
}
},
{ "islamic.QuarterAbbreviations",
@ -196,31 +196,31 @@ public class JavaTimeSupplementary_sk extends OpenListResourceBundle {
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"dop.",
"odp.",
"AM",
"PM",
}
},
{ "java.time.buddhist.DatePatterns",
new String[] {
"EEEE, d. MMMM y G",
"d. MMMM y G",
"d.M.y G",
"EEEE, d. M. y G",
"d. M. y G",
"d. M. y G",
"d.M.y GGGGG",
}
},
{ "java.time.islamic.DatePatterns",
new String[] {
"EEEE, d. MMMM y G",
"d. MMMM y G",
"d.M.y G",
"EEEE, d. M. y G",
"d. M. y G",
"d. M. y G",
"d.M.y GGGGG",
}
},
{ "java.time.japanese.DatePatterns",
new String[] {
"EEEE, d. MMMM y G",
"d. MMMM y G",
"d.M.y G",
"EEEE, d. M. y G",
"d. M. y G",
"d. M. y G",
"d.M.y GGGGG",
}
},
@ -232,9 +232,9 @@ public class JavaTimeSupplementary_sk extends OpenListResourceBundle {
},
{ "java.time.roc.DatePatterns",
new String[] {
"EEEE, d. MMMM y G",
"d. MMMM y G",
"d.M.y G",
"EEEE, d. M. y G",
"d. M. y G",
"d. M. y G",
"d.M.y GGGGG",
}
},
@ -246,15 +246,15 @@ public class JavaTimeSupplementary_sk extends OpenListResourceBundle {
},
{ "roc.AmPmMarkers",
new String[] {
"dopoludnia",
"odpoludnia",
"AM",
"PM",
}
},
{ "roc.DatePatterns",
new String[] {
"EEEE, d. MMMM y GGGG",
"d. MMMM y GGGG",
"d.M.y GGGG",
"EEEE, d. M. y GGGG",
"d. M. y GGGG",
"d. M. y GGGG",
"d.M.y G",
}
},
@ -282,13 +282,13 @@ public class JavaTimeSupplementary_sk extends OpenListResourceBundle {
},
{ "roc.DayNarrows",
new String[] {
"N",
"P",
"U",
"S",
"\u0160",
"P",
"S",
"n",
"p",
"u",
"s",
"\u0161",
"p",
"s",
}
},
{ "roc.MonthAbbreviations",
@ -368,8 +368,8 @@ public class JavaTimeSupplementary_sk extends OpenListResourceBundle {
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"dop.",
"odp.",
"AM",
"PM",
}
},
};

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -73,6 +73,14 @@ public class JavaTimeSupplementary_sl extends OpenListResourceBundle {
@Override
protected final Object[][] getContents() {
return new Object[][] {
{ "QuarterAbbreviations",
new String[] {
"1. \u010det.",
"2. \u010det.",
"3. \u010det.",
"4. \u010det.",
}
},
{ "QuarterNames",
new String[] {
"1. \u010detrtletje",
@ -98,23 +106,23 @@ public class JavaTimeSupplementary_sl extends OpenListResourceBundle {
{ "field.dayperiod",
"\u010cas dneva" },
{ "field.era",
"Doba" },
"doba" },
{ "field.hour",
"Ura" },
"ura" },
{ "field.minute",
"Minuta" },
"minuta" },
{ "field.month",
"Mesec" },
"mesec" },
{ "field.second",
"Sekunda" },
"sekunda" },
{ "field.week",
"Teden" },
"teden" },
{ "field.weekday",
"Dan v tednu" },
"dan v tednu" },
{ "field.year",
"Leto" },
"leto" },
{ "field.zone",
"\u010casovni pas" },
"\u010dasovni pas" },
{ "islamic.AmPmMarkers",
new String[] {
"dop.",
@ -164,10 +172,10 @@ public class JavaTimeSupplementary_sl extends OpenListResourceBundle {
},
{ "islamic.QuarterAbbreviations",
new String[] {
"Q1",
"Q2",
"Q3",
"Q4",
"1. \u010det.",
"2. \u010det.",
"3. \u010det.",
"4. \u010det.",
}
},
{ "islamic.QuarterNames",
@ -194,6 +202,12 @@ public class JavaTimeSupplementary_sl extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"dop.",
"pop.",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"d",
@ -226,7 +240,7 @@ public class JavaTimeSupplementary_sl extends OpenListResourceBundle {
},
{ "java.time.long.Eras",
new String[] {
"pred na\u0161im \u0161tetjem",
"pred Kristusom",
"na\u0161e \u0161tetje",
}
},
@ -344,10 +358,10 @@ public class JavaTimeSupplementary_sl extends OpenListResourceBundle {
},
{ "roc.QuarterAbbreviations",
new String[] {
"Q1",
"Q2",
"Q3",
"Q4",
"1. \u010det.",
"2. \u010det.",
"3. \u010det.",
"4. \u010det.",
}
},
{ "roc.QuarterNames",
@ -366,6 +380,12 @@ public class JavaTimeSupplementary_sl extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"dop.",
"pop.",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"d",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -106,7 +106,7 @@ public class JavaTimeSupplementary_sq extends OpenListResourceBundle {
{ "calendarname.roc",
"kalendar minguo (kinez)" },
{ "field.dayperiod",
"periudh\u00eb e dit\u00ebs" },
"paradite/pasdite" },
{ "field.era",
"er\u00eb" },
{ "field.hour",
@ -127,8 +127,8 @@ public class JavaTimeSupplementary_sq extends OpenListResourceBundle {
"brezi orar" },
{ "islamic.AmPmMarkers",
new String[] {
"paradite",
"pasdite",
"e paradites",
"e pasdites",
}
},
{ "islamic.DatePatterns",
@ -198,16 +198,22 @@ public class JavaTimeSupplementary_sq extends OpenListResourceBundle {
},
{ "islamic.TimePatterns",
new String[] {
"HH:mm:ss zzzz",
"HH:mm:ss z",
"HH:mm:ss",
"HH:mm",
"h:mm:ss a, zzzz",
"h:mm:ss a, z",
"h:mm:ss a",
"h:mm a",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"e paradites",
"e pasdites",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"AM",
"PM",
"e paradites",
"e pasdites",
}
},
{ "java.time.buddhist.DatePatterns",
@ -256,8 +262,8 @@ public class JavaTimeSupplementary_sq extends OpenListResourceBundle {
},
{ "roc.AmPmMarkers",
new String[] {
"paradite",
"pasdite",
"e paradites",
"e pasdites",
}
},
{ "roc.DatePatterns",
@ -370,16 +376,22 @@ public class JavaTimeSupplementary_sq extends OpenListResourceBundle {
},
{ "roc.TimePatterns",
new String[] {
"HH:mm:ss zzzz",
"HH:mm:ss z",
"HH:mm:ss",
"HH:mm",
"h:mm:ss a, zzzz",
"h:mm:ss a, z",
"h:mm:ss a",
"h:mm a",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"e paradites",
"e pasdites",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"AM",
"PM",
"e paradites",
"e pasdites",
}
},
};

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -83,10 +83,10 @@ public class JavaTimeSupplementary_sr extends OpenListResourceBundle {
},
{ "QuarterNames",
new String[] {
"\u041f\u0440\u0432\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435",
"\u0414\u0440\u0443\u0433\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435",
"\u0422\u0440\u0435\u045b\u0435 \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435",
"\u0427\u0435\u0442\u0432\u0440\u0442\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435",
"\u043f\u0440\u0432\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"\u0434\u0440\u0443\u0433\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"\u0442\u0440\u0435\u045b\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"\u0447\u0435\u0442\u0432\u0440\u0442\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
}
},
{ "QuarterNarrows",
@ -211,10 +211,10 @@ public class JavaTimeSupplementary_sr extends OpenListResourceBundle {
},
{ "islamic.QuarterNames",
new String[] {
"\u041f\u0440\u0432\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435",
"\u0414\u0440\u0443\u0433\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435",
"\u0422\u0440\u0435\u045b\u0435 \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435",
"\u0427\u0435\u0442\u0432\u0440\u0442\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435",
"\u043f\u0440\u0432\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"\u0434\u0440\u0443\u0433\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"\u0442\u0440\u0435\u045b\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"\u0447\u0435\u0442\u0432\u0440\u0442\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
}
},
{ "islamic.QuarterNarrows",
@ -233,12 +233,24 @@ public class JavaTimeSupplementary_sr extends OpenListResourceBundle {
"HH.mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435",
"\u043f\u043e \u043f\u043e\u0434\u043d\u0435",
}
},
{ "islamic.long.Eras",
new String[] {
"",
"\u0410\u0425",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "islamic.narrow.Eras",
new String[] {
"",
@ -289,7 +301,7 @@ public class JavaTimeSupplementary_sr extends OpenListResourceBundle {
},
{ "java.time.japanese.long.Eras",
new String[] {
"\u041d\u043e\u0432\u0435 \u0435\u0440\u0435",
"\u043d\u043e\u0432\u0435 \u0435\u0440\u0435",
"\u041c\u0435\u0438\u0452\u0438",
"\u0422\u0430\u0438\u0448\u043e",
"\u0428\u043e\u0432\u0430",
@ -307,8 +319,8 @@ public class JavaTimeSupplementary_sr extends OpenListResourceBundle {
},
{ "java.time.long.Eras",
new String[] {
"\u041f\u0440\u0435 \u043d\u043e\u0432\u0435 \u0435\u0440\u0435",
"\u041d\u043e\u0432\u0435 \u0435\u0440\u0435",
"\u043f\u0440\u0435 \u043d\u043e\u0432\u0435 \u0435\u0440\u0435",
"\u043d\u043e\u0432\u0435 \u0435\u0440\u0435",
}
},
{ "java.time.roc.DatePatterns",
@ -439,10 +451,10 @@ public class JavaTimeSupplementary_sr extends OpenListResourceBundle {
},
{ "roc.QuarterNames",
new String[] {
"\u041f\u0440\u0432\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435",
"\u0414\u0440\u0443\u0433\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435",
"\u0422\u0440\u0435\u045b\u0435 \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435",
"\u0427\u0435\u0442\u0432\u0440\u0442\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435",
"\u043f\u0440\u0432\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"\u0434\u0440\u0443\u0433\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"\u0442\u0440\u0435\u045b\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"\u0447\u0435\u0442\u0432\u0440\u0442\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
}
},
{ "roc.QuarterNarrows",
@ -461,12 +473,24 @@ public class JavaTimeSupplementary_sr extends OpenListResourceBundle {
"HH.mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435",
"\u043f\u043e \u043f\u043e\u0434\u043d\u0435",
}
},
{ "roc.long.Eras",
new String[] {
"\u041f\u0440\u0435 \u0420\u041a",
"\u0420\u041a",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "roc.narrow.Eras",
new String[] {
"\u041f\u0440\u0435 \u0420\u041a",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -83,10 +83,10 @@ public class JavaTimeSupplementary_sr_Latn extends OpenListResourceBundle {
},
{ "QuarterNames",
new String[] {
"Prvo tromese\u010dje",
"Drugo tromese\u010dje",
"Tre\u0107e tromese\u010dje",
"\u010cetvrto tromese\u010dje",
"prvi kvartal",
"drugi kvartal",
"tre\u0107i kvartal",
"\u010detvrti kvartal",
}
},
{ "calendarname.buddhist",
@ -195,10 +195,16 @@ public class JavaTimeSupplementary_sr_Latn extends OpenListResourceBundle {
},
{ "islamic.QuarterNames",
new String[] {
"Prvo tromese\u010dje",
"Drugo tromese\u010dje",
"Tre\u0107e tromese\u010dje",
"\u010cetvrto tromese\u010dje",
"prvi kvartal",
"drugi kvartal",
"tre\u0107i kvartal",
"\u010detvrti kvartal",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"pre podne",
"po podne",
}
},
{ "islamic.long.Eras",
@ -233,7 +239,7 @@ public class JavaTimeSupplementary_sr_Latn extends OpenListResourceBundle {
},
{ "java.time.japanese.long.Eras",
new String[] {
"Nove ere",
"nove ere",
"Mei\u0111i",
"Tai\u0161o",
"\u0160ova",
@ -251,8 +257,8 @@ public class JavaTimeSupplementary_sr_Latn extends OpenListResourceBundle {
},
{ "java.time.long.Eras",
new String[] {
"Pre nove ere",
"Nove ere",
"pre nove ere",
"nove ere",
}
},
{ "java.time.short.Eras",
@ -367,10 +373,16 @@ public class JavaTimeSupplementary_sr_Latn extends OpenListResourceBundle {
},
{ "roc.QuarterNames",
new String[] {
"Prvo tromese\u010dje",
"Drugo tromese\u010dje",
"Tre\u0107e tromese\u010dje",
"\u010cetvrto tromese\u010dje",
"prvi kvartal",
"drugi kvartal",
"tre\u0107i kvartal",
"\u010detvrti kvartal",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"pre podne",
"po podne",
}
},
{ "roc.long.Eras",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -111,22 +111,24 @@ public class JavaTimeSupplementary_sv extends OpenListResourceBundle {
"kinesiska republikens kalender" },
{ "field.dayperiod",
"fm/em" },
{ "field.era",
"era" },
{ "field.hour",
"Timme" },
"timme" },
{ "field.minute",
"Minut" },
"minut" },
{ "field.month",
"M\u00e5nad" },
"m\u00e5nad" },
{ "field.second",
"Sekund" },
"sekund" },
{ "field.week",
"Vecka" },
"vecka" },
{ "field.weekday",
"Veckodag" },
"veckodag" },
{ "field.year",
"\u00c5r" },
"\u00e5r" },
{ "field.zone",
"Tidszon" },
"tidszon" },
{ "islamic.AmPmMarkers",
new String[] {
"fm",
@ -229,6 +231,12 @@ public class JavaTimeSupplementary_sv extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"fm",
"em",
}
},
{ "islamic.long.Eras",
new String[] {
"",
@ -237,8 +245,8 @@ public class JavaTimeSupplementary_sv extends OpenListResourceBundle {
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"f",
"e",
"fm",
"em",
}
},
{ "islamic.narrow.Eras",
@ -289,6 +297,24 @@ public class JavaTimeSupplementary_sv extends OpenListResourceBundle {
"G y-MM-dd",
}
},
{ "java.time.japanese.long.Eras",
new String[] {
"efter Kristus",
"Meiji",
"Taish\u014d",
"Sh\u014dwa",
"Heisei",
}
},
{ "java.time.japanese.short.Eras",
new String[] {
"e.Kr.",
"Meiji",
"Taish\u014d",
"Sh\u014dwa",
"Heisei",
}
},
{ "java.time.long.Eras",
javatimelongEras },
{ "java.time.roc.DatePatterns",
@ -429,6 +455,12 @@ public class JavaTimeSupplementary_sv extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"fm",
"em",
}
},
{ "roc.long.Eras",
new String[] {
"f\u00f6re R.K.",
@ -437,8 +469,8 @@ public class JavaTimeSupplementary_sv extends OpenListResourceBundle {
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"f",
"e",
"fm",
"em",
}
},
{ "roc.narrow.Eras",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -182,10 +182,10 @@ public class JavaTimeSupplementary_th extends OpenListResourceBundle {
new String[] {
"\u0e21\u0e38\u0e2e\u0e31\u0e23.",
"\u0e40\u0e28\u0e32\u0e30.",
"\u0e23\u0e2d\u0e1a\u0e35 1",
"\u0e23\u0e2d\u0e1a\u0e35 2",
"\u0e0d\u0e38\u0e21\u0e32 1",
"\u0e0d\u0e38\u0e21\u0e32 2",
"\u0e23\u0e2d\u0e1a\u0e35 I",
"\u0e23\u0e2d\u0e1a\u0e35 II",
"\u0e08\u0e38\u0e21\u0e32\u0e14\u0e32 I",
"\u0e08\u0e38\u0e21\u0e32\u0e14\u0e32 II",
"\u0e40\u0e23\u0e32\u0e30.",
"\u0e0a\u0e30\u0e2d\u0e4c.",
"\u0e40\u0e23\u0e32\u0e30\u0e21\u0e30.",
@ -244,12 +244,24 @@ public class JavaTimeSupplementary_th extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"\u0e01\u0e48\u0e2d\u0e19\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07",
"\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07",
}
},
{ "islamic.long.Eras",
new String[] {
"",
"\u0e2e\u0e34\u0e08\u0e40\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e28\u0e31\u0e01\u0e23\u0e32\u0e0a",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "islamic.narrow.Eras",
new String[] {
"",
@ -464,12 +476,24 @@ public class JavaTimeSupplementary_th extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"\u0e01\u0e48\u0e2d\u0e19\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07",
"\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07",
}
},
{ "roc.long.Eras",
new String[] {
"\u0e1b\u0e35\u0e01\u0e48\u0e2d\u0e19\u0e44\u0e15\u0e49\u0e2b\u0e27\u0e31\u0e19",
"\u0e44\u0e15\u0e49\u0e2b\u0e27\u0e31\u0e19",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"a",
"p",
}
},
{ "roc.narrow.Eras",
new String[] {
"\u0e1b\u0e35\u0e01\u0e48\u0e2d\u0e19\u0e44\u0e15\u0e49\u0e2b\u0e27\u0e31\u0e19",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -252,6 +252,12 @@ public class JavaTimeSupplementary_tr extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"\u00d6\u00d6",
"\u00d6S",
}
},
{ "islamic.long.Eras",
new String[] {
"",
@ -468,6 +474,12 @@ public class JavaTimeSupplementary_tr extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"\u00d6\u00d6",
"\u00d6S",
}
},
{ "roc.long.Eras",
new String[] {
"Before R.O.C.",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -75,54 +75,54 @@ public class JavaTimeSupplementary_uk extends OpenListResourceBundle {
return new Object[][] {
{ "QuarterAbbreviations",
new String[] {
"I \u043a\u0432.",
"II \u043a\u0432.",
"III \u043a\u0432.",
"IV \u043a\u0432.",
"1-\u0439 \u043a\u0432.",
"2-\u0439 \u043a\u0432.",
"3-\u0439 \u043a\u0432.",
"4-\u0439 \u043a\u0432.",
}
},
{ "QuarterNames",
new String[] {
"I \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"II \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"III \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"IV \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"1-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"2-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"3-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"4-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
}
},
{ "calendarname.buddhist",
"\u0411\u0443\u0434\u0434\u0456\u0439\u0441\u044c\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
"\u0431\u0443\u0434\u0434\u0456\u0439\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" },
"\u0433\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" },
"\u0433\u0440\u0438\u0433\u043e\u0440\u0456\u0430\u043d\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" },
"\u043c\u0443\u0441\u0443\u043b\u044c\u043c\u0430\u043d\u0441\u044c\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "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" },
"\u043c\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.japanese",
"\u042f\u043f\u043e\u043d\u0441\u044c\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
"\u044f\u043f\u043e\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 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
"\u043a\u0438\u0442\u0430\u0439\u0441\u044c\u043a\u0438\u0439 \u0433\u0440\u0438\u0433\u043e\u0440\u0456\u0430\u043d\u0441\u044c\u043a\u0438\u0439 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
{ "field.dayperiod",
"\u0427\u0430\u0441\u0442\u0438\u043d\u0430 \u0434\u043e\u0431\u0438" },
"\u0447\u0430\u0441\u0442\u0438\u043d\u0430 \u0434\u043e\u0431\u0438" },
{ "field.era",
"\u0415\u0440\u0430" },
"\u0435\u0440\u0430" },
{ "field.hour",
"\u0413\u043e\u0434\u0438\u043d\u0430" },
"\u0433\u043e\u0434\u0438\u043d\u0430" },
{ "field.minute",
"\u0425\u0432\u0438\u043b\u0438\u043d\u0430" },
"\u0445\u0432\u0438\u043b\u0438\u043d\u0430" },
{ "field.month",
"\u041c\u0456\u0441\u044f\u0446\u044c" },
"\u043c\u0456\u0441\u044f\u0446\u044c" },
{ "field.second",
"\u0421\u0435\u043a\u0443\u043d\u0434\u0430" },
"\u0441\u0435\u043a\u0443\u043d\u0434\u0430" },
{ "field.week",
"\u0422\u0438\u0436\u0434\u0435\u043d\u044c" },
"\u0442\u0438\u0436\u0434\u0435\u043d\u044c" },
{ "field.weekday",
"\u0414\u0435\u043d\u044c \u0442\u0438\u0436\u043d\u044f" },
"\u0434\u0435\u043d\u044c \u0442\u0438\u0436\u043d\u044f" },
{ "field.year",
"\u0420\u0456\u043a" },
"\u0440\u0456\u043a" },
{ "field.zone",
"\u0427\u0430\u0441\u043e\u0432\u0438\u0439 \u043f\u043e\u044f\u0441" },
"\u0447\u0430\u0441\u043e\u0432\u0438\u0439 \u043f\u043e\u044f\u0441" },
{ "islamic.AmPmMarkers",
new String[] {
"\u0434\u043f",
@ -189,18 +189,18 @@ public class JavaTimeSupplementary_uk extends OpenListResourceBundle {
},
{ "islamic.QuarterAbbreviations",
new String[] {
"I \u043a\u0432.",
"II \u043a\u0432.",
"III \u043a\u0432.",
"IV \u043a\u0432.",
"1-\u0439 \u043a\u0432.",
"2-\u0439 \u043a\u0432.",
"3-\u0439 \u043a\u0432.",
"4-\u0439 \u043a\u0432.",
}
},
{ "islamic.QuarterNames",
new String[] {
"I \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"II \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"III \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"IV \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"1-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"2-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"3-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"4-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
}
},
{ "islamic.QuarterNarrows",
@ -219,6 +219,12 @@ public class JavaTimeSupplementary_uk extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"\u0434\u043f",
"\u043f\u043f",
}
},
{ "islamic.narrow.AmPmMarkers",
new String[] {
"\u0434\u043f",
@ -369,18 +375,18 @@ public class JavaTimeSupplementary_uk extends OpenListResourceBundle {
},
{ "roc.QuarterAbbreviations",
new String[] {
"I \u043a\u0432.",
"II \u043a\u0432.",
"III \u043a\u0432.",
"IV \u043a\u0432.",
"1-\u0439 \u043a\u0432.",
"2-\u0439 \u043a\u0432.",
"3-\u0439 \u043a\u0432.",
"4-\u0439 \u043a\u0432.",
}
},
{ "roc.QuarterNames",
new String[] {
"I \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"II \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"III \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"IV \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"1-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"2-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"3-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"4-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
}
},
{ "roc.TimePatterns",
@ -391,6 +397,12 @@ public class JavaTimeSupplementary_uk extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"\u0434\u043f",
"\u043f\u043f",
}
},
{ "roc.narrow.AmPmMarkers",
new String[] {
"\u0434\u043f",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -129,7 +129,7 @@ public class JavaTimeSupplementary_vi extends OpenListResourceBundle {
},
{ "islamic.DatePatterns",
new String[] {
"EEEE, 'ng\u00e0y' dd MMMM 'n\u0103m' y GGGG",
"EEEE, 'ng\u00e0y' dd 'th\u00e1ng' MM 'n\u0103m' y GGGG",
"'Ng\u00e0y' dd 'th\u00e1ng' M 'n\u0103m' y GGGG",
"dd-MM-y GGGG",
"dd/MM/y G",
@ -206,6 +206,12 @@ public class JavaTimeSupplementary_vi extends OpenListResourceBundle {
"HH:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"SA",
"CH",
}
},
{ "islamic.long.Eras",
new String[] {
"",
@ -252,7 +258,7 @@ public class JavaTimeSupplementary_vi extends OpenListResourceBundle {
},
{ "java.time.islamic.DatePatterns",
new String[] {
"EEEE, 'ng\u00e0y' dd MMMM 'n\u0103m' y G",
"EEEE, 'ng\u00e0y' dd 'th\u00e1ng' MM 'n\u0103m' y G",
"'Ng\u00e0y' dd 'th\u00e1ng' M 'n\u0103m' y G",
"dd-MM-y G",
"dd/MM/y GGGGG",
@ -406,6 +412,12 @@ public class JavaTimeSupplementary_vi extends OpenListResourceBundle {
"HH:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"SA",
"CH",
}
},
{ "roc.long.Eras",
new String[] {
"Tr\u01b0\u1edbc R.O.C",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -211,7 +211,7 @@ public class JavaTimeSupplementary_zh extends OpenListResourceBundle {
{ "islamic.Eras",
new String[] {
"",
"\u56de\u5386",
"\u4f0a\u65af\u5170\u5386",
}
},
{ "islamic.MonthAbbreviations",
@ -250,10 +250,16 @@ public class JavaTimeSupplementary_zh extends OpenListResourceBundle {
"ah:mm",
}
},
{ "islamic.abbreviated.AmPmMarkers",
new String[] {
"\u4e0a\u5348",
"\u4e0b\u5348",
}
},
{ "islamic.long.Eras",
new String[] {
"",
"\u56de\u5386",
"\u4f0a\u65af\u5170\u5386",
}
},
{ "islamic.narrow.AmPmMarkers",
@ -265,13 +271,13 @@ public class JavaTimeSupplementary_zh extends OpenListResourceBundle {
{ "islamic.narrow.Eras",
new String[] {
"",
"\u56de\u5386",
"\u4f0a\u65af\u5170\u5386",
}
},
{ "islamic.short.Eras",
new String[] {
"",
"\u56de\u5386",
"\u4f0a\u65af\u5170\u5386",
}
},
{ "java.time.buddhist.DatePatterns",
@ -430,6 +436,12 @@ public class JavaTimeSupplementary_zh extends OpenListResourceBundle {
"ah:mm",
}
},
{ "roc.abbreviated.AmPmMarkers",
new String[] {
"\u4e0a\u5348",
"\u4e0b\u5348",
}
},
{ "roc.long.Eras",
new String[] {
"\u6c11\u56fd\u524d",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2016, 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
@ -26,7 +26,7 @@
/*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (C) 1991-2015 Unicode, Inc. All rights reserved.
* Copyright (C) 1991-2016 Unicode, Inc. All rights reserved.
* Distributed under the Terms of Use in
* http://www.unicode.org/copyright.html.
*
@ -266,7 +266,7 @@ public class JavaTimeSupplementary_zh_TW extends OpenListResourceBundle {
javatimelongEras },
{ "java.time.roc.DatePatterns",
new String[] {
"Gy\u5e74M\u6708d\u65e5EEEE",
"Gy\u5e74M\u6708d\u65e5 EEEE",
"Gy\u5e74M\u6708d\u65e5",
"Gy\u5e74M\u6708d\u65e5",
"Gy/M/d",
@ -276,7 +276,7 @@ public class JavaTimeSupplementary_zh_TW extends OpenListResourceBundle {
javatimelongEras },
{ "roc.DatePatterns",
new String[] {
"GGGGy\u5e74M\u6708d\u65e5EEEE",
"GGGGy\u5e74M\u6708d\u65e5 EEEE",
"GGGGy\u5e74M\u6708d\u65e5",
"GGGGy\u5e74M\u6708d\u65e5",
"GGGGy/M/d",

View File

@ -1,553 +0,0 @@
<!--
Copyright © 2003-2015 Unicode, Inc. and others. 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.
$Revision: 11344 $
$Date: 2015-03-05 00:02:16 -0600 (Thu, 05 Mar 2015) $
-->
<!ELEMENT supplementalData ( version, generation?, cldrVersion?, currencyData?, territoryContainment?, languageData?, territoryInfo?, postalCodeData?, calendarData?, calendarPreferenceData?, weekData?, timeData?, measurementData?, timezoneData?, characters?, transforms?, metadata?, codeMappings?, parentLocales?, likelySubtags?, metazoneInfo?, plurals?, telephoneCodeData?, numberingSystems?, bcp47KeywordMappings?, gender?, references?, languageMatching?, dayPeriodRuleSet*, metaZones?, primaryZones?, windowsZones?, coverageLevels?) > <!-- metazoneInfo is deprecated here -->
<!ELEMENT version EMPTY >
<!ATTLIST version number CDATA #REQUIRED >
<!ATTLIST version cldrVersion CDATA #FIXED "27" >
<!ATTLIST version unicodeVersion CDATA #FIXED "7.0.0" >
<!ELEMENT generation EMPTY >
<!ATTLIST generation date CDATA #REQUIRED >
<!ELEMENT cldrVersion EMPTY> <!-- deprecated -->
<!ATTLIST cldrVersion version CDATA #REQUIRED>
<!ELEMENT currencyData ( fractions*, region+ ) >
<!ATTLIST currencyData draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT fractions ( info+ ) >
<!ATTLIST fractions draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT info EMPTY >
<!ATTLIST info iso4217 NMTOKEN #REQUIRED >
<!ATTLIST info digits NMTOKEN #IMPLIED >
<!ATTLIST info rounding NMTOKEN #IMPLIED >
<!ATTLIST info cashDigits NMTOKEN #IMPLIED >
<!ATTLIST info cashRounding NMTOKEN #IMPLIED >
<!ATTLIST info draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST info references CDATA #IMPLIED >
<!ELEMENT region ( currency* ) >
<!ATTLIST region iso3166 NMTOKEN #REQUIRED >
<!ATTLIST region draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT currency ( alternate* ) >
<!ATTLIST currency before NMTOKEN #IMPLIED > <!-- This usage is deprecated. Use from and to. -->
<!ATTLIST currency from NMTOKEN #IMPLIED >
<!ATTLIST currency to NMTOKEN #IMPLIED >
<!ATTLIST currency iso4217 NMTOKEN #REQUIRED >
<!ATTLIST currency digits NMTOKEN #IMPLIED >
<!ATTLIST currency rounding NMTOKEN #IMPLIED >
<!ATTLIST currency cashRounding NMTOKEN #IMPLIED >
<!ATTLIST currency tender ( true | false ) #IMPLIED >
<!ATTLIST currency draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST currency references CDATA #IMPLIED >
<!ELEMENT alternate EMPTY > <!-- This usage is deprecated. Use from and to. -->
<!ATTLIST alternate iso4217 NMTOKEN #REQUIRED >
<!ELEMENT territoryContainment ( group* ) >
<!ELEMENT group EMPTY >
<!ATTLIST group type NMTOKEN #REQUIRED >
<!ATTLIST group contains NMTOKENS #IMPLIED >
<!ATTLIST group grouping ( true | false ) #IMPLIED >
<!ATTLIST group status ( deprecated | grouping ) #IMPLIED >
<!ATTLIST group draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST group references CDATA #IMPLIED >
<!ELEMENT languageData ( language* ) >
<!ELEMENT language EMPTY >
<!ATTLIST language type NMTOKEN #REQUIRED >
<!ATTLIST language scripts NMTOKENS #IMPLIED >
<!ATTLIST language territories NMTOKENS #IMPLIED >
<!ATTLIST language variants NMTOKENS #IMPLIED >
<!ATTLIST language draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST language references CDATA #IMPLIED >
<!ATTLIST language alt NMTOKENS #IMPLIED >
<!ELEMENT territoryInfo ( territory* ) >
<!ATTLIST territoryInfo draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST territoryInfo references CDATA #IMPLIED >
<!ATTLIST territoryInfo alt NMTOKENS #IMPLIED >
<!ELEMENT territory ( languagePopulation* ) >
<!ATTLIST territory type NMTOKEN #REQUIRED >
<!ATTLIST territory gdp NMTOKEN #REQUIRED >
<!ATTLIST territory literacyPercent NMTOKEN #REQUIRED >
<!ATTLIST territory population NMTOKEN #REQUIRED >
<!ATTLIST territory draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST territory references CDATA #IMPLIED >
<!ATTLIST territory alt NMTOKENS #IMPLIED >
<!ELEMENT postalCodeData (postCodeRegex*) > <!-- deprecated -->
<!ELEMENT postCodeRegex (#PCDATA) > <!-- deprecated -->
<!ATTLIST postCodeRegex territoryId NMTOKEN #REQUIRED>
<!ATTLIST postCodeRegex draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT languagePopulation EMPTY >
<!ATTLIST languagePopulation type NMTOKEN #REQUIRED >
<!ATTLIST languagePopulation writingPercent NMTOKEN #IMPLIED >
<!ATTLIST languagePopulation populationPercent NMTOKEN #REQUIRED >
<!ATTLIST languagePopulation officialStatus (de_facto_official | official | official_regional | official_minority) #IMPLIED >
<!ATTLIST languagePopulation draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST languagePopulation references CDATA #IMPLIED >
<!ATTLIST languagePopulation alt NMTOKENS #IMPLIED >
<!ELEMENT calendarData ( calendar* ) >
<!ELEMENT calendar ( calendarSystem?, eras? ) >
<!ATTLIST calendar type NMTOKEN #REQUIRED >
<!ATTLIST calendar territories NMTOKENS #IMPLIED > <!-- territories are deprecated. use ordering attribute in calendarPreference element instead. -->
<!ATTLIST calendar draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST calendar references CDATA #IMPLIED >
<!ATTLIST calendar alt NMTOKENS #IMPLIED >
<!ELEMENT calendarSystem EMPTY >
<!ATTLIST calendarSystem type (solar | lunar | lunisolar | other) #REQUIRED >
<!ATTLIST calendarSystem references CDATA #IMPLIED >
<!ELEMENT eras ( era* ) >
<!ATTLIST eras references CDATA #IMPLIED >
<!ELEMENT era EMPTY >
<!ATTLIST era type NMTOKEN #REQUIRED >
<!ATTLIST era start CDATA #IMPLIED >
<!ATTLIST era end CDATA #IMPLIED >
<!ELEMENT calendarPreferenceData ( calendarPreference* ) >
<!ELEMENT calendarPreference EMPTY >
<!ATTLIST calendarPreference territories NMTOKENS #REQUIRED >
<!ATTLIST calendarPreference ordering NMTOKENS #REQUIRED >
<!ELEMENT weekData ( minDays*, firstDay*, weekendStart*, weekendEnd* ) >
<!ELEMENT minDays EMPTY >
<!ATTLIST minDays count (1 | 2 | 3 | 4 | 5 | 6 | 7) #REQUIRED >
<!ATTLIST minDays territories NMTOKENS #REQUIRED >
<!ATTLIST minDays draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST minDays references CDATA #IMPLIED >
<!ATTLIST minDays alt NMTOKENS #IMPLIED >
<!ELEMENT firstDay EMPTY >
<!ATTLIST firstDay day (sun | mon | tue | wed | thu | fri | sat) #REQUIRED >
<!ATTLIST firstDay territories NMTOKENS #REQUIRED >
<!ATTLIST firstDay draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST firstDay references CDATA #IMPLIED >
<!ATTLIST firstDay alt NMTOKENS #IMPLIED >
<!ELEMENT weekendStart EMPTY >
<!ATTLIST weekendStart day (sun | mon | tue | wed | thu | fri | sat) #REQUIRED >
<!ATTLIST weekendStart territories NMTOKENS #REQUIRED >
<!ATTLIST weekendStart draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST weekendStart references CDATA #IMPLIED >
<!ATTLIST weekendStart alt NMTOKENS #IMPLIED >
<!ELEMENT weekendEnd EMPTY >
<!ATTLIST weekendEnd day (sun | mon | tue | wed | thu | fri | sat) #REQUIRED >
<!ATTLIST weekendEnd territories NMTOKENS #REQUIRED >
<!ATTLIST weekendEnd draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST weekendEnd references CDATA #IMPLIED >
<!ATTLIST weekendEnd alt NMTOKENS #IMPLIED >
<!ELEMENT timeData ( hours* ) >
<!ELEMENT hours EMPTY >
<!ATTLIST hours allowed NMTOKENS #REQUIRED >
<!ATTLIST hours preferred NMTOKEN #REQUIRED >
<!ATTLIST hours regions NMTOKENS #REQUIRED >
<!ATTLIST hours draft ( approved | contributed | provisional | unconfirmed ) #IMPLIED >
<!ATTLIST hours references CDATA #IMPLIED >
<!ELEMENT measurementData ( measurementSystem*, paperSize* ) >
<!ELEMENT measurementSystem EMPTY >
<!ATTLIST measurementSystem type ( metric | US | UK ) #REQUIRED >
<!ATTLIST measurementSystem category ( temperature ) #IMPLIED >
<!ATTLIST measurementSystem territories NMTOKENS #REQUIRED >
<!ATTLIST measurementSystem draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST measurementSystem references CDATA #IMPLIED >
<!ATTLIST measurementSystem alt NMTOKENS #IMPLIED >
<!ELEMENT paperSize EMPTY >
<!ATTLIST paperSize type ( A4 | US-Letter ) #REQUIRED >
<!ATTLIST paperSize territories NMTOKENS #REQUIRED >
<!ATTLIST paperSize draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST paperSize references CDATA #IMPLIED >
<!ATTLIST paperSize alt NMTOKENS #IMPLIED >
<!ELEMENT characters ( character-fallback*) >
<!ATTLIST characters draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT character-fallback ( character* ) >
<!ELEMENT character (substitute*) >
<!ATTLIST character value CDATA #REQUIRED >
<!ATTLIST character draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST character standard CDATA #IMPLIED >
<!ATTLIST character references CDATA #IMPLIED >
<!ATTLIST character alt NMTOKENS #IMPLIED >
<!ELEMENT substitute (#PCDATA) >
<!ATTLIST substitute draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST substitute standard CDATA #IMPLIED >
<!ATTLIST substitute references CDATA #IMPLIED >
<!ATTLIST substitute alt NMTOKENS #IMPLIED >
<!ELEMENT transforms ( transform*) >
<!ELEMENT transform ((comment | tRule)*) >
<!ATTLIST transform source CDATA #IMPLIED >
<!ATTLIST transform target CDATA #IMPLIED >
<!ATTLIST transform variant CDATA #IMPLIED >
<!ATTLIST transform direction ( forward | backward | both ) "both" >
<!ATTLIST transform visibility ( internal | external ) "external" >
<!ATTLIST transform draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST transform references CDATA #IMPLIED >
<!ATTLIST transform alt NMTOKENS #IMPLIED >
<!ELEMENT comment (#PCDATA) >
<!ELEMENT tRule (#PCDATA) >
<!ELEMENT metadata ( attributeOrder?, elementOrder?, serialElements?, suppress?, validity?, alias?, deprecated?, distinguishing?, blocking?, coverageAdditions?, skipDefaultLocale?, defaultContent?) >
<!ATTLIST metadata draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT attributeOrder ( #PCDATA ) >
<!ATTLIST attributeOrder draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT elementOrder ( #PCDATA ) >
<!ATTLIST elementOrder draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT serialElements ( #PCDATA ) >
<!ATTLIST serialElements draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT suppress ( attributes* ) >
<!ATTLIST suppress draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT attributes EMPTY >
<!ATTLIST attributes element NMTOKENS #IMPLIED >
<!ATTLIST attributes attribute NMTOKENS #IMPLIED >
<!ATTLIST attributes attributeValue CDATA #IMPLIED >
<!ATTLIST attributes draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT validity ( variable*, attributeValues* ) >
<!ATTLIST validity draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT variable ( #PCDATA ) >
<!ATTLIST variable type NMTOKEN #IMPLIED >
<!ATTLIST variable id CDATA #REQUIRED >
<!ATTLIST variable draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT attributeValues ( #PCDATA ) >
<!ATTLIST attributeValues type NMTOKEN #IMPLIED >
<!ATTLIST attributeValues elements NMTOKENS #IMPLIED >
<!ATTLIST attributeValues attributes NMTOKENS #IMPLIED >
<!ATTLIST attributeValues order NMTOKEN #IMPLIED >
<!ATTLIST attributeValues draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT alias ( languageAlias*, scriptAlias*, territoryAlias*, variantAlias*, zoneAlias* ) >
<!ATTLIST alias draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED ><!-- true and false are deprecated. -->
<!ELEMENT languageAlias EMPTY >
<!ATTLIST languageAlias type NMTOKEN #REQUIRED >
<!ATTLIST languageAlias replacement NMTOKEN #REQUIRED >
<!ATTLIST languageAlias reason ( deprecated | overlong | macrolanguage | legacy | bibliographic ) #IMPLIED >
<!ELEMENT scriptAlias EMPTY >
<!ATTLIST scriptAlias type NMTOKEN #REQUIRED >
<!ATTLIST scriptAlias replacement NMTOKEN #REQUIRED >
<!ATTLIST scriptAlias reason ( deprecated | overlong ) #IMPLIED >
<!ELEMENT territoryAlias EMPTY >
<!ATTLIST territoryAlias type NMTOKEN #REQUIRED >
<!ATTLIST territoryAlias replacement NMTOKENS #REQUIRED >
<!ATTLIST territoryAlias reason ( deprecated | overlong ) #IMPLIED >
<!ELEMENT variantAlias EMPTY >
<!ATTLIST variantAlias type NMTOKEN #REQUIRED >
<!ATTLIST variantAlias replacement NMTOKEN #REQUIRED >
<!ATTLIST variantAlias reason ( deprecated | overlong ) #IMPLIED >
<!ELEMENT zoneAlias EMPTY >
<!ATTLIST zoneAlias type CDATA #REQUIRED >
<!ATTLIST zoneAlias replacement CDATA #REQUIRED >
<!ATTLIST zoneAlias reason ( deprecated | overlong ) #IMPLIED >
<!ELEMENT deprecated ( deprecatedItems* ) >
<!ATTLIST deprecated draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT deprecatedItems EMPTY >
<!ATTLIST deprecatedItems type ( standard | supplemental | ldml | supplementalData | ldmlBCP47 ) #IMPLIED > <!-- standard | supplemental are deprecated -->
<!ATTLIST deprecatedItems elements NMTOKENS #IMPLIED >
<!ATTLIST deprecatedItems attributes NMTOKENS #IMPLIED >
<!ATTLIST deprecatedItems values CDATA #IMPLIED >
<!ATTLIST deprecatedItems draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT distinguishing ( distinguishingItems* ) >
<!ATTLIST distinguishing draft ( approved | contributed | provisional | unconfirmed ) #IMPLIED >
<!ELEMENT distinguishingItems EMPTY >
<!ATTLIST distinguishingItems exclude ( true | false ) #IMPLIED >
<!ATTLIST distinguishingItems elements NMTOKENS #IMPLIED >
<!ATTLIST distinguishingItems attributes NMTOKENS #IMPLIED >
<!ATTLIST distinguishingItems draft ( approved | contributed | provisional | unconfirmed ) #IMPLIED >
<!ELEMENT blocking ( blockingItems* ) >
<!ATTLIST blocking draft ( approved | contributed | provisional | unconfirmed ) #IMPLIED >
<!ELEMENT blockingItems EMPTY >
<!ATTLIST blockingItems elements NMTOKENS #IMPLIED >
<!ATTLIST blockingItems draft ( approved | contributed | provisional | unconfirmed ) #IMPLIED >
<!ELEMENT coverageAdditions ( languageCoverage*, scriptCoverage*, territoryCoverage*, currencyCoverage*, timezoneCoverage* ) ><!-- deprecated. -->
<!ATTLIST coverageAdditions draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT languageCoverage EMPTY ><!-- deprecated. -->
<!ATTLIST languageCoverage type NMTOKEN #IMPLIED >
<!ATTLIST languageCoverage values NMTOKENS #IMPLIED >
<!ATTLIST languageCoverage draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT scriptCoverage EMPTY ><!-- deprecated. -->
<!ATTLIST scriptCoverage type NMTOKEN #IMPLIED >
<!ATTLIST scriptCoverage values NMTOKENS #IMPLIED >
<!ATTLIST scriptCoverage draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT territoryCoverage EMPTY ><!-- deprecated. -->
<!ATTLIST territoryCoverage type NMTOKEN #IMPLIED >
<!ATTLIST territoryCoverage values NMTOKENS #IMPLIED >
<!ATTLIST territoryCoverage draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT currencyCoverage EMPTY ><!-- deprecated. -->
<!ATTLIST currencyCoverage type NMTOKEN #IMPLIED >
<!ATTLIST currencyCoverage values NMTOKENS #IMPLIED >
<!ATTLIST currencyCoverage draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT timezoneCoverage EMPTY ><!-- deprecated. -->
<!ATTLIST timezoneCoverage type NMTOKEN #IMPLIED >
<!ATTLIST timezoneCoverage values CDATA #IMPLIED > <!-- would be NMTOKENS, but needs to allow / -->
<!ATTLIST timezoneCoverage draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ELEMENT defaultContent EMPTY >
<!ATTLIST defaultContent locales NMTOKENS #IMPLIED >
<!ELEMENT skipDefaultLocale EMPTY >
<!ATTLIST skipDefaultLocale services NMTOKENS #IMPLIED >
<!ELEMENT codeMappings (languageCodes*, territoryCodes*, currencyCodes*) >
<!ELEMENT languageCodes EMPTY >
<!ATTLIST languageCodes type NMTOKEN #REQUIRED>
<!ATTLIST languageCodes alpha3 NMTOKEN #REQUIRED>
<!ELEMENT territoryCodes EMPTY >
<!ATTLIST territoryCodes type NMTOKEN #REQUIRED>
<!ATTLIST territoryCodes numeric NMTOKEN #IMPLIED>
<!ATTLIST territoryCodes alpha3 NMTOKEN #IMPLIED>
<!ATTLIST territoryCodes fips10 NMTOKEN #IMPLIED>
<!ATTLIST territoryCodes internet NMTOKENS #IMPLIED>
<!ELEMENT currencyCodes EMPTY >
<!ATTLIST currencyCodes type NMTOKEN #REQUIRED>
<!ATTLIST currencyCodes numeric NMTOKEN #REQUIRED>
<!ELEMENT likelySubtags (likelySubtag*) >
<!ELEMENT likelySubtag EMPTY >
<!ATTLIST likelySubtag from NMTOKEN #REQUIRED>
<!ATTLIST likelySubtag to NMTOKEN #REQUIRED>
<!ELEMENT plurals (pluralRules*, pluralRanges*) >
<!ATTLIST plurals type ( ordinal | cardinal ) #IMPLIED > <!-- default is cardinal -->
<!ATTLIST plurals draft ( approved | contributed | provisional | unconfirmed ) #IMPLIED >
<!ATTLIST plurals references CDATA #IMPLIED >
<!ELEMENT pluralRules (pluralRule*) >
<!ATTLIST pluralRules locales NMTOKENS #REQUIRED >
<!ATTLIST pluralRules draft ( approved | contributed | provisional | unconfirmed ) #IMPLIED >
<!ATTLIST pluralRules references CDATA #IMPLIED >
<!ELEMENT pluralRule ( #PCDATA ) >
<!ATTLIST pluralRule count (zero | one | two | few | many | other) #REQUIRED > <!-- 'other' is implicitly everything else -->
<!ATTLIST pluralRule draft ( approved | contributed | provisional | unconfirmed ) #IMPLIED >
<!ATTLIST pluralRule references CDATA #IMPLIED >
<!ELEMENT pluralRanges (pluralRange*) >
<!ATTLIST pluralRanges locales NMTOKENS #REQUIRED >
<!ATTLIST pluralRanges draft ( approved | contributed | provisional | unconfirmed ) #IMPLIED >
<!ATTLIST pluralRanges references CDATA #IMPLIED >
<!ELEMENT pluralRange ( #PCDATA ) >
<!ATTLIST pluralRange start (zero | one | two | few | many | other) #IMPLIED > <!-- if missing, means *all* -->
<!ATTLIST pluralRange end (zero | one | two | few | many | other) #IMPLIED > <!-- if missing, means *all* -->
<!ATTLIST pluralRange result (zero | one | two | few | many | other) #REQUIRED > <!-- if a whole rule is missing, means *other* -->
<!ATTLIST pluralRange draft ( approved | contributed | provisional | unconfirmed ) #IMPLIED >
<!ATTLIST pluralRange references CDATA #IMPLIED >
<!ELEMENT telephoneCodeData ( codesByTerritory* ) >
<!ELEMENT codesByTerritory ( telephoneCountryCode+ ) >
<!ATTLIST codesByTerritory territory NMTOKEN #REQUIRED >
<!ATTLIST codesByTerritory draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST codesByTerritory references CDATA #IMPLIED >
<!ELEMENT telephoneCountryCode EMPTY >
<!ATTLIST telephoneCountryCode code NMTOKEN #REQUIRED >
<!ATTLIST telephoneCountryCode from NMTOKEN #IMPLIED >
<!ATTLIST telephoneCountryCode to NMTOKEN #IMPLIED >
<!ATTLIST telephoneCountryCode draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST telephoneCountryCode references CDATA #IMPLIED >
<!ATTLIST telephoneCountryCode alt NMTOKENS #IMPLIED >
<!ELEMENT numberingSystems ( numberingSystem* ) >
<!ELEMENT numberingSystem EMPTY >
<!ATTLIST numberingSystem type ( numeric | algorithmic ) #REQUIRED >
<!ATTLIST numberingSystem id NMTOKEN #REQUIRED >
<!ATTLIST numberingSystem radix NMTOKEN #IMPLIED >
<!ATTLIST numberingSystem digits CDATA #IMPLIED >
<!ATTLIST numberingSystem rules CDATA #IMPLIED >
<!ATTLIST numberingSystem draft ( approved | contributed | provisional | unconfirmed ) #IMPLIED >
<!ELEMENT references ( reference* ) >
<!ELEMENT reference ( #PCDATA ) >
<!ATTLIST reference type NMTOKEN #REQUIRED>
<!ATTLIST reference uri CDATA #IMPLIED >
<!ATTLIST reference draft ( approved | contributed | provisional | unconfirmed | true | false ) #IMPLIED > <!-- true and false are deprecated. -->
<!ATTLIST reference standard ( true | false ) #IMPLIED >
<!ATTLIST reference alt NMTOKENS #IMPLIED >
<!ELEMENT bcp47KeywordMappings ( mapKeys?, mapTypes* ) > <!-- deprecated. -->
<!ELEMENT mapKeys ( keyMap* ) > <!-- deprecated. -->
<!ELEMENT keyMap EMPTY > <!-- deprecated. -->
<!ATTLIST keyMap type NMTOKEN #REQUIRED >
<!ATTLIST keyMap bcp47 NMTOKEN #REQUIRED >
<!ELEMENT mapTypes ( typeMap* ) > <!-- deprecated. -->
<!ATTLIST mapTypes type NMTOKEN #REQUIRED >
<!ELEMENT typeMap EMPTY > <!-- deprecated. -->
<!ATTLIST typeMap type CDATA #REQUIRED >
<!ATTLIST typeMap bcp47 NMTOKEN #REQUIRED >
<!ELEMENT languageMatching ( languageMatches* ) >
<!ELEMENT languageMatches ( languageMatch* ) >
<!ATTLIST languageMatches type NMTOKEN #REQUIRED >
<!ELEMENT languageMatch EMPTY >
<!ATTLIST languageMatch desired CDATA #REQUIRED >
<!ATTLIST languageMatch oneway ( true | false ) #IMPLIED >
<!ATTLIST languageMatch percent NMTOKEN #REQUIRED >
<!ATTLIST languageMatch supported CDATA #REQUIRED >
<!-- Day Periods -->
<!ELEMENT dayPeriodRuleSet ( dayPeriodRules* ) >
<!ATTLIST dayPeriodRuleSet type NMTOKEN #IMPLIED >
<!ATTLIST dayPeriodRuleSet draft ( approved | contributed | provisional | unconfirmed ) #IMPLIED >
<!ATTLIST dayPeriodRuleSet references CDATA #IMPLIED >
<!ELEMENT dayPeriodRules (dayPeriodRule*) >
<!ATTLIST dayPeriodRules locales NMTOKENS #REQUIRED >
<!ATTLIST dayPeriodRules draft ( approved | contributed | provisional | unconfirmed ) #IMPLIED >
<!ATTLIST dayPeriodRules references CDATA #IMPLIED >
<!ELEMENT dayPeriodRule EMPTY >
<!ATTLIST dayPeriodRule type NMTOKEN #REQUIRED >
<!ATTLIST dayPeriodRule at NMTOKEN #IMPLIED >
<!ATTLIST dayPeriodRule after NMTOKEN #IMPLIED >
<!ATTLIST dayPeriodRule before NMTOKEN #IMPLIED >
<!ATTLIST dayPeriodRule from NMTOKEN #IMPLIED >
<!ATTLIST dayPeriodRule to NMTOKEN #IMPLIED >
<!ATTLIST dayPeriodRule draft ( approved | contributed | provisional | unconfirmed ) #IMPLIED >
<!ATTLIST dayPeriodRule references CDATA #IMPLIED >
<!-- Time Zones -->
<!ELEMENT windowsZones (mapTimezones?) >
<!ELEMENT metaZones (metazoneInfo?, mapTimezones?) >
<!ELEMENT metazoneInfo (timezone*) >
<!ELEMENT timezone (usesMetazone*) >
<!ATTLIST timezone type CDATA #REQUIRED >
<!ELEMENT usesMetazone EMPTY >
<!ATTLIST usesMetazone from CDATA #IMPLIED >
<!ATTLIST usesMetazone to CDATA #IMPLIED >
<!ATTLIST usesMetazone mzone NMTOKEN #REQUIRED >
<!ELEMENT mapTimezones ( mapZone* ) >
<!ATTLIST mapTimezones type NMTOKEN #IMPLIED >
<!ATTLIST mapTimezones otherVersion CDATA #IMPLIED >
<!ATTLIST mapTimezones typeVersion CDATA #IMPLIED >
<!ATTLIST mapTimezones references CDATA #IMPLIED >
<!ELEMENT mapZone EMPTY >
<!ATTLIST mapZone type CDATA #REQUIRED >
<!ATTLIST mapZone other CDATA #REQUIRED >
<!ATTLIST mapZone territory CDATA #IMPLIED >
<!ATTLIST mapZone references CDATA #IMPLIED >
<!ELEMENT timezoneData ( mapTimezones*, zoneFormatting* ) > <!-- deprecated. -->
<!ELEMENT zoneFormatting ( zoneItem* ) > <!-- deprecated. -->
<!ATTLIST zoneFormatting multizone NMTOKENS #REQUIRED >
<!ATTLIST zoneFormatting tzidVersion CDATA #IMPLIED >
<!ATTLIST zoneFormatting references CDATA #IMPLIED >
<!ELEMENT zoneItem EMPTY > <!-- deprecated. -->
<!ATTLIST zoneItem type CDATA #REQUIRED >
<!ATTLIST zoneItem territory NMTOKEN #REQUIRED >
<!ATTLIST zoneItem aliases CDATA #IMPLIED >
<!ATTLIST zoneItem references CDATA #IMPLIED >
<!ELEMENT primaryZones ( primaryZone* ) >
<!ELEMENT primaryZone ( #PCDATA ) >
<!ATTLIST primaryZone iso3166 NMTOKEN #REQUIRED >
<!-- Coverage levels -->
<!ELEMENT coverageLevels ( approvalRequirements, coverageVariable*, coverageLevel* ) >
<!ELEMENT approvalRequirements ( approvalRequirement* ) >
<!ELEMENT approvalRequirement EMPTY >
<!ATTLIST approvalRequirement votes CDATA #REQUIRED>
<!ATTLIST approvalRequirement locales CDATA #REQUIRED>
<!ATTLIST approvalRequirement paths CDATA #REQUIRED>
<!ELEMENT coverageVariable EMPTY >
<!ATTLIST coverageVariable key CDATA #REQUIRED >
<!ATTLIST coverageVariable value CDATA #REQUIRED >
<!ELEMENT coverageLevel EMPTY >
<!ATTLIST coverageLevel inLanguage CDATA #IMPLIED >
<!ATTLIST coverageLevel inScript CDATA #IMPLIED >
<!ATTLIST coverageLevel inTerritory CDATA #IMPLIED >
<!ATTLIST coverageLevel value CDATA #REQUIRED >
<!ATTLIST coverageLevel match CDATA #REQUIRED >
<!-- Parent locales -->
<!ELEMENT parentLocales ( parentLocale* ) >
<!ELEMENT parentLocale EMPTY >
<!ATTLIST parentLocale parent CDATA #REQUIRED >
<!ATTLIST parentLocale locales CDATA #REQUIRED >
<!-- Gender List support -->
<!ELEMENT gender ( personList+ ) >
<!ELEMENT personList EMPTY >
<!ATTLIST personList type ( neutral | mixedNeutral | maleTaints ) #REQUIRED >
<!ATTLIST personList locales NMTOKENS #REQUIRED >

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="ar"/>
<territory type="IL"/>
</identity>
</ldml>

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="ar"/>
<territory type="KM"/>
</identity>
</ldml>

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="da"/>
<territory type="GL"/>
</identity>
</ldml>

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="ee"/>
<territory type="TG"/>
</identity>
</ldml>

View File

@ -1,101 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 11150 $"/>
<generation date="$Date: 2015-01-23 16:43:31 -0600 (Fri, 23 Jan 2015) $"/>
<language type="en"/>
<territory type="150"/>
</identity>
<dates>
<calendars>
<calendar type="generic">
<dateFormats>
<dateFormatLength type="medium">
<dateFormat>
<pattern>dd MMM y G</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
<dateTimeFormats>
<availableFormats>
<dateFormatItem id="Md">d/M</dateFormatItem>
<dateFormatItem id="MEd">E, d/M</dateFormatItem>
<dateFormatItem id="yyyyMd">d/M/y G</dateFormatItem>
<dateFormatItem id="yyyyMEd">E, d/M/y G</dateFormatItem>
</availableFormats>
<intervalFormats>
<intervalFormatItem id="yM">
<greatestDifference id="M" draft="unconfirmed">MM/y MM/y G</greatestDifference>
<greatestDifference id="y" draft="unconfirmed">MM/y MM/y G</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMd">
<greatestDifference id="d" draft="unconfirmed">dd/MM/y dd/MM/y G</greatestDifference>
<greatestDifference id="M" draft="unconfirmed">dd/MM/y dd/MM/y G</greatestDifference>
<greatestDifference id="y" draft="unconfirmed">dd/MM/y dd/MM/y G</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMEd">
<greatestDifference id="d" draft="unconfirmed">E dd/MM/y E dd/MM/y G</greatestDifference>
<greatestDifference id="M" draft="unconfirmed">E dd/MM/y E dd/MM/y G</greatestDifference>
<greatestDifference id="y" draft="unconfirmed">E dd/MM/y E dd/MM/y G</greatestDifference>
</intervalFormatItem>
</intervalFormats>
</dateTimeFormats>
</calendar>
<calendar type="gregorian">
<dateFormats>
<dateFormatLength type="medium">
<dateFormat>
<pattern>dd MMM y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="short">
<dateFormat>
<pattern>dd/MM/yy</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
<timeFormats>
<timeFormatLength type="full">
<timeFormat>
<pattern>HH 'h' mm 'min' ss 's' zzzz</pattern>
</timeFormat>
</timeFormatLength>
</timeFormats>
<dateTimeFormats>
<availableFormats>
<dateFormatItem id="Md">d/M</dateFormatItem>
<dateFormatItem id="MEd">E, d/M</dateFormatItem>
<dateFormatItem id="yMd">d/M/y</dateFormatItem>
<dateFormatItem id="yMEd">E, d/M/y</dateFormatItem>
</availableFormats>
<intervalFormats>
<intervalFormatItem id="yMEd">
<greatestDifference id="d" draft="unconfirmed">E dd/MM/y E dd/MM/y</greatestDifference>
<greatestDifference id="M" draft="unconfirmed">E dd/MM/y E dd/MM/y</greatestDifference>
<greatestDifference id="y" draft="unconfirmed">E dd/MM/y E dd/MM/y</greatestDifference>
</intervalFormatItem>
</intervalFormats>
</dateTimeFormats>
</calendar>
</calendars>
</dates>
<numbers>
<symbols numberSystem="latn">
<decimal>,</decimal>
<group>.</group>
</symbols>
<currencyFormats numberSystem="latn">
<currencyFormatLength>
<currencyFormat type="standard">
<pattern>#,##0.00 ¤</pattern>
</currencyFormat>
</currencyFormatLength>
</currencyFormats>
</numbers>
</ldml>

View File

@ -1,264 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 11159 $"/>
<generation date="$Date: 2015-01-30 13:45:39 -0600 (Fri, 30 Jan 2015) $"/>
<language type="en"/>
<territory type="AU"/>
</identity>
<localeDisplayNames>
<languages>
<language type="bax">Bamum</language>
<language type="en_US">United States English</language>
</languages>
</localeDisplayNames>
<dates>
<calendars>
<calendar type="chinese">
<dateFormats>
<dateFormatLength type="short">
<dateFormat>
<pattern>d/MM/yy</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
</calendar>
<calendar type="generic">
<dateFormats>
<dateFormatLength type="short">
<dateFormat>
<pattern>d/MM/y GGGGG</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
<dateTimeFormats>
<availableFormats>
<dateFormatItem id="yMd">d/M/y</dateFormatItem>
<dateFormatItem id="yMEd">E, d/M/y</dateFormatItem>
</availableFormats>
<intervalFormats>
<intervalFormatItem id="MEd">
<greatestDifference id="d">E, d/MM E, d/MM</greatestDifference>
<greatestDifference id="M">E, d/MM E, d/MM</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MMMEd">
<greatestDifference id="d">E, d E, d MMM</greatestDifference>
<greatestDifference id="M">E, d MMM E, d MMM</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMd">
<greatestDifference id="d">d/MM/y d/MM/y GGGGG</greatestDifference>
<greatestDifference id="M">d/MM/y d/MM/y GGGGG</greatestDifference>
<greatestDifference id="y">d/MM/y d/MM/y GGGGG</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMEd">
<greatestDifference id="d">E, d/MM/y E, d/MM/y GGGGG</greatestDifference>
<greatestDifference id="M">E, d/MM/y E, d/MM/y GGGGG</greatestDifference>
<greatestDifference id="y">E, d/MM/y E, d/MM/y GGGGG</greatestDifference>
</intervalFormatItem>
</intervalFormats>
</dateTimeFormats>
</calendar>
<calendar type="gregorian">
<dateFormats>
<dateFormatLength type="short">
<dateFormat>
<pattern>d/MM/y</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
<dateTimeFormats>
<availableFormats>
<dateFormatItem id="Ed">E d</dateFormatItem>
<dateFormatItem id="M">LL</dateFormatItem>
<dateFormatItem id="yMd">d/M/y</dateFormatItem>
<dateFormatItem id="yMEd">E, d/M/y</dateFormatItem>
</availableFormats>
<intervalFormats>
<intervalFormatItem id="Md">
<greatestDifference id="d">d/MM d/MM</greatestDifference>
<greatestDifference id="M">d/MM d/MM</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MEd">
<greatestDifference id="d">E, d/MM E, d/MM</greatestDifference>
<greatestDifference id="M">E, d/MM E, d/MM</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MMMEd">
<greatestDifference id="d">E, d E, d MMM</greatestDifference>
<greatestDifference id="M">E, d MMM E, d MMM</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMd">
<greatestDifference id="d">d/MM/y d/MM/y</greatestDifference>
<greatestDifference id="M">d/MM/y d/MM/y</greatestDifference>
<greatestDifference id="y">d/MM/y d/MM/y</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMEd">
<greatestDifference id="d">E, d/MM/y E, d/MM/y</greatestDifference>
<greatestDifference id="M">E, d/MM/y E, d/MM/y</greatestDifference>
<greatestDifference id="y">E, d/MM/y E, d/MM/y</greatestDifference>
</intervalFormatItem>
</intervalFormats>
</dateTimeFormats>
</calendar>
<calendar type="islamic">
<dateFormats>
<dateFormatLength type="short">
<dateFormat>
<pattern>d/MM/y GGGGG</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
<dateTimeFormats>
<availableFormats>
<dateFormatItem id="yMd">d/M/y</dateFormatItem>
<dateFormatItem id="yMEd">E, d/M/y</dateFormatItem>
</availableFormats>
</dateTimeFormats>
</calendar>
<calendar type="japanese">
<dateTimeFormats>
<availableFormats>
<dateFormatItem id="yMd">d/M/y</dateFormatItem>
<dateFormatItem id="yMEd">E, d/M/y</dateFormatItem>
</availableFormats>
</dateTimeFormats>
</calendar>
</calendars>
<timeZoneNames>
<metazone type="Arabian">
<long>
<generic>Arabian Time</generic>
<standard>Arabian Standard Time</standard>
<daylight>Arabian Summer Time</daylight>
</long>
</metazone>
<metazone type="Australia_Central">
<short>
<generic>ACT</generic>
<standard>ACST</standard>
<daylight>ACDT</daylight>
</short>
</metazone>
<metazone type="Australia_CentralWestern">
<short>
<generic>ACWT</generic>
<standard>ACWST</standard>
<daylight>ACWDT</daylight>
</short>
</metazone>
<metazone type="Australia_Eastern">
<short>
<generic>AET</generic>
<standard>AEST</standard>
<daylight>AEDT</daylight>
</short>
</metazone>
<metazone type="Australia_Western">
<short>
<generic>AWT</generic>
<standard>AWST</standard>
<daylight>AWDT</daylight>
</short>
</metazone>
<metazone type="China">
<long>
<generic>China Time</generic>
<standard>China Standard Time</standard>
<daylight>China Summer Time</daylight>
</long>
</metazone>
<metazone type="Iran">
<long>
<generic>Iran Time</generic>
<standard>Iran Standard Time</standard>
<daylight>Iran Summer Time</daylight>
</long>
</metazone>
<metazone type="Israel">
<long>
<generic>Israel Time</generic>
<standard>Israel Standard Time</standard>
<daylight>Israel Summer Time</daylight>
</long>
</metazone>
<metazone type="Japan">
<long>
<generic>Japan Time</generic>
<standard>Japan Standard Time</standard>
<daylight>Japan Summer Time</daylight>
</long>
</metazone>
<metazone type="Korea">
<long>
<generic>Korean Time</generic>
<standard>Korean Standard Time</standard>
<daylight>Korean Summer Time</daylight>
</long>
</metazone>
<metazone type="Lord_Howe">
<short>
<generic>LHT</generic>
<standard>LHST</standard>
<daylight>LHDT</daylight>
</short>
</metazone>
<metazone type="New_Zealand">
<short>
<generic>NZT</generic>
<standard>NZST</standard>
<daylight>NZDT</daylight>
</short>
</metazone>
<metazone type="Taipei">
<long>
<generic>Taipei Time</generic>
<standard>Taipei Standard Time</standard>
<daylight>Taipei Summer Time</daylight>
</long>
</metazone>
</timeZoneNames>
</dates>
<numbers>
<currencies>
<currency type="AUD">
<symbol>$</symbol>
</currency>
<currency type="EUR">
<displayName count="one">euro</displayName>
<displayName count="other">euro</displayName>
</currency>
<currency type="MGA">
<displayName count="one">Malagasy ariary</displayName>
<displayName count="other">Malagasy ariarys</displayName>
</currency>
<currency type="SCR">
<displayName>Seychelles Rupee</displayName>
</currency>
</currencies>
</numbers>
<units>
<unitLength type="long">
<unit type="mass-metric-ton">
<displayName>tonnes</displayName>
<unitPattern count="one">tonne</unitPattern>
<unitPattern count="other">{0} tonnes</unitPattern>
</unit>
</unitLength>
<unitLength type="short">
<unit type="length-micrometer">
<displayName>µmetres</displayName>
</unit>
</unitLength>
<unitLength type="narrow">
<unit type="duration-millisecond">
<unitPattern count="one">{0} ms</unitPattern>
<unitPattern count="other">{0} ms</unitPattern>
</unit>
</unitLength>
</units>
</ldml>

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="CC"/>
</identity>
<numbers>
<currencies>
<currency type="AUD">
<symbol>$</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="CK"/>
</identity>
<numbers>
<currencies>
<currency type="NZD">
<symbol>$</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="CX"/>
</identity>
<numbers>
<currencies>
<currency type="AUD">
<symbol>$</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="DG"/>
</identity>
</ldml>

View File

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="FK"/>
</identity>
<numbers>
<currencies>
<currency type="FKP">
<symbol>£</symbol>
</currency>
<currency type="GBP">
<symbol>GB£</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@ -1,115 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 11159 $"/>
<generation date="$Date: 2015-01-30 13:45:39 -0600 (Fri, 30 Jan 2015) $"/>
<language type="en"/>
<territory type="GB"/>
</identity>
<localeDisplayNames>
<keys>
<key type="colNormalization">Normalised Sorting</key>
</keys>
<types>
<type type="no" key="colNormalization">Sort Without Normalisation</type>
<type type="yes" key="colNormalization">Sort Unicode Normalised</type>
</types>
</localeDisplayNames>
<dates>
<calendars>
<calendar type="gregorian">
<dayPeriods>
<dayPeriodContext type="format">
<dayPeriodWidth type="wide">
<dayPeriod type="am">a.m.</dayPeriod>
<dayPeriod type="pm">p.m.</dayPeriod>
</dayPeriodWidth>
</dayPeriodContext>
</dayPeriods>
<timeFormats>
<timeFormatLength type="full">
<timeFormat>
<pattern>HH:mm:ss zzzz</pattern>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="long">
<timeFormat>
<pattern>HH:mm:ss z</pattern>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="medium">
<timeFormat>
<pattern>HH:mm:ss</pattern>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="short">
<timeFormat>
<pattern>HH:mm</pattern>
</timeFormat>
</timeFormatLength>
</timeFormats>
</calendar>
</calendars>
<fields>
<field type="dayperiod">
<displayName>a.m./p.m.</displayName>
</field>
</fields>
<timeZoneNames>
<zone type="Europe/London">
<short>
<daylight>BST</daylight>
</short>
</zone>
<metazone type="Europe_Central">
<short>
<generic>CET</generic>
<standard>CET</standard>
<daylight>CEST</daylight>
</short>
</metazone>
<metazone type="Europe_Eastern">
<short>
<generic>EET</generic>
<standard>EET</standard>
<daylight>EEST</daylight>
</short>
</metazone>
<metazone type="Europe_Western">
<short>
<generic>WET</generic>
<standard>WET</standard>
<daylight>WEST</daylight>
</short>
</metazone>
</timeZoneNames>
</dates>
<numbers>
<currencies>
<currency type="ILR">
<displayName>Israeli Shekel (19801985)</displayName>
<displayName count="one">Israeli shekel (19801985)</displayName>
<displayName count="other">Israeli shekels (19801985)</displayName>
</currency>
<currency type="ILS">
<displayName>Israeli New Shekel</displayName>
<displayName count="one">Israeli new shekel</displayName>
<displayName count="other">Israeli new shekels</displayName>
</currency>
</currencies>
</numbers>
<units>
<unitLength type="short">
<unit type="volume-liter">
<unitPattern count="one">{0} l</unitPattern>
<unitPattern count="other">{0} l</unitPattern>
</unit>
</unitLength>
</units>
</ldml>

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="GG"/>
</identity>
</ldml>

View File

@ -1,25 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10819 $"/>
<generation date="$Date: 2014-08-14 22:53:08 -0500 (Thu, 14 Aug 2014) $"/>
<language type="en"/>
<territory type="GI"/>
</identity>
<numbers>
<currencies>
<currency type="GBP">
<symbol>GB£</symbol>
</currency>
<currency type="GIP">
<symbol>£</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="IM"/>
</identity>
</ldml>

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="IO"/>
</identity>
</ldml>

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="JE"/>
</identity>
</ldml>

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10712 $"/>
<generation date="$Date: 2014-08-01 12:07:43 -0500 (Fri, 01 Aug 2014) $"/>
<language type="en"/>
<territory type="MS"/>
</identity>
<numbers>
<currencies>
<currency type="XCD">
<symbol>$</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="NF"/>
</identity>
<numbers>
<currencies>
<currency type="AUD">
<symbol>$</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="NR"/>
</identity>
<numbers>
<currencies>
<currency type="AUD">
<symbol>$</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="NU"/>
</identity>
<numbers>
<currencies>
<currency type="NZD">
<symbol>$</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="PN"/>
</identity>
<numbers>
<currencies>
<currency type="NZD">
<symbol>$</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="SC"/>
</identity>
<numbers>
<currencies>
<currency type="SCR">
<symbol>SR</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="SH"/>
</identity>
<numbers>
<currencies>
<currency type="GBP">
<symbol>GB£</symbol>
</currency>
<currency type="SHP">
<symbol>£</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="SX"/>
</identity>
<numbers>
<currencies>
<currency type="ANG">
<symbol>NAf.</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="TK"/>
</identity>
<numbers>
<currencies>
<currency type="NZD">
<symbol>$</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2014 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 10669 $"/>
<generation date="$Date: 2014-07-23 16:10:33 -0500 (Wed, 23 Jul 2014) $"/>
<language type="en"/>
<territory type="TV"/>
</identity>
<numbers>
<currencies>
<currency type="AUD">
<symbol>$</symbol>
</currency>
</currencies>
</numbers>
</ldml>

Some files were not shown because too many files have changed in this diff Show More