diff --git a/.hgtags b/.hgtags index 9c8dcc0e219..74caecd3098 100644 --- a/.hgtags +++ b/.hgtags @@ -362,3 +362,4 @@ c84d0cce090e161d736de69e941830adf8c2f87a jdk-9+114 82b8d12a553f5617737c238cec060281d52e351c jdk-9+117 7c04fcb12bd4a31570a238e663fa846dfa5ec3b8 jdk-9+118 caf97b37ebec84288c112d21d3a60cb628cba1e8 jdk-9+119 +9330543436402b8f3bd070524846a464d8143557 jdk-9+120 diff --git a/.hgtags-top-repo b/.hgtags-top-repo index 75fcb5f4de4..cdd21c19b18 100644 --- a/.hgtags-top-repo +++ b/.hgtags-top-repo @@ -362,3 +362,4 @@ f900d5afd9c83a0df8f36161c27c5e4c86a66f4c jdk-9+111 e882bcdbdac436523f3d5681611d3118a3804ea7 jdk-9+117 047f95de8f918d8ff5e8cd2636a2abb5c3c8adb8 jdk-9+118 3463a3f14f0f0e8a68f29ac6405454f2fa2f598a jdk-9+119 +647e0142a5a52749db572b5e6638d561def6479e jdk-9+120 diff --git a/common/autoconf/configure.ac b/common/autoconf/configure.ac index 0079a944dac..bb5491ba0b4 100644 --- a/common/autoconf/configure.ac +++ b/common/autoconf/configure.ac @@ -229,6 +229,7 @@ LIB_SETUP_LIBRARIES JDKOPT_DETECT_INTREE_EC JDKOPT_ENABLE_DISABLE_FAILURE_HANDLER +JDKOPT_ENABLE_DISABLE_GENERATE_CLASSLIST ############################################################################### # diff --git a/common/autoconf/generated-configure.sh b/common/autoconf/generated-configure.sh index ef4a2674e9f..e4c2dab06f9 100644 --- a/common/autoconf/generated-configure.sh +++ b/common/autoconf/generated-configure.sh @@ -650,6 +650,7 @@ TEST_JOBS JOBS MEMORY_SIZE NUM_CORES +ENABLE_GENERATE_CLASSLIST BUILD_FAILURE_HANDLER ENABLE_INTREE_EC STLPORT_LIB @@ -1226,6 +1227,7 @@ with_dxsdk with_dxsdk_lib with_dxsdk_include enable_jtreg_failure_handler +enable_generate_classlist with_num_cores with_memory_size with_jobs @@ -2005,6 +2007,10 @@ Optional Features: Default is auto, where the failure handler is built if all dependencies are present and otherwise just disabled. + --disable-generate-classlist + forces enabling or disabling of the generation of a + CDS classlist at build time. Default is to generate + it when either the server or client JVMs are built. --enable-sjavac use sjavac to do fast incremental compiles [disabled] --disable-javac-server disable javac server [enabled] @@ -4391,6 +4397,12 @@ VALID_JVM_VARIANTS="server client minimal core zero zeroshark custom" # +################################################################################ +# +# Enable or disable generation of the classlist at build time +# + + # # Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -5080,7 +5092,7 @@ VS_SDK_PLATFORM_NAME_2013= #CUSTOM_AUTOCONF_INCLUDE # Do not change or remove the following line, it is needed for consistency checks: -DATE_WHEN_GENERATED=1463732692 +DATE_WHEN_GENERATED=1464173584 ############################################################################### # @@ -64812,6 +64824,51 @@ $as_echo "yes, jtreg present" >&6; } + # Check whether --enable-generate-classlist was given. +if test "${enable_generate_classlist+set}" = set; then : + enableval=$enable_generate_classlist; +fi + + + # Check if it's likely that it's possible to generate the classlist. Depending + # on exact jvm configuration it could be possible anyway. + if [[ " $JVM_VARIANTS " =~ " server " ]] || [[ " $JVM_VARIANTS " =~ " client " ]] ; then + ENABLE_GENERATE_CLASSLIST_POSSIBLE="true" + else + ENABLE_GENERATE_CLASSLIST_POSSIBLE="false" + fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the CDS classlist generation should be enabled" >&5 +$as_echo_n "checking if the CDS classlist generation should be enabled... " >&6; } + if test "x$enable_generate_classlist" = "xyes"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes, forced" >&5 +$as_echo "yes, forced" >&6; } + ENABLE_GENERATE_CLASSLIST="true" + if test "x$ENABLE_GENERATE_CLASSLIST_POSSIBLE" = "xfalse"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Generation of classlist might not be possible with JVM Variants $JVM_VARIANTS" >&5 +$as_echo "$as_me: WARNING: Generation of classlist might not be possible with JVM Variants $JVM_VARIANTS" >&2;} + fi + elif test "x$enable_generate_classlist" = "xno"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, forced" >&5 +$as_echo "no, forced" >&6; } + ENABLE_GENERATE_CLASSLIST="false" + elif test "x$enable_generate_classlist" = "x"; then + if test "x$ENABLE_GENERATE_CLASSLIST_POSSIBLE" = "xtrue"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + ENABLE_GENERATE_CLASSLIST="true" + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + ENABLE_GENERATE_CLASSLIST="false" + fi + else + as_fn_error $? "Invalid value for --enable-generate-classlist: $enable_generate_classlist" "$LINENO" 5 + fi + + + + ############################################################################### # # Configure parts of the build that only affect the build performance, diff --git a/common/autoconf/jdk-options.m4 b/common/autoconf/jdk-options.m4 index 076b6cfaa09..4ae07928262 100644 --- a/common/autoconf/jdk-options.m4 +++ b/common/autoconf/jdk-options.m4 @@ -491,3 +491,46 @@ AC_DEFUN_ONCE([JDKOPT_ENABLE_DISABLE_FAILURE_HANDLER], AC_SUBST(BUILD_FAILURE_HANDLER) ]) + +################################################################################ +# +# Enable or disable generation of the classlist at build time +# +AC_DEFUN_ONCE([JDKOPT_ENABLE_DISABLE_GENERATE_CLASSLIST], +[ + AC_ARG_ENABLE([generate-classlist], [AS_HELP_STRING([--disable-generate-classlist], + [forces enabling or disabling of the generation of a CDS classlist at build time. + Default is to generate it when either the server or client JVMs are built.])]) + + # Check if it's likely that it's possible to generate the classlist. Depending + # on exact jvm configuration it could be possible anyway. + if HOTSPOT_CHECK_JVM_VARIANT(server) || HOTSPOT_CHECK_JVM_VARIANT(client); then + ENABLE_GENERATE_CLASSLIST_POSSIBLE="true" + else + ENABLE_GENERATE_CLASSLIST_POSSIBLE="false" + fi + + AC_MSG_CHECKING([if the CDS classlist generation should be enabled]) + if test "x$enable_generate_classlist" = "xyes"; then + AC_MSG_RESULT([yes, forced]) + ENABLE_GENERATE_CLASSLIST="true" + if test "x$ENABLE_GENERATE_CLASSLIST_POSSIBLE" = "xfalse"; then + AC_MSG_WARN([Generation of classlist might not be possible with JVM Variants $JVM_VARIANTS]) + fi + elif test "x$enable_generate_classlist" = "xno"; then + AC_MSG_RESULT([no, forced]) + ENABLE_GENERATE_CLASSLIST="false" + elif test "x$enable_generate_classlist" = "x"; then + if test "x$ENABLE_GENERATE_CLASSLIST_POSSIBLE" = "xtrue"; then + AC_MSG_RESULT([yes]) + ENABLE_GENERATE_CLASSLIST="true" + else + AC_MSG_RESULT([no]) + ENABLE_GENERATE_CLASSLIST="false" + fi + else + AC_MSG_ERROR([Invalid value for --enable-generate-classlist: $enable_generate_classlist]) + fi + + AC_SUBST([ENABLE_GENERATE_CLASSLIST]) +]) diff --git a/common/autoconf/spec.gmk.in b/common/autoconf/spec.gmk.in index cace1439818..a58639f2b8a 100644 --- a/common/autoconf/spec.gmk.in +++ b/common/autoconf/spec.gmk.in @@ -285,6 +285,8 @@ BUILD_HOTSPOT=@BUILD_HOTSPOT@ BUILD_FAILURE_HANDLER := @BUILD_FAILURE_HANDLER@ +ENABLE_GENERATE_CLASSLIST := @ENABLE_GENERATE_CLASSLIST@ + # The boot jdk to use. This is overridden in bootcycle-spec.gmk. Make sure to keep # it in sync. BOOT_JDK:=@BOOT_JDK@ diff --git a/corba/.hgtags b/corba/.hgtags index db59b1cf556..284ccf7a0d8 100644 --- a/corba/.hgtags +++ b/corba/.hgtags @@ -362,3 +362,4 @@ cc30faa2da498c478e89ab062ff160653ca1b170 jdk-9+113 7a1b36bf2fe55a9a7732489ccdd326c910329a7e jdk-9+117 8c2c2d17f7ce92a31c9ccb44a122ec62f5a85ace jdk-9+118 daf533920b1266603b5cbdab31908d2a931c5361 jdk-9+119 +5943b791e131e79b969d4cea053aecda34801723 jdk-9+120 diff --git a/hotspot/.hgtags b/hotspot/.hgtags index 754ebb60e4b..c500fce7e12 100644 --- a/hotspot/.hgtags +++ b/hotspot/.hgtags @@ -522,3 +522,4 @@ b64432bae5271735fd53300b2005b713e98ef411 jdk-9+114 88170d3642905b9e6cac03e8efcc976885a7e6da jdk-9+117 9b1075cac08dc836ec32e7b368415cbe3aceaf8c jdk-9+118 15f3fe264872766bcb205696198f0c1502420e17 jdk-9+119 +0be6f4f5d18671184e62583668cb1d783dffa128 jdk-9+120 diff --git a/jaxp/.hgtags b/jaxp/.hgtags index 7de009b0cce..e447d080f2b 100644 --- a/jaxp/.hgtags +++ b/jaxp/.hgtags @@ -362,3 +362,4 @@ bdbf2342b21bd8ecad1b4e6499a0dfb314952bd7 jdk-9+103 46b57560cd06ebcdd21489250628ff5f9d9d8916 jdk-9+117 a8aa25fc6c5fda0ed7a93b8ffee62da326a752fc jdk-9+118 f92e8518bb34a9628b11e662bf7308561a55eb3b jdk-9+119 +ecbe72546137cd29cb73d4dcc81cc099e847d543 jdk-9+120 diff --git a/jaxws/.hgtags b/jaxws/.hgtags index 0fe31aa3ebc..b7d3abb35f7 100644 --- a/jaxws/.hgtags +++ b/jaxws/.hgtags @@ -365,3 +365,4 @@ b314bb02182b9ca94708a91f312c377f5435f740 jdk-9+114 58265b39fc74b932bda4d4f4649c530a89f55c4e jdk-9+117 6ba73d04589ccc0705a5d8ae5111b63632b6ad20 jdk-9+118 331a825f849afd2e5126c93c88e55bd9ef0c6b8f jdk-9+119 +ecd0d6a71c7ccf93584ba4dacdd4fa8455efd741 jdk-9+120 diff --git a/jdk/LICENSE b/jdk/LICENSE index b40a0f457d7..8b400c7ab81 100644 --- a/jdk/LICENSE +++ b/jdk/LICENSE @@ -3,7 +3,7 @@ The GNU General Public License (GPL) Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. @@ -287,8 +287,8 @@ pointer to where the full notice is found. more details. You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., 59 - Temple Place, Suite 330, Boston, MA 02111-1307 USA + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. diff --git a/jdk/make/gensrc/GensrcCLDR.gmk b/jdk/make/gensrc/GensrcCLDR.gmk index 230dc3eb709..63487b00c0d 100644 --- a/jdk/make/gensrc/GensrcCLDR.gmk +++ b/jdk/make/gensrc/GensrcCLDR.gmk @@ -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 diff --git a/jdk/make/mapfiles/libjava/mapfile-vers b/jdk/make/mapfiles/libjava/mapfile-vers index 693f5a87fb8..8bd1118c1ff 100644 --- a/jdk/make/mapfiles/libjava/mapfile-vers +++ b/jdk/make/mapfiles/libjava/mapfile-vers @@ -267,6 +267,7 @@ SUNWprivate_1.1 { Java_jdk_internal_misc_VM_geteuid; Java_jdk_internal_misc_VM_getgid; Java_jdk_internal_misc_VM_getegid; + Java_jdk_internal_misc_VM_getRuntimeArguments; Java_jdk_internal_misc_VM_initialize; Java_java_lang_reflect_Module_defineModule0; diff --git a/jdk/make/src/classes/build/tools/cldrconverter/Bundle.java b/jdk/make/src/classes/build/tools/cldrconverter/Bundle.java index 7ee33deedae..4188159653b 100644 --- a/jdk/make/src/classes/build/tools/cldrconverter/Bundle.java +++ b/jdk/make/src/classes/build/tools/cldrconverter/Bundle.java @@ -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"); diff --git a/jdk/make/src/classes/build/tools/cldrconverter/CLDRConverter.java b/jdk/make/src/classes/build/tools/cldrconverter/CLDRConverter.java index b72ac9225b1..f1c1b7dfa64 100644 --- a/jdk/make/src/classes/build/tools/cldrconverter/CLDRConverter.java +++ b/jdk/make/src/classes/build/tools/cldrconverter/CLDRConverter.java @@ -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 bundles) throws Exception { @@ -434,6 +446,7 @@ public class CLDRConverter { Map 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 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 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 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 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> 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 diff --git a/jdk/make/src/classes/build/tools/cldrconverter/LDMLParseHandler.java b/jdk/make/src/classes/build/tools/cldrconverter/LDMLParseHandler.java index c95c730c860..720f5e3c088 100644 --- a/jdk/make/src/classes/build/tools/cldrconverter/LDMLParseHandler.java +++ b/jdk/make/src/classes/build/tools/cldrconverter/LDMLParseHandler.java @@ -290,6 +290,9 @@ class LDMLParseHandler extends AbstractLDMLHandler { 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 { 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 { keyName = "narrow.AmPmMarkers/" + context; break; case "abbreviated": - keyName = ""; + keyName = "abbreviated.AmPmMarkers/" + context; break; } break; diff --git a/jdk/make/src/classes/build/tools/cldrconverter/LikelySubtagsParseHandler.java b/jdk/make/src/classes/build/tools/cldrconverter/LikelySubtagsParseHandler.java new file mode 100644 index 00000000000..8a15b3977cb --- /dev/null +++ b/jdk/make/src/classes/build/tools/cldrconverter/LikelySubtagsParseHandler.java @@ -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 { + + 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, + 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; + } + } +} diff --git a/jdk/src/java.base/linux/classes/sun/nio/fs/LinuxWatchService.java b/jdk/src/java.base/linux/classes/sun/nio/fs/LinuxWatchService.java index 47dbc156250..1e93b3203e5 100644 --- a/jdk/src/java.base/linux/classes/sun/nio/fs/LinuxWatchService.java +++ b/jdk/src/java.base/linux/classes/sun/nio/fs/LinuxWatchService.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 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 @@ -232,9 +232,11 @@ class LinuxWatchService for (WatchEvent.Modifier modifier: modifiers) { if (modifier == null) return new NullPointerException(); - if (modifier instanceof com.sun.nio.file.SensitivityWatchEventModifier) - continue; // ignore - return new UnsupportedOperationException("Modifier not supported"); + if (!ExtendedOptions.SENSITIVITY_HIGH.matches(modifier) && + !ExtendedOptions.SENSITIVITY_MEDIUM.matches(modifier) && + !ExtendedOptions.SENSITIVITY_LOW.matches(modifier)) { + return new UnsupportedOperationException("Modifier not supported"); + } } } diff --git a/jdk/src/java.base/share/classes/java/lang/Boolean.java b/jdk/src/java.base/share/classes/java/lang/Boolean.java index eeda751719c..af7bad17a64 100644 --- a/jdk/src/java.base/share/classes/java/lang/Boolean.java +++ b/jdk/src/java.base/share/classes/java/lang/Boolean.java @@ -117,7 +117,9 @@ public final class Boolean implements java.io.Serializable, * Parses the string argument as a boolean. The {@code boolean} * returned represents the value {@code true} if the string argument * is not {@code null} and is equal, ignoring case, to the string - * {@code "true"}.

+ * {@code "true"}. + * Otherwise, a false value is returned, including for a null + * argument.

* Example: {@code Boolean.parseBoolean("True")} returns {@code true}.
* Example: {@code Boolean.parseBoolean("yes")} returns {@code false}. * @@ -165,6 +167,8 @@ public final class Boolean implements java.io.Serializable, * specified string. The {@code Boolean} returned represents a * true value if the string argument is not {@code null} * and is equal, ignoring case, to the string {@code "true"}. + * Otherwise, a false value is returned, including for a null + * argument. * * @param s a string. * @return the {@code Boolean} value represented by the string. @@ -241,14 +245,12 @@ public final class Boolean implements java.io.Serializable, /** * Returns {@code true} if and only if the system property named - * by the argument exists and is equal to the string {@code - * "true"}. (Beginning with version 1.0.2 of the Java™ - * platform, the test of this string is case insensitive.) A - * system property is accessible through {@code getProperty}, a - * method defined by the {@code System} class. - *

- * If there is no property with the specified name, or if the specified - * name is empty or null, then {@code false} is returned. + * by the argument exists and is equal to, ignoring case, the + * string {@code "true"}. + * A system property is accessible through {@code getProperty}, a + * method defined by the {@code System} class.

If there is no + * property with the specified name, or if the specified name is + * empty or null, then {@code false} is returned. * * @param name the system property name. * @return the {@code boolean} value of the system property. diff --git a/jdk/src/java.base/share/classes/java/lang/annotation/ElementType.java b/jdk/src/java.base/share/classes/java/lang/annotation/ElementType.java index 4590f39edd1..c32ae6a0f15 100644 --- a/jdk/src/java.base/share/classes/java/lang/annotation/ElementType.java +++ b/jdk/src/java.base/share/classes/java/lang/annotation/ElementType.java @@ -46,7 +46,7 @@ package java.lang.annotation; * {@code @Target(ElementType.FIELD)} may only be written as a modifier for a * field declaration. * - *

The constant {@link #TYPE_USE} corresponds to the 15 type contexts in JLS + *

The constant {@link #TYPE_USE} corresponds to the type contexts in JLS * 4.11, as well as to two declaration contexts: type declarations (including * annotation type declarations) and type parameter declarations. * diff --git a/jdk/src/java.base/share/classes/java/text/SimpleDateFormat.java b/jdk/src/java.base/share/classes/java/text/SimpleDateFormat.java index bced263c072..b464b6c71a4 100644 --- a/jdk/src/java.base/share/classes/java/text/SimpleDateFormat.java +++ b/jdk/src/java.base/share/classes/java/text/SimpleDateFormat.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 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 @@ -1491,22 +1491,18 @@ public class SimpleDateFormat extends DateFormat { if (i < compiledPattern.length) { int nextTag = compiledPattern[i] >>> 8; - if (!(nextTag == TAG_QUOTE_ASCII_CHAR || - nextTag == TAG_QUOTE_CHARS)) { - obeyCount = true; - } + int nextCount = compiledPattern[i] & 0xff; + obeyCount = shouldObeyCount(nextTag, nextCount); if (hasFollowingMinusSign && (nextTag == TAG_QUOTE_ASCII_CHAR || nextTag == TAG_QUOTE_CHARS)) { - int c; - if (nextTag == TAG_QUOTE_ASCII_CHAR) { - c = compiledPattern[i] & 0xff; - } else { - c = compiledPattern[i+1]; + + if (nextTag != TAG_QUOTE_ASCII_CHAR) { + nextCount = compiledPattern[i+1]; } - if (c == minusSign) { + if (nextCount == minusSign) { useFollowingMinusSignAsDelimiter = true; } } @@ -1549,6 +1545,36 @@ public class SimpleDateFormat extends DateFormat { return parsedDate; } + /* If the next tag/pattern is a then the parser + * should consider the count of digits while parsing the contigous digits + * for the current tag/pattern + */ + private boolean shouldObeyCount(int tag, int count) { + switch (tag) { + case PATTERN_MONTH: + case PATTERN_MONTH_STANDALONE: + return count <= 2; + case PATTERN_YEAR: + case PATTERN_DAY_OF_MONTH: + case PATTERN_HOUR_OF_DAY1: + case PATTERN_HOUR_OF_DAY0: + case PATTERN_MINUTE: + case PATTERN_SECOND: + case PATTERN_MILLISECOND: + case PATTERN_DAY_OF_YEAR: + case PATTERN_DAY_OF_WEEK_IN_MONTH: + case PATTERN_WEEK_OF_YEAR: + case PATTERN_WEEK_OF_MONTH: + case PATTERN_HOUR1: + case PATTERN_HOUR0: + case PATTERN_WEEK_YEAR: + case PATTERN_ISO_DAY_OF_WEEK: + return true; + default: + return false; + } + } + /** * Private code-size reduction function used by subParse. * @param text the time text being parsed. diff --git a/jdk/src/java.base/share/classes/java/util/Locale.java b/jdk/src/java.base/share/classes/java/util/Locale.java index dfe71769d11..23417394030 100644 --- a/jdk/src/java.base/share/classes/java/util/Locale.java +++ b/jdk/src/java.base/share/classes/java/util/Locale.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 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 @@ -198,7 +198,7 @@ import sun.util.locale.provider.LocaleServiceProviderPool; * *

The keywords are mapped to a BCP 47 extension value using the * extension key 'u' ({@link #UNICODE_LOCALE_EXTENSION}). The above - * example, "nu-thai", becomes the extension "u-nu-thai".code + * example, "nu-thai", becomes the extension "u-nu-thai". * *

Thus, when a Locale object contains Unicode locale * attributes and keywords, diff --git a/jdk/src/java.base/share/classes/jdk/internal/jimage/BasicImageReader.java b/jdk/src/java.base/share/classes/jdk/internal/jimage/BasicImageReader.java index 68b076784f5..07038b9ef5e 100644 --- a/jdk/src/java.base/share/classes/jdk/internal/jimage/BasicImageReader.java +++ b/jdk/src/java.base/share/classes/jdk/internal/jimage/BasicImageReader.java @@ -67,9 +67,9 @@ public class BasicImageReader implements AutoCloseable { static private final boolean MAP_ALL = isSystemProperty("jdk.image.map.all", "true", IS_64_BIT ? "true" : "false"); - private final String name; - private final ByteOrder byteOrder; private final Path imagePath; + private final ByteOrder byteOrder; + private final String name; private final ByteBuffer memoryMap; private final FileChannel channel; private final ImageHeader header; @@ -83,11 +83,9 @@ public class BasicImageReader implements AutoCloseable { protected BasicImageReader(Path path, ByteOrder byteOrder) throws IOException { - Objects.requireNonNull(path); - Objects.requireNonNull(byteOrder); - this.name = path.toString(); - this.byteOrder = byteOrder; - imagePath = path; + this.imagePath = Objects.requireNonNull(path); + this.byteOrder = Objects.requireNonNull(byteOrder); + this.name = this.imagePath.toString(); ByteBuffer map; @@ -211,6 +209,8 @@ public class BasicImageReader implements AutoCloseable { } public static void releaseByteBuffer(ByteBuffer buffer) { + Objects.requireNonNull(buffer); + if (!MAP_ALL) { ImageBufferCache.releaseBuffer(buffer); } @@ -240,10 +240,14 @@ public class BasicImageReader implements AutoCloseable { } public ImageLocation findLocation(String mn, String rn) { + Objects.requireNonNull(mn); + Objects.requireNonNull(rn); + return findLocation("/" + mn + "/" + rn); } public synchronized ImageLocation findLocation(String name) { + Objects.requireNonNull(name); // Details of the algorithm used here can be found in // jdk.tools.jlink.internal.PerfectHashBuilder. byte[] bytes = ImageStringsReader.mutf8FromString(name); @@ -287,16 +291,25 @@ public class BasicImageReader implements AutoCloseable { } public long[] getAttributes(int offset) { + if (offset < 0 || offset >= locations.limit()) { + throw new IndexOutOfBoundsException("offset"); + } + ByteBuffer buffer = slice(locations, offset, locations.limit() - offset); return ImageLocation.decompress(buffer); } public String getString(int offset) { + if (offset < 0 || offset >= strings.limit()) { + throw new IndexOutOfBoundsException("offset"); + } + ByteBuffer buffer = slice(strings, offset, strings.limit() - offset); return ImageStringsReader.stringFromByteBuffer(buffer); } private byte[] getBufferBytes(ByteBuffer buffer) { + Objects.requireNonNull(buffer); byte[] bytes = new byte[buffer.limit()]; buffer.get(bytes); @@ -343,6 +356,7 @@ public class BasicImageReader implements AutoCloseable { } public byte[] getResource(String name) { + Objects.requireNonNull(name); ImageLocation location = findLocation(name); return location != null ? getResource(location) : null; @@ -362,6 +376,7 @@ public class BasicImageReader implements AutoCloseable { } public ByteBuffer getResourceBuffer(ImageLocation loc) { + Objects.requireNonNull(loc); long offset = loc.getContentOffset() + indexSize; long compressedSize = loc.getCompressedSize(); long uncompressedSize = loc.getUncompressedSize(); @@ -399,6 +414,7 @@ public class BasicImageReader implements AutoCloseable { } public InputStream getResourceStream(ImageLocation loc) { + Objects.requireNonNull(loc); byte[] bytes = getResource(loc); return new ByteArrayInputStream(bytes); diff --git a/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageHeader.java b/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageHeader.java index 094f8dd6929..a7ab8a45286 100644 --- a/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageHeader.java +++ b/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageHeader.java @@ -27,6 +27,7 @@ package jdk.internal.jimage; import java.nio.ByteBuffer; import java.nio.IntBuffer; +import java.util.Objects; /** * @implNote This class needs to maintain JDK 8 source compatibility. @@ -75,6 +76,8 @@ public final class ImageHeader { } static ImageHeader readFrom(IntBuffer buffer) { + Objects.requireNonNull(buffer); + if (buffer.capacity() != HEADER_SLOTS) { throw new InternalError("jimage header not the correct size"); } @@ -94,11 +97,13 @@ public final class ImageHeader { } public void writeTo(ImageStream stream) { + Objects.requireNonNull(stream); stream.ensure(getHeaderSize()); writeTo(stream.getBuffer()); } public void writeTo(ByteBuffer buffer) { + Objects.requireNonNull(buffer); buffer.putInt(magic); buffer.putInt(majorVersion << 16 | minorVersion); buffer.putInt(flags); diff --git a/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageLocation.java b/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageLocation.java index a8147d2a53a..16787dad3af 100644 --- a/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageLocation.java +++ b/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageLocation.java @@ -26,6 +26,7 @@ package jdk.internal.jimage; import java.nio.ByteBuffer; +import java.util.Objects; /** * @implNote This class needs to maintain JDK 8 source compatibility. @@ -50,8 +51,8 @@ public class ImageLocation { protected final ImageStrings strings; public ImageLocation(long[] attributes, ImageStrings strings) { - this.attributes = attributes; - this.strings = strings; + this.attributes = Objects.requireNonNull(attributes); + this.strings = Objects.requireNonNull(strings); } ImageStrings getStrings() { @@ -67,6 +68,7 @@ public class ImageLocation { } static long[] decompress(ByteBuffer bytes) { + Objects.requireNonNull(bytes); long[] attributes = new long[ATTRIBUTE_COUNT]; if (bytes != null) { @@ -103,6 +105,7 @@ public class ImageLocation { } public static byte[] compress(long[] attributes) { + Objects.requireNonNull(attributes); ImageStream stream = new ImageStream(16); for (int kind = ATTRIBUTE_END + 1; kind < ATTRIBUTE_COUNT; kind++) { @@ -124,6 +127,8 @@ public class ImageLocation { } public boolean verify(String name) { + Objects.requireNonNull(name); + return name.equals(getFullName()); } @@ -250,6 +255,7 @@ public class ImageLocation { } static ImageLocation readFrom(BasicImageReader reader, int offset) { + Objects.requireNonNull(reader); long[] attributes = reader.getAttributes(offset); ImageStringsReader strings = reader.getStrings(); diff --git a/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageReader.java b/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageReader.java index a747ea8aa7b..60ab472db3e 100644 --- a/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageReader.java +++ b/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageReader.java @@ -59,6 +59,9 @@ public final class ImageReader implements AutoCloseable { } public static ImageReader open(Path imagePath, ByteOrder byteOrder) throws IOException { + Objects.requireNonNull(imagePath); + Objects.requireNonNull(byteOrder); + return SharedImageReader.open(imagePath, byteOrder); } @@ -218,6 +221,9 @@ public final class ImageReader implements AutoCloseable { } public static ImageReader open(Path imagePath, ByteOrder byteOrder) throws IOException { + Objects.requireNonNull(imagePath); + Objects.requireNonNull(byteOrder); + synchronized (OPEN_FILES) { SharedImageReader reader = OPEN_FILES.get(imagePath); @@ -237,6 +243,8 @@ public final class ImageReader implements AutoCloseable { } public void close(ImageReader image) throws IOException { + Objects.requireNonNull(image); + synchronized (OPEN_FILES) { if (!openers.remove(image)) { throw new IOException("image file already closed"); diff --git a/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageReaderFactory.java b/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageReaderFactory.java index 23be8faaf19..092b309b0b7 100644 --- a/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageReaderFactory.java +++ b/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageReaderFactory.java @@ -31,6 +31,7 @@ import java.nio.file.Path; import java.nio.file.Paths; import java.util.concurrent.ConcurrentHashMap; import java.util.Map; +import java.util.Objects; /** * Factory to get ImageReader @@ -54,6 +55,7 @@ public class ImageReaderFactory { * Returns an {@code ImageReader} to read from the given image file */ public static ImageReader get(Path jimage) throws IOException { + Objects.requireNonNull(jimage); ImageReader reader = readers.get(jimage); if (reader != null) { return reader; diff --git a/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageStream.java b/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageStream.java index 6abe1e651aa..dfa6394acdf 100644 --- a/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageStream.java +++ b/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageStream.java @@ -28,6 +28,7 @@ package jdk.internal.jimage; import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.util.Arrays; +import java.util.Objects; /** * @implNote This class needs to maintain JDK 8 source compatibility. @@ -57,16 +58,16 @@ public class ImageStream { public ImageStream(int size, ByteOrder byteOrder) { buffer = ByteBuffer.allocate(size); - buffer.order(byteOrder); + buffer.order(Objects.requireNonNull(byteOrder)); } public ImageStream(byte[] bytes, ByteOrder byteOrder) { - buffer = ByteBuffer.wrap(bytes); - buffer.order(byteOrder); + buffer = ByteBuffer.wrap(Objects.requireNonNull(bytes)); + buffer.order(Objects.requireNonNull(byteOrder)); } public ImageStream(ByteBuffer buffer) { - this.buffer = buffer; + this.buffer = Objects.requireNonNull(buffer); } public ImageStream align(int alignment) { diff --git a/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageStringsReader.java b/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageStringsReader.java index 7a6ad7b75f4..382e6b1696b 100644 --- a/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageStringsReader.java +++ b/jdk/src/java.base/share/classes/jdk/internal/jimage/ImageStringsReader.java @@ -27,6 +27,7 @@ package jdk.internal.jimage; import java.io.UTFDataFormatException; import java.nio.ByteBuffer; +import java.util.Objects; /** * @implNote This class needs to maintain JDK 8 source compatibility. @@ -40,7 +41,7 @@ public class ImageStringsReader implements ImageStrings { private final BasicImageReader reader; ImageStringsReader(BasicImageReader reader) { - this.reader = reader; + this.reader = Objects.requireNonNull(reader); } @Override @@ -54,7 +55,19 @@ public class ImageStringsReader implements ImageStrings { } private static int hashCode(byte[] bytes, int offset, int count, int seed) { - for (int i = offset, limit = offset + count; i < limit; i++) { + Objects.requireNonNull(bytes); + + if (offset < 0 || count < 0 || offset > bytes.length - count) { + throw new IndexOutOfBoundsException("offset=" + offset + ", count=" + count); + } + + int limit = offset + count; + + if (limit < 0 || limit > bytes.length) { + throw new IndexOutOfBoundsException("limit=" + limit); + } + + for (int i = offset; i < limit; i++) { seed = (seed * HASH_MULTIPLIER) ^ (bytes[i] & 0xFF); } diff --git a/jdk/src/java.base/share/classes/jdk/internal/misc/VM.java b/jdk/src/java.base/share/classes/jdk/internal/misc/VM.java index af8d3253a22..2a839fdd593 100644 --- a/jdk/src/java.base/share/classes/jdk/internal/misc/VM.java +++ b/jdk/src/java.base/share/classes/jdk/internal/misc/VM.java @@ -475,6 +475,23 @@ public class VM { */ public static native long getNanoTimeAdjustment(long offsetInSeconds); + /** + * Returns the VM arguments for this runtime environment. + * + * @implNote + * The HotSpot JVM processes the input arguments from multiple sources + * in the following order: + * 1. JAVA_TOOL_OPTIONS environment variable + * 2. Options from JNI Invocation API + * 3. _JAVA_OPTIONS environment variable + * + * If VM options file is specified via -XX:VMOptionsFile, the vm options + * file is read and expanded in place of -XX:VMOptionFile option. + * + * Open issue with -XX:Flags (see JDK-8157979) + */ + public static native String[] getRuntimeArguments(); + static { initialize(); } diff --git a/jdk/src/java.base/share/classes/module-info.java b/jdk/src/java.base/share/classes/module-info.java index a1b13336fa2..d2bccf05718 100644 --- a/jdk/src/java.base/share/classes/module-info.java +++ b/jdk/src/java.base/share/classes/module-info.java @@ -152,8 +152,7 @@ module java.base { java.xml, jdk.dynalink, jdk.jartool, - jdk.jlink, - jdk.scripting.nashorn; + jdk.jlink; exports jdk.internal.misc to java.corba, java.desktop, @@ -165,6 +164,7 @@ module java.base { java.sql, java.xml, jdk.charsets, + jdk.compiler, jdk.jartool, jdk.jlink, jdk.net, @@ -215,6 +215,8 @@ module java.base { exports sun.nio.cs to java.desktop, jdk.charsets; + exports sun.nio.fs to + jdk.unsupported; exports sun.reflect.annotation to jdk.compiler; exports sun.reflect.generics.reflectiveObjects to diff --git a/jdk/src/java.base/share/classes/sun/nio/fs/ExtendedOptions.java b/jdk/src/java.base/share/classes/sun/nio/fs/ExtendedOptions.java new file mode 100644 index 00000000000..71ebffc8320 --- /dev/null +++ b/jdk/src/java.base/share/classes/sun/nio/fs/ExtendedOptions.java @@ -0,0 +1,143 @@ +/* + * 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 sun.nio.fs; + +import java.nio.file.CopyOption; +import java.nio.file.OpenOption; +import java.nio.file.WatchEvent; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +/** + * Provides support for handling JDK-specific OpenOption, CopyOption and + * WatchEvent.Modifier types. + */ + +public final class ExtendedOptions { + + // maps InternalOption to ExternalOption + private static final Map, Wrapper> internalToExternal + = new ConcurrentHashMap<>(); + + /** + * Wraps an option or modifier. + */ + private static final class Wrapper { + private final Object option; + private final T param; + + Wrapper(Object option, T param) { + this.option = option; + this.param = param; + } + + T parameter() { + return param; + } + } + + /** + * The internal version of a JDK-specific OpenOption, CopyOption or + * WatchEvent.Modifier. + */ + public static final class InternalOption { + + InternalOption() { } + + private void registerInternal(Object option, T param) { + Wrapper wrapper = new Wrapper(option, param); + internalToExternal.put(this, wrapper); + } + + /** + * Register this internal option as a OpenOption. + */ + public void register(OpenOption option) { + registerInternal(option, null); + } + + /** + * Register this internal option as a CopyOption. + */ + public void register(CopyOption option) { + registerInternal(option, null); + } + + /** + * Register this internal option as a WatchEvent.Modifier. + */ + public void register(WatchEvent.Modifier option) { + registerInternal(option, null); + } + + /** + * Register this internal option as a WatchEvent.Modifier with the + * given parameter. + */ + public void register(WatchEvent.Modifier option, T param) { + registerInternal(option, param); + } + + /** + * Returns true if the given option (or modifier) maps to this internal + * option. + */ + public boolean matches(Object option) { + Wrapper wrapper = internalToExternal.get(this); + if (wrapper == null) + return false; + else + return option == wrapper.option; + } + + /** + * Returns the parameter object associated with this internal option. + */ + @SuppressWarnings("unchecked") + public T parameter() { + Wrapper wrapper = internalToExternal.get(this); + if (wrapper == null) + return null; + else + return (T) wrapper.parameter(); + } + } + + // Internal equivalents of the options and modifiers defined in + // package com.sun.nio.file + + public static final InternalOption INTERRUPTIBLE = new InternalOption<>(); + + public static final InternalOption NOSHARE_READ = new InternalOption<>(); + public static final InternalOption NOSHARE_WRITE = new InternalOption<>(); + public static final InternalOption NOSHARE_DELETE = new InternalOption<>(); + + public static final InternalOption FILE_TREE = new InternalOption<>(); + + public static final InternalOption SENSITIVITY_HIGH = new InternalOption<>(); + public static final InternalOption SENSITIVITY_MEDIUM = new InternalOption<>(); + public static final InternalOption SENSITIVITY_LOW = new InternalOption<>(); +} diff --git a/jdk/src/java.base/share/classes/sun/nio/fs/PollingWatchService.java b/jdk/src/java.base/share/classes/sun/nio/fs/PollingWatchService.java index 536bfa7accf..13c365894c4 100644 --- a/jdk/src/java.base/share/classes/sun/nio/fs/PollingWatchService.java +++ b/jdk/src/java.base/share/classes/sun/nio/fs/PollingWatchService.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 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 @@ -25,16 +25,32 @@ package sun.nio.fs; -import java.nio.file.*; -import java.nio.file.attribute.*; +import java.nio.file.ClosedWatchServiceException; +import java.nio.file.DirectoryIteratorException; +import java.nio.file.DirectoryStream; +import java.nio.file.Files; +import java.nio.file.LinkOption; +import java.nio.file.NotDirectoryException; +import java.nio.file.Path; +import java.nio.file.StandardWatchEventKinds; +import java.nio.file.WatchEvent; +import java.nio.file.WatchKey; +import java.nio.file.attribute.BasicFileAttributes; import java.security.AccessController; import java.security.PrivilegedAction; import java.security.PrivilegedExceptionAction; import java.security.PrivilegedActionException; import java.io.IOException; -import java.util.*; -import java.util.concurrent.*; -import com.sun.nio.file.SensitivityWatchEventModifier; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Iterator; +import java.util.Map; +import java.util.Set; +import java.util.concurrent.Executors; +import java.util.concurrent.ScheduledExecutorService; +import java.util.concurrent.ScheduledFuture; +import java.util.concurrent.ThreadFactory; +import java.util.concurrent.TimeUnit; /** * Simple WatchService implementation that uses periodic tasks to poll @@ -46,8 +62,7 @@ class PollingWatchService extends AbstractWatchService { // map of registrations - private final Map map = - new HashMap(); + private final Map map = new HashMap<>(); // used to execute the periodic tasks that poll for changes private final ScheduledExecutorService scheduledExecutor; @@ -58,7 +73,7 @@ class PollingWatchService .newSingleThreadScheduledExecutor(new ThreadFactory() { @Override public Thread newThread(Runnable r) { - Thread t = new Thread(null, r, "FileSystemWatchService", 0, false); + Thread t = new Thread(null, r, "FileSystemWatcher", 0, false); t.setDaemon(true); return t; }}); @@ -74,8 +89,7 @@ class PollingWatchService throws IOException { // check events - CCE will be thrown if there are invalid elements - final Set> eventSet = - new HashSet>(events.length); + final Set> eventSet = new HashSet<>(events.length); for (WatchEvent.Kind event: events) { // standard events if (event == StandardWatchEventKinds.ENTRY_CREATE || @@ -99,17 +113,22 @@ class PollingWatchService if (eventSet.isEmpty()) throw new IllegalArgumentException("No events to register"); - // A modifier may be used to specify the sensitivity level - SensitivityWatchEventModifier sensivity = SensitivityWatchEventModifier.MEDIUM; + // Extended modifiers may be used to specify the sensitivity level + int sensitivity = 10; if (modifiers.length > 0) { for (WatchEvent.Modifier modifier: modifiers) { if (modifier == null) throw new NullPointerException(); - if (modifier instanceof SensitivityWatchEventModifier) { - sensivity = (SensitivityWatchEventModifier)modifier; - continue; + + if (ExtendedOptions.SENSITIVITY_HIGH.matches(modifier)) { + sensitivity = ExtendedOptions.SENSITIVITY_HIGH.parameter(); + } else if (ExtendedOptions.SENSITIVITY_MEDIUM.matches(modifier)) { + sensitivity = ExtendedOptions.SENSITIVITY_MEDIUM.parameter(); + } else if (ExtendedOptions.SENSITIVITY_LOW.matches(modifier)) { + sensitivity = ExtendedOptions.SENSITIVITY_LOW.parameter(); + } else { + throw new UnsupportedOperationException("Modifier not supported"); } - throw new UnsupportedOperationException("Modifier not supported"); } } @@ -120,12 +139,12 @@ class PollingWatchService // registration is done in privileged block as it requires the // attributes of the entries in the directory. try { - final SensitivityWatchEventModifier s = sensivity; + int value = sensitivity; return AccessController.doPrivileged( new PrivilegedExceptionAction() { @Override public PollingWatchKey run() throws IOException { - return doPrivilegedRegister(path, eventSet, s); + return doPrivilegedRegister(path, eventSet, value); } }); } catch (PrivilegedActionException pae) { @@ -140,7 +159,7 @@ class PollingWatchService // existing key if already registered private PollingWatchKey doPrivilegedRegister(Path path, Set> events, - SensitivityWatchEventModifier sensivity) + int sensitivityInSeconds) throws IOException { // check file is a directory and get its file key if possible @@ -169,7 +188,7 @@ class PollingWatchService watchKey.disable(); } } - watchKey.enable(events, sensivity.sensitivityValueInSeconds()); + watchKey.enable(events, sensitivityInSeconds); return watchKey; } @@ -178,7 +197,7 @@ class PollingWatchService @Override void implClose() throws IOException { synchronized (map) { - for (Map.Entry entry: map.entrySet()) { + for (Map.Entry entry: map.entrySet()) { PollingWatchKey watchKey = entry.getValue(); watchKey.disable(); watchKey.invalidate(); diff --git a/jdk/src/java.base/share/classes/sun/security/provider/certpath/AlgorithmChecker.java b/jdk/src/java.base/share/classes/sun/security/provider/certpath/AlgorithmChecker.java index b210d18e073..4562f4d0250 100644 --- a/jdk/src/java.base/share/classes/sun/security/provider/certpath/AlgorithmChecker.java +++ b/jdk/src/java.base/share/classes/sun/security/provider/certpath/AlgorithmChecker.java @@ -29,6 +29,7 @@ import java.security.AlgorithmConstraints; import java.security.CryptoPrimitive; import java.util.Collection; import java.util.Collections; +import java.util.Date; import java.util.Set; import java.util.EnumSet; import java.math.BigInteger; @@ -59,7 +60,7 @@ import sun.security.x509.X509CRLImpl; import sun.security.x509.AlgorithmId; /** - * A PKIXCertPathChecker implementation to check whether a + * A {@code PKIXCertPathChecker} implementation to check whether a * specified certificate contains the required algorithm constraints. *

* Certificate fields such as the subject public key, the signature @@ -74,6 +75,7 @@ public final class AlgorithmChecker extends PKIXCertPathChecker { private final AlgorithmConstraints constraints; private final PublicKey trustedPubKey; + private final Date pkixdate; private PublicKey prevPubKey; private static final Set SIGNATURE_PRIMITIVE_SET = @@ -99,7 +101,7 @@ public final class AlgorithmChecker extends PKIXCertPathChecker { private boolean trustedMatch = false; /** - * Create a new AlgorithmChecker with the algorithm + * Create a new {@code AlgorithmChecker} with the algorithm * constraints specified in security property * "jdk.certpath.disabledAlgorithms". * @@ -107,11 +109,26 @@ public final class AlgorithmChecker extends PKIXCertPathChecker { * certificate */ public AlgorithmChecker(TrustAnchor anchor) { - this(anchor, certPathDefaultConstraints); + this(anchor, certPathDefaultConstraints, null); } /** - * Create a new AlgorithmChecker with the + * Create a new {@code AlgorithmChecker} with the + * given {@code TrustAnchor} and {@code AlgorithmConstraints}. + * + * @param anchor the trust anchor selected to validate the target + * certificate + * @param constraints the algorithm constraints (or null) + * + * @throws IllegalArgumentException if the {@code anchor} is null + */ + public AlgorithmChecker(TrustAnchor anchor, + AlgorithmConstraints constraints) { + this(anchor, constraints, null); + } + + /** + * Create a new {@code AlgorithmChecker} with the * given {@code AlgorithmConstraints}. *

* Note that this constructor will be used to check a certification @@ -124,20 +141,24 @@ public final class AlgorithmChecker extends PKIXCertPathChecker { this.prevPubKey = null; this.trustedPubKey = null; this.constraints = constraints; + this.pkixdate = null; } /** - * Create a new AlgorithmChecker with the - * given TrustAnchor and AlgorithmConstraints. + * Create a new {@code AlgorithmChecker} with the + * given {@code TrustAnchor} and {@code AlgorithmConstraints}. * * @param anchor the trust anchor selected to validate the target * certificate * @param constraints the algorithm constraints (or null) + * @param pkixdate Date the constraints are checked against. The value is + * either the PKIXParameter date or null for the current date. * - * @throws IllegalArgumentException if the anchor is null + * @throws IllegalArgumentException if the {@code anchor} is null */ public AlgorithmChecker(TrustAnchor anchor, - AlgorithmConstraints constraints) { + AlgorithmConstraints constraints, + Date pkixdate) { if (anchor == null) { throw new IllegalArgumentException( @@ -157,6 +178,22 @@ public final class AlgorithmChecker extends PKIXCertPathChecker { this.prevPubKey = trustedPubKey; this.constraints = constraints; + this.pkixdate = pkixdate; + } + + /** + * Create a new {@code AlgorithmChecker} with the + * given {@code TrustAnchor} and {@code PKIXParameter} date. + * + * @param anchor the trust anchor selected to validate the target + * certificate + * @param pkixdate Date the constraints are checked against. The value is + * either the PKIXParameter date or null for the current date. + * + * @throws IllegalArgumentException if the {@code anchor} is null + */ + public AlgorithmChecker(TrustAnchor anchor, Date pkixdate) { + this(anchor, certPathDefaultConstraints, pkixdate); } // Check this 'cert' for restrictions in the AnchorCertificates @@ -259,7 +296,7 @@ public final class AlgorithmChecker extends PKIXCertPathChecker { // permits() will throw exception on failure. certPathDefaultConstraints.permits(primitives, new CertConstraintParameters((X509Certificate)cert, - trustedMatch)); + trustedMatch, pkixdate)); // new CertConstraintParameters(x509Cert, trustedMatch)); // If there is no previous key, set one and exit if (prevPubKey == null) { diff --git a/jdk/src/java.base/share/classes/sun/security/provider/certpath/PKIXCertPathValidator.java b/jdk/src/java.base/share/classes/sun/security/provider/certpath/PKIXCertPathValidator.java index 98816f779e3..934fc10b560 100644 --- a/jdk/src/java.base/share/classes/sun/security/provider/certpath/PKIXCertPathValidator.java +++ b/jdk/src/java.base/share/classes/sun/security/provider/certpath/PKIXCertPathValidator.java @@ -172,7 +172,7 @@ public final class PKIXCertPathValidator extends CertPathValidatorSpi { List certPathCheckers = new ArrayList<>(); // add standard checkers that we will be using certPathCheckers.add(untrustedChecker); - certPathCheckers.add(new AlgorithmChecker(anchor)); + certPathCheckers.add(new AlgorithmChecker(anchor, params.date())); certPathCheckers.add(new KeyChecker(certPathLen, params.targetCertConstraints())); certPathCheckers.add(new ConstraintsChecker(certPathLen)); diff --git a/jdk/src/java.base/share/classes/sun/security/provider/certpath/SunCertPathBuilder.java b/jdk/src/java.base/share/classes/sun/security/provider/certpath/SunCertPathBuilder.java index a0c058e795e..c0cc98a7a36 100644 --- a/jdk/src/java.base/share/classes/sun/security/provider/certpath/SunCertPathBuilder.java +++ b/jdk/src/java.base/share/classes/sun/security/provider/certpath/SunCertPathBuilder.java @@ -343,7 +343,8 @@ public final class SunCertPathBuilder extends CertPathBuilderSpi { checkers.add(policyChecker); // add the algorithm checker - checkers.add(new AlgorithmChecker(builder.trustAnchor)); + checkers.add(new AlgorithmChecker(builder.trustAnchor, + buildParams.date())); BasicChecker basicChecker = null; if (nextState.keyParamsNeeded()) { diff --git a/jdk/src/java.base/share/classes/sun/security/ssl/RSAClientKeyExchange.java b/jdk/src/java.base/share/classes/sun/security/ssl/RSAClientKeyExchange.java index 38a942d03b7..6cb2b650de5 100644 --- a/jdk/src/java.base/share/classes/sun/security/ssl/RSAClientKeyExchange.java +++ b/jdk/src/java.base/share/classes/sun/security/ssl/RSAClientKeyExchange.java @@ -90,6 +90,30 @@ final class RSAClientKeyExchange extends HandshakeMessage { } } + /* + * Retrieving the cipher's provider name for the debug purposes + * can throw an exception by itself. + */ + private static String safeProviderName(Cipher cipher) { + try { + return cipher.getProvider().toString(); + } catch (Exception e) { + if (debug != null && Debug.isOn("handshake")) { + System.out.println("Retrieving The Cipher provider name" + + " caused exception " + e.getMessage()); + } + } + try { + return cipher.toString() + " (provider name not available)"; + } catch (Exception e) { + if (debug != null && Debug.isOn("handshake")) { + System.out.println("Retrieving The Cipher name" + + " caused exception " + e.getMessage()); + } + } + return "(cipher/provider names not available)"; + } + /* * Server gets the PKCS #1 (block format 02) data, decrypts * it with its private key. @@ -132,15 +156,19 @@ final class RSAClientKeyExchange extends HandshakeMessage { cipher.getProvider().getName()); } catch (InvalidKeyException | UnsupportedOperationException iue) { if (debug != null && Debug.isOn("handshake")) { - System.out.println("The Cipher provider " + - cipher.getProvider().getName() + - " caused exception: " + iue.getMessage()); + System.out.println("The Cipher provider " + + safeProviderName(cipher) + + " caused exception: " + iue.getMessage()); } needFailover = true; } if (needFailover) { + // The cipher might be spoiled by unsuccessful call to init(), + // so request a fresh instance + cipher = JsseJce.getCipher(JsseJce.CIPHER_RSA_PKCS1); + // Use DECRYPT_MODE and dispose the previous initialization. cipher.init(Cipher.DECRYPT_MODE, privateKey); boolean failed = false; diff --git a/jdk/src/java.base/share/classes/sun/security/util/CertConstraintParameters.java b/jdk/src/java.base/share/classes/sun/security/util/CertConstraintParameters.java index 9f7a938dede..00a94c53950 100644 --- a/jdk/src/java.base/share/classes/sun/security/util/CertConstraintParameters.java +++ b/jdk/src/java.base/share/classes/sun/security/util/CertConstraintParameters.java @@ -26,6 +26,7 @@ package sun.security.util; import java.security.cert.X509Certificate; +import java.util.Date; /** * This class is a wrapper for keeping state and passing objects between PKIX, @@ -34,18 +35,21 @@ import java.security.cert.X509Certificate; public class CertConstraintParameters { // A certificate being passed to check against constraints. private final X509Certificate cert; - // This is true if the trust anchor in the certificate chain matches a cert // in AnchorCertificates private final boolean trustedMatch; + // PKIXParameter date + private final Date pkixDate; - public CertConstraintParameters(X509Certificate c, boolean match) { + public CertConstraintParameters(X509Certificate c, boolean match, + Date pkixdate) { cert = c; trustedMatch = match; + pkixDate = pkixdate; } public CertConstraintParameters(X509Certificate c) { - this(c, false); + this(c, false, null); } // Returns if the trust anchor has a match if anchor checking is enabled. @@ -56,4 +60,9 @@ public class CertConstraintParameters { public X509Certificate getCertificate() { return cert; } + + public Date getPKIXParamDate() { + return pkixDate; + } + } diff --git a/jdk/src/java.base/share/classes/sun/security/util/DisabledAlgorithmConstraints.java b/jdk/src/java.base/share/classes/sun/security/util/DisabledAlgorithmConstraints.java index d4b2a4054b3..f0b89564094 100644 --- a/jdk/src/java.base/share/classes/sun/security/util/DisabledAlgorithmConstraints.java +++ b/jdk/src/java.base/share/classes/sun/security/util/DisabledAlgorithmConstraints.java @@ -31,11 +31,15 @@ import java.security.Key; import java.security.cert.CertPathValidatorException; import java.security.cert.CertPathValidatorException.BasicReason; import java.security.cert.X509Certificate; +import java.text.SimpleDateFormat; +import java.util.Calendar; +import java.util.Date; import java.util.HashMap; import java.util.HashSet; import java.util.Locale; import java.util.Map; import java.util.Set; +import java.util.TimeZone; import java.util.regex.Pattern; import java.util.regex.Matcher; @@ -226,6 +230,8 @@ public class DisabledAlgorithmConstraints extends AbstractAlgorithmConstraints { private Map> constraintsMap = new HashMap<>(); private static final Pattern keySizePattern = Pattern.compile( "keySize\\s*(<=|<|==|!=|>|>=)\\s*(\\d+)"); + private static final Pattern denyAfterPattern = Pattern.compile( + "denyAfter\\s+(\\d{4})-(\\d{2})-(\\d{2})"); public Constraints(String[] constraintArray) { for (String constraintEntry : constraintArray) { @@ -259,6 +265,8 @@ public class DisabledAlgorithmConstraints extends AbstractAlgorithmConstraints { Constraint c, lastConstraint = null; // Allow only one jdkCA entry per constraint entry boolean jdkCALimit = false; + // Allow only one denyAfter entry per constraint entry + boolean denyAfterLimit = false; for (String entry : policy.split("&")) { entry = entry.trim(); @@ -284,6 +292,22 @@ public class DisabledAlgorithmConstraints extends AbstractAlgorithmConstraints { } c = new jdkCAConstraint(algorithm); jdkCALimit = true; + + } else if(matcher.usePattern(denyAfterPattern).matches()) { + if (debug != null) { + debug.println("Constraints set to denyAfter"); + } + if (denyAfterLimit) { + throw new IllegalArgumentException("Only one " + + "denyAfter entry allowed in property. " + + "Constraint: " + constraintEntry); + } + int year = Integer.parseInt(matcher.group(1)); + int month = Integer.parseInt(matcher.group(2)); + int day = Integer.parseInt(matcher.group(3)); + c = new DenyAfterConstraint(algorithm, year, month, + day); + denyAfterLimit = true; } else { throw new IllegalArgumentException("Error in security" + " property. Constraint unknown: " + entry); @@ -360,7 +384,15 @@ public class DisabledAlgorithmConstraints extends AbstractAlgorithmConstraints { } } - // Abstract class for algorithm constraint checking + /** + * This abstract Constraint class for algorithm-based checking + * may contain one or more constraints. If the '&' on the {@Security} + * property is used, multiple constraints have been grouped together + * requiring all the constraints to fail for the check to be disallowed. + * + * If the class contains multiple constraints, the next constraint + * is stored in {@code nextConstraint} in linked-list fashion. + */ private abstract static class Constraint { String algorithm; Constraint nextConstraint = null; @@ -396,22 +428,79 @@ public class DisabledAlgorithmConstraints extends AbstractAlgorithmConstraints { } /** - * Check if an algorithm constraint permit this key to be used. + * Check if an algorithm constraint is permitted with a given key. + * + * If the check inside of {@code permit()} fails, it must call + * {@code next()} with the same {@code Key} parameter passed if + * multiple constraints need to be checked. + * * @param key Public key - * @return true if constraints do not match + * @return 'true' if constraint is allowed, 'false' if disallowed. */ public boolean permits(Key key) { return true; } /** - * Check if an algorithm constraint is permit this certificate to - * be used. - * @param cp CertificateParameter containing certificate and state info - * @return true if constraints do not match + * Check if an algorithm constraint is permitted with a given + * CertConstraintParameters. + * + * If the check inside of {@code permits()} fails, it must call + * {@code next()} with the same {@code CertConstraintParameters} + * parameter passed if multiple constraints need to be checked. + * + * @param cp CertConstraintParameter containing certificate info + * @throws CertPathValidatorException if constraint disallows. + * */ public abstract void permits(CertConstraintParameters cp) throws CertPathValidatorException; + + /** + * Recursively check if the constraints are allowed. + * + * If {@code nextConstraint} is non-null, this method will + * call {@code nextConstraint}'s {@code permits()} to check if the + * constraint is allowed or denied. If the constraint's + * {@code permits()} is allowed, this method will exit this and any + * recursive next() calls, returning 'true'. If the constraints called + * were disallowed, the last constraint will throw + * {@code CertPathValidatorException}. + * + * @param cp CertConstraintParameters + * @return 'true' if constraint allows the operation, 'false' if + * we are at the end of the constraint list or, + * {@code nextConstraint} is null. + */ + boolean next(CertConstraintParameters cp) + throws CertPathValidatorException { + if (nextConstraint != null) { + nextConstraint.permits(cp); + return true; + } + return false; + } + + /** + * Recursively check if this constraint is allowed, + * + * If {@code nextConstraint} is non-null, this method will + * call {@code nextConstraint}'s {@code permit()} to check if the + * constraint is allowed or denied. If the constraint's + * {@code permit()} is allowed, this method will exit this and any + * recursive next() calls, returning 'true'. If the constraints + * called were disallowed the check will exit with 'false'. + * + * @param key Public key + * @return 'true' if constraint allows the operation, 'false' if + * the constraint denies the operation. + */ + boolean next(Key key) { + if (nextConstraint != null && nextConstraint.permits(key)) { + return true; + } + return false; + } } /* @@ -424,9 +513,9 @@ public class DisabledAlgorithmConstraints extends AbstractAlgorithmConstraints { } /* - * Check if each constraint fails and check if there is a linked - * constraint Any permitted constraint will exit the linked list - * to allow the operation. + * Check if CertConstraintParameters has a trusted match, if it does + * call next() for any following constraints. If it does not, exit + * as this constraint(s) does not restrict the operation. */ public void permits(CertConstraintParameters cp) throws CertPathValidatorException { @@ -434,10 +523,9 @@ public class DisabledAlgorithmConstraints extends AbstractAlgorithmConstraints { debug.println("jdkCAConstraints.permits(): " + algorithm); } - // Return false if the chain has a trust anchor in cacerts + // Check chain has a trust anchor in cacerts if (cp.isTrustedMatch()) { - if (nextConstraint != null) { - nextConstraint.permits(cp); + if (next(cp)) { return; } throw new CertPathValidatorException( @@ -448,6 +536,99 @@ public class DisabledAlgorithmConstraints extends AbstractAlgorithmConstraints { } } + /* + * This class handles the denyAfter constraint. The date is in the UTC/GMT + * timezone. + */ + private static class DenyAfterConstraint extends Constraint { + private Date denyAfterDate; + private static final SimpleDateFormat dateFormat = + new SimpleDateFormat("EEE, MMM d HH:mm:ss z YYYY"); + + DenyAfterConstraint(String algo, int year, int month, int day) { + Calendar c; + + algorithm = algo; + + if (debug != null) { + debug.println("DenyAfterConstraint read in as: year " + + year + ", month = " + month + ", day = " + day); + } + + c = new Calendar.Builder().setTimeZone(TimeZone.getTimeZone("GMT")) + .setDate(year, month - 1, day).build(); + + if (year > c.getActualMaximum(Calendar.YEAR) || + year < c.getActualMinimum(Calendar.YEAR)) { + throw new IllegalArgumentException( + "Invalid year given in constraint: " + year); + } + if ((month - 1) > c.getActualMaximum(Calendar.MONTH) || + (month - 1) < c.getActualMinimum(Calendar.MONTH)) { + throw new IllegalArgumentException( + "Invalid month given in constraint: " + month); + } + if (day > c.getActualMaximum(Calendar.DAY_OF_MONTH) || + day < c.getActualMinimum(Calendar.DAY_OF_MONTH)) { + throw new IllegalArgumentException( + "Invalid Day of Month given in constraint: " + day); + } + + denyAfterDate = c.getTime(); + if (debug != null) { + debug.println("DenyAfterConstraint date set to: " + + dateFormat.format(denyAfterDate)); + } + } + + /* + * Checking that the provided date is not beyond the constraint date. + * The provided date can be the PKIXParameter date if given, + * otherwise it is the current date. + * + * If the constraint disallows, call next() for any following + * constraints. Throw an exception if this is the last constraint. + */ + @Override + public void permits(CertConstraintParameters cp) + throws CertPathValidatorException { + Date currentDate; + + if (cp.getPKIXParamDate() != null) { + currentDate = cp.getPKIXParamDate(); + } else { + currentDate = new Date(); + } + + if (!denyAfterDate.after(currentDate)) { + if (next(cp)) { + return; + } + throw new CertPathValidatorException( + "denyAfter constraint check failed. " + + "Constraint date: " + + dateFormat.format(denyAfterDate) + + "; Cert date: " + + dateFormat.format(currentDate), + null, null, -1, BasicReason.ALGORITHM_CONSTRAINED); + } + } + + /* + * Return result if the constraint's date is beyond the current date + * in UTC timezone. + */ + public boolean permits(Key key) { + if (next(key)) { + return true; + } + if (debug != null) { + debug.println("DenyAfterConstraints.permits(): " + algorithm); + } + + return denyAfterDate.after(new Date()); + } + } /* * This class contains constraints dealing with the key size diff --git a/jdk/src/java.base/share/classes/sun/text/resources/JavaTimeSupplementary.java b/jdk/src/java.base/share/classes/sun/text/resources/JavaTimeSupplementary.java index 50bf1f2eac8..7d62fa52030 100644 --- a/jdk/src/java.base/share/classes/sun/text/resources/JavaTimeSupplementary.java +++ b/jdk/src/java.base/share/classes/sun/text/resources/JavaTimeSupplementary.java @@ -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", diff --git a/jdk/src/java.base/share/classes/sun/text/resources/JavaTimeSupplementary_en.java b/jdk/src/java.base/share/classes/sun/text/resources/JavaTimeSupplementary_en.java index 62e66074c86..9ba3f94304b 100644 --- a/jdk/src/java.base/share/classes/sun/text/resources/JavaTimeSupplementary_en.java +++ b/jdk/src/java.base/share/classes/sun/text/resources/JavaTimeSupplementary_en.java @@ -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.", diff --git a/jdk/src/java.base/share/conf/security/java.security b/jdk/src/java.base/share/conf/security/java.security index caf94448f25..8515b3b1711 100644 --- a/jdk/src/java.base/share/conf/security/java.security +++ b/jdk/src/java.base/share/conf/security/java.security @@ -570,9 +570,7 @@ krb5.kdc.bad.policy = tryLast # describes the mechanism for disabling algorithms based on algorithm name # and/or key length. This includes algorithms used in certificates, as well # as revocation information such as CRLs and signed OCSP Responses. -# -# The syntax of the disabled algorithm string is described as this Java -# BNF-style: +# The syntax of the disabled algorithm string is described as follows: # DisabledAlgorithms: # " DisabledAlgorithm { , DisabledAlgorithm } " # @@ -583,26 +581,23 @@ krb5.kdc.bad.policy = tryLast # (see below) # # Constraint: -# KeySizeConstraint, CertConstraint +# KeySizeConstraint | CAConstraint | DenyAfterConstraint # # KeySizeConstraint: -# keySize Operator DecimalInteger +# keySize Operator KeyLength # # Operator: # <= | < | == | != | >= | > # -# DecimalInteger: -# DecimalDigits +# KeyLength: +# Integer value of the algorithm's key length in bits # -# DecimalDigits: -# DecimalDigit {DecimalDigit} -# -# DecimalDigit: one of -# 1 2 3 4 5 6 7 8 9 0 -# -# CertConstraint +# CAConstraint: # jdkCA # +# DenyAfterConstraint: +# denyAfter YYYY-MM-DD +# # The "AlgorithmName" is the standard algorithm name of the disabled # algorithm. See "Java Cryptography Architecture Standard Algorithm Name # Documentation" for information about Standard Algorithm Names. Matching @@ -615,27 +610,42 @@ krb5.kdc.bad.policy = tryLast # that rely on DSA, such as NONEwithDSA, SHA1withDSA. However, the assertion # will not disable algorithms related to "ECDSA". # -# A "Constraint" provides further guidance for the algorithm being specified. -# The "KeySizeConstraint" requires a key of a valid size range if the -# "AlgorithmName" is of a key algorithm. The "DecimalInteger" indicates the -# key size specified in number of bits. For example, "RSA keySize <= 1024" -# indicates that any RSA key with key size less than or equal to 1024 bits -# should be disabled, and "RSA keySize < 1024, RSA keySize > 2048" indicates -# that any RSA key with key size less than 1024 or greater than 2048 should -# be disabled. Note that the "KeySizeConstraint" only makes sense to key -# algorithms. +# A "Constraint" defines restrictions on the keys and/or certificates for +# a specified AlgorithmName: # -# "CertConstraint" specifies additional constraints for -# certificates that contain algorithms that are restricted: +# KeySizeConstraint: +# keySize Operator KeyLength +# The constraint requires a key of a valid size range if the +# "AlgorithmName" is of a key algorithm. The "KeyLength" indicates +# the key size specified in number of bits. For example, +# "RSA keySize <= 1024" indicates that any RSA key with key size less +# than or equal to 1024 bits should be disabled, and +# "RSA keySize < 1024, RSA keySize > 2048" indicates that any RSA key +# with key size less than 1024 or greater than 2048 should be disabled. +# This constraint is only used on algorithms that have a key size. # -# "jdkCA" prohibits the specified algorithm only if the algorithm is used -# in a certificate chain that terminates at a marked trust anchor in the -# lib/security/cacerts keystore.  All other chains are not affected. -# If the jdkCA constraint is not set, then all chains using the -# specified algorithm are restricted. jdkCA may only be used once in -# a DisabledAlgorithm expression. -# Example:  To apply this constraint to SHA-1 certificates, include -# the following:  "SHA1 jdkCA" +# CAConstraint: +# jdkCA +# This constraint prohibits the specified algorithm only if the +# algorithm is used in a certificate chain that terminates at a marked +# trust anchor in the lib/security/cacerts keystore. If the jdkCA +# constraint is not set, then all chains using the specified algorithm +# are restricted. jdkCA may only be used once in a DisabledAlgorithm +# expression. +# Example:  To apply this constraint to SHA-1 certificates, include +# the following:  "SHA1 jdkCA" +# +# DenyAfterConstraint: +# denyAfter YYYY-MM-DD +# This constraint prohibits a certificate with the specified algorithm +# from being used after the date regardless of the certificate's +# validity.  JAR files that are signed and timestamped before the +# constraint date with certificates containing the disabled algorithm +# will not be restricted.  The date is processed in the UTC timezone. +# This constraint can only be used once in a DisabledAlgorithm +# expression. +# Example: To deny usage of RSA 2048 bit certificates after Feb 3 2020, +# use the following: "RSA keySize == 2048 & denyAfter 2020-02-03" # # When an algorithm must satisfy more than one constraint, it must be # delimited by an ampersand '&'. For example, to restrict certificates in a diff --git a/jdk/src/java.base/share/native/libjava/VM.c b/jdk/src/java.base/share/native/libjava/VM.c index 53837efc518..9e99528c63d 100644 --- a/jdk/src/java.base/share/native/libjava/VM.c +++ b/jdk/src/java.base/share/native/libjava/VM.c @@ -55,3 +55,8 @@ Java_jdk_internal_misc_VM_initialize(JNIEnv *env, jclass cls) { (*env)->RegisterNatives(env, cls, methods, sizeof(methods)/sizeof(methods[0])); } + +JNIEXPORT jobjectArray JNICALL +Java_jdk_internal_misc_VM_getRuntimeArguments(JNIEnv *env, jclass cls) { + return JVM_GetVmArguments(env); +} diff --git a/jdk/src/java.base/share/native/libverify/check_code.c b/jdk/src/java.base/share/native/libverify/check_code.c index e22101496d7..1f9408fb206 100644 --- a/jdk/src/java.base/share/native/libverify/check_code.c +++ b/jdk/src/java.base/share/native/libverify/check_code.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1994, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1994, 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 @@ -1744,9 +1744,14 @@ static int instruction_length(unsigned char *iptr, unsigned char *end) } default: { + if (instruction < 0 || instruction > JVM_OPC_MAX) + return -1; + /* A length of 0 indicates an error. */ - int length = opcode_length[instruction]; - return (length <= 0) ? -1 : length; + if (opcode_length[instruction] <= 0) + return -1; + + return opcode_length[instruction]; } } } diff --git a/jdk/src/java.base/share/native/libzip/zip_util.c b/jdk/src/java.base/share/native/libzip/zip_util.c index 4837fc81c66..26f507e90e4 100644 --- a/jdk/src/java.base/share/native/libzip/zip_util.c +++ b/jdk/src/java.base/share/native/libzip/zip_util.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1995, 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 @@ -76,6 +76,13 @@ static void freeCEN(jzfile *); static jint INITIAL_META_COUNT = 2; /* initial number of entries in meta name array */ +/* + * Declare library specific JNI_Onload entry if static build + */ +#ifdef STATIC_BUILD +DEF_STATIC_JNI_OnLoad +#endif + /* * The ZFILE_* functions exist to provide some platform-independence with * respect to file access needs. diff --git a/jdk/src/java.base/solaris/classes/sun/nio/fs/SolarisWatchService.java b/jdk/src/java.base/solaris/classes/sun/nio/fs/SolarisWatchService.java index 7a31d13b3a6..cc077cb8b0f 100644 --- a/jdk/src/java.base/solaris/classes/sun/nio/fs/SolarisWatchService.java +++ b/jdk/src/java.base/solaris/classes/sun/nio/fs/SolarisWatchService.java @@ -272,9 +272,11 @@ class SolarisWatchService for (WatchEvent.Modifier modifier: modifiers) { if (modifier == null) return new NullPointerException(); - if (modifier instanceof com.sun.nio.file.SensitivityWatchEventModifier) - continue; // ignore - return new UnsupportedOperationException("Modifier not supported"); + if (!ExtendedOptions.SENSITIVITY_HIGH.matches(modifier) && + !ExtendedOptions.SENSITIVITY_MEDIUM.matches(modifier) && + !ExtendedOptions.SENSITIVITY_LOW.matches(modifier)) { + return new UnsupportedOperationException("Modifier not supported"); + } } } diff --git a/jdk/src/java.base/unix/classes/sun/nio/fs/UnixCopyFile.java b/jdk/src/java.base/unix/classes/sun/nio/fs/UnixCopyFile.java index 7a31ab186a6..34fe5d24526 100644 --- a/jdk/src/java.base/unix/classes/sun/nio/fs/UnixCopyFile.java +++ b/jdk/src/java.base/unix/classes/sun/nio/fs/UnixCopyFile.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 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 @@ -25,13 +25,18 @@ package sun.nio.fs; -import java.nio.file.*; import java.io.IOException; +import java.nio.file.AtomicMoveNotSupportedException; +import java.nio.file.CopyOption; +import java.nio.file.DirectoryNotEmptyException; +import java.nio.file.FileAlreadyExistsException; +import java.nio.file.LinkOption; +import java.nio.file.LinkPermission; +import java.nio.file.StandardCopyOption; import java.security.AccessController; import java.security.PrivilegedAction; import java.util.concurrent.ExecutionException; import java.util.concurrent.TimeUnit; -import com.sun.nio.file.ExtendedCopyOption; import static sun.nio.fs.UnixNativeDispatcher.*; import static sun.nio.fs.UnixConstants.*; @@ -82,7 +87,7 @@ class UnixCopyFile { flags.failIfUnableToCopyBasic = true; continue; } - if (option == ExtendedCopyOption.INTERRUPTIBLE) { + if (ExtendedOptions.INTERRUPTIBLE.matches(option)) { flags.interruptible = true; continue; } diff --git a/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsChannelFactory.java b/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsChannelFactory.java index 4a1139a2a73..7af7132bfee 100644 --- a/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsChannelFactory.java +++ b/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsChannelFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 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 @@ -34,8 +34,6 @@ import java.nio.file.OpenOption; import java.nio.file.StandardOpenOption; import java.util.Set; -import com.sun.nio.file.ExtendedOpenOption; - import jdk.internal.misc.JavaIOFileDescriptorAccess; import jdk.internal.misc.SharedSecrets; import sun.nio.ch.FileChannelImpl; @@ -103,15 +101,6 @@ class WindowsChannelFactory { } continue; } - if (option instanceof ExtendedOpenOption) { - switch ((ExtendedOpenOption)option) { - case NOSHARE_READ : flags.shareRead = false; break; - case NOSHARE_WRITE : flags.shareWrite = false; break; - case NOSHARE_DELETE : flags.shareDelete = false; break; - default: throw new UnsupportedOperationException(); - } - continue; - } if (option == LinkOption.NOFOLLOW_LINKS) { flags.noFollowLinks = true; continue; @@ -120,6 +109,18 @@ class WindowsChannelFactory { flags.openReparsePoint = true; continue; } + if (ExtendedOptions.NOSHARE_READ.matches(option)) { + flags.shareRead = false; + continue; + } + if (ExtendedOptions.NOSHARE_WRITE.matches(option)) { + flags.shareWrite = false; + continue; + } + if (ExtendedOptions.NOSHARE_DELETE.matches(option)) { + flags.shareDelete = false; + continue; + } if (option == null) throw new NullPointerException(); throw new UnsupportedOperationException(); diff --git a/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsFileCopy.java b/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsFileCopy.java index 001f1ba5fb5..c96a699370f 100644 --- a/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsFileCopy.java +++ b/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsFileCopy.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 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 @@ -28,7 +28,6 @@ package sun.nio.fs; import java.nio.file.*; import java.io.IOException; import java.util.concurrent.ExecutionException; -import com.sun.nio.file.ExtendedCopyOption; import static sun.nio.fs.WindowsNativeDispatcher.*; import static sun.nio.fs.WindowsConstants.*; @@ -67,7 +66,7 @@ class WindowsFileCopy { copyAttributes = true; continue; } - if (option == ExtendedCopyOption.INTERRUPTIBLE) { + if (ExtendedOptions.INTERRUPTIBLE.matches(option)) { interruptible = true; continue; } diff --git a/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsPath.java b/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsPath.java index 539bad62190..763f10e6929 100644 --- a/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsPath.java +++ b/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsPath.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 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 @@ -32,8 +32,6 @@ import java.net.URI; import java.util.*; import java.lang.ref.WeakReference; -import com.sun.nio.file.ExtendedWatchEventModifier; - import static sun.nio.fs.WindowsNativeDispatcher.*; import static sun.nio.fs.WindowsConstants.*; @@ -864,7 +862,7 @@ class WindowsPath implements Path { modifiers = Arrays.copyOf(modifiers, ml); int i=0; while (i < ml) { - if (modifiers[i++] == ExtendedWatchEventModifier.FILE_TREE) { + if (ExtendedOptions.FILE_TREE.matches(modifiers[i++])) { watchSubtree = true; break; } diff --git a/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsWatchService.java b/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsWatchService.java index 00e68fb785b..d5b82285075 100644 --- a/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsWatchService.java +++ b/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsWatchService.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 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 @@ -35,7 +35,6 @@ import java.util.HashMap; import java.util.Map; import java.util.Set; -import com.sun.nio.file.ExtendedWatchEventModifier; import jdk.internal.misc.Unsafe; import static sun.nio.fs.WindowsNativeDispatcher.*; @@ -342,14 +341,16 @@ class WindowsWatchService // FILE_TREE modifier allowed for (WatchEvent.Modifier modifier: modifiers) { - if (modifier == ExtendedWatchEventModifier.FILE_TREE) { + if (ExtendedOptions.FILE_TREE.matches(modifier)) { watchSubtree = true; } else { if (modifier == null) return new NullPointerException(); - if (modifier instanceof com.sun.nio.file.SensitivityWatchEventModifier) - continue; // ignore - return new UnsupportedOperationException("Modifier not supported"); + if (!ExtendedOptions.SENSITIVITY_HIGH.matches(modifier) && + !ExtendedOptions.SENSITIVITY_MEDIUM.matches(modifier) && + !ExtendedOptions.SENSITIVITY_LOW.matches(modifier)) { + return new UnsupportedOperationException("Modifier not supported"); + } } } diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ar.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ar.java index 9055855c5f3..7d2382b0f37 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ar.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ar.java @@ -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.", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_be.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_be.java index e2dcb10ef2f..35890522c82 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_be.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_be.java @@ -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.", + } + }, }; } } diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_bg.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_bg.java index 3901f112e19..6d6c53bb0ad 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_bg.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_bg.java @@ -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.", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ca.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ca.java index 61e82a03823..8a4064cb006 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ca.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ca.java @@ -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.", } }, }; diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_cs.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_cs.java index 0e2fb2a979b..c6b46b60cfe 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_cs.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_cs.java @@ -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.", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_da.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_da.java index 0e901c9d651..9cc683a9972 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_da.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_da.java @@ -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.", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_de.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_de.java index b3a443dd3b8..e4854bb6c02 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_de.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_de.java @@ -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.", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_el.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_el.java index 6d84753086a..1a699b83c2e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_el.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_el.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_AU.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_AU.java index 4ba17c167ff..f848483c897 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_AU.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_AU.java @@ -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", } }, }; diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_GB.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_GB.java index bd4dc5120a9..ae5224f7873 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_GB.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_GB.java @@ -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", + } + }, }; } } diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_IE.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_IE.java index 6afa8736120..f199240fe7c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_IE.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_IE.java @@ -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", + } + }, }; } } diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_MT.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_MT.java index aca5cea5d00..22c721ec69c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_MT.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_en_MT.java @@ -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", + } + }, }; } } diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es.java index 461be83a264..7b288a31722 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_CL.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_CL.java index 6390b1b1eeb..3e4213605db 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_CL.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_CL.java @@ -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", + } + }, }; } } diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_CO.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_CO.java index 788e47e5231..d7d08bf676d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_CO.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_CO.java @@ -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", } }, }; diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_DO.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_DO.java new file mode 100644 index 00000000000..aa86aeed53b --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_DO.java @@ -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", + } + }, + }; + } +} diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_MX.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_MX.java index f1b021733f1..07ca85c298e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_MX.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_MX.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_PA.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_PA.java index ae6c273d3e1..320f4436c0a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_PA.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_PA.java @@ -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", + } + }, }; } } diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_PR.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_PR.java index 0d1792716c3..ef45f9665ef 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_PR.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_PR.java @@ -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", + } + }, }; } } diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_US.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_US.java new file mode 100644 index 00000000000..6cf5be45e24 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_US.java @@ -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", + } + }, + }; + } +} diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_VE.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_VE.java new file mode 100644 index 00000000000..2b093429cfe --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_es_VE.java @@ -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", + } + }, + }; + } +} diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_et.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_et.java index 5fd763b178c..7424a3ce3b4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_et.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_et.java @@ -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", + } + }, }; } } diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_fi.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_fi.java index c30940aafa3..520af848837 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_fi.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_fi.java @@ -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.", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_fr.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_fr.java index 02673f46f00..e89746efede 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_fr.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_fr.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_fr_CA.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_fr_CA.java index 0281c7efbff..14bca283e02 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_fr_CA.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_fr_CA.java @@ -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", + } + }, }; } } diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ga.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ga.java index e9546991007..ed2df7530e1 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ga.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ga.java @@ -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", + } + }, }; } } diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_hi_IN.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_hi_IN.java index 6f75f337a13..50eff49e004 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_hi_IN.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_hi_IN.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_hr.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_hr.java index 0ec012f2bad..e9531142fa7 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_hr.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_hr.java @@ -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", } }, diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_hu.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_hu.java index b8c81448c84..18c629c4f7c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_hu.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_hu.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_in.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_in.java new file mode 100644 index 00000000000..3325f5e8cb9 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_in.java @@ -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.", + } + }, + }; + } +} diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_is.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_is.java index fec108a3b9d..7cf4a8bf1a4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_is.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_is.java @@ -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.", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_it.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_it.java index 50f4ba1774a..3a3d52e7747 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_it.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_it.java @@ -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", } }, diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_it_CH.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_it_CH.java index 7fa4bd2dd8f..96f1bb420ab 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_it_CH.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_it_CH.java @@ -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", } }, diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_iw.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_iw.java index 7061f072321..e933a2015c6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_iw.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_iw.java @@ -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", + } + }, }; } } diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_iw_IL.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_iw_IL.java deleted file mode 100644 index 736517c3b47..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_iw_IL.java +++ /dev/null @@ -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", - } - }, - }; - } -} diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ja.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ja.java index b2e62a7abda..82778f5e75e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ja.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ja.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ko.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ko.java index c5a038fa1c4..4257fba3582 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ko.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ko.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_lt.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_lt.java index d8fdbe5d8a9..715beb1317f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_lt.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_lt.java @@ -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.", } }, diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_lv.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_lv.java index 0ebd5fc2b9f..c1563a0d0e0 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_lv.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_lv.java @@ -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.", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_mk.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_mk.java index 1e0308452fc..7c58129b0a1 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_mk.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_mk.java @@ -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.", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ms.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ms.java index d672c1db720..8c4d4fe05c9 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ms.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ms.java @@ -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", + } + }, }; } } diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_mt.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_mt.java index 5f1fafc114b..d345b43d15f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_mt.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_mt.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_nl.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_nl.java index 252d1d4600f..37de600827e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_nl.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_nl.java @@ -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", } }, diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_no.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_no.java index 7f80e373735..8b11d758775 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_no.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_no.java @@ -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.", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_pl.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_pl.java index a66682b9c9c..db8728fa0fc 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_pl.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_pl.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_pt.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_pt.java index 9b36698caa4..b1ae4982b19 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_pt.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_pt.java @@ -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.", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_pt_PT.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_pt_PT.java index 2063efc3a07..c9c118b4943 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_pt_PT.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_pt_PT.java @@ -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.", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ro.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ro.java index 5c6ea289612..d12ac5b7b06 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ro.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ro.java @@ -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.", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ru.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ru.java index 5cc7887c1e0..977e1b784a3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ru.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_ru.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sk.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sk.java index a3accc1992c..5da8b943720 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sk.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sk.java @@ -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", } }, }; diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sl.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sl.java index 64e3d9dbbcf..0ae069b6fe0 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sl.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sl.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sq.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sq.java index 2b567b9c9d6..96ef053f261 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sq.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sq.java @@ -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", } }, }; diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sr.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sr.java index d5d0f0f5f8a..840d8c48661 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sr.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sr.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sr_Latn.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sr_Latn.java index 8957debc838..584cd695b7d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sr_Latn.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sr_Latn.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sv.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sv.java index d6ad85ba50c..76632da7020 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sv.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_sv.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_th.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_th.java index 2a4ddb9e711..bb5169858db 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_th.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_th.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_tr.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_tr.java index e5b6f8590fd..3868b04864f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_tr.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_tr.java @@ -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.", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_uk.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_uk.java index e3976dafb1d..feb55bdb6de 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_uk.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_uk.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_vi.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_vi.java index 88b270f09b6..f023d9312dc 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_vi.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_vi.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_zh.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_zh.java index 4d1f8bb4eaa..e1e19af2a14 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_zh.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_zh.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_zh_TW.java b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_zh_TW.java index 591b0e42455..c612ff70ecb 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_zh_TW.java +++ b/jdk/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_zh_TW.java @@ -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", diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/dtd/ldml.dtd b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/dtd/ldml.dtd deleted file mode 100644 index 70e76f3d382..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/dtd/ldml.dtd +++ /dev/null @@ -1,1538 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/dtd/ldmlSupplemental.dtd b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/dtd/ldmlSupplemental.dtd deleted file mode 100644 index a33f0585d80..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/dtd/ldmlSupplemental.dtd +++ /dev/null @@ -1,553 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_IL.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_IL.xml deleted file mode 100644 index 5573c1618d8..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_IL.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_KM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_KM.xml deleted file mode 100644 index 164d328f38c..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_KM.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ast.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ast.xml deleted file mode 100644 index 9cf57b6775f..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ast.xml +++ /dev/null @@ -1,5946 +0,0 @@ - - - - - - - - - - - - {0} ({1}) - {0}, {1} - {0}: {1} - - - afar - abkhazianu - achinés - acoli - adangme - adyghe - avestanín - árabe de Túnez - afrikaans - afrihili - aghem - ainu - ak - acadianu - alabama - aleut - gheg d’Albania - altai del sur - amharicu - aragonés - inglés antiguu - angika - árabe - árabe estándar modernu - araméu - mapuche - araona - arapaho - árabe d’Arxelia - arawak - árabe de Marruecos - árabe d’Exiptu - asamés - asu - llingua de signos americana - asturianu - aváricu - kotava - awadhi - aymara - azerbaixanu - azerbaixanu del sur - bashkir - baluchi - balinés - bávaru - basaa - bamun - batak toba - ghomala - bielorrusu - beja - bemba - betawi - bena - bafut - badaga - búlgaru - bhojpuri - bislama - bikol - bini - banjar - kom - siksika - bambara - bengalín - tibetanu - bishnupriya - bakhtiari - bretón - braj - brahui - bodo - bosniu - akoose - buriat - buginés - bulu - blin - medumba - catalán - caddo - caribe - cayuga - atsam - chechenu - cebuanu - chiga - chamorro - chibcha - chagatai - chuukés - mari - xíriga chinook - choctaw - chipewyanu - cheroqui - cheyenne - kurdu sorani - corsu - coptu - capiznon - cree - turcu de Crimea - checu - kashubianu - eslávicu eclesiásticu - chuvash - galés - danés - dakota - dargwa - taita - alemán - altualemán de Suiza - delaware - slave - dogrib - dinka - zarma - dogri - baxu sorbiu - dusun central - duala - neerlandés mediu - divehi - jola-fonyi - dyula - dzongkha - dazaga - embú - ewe - efik - emilianu - exipciu antiguu - ekajuk - griegu - elamita - inglés - inglés de Canadá - inglés de Gran Bretaña - inglés del R.X. - inglés americanu - inglés d’EE.XX. - inglés mediu - esperanto - español - español de México - yupik central - estoniu - vascu - ewondo - estremeñu - persa - fang - fanti - fulah - finlandés - filipín - finlandés de Tornedalen - fixanu - feroés - fon - francés - francés de Canadá - francés de Suiza - francés cajun - francés mediu - francés antiguu - arpitanu - frisón del norte - frisón oriental - friulianu - frisón occidental - irlandés - ga - gagauz - chinu gan - gayo - gbaya - dari zoroastrianu - gaélicu escocés - geez - gilbertés - gallegu - gilaki - altualemán mediu - guaraní - altualemán antiguu - goan konkani - gondi - gorontalo - góticu - grebo - griegu antiguu - alemán de Suiza - guyaratí - wayuu - frafra - gusii - manés - gwichʼin - ḥausa - haida - chinu hakka - hawaianu - hebréu - hindi - hindi de Fiji - hiligaynon - hitita - hmong - hiri motu - croata - altu sorbiu - chinu xiang - haitianu - húngaru - hupa - armeniu - herero - interlingua - iban - ibibio - indonesiu - interlingue - igbo - yi de Sichuan - inupiaq - iloko - ingush - ido - islandés - italianu - inuktitut - ingrianu - xaponés - inglés criollu xamaicanu - lojban - ngomba - machame - xudeo-persa - xudeo-árabe - jutlandés - xavanés - xeorxanu - kara-kalpak - kabileñu - kachin - jju - kamba - kawi - kabardianu - kanembu - tyap - makonde - cabuverdianu - kenyang - koro - kongo - kaingang - khasi - khotanés - koyra chiini - khowar - kikuyu - kirmanjki - kuanyama - kazaquistanín - kako - kalaallisut - kln - khmer - kimbundu - canarés - coreanu - komi-permyak - konkani - kosraeanu - kpelle - kanuri - karachay-balkar - krio - kinaray-a - karelianu - kurukh - cachemirés - shambala - bafia - colonianu - curdu - kumyk - kutenai - komi - córnicu - kirguistanín - llatín - ladino - langi - lahnda - lamba - luxemburgués - lezghianu - lingua franca nova - ganda - limburgués - ligurianu - livonianu - lakota - lombardu - lingala - laosianu - mongo - lozi - lituanu - latgalianu - luba-katanga - luba-lulua - luiseno - lunda - luo - mizo - luyia - letón - chinu lliterariu - laz - madurés - mafa - magahi - maithili - makasar - mandingo - masai - maba - moksha - mandar - mende - meru - morisyen - malgaxe - írlandés mediu - makhuwa-meetto - meta’ - marshallés - maorí - micmac - minangkabau - macedoniu - malayalam - mongol - manchú - manipuri - mohawk - mossi - marathi - mari occidental - malayu - maltés - mundang - múltiples llingües - creek - mirandés - marwari - mentawai - birmanu - myene - erzya - mazanderani - nauru - chinu min nan - napolitanu - nama - noruegu Bokmål - ndebele del norte - baxu alemán - nepalés - newari - ndonga - nias - niueanu - ao naga - neerlandés - flamencu - kwasio - noruegu Nynorsk - ngiemboon - noruegu - nogai - noruegu antiguu - novial - n’ko - ndebele del sur - sotho del norte - nuer - navajo - newari clásicu - nyanja - nyamwezi - nyankole - nyoro - nzima - occitanu - ojibwa - oromo - oriya - oséticu - turcu otomanu - punyabí - pangasinan - pampanga - papiamento - palauanu - pícaru - alemán de Pennsylvania - persa antiguu - alemán palatinu - feniciu - polacu - piamontés - pohnpeianu - prusianu - provenzal antiguu - pashtu - portugués - portugués del Brasil - quechua - kʼicheʼ - rajasthanín - romañol - rifianu - romanche - rundi - rumanu - moldavu - rombo - romaní - root - rotumanu - rusu - rusyn - rw - rwa - sánscritu - sakha - araméu samaritanu - samburu - sasak - santali - saurashtra - sangu - sardu - sicilianu - scots - sindhi - sardu sassarés - sami del norte - séneca - sena - koyraboro senni - sango - irlandés antiguu - serbo-croata - tachelhit - shan - cingalés - sidamo - eslovacu - eslovenu - samoanu - sami del sur - lule sami - inari sami - skolt sami - shona - soninke - somalín - albanu - serbiu - sranan tongo - serer - swati - saho - sotho del sur - frisón de Saterland - sondanés - sukuma - susu - sumeriu - suecu - suaḥili - comorianu - swahili del Congo - siriacu clásicu - siriacu - silesianu - tamil - tulu - telugu - timne - teso - tetum - taxiquistanín - tailandés - tigrinya - tigre - tiv - turcomanu - tokelau - tagalog - klingon - tamashek - tswana - tonganu - tok pisin - turcu - taroko - tsonga - tártaru - tumbuka - tuvalu - tasawaq - tahitianu - tuvinianu - tamazight del Atlas central - udmurt - uigur - ugaríticu - ucraín - umbundu - llingua desconocida - ur - uzbequistanín - vai - venda - venecianu - vietnamín - flamencu occidental - vunjo - valón - wolaytta - waray - wolof - chinu wu - xhosa - soga - yao - yapés - yangben - yemba - yiddish - yoruba - cantonés - zhuang - zapoteca - zeelandés - tamazight estándar de Marruecos - chinu - chinu simplificáu - chinu tradicional - zulú - ensin conteníu llingüísticu - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Mundu - África - Norteamérica - América del Sur - Oceanía - África Occidental - América Central - África Oriental - África del Norte - África Central - África del Sur - América - América del Norte - Caribe - Asia Oriental - Asia del Sur - Sureste Asiáticu - Europa del Sur - Australasia - Melanesia - Rexón de Micronesia - Polinesia - Asia - Asia Central - Asia Occidental - Europa - Europa Oriental - Europa del Norte - Europa Occidental - América Llatina - Islla Ascensión - Andorra - Emiratos Árabes Xuníos - Afganistán - Antigua y Barbuda - Anguila - Albania - Armenia - Angola - L’Antártida - Arxentina - Samoa Americana - Austria - Australia - Aruba - Islles Aland - Azerbaixán - Bosnia y Herzegovina - Barbados - Bangladex - Bélxica - BF - Bulgaria - Baḥréin - Burundi - Benín - San Bartolomé - Les Bermudes - Brunéi - Bolivia - Caribe neerlandés - Brasil - Les Bahames - Bután - Islla Bouvet - Botsuana - Bielorrusia - Belize - Canadá - Islles Cocos (Keeling) - CD - República Centroafricana - CG - Suiza - Costa de Marfil - CI - Islles Cook - Chile - Camerún - China - Colombia - Islla Clipperton - Costa Rica - Cuba - Cabu Verde - Curaçao - Islla Christmas - Xipre - Chequia - Alemania - Diego Garcia - DJ - Dinamarca - Dominica - República Dominicana - Arxelia - Ceuta y Melilla - Ecuador - Estonia - Exiptu - Sáḥara Occidental - Eritrea - España - Etiopía - Xunión Européa - Finlandia - Islles Fixi - Falkland Islands - Islles Malvines (Falkland Islands) - Micronesia - Islles Feroe - Francia - Gabón - Reinu Xuníu - GB - Granada - Xeorxa - Guyana Francesa - Guernsey - Ghana - Xibraltar - Groenlandia - Gambia - Guinea - Guadalupe - Guinea Ecuatorial - Grecia - Islles Xeorxa del Sur y Sandwich del Sur - Guatemala - Guam - Guinea-Bisáu - Guyana - ARE China de Ḥong Kong - Ḥong Kong - Islles Heard y McDonald - Hondures - Croacia - Haití - Hungría - Islles Canaries - Indonesia - Irlanda - Israel - Islla de Man - India - Territoriu Británicu del Océanu Índicu - Iraq - Irán - Islandia - Italia - Jersey - Xamaica - Xordania - Xapón - Kenia - Kirguistán - Camboya - Kiribati - Les Comores - Saint Kitts y Nevis - Corea del Norte - Corea del Sur - Kuwait - Islles Caimán - Kazakstán - Laos - Líbanu - Santa Llucía - Liechtenstein - Sri Lanka - Liberia - LS - Lituania - Luxemburgu - Letonia - Libia - Marruecos - Mónacu - Moldavia - Montenegru - Saint Martin - Madagascar - Islles Marshall - Macedonia - Macedonia (ARYDM) - Malí - Myanmar (Birmania) - Mongolia - ARE China de Macáu - Macáu - Islles Marianes del Norte - La Martinica - Mauritania - Montserrat - Malta - Mauriciu - Les Maldives - Malaui - MX - Malasia - Mozambique - Namibia - Nueva Caledonia - El Níxer - Islla Norfolk - Nixeria - Nicaragua - Países Baxos - Noruega - Nepal - Nauru - Niue - Nueva Zelanda - Omán - Panamá - Perú - Polinesia Francesa - Papúa Nueva Guinea - Filipines - Pakistan - Polonia - Saint Pierre y Miquelon - Islles Pitcairn - Puertu Ricu - PS - PS - Portugal - Paláu - Paraguay - Qatar - Oceanía esterior - Reunión - Rumanía - Serbia - Rusia - Ruanda - Arabia Saudita - Islles Salomón - SC - Sudán - Suecia - Singapur - SH - Eslovenia - Svalbard ya Islla Jan Mayen - Eslovaquia - SL - San Marín - Senegal - Somalia - Surinam - Sudán del Sur - Santu Tomé y Príncipe - El Salvador - Sint Maarten - Siria - Suazilandia - Tristán da Cunha - Islles Turques y Caicos - Chad - Tierres Australes Franceses - TG - Tailandia - Taxiquistán - Tokeláu - Timor Oriental - Timor Este - Turkmenistán - Tunicia - Tonga - Turquía - Trinidá y Tobagu - Tuvalu - Taiwán - Tanzania - Ucraína - Uganda - Islles Perifériques Menores de los EE.XX. - Estaos Xuníos - US - Uruguay - Uzbequistán - Ciudá del Vaticanu - San Vicente y Granadines - Venezuela - Islles Vírxenes Britániques - Islles Vírxenes Americanes - Vietnam - Vanuatu - Wallis y Futuna - Samoa - XK - Yemen - Mayotte - Sudáfrica - Zambia - Zimbabue - Rexón desconocida - - - calendariu - orde de clasificación - moneda - númberos - - - númberos arábico-índicos - númberos arábico-índicos estendíos - númberos armenios - númberos armenios en minúscules - númberos bengalinos - calendariu budista - calendariu chinu - calendariu dangi - númberos devanagari - orde de clasificación Unicode predetermináu - númberos etíopes - calendariu etíope - númberos n’anchu completu - númberos xeorxanos - calendariu gregorianu - númberos griegos - númberos griegos en minúscules - númberos gujarati - númberos gurmukhi - númberos decimales chinos - númberos chinos simplificaos - númberos chinos financieros simplificaos - númberos chinos tradicionales - númberos chinos financieros tradicionales - númberos hebreos - calendariu hebréu - calendariu islámicu - calendariu ISO-8601 - calendariu xaponés - númberos xaponeses - númberos financieros xaponeses - numberación khmer - numberación kannada - númberos laosianos - númberos occidentales - númberos malayalam - númberos myanmar - númberos oriya - calendariu persa - calendariu republicanu chinu - númberos romanos - númberos romanos en minúscules - gueta xeneral - orde de clasificación estándar - númberos tamil tradicionales - númberos tamil - númberos telugu - númberos tailandeses - númberos tibetanos - - - Métricu - Reinu Xuníu - EE.XX. - - - Llingua: {0} - Alfabetu: {0} - Rexón: {0} - - - - [a á b c d e é f g h ḥ i í l ḷ m n ñ o ó p q r s t u ú ü v x y z] - [ª à ă â å ä ã ā æ ç è ĕ ê ë ē ì ĭ î ï ī j k º ò ŏ ô ö ø ō œ ù ŭ û ū w ÿ] - [A B C D E F G H I L M N Ñ O P Q R S T U V X Y Z] - [\- ‐ – — , ; \: ! ¡ ? ¿ . … ' ‘ ’ " “ ” « » ( ) \[ \] § @ * / \\ \& # † ‡ ′ ″] - {0}… - … {0} - {0}… {1} - {0} … - … {0} - {0} … {1} - ? - - - « - » - - - - - - - - - - d – d - - - M – M - - - LLL – LLL - - - y – y G - - - LLL – LLL y G - - - d – d MMM 'de' y - - - LLLL – LLLL y G - - - - - - - - - EEEE, dd MMMM 'de' y G - - - - - d MMMM 'de' y G - - - - - d MMM y G - - - - - d/M/yy GGGGG - - - - - - - {1} {0} - - - - - {1} {0} - - - - - {1} {0} - - - - - {1} {0} - - - - d - E d - h a - HH - h:mm a - HH:mm - h:mm:ss a - HH:mm:ss - L - d/M - E, d/M - LLL - d MMM - E, d MMM - mm:ss - y - M/y - d/M/y - E, d/M/y - MMM y - d MMM y - E, d MMM y - QQQ y - QQQQ y - - - {0} – {1} - - d – d - - - h a – h a - h–h a - - - HH–HH - - - h:mm a – h:mm a - h:mm–h:mm a - h:mm–h:mm a - - - HH:mm–HH:mm - HH:mm–HH:mm - - - h:mm a – h:mm a v - h:mm–h:mm a v - h:mm–h:mm a v - - - HH:mm–HH:mm v - HH:mm–HH:mm v - - - h a – h a v - h–h a v - - - HH–HH v - - - M – M - - - dd – dd/MM - dd/MM – dd/MM - - - E, dd – E, dd/MM - E, dd/MM – E, dd/MM - - - LLL – LLL - - - d – d MMM - d/MM – d/MM - - - E, d MMM – E, d MMM - E, d MMM – E, d MMM - - - y – y G - - - MM – MM/y - MM/y – MM/y - - - d/M/y – d/M/y - d/M/y – d/M/y - d/M/y – d/M/y - - - E, d/M/y – E, d/M/y - E, d/M/y – E, d/M/y - E, d/M/y – E, d/M/y - - - LLL – LLL y G - MMM y – MMM y - - - d – d MMM 'de' y G - d MMM – d MMM y - d MMM y – d MMM y - - - E, d MMM – E, d MMM y - E, d MMM – E, d MMM y - E, d MMM y – E, d MMM y - - - LLLL – LLLL 'de' y G - LLLL y – LLLL y - - - - - - - - - xin - feb - mar - abr - may - xun - xnt - ago - set - och - pay - avi - - - X - F - M - A - M - X - X - A - S - O - P - A - - - de xineru - de febreru - de marzu - d’abril - de mayu - de xunu - de xunetu - d’agostu - de setiembre - d’ochobre - de payares - d’avientu - - - - - Xin - Feb - Mar - Abr - May - Xun - Xnt - Ago - Set - Och - Pay - Avi - - - X - F - M - A - M - X - X - A - S - O - P - A - - - xineru - febreru - marzu - abril - mayu - xunu - xunetu - agostu - setiembre - ochobre - payares - avientu - - - - - - - dom - llu - mar - mie - xue - vie - sab - - - D - L - M - M - X - V - S - - - do - ll - ma - mi - xu - vi - sa - - - domingu - llunes - martes - miércoles - xueves - vienres - sábadu - - - - - dom - llu - mar - mie - xue - vie - sab - - - D - L - M - M - X - V - S - - - do - ll - ma - mi - xu - vi - sa - - - domingu - llunes - martes - miércoles - xueves - vienres - sábadu - - - - - - - 1T - 2T - 3T - 4T - - - 1 - 2 - 3 - 4 - - - 1er trimestre - 2u trimestre - 3er trimestre - 4u trimestre - - - - - 1T - 2T - 3T - 4T - - - 1 - 2 - 3 - 4 - - - 1er trimestre - 2u trimestre - 3er trimestre - 4u trimestre - - - - - - - a - p - - - AM - PM - - - - - - a.C. - edC - d.C. - ddC - - - a.C. - edC - d.C. - ddC - - - a.C. - edC - d.C. - ddC - - - - - - EEEE, d MMMM 'de' y - - - - - d MMMM 'de' y - - - - - d MMM y - - - - - d/M/yy - - - - - - - HH:mm:ss zzzz - - - - - HH:mm:ss z - - - - - HH:mm:ss - - - - - HH:mm - - - - - - - {1} {0} - - - - - {1} {0} - - - - - {1} {0} - - - - - {1} {0} - - - - d - ccc - E d - E h:mm a - E HH:mm - E h:mm:ss a - E HH:mm:ss - h a - HH - h:mm a - HH:mm - h:mm:ss a - HH:mm:ss - L - d/M - E, d/M - LLL - d MMM - E, d MMM - mm:ss - y - M/y - d/M/y - E, d/M/y - MMM y - d MMM y - E, d MMM y - QQQ y - QQQQ y - - - {0} {1} - - - {0} – {1} - - d – d - - - h a – h a - h – h a - - - HH – HH - - - h:mm a – h:mm a - h:mm – h:mm a - h:mm – h:mm a - - - HH:mm – HH:mm - HH:mm – HH:mm - - - h:mm a – h:mm a v - h:mm – h:mm a v - h:mm – h:mm a v - - - HH:mm – HH:mm v - HH:mm – HH:mm v - - - h a – h a v - h – h a v - - - HH – HH v - - - M – M - - - dd – dd/MM - dd/MM – dd/MM - - - E, dd – E, dd/MM - E, dd/MM – E, dd/MM - - - LLL – LLL - - - d – d MMM - d/MM – d/MM - - - E, d MMM – E, d MMM - E, d MMM – E, d MMM - - - y – y - - - MM – MM/y - MM/y – MM/y - - - d/M/y – d/M/y - d/M/y – d/M/y - d/M/y – d/M/y - - - E, d/M/y – E, d/M/y - E, d/M/y – E, d/M/y - E, d/M/y – E, d/M/y - - - MMM – MMM y - MMM y – MMM y - - - d – d MMM 'de' y - d MMM – d MMM y - d MMM y – d MMM y - - - E, d MMM – E, d MMM y - E, d MMM – E, d MMM y - E, d MMM y – E, d MMM y - - - LLLL – LLLL y - LLLL y – LLLL y - - - - - - - - - d – d - - - M – M - - - LLL – LLL - - - y – y G - - - LLL – LLL y G - - - d – d MMM 'de' y - - - LLLL – LLLL y G - - - - - - - - - d – d - - - M – M - - - LLL – LLL - - - y – y G - - - LLL – LLL y G - - - d – d MMM 'de' y - - - - - - - - - d – d - - - M – M - - - LLL – LLL - - - y – y G - - - LLL – LLL y G - - - d – d MMM 'de' y - - - - - - - - era - - - añu - l’añu pasáu - esti añu - l’añu viniente - - En {0} añu - En {0} años - - - Hai {0} añu - Hai {0} años - - - - añu - - en {0} añu - en {0} años - - - hai {0} añu - hai {0} años - - - - añu - - en {0} a. - en {0} a. - - - hai {0} a. - hai {0} a. - - - - Trimestre - - en {0} trimestre - en {0} trimestres - - - hai {0} trimestre - hai {0} trimestres - - - - Trimestre - - en {0} trim. - en {0} trim. - - - hai {0} trim. - hai {0} trim. - - - - Trimestre - - en {0} tr. - en {0} tr. - - - hai {0} tr. - hai {0} tr. - - - - mes - el mes pasáu - esti mes - el mes viniente - - En {0} mes - En {0} meses - - - Hai {0} mes - Hai {0} meses - - - - mes - - en {0} mes - en {0} meses - - - hai {0} mes - hai {0} meses - - - - mes - - en {0} m. - en {0} m. - - - hai {0} m. - hai {0} m. - - - - selmana - la selmana pasada - esta selmana - la selmana viniente - - En {0} selmana - En {0} selmanes - - - Hai {0} selmana - Hai {0} selmanes - - - - - en {0} selm. - en {0} selm. - - - hai {0} selm. - hai {0} selm. - - - - selmana - - en {0} se. - en {0} se. - - - hai {0} se. - hai {0} se. - - - - día - antayeri - ayeri - güei - mañana - pasao mañana - - En {0} dia - En {0} díes - - - Hai {0} dia - Hai {0} díes - - - - día - - en {0} día - en {0} díes - - - hai {0} día - hai {0} díes - - - - día - - en {0} d. - en {0} d. - - - hai {0} d. - hai {0} d. - - - - día de la selmana - - - el domingu pasáu - esti domingu - el domingu viniente - - - el llunes pasáu - esti llunes - el llunes viniente - - - el martes pasáu - esti martes - el martes viniente - - - el miércoles pasáu - esti miércoles - el miércoles viniente - - - el xueves pasáu - esti xueves - el xueves viniente - - - el vienres pasáu - esti vienres - el vienres viniente - - - el sábadu pasáu - esti sábadu - el sábadu viniente - - - periodu del día - - - hora - - En {0} hora - En {0} hores - - - Hai {0} hora - Hai {0} hores - - - - hora - - en {0} h. - en {0} h. - - - hai {0} h. - hai {0} h. - - - - hora - - en {0} h. - en {0} h. - - - hai {0} h. - hai {0} h. - - - - minutu - - En {0} minutu - En {0} minutos - - - Hai {0} minutu - Hai {0} minutos - - - - minutu - - en {0} min. - en {0} min. - - - hai {0} min. - hai {0} min. - - - - minutu - - en {0} min. - en {0} min. - - - hai {0} min. - hai {0} min. - - - - segundu - - En {0} segundu - En {0} segundos - - - Hai {0} segundu - Hai {0} segundos - - - - segundu - - en {0} seg. - en {0} seg. - - - hai {0} seg. - hai {0} seg. - - - - segundu - - en {0} s. - en {0} s. - - - hai {0} s. - hai {0} s. - - - - zona horaria - - - - +HH:mm;-HH:mm - GMT{0} - GMT - Hora de {0} - {0} (+1) - {0} (+0) - {1} ({0}) - - Ciudá desconocida - - - Andorra - - - Dubai - - - Kabul - - - Antigua - - - Anguila - - - Tirana - - - Yerevan - - - Luanda - - - Rothera - - - Palmer - - - Troll - - - Syowa - - - Mawson - - - Davis - - - Vostok - - - Casey - - - Dumont d’Urville - - - McMurdo - - - Rio Gallegos - - - Mendoza - - - San Juan - - - Ushuaia - - - La Rioja - - - San Luis - - - Catamarca - - - Salta - - - Jujuy - - - Tucuman - - - Cordoba - - - Buenos Aires - - - Pago Pago - - - Viena - - - Perth - - - Eucla - - - Darwin - - - Adelaide - - - Broken Hill - - - Currie - - - Melbourne - - - Hobart - - - Lindeman - - - Sydney - - - Brisbane - - - Macquarie - - - Lord Howe - - - Aruba - - - Mariehamn - - - Baku - - - Sarajevo - - - Barbados - - - Dhaka - - - Bruxeles - - - Ouagadougou - - - Sofía - - - Bahrain - - - Bujumbura - - - Porto-Novo - - - St. Barthelemy - - - Bermuda - - - Brunei - - - La Paz - - - Kralendijk - - - Eirunepe - - - Rio Branco - - - Porto Velho - - - Boa Vista - - - Manaus - - - Cuiaba - - - Santarem - - - Campo Grande - - - Belem - - - Araguaina - - - Sao Paulo - - - Bahia - - - Fortaleza - - - Maceio - - - Recife - - - Noronha - - - Nassau - - - Thimphu - - - Gaborone - - - Minsk - - - Belize - - - Dawson - - - Whitehorse - - - Inuvik - - - Vancouver - - - Dawson Creek - - - Creston - - - Yellowknife - - - Edmonton - - - Swift Current - - - Cambridge Bay - - - Regina - - - Winnipeg - - - Resolute - - - Rainy River - - - Rankin Inlet - - - Atikokan - - - Thunder Bay - - - Nipigon - - - Toronto - - - Iqaluit - - - Pangnirtung - - - Moncton - - - Halifax - - - Goose Bay - - - Glace Bay - - - Blanc-Sablon - - - St. John’s - - - Cocos - - - Kinshasa - - - Lubumbashi - - - Bangui - - - Brazzaville - - - Zurich - - - Abidjan - - - Rarotonga - - - Santiago - - - Douala - - - Urumqi - - - Shanghai - - - Bogota - - - Costa Rica - - - La Habana - - - Christmas - - - Nicosia - - - Praga - - - Busingen - - - Berlín - - - Djibouti - - - Copenhague - - - Dominica - - - Santo Domingo - - - Galapagos - - - Guayaquil - - - Tallinn - - - El Aaiun - - - Asmara - - - Canaries - - - Ceuta - - - Madrid - - - Addis Ababa - - - Helsinki - - - Fiji - - - Stanley - - - Chuuk - - - Pohnpei - - - Kosrae - - - Islles Feroe - - - París - - - Libreville - - - Londres - - - Granada - - - Tbilisi - - - Cayenne - - - Guernsey - - - Accra - - - Xibraltar - - - Thule - - - Nuuk - - - Ittoqqortoormiit - - - Danmarkshavn - - - Banjul - - - Conakry - - - Guadalupe - - - Malabo - - - Atenes - - - Guatemala - - - Guam - - - Bissau - - - Guyana - - - Hong Kong - - - Tegucigalpa - - - Zagreb - - - Port-au-Prince - - - Budapest - - - Jakarta - - - Pontianak - - - Makassar - - - Jayapura - - - Dublín - - - Islla de Man - - - Chagos - - - Baghdad - - - Tehran - - - Reikiavik - - - Roma - - - Jersey - - - Xamaica - - - Amman - - - Tokyo - - - Nairobi - - - Bishkek - - - Phnom Penh - - - Enderbury - - - Kiritimati - - - Tarawa - - - Comoro - - - St. Kitts - - - Pyongyang - - - Kuwait - - - Caimán - - - Aqtau - - - Oral - - - Aqtobe - - - Qyzylorda - - - Almaty - - - Vientiane - - - Beirut - - - St. Lucia - - - Vaduz - - - Colombo - - - Monrovia - - - Maseru - - - Vilnius - - - Luxemburgu - - - Riga - - - Tripoli - - - Casablanca - - - Monaco - - - Chisinau - - - Podgorica - - - Marigot - - - Antananarivo - - - Kwajalein - - - Majuro - - - Skopje - - - Bamako - - - Rangoon - - - Hovd - - - Choibalsan - - - Macau - - - Saipan - - - La Martinica - - - Nouakchott - - - Montserrat - - - Malta - - - Mauritius - - - Maldives - - - Blantyre - - - Tijuana - - - Santa Isabel - - - Hermosillo - - - Mazatlan - - - Chihuahua - - - Bahia Banderas - - - Ojinaga - - - Monterrey - - - Ciudá de Méxicu - - - Matamoros - - - Mérida - - - Cancún - - - Kuala Lumpur - - - Kuching - - - Maputo - - - Windhoek - - - Noumea - - - Niamey - - - Norfolk - - - Lagos - - - Managua - - - Amsterdam - - - Oslo - - - Kathmandu - - - Nauru - - - Niue - - - Chatham - - - Auckland - - - Panamá - - - Lima - - - Tahiti - - - Marquesas - - - Gambier - - - Port Moresby - - - Manila - - - Karachi - - - Varsovia - - - Miquelon - - - Pitcairn - - - Puerto Rico - - - Gaza - - - Hebron - - - Les Azores - - - Madeira - - - Lisboa - - - Palau - - - Asuncion - - - Qatar - - - Reunion - - - Bucarest - - - Belgráu - - - Kaliningrad - - - Simferopol - - - Samara - - - Omsk - - - Novosibirsk - - - Novokuznetsk - - - Krasnoyarsk - - - Irkutsk - - - Yakutsk - - - Vladivostok - - - Khandyga - - - Ust-Nera - - - Magadan - - - Kamchatka - - - Anadyr - - - Kigali - - - Riyadh - - - Guadalcanal - - - Mahe - - - Estocolmu - - - St. Helena - - - Liubliana - - - Longyearbyen - - - Bratislava - - - Freetown - - - San Marino - - - Dakar - - - Mogadishu - - - Paramaribo - - - Juba - - - Sao Tome - - - El Salvador - - - Lower Prince’s Quarter - - - Mbabane - - - Grand Turk - - - Ndjamena - - - Kerguelen - - - Lome - - - Bangkok - - - Dushanbe - - - Fakaofo - - - Dili - - - Ashgabat - - - Tongatapu - - - Istanbul - - - Port of Spain - - - Funafuti - - - Taipei - - - Dar es Salaam - - - Uzhgorod - - - Kiev - - - Zaporozhye - - - Kampala - - - Midway - - - Johnston - - - Wake - - - Adak - - - Nome - - - Honolulu - - - Anchorage - - - Yakutat - - - Sitka - - - Juneau - - - Metlakatla - - - Los Angeles - - - Boise - - - Phoenix - - - Denver - - - Beulah, Dakota del Norte - - - Nueva Salem, Dakota del Norte - - - Center, Dakota del Norte - - - Chicago - - - Menominee - - - Vincennes, Indiana - - - Petersburg, Indiana - - - Tell City, Indiana - - - Knox, Indiana - - - Winamac, Indiana - - - Marengo, Indiana - - - Indianapolis - - - Louisville - - - Vevay, Indiana - - - Monticello, Kentucky - - - Detroit - - - Nueva York - - - Montevideo - - - Samarkand - - - Tashkent - - - El Vaticanu - - - St. Vincent - - - Caracas - - - Tortola - - - St. Thomas - - - Ho Chi Minh - - - Efate - - - Wallis - - - Apia - - - Aden - - - Mayotte - - - Lusaka - - - Harare - - - - Hora d’África central - - - - - Hora d’África oriental - - - - - Hora de Sudáfrica - - - - - Hora d’África occidental - Hora estándar d’África occidental - Hora de branu d’África occidental - - - - - Hora d’Alaska - Hora estándar d’Alaska - Hora de branu d’Alaska - - - - - Hora central norteamericana - Hora estándar central norteamericana - Hora de branu central norteamericana - - - - - Hora del este norteamericanu - Hora estándar del este norteamericanu - Hora de branu del este norteamericanu - - - - - Hora de les montañes norteamericanes - Hora estándar de les montañes norteamericanes - Hora de branu de les montañes norteamericanes - - - - - Hora del Pacíficu norteamericanu - Hora estándar del Pacíficu norteamericanu - Hora de branu del Pacíficu norteamericanu - - - - - Hora de les Azores - Hora estándar de les Azores - Hora de branu de les Azores - - - - - Hora de Cabu Verde - Hora estándar de Cabu Verde - Hora de branu de Cabu Verde - - - - - Hora d’Europa Central - Hora estándar d’Europa Central - Hora de branu d’Europa Central - - - CET - CET - CEST - - - - - Hora d’Europa del Este - Hora estándar d’Europa del Este - Hora de branu d’Europa del Este - - - EET - EET - EEST - - - - - Hora d’Europa Occidental - Hora estándar d’Europa Occidental - Hora de branu d’Europa Occidental - - - WET - WET - WEST - - - - - Hora media de Greenwich - - - GMT - - - - - Hora d’Irkutsk - Hora estándar d’Irkutsk - Hora de branu d’Irkutsk - - - - - Hora de Krasnoyarsk - Hora estándar de Krasnoyarsk - Hora de branu de Krasnoyarsk - - - - - Hora de Magadán - Hora estándar de Magadán - Hora de branu de Magadán - - - - - Hora de Mauriciu - Hora estándar de Mauriciu - Hora de branu de Mauriciu - - - - - Hora de Moscú - Hora estándar de Moscú - Hora de branu de Moscú - - - - - Hora de Novosibirsk - Hora estándar de Novosibirsk - Hora de branu de Novosibirsk - - - - - Hora d’Omsk - Hora estándar d’Omsk - Hora de branu d’Omsk - - - - - Hora de Reunión - - - - - Hora de Saxalín - Hora estándar de Saxalín - Hora de branu de Saxalín - - - - - Hora de Les Seixeles - - - - - Hora de Vladivostok - Hora estándar de Vladivostok - Hora de branu de Vladivostok - - - - - Hora de Volgográu - Hora estándar de Volgográu - Hora de branu de Volgográu - - - - - Hora de Yakutsk - Hora estándar de Yakutsk - Hora de branu de Yakutsk - - - - - Hora de Yekaterimburgu - Hora estándar de Yekaterimburgu - Hora de branu de Yekaterimburgu - - - - - - latn - - latn - - 1 - - , - . - ; - % - + - - - E - × - - - NaN - : - - - - - #,##0.### - - - - - 0K - 0K - 00K - 00K - 000K - 000K - 0M - 0M - 00M - 00M - 000M - 000M - 0G - 0G - 00G - 00G - 000G - 000G - 0T - 0T - 00T - 00T - 000T - 000T - - - - - 0K - 0K - 00K - 00K - 000K - 000K - 0M - 0M - 00M - 00M - 000M - 000M - 0G - 0G - 00G - 00G - 000G - 000G - 0T - 0T - 00T - 00T - 000T - 000T - - - - - - - #E0 - - - - - - - #,##0% - - - - - - - #,##0.00 ¤ - - - #,##0.00 ¤ - - - {0} {1} - {0} {1} - - - - dirḥam de los Emiratos Árabes Xuníos - dirḥam EAX - dirḥams EAX - AED - - - afganí afganistanu - afganí afganistanu - afganís afganistanos - AFN - - - lek - lek - leks - - - dram armeniu - dram armeniu - drams armenios - AMD - - - guilder de les Antilles Neerlandeses - guilder de les Antilles Neerlandeses - guilders de les Antilles Neerlandeses - ANG - - - kwanza angolanu - kwanza angolanu - kwanzas angolanos - AOA - - - pesu arxentín - pesu arxentín - pesos arxentinos - ARS - - - dólar australianu - dólar australianu - dólares australianos - A$ - - - florín arubanu - florín arubanu - florines arubanos - AWG - - - manat azerbaixanu - manat azerbaixanu - manats azerbaixanos - - - marcu convertible de Bosnia-Herzegovina - marcu convertible de Bosnia-Herzegovina - marcos convertibles de Bosnia-Herzegovina - BAM - - - dólar barbadianu - dólar barbadianu - dólares barbadianos - BBD - - - taka bangladexí - taka bangladexí - takas bangladexinos - BDT - - - lev - lev - lev - - - dinar baḥreiní - dinar baḥreiní - dinares baḥreininos - - - francu burundianu - francu burundianu - francos burundianos - BIF - - - dólar bermudianu - dólar bermudianu - dólares bermudianos - BMD - - - dólar bruneyanu - dólar bruneyanu - dólares bruneyanos - BND - - - bolivianu - bolivianu - bolivianos - - - real brasilanu - real brasilanu - reales brasilanos - R$ - - - dólar bahamés - dólar bahamés - dólares bahameses - BSD - - - ngultrum butanés - ngultrum butanés - ngultrums butaneses - BTN - - - pula botsuaniana - pula botsuaniana - pulas botsuanianes - BWP - - - rublu bielorrusu - rublu bielorrusu - rublos bielorrusos - BYR - - - dólar belizianu - dólar belizianu - dólares belizianos - BZD - - - dólar canadiense - dólar canadiense - dólares canadienses - CA$ - - - francu congolés - francu congolés - francos congoleses - CDF - - - francu suizu - francu suizu - francos suizos - CHF - - - pesu chilenu - pesu chilenu - pesos chilenos - CLP - - - yuan chinu - yuan chinu - yuanes chinos - CN¥ - ¥ - - - pesu colombianu - pesu colombianu - pesos colombianos - COP - - - colón costarricanu - colón costarricanu - colones costarricanos - CRC - - - pesu convertible cubanu - pesu convertible cubanu - pesos convertibles cubanos - CUC - - - pesu cubanu - pesu cubanu - pesos cubanos - CUP - - - escudu cabuverdianu - escudu cabuverdianu - escudos cabuverdianos - CVE - - - corona checa - corona checa - corones cheques - CZK - - - francu xibutianu - francu xibutianu - francos xibutianos - - - corona danesa - corona danesa - corones daneses - DKK - - - pesu dominicanu - pesu dominicanu - pesos dominicanos - DOP - - - dinar arxelín - dinar arxelín - dinares arxelinos - DZD - - - llibra exipciana - llibra exipciana - llibres exipcianes - EGP - - - nakfa eritréu - nakfa eritréu - nafkas eritreos - ERN - - - birr etíope - birr etíope - birrs etíopes - ETB - - - euro - euro - euros - - - - - dólar fixanu - dólar fixanu - dólares fixanos - - - llibra malviniana - llibra malviniana - llibres malvinianes - FKP - - - llibra esterlina - llibra esterlina - llibres esterlines - £ - £ - - - lari xeorxanu - lari xeorxanu - laris xeorxanos - GEL - - - cedi ghanianu - cedi ghanianu - cedis ghanianos - GHS - - - llibra de Xibraltar - llibra de Xibraltar - llibres de Xibraltar - GIP - £ - - - dalasi gambianu - dalasi gambianu - dalasis gambianos - GMD - - - francu guineanu - francu guineanu - francos guineanos - GNF - - - syli guineanu - syli guineanu - sylis guineanos - - - quetzal de Guatemala - quetzal de Guatemala - quetzales de Guatemala - GTQ - - - dólar guyanés - dólar guyanés - dólares guyaneses - GYD - - - dólar hongkonés - dólar hongkonés - dólares ḥongkoneses - HK$ - - - lempira hondurana - lempira hondurana - lempires honduranes - HNL - - - kuna - kuna - kunes - - - gourde haitianu - gourde haitianu - gourde haitianos - HTG - - - forint - forint - forints - - - rupiah indonesia - rupiah indonesia - rupiahs indonesies - IDR - - - xequel nuevu - xequel nuevu - xequels nuevos - - - - rupia india - rupia india - rupies indies - - - - - dinar iraquín - dinar iraquín - dinares iraquinos - IQD - - - rial iranín - rial iranín - riales iraninos - IRR - - - corona islandesa - corona islandesa - corones islandeses - ISK - - - dólar xamaicanu - dólar xamaicanu - dólares xamaicanos - JMD - - - dinar xordanu - dinar xordanu - dinares xordanos - JOD - - - yen xaponés - yen xaponés - yenes xaponeses - ¥ - ¥ - - - shilling kenianu - shilling kenianu - shillings kenianos - KES - - - som kirguistanín - som kirguistanín - soms kirguistaninos - KGS - - - riel camboyanu - riel camboyanu - riels camboyanos - KHR - - - francu comoranu - francu comoranu - francos comoranos - KMF - - - won norcoreanu - won norcoreanu - wons norcoreanos - KPW - - - won surcoreanu - won surcoreanu - wons surcoreanos - - - - - dinar kuwaitianu - dinar kuwaitianu - dinares kuwaitianos - KWD - - - dólar caimanés - dólar caimanés - dólares caimaneses - KYD - - - tenge kazaquistanín - tenge kazaquistanín - tenges kazaquistaninos - KZT - - - kip laosianu - kip laosianu - kips laosianos - LAK - - - llibra libanesa - llibra libanesa - llibres libaneses - LBP - - - rupia de Sri Lanka - rupia de Sri Lanka - rupies de Sri Lanka - LKR - - - dólar liberianu - dólar liberianu - dólares liberianos - LRD - - - litas - litas - litas - - - lats - lats - lats - - - dinar libiu - dinar libiu - dinares libios - LYD - - - dirḥam marroquín - dirḥam marroquín - dirḥams marroquinos - MAD - - - francu marroquín - francu marroquín - francos marroquinos - - - leu moldavu - leu moldavu - leus moldavos - MDL - - - ariary malgaxe - ariary malgaxe - ariarys malgaxes - - - denar - denar - denares - - - kyat de Myanmar - kyat de Myanmar - kyats de Myanmar - MMK - - - tugrik mongol - tugrik mongol - tugriks mongoles - MNT - - - pataca de Macáu - pataca de Macáu - pataques de Macáu - MOP - - - ouguiya mauritanu - ouguiya mauritanu - ouguiyas mauritanos - MRO - - - rupia mauriciana - rupia mauriciana - rupies mauricianes - MUR - - - rufiyaa maldiviana - rufiyaa maldiviana - rufiyaas maldivianas - MVR - - - kwacha malauianu - kwacha malauianu - kwachas malauianos - - - pesu mexicanu - pesu mexicanu - pesos mexicanos - MX$ - - - ringgit malasiu - ringgit malasiu - ringgits malasios - MYR - - - metical mozambicanu - metical mozambicanu - meticales mozambicanos - MZN - - - dólar namibianu - dólar namibianu - dólares namibianos - NAD - - - naira nixeriana - naira nixeriana - nairas nixerianes - NGN - - - córdoba nicaraguanu - córdoba nicaraguanu - córdobes nicaraguanos - NIO - - - corona noruega - corona noruega - corones noruegues - NOK - - - rupia nepalesa - rupia nepalesa - rupies nepaleses - NPR - - - dólar neozelandés - dólar neozelandés - dólares neozelandeses - NZ$ - - - rial omanianu - rial omanianu - riales omanianos - OMR - - - balboa panamiegu - balboa panamiegu - balboes panamiegos - PAB - - - sol nuevu peruanu - sol nuevu peruanu - soles nuevos peruanos - PEN - - - kina papuana - kina papuana - kines papuanes - - - pesu filipín - pesu filipín - pesos filipinos - PHP - - - rupia paquistanina - rupia paquistanina - rupies paquistanines - PKR - - - zloty - zloty - zlotys - - - guaraní paraguayu - guaraní paraguayu - guaranís paraguayos - PYG - - - rial qatarín - rial qatarín - riales qatarinos - QAR - - - leu rumanu - leu rumanu - leus rumanos - RON - - - dinar serbiu - dinar serbiu - dinares serbios - RSD - - - rublu rusu - rublu rusu - rublos rusos - RUB - - - - francu ruandés - francu ruandés - francos ruandeses - RWF - - - riyal saudita - riyal saudita - riyales saudites - SAR - - - dólar salomonés - dólar salomonés - dólares salomoneses - SBD - - - rupia seixelesa - rupia seixelesa - rupies seixeleses - - - dinar sudanés (1992–2007) - dinar sudanés (1992–2007) - dinares sudaneses (1992–2007) - - - llibra sudanesa - llibra sudanesa - llibres sudaneses - SDG - - - llibra sudanesa (1957–1998) - llibra sudanesa (1957–1998) - llibres sudaneses (1957–1998) - - - corona sueca - corona sueca - corones sueques - SEK - - - dólar singapuranu - dólar singapuranu - dólares singapuranos - SGD - - - llibra de Santa Lena - llibra de Santa Lena - llibres de Santa Lena - - - leone sierralleonés - leone sierralleonés - leones sierralleoneses - SLL - - - shilling somalín - shilling somalín - shillings somalinos - SOS - - - dólar surinamés - dólar surinamés - dólares surinameses - SRD - - - llibra sursudanesa - llibra sursudanesa - llibres sursudaneses - SSP - - - dobra de Santu Tomé y Príncipe - dobra de Santu Tomé y Príncipe - dobras de Santu Tomé y Príncipe - STD - - - llibra siria - llibra siria - llibres siries - SYP - - - lilangeni suazilandés - lilangeni suazilandés - lilangenis suazilandeses - SZL - - - baht tailandés - baht tailandés - bahts tailandeses - ฿ - - - somoni taxiquistanín - somoni taxiquistanín - somonis taxiquistaninos - - - manat turcomanu - manat turcomanu - manats turcomanos - - - dinar tunecín - dinar tunecín - dinares tunecinos - TND - - - paʻanga tonganu - paʻanga tonganu - paʻangas tonganos - TOP - - - llira turca - llira turca - llires turques - - - dólar de Trinidá y Tobagu - dólar de Trinidá y Tobagu - dólares de Trinidá y Tobagu - TTD - - - dólar nuevu taiwanés - dólar nuevu taiwanés - dólares nuevos taiwaneses - NT$ - NT$ - - - shilling tanzanianu - shilling tanzanianu - shillings tanzanianos - TZS - - - grivna - grivna - grivnas - - - shilling ugandés - shilling ugandés - shillings ugandeses - UGX - - - dólar de los Estaos Xuníos - dólar de los Estaos Xuníos - dólares de los Estaos Xuníos - $ - $ - - - pesu uruguayu - pesu uruguayu - pesos uruguayos - UYU - - - som uzbequistanín - som uzbequistanín - soms uzbequistaninos - UZS - - - bolívar venezolanu - bolívar venezolanu - bolívares venezolanos - VEF - - - dong vietnamín - dong vietnamín - dongs vietnaminos - - - - vatu vanuatuanu - vatu vanuatuanu - vatus vanuatuanos - VUV - - - tala samoanu - tala samoanu - talas samoanos - WST - - - francu CFA BEAC - francu CFA BEAC - francos CFA BEAC - FCFA - - - plata - onza troy de plata - onces troy de plata - XAG - - - oru - onza troy d’oru - onces troy d’oru - XAU - - - unidá compuesta européa - unidá compuesta européa - unidaes compuestes europées - XBA - - - unida monetaria européa - unida monetaria européa - unidaes monetaries europées - XBB - - - unidá de cuenta européa (XBC) - unidá de cuenta européa (XBC) - unidaes de cuenta europées (XBC) - XBC - - - unidá de cuenta européa (XBD) - unidá de cuenta européa (XBD) - unidaes de cuenta europées (XBD) - XBD - - - dólar del Caribe Oriental - dólar del Caribe Oriental - dólares del Caribe Oriental - EC$ - - - drechos especiales de xiru - drechos especiales de xiru - drechos especiales de xiru - XDR - - - Francu oru francés - francu oru francés - francos oru franceses - XFO - - - Francu UIC francés - francu UIC francés - francos UIC franceses - XFU - - - francu CFA BCEAO - francu CFA BCEAO - francos CFA BCEAO - CFA - - - onza troy de paladiu - onces troy de paladiu - XPD - - - francu CFP - francu CFP - francos CFP - CFPF - - - platín - onza troy de platín - onces troy de platín - XPT - - - fondos RINET - unidá de fondos RINET - unidaes de fondos RINET - XRE - - - Sucre - sucre - sucres - XSU - - - códigu monetariu de prueba - códigu monetariu de prueba - códigos monetarios de prueba - XTS - - - Unidá de cuenta ADB - unidá de cuenta ADB - unidaes de cuenta ADB - XUA - - - Divisa desconocida - divisa desconocida - divises desconocíes - XXX - - - rial yemenín - rial yemenín - riales yemeninos - YER - - - rand sudafricanu - rand sudafricanu - rands sudafricanos - ZAR - - - kwacha zambianu (1968–2012) - kwacha zambianu (1968–2012) - kwachas zambianos (1968–2012) - - - kwacha zambianu - kwacha zambianu - kwachas zambianos - ZMW - - - - ⩾{0} - {0}–{1} - - - - - - g-fuerza - {0} g-fuerza - {0} g-fuerza - - - {0} metru por segundu al cuadráu - {0} metros por segundu al cuadráu - - - {0} minutu d'arcu - {0} minutos d'arcu - - - {0} segundu d'arcu - {0} segundos d'arcu - - - {0} grau - {0} graos - - - {0} radián - {0} radianes - - - acre - {0} acre - {0} acres - - - {0} hectarea - {0} hectarees - - - centímetros cuadraos - {0} centímetru cuadráu - {0} centímetros cuadraos - - - {0} pie cuadráu - {0} pies cuadraos - - - {0} pulgada cuadrada - {0} pulgaes cuadraes - - - kilómetros cuadraos - {0} kilómetru cuadráu - {0} kilómetros cuadraos - - - {0} metru cuadráu - {0} metros cuadraos - - - {0} milla cuadrada - {0} milles cuadraes - - - {0} yarda cuadrada - {0} yardes cuadraes - - - {0} litru por kilómetru - {0} litros por kilómetru - - - {0} milla por galón - {0} milles por galón - - - bits - {0} bit - {0} bits - - - bytes - {0} byte - {0} bytes - - - {0} gigabit - {0} gigabits - - - {0} gigabyte - {0} gigabytes - - - {0} kilobit - {0} kilobits - - - {0} kilobyte - {0} kilobytes - - - {0} megabit - {0} megabits - - - {0} megabyte - {0} megabytes - - - {0} terabit - {0} terabits - - - {0} terabyte - {0} terabytes - - - díes - {0} dia - {0} díes - - - hores - {0} hora - {0} hores - - - {0} microsegundu - {0} microsegundos - - - {0} milisegundu - {0} milisegundos - - - minutos - {0} minutu - {0} minutos - - - meses - {0} mes - {0} meses - - - {0} nanosegundu - {0} nanosegundos - - - segundos - {0} segundu - {0} segundos - {0}/s - - - selmanes - {0} selmana - {0} selmanes - - - años - {0} añu - {0} años - - - {0} amperiu - {0} amperios - - - {0} milliamperiu - {0} milliamperios - - - {0} ohmiu - {0} ohmios - - - {0} voltiu - {0} voltios - - - {0} caloría - {0} caloríes - - - {0} Caloría - {0} Caloríes - - - {0} xuliu - {0} xulios - - - {0} kilocaloría - {0} kilocaloríes - - - {0} kiloxuliu - {0} kiloxulios - - - {0} kilovatiu hora - {0} kilovatios hora - - - gigahercios - {0} gigaherciu - {0} gigahercios - - - hercios - {0} herciu - {0} hercios - - - kilohercios - {0} kiloherciu - {0} kilohercios - - - megahercios - {0} megaherciu - {0} megahercios - - - {0} unidá astronómica - {0} unidaes astronómiques - - - centímetros - {0} centímetru - {0} centímetros - - - decímetros - {0} decímetru - {0} decímetros - - - {0} pie - {0} pies - - - {0} pulgada - {0} pulgaes - - - kilómetros - {0} kilómetru - {0} kilómetros - - - {0} añu lluz - {0} años lluz - - - {0} metru - {0} metros - - - {0} micrómetru - {0} micrómetros - - - {0} milla - {0} milles - - - milímetros - {0} milímetru - {0} milímetros - - - nanómetros - {0} nanómetru - {0} nanómetros - - - milles náutiques - {0} milla náutica - {0} milles náutiques - - - {0} parsec - {0} parsecs - - - picómetros - {0} picómetru - {0} picómetros - - - {0} yarda - {0} yardes - - - {0} lux - {0} lux - - - {0} quilate - {0} quilates - - - gram - {0} gramu - {0} gramos - - - kilogramos - {0} kilogramu - {0} kilogramos - - - tonelaes métriques - {0} tonelada métrica - {0} tonelaes métriques - - - microgramos - {0} microgramu - {0} microgramos - - - miligramos - {0} miligramu - {0} miligramos - - - onces - {0} onza - {0} onces - - - {0} onza troy - {0} onces troy - - - {0} llibra - {0} llibres - - - {0} tonelada - {0} tonelaes - - - gigavatios - {0} gigavatiu - {0} gigavatios - - - caballos de fuerza - {0} caballu de fuerza - {0} caballos de fuerza - - - kilovatios - {0} kilovatiu - {0} kilovatios - - - megavatios - {0} megavatiu - {0} megavatios - - - millivatios - {0} millivatiu - {0} millivatios - - - {0} vatiu - {0} vatios - - - hectopascales - {0} hectopascal - {0} hectopascales - - - {0} pulgada de mercuriu - {0} pulgaes de mercuriu - - - milibares - {0} milibar - {0} milibares - - - milímetros de mercuriu - {0} milímetru de mercuriu - {0} milímetros de mercuriu - - - llibres por pulgada cuadrada - {0} llibra por pulgada cuadrada - {0} llibres por pulgada cuadrada - - - {0} quilate - {0} quilates - - - km/h - {0} kilómetru por hora - {0} kilómetros por hora - - - {0} metru por segundu - {0} metros por segundu - - - {0} milla por hora - {0} milles por hora - - - {0} grau Celsius - {0} graos Celsius - - - {0} grau Fahrenheit - {0} graos Fahrenheit - - - graos kelvin - {0} grau kelvin - {0} graos kelvin - - - {0} acre-pie - {0} acre-pies - - - centillitros - {0} centillitru - {0} centillitros - - - centímetros cúbicos - {0} centímetru cúbicu - {0} centímetros cúbicos - - - {0} pie cúbicu - {0} pies cúbicos - - - {0} pulgada cúbica - {0} pulgaes cúbiques - - - kilómetros cúbicos - {0} kilómetru cúbicu - {0} kilómetros cúbicos - - - metros cúbicos - {0} metru cúbicu - {0} metros cúbicos - - - milles cúbiques - {0} milla cúbica - {0} milles cúbiques - - - {0} yarda cúbica - {0} yardes cúbiques - - - {0} taza - {0} taces - - - decillitros - {0} decillitru - {0} decillitros - - - onces de fluidos - {0} onza de fluidos - {0} onces de fluidos - - - galones - {0} galón - {0} galones - - - hectollitros - {0} hectollitru - {0} hectollitros - - - liter - {0} l - {0} l - - - megallitros - {0} megallitru - {0} megallitros - - - milillitros - {0} milillitru - {0} milillitros - - - {0} pinta - {0} pintes - - - {0} cuartu - {0} cuartos - - - cuyares - {0} cuyar - {0} cuyares - - - cuyarines - {0} cuyarina - {0} cuyarines - - - - - g-fuerza - {0} G - {0} G - - - m/s² - {0} m/s² - {0} m/s² - - - {0}′ - {0}′ - - - {0}″ - {0}″ - - - {0}° - {0}° - - - rad - {0} rad - {0} rad - - - acre - {0} ac - {0} ac - - - {0} ha - {0} ha - - - cm² - {0} cm² - {0} cm² - - - ft² - {0} ft² - {0} ft² - - - in² - {0} in² - {0} in² - - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² - - - L/km - {0} L/km - {0} L/km - - - mpg - {0} mpg - {0} mpg - - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} bytes - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - - - TB - {0} TB - {0} TB - - - díes - {0} d - {0} d - - - hores - {0} h - {0} h - {0}/h - - - μs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - - - minutos - {0} min - {0} min - - - meses - {0} m - {0} m - - - ns - {0} ns - {0} ns - - - segundos - {0} s - {0} s - {0}/s - - - selmanes - {0} sel - {0} sel - - - años - {0} a - {0} a - - - amp - {0} A - {0} A - - - mA - {0} mA - {0} mA - - - ohm - {0} Ω - {0} Ω - - - volt - {0} V - {0} V - - - cal - {0} cal - {0} cal - - - Cal - {0} Cal - {0} Cal - - - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - - - kJ - {0} kJ - {0} kJ - - - kWh - {0} kWh - {0} kWh - - - GHz - {0} GHz - {0} GHz - - - Hz - {0} Hz - {0} Hz - - - kHz - {0} kHz - {0} kHz - - - MHz - {0} MHz - {0} MHz - - - {0} ua - {0} ua - - - cm - {0} cm - {0} cm - - - dm - {0} dm - {0} dm - - - ft - {0} ft - {0} ft - - - in - {0} in - {0} in - - - km - {0} km - {0} km - - - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - {0} mi - {0} mi - - - mm - {0} mm - {0} mm - - - nm - {0} nm - {0} nm - - - nmi - {0} nmi - {0} nmi - - - pc - {0} pc - {0} pc - - - pm - {0} pm - {0} pm - - - yd - {0} yd - {0} yd - - - lx - {0} lx - {0} lx - - - CD - {0} CD - {0} CD - - - gram - {0} g - {0} g - - - kg - {0} kg - {0} kg - - - tm - {0} tm - {0} tm - - - µg - {0} µg - {0} µg - - - mg - {0} mg - {0} mg - - - oz - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb - - - tn - {0} tn - {0} tn - - - GW - {0} GW - {0} GW - - - hp - {0} hp - {0} hp - - - kW - {0} kW - {0} kW - - - MW - {0} MW - {0} MW - - - mW - {0} mW - {0} mW - - - {0} W - {0} W - - - hPa - {0} hPa - {0} hPa - - - inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - - - mm Hg - {0} mm Hg - {0} mm Hg - - - psi - {0} psi - {0} psi - - - kt - {0} kt - {0} kt - - - km/h - {0} km/h - {0} km/h - - - m/s - {0} m/s - {0} m/s - - - mi/h - {0} mi/h - {0} mi/h - - - °C - {0}°C - {0}°C - - - °F - {0}°F - {0}°F - - - K - {0} K - {0} K - - - ac ft - {0} ac ft - {0} ac ft - - - cL - {0} cL - {0} cL - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - - - km³ - {0} km³ - {0} km³ - - - - {0} m³ - {0} m³ - - - mi³ - {0} mi³ - {0} mi³ - - - yd³ - {0} yd³ - {0} yd³ - - - {0} tz - {0} tz - - - dL - {0} dL - {0} dL - - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal - - - hectollitros - {0} hL - {0} hL - - - liter - {0} l - {0} l - - - ML - {0} ML - {0} ML - - - mL - {0} mL - {0} mL - - - {0} pt - {0} pt - - - {0} qt - {0} qt - - - cuyar - {0} cuyar - {0} cuyar - - - cuyrn - {0} cuyrn - {0} cuyrn - - - - - - {0} m² - {0} m² - - - mi² - {0}mi² - {0}mi² - - - yd² - {0}yd² - {0}yd² - - - {0}d - {0}d - - - {0}h - {0}h - {0}/h - - - μs - {0}μs - {0}μs - - - ms - {0}ms - {0}ms - - - {0}m - {0}m - - - {0}m - {0}m - - - ns - {0}ns - {0}ns - - - {0}s - {0}s - {0}/s - - - {0}sel - {0}sel - - - años - {0}a - {0}a - - - amp - - - mA - - - MHz - - - ua - {0}ua - {0}ua - - - cm - {0}cm - {0}cm - - - dm - {0}dm - {0}dm - - - ft - {0}′ - {0}′ - - - in - {0}″ - {0}″ - - - km - {0}km - {0}km - - - metru - {0}m - {0}m - - - µm - {0}µm - {0}µm - - - mi - {0}mi - {0}mi - - - mm - {0}mm - {0}mm - - - nm - {0}nm - {0}nm - - - nmi - {0}nmi - {0}nmi - - - pc - {0}pc - {0}pc - - - pm - {0}pm - {0}pm - - - yd - {0}yd - {0}yd - - - gramu - {0}g - {0}g - - - kg - {0}kg - {0}kg - - - hPa - - - mbar - - - mm Hg - {0}mm Hg - {0}mm Hg - - - psi - - - km/h - {0} km/h - {0} km/h - - - °C - {0}°C - {0}°C - - - °F - - - K - - - llitru - {0}l - {0}l - - - - h:mm - - - h:mm:ss - - - m:ss - - - - - {0}, {1} - {0}, {1} - {0} y {1} - {0} y {1} - - - {0}, {1} - {0}, {1} - {0} y {1} - {0} y {1} - - - {0}, {1} - {0}, {1} - {0} y {1} - {0} y {1} - - - {0}, {1} - {0}, {1} - {0} y {1} - {0} y {1} - - - - - sí:s - non:n - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/be.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/be.xml deleted file mode 100644 index 44d0ce9b1a1..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/be.xml +++ /dev/null @@ -1,1347 +0,0 @@ - - - - - - - - - - - - {0} ({1}) - {0}, {1} - - - абхазская - адыгейская - афрыкаанс - акадзкая - алеуцкая - амхарская - арагонская - стараанглійская - арабская - арамейская - асамская - астурыйская - аварская - аймара - азербайджанская - башкірская - беларуская - балгарская - бенгальская - брэтонская - баснійская - бурацкая - каталонская - чачэнская - чыбча - копцкая - чэшская - чувашская - валійская - дацкая - нямецкая - нямецкая (аўстр.) - нямецкая (швейц.) - стараэгіпецкая - грэцкая - англійская - англійская (аўстрал.) - англійская (канад.) - англійская (ЗША) - эсперанта - іспанская - іспанская (лацінаамер.) - эстонская - баскская - фарсі - фінская - тагальская - фарэрская - французская - французская (канад.) - французская (швейц.) - старафранцузская - фрызская - ірландская - шатландская гэльская - галісійская - гуарані - старагрэцкая - гуяраці - іўрыт - хіндзі - харвацкая - венгерская - армянская - інтэрлінгва - інданезійская - інтэрлінгве - ісландская - італьянская - японская - яванская - грузінская - казахская - каннада - карэйская - курдская - лацінская - лінгала - лаоская - монга - літоўская - луо - латышская - мандынга - масаі - мендэ - мальгашская - македонская - малаяламская - мангольская - мосі - маратхі - малайская - мальтыйская - нарвэская букмал - непальская - галандская - фламандская - нарвежская (нюнорск) - нарвежская - нагайская - старанарвежская - правансальская - аджыбве - орыя - асецінская - панджабі - стараперсідская - фінікійская - польская - стараправансальская - пушту - партугальская - партугальская (бразіл.) - кечуа - раджастханская - рэта-раманская - румынская - малдаўская - руская - санскрыт - якуцкая - сіндхі - стараірландская - сербска-харвацкая - сінгальская - славацкая - славенская - самалійская - албанская - сербская - суданская - шумерская - шведская - суахілі - тамільская - тэлугу - таджыкская - тайская - тыгрынья - туркменская - клінгон - турэцкая - татарская - тувінская - уйгурская - украінская - невядомая мова - урду - узбекская - в’етнамская - валапюк - хоса - ідыш - сапатэкаў - кітайская - спрошчаная кітайская - традыцыйная кітайская - зулу - - - - - - - - - - - - - - - - Свет - Афрыка - Паўночная Амэрыка - Паўднёвая Амэрыка - Акіянія - Заходняя Афрыка - Цэнтральная Амэрыка - Усходняя Афрыка - Паўночная Афрыка - Цэнтральная Афрыка - Паўднёвая Афрыка - Паўночная і Паўднёвая Амерыкі - ЗША і Канада - Карыбскія астравы - Усходняя Азія - Паўднёвая Азія - Паўднёва-Усходняя Азія - Паўднёвая Еўропа - Аўстралія і Новая Зэландыя - Палінезія - Азія - Цэнтральная Азія - Заходняя Азія - Еўропа - Усходняя Еўропа - Паўночная Еўропа - Заходняя Еўропа - Андора - Аб’яднаныя Арабскія Эміраты - Афганістан - Антыгуа і Барбуда - Ангілья - Албанія - Арменія - Нідэрландскія Антылы - Ангола - Антарктыка - Аргенціна - Амерыканскае Самоа - Аўстрыя - Аўстралія - Аруба - Аландскія астравы - Азербайджан - Боснія і Герцагавіна - Барбадас - Бангладэш - Бельгія - Буркіна-Фасо - Балгарыя - Бахрэйн - Бурундзі - Бенін - Сен-Бартэльмі - Бермудскія астравы - Бруней - Балівія - Бразілія - Багамы - Бутан - Бувэ востраў - Батсвана - Беларусь - Беліз - Канада - Какосавыя астравы - Конга, Дэмакратычная Рэспубліка - Дэмакратычная Рэспубліка Конга - Цэнтральна-Афрыканская Рэспубліка - Конга - Рэспубліка Конга - Швейцарыя - Кот-д’Івуар - Астравы Кука - Чылі - Камерун - Кітай - Калумбія - Коста-Рыка - Куба - Каба-Вердэ - Востраў Кюрасаа - Востраў Ражства - Кіпр - Чэхія - Германія - Джыбуці - Данія - Дамініка - Дамініканская Рэспубліка - Алжыр - Эквадор - Эстонія - Егіпет - Заходняя Сахара - Эрытрэя - Іспанія - Эфіопія - Еўрапейскі Звяз - Фінляндыя - Фіджы - Фолклэндскія астравы - Мікранезія - Фарэрскія астравы - Францыя - Габон - Вялікабрытанія - Грэнада - Грузія - Французская Гвіяна - Востраў Гернсі - Гана - Гібралтар - Грэнландыя - Гамбія - Гвінея - Гвадэлупа - Экватарыяльная Гвінея - Грэцыя - Паўднёвая Джорджыя і Паўднёвыя Сандвічавы астравы - Гватэмала - Гуам - Гвінея-Бісау - Гаяна - Гон-Конг, Кітай (САР) - Ганконг - Востраў Херд і Астравы Макдоналд - Гандурас - Харватыя - Гаіці - Венгрыя - Інданезія - Ірландыя - Ізраіль - Востраў Мэн - Індыя - Брытанская тэрыторыя ў Індыйскім акіяне - Ірак - Іран - Ісландыя - Італія - Востраў Джэрсі - Ямайка - Іарданія - Японія - Кенія - Кыргызстан - Камбоджа - Кірыбаці - Каморскія Астравы - Сент-Кітс і Невіс - Паўночная Карэя - Паўднёвая Карэя - Кувейт - Кайманавы астравы - Казахстан - Лаос - Ліван - Сент-Люсія - Ліхтэнштэйн - Шры-Ланка - Ліберыя - Лесота - Літва - Люксембург - Латвія - Лівія - Марока - Манака - Малдова - Чарнагорыя - Мадагаскар - Маршалавы Астравы - Македонія, БЮР - Рэспубліка Македонія - Малі - М’янма - Манголія - Макао, Кітай (САР) - Макаа - Паўночныя Марыянскія астравы - Марцініка - Маўрытанія - Мантсерат - Мальта - Маўрыкій - Мальдывы - Малаві - Мексіка - Малайзія - Мазамбік - Намібія - Новая Каледонія - Нігер - Востраў Норфалк - Нігерыя - Нікарагуа - Нідэрланды - Нарвегія - Непал - Науру - Ніуэ - Новая Зеландыя - Аман - Панама - Перу - Французская Палінезія - Папуа — Новая Гвінея - Філіпіны - Пакістан - Польшча - Сен-П’ер і Мікелон - Астравы Піткэрн - Пуэрта-Рыка - Палестынскія тэрыторыі - Партугалія - Палау - Парагвай - Катар - Вонкавая Акіянія - Рэюньён - Румынія - Сербія - Расія - Руанда - Саудаўская Аравія - Саламонавы Астравы - Сейшэльскія Астравы - Судан - Швецыя - Сінгапур - Святой Алены, Востраў - Славенія - Свальбард (Паўночна-Усходняя Зямля) і Ян-Маен - Славакія - Сьера-Леонэ - Сан-Марына - Сенегал - Самалі - Сурынам - Паўднёвы Судан - Сан-Тамэ і Прынсіпі - Сальвадор - Сірыя - Свазіленд - Цёркс і Кайкас - Чад - Французскія Паўднёвыя тэрыторыі - Тога - Тайланд - Таджыкістан - Такелау - Усходні Тымор - Туркменістан - Туніс - Тонга - Турцыя - Трынідад і Табага - Тувалу - Тайвань - Танзанія - Украіна - Уганда - Злучаныя Штаты Амерыкі - Уругвай - Узбекістан - Ватыкан - Сент-Вінсент і Грэнадзіны - Венесуэла - Брытанскія Віргінскія астравы - Амерыканскія Віргінскія астравы - В’етнам - Вануату - Уоліс і Футуна - Самоа - Емен - Востраў Маёта - Паўднёва-Афрыканская Рэспубліка - Замбія - Зімбабвэ - Невядомы рэгіён - - - каляндар - параўнаньне тэксту - валюта - лічбы - - - будысцкі каляндар - кітайскі каляндар - стандартнае сартаванне Unicode - грэгарыянскі каляндар - іудэйскі каляндар - мусульманскі каляндар - мусульманскі свецкі каляндар - японскі каляндар - пошук - стандартнае сартаванне - - - метрычная - брытанская - ЗША - - - Мова: {0} - Пісьмо: {0} - Рэгіён: {0} - - - - [а б в г д {дж} {дз} е ё ж з і й к л м н о п р с т у ў ф х ц ч ш ы ь э ю я] - [{а\u0301} {е\u0301} {ё\u0301} {і\u0301} {о\u0301} {у\u0301} {ы\u0301} {э\u0301} {ю\u0301} {я\u0301}] - [А Б В Г Д Е Ж З І Й К Л М Н О П Р С Т У Ф Х Ц Ч Ш Ы Э Ю Я] - - - « - » - - - - - - - - - - EEEE, d MMMM y G - - - - - d MMMM y G - - - - - d MMM y G - - - - - d.M.yy - - - - - - d - E, d - G y - h.mm a - HH.mm - h.mm.ss a - HH.mm.ss - L - d.M - E, d.M - LLL - d MMM - E, d MMM - G y - M.y - d.M.y - E, d.M.y - MMM y G - d MMM y G - E, d MMM y G - - - - - - - - EEEE, d MMMM y G - - - - - d MMMM y G - - - - - d.M.y G - - - - - d.M.y GGGGG - - - - - - d - E, d - y G - LLL y G - d MMM y G - E, d MMM y G - h.mm a - HH.mm - h.mm.ss a - HH.mm.ss - L - d.M - E, d.M - LLL - d MMM - E, d MMM - mm.ss - y G - y G - M.y G - d.M.y G - E, d.M.y G - LLL y G - d MMM y G - E, d MMM y G - LLLL y G - QQQ y G - QQQQ y G - - - {0} - {1} - - d–d - - - h–h a - - - HH–HH - - - h.mm–h.mm a - h.mm–h.mm a - - - HH.mm–HH.mm - HH.mm–HH.mm - - - h.mm–h.mm a v - h.mm–h.mm a v - - - HH.mm–HH.mm v - HH.mm–HH.mm v - - - h–h a v - - - HH–HH v - - - M–M - - - d.M – d.M - d.M – d.M - - - E, d.M – E, d.M - E, d.M – E, d.M - - - LLL–LLL - - - d–d MMM - d MMM – d MMM - - - E, d – E, d MMM - E, d MMM – E, d MMM - - - y–y G - - - M.y – M.y G - M.y – M.y G - - - d.M.y – d.M.y G - d.M.y – d.M.y G - d.M.y – d.M.y G - - - E, d.M.y – E, d.M.y G - E, d.M.y – E, d.M.y G - E, d.M.y – E, d.M.y G - - - LLL–LLL y G - LLL y – LLL y G - - - d–d MMM y G - d MMM – d MMM y G - d MMM y – d MMM y G - - - E, d – E, d MMM y G - E, d MMM – E, d MMM y G - E, d MMM y – E, d MMM y G - - - LLLL–LLLL y G - LLLL y – LLLL y G - - - - - - - - - сту - лют - сак - кра - мая - чэр - ліп - жні - вер - кас - ліс - сне - - - с - л - с - к - м - ч - л - ж - в - к - л - с - - - студзеня - лютага - сакавіка - красавіка - мая - чэрвеня - ліпеня - жніўня - верасня - кастрычніка - лістапада - снежня - - - - - сту - лют - сак - кра - май - чэр - ліп - жні - вер - кас - ліс - сне - - - с - л - с - к - м - ч - л - ж - в - к - л - с - - - студзень - люты - сакавік - красавік - май - чэрвень - ліпень - жнівень - верасень - кастрычнік - лістапад - снежань - - - - - - - нд - пн - аў - ср - чц - пт - сб - - - нядзеля - панядзелак - аўторак - серада - чацвер - пятніца - субота - - - - - н - п - а - с - ч - п - с - - - - - - - 1-шы кв. - 2-гі кв. - 3-ці кв. - 4-ты кв. - - - 1-шы квартал - 2-гі квартал - 3-ці квартал - 4-ты квартал - - - - - - - да палудня - пасля палудня - - - - - раніцы - вечара - - - - - - да н.э. - н.э. - - - - - - EEEE, d MMMM y - - - - - d MMMM y - - - - - d.M.y - - - - - d.M.yy - - - - - - - HH.mm.ss zzzz - - - - - HH.mm.ss z - - - - - HH.mm.ss - - - - - HH.mm - - - - - - d - y G - LLL y G - d MMM y G - E, d MMM y G - h.mm a - HH.mm - h.mm.ss a - HH.mm.ss - L - d.M - E, d.M - LLL - d MMM - E, d MMM - d MMMM - E, d MMMM - mm.ss - y - M.y - d.M.y - E, d.M.y - LLL y - d MMM y - E, d MMM y - LLLL y - QQQ y - QQQQ y - - - {0} - {1} - - d–d - - - h–h a - - - HH–HH - - - h.mm–h.mm a - h.mm–h.mm a - - - HH.mm–HH.mm - HH.mm–HH.mm - - - h.mm–h.mm a v - h.mm–h.mm a v - - - HH.mm–HH.mm v - HH.mm–HH.mm v - - - h–h a v - - - HH–HH v - - - M–M - - - d.M – d.M - d.M – d.M - - - E, d.M – E, d.M - E, d.M – E, d.M - - - LLL–LLL - - - d–d MMM - d MMM – d MMM - - - E, d – E, d MMM - E, d MMM – E, d MMM - - - y–y - - - M.y – M.y - M.y – M.y - - - d.M.y – d.M.y - d.M.y – d.M.y - d.M.y – d.M.y - - - E, d.M.y – E, d.M.y - E, d.M.y – E, d.M.y - E, d.M.y – E, d.M.y - - - LLL–LLL y - LLL y – LLL y - - - d–d MMM y - d MMM – d MMM y - d MMM y – d MMM y - - - E, d – E, d MMM y - E, d MMM – E, d MMM y - E, d MMM y – E, d MMM y - - - LLLL–LLLL y - LLLL y – LLLL y - - - - - - - - эра - - - год - - - месяц - - - тыдзень - - - дзень - пазаўчора - учора - сёння - заўтра - паслязаўтра - - - дзень тыдня - - - ДП/ПП - - - гадзіна - - - хвіліна - - - секунда - - - Zone - - - - +HH:mm;-HH:mm - GMT{0} - Час: {0} - {1} ({0}) - - Невядомы - - - Рыё Бранка - - - Кампа Грандэ - - - Сан-Паўлу - - - Ганалулу - - - Анкорыдж - - - Лос-Анджэлас - - - Фэнікс - - - Дэнвэр - - - Чыкага - - - Індыянапаліс - - - Нью-Ёрк - - - - Паўночнаамэрыканскі цэнтральны час - Паўночнаамэрыканскі цэнтральны стандартны час - Паўночнаамэрыканскі цэнтральны летні час - - - - - Паўночнаамэрыканскі усходні час - Паўночнаамэрыканскі усходні стандартны час - Паўночнаамэрыканскі усходні летні час - - - - - Паўночнаамэрыканскі горны час - Паўночнаамэрыканскі горны стандартны час - Паўночнаамэрыканскі горны летні час - - - - - Ціхаакіянскі час - Ціхаакіянскі стандартны час - Ціхаакіянскі летні час - - - - - Атлянтычны час - Атлянтычны стандартны час - Атлянтычны летні час - - - - - Цэнтральнаэўрапейскі час - Цэнтральнаэўрапейскі стандартны час - Цэнтральнаэўрапейскі летні час - - - - - Усходнеэўрапейскі час - Усходнеэўрапейскі стандартны час - Усходнеэўрапейскі летні час - - - - - Заходнеэўрапейскі час - Заходнеэўрапейскі стандартны час - Заходнеэўрапейскі летні час - - - - - Грынвічскі час - - - - - - - , -   - - - - - #,##0.### - - - - - - - #E0 - - - - - - - #,##0% - - - - - - - ¤#,##0.00 - - - - - - аўстралійскі даляр - - - бразільскі рэал - - - беларускі рубель - р. - - - кітайскі юань - - - эрытрэйская накфа - - - еўра - - - англійскі фунт - - - індыйская рупія - - - японская іена - ¥ - - - нарвэская крона - - - рускі рубель - рас. руб. - - - долар ЗША - $ - - - невядомая або недапушчальная валюта - - - - - - - дня - {0} дзень - {0} дні - {0} дзён - {0} дня - - - гадзіны - {0} гадзіна - {0} гадзіны - {0} гадзін - {0} гадзіны - - - хвіліны - {0} хвіліна - {0} хвіліны - {0} хвілін - {0} хвіліны - - - месяца - {0} месяц - {0} месяца - {0} месяцаў - {0} месяца - - - сэкунды - {0} сэкунда - {0} сэкунды - {0} сэкунд - {0} сэкунды - - - тыдня - {0} тыдзень - {0} тыдні - {0} тыдняў - {0} тыдня - - - году - {0} год - {0} гады - {0} гадоў - {0} году - - - - - дня - - - гадзіны - - - хвіліны - - - месяца - - - сэкунды - - - тыдня - - - году - - - - - - так:т - не:н - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/cy.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/cy.xml deleted file mode 100644 index 647d97661b9..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/cy.xml +++ /dev/null @@ -1,6122 +0,0 @@ - - - - - - - - - - - - {0} ({1}) - {0}, {1} - {0}: {1} - - - Affareg - Abchaseg - Acehneg - Acoli - Adangmeg - Circaseg Gorllewinol - Afestaneg - Arabeg Tunisia - Affricâneg - Affrihili - Aghemeg - Ainŵeg - Acaneg - Acadeg - Alabamäeg - Alewteg - Ghegeg Albania - Altäeg Deheuol - Amhareg - Aragoneg - Hen Saesneg - Arabeg - Arabeg Modern Safonol - Aramaeg - Arawcaneg - Araonaeg - Arapaho - Arabeg Algeria - Arawaceg - Arabeg Moroco - Arabeg yr Aifft - Asameg - Iaith Arwyddion America - Afareg - Aserbaijaneg - Aserbaijaneg Deheuol - Bashcorteg - Balwtsi - Balïeg - Basâeg - Bamwmeg - Belarwseg - Bejäeg - Bembeg - Bena - Bwlgareg - Bislama - Comeg - Bambareg - Bengaleg - Tibeteg - Llydaweg - Brahui - Bosnieg - Bwriateg - Bwlw - Catalaneg - Cado - Caribeg - Atsameg - Tsietsieneg - Tsiamorro - Marieg - Siocto - Tsierocî - Cheyenne - Cwrdeg Sorani - Corseg - Copteg - Cri - Tyrceg y Crimea - Tsieceg - Hen Slafoneg - Cymraeg - Daneg - Dacotaeg - Dargwa - Almaeneg - Almaeneg Awstria - Almaeneg Safonol y Swistir - Dinca - Zarmaeg - Dogri - Sorbeg Isaf - Iseldireg Canol - Difehi - Embw - Ewe - Hen Eiffteg - Groeg - Elameg - Saesneg - Saesneg Awstralia - Saesneg Canada - Saesneg Prydain - Saesneg (DU) - Saesneg America - Saesneg (UDA) - Saesneg Canol - Esperanto - Sbaeneg - Sbaeneg America Ladin - Sbaeneg Ewrop - Sbaeneg Mecsico - Estoneg - Basgeg - Ewondo - Extremadureg - Perseg - Ffanti - Ffwla - Ffinneg - Ffilipineg - Ffinneg Tornedal - Ffijïeg - Ffaröeg - Ffrangeg - Ffrangeg Canada - Ffrangeg y Swistir - Ffrangeg Cajwn - Ffrangeg Canol - Hen Ffrangeg - Ffriseg y Gogledd - Ffriseg y Dwyrain - Ffriwleg - Ffriseg y Gorllewin - Gwyddeleg - Gaio - Gbaia - Dareg y Zoroastriaid - Gaeleg yr Alban - Gilberteg - Galisieg - Uchel Almaeneg Canol - Guaraní - Hen Uchel Almaeneg - Gotheg - Hen Roeg - Almaeneg y Swistir - Gwjarati - Manaweg - Hawsa - Haida - Hawäieg - Hebraeg - Hindi - Hetheg - Hmongeg - Croateg - Sorbeg Uchaf - Creol Haiti - Hwngareg - Armeneg - Herero - Interlingua - Ibaneg - Ibibio - Indoneseg - Interlingue - Igbo - Nwosw - Inwpiaceg - Ilocaneg - Ingwsieg - Islandeg - Eidaleg - Inwctitwt - Japaneeg - Matsiame - Iddew-Bersieg - Iddew-Arabeg - Jafanaeg - Georgeg - Cara-Calpaceg - Cabileg - Camba - Circaseg Dwyreiniol - Macondeg - Caboferdianeg - Congo - Càseg - ki - Casacheg - Chmereg - Kannada - Coreeg - Concani - Canwri - Careleg - Cashmireg - Baffia - Cwleneg - Cwrdeg - Cwmiceg - Comi - Cernyweg - Cirgiseg - Lladin - Iddew-Sbaeneg - Langi - Lahnda - Lamba - Lwcsembwrgeg - Lezgheg - Ganda - Limbwrgeg - Lombardeg - Lingala - Laoeg - Mongo - Lozi - Lithwaneg - Latgalieg - Lwnda - Lŵo - Lwshaieg - Lwyia - Latfieg - Madwreg - Magahi - Maithili - Macasareg - Mandingo - Masai - Mocsia - Mandareg - Mendeg - Mêrw - Malagaseg - Gwyddeleg Canol - Marsialeg - Maori - Micmaceg - Macedoneg - Malayalam - Mongoleg - Manshw - Manipwri - Mohoceg - Mosi - Marathi - Maleieg - Malteg - Mas - mwy nag un iaith - Mirandeg - Marwari - Byrmaneg - Nawrŵeg - Naplieg - Norwyeg Bokmål - Ndebele Gogleddol - Isel Almaeneg - Nepaleg - Newaeg - Ndonga - Iseldireg - Fflemeg - Norwyeg Nynorsk - Norwyeg - Hen Norseg - Ndebele Deheuol - Sotho Gogleddol - Nŵereg - Nafaho - Hen Newari - Nianja - Niamwezi - Niancole - Nioro - Nzimeg - Ocsitaneg - Ojibwa - Oromo - Oriya - Oseteg - Osageg - Tyrceg Otoman - Pwnjabeg - Pangasineg - Pahlafi - Pampanga - Picardeg - Almaeneg Pensylfania - Hen Bersieg - Almaeneg Palatin - Phoeniceg - Pali - Pwyleg - Piedmonteg - Pohnpeianeg - Prwseg - Hen Brofensaleg - Pashto - Portiwgeeg - Portiwgeeg Brasil - Portiwgeeg Ewrop - Quechua - K’iche’ - Rajasthaneg - Rapanŵi - Raratongeg - Romaunsch - Rwndi - Rwmaneg - Moldofeg - Rombo - Romani - y Gwraidd - Rotumaneg - Rwseg - Aromaneg - Ciniarŵandeg - Rwa - Sansgrit - Sandäweg - Iacwteg - Aramaeg Samaria - Sambŵrw - Sasaceg - Santali - Ngambeieg - Sangw - Sardeg - Sisileg - Sgoteg - Sindhi - Sasareseg Sardinia - Sami Gogleddol - Seneca - Selcypeg - Sango - Hen Wyddeleg - Serbo-Croateg - Arabeg Chad - Sinhaleg - Sidamo - Slofaceg - Slofeneg - Is-silesieg - Samöeg - Sami Deheuol - Sami Lwle - Sami Inari - Sami Scolt - Soninceg - Somaleg - Sogdeg - Albaneg - Serbeg - Sesotheg - Swndaneg - Swcwma - Swsŵeg - Swmereg - Swedeg - Swahili - Comoreg - Swahili’r Congo - Hen Syrieg - Syrieg - Silesieg - Tamileg - Tulu - Telugu - Timneg - Tetumeg - Tajiceg - Thai - Tigrinya - Twrcmeneg - Tagalog - Klingon - Tamasheceg - Tswana - Tongeg - Tyrceg - Tsongaeg - Tatareg - Twfalweg - Twi - Tahitïeg - Fotiaceg - Uighur - Wgariteg - Wcreineg - Umbundu - Iaith Anhysbys - Wrdw - Wsbeceg - Faieg - Fendeg - Feniseg - Fietnameg - Fflemeg Gorllewinol - Walwneg - Walamo - Woloff - Calmyceg - Xhosa - Iembaeg - Iddew-Almaeneg - Iorwba - Cantoneeg - Zapoteceg - Blisssymbols - Zêlandeg - Tamazight Safonol Moroco - Tsieineeg - Tsieineeg Symledig - Tsieineeg Traddodiadol - Swlw - Zuni - Dim cynnwys ieithyddol - Zazäeg - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Y Byd - Affrica - Gogledd America - De America - Oceania - Gorllewin Affrica - Canolbarth America - Dwyrain Affrica - Gogledd Affrica - Canol Affrica - Deheudir Affrica - Yr Amerig - America i’r Gogledd o Mecsico - Y Caribî - Dwyrain Asia - De Asia - De-Ddwyrain Asia - De Ewrop - Awstralasia - Melanesia - Rhanbarth Micronesia - Polynesia - Asia - Canol Asia - Gorllewin Asia - Ewrop - Dwyrain Ewrop - Gogledd Ewrop - Gorllewin Ewrop - America Ladin - Ynys Ascension - Andorra - Emiradau Arabaidd Unedig - Afghanistan - Antigua a Barbuda - Anguilla - Albania - Armenia - Ynysoedd Caribî yr Iseldiroedd - Angola - Antarctica - Yr Ariannin - Samoa America - Awstria - Awstralia - Aruba - Ynysoedd Åland - Azerbaijan - Bosnia a Hercegovina - Barbados - Bangladesh - Gwlad Belg - Burkina Faso - Bwlgaria - Bahrain - Burundi - Benin - Saint Barthélemy - Bermuda - Brunei - Bolifia - Antilles yr Iseldiroedd - Brasil - Y Bahamas - Bhutan - Ynys Bouvet - Botswana - Belarws - Belize - Canada - Ynysoedd Cocos (Keeling) - Y Congo - Kinshasa - y Congo (G.Dd.C.) - Gweriniaeth Canolbarth Affrica - Y Congo - Brazzaville - Y Congo (Gweriniaeth) - Y Swistir - Côte d’Ivoire - Ynysoedd Cook - Chile - Camerŵn - Tsieina - Colombia - Ynys Clipperton - Costa Rica - Ciwba - Cabo Verde - Curaçao - Ynys y Nadolig - Cyprus - Gweriniaeth Tsiec - Yr Almaen - Diego Garcia - Djibouti - Denmarc - Dominica - Gweriniaeth Dominica - Algeria - Ceuta a Melilla - Ecuador - Estonia - Yr Aifft - Gorllewin Sahara - Eritrea - Sbaen - Ethiopia - Yr Undeb Ewropeaidd - Y Ffindir - Fiji - Ynysoedd y Falkland/Malvinas - Ynysoedd y Falkland (Ynysoedd y Malfinas) - Micronesia - Føroyar - Ffrainc - Gabon - Y Deyrnas Unedig - DU - Grenada - Georgia - Guyane Ffrengig - Ynys y Garn - Ghana - Gibraltar - Yr Ynys Las - Gambia - Guinée - Guadeloupe - Guinea Gyhydeddol - Gwlad Groeg - De Georgia ac Ynysoedd Sandwich y De - Guatemala - Guam - Guiné-Bissau - Guyana - Hong Kong RhGA Tsieina - Hong Kong - Ynys Heard ac Ynysoedd McDonald - Honduras - Croatia - Haiti - Hwngari - Yr Ynysoedd Dedwydd - Indonesia - Iwerddon - Israel - Ynys Manaw - India - Tiriogaeth Brydeinig Cefnfor India - Irac - Iran - Gwlad yr Iâ - Yr Eidal - Jersey - Jamaica - Gwlad Iorddonen - Japan - Kenya - Kyrgyzstan - Cambodia - Kiribati - Comoros - Saint Kitts a Nevis - Gogledd Korea - De Korea - Kuwait - Ynysoedd Cayman - Kazakstan - Laos - Libanus - Saint Lucia - Liechtenstein - Sri Lanka - Liberia - Lesotho - Lithuania - Lwcsembwrg - Latfia - Libya - Moroco - Monaco - Moldofa - Montenegro - Saint Martin - Madagascar - Ynysoedd Marshall - Macedonia - Macedonia (CWIM) - Mali - Myanmar (Burma) - Mongolia - Macau RhGA Tsieina - Macau - Ynysoedd Gogledd Mariana - Martinique - Mauritania - Montserrat - Malta - Mauritius - Y Maldives - Malawi - Mecsico - Malaysia - Mozambique - Namibia - Caledonia Newydd - Niger - Ynys Norfolk - Nigeria - Nicaragua - Yr Iseldiroedd - Norwy - Nepal - Nauru - Niue - Seland Newydd - Oman - Panama - Periw - Polynesia Ffrengig - Papua Guinea Newydd - Pilipinas - Pakistan - Gwlad Pwyl - Saint-Pierre-et-Miquelon - Ynysoedd Pitcairn - Puerto Rico - Tiriogaethau Palesteinaidd - Palesteina - Portiwgal - Palau - Paraguay - Qatar - Oceania Bellennig - Réunion - Rwmania - Serbia - Rwsia - Rwanda - Saudi Arabia - Ynysoedd Solomon - Seychelles - Swdan - Sweden - Singapore - Saint Helena - Slofenia - Svalbard a Jan Mayen - Slofacia - Sierra Leone - San Marino - Sénégal - Somalia - Suriname - De Swdan - São Tomé a Príncipe - El Salvador - Sint Maarten - Syria - Gwlad Swazi - Tristan da Cunha - Ynysoedd Turks a Caicos - Tchad - Tiroedd Deheuol ac Antarctig Ffrainc - Togo - Gwlad Thai - Tajikistan - Tokelau - Timor-Leste - Dwyrain Timor - Turkmenistan - Tunisia - Tonga - Twrci - Trinidad a Tobago - Tuvalu - Taiwan - Tanzania - Wcráin - Uganda - Ynysoedd Pellennig UDA - Yr Unol Daleithiau - UDA - Uruguay - Uzbekistan - Y Fatican - Saint Vincent a’r Grenadines - Venezuela - Ynysoedd Gwyryf Prydain - Ynysoedd Gwyryf yr Unol Daleithiau - Fietnam - Vanuatu - Wallis a Futuna - Samoa - Kosovo - Yemen - Mayotte - De Affrica - Zambia - Zimbabwe - Rhanbarth Anhysbys - - - Calendr - Trefn - Arian Breiniol - Rhifau - - - Digidau Arabig-Indig - Digidau Arabig-Indig Estynedig - Rhifolion Armenaidd - Rhifolion Armenaidd mewn Llythrennau Bychain - Digidau Bengalaidd - Trefn Traddodiadol Tsieina - Big5 - Calendr y Bwdiaid - Calendr Tseina - Calendr y Coptiaid - Calendr Dangi - Digidau Devanāgarīg - Trefn Geiriadur - Trefn Rhagosodedig Unicode - Rheolau trefnu Ewropeaidd - Rhifolion Ethiopig - Calendr Ethiopia - Calendr Amete Alem Ethiopia - Digidau Lled Llawn - Trefn Symledig Tsieina - GB2312 - Rhifolion Georgaidd - Calendr Gregori - Rhifolion Groegaidd - Rhifolion Groegaidd mewn Llythrennau Bychain - Digidau Gujarataidd - Digidau Gwrmwcaidd - Rhifolion Degol Tsieineaidd - Rhifolion Tsieineaidd Symledig - Rhifolion Ariannol Tsieineaidd Symledig - Rhifolion Tsieineaidd Traddodiadol - Rhifolion Ariannol Tsieineaidd Traddodiadol - Rhifolion Hebreig - Calendr yr Hebraed - Calendr Cenedlaethol India - Calendr Islam - Calendr Islam (Umm al-Qura) - Calendr ISO-8601 - Calendr Japan - Rhifolion Japaneaidd - Rhifolion Ariannol Japaneaidd - Digidau Chmeraidd - Digidau Canaraidd - Digidau Laoaidd - Digidau Gorllewinol - Digidau Malayalamaidd - Digidau Mongolia - Digidau Myanmar - Digidau Orïaidd - Calendr Persia - Trefn Llyfr Ffôn - Trefn Pinyin - Trefn Diwygiedig - Rhifolion Rhufeinig - Rhifolion Rhufeinig mewn Llythrennau Bychain - Chwilio at Ddibenion Cyffredinol - Trefn Safonol - Rhifolion Tamilaidd Traddodiadol - Digidau Tamilaidd - Digidau Telugu - Digidau Thai - Digidau Tibetaidd - Trefn Traddodiadol - Trefn Zhuyin - - - Metrig - DU - UDA - - - Iaith: {0} - Sgript: {0} - Rhanbarth: {0} - - - - [a á à â ä b c {ch} d {dd} e é è ê ë f {ff} g {ng} h i í ì î ï j l {ll} m n o ó ò ô ö p {ph} r {rh} s t {th} u ú ù û ü w ẃ ẁ ŵ ẅ y ý ỳ ŷ ÿ] - [ă å ã ā æ ç ĕ ē ĭ ī k ñ ŏ ø ō œ q ŭ ū v x z] - [A B C {CH} D {DD} E F {FF} G {NG} H I J K L {LL} M N O P {PH} Q R {RH} S T {TH} U V W X Y Z] - [\- ‐ – — , ; \: ! ? . … ' ‘ ’ " “ ” ( ) \[ \] § @ * / \& # † ‡ ′ ″] - {0}… - …{0} - {0}…{1} - {0} … - … {0} - {0} … {1} - ? - - - - - - - - - - - - - - EEEE, d MMMM y G - - - - - d MMMM y G - - - - - d MMM y G - - - - - dd/MM/y GGGGG - - - - - - - {1} {0} - - - - - {1} {0} - - - - - {1} {0} - - - - - {1} {0} - - - - d - E, d - y G - MMM y G - d MMM y G - E, d MMM y G - h a - HH - h:mm a - HH:mm - h:mm:ss a - HH:mm:ss - L - d/M - E, d/M - LLL - d MMM - E, d MMM - mm:ss - y - y G - M/y G - d/M/y G - E, d/M/y G - MMM y G - d MMM y G - E, d MMM y G - Q y G - QQQ y G - QQQQ y G - - - {0} – {1} - - d – d - - - h a – h a - h–h a - - - HH–HH - - - h:mm a – h:mm a - h:mm–h:mm a - h:mm–h:mm a - - - HH:mm–HH:mm - HH:mm–HH:mm - - - h:mm a – h:mm a v - h:mm–h:mm a v - h:mm–h:mm a v - - - HH:mm–HH:mm v - HH:mm–HH:mm v - - - h a – h a v - h–h a v - - - HH–HH v - - - M – M - - - d/M – d/M - d/M – d/M - - - E, d/M – E, d/M - E, d/M – E, d/M - - - MMM–MMM - - - d–d MMM - d MMM – d MMM - - - E, d MMM – E, d MMM - E, d MMM – E, d MMM - - - LLLL–LLLL - - - y–y G - - - M/y – M/y GGGGG - M/y – M/y GGGGG - - - d/M/y – d/M/y GGGGG - d/M/y – d/M/y GGGGG - d/M/y – d/M/y GGGGG - - - E, d/M/y – E, d/M/y GGGGG - E, d/M/y – E, d/M/y GGGGG - E, d/M/y – E, d/M/y GGGGG - - - MMM – MMM y G - MMM y – MMM y G - - - d–d MMM y G - d MMM – d MMM y G - d MMM y – d MMM y G - - - E, d MMM – E, d MMM y G - E, d MMM – E, d MMM y G - E, d MMM, y – E, d MMM y G - - - MMMM–MMMM y G - MMMM y – MMMM y G - - - - - - - - - Ion - Chwef - Mawrth - Ebrill - Mai - Meh - Gorff - Awst - Medi - Hyd - Tach - Rhag - - - I - Ch - M - E - M - M - G - A - M - H - T - Rh - - - Ionawr - Chwefror - Mawrth - Ebrill - Mai - Mehefin - Gorffennaf - Awst - Medi - Hydref - Tachwedd - Rhagfyr - - - - - Ion - Chw - Maw - Ebr - Mai - Meh - Gor - Awst - Medi - Hyd - Tach - Rhag - - - I - Ch - M - E - M - M - G - A - M - H - T - Rh - - - Ionawr - Chwefror - Mawrth - Ebrill - Mai - Mehefin - Gorffennaf - Awst - Medi - Hydref - Tachwedd - Rhagfyr - - - - - - - Sul - Llun - Maw - Mer - Iau - Gwen - Sad - - - S - Ll - M - M - I - G - S - - - Su - Ll - Ma - Me - Ia - Gw - Sa - - - Dydd Sul - Dydd Llun - Dydd Mawrth - Dydd Mercher - Dydd Iau - Dydd Gwener - Dydd Sadwrn - - - - - Sul - Llun - Maw - Mer - Iau - Gwe - Sad - - - S - Ll - M - M - I - G - S - - - Su - Ll - Ma - Me - Ia - Gw - Sa - - - Dydd Sul - Dydd Llun - Dydd Mawrth - Dydd Mercher - Dydd Iau - Dydd Gwener - Dydd Sadwrn - - - - - - - Ch1 - Ch2 - Ch3 - Ch4 - - - 1 - 2 - 3 - 4 - - - Chwarter 1af - 2il chwarter - 3ydd chwarter - 4ydd chwarter - - - - - Ch1 - Ch2 - Ch3 - Ch4 - - - 1 - 2 - 3 - 4 - - - chwarter 1af - 2il chwarter - 3ydd chwarter - 4ydd chwarter - - - - - - - AM - PM - - - AM - hanner dydd - PM - - - - - - Cyn Crist - Oed Crist - - - CC - OC - - - C - O - - - - - - EEEE, d MMMM y - - - - - d MMMM y - - - - - d MMM y - - - - - dd/MM/yy - - - - - - - HH:mm:ss zzzz - - - - - HH:mm:ss z - - - - - HH:mm:ss - - - - - HH:mm - - - - - - - {1} 'am' {0} - - - - - {1} 'am' {0} - - - - - {1} {0} - - - - - {1} {0} - - - - d - E, d - E, h.mm a - E, HH:mm - E, h.mm.ss a - E, HH:mm:ss - y G - MMM y G - d MMM y G - E, d MMM y G - h a - HH - h.mm a - HH:mm - h:mm:ss a - HH:mm:ss - L - d/M - E, d/M - LLL - d MMM - E, d MMM - mm:ss - y - M/y - d/M/y - E, d/M/y - MMM y - d MMM y - E, d MMM y - Q y - QQQ y - QQQQ y - - - {0} {1} - - - {0} – {1} - - d–d - - - h a – h a - h–h a - - - HH–HH - - - h:mm a – h:mm a - h:mm h:mm a - h:mm – h:mm a - - - HH:mm–HH:mm - HH:mm–HH:mm - - - h:mm a – h:mm a v - h:mm – h:mm a v - h:mm–h:mm a v - - - HH:mm–HH:mm v - HH:mm–HH:mm v - - - h a – h a v - h–h a v - - - HH–HH v - - - M–M - - - d/M – d/M - d/M – d/M - - - E, d/M – E, d/M - E, d/M – E, d/M - - - MMM–MMM - - - d–d MMM - d MMM – d MMM - - - E, d MMM – E, d MMM - E, d MMM – E, d MMM - - - LLLL–LLLL - - - y–y - - - M/y – M/y - M/y – M/y - - - d/M/y – d/M/y - d/M/y – d/M/y - d/M/y – d/M/y - - - E, d/M/y – E, d/M/y - E, d/M/y – E, d/M/y - E, d/M/y – E, d/M/y - - - MMM – MMM y - MMM y – MMM y - - - d–d MMM y - d MMM – d MMM y - d MMM, y – d MMM y - - - E, d MMM – E, d MMM y - E, d MMM – E, d MMM y - E, d MMM, y – E, d MMM y - - - MMMM–MMMM y - MMMM y – MMMM y - - - - - - - - Oes - - - Blwyddyn - llynedd - eleni - blwyddyn nesaf - - Ymhen {0} mlynedd - Ymhen blwyddyn - Ymhen {0} flynedd - Ymhen {0} blynedd - Ymhen {0} blynedd - Ymhen {0} mlynedd - - - {0} o flynyddoedd yn ôl - blwyddyn yn ôl - {0} flynedd yn ôl - {0} blynedd yn ôl - {0} blynedd yn ôl - {0} o flynyddoedd yn ôl - - - - Mis - mis diwethaf - y mis hwn - mis nesaf - - Ymhen {0} mis - Ymhen mis - Ymhen deufis - Ymhen {0} mis - Ymhen {0} mis - Ymhen {0} mis - - - {0} mis yn ôl - {0} mis yn ôl - {0} fis yn ôl - {0} mis yn ôl - {0} mis yn ôl - {0} mis yn ôl - - - - - {0} mis yn ôl - {0} mis yn ôl - {0} mis yn ôl - {0} mis yn ôl - {0} mis yn ôl - {0} mis yn ôl - - - - - {0} mis yn ôl - {0} mis yn ôl - {0} mis yn ôl - {0} mis yn ôl - {0} mis yn ôl - {0} mis yn ôl - - - - Wythnos - wythnos ddiwethaf - yr wythnos hon - wythnos nesaf - - Ymhen {0} wythnos - Ymhen wythnos - Ymhen pythefnos - Ymhen {0} wythnos - Ymhen {0} wythnos - Ymhen {0} wythnos - - - {0} wythnos yn ôl - {0} wythnos yn ôl - {0} wythnos yn ôl - {0} wythnos yn ôl - {0} wythnos yn ôl - {0} wythnos yn ôl - - - - Dydd - echdoe - ddoe - heddiw - yfory - drennydd - - Ymhen {0} diwrnod - Ymhen diwrnod - Ymhen deuddydd - Ymhen tridiau - Ymhen {0} diwrnod - Ymhen {0} diwrnod - - - {0} diwrnod yn ôl - {0} diwrnod yn ôl - {0} ddiwrnod yn ôl - {0} diwrnod yn ôl - {0} diwrnod yn ôl - {0} diwrnod yn ôl - - - - - {0} diwrnod yn ôl - {0} diwrnod yn ôl - {0} diwrnod yn ôl - {0} diwrnod yn ôl - {0} diwrnod yn ôl - {0} diwrnod yn ôl - - - - Dydd o’r Wythnos - - - dydd Sul diwethaf - dydd Sul yma - dydd Sul nesaf - - - dydd Llun diwethaf - dydd Llun yma - dydd Llun nesaf - - - dydd Mawrth diwethaf - dydd Mawrth yma - dydd Mawrth nesaf - - - dydd Mercher diwethaf - dydd Mercher yma - dydd Mercher nesaf - - - dydd Iau diwethaf - dydd Iau yma - dydd Iau nesaf - - - dydd Gwener diwethaf - dydd Gwener yma - dydd Gwener nesaf - - - dydd Sadwrn diwethaf - dydd Sadwrn yma - dydd Sadwrn nesaf - - - AM/PM - - - Awr - - Ymhen {0} awr - Ymhen {0} awr - Ymhen {0} awr - Ymhen {0} awr - Ymhen {0} awr - Ymhen {0} awr - - - {0} awr yn ôl - awr yn ôl - {0} awr yn ôl - {0} awr yn ôl - {0} awr yn ôl - {0} awr yn ôl - - - - Munud - - Ymhen {0} munud - Ymhen munud - Ymhen {0} funud - Ymhen {0} munud - Ymhen {0} munud - Ymhen {0} munud - - - {0} munud yn ôl - {0} munud yn ôl - {0} funud yn ôl - {0} munud yn ôl - {0} munud yn ôl - {0} munud yn ôl - - - - Eiliad - nawr - - Ymhen {0} eiliad - Ymhen eiliad - Ymhen {0} eiliad - Ymhen {0} eiliad - Ymhen {0} eiliad - Ymhen {0} eiliad - - - {0} eiliad yn ôl - eiliad yn ôl - {0} eiliad yn ôl - {0} eiliad yn ôl - {0} eiliad yn ôl - {0} eiliad yn ôl - - - - Cylchfa Amser - - - - +HH:mm;-HH:mm - GMT{0} - GMT - Amser {0} - Amser Haf {0} - Amser Safonol {0} - {1} ({0}) - - Dinas Anhysbys - - - Dubai - - - Tiranë - - - Yerevan - - - Dumont d’Urville - - - Tucumán - - - Córdoba - - - Wien - - - Baku - - - Sarajevo - - - Dacca - - - Brwsel - - - Sofiya - - - Bahrain - - - St. Barthélemy - - - Eirunepé - - - Cuiabá - - - Santarém - - - Belém - - - São Paulo - - - Maceió - - - Thimbu - - - Minsk - - - Atikokan - - - St. John’s - - - Zürich - - - Ynys y Pasg - - - Ürümqi - - - Bogotá - - - La Habana - - - Cabo Verde - - - Curaçao - - - Ynys y Nadolig - - - Nicosia - - - Praha - - - Büsingen - - - Berlin - - - København - - - Alger - - - Tallinn - - - El Aaiún - - - Asmera - - - yr Ynysoedd Dedwydd - - - Ceuta - - - Madrid - - - Helsinki - - - Chuuk - - - Pohnpei - - - Føroyar - - - Paris - - - - Amser Haf Prydain - - Llundain - - - Tiflis - - - Ynys y Garn - - - Gibraltar - - - Nuuk - - - Ittoqqortoormiit - - - Athen - - - De Georgia - - - Zagreb - - - Budapest - - - - Amser Haf Iwerddon - - Dulyn - - - Jerwsalem - - - Ynys Manaw - - - Calcutta - - - Baghdad - - - Reykjavík - - - Rhufain - - - Jersey - - - Amman - - - Tōkyō - - - Saint Kitts - - - P’yŏngyang - - - Sǒul - - - Kuwait - - - Aktau - - - Aqtöbe - - - Beirut - - - Saint Lucia - - - Riga - - - Monaco - - - Chişinău - - - Skopje - - - Yangon - - - Ulan Bator - - - Choybalsan - - - Malta - - - Mazatlán - - - Bae Banderas - - - Dinas México - - - Cancún - - - Nouméa - - - Amsterdam - - - Oslo - - - Kathmandu - - - Muscat - - - Panamá - - - Marquises - - - Warszawa - - - Gasa - - - Hebron - - - Lisboa - - - Asunción - - - Qatar - - - Réunion - - - Bucureşti - - - Beograd - - - Kaliningrad - - - Simferopol - - - Moskva - - - Volgograd - - - Samara - - - Yekaterinburg - - - Omsk - - - Novosibirsk - - - Krasnoyarsk - - - Irkutsk - - - Yakutsk - - - Vladivostok - - - Sachalin - - - Magadan - - - Kamchatka - - - Anadyr - - - Riyadh - - - Mahé - - - Stockholm - - - Saint Helena - - - Longyearbyen - - - Bratislava - - - São Tomé - - - Lower Prince’s Quarter/Beneden Prinsen Kwartier - - - Damascus - - - N’Djamena - - - Kerguélen - - - Lomé - - - Ashkabad - - - Taibei - - - Uzhgorod - - - Kiev - - - Zaporizhzhya - - - Beulah, Gogledd Dakota - - - New Salem, Gogledd Dakota - - - Center, Gogledd Dakota - - - Vincennes, Indiana - - - Petersburg, Indiana - - - Dinas Tell, Indiana - - - Knox, Indiana - - - Winamac, Indiana - - - Marengo, Indiana - - - Vevay, Indiana - - - Monticello, Kentucky - - - Efrog Newydd - - - Samarcand - - - y Fatican - - - Saint Vincent - - - Saint Thomas - - - Dinas Hô Chi Minh - - - Éfaté - - - Aden - - - - Amser Afghanistan - - - - - Amser Canolbarth Affrica - - - - - Amser Dwyrain Affrica - - - - - Amser De Affrica - - - - - Amser Gorllewin Affrica - Amser Safonol Gorllewin Affrica - Amser Haf Gorllewin Affrica - - - - - Amser Alaska - Amser Safonol Alaska - Amser Haf Alaska - - - - - Amser Amazonas - Amser Safonol Amazonas - Amser Haf Amazonas - - - - - Amser Canolbarth Gogledd America - Amser Safonol Canolbarth Gogledd America - Amser Haf Canolbarth Gogledd America - - - - - Amser Dwyrain Gogledd America - Amser Safonol Dwyrain Gogledd America - Amser Haf Dwyrain Gogledd America - - - - - Amser Mynyddoedd Gogledd America - Amser Safonol Mynyddoedd Gogledd America - Amser Haf Mynyddoedd Gogledd America - - - - - Amser Cefnfor Tawel Gogledd America - Amser Safonol Cefnfor Tawel Gogledd America - Amser Haf Cefnfor Tawel Gogledd America - - - - - Amser Arabaidd - Amser Safonol Arabaidd - Amser Haf Arabaidd - - - - - Amser yr Ariannin - Amser Safonol Ariannin - Amser Haf Ariannin - - - - - Amser Gorllewin Ariannin - Amser Safonol Gorllewin Ariannin - Amser Haf Gorllewin Ariannin - - - - - Amser Armenia - Amser Safonol Armenia - Amser Haf Armenia - - - - - Amser Cefnfor yr Iwerydd - Amser Safonol Cefnfor yr Iwerydd - Amser Haf Cefnfor yr Iwerydd - - - - - Amser Canolbarth Awstralia - Amser Safonol Canolbarth Awstralia - Amser Haf Canolbarth Awstralia - - - - - Amser Canolbarth Gorllewin Awstralia - Amser Safonol Canolbarth Gorllewin Awstralia - Amser Haf Canolbarth Gorllewin Awstralia - - - - - Amser Dwyrain Awstralia - Amser Safonol Dwyrain Awstralia - Amser Haf Dwyrain Awstralia - - - - - Amser Gorllewin Awstralia - Amser Safonol Gorllewin Awstralia - Amser Haf Gorllewin Awstralia - - - - - Amser Azerbaijan - Amser Safonol Azerbaijan - Amser Haf Azerbaijan - - - - - Amser Azores - Amser Safonol Azores - Amser Haf Azores - - - - - Amser Bangladesh - Amser Safonol Bangladesh - Amser Haf Bangladesh - - - - - Amser Bhutan - - - - - Amser Bolivia - - - - - Amser Brasília - Amser Safonol Brasília - Amser Haf Brasília - - - - - Amser Brunei Darussalam - - - - - Amser Cabo Verde - Amser Safonol Cabo Verde - Amser Haf Cabo Verde - - - - - Amser Chamorro - - - - - Amser Chatham - Amser Safonol Chatham - Amser Haf Chatham - - - - - Amser Chile - Amser Safonol Chile - Amser Haf Chile - - - - - Amser Tsieina - Amser Safonol Tsieina - Amser Haf Tsieina - - - - - Amser Choibalsan - Amser Safonol Choibalsan - Amser Haf Choibalsan - - - - - Amser Ynys Christmas - - - - - Amser Ynysoedd Cocos - - - - - Amser Colombia - Amser Safonol Colombia - Amser Haf Colombia - - - - - Amser Ynysoedd Cook - Amser Safonol Ynysoedd Cook - Amser Hanner Haf Ynysoedd Cook - - - - - Amser Cuba - Amser Safonol Cuba - Amser Haf Cuba - - - - - Amser Davis - - - - - Amser Dumont-d’Urville - - - - - Amser Dwyrain Timor - - - - - Amser Ynys y Pasg - Amser Safonol Ynys y Pasg - Amser Haf Ynys y Pasg - - - - - Amser Ecuador - - - - - Amser Canolbarth Ewrop - Amser Safonol Canolbarth Ewrop - Amser Haf Canolbarth Ewrop - - - CET - CET - CEST - - - - - Amser Dwyrain Ewrop - Amser Safonol Dwyrain Ewrop - Amser Haf Dwyrain Ewrop - - - EET - EET - EEST - - - - - Amser Gorllewin Ewrop - Amser Safonol Gorllewin Ewrop - Amser Haf Gorllewin Ewrop - - - WET - WET - WEST - - - - - Amser Ynysoedd Falklands/Malvinas - Amser Safonol Ynysoedd Falklands/Malvinas - Amser Haf Ynysoedd Falklands/Malvinas - - - - - Amser Fiji - Amser Safonol Fiji - Amser Haf Fiji - - - - - Amser Guyane Ffrengig - - - - - Amser Deheuol ac Antarctig Frengig - - - - - Amser Galapagos - - - - - Amser Gambier - - - - - Amser Georgia - Amser Safonol Georgia - Amser Haf Georgia - - - - - Amser Ynysoedd Gilbert - - - - - Amser Safonol Greenwich - - - GMT - - - - - Amser Dwyrain yr Ynys Las - Amser Safonol Dwyrain yr Ynys Las - Amser Haf Dwyrain yr Ynys Las - - - - - Amser Gorllewin yr Ynys Las - Amser Safonol Gorllewin yr Ynys Las - Amser Haf Gorllewin yr Ynys Las - - - - - Amser y Gwlff - - - - - Amser Guyana - - - - - Amser Hawaii-Aleutian - Amser Safonol Hawaii-Aleutian - Amser Haf Hawaii-Aleutian - - - - - Amser Hong Kong - Amser Safonol Hong Kong - Amser Haf Hong Kong - - - - - Amser Hovd - Amser Safonol Hovd - Amser Haf Hovd - - - - - Amser India - - - - - Amser Cefnfor India - - - - - Amser Indo-Tsieina - - - - - Amser Canolbarth Indonesia - - - - - Amser Dwyrain Indonesia - - - - - Amser Gorllewin Indonesia - - - - - Amser Iran - Amser Safonol Iran - Amser Haf Iran - - - - - Amser Irkutsk - Amser Safonol Irkutsk - Amser Haf Irkutsk - - - - - Amser Israel - Amser Safonol Israel - Amser Haf Israel - - - - - Amser Japan - Amser Safonol Japan - Amser Haf Japan - - - - - Amser Dwyrain Kazakstan - - - - - Amser Gorllewin Kazakstan - - - - - Amser Korea - Amser Safonol Corea - Amser Haf Korea - - - - - Amser Kosrae - - - - - Amser Krasnoyarsk - Amser Safonol Krasnoyarsk - Amser Haf Krasnoyarsk - - - - - Amser Kyrgyzstan - - - - - Amser Ynysoedd Line - - - - - Amser yr Arglwydd Howe - Amser Safonol yr Arglwydd Howe - Amser Haf yr Arglwydd Howe - - - - - Amser Ynys Macquarie - - - - - Amser Magadan - Amser Safonol Magadan - Amser Haf Magadan - - - - - Amser Malaysia - - - - - Amser Y Maldives - - - - - Amser Marquises - - - - - Amser Ynysoedd Marshall - - - - - Amser Mauritius - Amser Safonol Mauritius - Amser Haf Mauritius - - - - - Amser Mawson - - - - - Amser Ulan Bator - Amser Safonol Ulan Bator - Amser Haf Ulan Bator - - - - - Amser Moskfa - Amser Safonol Moskfa - Amser Haf Moskfa - - - - - Amser Myanmar - - - - - Amser Nauru - - - - - Amser Nepal - - - - - Amser Caledonia Newydd - Amser Safonol Caledonia Newydd - Amser Haf Caledonia Newydd - - - - - Amser Seland Newydd - Amser Safonol Seland Newydd - Amser Haf Seland Newydd - - - - - Amser Newfoundland - Amser Safonol Newfoundland - Amser Haf Newfoundland - - - - - Amser Niue - - - - - Amser Ynys Norfolk - - - - - Amser Fernando de Noronha - Amser Safonol Fernando de Noronha - Amser Haf Fernando de Noronha - - - - - Amser Novosibirsk - Amser Safonol Novosibirsk - Amser Haf Novosibirsk - - - - - Amser Omsk - Amser Safonol Omsk - Amser Haf Omsk - - - - - Amser Pacistan - Amser Safonol Pakistan - Amser Haf Pakistan - - - - - Amser Palau - - - - - Amser Papua Guinea Newydd - - - - - Amser Paraguay - Amser Safonol Paraguay - Amser Haf Paraguay - - - - - Amser Periw - Amser Safonol Periw - Amser Haf Periw - - - - - Amser Pilipinas - Amser Safonol Pilipinas - Amser Haf Pilipinas - - - - - Amser Ynysoedd Phoenix - - - - - Amser Saint-Pierre-et-Miquelon - Amser Safonol Saint-Pierre-et-Miquelon - Amser Haf Saint-Pierre-et-Miquelon - - - - - Amser Pitcairn - - - - - Amser Pohnpei - - - - - Amser Réunion - - - - - Amser Rothera - - - - - Amser Sakhalin - Amser Safonol Sakhalin - Amser Haf Sakhalin - - - - - Amser Samoa - Amser Safonol Samoa - Amser Haf Samoa - - - - - Amser Seychelles - - - - - Amser Singapore - - - - - Amser Ynysoedd Solomon - - - - - Amser De Georgia - - - - - Amser Suriname - - - - - Amser Syowa - - - - - Amser Tahiti - - - - - Amser Taibei - Amser Safonol Taibei - Amser Haf Taibei - - - - - Amser Tajikistan - - - - - Amser Tokelau - - - - - Amser Tonga - Amser Safonol Tonga - Amser Haf Tonga - - - - - Amser Chuuk - - - - - Amser Turkmenistan - Amser Safonol Turkmenistan - Amser Haf Turkmenistan - - - - - Amser Tuvalu - - - - - Amser Uruguay - Amser Safonol Uruguay - Amser Haf Uruguay - - - - - Amser Uzbekistan - Amser Safonol Uzbekistan - Amser Haf Uzbekistan - - - - - Amser Vanuatu - Amser Safonol Vanuatu - Amser Haf Vanuatu - - - - - Amser Venezuela - - - - - Amser Vladivostok - Amser Safonol Vladivostok - Amser Haf Vladivostok - - - - - Amser Volgograd - Amser Safonol Volgograd - Amser Haf Volgograd - - - - - Amser Vostok - - - - - Amser Ynys Wake - - - - - Amser Wallis a Futuna - - - - - Amser Yakutsk - Amser Safonol Yakutsk - Amser Haf Yakutsk - - - - - Amser Yekaterinburg - Amser Safonol Yekaterinburg - Amser Haf Yekaterinburg - - - - - - latn - - latn - - - . - , - ; - % - + - - - E - x - - - NaN - - - - - #,##0.### - - - - - 0 mil - 0 fil - 0 fil - 0 mil - 0 mil - 0 mil - 00 mil - 00 mil - 00 mil - 00 mil - 00 mil - 00 mil - 000 mil - 000 mil - 000 mil - 000 mil - 000 mil - 000 mil - 0 miliwn - 0 filiwn - 0 filiwn - 0 miliwn - 0 miliwn - 0 miliwn - 00 miliwn - 00 miliwn - 00 miliwn - 00 miliwn - 00 miliwn - 00 miliwn - 000 miliwn - 000 miliwn - 000 miliwn - 000 miliwn - 000 miliwn - 000 miliwn - 0 biliwn - 0 biliwn - 0 biliwn - 0 biliwn - 0 biliwn - 0 biliwn - 00 biliwn - 00 biliwn - 00 biliwn - 00 biliwn - 00 biliwn - 00 biliwn - 000 biliwn - 000 biliwn - 000 biliwn - 000 biliwn - 000 biliwn - 000 biliwn - 0 triliwn - 0 triliwn - 0 driliwn - 0 thriliwn - 0 thriliwn - 0 triliwn - 00 triliwn - 00 triliwn - 00 triliwn - 00 triliwn - 00 triliwn - 00 triliwn - 000 triliwn - 000 triliwn - 000 triliwn - 000 triliwn - 000 triliwn - 000 triliwn - - - - - 0K - 0K - 0K - 0K - 0K - 0K - 00K - 00K - 00K - 00K - 00K - 00K - 000K - 000K - 000K - 000K - 000K - 000K - 0M - 0M - 0M - 0M - 0M - 0M - 00M - 00M - 00M - 00M - 00M - 00M - 000M - 000M - 000M - 000M - 000M - 000M - 0B - 0B - 0B - 0B - 0B - 0B - 00B - 00B - 00B - 00B - 00B - 00B - 000B - 000B - 000B - 000B - 000B - 000B - 0T - 0T - 0T - 0T - 0T - 0T - 00T - 00T - 00T - 00T - 00T - 00T - 000T - 000T - 000T - 000T - 000T - 000T - - - - - - - #E0 - - - - - - - #,##0% - - - - - - - ¤#,##0.00 - - - ¤#,##0.00;(¤#,##0.00) - - - {0} {1} - {0} {1} - {0} {1} - {0} {1} - {0} {1} - {0} {1} - - - - Dirham Yr Emiradau Arabaidd Unedig - Dirham Yr Emiradau Arabaidd Unedig - Dirham Yr Emiradau Arabaidd Unedig - Dirham Yr Emiradau Arabaidd Unedig - Dirham Yr Emiradau Arabaidd Unedig - Dirham Yr Emiradau Arabaidd Unedig - Dirham Yr Emiradau Arabaidd Unedig - - - Afghani Afghanistan - Afghani Afghanistan - Afghani Afghanistan - Afghani Afghanistan - Afghani Afghanistan - Afghani Afghanistan - Afghani Afghanistan - - - Lek Albania - Lek Albania - Lek Albania - Lek Albania - Lek Albania - Lek Albania - Lek Albania - - - Dram Armenia - Dram Armenia - Dram Armenia - Dram Armenia - Dram Armenia - Dram Armenia - Dram Armenia - - - Guilder Antilles yr Iseldiroedd - Guilder Antilles yr Iseldiroedd - Guilder Antilles yr Iseldiroedd - Guilder Antilles yr Iseldiroedd - Guilder Antilles yr Iseldiroedd - Guilder Antilles yr Iseldiroedd - Guilder Antilles yr Iseldiroedd - - - Kwanza Angola - Kwanza Angola - Kwanza Angola - Kwanza Angola - Kwanza Angola - Kwanza Angola - Kwanza Angola - - - Peso yr Ariannin - Peso yr Ariannin - Peso yr Ariannin - Peso yr Ariannin - Peso yr Ariannin - Peso yr Ariannin - Peso yr Ariannin - - - Doler Awstralia - Doler Awstralia - Doler Awstralia - Doler Awstralia - Doler Awstralia - Doler Awstralia - Doler Awstralia - A$ - - - Fflorin Aruba - Fflorin Aruba - Fflorin Aruba - Fflorin Aruba - Fflorin Aruba - Fflorin Aruba - Fflorin Aruba - - - Manat Azerbaijan - Manat Azerbaijan - Manat Azerbaijan - Manat Azerbaijan - Manat Azerbaijan - Manat Azerbaijan - Manat Azerbaijan - - - Marc Trosadwy Bosnia a Hercegovina - Marc Trosadwy Bosnia a Hercegovina - Marc Trosadwy Bosnia a Hercegovina - Marc Trosadwy Bosnia a Hercegovina - Marc Trosadwy Bosnia a Hercegovina - Marc Trosadwy Bosnia a Hercegovina - Marc Trosadwy Bosnia a Hercegovina - - - Doler Barbados - Doler Barbados - Doler Barbados - Doler Barbados - Doler Barbados - Doler Barbados - Doler Barbados - - - Taka Bangladesh - Taka Bangladesh - Taka Bangladesh - Taka Bangladesh - Taka Bangladesh - Taka Bangladesh - Taka Bangladesh - - - Lev Bwlgaria - Lev Bwlgaria - Lev Bwlgaria - Lev Bwlgaria - Lev Bwlgaria - Lev Bwlgaria - Lev Bwlgaria - - - Dinar Bahrain - Dinar Bahrain - Dinar Bahrain - Dinar Bahrain - Dinar Bahrain - Dinar Bahrain - Dinar Bahrain - - - Ffranc Burundi - Ffranc Burundi - Ffranc Burundi - Ffranc Burundi - Ffranc Burundi - Ffranc Burundi - Ffranc Burundi - - - Doler Bermuda - Doler Bermuda - Doler Bermuda - Doler Bermuda - Doler Bermuda - Doler Bermuda - Doler Bermuda - BMD - - - Doler Brunei - Doler Brunei - Doler Brunei - Doler Brunei - Doler Brunei - Doler Brunei - Doler Brunei - - - Boliviano Bolifia - Boliviano Bolifia - Boliviano Bolifia - Boliviano Bolifia - Boliviano Bolifia - Boliviano Bolifia - Boliviano Bolifia - - - Real Brasil - Real Brasil - Real Brasil - Real Brasil - Real Brasil - Real Brasil - Real Brasil - R$ - - - Doler y Bahamas - Doler y Bahamas - Doler y Bahamas - Doler y Bahamas - Doler y Bahamas - Doler y Bahamas - Doler y Bahamas - - - Ngultrum Bhutan - Ngultrum Bhutan - Ngultrum Bhutan - Ngultrum Bhutan - Ngultrum Bhutan - Ngultrum Bhutan - Ngultrum Bhutan - - - Pula Botswana - Pula Botswana - Pula Botswana - Pula Botswana - Pula Botswana - Pula Botswana - Pula Botswana - - - Rwbl Belarws - Rwbl Belarws - Rwbl Belarws - Rwbl Belarws - Rwbl Belarws - Rwbl Belarws - Rwbl Belarws - - - Doler Belize - Doler Belize - Doler Belize - Doler Belize - Doler Belize - Doler Belize - Doler Belize - BZD - - - Doler Canada - Doler Canada - Doler Canada - Doler Canada - Doler Canada - Doler Canada - Doler Canada - CA$ - - - Ffranc Congo - Ffranc Congo - Ffranc Congo - Ffranc Congo - Ffranc Congo - Ffranc Congo - Ffranc Congo - - - Ffranc y Swistir - Ffranc y Swistir - Ffranc y Swistir - Ffranc y Swistir - Ffranc y Swistir - Ffranc y Swistir - Ffranc y Swistir - - - Peso Chile - Peso Chile - Peso Chile - Peso Chile - Peso Chile - Peso Chile - Peso Chile - - - Yuan Tsieina - Yuan Tsieina - Yuan China - Yuan China - Yuan China - Yuan China - Yuan Tsieina - CN¥ - - - Peso Colombia - Peso Colombia - Peso Colombia - Peso Colombia - Peso Colombia - Peso Colombia - Peso Colombia - - - Colón Costa Rica - Colón Costa Rica - Colón Costa Rica - Colón Costa Rica - Colón Costa Rica - Colón Costa Rica - Colón Costa Rica - CRC - - - Peso Trosadwy Cuba - Peso Trosadwy Cuba - Peso Trosadwy Cuba - Peso Trosadwy Cuba - Peso Trosadwy Cuba - Peso Trosadwy Cuba - Peso Trosadwy Cuba - - - Peso Cuba - Peso Cuba - Peso Cuba - Peso Cuba - Peso Cuba - Peso Cuba - Peso Cuba - - - Esgwdo Cabo Verde - Esgwdo Cabo Verde - Esgwdo Cabo Verde - Esgwdo Cabo Verde - Esgwdo Cabo Verde - Esgwdo Cabo Verde - Esgwdo Cabo Verde - - - Koruna Tsiec - Koruna Tsiec - Koruna Tsiec - Koruna Tsiec - Koruna Tsiec - Koruna Tsiec - Koruna Tsiec - - - Ffranc Djibouti - Ffranc Djibouti - Ffranc Djibouti - Ffranc Djibouti - Ffranc Djibouti - Ffranc Djibouti - Ffranc Djibouti - - - Krone Denmarc - Krone Denmarc - Krone Denmarc - Krone Denmarc - Krone Denmarc - Krone Denmarc - Krone Denmarc - - - Peso Gweriniaeth Dominica - Peso Gweriniaeth Dominica - Peso Gweriniaeth Dominica - Peso Gweriniaeth Dominica - Peso Gweriniaeth Dominica - Peso Gweriniaeth Dominica - Peso Gweriniaeth Dominica - - - Dinar Algeria - Dinar Algeria - Dinar Algeria - Dinar Algeria - Dinar Algeria - Dinar Algeria - Dinar Algeria - - - Punt Yr Aifft - Punt Yr Aifft - Punt Yr Aifft - Punt Yr Aifft - Punt Yr Aifft - Punt Yr Aifft - Punt Yr Aifft - - - Nakfa Eritrea - Nakfa Eritrea - Nakfa Eritrea - Nakfa Eritrea - Nakfa Eritrea - Nakfa Eritrea - Nakfa Eritrea - - - Birr Ethiopia - Birr Ethiopia - Birr Ethiopia - Birr Ethiopia - Birr Ethiopia - Birr Ethiopia - Birr Ethiopia - - - Ewro - Ewro - Ewro - Ewro - Ewro - Ewro - Ewro - - - - Doler Ffiji - Doler Ffiji - Doler Ffiji - Doler Ffiji - Doler Ffiji - Doler Ffiji - Doler Ffiji - - - Punt Ynysoedd Falkland/Malvinas - Punt Ynysoedd Falkland/Malvinas - Punt Ynysoedd Falkland/Malvinas - Punt Ynysoedd Falkland/Malvinas - Punt Ynysoedd Falkland/Malvinas - Punt Ynysoedd Falkland/Malvinas - Punt Ynysoedd Falkland/Malvinas - - - Punt Prydain - Punt Prydain - Punt Prydain - Punt Prydain - Punt Prydain - Punt Prydain - Punt Prydain - £ - - - Lari Georgia - Lari Georgia - Lari Georgia - Lari Georgia - Lari Georgia - Lari Georgia - Lari Georgia - - - Cedi Ghana - Cedi Ghana - Cedi Ghana - Cedi Ghana - Cedi Ghana - Cedi Ghana - Cedi Ghana - - - Punt Gibraltar - Punt Gibraltar - Punt Gibraltar - Punt Gibraltar - Punt Gibraltar - Punt Gibraltar - Punt Gibraltar - - - Dalasi Gambia - Dalasi Gambia - Dalasi Gambia - Dalasi Gambia - Dalasi Gambia - Dalasi Gambia - Dalasi Gambia - - - Ffranc Guinée - Ffranc Guinée - Ffranc Guinée - Ffranc Guinée - Ffranc Guinée - Ffranc Guinée - Ffranc Guinée - - - Quetzal Guatemala - Quetzal Guatemala - Quetzal Guatemala - Quetzal Guatemala - Quetzal Guatemala - Quetzal Guatemala - Quetzal Guatemala - GTQ - - - Doler Guyana - Doler Guyana - Doler Guyana - Doler Guyana - Doler Guyana - Doler Guyana - Doler Guyana - - - Doler Hong Kong - Doler Hong Kong - Doler Hong Kong - Doler Hong Kong - Doler Hong Kong - Doler Hong Kong - Doler Hong Kong - HK$ - - - Lempira Honduras - Lempira Honduras - Lempira Honduras - Lempira Honduras - Lempira Honduras - Lempira Honduras - Lempira Honduras - - - Kuna Croatia - Kuna Croatia - Kuna Croatia - Kuna Croatia - Kuna Croatia - Kuna Croatia - Kuna Croatia - - - Gourde Haiti - Gourde Haiti - Gourde Haiti - Gourde Haiti - Gourde Haiti - Gourde Haiti - Gourde Haiti - - - Fforint Hwngari - Fforint Hwngari - Fforint Hwngari - Fforint Hwngari - Fforint Hwngari - Fforint Hwngari - Fforint Hwngari - - - Rupiah Indonesia - Rupiah Indonesia - Rupiah Indonesia - Rupiah Indonesia - Rupiah Indonesia - Rupiah Indonesia - Rupiah Indonesia - - - Punt Iwerddon - Punt Iwerddon - Punt Iwerddon - Punt Iwerddon - Punt Iwerddon - Punt Iwerddon - Punt Iwerddon - - - Shegel Newydd Israel - Shegel Newydd Israel - Shegel Newydd Israel - Shegel Newydd Israel - Shegel Newydd Israel - Shegel Newydd Israel - Shegel Newydd Israel - - - - Rwpî India - Rwpî India - Rwpî India - Rwpî India - Rwpî India - Rwpî India - Rwpî India - - - - Dinar Irac - Dinar Irac - Dinar Irac - Dinar Irac - Dinar Irac - Dinar Irac - Dinar Irac - - - Rial Iran - Rial Iran - Rial Iran - Rial Iran - Rial Iran - Rial Iran - Rial Iran - - - Króna Gwlad yr Iâ - Króna Gwlad yr Iâ - Króna Gwlad yr Iâ - Króna Gwlad yr Iâ - Króna Gwlad yr Iâ - Króna Gwlad yr Iâ - Króna Gwlad yr Iâ - - - Doler Jamaica - Doler Jamaica - Doler Jamaica - Doler Jamaica - Doler Jamaica - Doler Jamaica - Doler Jamaica - - - Dinar Gwlad yr Iorddonen - Dinar Gwlad yr Iorddonen - Dinar Gwlad yr Iorddonen - Dinar Gwlad yr Iorddonen - Dinar Gwlad yr Iorddonen - Dinar Gwlad yr Iorddonen - Dinar Gwlad yr Iorddonen - - - Yen Japan - Yen Japan - Yen Japan - Yen Japan - Yen Japan - Yen Japan - Yen Japan - JP¥ - - - Swllt Kenya - Swllt Kenya - Swllt Kenya - Swllt Kenya - Swllt Kenya - Swllt Kenya - Swllt Kenya - - - Som Kyrgyzstan - Som Kyrgyzstan - Som Kyrgyzstan - Som Kyrgyzstan - Som Kyrgyzstan - Som Kyrgyzstan - Som Kyrgyzstan - - - Riel Cambodia - Riel Cambodia - Riel Cambodia - Riel Cambodia - Riel Cambodia - Riel Cambodia - Riel Cambodia - - - Ffranc Comoros - Ffranc Comoros - Ffranc Comoros - Ffranc Comoros - Ffranc Comoros - Ffranc Comoros - Ffranc Comoros - - - Won Gogledd Corea - Won Gogledd Corea - Won Gogledd Corea - Won Gogledd Corea - Won Gogledd Corea - Won Gogledd Corea - Won Gogledd Corea - - - Won De Korea - Won De Korea - Won De Korea - Won De Korea - Won De Korea - Won De Korea - Won De Korea - - - - Dinar Kuwait - Dinar Kuwait - Dinar Kuwait - Dinar Kuwait - Dinar Kuwait - Dinar Kuwait - Dinar Kuwait - - - Doler Ynysoedd Cayman - Doler Ynysoedd Cayman - Doler Ynysoedd Cayman - Doler Ynysoedd Cayman - Doler Ynysoedd Cayman - Doler Ynysoedd Cayman - Doler Ynysoedd Cayman - - - Tenge Kazakstan - Tenge Kazakstan - Tenge Kazakstan - Tenge Kazakstan - Tenge Kazakstan - Tenge Kazakstan - Tenge Kazakstan - - - Kip Laos - Kip Laos - Kip Laos - Kip Laos - Kip Laos - Kip Laos - Kip Laos - - - Punt Libanus - Punt Libanus - Punt Libanus - Punt Libanus - Punt Libanus - Punt Libanus - Punt Libanus - - - Rwpî Sri Lanka - Rwpî Sri Lanka - Rwpî Sri Lanka - Rwpî Sri Lanka - Rwpî Sri Lanka - Rwpî Sri Lanka - Rwpî Sri Lanka - - - Doler Liberia - Doler Liberia - Doler Liberia - Doler Liberia - Doler Liberia - Doler Liberia - Doler Liberia - - - Litas Lithwania - Litas Lithwania - Litas Lithwania - Litas Lithwania - Litas Lithwania - Litas Lithwania - Litas Lithwania - - - Lats Latfia - Lats Latfia - Lats Latfia - Lats Latfia - Lats Latfia - Lats Latfia - Lats Latfia - - - Dinar Libya - Dinar Libya - Dinar Libya - Dinar Libya - Dinar Libya - Dinar Libya - Dinar Libya - - - Dirham Moroco - Dirham Moroco - Dirham Moroco - Dirham Moroco - Dirham Moroco - Dirham Moroco - Dirham Moroco - - - Leu Moldofa - Leu Moldofa - Leu Moldofa - Leu Moldofa - Leu Moldofa - Leu Moldofa - Leu Moldofa - - - Ariary Madagascar - Ariary Madagascar - Ariary Madagascar - Ariary Madagascar - Ariary Madagascar - Ariary Madagascar - Ariary Madagascar - - - Denar Macedonia - Denar Macedonia - Denar Macedonia - Denar Macedonia - Denar Macedonia - Denar Macedonia - Denar Macedonia - - - Kyat Myanmar - Kyat Myanmar - Kyat Myanmar - Kyat Myanmar - Kyat Myanmar - Kyat Myanmar - Kyat Myanmar - - - Tugrik Mongolia - Tugrik Mongolia - Tugrik Mongolia - Tugrik Mongolia - Tugrik Mongolia - Tugrik Mongolia - Tugrik Mongolia - - - Pataca Macau - Pataca Macau - Pataca Macau - Pataca Macau - Pataca Macau - Pataca Macau - Pataca Macau - - - Ouguiya Mauritania - Ouguiya Mauritania - Ouguiya Mauritania - Ouguiya Mauritania - Ouguiya Mauritania - Ouguiya Mauritania - Ouguiya Mauritania - - - Rwpî Mauritius - Rwpî Mauritius - Rwpî Mauritius - Rwpî Mauritius - Rwpî Mauritius - Rwpî Mauritius - Rwpî Mauritius - - - Rufiyaa’r Maldives - Rufiyaa’r Maldives - Rufiyaa’r Maldives - Rufiyaa’r Maldives - Rufiyaa’r Maldives - Rufiyaa’r Maldives - Rufiyaa’r Maldives - - - Kwacha Malawi - Kwacha Malawi - Kwacha Malawi - Kwacha Malawi - Kwacha Malawi - Kwacha Malawi - Kwacha Malawi - - - Peso México - Peso México - Peso México - Peso México - Peso México - Peso México - Peso México - MX$ - - - Ringgit Malaysia - Ringgit Malaysia - Ringgit Malaysia - Ringgit Malaysia - Ringgit Malaysia - Ringgit Malaysia - Ringgit Malaysia - - - Metical Mozambique - Metical Mozambique - Metical Mozambique - Metical Mozambique - Metical Mozambique - Metical Mozambique - Metical Mozambique - - - Doler Namibia - Doler Namibia - Doler Namibia - Doler Namibia - Doler Namibia - Doler Namibia - Doler Namibia - - - Naira Nigeria - Naira Nigeria - Naira Nigeria - Naira Nigeria - Naira Nigeria - Naira Nigeria - Naira Nigeria - - - Córdoba Nicaragua - Córdoba Nicaragua - Córdoba Nicaragua - Córdoba Nicaragua - Córdoba Nicaragua - Córdoba Nicaragua - Córdoba Nicaragua - - - Krone Norwy - Krone Norwy - Krone Norwy - Krone Norwy - Krone Norwy - Krone Norwy - Krone Norwy - - - Rwpî Nepal - Rwpî Nepal - Rwpî Nepal - Rwpî Nepal - Rwpî Nepal - Rwpî Nepal - Rwpî Nepal - - - Doler Seland Newydd - Doler Seland Newydd - Doler Seland Newydd - Doler Seland Newydd - Doler Seland Newydd - Doler Seland Newydd - Doler Seland Newydd - NZ$ - - - Rial Oman - Rial Oman - Rial Oman - Rial Oman - Rial Oman - Rial Oman - Rial Oman - - - Balboa Panama - Balboa Panama - Balboa Panama - Balboa Panama - Balboa Panama - Balboa Panama - Balboa Panama - - - Nuevo Sol Periw - Nuevo Sol Periw - Nuevo Sol Periw - Nuevo Sol Periw - Nuevo Sol Periw - Nuevo Sol Periw - Nuevo Sol Periw - - - Kina Papua Guinea Newydd - Kina Papua Guinea Newydd - Kina Papua Guinea Newydd - Kina Papua Guinea Newydd - Kina Papua Guinea Newydd - Kina Papua Guinea Newydd - Kina Papua Guinea Newydd - - - Peso Pilipinas - Peso Pilipinas - Peso Pilipinas - Peso Pilipinas - Peso Pilipinas - Peso Pilipinas - Peso Pilipinas - - - Rwpî Pacistan - Rwpî Pacistan - Rwpî Pacistan - Rwpî Pacistan - Rwpî Pacistan - Rwpî Pacistan - Rwpî Pacistan - - - Zloty Gwlad Pwyl - Zloty Gwlad Pwyl - Zloty Gwlad Pwyl - Zloty Gwlad Pwyl - Zloty Gwlad Pwyl - Zloty Gwlad Pwyl - Zloty Gwlad Pwyl - - - Guarani Paraguay - Guarani Paraguay - Guarani Paraguay - Guarani Paraguay - Guarani Paraguay - Guarani Paraguay - Guarani Paraguay - - - Rial Qatar - Rial Qatar - Rial Qatar - Rial Qatar - Rial Qatar - Rial Qatar - Rial Qatar - - - Leu Rwmania - Leu Rwmania - Leu Rwmania - Leu Rwmania - Leu Rwmania - Leu Rwmania - Leu Rwmania - - - Dinar Serbia - Dinar Serbia - Dinar Serbia - Dinar Serbia - Dinar Serbia - Dinar Serbia - Dinar Serbia - - - Rwbl Rwsia - Rwbl Rwsia - Rwbl Rwsia - Rwbl Rwsia - Rwbl Rwsia - Rwbl Rwsia - Rwbl Rwsia - - - Ffranc Rwanda - Ffranc Rwanda - Ffranc Rwanda - Ffranc Rwanda - Ffranc Rwanda - Ffranc Rwanda - Ffranc Rwanda - - - Riyal Saudi Arabia - Riyal Saudi Arabia - Riyal Saudi Arabia - Riyal Saudi Arabia - Riyal Saudi Arabia - Riyal Saudi Arabia - Riyal Saudi Arabia - - - Doler Ynysoedd Solomon - Doler Ynysoedd Solomon - Doler Ynysoedd Solomon - Doler Ynysoedd Solomon - Doler Ynysoedd Solomon - Doler Ynysoedd Solomon - Doler Ynysoedd Solomon - - - Rwpî Seychelles - Rwpî Seychelles - Rwpî Seychelles - Rwpî Seychelles - Rwpî Seychelles - Rwpî Seychelles - Rwpî Seychelles - - - Punt Sudan - Punt Sudan - Punt Sudan - Punt Sudan - Punt Sudan - Punt Sudan - Punt Sudan - - - Krona Sweden - Krona Sweden - Krona Sweden - Krona Sweden - Krona Sweden - Krona Sweden - Krona Sweden - - - Doler Singapore - Doler Singapore - Doler Singapore - Doler Singapore - Doler Singapore - Doler Singapore - Doler Singapore - - - Punt Saint Helena - Punt Saint Helena - Punt Saint Helena - Punt Saint Helena - Punt Saint Helena - Punt Saint Helena - Punt Saint Helena - - - Leone Sierra Leone - Leone Sierra Leone - Leone Sierra Leone - Leone Sierra Leone - Leone Sierra Leone - Leone Sierra Leone - Leone Sierra Leone - - - Swllt Somalia - Swllt Somalia - Swllt Somalia - Swllt Somalia - Swllt Somalia - Swllt Somalia - Swllt Somalia - - - Doler Surinam - Doler Surinam - Doler Surinam - Doler Surinam - Doler Surinam - Doler Surinam - Doler Surinam - - - Punt De Sudan - Punt De Sudan - Punt De Sudan - Punt De Sudan - Punt De Sudan - Punt De Sudan - Punt De Sudan - - - Dobra São Tomé a Príncipe - Dobra São Tomé a Príncipe - Dobra São Tomé a Príncipe - Dobra São Tomé a Príncipe - Dobra São Tomé a Príncipe - Dobra São Tomé a Príncipe - Dobra São Tomé a Príncipe - - - Punt Syria - Punt Syria - Punt Syria - Punt Syria - Punt Syria - Punt Syria - Punt Syria - - - Lilangeni Gwlad Swazi - Lilangeni Gwlad Swazi - Lilangeni Gwlad Swazi - Lilangeni Gwlad Swazi - Lilangeni Gwlad Swazi - Lilangeni Gwlad Swazi - Lilangeni Gwlad Swazi - - - Baht Gwlad Thai - Baht Gwlad Thai - Baht Gwlad Thai - Baht Gwlad Thai - Baht Gwlad Thai - Baht Gwlad Thai - Baht Gwlad Thai - ฿ - - - Somoni Tajikistan - Somoni Tajikistan - Somoni Tajikistan - Somoni Tajikistan - Somoni Tajikistan - Somoni Tajikistan - Somoni Tajikistan - - - Manat Turkmenistan - Manat Turkmenistan - Manat Turkmenistan - Manat Turkmenistan - Manat Turkmenistan - Manat Turkmenistan - Manat Turkmenistan - - - Dinar Tunisia - Dinar Tunisia - Dinar Tunisia - Dinar Tunisia - Dinar Tunisia - Dinar Tunisia - Dinar Tunisia - - - Paʻanga Tonga - Paʻanga Tonga - Paʻanga Tonga - Paʻanga Tonga - Paʻanga Tonga - Paʻanga Tonga - Paʻanga Tonga - - - Lira Twrci - Lira Twrci - Lira Twrci - Lira Twrci - Lira Twrci - Lira Twrci - Lira Twrci - - - Doler Trinidad a Tobago - Doler Trinidad a Tobago - Doler Trinidad a Tobago - Doler Trinidad a Tobago - Doler Trinidad a Tobago - Doler Trinidad a Tobago - Doler Trinidad a Tobago - - - Doler Newydd Taiwan - Doler Newydd Taiwan - Doler Newydd Taiwan - Doler Newydd Taiwan - Doler Newydd Taiwan - Doler Newydd Taiwan - Doler Newydd Taiwan - NT$ - - - Swllt Tanzania - Swllt Tanzania - Swllt Tanzania - Swllt Tanzania - Swllt Tanzania - Swllt Tanzania - Swllt Tanzania - - - Hryvnia Wcráin - Hryvnia Wcráin - Hryvnia Wcráin - Hryvnia Wcráin - Hryvnia Wcráin - Hryvnia Wcráin - Hryvnia Wcráin - - - Swllt Uganda - Swllt Uganda - Swllt Uganda - Swllt Uganda - Swllt Uganda - Swllt Uganda - Swllt Uganda - - - Doler UDA - Doler UDA - Doler UDA - Doler UDA - Doler UDA - Doler UDA - Doler UDA - US$ - - - Peso Uruguay - Peso Uruguay - Peso Uruguay - Peso Uruguay - Peso Uruguay - Peso Uruguay - Peso Uruguay - - - Som Uzbekistan - Som Uzbekistan - Som Uzbekistan - Som Uzbekistan - Som Uzbekistan - Som Uzbekistan - Som Uzbekistan - - - Bolívar Venezuela - Bolívar Venezuela - Bolívar Venezuela - Bolívar Venezuela - Bolívar Venezuela - Bolívar Venezuela - Bolívar Venezuela - - - Dong Fietnam - Dong Fietnam - Dong Fietnam - Dong Fietnam - Dong Fietnam - Dong Fietnam - Dong Fietnam - - - - Vatu Vanuatu - Vatu Vanuatu - Vatu Vanuatu - Vatu Vanuatu - Vatu Vanuatu - Vatu Vanuatu - Vatu Vanuatu - - - Tala Samoa - Tala Samoa - Tala Samoa - Tala Samoa - Tala Samoa - Tala Samoa - Tala Samoa - - - Ffranc CFA y BEAC - Ffranc CFA y BEAC - Ffranc CFA y BEAC - Ffranc CFA y BEAC - Ffranc CFA y BEAC - Ffranc CFA y BEAC - Ffranc CFA y BEAC - FCFA - - - Doler Dwyrain y Caribî - Doler Dwyrain y Caribî - Doler Dwyrain y Caribî - Doler Dwyrain y Caribî - Doler Dwyrain y Caribî - Doler Dwyrain y Caribî - Doler Dwyrain y Caribî - EC$ - - - Ffranc CFA y BCEAO - Ffranc CFA y BCEAO - Ffranc CFA y BCEAO - Ffranc CFA y BCEAO - Ffranc CFA y BCEAO - Ffranc CFA y BCEAO - Ffranc CFA y BCEAO - CFA - - - Ffranc CPF - Ffranc CPF - Ffranc CPF - Ffranc CPF - Ffranc CPF - Ffranc CPF - Ffranc CPF - CFPF - - - Arian Cyfredol Anhysbys - Arian Cyfredol Anhysbys - Arian Cyfredol Anhysbys - Arian Cyfredol Anhysbys - Arian Cyfredol Anhysbys - Arian Cyfredol Anhysbys - Arian Cyfredol Anhysbys - - - Rial Yemen - Rial Yemen - Rial Yemen - Rial Yemen - Rial Yemen - Rial Yemen - Rial Yemen - - - Rand De Affrica - Rand De Affrica - Rand De Affrica - Rand De Affrica - Rand De Affrica - Rand De Affrica - Rand De Affrica - - - Kwacha Zambia (1968–2012) - Kwacha Zambia (1968–2012) - Kwacha Zambia (1968–2012) - Kwacha Zambia (1968–2012) - Kwacha Zambia (1968–2012) - Kwacha Zambia (1968–2012) - Kwacha Zambia (1968–2012) - - - Kwacha Zambia - Kwacha Zambia - Kwacha Zambia - Kwacha Zambia - Kwacha Zambia - Kwacha Zambia - Kwacha Zambia - - - - {0}+ - {0}-{1} - - - - - - {0}/{1} - - - grym disgyrchedd - {0} grym disgyrchedd - {0} grym disgyrchedd - {0} rym disgyrchedd - {0} grym disgyrchedd - {0} grym disgyrchedd - {0} grym disgyrchedd - - - munud - {0} munud - {0} munud - {0} funud - {0} munud - {0} munud - {0} munud - - - eiliad - {0} eiliad - {0} eiliad - {0} eiliad - {0} eiliad - {0} eiliad - {0} eiliad - - - gradd - {0} gradd - {0} radd - {0} radd - {0} gradd - {0} gradd - {0} gradd - - - erw - {0} erw - {0} erw - {0} erw - {0} erw - {0} erw - {0} erw - - - hectar - {0} hectar - {0} hectar - {0} hectar - {0} hectar - {0} hectar - {0} hectar - - - troedfedd sgwâr - {0} troedfedd sgwâr - {0} droedfedd sgwâr - {0} droedfedd sgwâr - {0} troedfedd sgwâr - {0} throedfedd sgwâr - {0} troedfedd sgwâr - - - cilometr sgwâr - {0} cilometr sgwâr - {0} cilometr sgwâr - {0} gilometr sgwâr - {0} chilometr sgwâr - {0} chilometr sgwâr - {0} cilometr sgwâr - - - metr sgwâr - {0} metr sgwâr - {0} metr sgwâr - {0} fetr sgwâr - {0} metr sgwâr - {0} metr sgwâr - {0} metr sgwâr - - - milltir sgwâr - {0} milltir sgwâr - {0} filltir sgwâr - {0} filltir sgwâr - {0} milltir sgwâr - {0} milltir sgwâr - {0} milltir sgwâr - - - diwrnod - {0} diwrnod - {0} diwrnod - {0} ddiwrnod - {0} diwrnod - {0} diwrnod - {0} diwrnod - - - awr - {0} awr - {0} awr - {0} awr - {0} awr - {0} awr - {0} awr - - - milieiliad - {0} milieiliad - {0} milieiliad - {0} filieiliad - {0} milieiliad - {0} milieiliad - {0} milieiliad - - - munud - {0} munud - {0} munud - {0} funud - {0} munud - {0} munud - {0} munud - - - mis - {0} mis - {0} mis - {0} fis - {0} mis - {0} mis - {0} mis - - - eiliad - {0} eiliad - {0} eiliad - {0} eiliad - {0} eiliad - {0} eiliad - {0} eiliad - - - wythnos - {0} wythnos - {0} wythnos - {0} wythnos - {0} wythnos - {0} wythnos - {0} wythnos - - - mlynedd - {0} mlynedd - {0} flwyddyn - {0} flynedd - {0} blynedd - {0} blynedd - {0} mlynedd - - - centimetr - {0} centimetr - {0} centimetr - {0} gentimetr - {0} chentimetr - {0} chentimetr - {0} centimetr - - - troedfedd - {0} troedfedd - {0} droedfedd - {0} droedfedd - {0} troedfedd - {0} throedfedd - {0} troedfedd - - - modfedd - {0} modfedd - {0} fodfedd - {0} fodfedd - {0} modfedd - {0} modfedd - {0} modfedd - - - cilometr - {0} cilometr - {0} cilometr - {0} gilometr - {0} chilometr - {0} chilometr - {0} cilometr - - - blwyddyn golau - {0} blwyddyn golau - {0} flwyddyn golau - {0} flwyddyn golau - {0} blwyddyn golau - {0} blwyddyn golau - {0} blwyddyn golau - - - metr - {0} metr - {0} metr - {0} fetr - {0} metr - {0} metr - {0} metr - - - milltir - {0} milltir - {0} filltir - {0} filltir - {0} milltir - {0} milltir - {0} milltir - - - milimetr - {0} milimetr - {0} milimetr - {0} filimetr - {0} milimetr - {0} milimetr - {0} milimetr - - - picometr - {0} picometr - {0} picometr - {0} bicometr - {0} phicometr - {0} phicometr - {0} picometr - - - llath - {0} llath - {0} llath - {0} lath - {0} llath - {0} llath - {0} llath - - - gram - {0} gram - {0} gram - {0} gram - {0} gram - {0} gram - {0} gram - - - cilogram - {0} cilogram - {0} cilogram - {0} gilogram - {0} chilogram - {0} chilogram - {0} cilogram - - - owns - {0} owns - {0} owns - {0} owns - {0} owns - {0} owns - {0} owns - - - pwys - {0} pwys - {0} pwys - {0} bwys - {0} phwys - {0} phwys - {0} pwys - - - marchnerth - {0} marchnerth - {0} marchnerth - {0} farchnerth - {0} marchnerth - {0} marchnerth - {0} marchnerth - - - cilowat - {0} cilowat - {0} cilowat - {0} gilowat - {0} chilowat - {0} chilowat - {0} cilowat - - - wat - {0} wat - {0} wat - {0} wat - {0} wat - {0} wat - {0} wat - - - hectopascal - {0} hectopascal - {0} hectopascal - {0} hectopascal - {0} hectopascal - {0} hectopascal - {0} hectopascal - - - modfedd o fercwri - {0} modfedd o fercwri - {0} fodfedd o fercwri - {0} fodfedd o fercwri - {0} modfedd o fercwri - {0} modfedd o fercwri - {0} modfedd o fercwri - - - milibar - {0} milibar - {0} milibar - {0} filibar - {0} milibar - {0} milibar - {0} milibar - - - cilometr yr awr - {0} cilometr yr awr - {0} cilometr yr awr - {0} gilometr yr awr - {0} chilometr yr awr - {0} chilometr yr awr - {0} cilometr yr awr - - - metr yr eiliad - {0} metr yr eiliad - {0} metr yr eiliad - {0} fetr yr eiliad - {0} metr yr eiliad - {0} metr yr eiliad - {0} metr yr eiliad - - - milltir yr awr - {0} milltir yr awr - {0} filltir yr awr - {0} filltir yr awr - {0} milltir yr awr - {0} milltir yr awr - {0} milltir yr awr - - - gradd Celsius - {0} gradd Celsius - {0} radd Celsius - {0} radd Celsius - {0} gradd Celsius - {0} gradd Celsius - {0} gradd Celsius - - - gradd Fahrenheit - {0} gradd Fahrenheit - {0} radd Fahrenheit - {0} radd Fahrenheit - {0} gradd Fahrenheit - {0} gradd Fahrenheit - {0} gradd Fahrenheit - - - cilometr ciwbig - {0} cilometr ciwbig - {0} cilometr ciwbig - {0} gilometr ciwbig - {0} chilometr ciwbig - {0} chilometr ciwbig - {0} cilometr ciwbig - - - milltir giwbig - {0} milltir giwbig - {0} filltir giwbig - {0} filltir giwbig - {0} milltir giwbig - {0} milltir giwbig - {0} milltir giwbig - - - litr - {0} litr - {0} litr - {0} litr - {0} litr - {0} litr - {0} litr - - - - - {0}/{1} - - - grym disgyrchedd - {0} G - {0} G - {0} G - {0} G - {0} G - {0} G - - - munud - {0}′ - {0}′ - {0}′ - {0}′ - {0}′ - {0}′ - - - eiliad - {0}″ - {0}″ - {0}″ - {0}″ - {0}″ - {0}″ - - - gradd - {0}° - {0}° - {0}° - {0}° - {0}° - {0}° - - - erw - {0} erw - {0} erw - {0} erw - {0} erw - {0} erw - {0} erw - - - hectar - {0} ha - {0} ha - {0} ha - {0} ha - {0} ha - {0} ha - - - troedfedd sgwâr - {0} troedfedd ² - {0} droedfedd ² - {0} droedfedd ² - {0} troedfedd ² - {0} throedfedd ² - {0} troedfedd ² - - - cilometr sgwâr - {0} km² - {0} km² - {0} km² - {0} km² - {0} km² - {0} km² - - - metr sgwâr - {0} m² - {0} m² - {0} m² - {0} m² - {0} m² - {0} m² - - - milltir sgwâr - {0} mi² - {0} mi² - {0} mi² - {0} mi² - {0} mi² - {0} mi² - - - L/km - {0} L/km - {0} L/km - {0} L/km - {0} L/km - {0} L/km - {0} L/km - - - {0} Gb - {0} Gb - {0} Gb - {0} Gb - {0} Gb - {0} Gb - - - {0} GB - {0} GB - {0} GB - {0} GB - {0} GB - {0} GB - - - {0} kb - {0} kb - {0} kb - {0} kb - {0} kb - {0} kb - - - {0} kB - {0} kB - {0} kB - {0} kB - {0} kB - {0} kB - - - {0} Mb - {0} Mb - {0} Mb - {0} Mb - {0} Mb - {0} Mb - - - {0} MB - {0} MB - {0} MB - {0} MB - {0} MB - {0} MB - - - {0} Tb - {0} Tb - {0} Tb - {0} Tb - {0} Tb - {0} Tb - - - {0} TB - {0} TB - {0} TB - {0} TB - {0} TB - {0} TB - - - diwrnod - {0} diwrnod - {0} diwrnod - {0} ddiwrnod - {0} diwrnod - {0} diwrnod - {0} diwrnod - - - awr - {0} awr - {0} awr - {0} awr - {0} awr - {0} awr - {0} awr - - - milieiliad - {0} ms - {0} ms - {0} ms - {0} ms - {0} ms - {0} ms - - - munud - {0} mun - {0} mun - {0} mun - {0} mun - {0} mun - {0} mun - - - mis - {0} mis - {0} mis - {0} fis - {0} mis - {0} mis - {0} mis - - - eiliad - {0} eil - {0} eil - {0} eil - {0} eil - {0} eil - {0} eil - - - wythnos - {0} wythnos - {0} wythnos - {0} wythnos - {0} wythnos - {0} wythnos - {0} wythnos - - - mlynedd - {0} bl - {0} bl - {0} bl - {0} bl - {0} bl - {0} bl - - - centimetr - {0} cm - {0} cm - {0} cm - {0} cm - {0} cm - {0} cm - - - troedfedd - {0}′ - {0}′ - {0}′ - {0}′ - {0}′ - {0}′ - - - modfedd - {0} modfedd - {0} fodfedd - {0} fodfedd - {0} modfedd - {0} modfedd - {0} modfedd - - - cilometr - {0} km - {0} km - {0} km - {0} km - {0} km - {0} km - - - blwyddyn golau - {0} blwyddyn golau - {0} flwyddyn golau - {0} flwyddyn golau - {0} blwyddyn golau - {0} blwyddyn golau - {0} blwyddyn golau - - - metr - {0} m - {0} m - {0} m - {0} m - {0} m - {0} m - - - milltir - {0} milltir - {0} filltir - {0} filltir - {0} milltir - {0} milltir - {0} milltir - - - milimetr - {0} mm - {0} mm - {0} mm - {0} mm - {0} mm - {0} mm - - - picometr - {0} pm - {0} pm - {0} pm - {0} pm - {0} pm - {0} pm - - - llath - {0} llath - {0} llath - {0} lath - {0} llath - {0} llath - {0} llath - - - gram - {0} g - {0} g - {0} g - {0} g - {0} g - {0} g - - - cilogram - {0} kg - {0} kg - {0} kg - {0} kg - {0} kg - {0} kg - - - owns - {0} owns - {0} owns - {0} owns - {0} owns - {0} owns - {0} owns - - - pwys - {0} pwys - {0} pwys - {0} bwys - {0} phwys - {0} phwys - {0} pwys - - - marchnerth - {0} hp - {0} hp - {0} hp - {0} hp - {0} hp - {0} hp - - - cilowat - {0} kW - {0} kW - {0} kW - {0} kW - {0} kW - {0} kW - - - wat - {0} W - {0} W - {0} W - {0} W - {0} W - {0} W - - - hectopascal - {0} hPa - {0} hPa - {0} hPa - {0} hPa - {0} hPa - {0} hPa - - - modfedd o fercwri - {0} " Hg - {0} " Hg - {0} " Hg - {0} " Hg - {0} " Hg - {0} " Hg - - - milibar - {0} mbar - {0} mbar - {0} mbar - {0} mbar - {0} mbar - {0} mbar - - - mm Hg - {0} mm Hg - {0} mm Hg - {0} mm Hg - {0} mm Hg - {0} mm Hg - {0} mm Hg - - - psi - {0} psi - {0} psi - {0} psi - {0} psi - {0} psi - {0} psi - - - cilometr yr awr - {0} km/h - {0} km/h - {0} km/h - {0} km/h - {0} km/h - {0} km/h - - - metr yr eiliad - {0} m/s - {0} m/s - {0} m/s - {0} m/s - {0} m/s - {0} m/s - - - milltir yr awr - {0} m.y.a. - {0} m.y.a. - {0} m.y.a. - {0} m.y.a. - {0} m.y.a. - {0} m.y.a. - - - gradd Celsius - {0}°C - {0}°C - {0}°C - {0}°C - {0}°C - {0}°C - - - gradd Fahrenheit - {0}°F - {0}°F - {0}°F - {0}°F - {0}°F - {0}°F - - - K - {0} K - {0} K - {0} K - {0} K - {0} K - {0} K - - - cilometr ciwbig - {0} km³ - {0} km³ - {0} km³ - {0} km³ - {0} km³ - {0} km³ - - - milltir giwbig - {0} mi³ - {0} mi³ - {0} mi³ - {0} mi³ - {0} mi³ - {0} mi³ - - - litr - {0} l - {0} l - {0} l - {0} l - {0} l - {0} l - - - - - {0}/{1} - - - {0}G - {0}G - {0}G - {0}G - {0}G - {0}G - - - {0}′ - {0}′ - {0}′ - {0}′ - {0}′ - {0}′ - - - {0}″ - {0}″ - {0}″ - {0}″ - {0}″ - {0}″ - - - {0}° - {0}° - {0}° - {0}° - {0}° - {0}° - - - {0}erw - {0}erw - {0}erw - {0}erw - {0}erw - {0}erw - - - {0}ha - {0}ha - {0}ha - {0}ha - {0}ha - {0}ha - - - {0}ft² - {0}ft² - {0}ft² - {0}ft² - {0}ft² - {0}ft² - - - {0}km² - {0}km² - {0}km² - {0}km² - {0}km² - {0}km² - - - {0}m² - {0}m² - {0}m² - {0}m² - {0}m² - {0}m² - - - {0}mi² - {0}mi² - {0}mi² - {0}mi² - {0}mi² - {0}mi² - - - L/km - - - {0}d - {0}d - {0}d - {0}d - {0}d - {0}d - - - {0} awr - {0} awr - {0} awr - {0} awr - {0} awr - {0} awr - - - {0}ms - {0}ms - {0}ms - {0}ms - {0}ms - {0}ms - - - {0} mun - {0} mun - {0} mun - {0} mun - {0} mun - {0} mun - - - {0}m - {0}m - {0}m - {0}m - {0}m - {0}m - - - {0} eil - {0} eil - {0} eil - {0} eil - {0} eil - {0} eil - - - {0}w - {0}w - {0}w - {0}w - {0}w - {0}w - - - {0}bl - {0}bl - {0}bl - {0}bl - {0}bl - {0}bl - - - {0}cm - {0}cm - {0}cm - {0}cm - {0}cm - {0}cm - - - {0}′ - {0}′ - {0}′ - {0}′ - {0}′ - {0}′ - - - {0}″ - {0}″ - {0}″ - {0}″ - {0}″ - {0}″ - - - {0}km - {0}km - {0}km - {0}km - {0}km - {0}km - - - {0}ly - {0}ly - {0}ly - {0}ly - {0}ly - {0}ly - - - {0}m - {0}m - {0}m - {0}m - {0}m - {0}m - - - {0}mi - {0}mi - {0}mi - {0}mi - {0}mi - {0}mi - - - {0}mm - {0}mm - {0}mm - {0}mm - {0}mm - {0}mm - - - {0}pm - {0}pm - {0}pm - {0}pm - {0}pm - {0}pm - - - {0}llath - {0}llath - {0}lath - {0}llath - {0}llath - {0}llath - - - {0}g - {0}g - {0}g - {0}g - {0}g - {0}g - - - {0}kg - {0}kg - {0}kg - {0}kg - {0}kg - {0}kg - - - {0}owns - {0}owns - {0}owns - {0}owns - {0}owns - {0}owns - - - {0}pwys - {0}pwys - {0}bwys - {0}phwys - {0}phwys - {0}pwys - - - {0}hp - {0}hp - {0}hp - {0}hp - {0}hp - {0}hp - - - {0}kW - {0}kW - {0}kW - {0}kW - {0}kW - {0}kW - - - {0}W - {0}W - {0}W - {0}W - {0}W - {0}W - - - {0}hPa - {0}hPa - {0}hPa - {0}hPa - {0}hPa - {0}hPa - - - {0}" Hg - {0}" Hg - {0}" Hg - {0}" Hg - {0}" Hg - {0}" Hg - - - {0}mb - {0}mb - {0}mb - {0}mb - {0}mb - {0}mb - - - mm Hg - {0}mm Hg - {0}mm Hg - {0}mm Hg - {0}mm Hg - {0}mm Hg - {0}mm Hg - - - psi - - - {0}km/h - {0}km/h - {0}km/h - {0}km/h - {0}km/h - {0}km/h - - - {0}m/s - {0}m/s - {0}m/s - {0}m/s - {0}m/s - {0}m/s - - - {0}m.y.a. - {0}m.y.a. - {0}m.y.a. - {0}m.y.a. - {0}m.y.a. - {0}m.y.a. - - - {0}° - {0}° - {0}° - {0}° - {0}° - {0}° - - - {0}°F - {0}°F - {0}°F - {0}°F - {0}°F - {0}°F - - - K - - - {0}km³ - {0}km³ - {0}km³ - {0}km³ - {0}km³ - {0}km³ - - - {0}mi³ - {0}mi³ - {0}mi³ - {0}mi³ - {0}mi³ - {0}mi³ - - - {0}l - {0}l - {0}l - {0}l - {0}l - {0}l - - - - h.mm - - - h.mm.ss - - - m.ss - - - - - {0}, {1} - {0}, {1} - {0}, {1} - {0}, {1} - - - {0}, {1} - {0}, {1} - {0}, {1} - {0}, {1} - - - {0}, {1} - {0}, {1} - {0}, {1} - {0}, {1} - - - - - ie:i - na:n - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/da_GL.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/da_GL.xml deleted file mode 100644 index bbb05408a06..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/da_GL.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ee_TG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ee_TG.xml deleted file mode 100644 index 4aec4aad79a..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ee_TG.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_150.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_150.xml deleted file mode 100644 index c726df997dd..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_150.xml +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - - - - - - dd MMM y G - - - - - - d/M - E, d/M - d/M/y G - E, d/M/y G - - - - MM/y – MM/y G - MM/y – MM/y G - - - dd/MM/y – dd/MM/y G - dd/MM/y – dd/MM/y G - dd/MM/y – dd/MM/y G - - - E dd/MM/y – E dd/MM/y G - E dd/MM/y – E dd/MM/y G - E dd/MM/y – E dd/MM/y G - - - - - - - - - dd MMM y - - - - - dd/MM/yy - - - - - - - HH 'h' mm 'min' ss 's' zzzz - - - - - - d/M - E, d/M - d/M/y - E, d/M/y - - - - E dd/MM/y – E dd/MM/y - E dd/MM/y – E dd/MM/y - E dd/MM/y – E dd/MM/y - - - - - - - - - , - . - - - - - #,##0.00 ¤ - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_AU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_AU.xml deleted file mode 100644 index b2033d7f5e1..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_AU.xml +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - - - - - - Bamum - United States English - - - - - - - - - d/MM/yy - - - - - - - - - d/MM/y GGGGG - - - - - - d/M/y - E, d/M/y - - - - E, d/MM – E, d/MM - E, d/MM – E, d/MM - - - E, d – E, d MMM - E, d MMM – E, d MMM - - - d/MM/y – d/MM/y GGGGG - d/MM/y – d/MM/y GGGGG - d/MM/y – d/MM/y GGGGG - - - E, d/MM/y – E, d/MM/y GGGGG - E, d/MM/y – E, d/MM/y GGGGG - E, d/MM/y – E, d/MM/y GGGGG - - - - - - - - - d/MM/y - - - - - - E d - LL - d/M/y - E, d/M/y - - - - d/MM – d/MM - d/MM – d/MM - - - E, d/MM – E, d/MM - E, d/MM – E, d/MM - - - E, d – E, d MMM - E, d MMM – E, d MMM - - - d/MM/y – d/MM/y - d/MM/y – d/MM/y - d/MM/y – d/MM/y - - - E, d/MM/y – E, d/MM/y - E, d/MM/y – E, d/MM/y - E, d/MM/y – E, d/MM/y - - - - - - - - - d/MM/y GGGGG - - - - - - d/M/y - E, d/M/y - - - - - - - d/M/y - E, d/M/y - - - - - - - - Arabian Time - Arabian Standard Time - Arabian Summer Time - - - - - ACT - ACST - ACDT - - - - - ACWT - ACWST - ACWDT - - - - - AET - AEST - AEDT - - - - - AWT - AWST - AWDT - - - - - China Time - China Standard Time - China Summer Time - - - - - Iran Time - Iran Standard Time - Iran Summer Time - - - - - Israel Time - Israel Standard Time - Israel Summer Time - - - - - Japan Time - Japan Standard Time - Japan Summer Time - - - - - Korean Time - Korean Standard Time - Korean Summer Time - - - - - LHT - LHST - LHDT - - - - - NZT - NZST - NZDT - - - - - Taipei Time - Taipei Standard Time - Taipei Summer Time - - - - - - - - $ - - - euro - euro - - - Malagasy ariary - Malagasy ariarys - - - Seychelles Rupee - - - - - - - tonnes - tonne - {0} tonnes - - - - - µmetres - - - - - {0} ms - {0} ms - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_CC.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_CC.xml deleted file mode 100644 index 996ffbfd2dd..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_CC.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - $ - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_CK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_CK.xml deleted file mode 100644 index 91a8c01c7fc..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_CK.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - $ - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_CX.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_CX.xml deleted file mode 100644 index b3544075c81..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_CX.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - $ - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_DG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_DG.xml deleted file mode 100644 index 46ef7e7f36d..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_DG.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_FK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_FK.xml deleted file mode 100644 index 0a8263f96bb..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_FK.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - £ - - - GB£ - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GB.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GB.xml deleted file mode 100644 index 7998c15128b..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GB.xml +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - - - - - - Normalised Sorting - - - Sort Without Normalisation - Sort Unicode Normalised - - - - - - - - - a.m. - p.m. - - - - - - - HH:mm:ss zzzz - - - - - HH:mm:ss z - - - - - HH:mm:ss - - - - - HH:mm - - - - - - - - a.m./p.m. - - - - - - BST - - - - - CET - CET - CEST - - - - - EET - EET - EEST - - - - - WET - WET - WEST - - - - - - - - Israeli Shekel (1980–1985) - Israeli shekel (1980–1985) - Israeli shekels (1980–1985) - - - Israeli New Shekel - Israeli new shekel - Israeli new shekels - - - - - - - {0} l - {0} l - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GG.xml deleted file mode 100644 index 2e04e93b094..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GG.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GI.xml deleted file mode 100644 index da13cf35752..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GI.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - GB£ - - - £ - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_IM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_IM.xml deleted file mode 100644 index 81feaadf03c..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_IM.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_IO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_IO.xml deleted file mode 100644 index 28cb009af40..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_IO.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_JE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_JE.xml deleted file mode 100644 index 3a60bc5396f..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_JE.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MS.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MS.xml deleted file mode 100644 index a5bc1d502d5..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MS.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - $ - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NF.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NF.xml deleted file mode 100644 index f6909a88e46..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NF.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - $ - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NR.xml deleted file mode 100644 index 7275b76bb64..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NR.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - $ - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NU.xml deleted file mode 100644 index 136971165c2..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NU.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - $ - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PN.xml deleted file mode 100644 index 84f52104e4b..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PN.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - $ - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SC.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SC.xml deleted file mode 100644 index 3453550fc1f..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SC.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - SR - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SH.xml deleted file mode 100644 index d4bb093ea55..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SH.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - GB£ - - - £ - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SX.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SX.xml deleted file mode 100644 index 22af41c9dd1..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SX.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - NAf. - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TK.xml deleted file mode 100644 index 779ea4d5823..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TK.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - $ - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TV.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TV.xml deleted file mode 100644 index 09cff50fe42..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TV.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - $ - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_419.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_419.xml deleted file mode 100644 index 95055302c0f..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_419.xml +++ /dev/null @@ -1,289 +0,0 @@ - - - - - - - - - - - - - inglés (R. U.) - - - R. U. - - - - - - - - MMM 'de' y G - d 'de' MMM 'de' y G - d 'de' MMM - E, d 'de' MMM - E d/M/y G - - - - M/y – M/y GGGGG - M/y – M/y GGGGG - - - d/M/y – d/M/y GGGGG - d/M/y – d/M/y GGGGG - d/M/y – d/M/y GGGGG - - - E, d/M/y – E, d/M/y GGGGG - E, d/M/y – E, d/M/y GGGGG - E, d/M/y – E, d/M/y GGGGG - - - - - - - - - d - l - m - m - j - v - s - - - - - D - L - M - M - J - V - S - - - - - - - h:mm:ss a zzzz - - - - - h:mm:ss a z - - - - - h:mm:ss a - - - - - h:mm a - - - - - - E, HH:mm - E, HH:mm:ss - d 'de' MMM 'de' y G - HH - HH:mm - HH:mm:ss - dd-MMM - E d/M/y - E, d 'de' MMM 'de' y - QQQ 'de' y - - - - HH – HH - - - HH:mm – HH:mm - HH:mm – HH:mm - - - HH:mm – HH:mm v - HH:mm – HH:mm v - - - HH – HH v - - - d – d 'de' MMM - d 'de' MMM – d 'de' MMM - - - E, d 'de' MMM – E, d 'de' MMM - E, d 'de' MMM – E, d 'de' MMM - - - MMM 'de' y – MMM 'de' y - - - d – d 'de' MMM 'de' y - d 'de' MMM – d 'de' MMM 'de' y - d 'de' MMM 'de' y – d 'de' MMM 'de' y - - - E, d 'de' MMM – E, d 'de' MMM 'de' y - E, d 'de' MMM – E, d 'de' MMM 'de' y - E, d 'de' MMM 'de' y – E, d 'de' MMM 'de' y - - - - - - - - - ∅∅∅ - ∅∅∅ - ∅∅∅ - - - - - ∅∅∅ - ∅∅∅ - ∅∅∅ - - - - - ∅∅∅ - ∅∅∅ - ∅∅∅ - - - - - ∅∅∅ - - - - - - - . - , - - - - - 0 - 0 - 00k - 00k - 000k - 000k - 0k M - 0k M - 00k M - 00k M - 000k M - 000k M - - - - - - - ¤#,##0.00 - - - ¤#,##0.00 - - - - - - CAD - - - EUR - - - - THB - - - USD - - - VND - - - - - - - dd. - {0} d. - {0} dd. - - - mm. - {0} m. - {0} mm. - - - sems. - {0} sem. - {0} sems. - - - aa. - {0} a. - {0} aa. - - - aa. l. - {0} a. l. - {0} aa. l. - - - nmi - {0} nmi - {0} nmi - - - - - d. - {0}d. - {0}dd. - - - m. - {0}m. - {0}mm. - - - sem. - {0}sem. - {0}sems. - - - a. - {0}a. - {0}aa. - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_AR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_AR.xml deleted file mode 100644 index a063fea8f8c..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_AR.xml +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - - - - - - - - - - - E d-M - M-y G - - - {0} a el {1} - - h:mm–h:mm a - h:mm–h:mm a - - - HH:mm–HH:mm - HH:mm–HH:mm - - - h:mm–h:mm a v - h:mm–h:mm a v - - - HH:mm–HH:mm v - HH:mm–HH:mm v - - - dd/MM – dd/MM - dd/MM – dd/MM - - - E dd/MM – E dd/MM - E dd/MM – E dd/MM - - - d 'de' MMM 'al' d 'de' MMM - - - E d 'al' E d 'de' MMM - E d 'de' MMM 'al' E d 'de' MMM - - - MM/y – MM/y G - MM/y – MM/y G - - - dd/MM/y – dd/MM/y G - dd/MM/y – dd/MM/y G - dd/MM/y – dd/MM/y G - - - E dd/MM/y – E dd/MM/y G - E dd/MM/y – E dd/MM/y G - E dd/MM/y – E dd/MM/y G - - - MMM 'de' y 'a' MMM 'de' y G - - - d 'de' MMM 'al' d 'de' MMM 'de' y G - d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y G - - - E d 'al' E d 'de' MMM 'de' y G - E d 'de' MMM 'al' E d 'de' MMM 'de' y G - E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y G - - - - - - - - E d-M - M-y - - - {0} a el {1} - - h:mm–h:mm a - h:mm–h:mm a - - - HH:mm–HH:mm - HH:mm–HH:mm - - - HH:mm–HH:mm v - HH:mm–HH:mm v - - - HH–HH v - - - dd/MM – dd/MM - dd/MM – dd/MM - - - E dd/MM – E dd/MM - E dd/MM – E dd/MM - - - d 'de' MMM 'al' d 'de' MMM - - - E d 'al' E d 'de' MMM - E d 'de' MMM 'al' E d 'de' MMM - - - MM/y – MM/y - MM/y – MM/y - - - dd/MM/y – dd/MM/y - dd/MM/y – dd/MM/y - dd/MM/y – dd/MM/y - - - E dd/MM/y – E dd/MM/y - E dd/MM/y – E dd/MM/y - E dd/MM/y – E dd/MM/y - - - MMM 'de' y 'a' MMM 'de' y - - - d 'de' MMM 'al' d 'de' MMM 'de' y - d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y - - - E d 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y - - - - - - - - - ART - ART - ARST - - - - - WART - WART - WARST - - - - - - - , - . - - - - $ - - - US$ - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_CO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_CO.xml deleted file mode 100644 index da9cda565ff..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_CO.xml +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - - - - d/MM/y G - - - - - d/MM/yy GGGGG - - - - - - {0} a el {1} - - H–H - - - h:mm–h:mm a - h:mm–h:mm a - - - H:mm–H:mm - H:mm–H:mm - - - h:mm–h:mm a v - h:mm–h:mm a v - - - H:mm–H:mm v - H:mm–H:mm v - - - H–H v - - - d/MM – d/MM - d/MM – d/MM - - - E d/MM – E d/MM - E d/MM – E d/MM - - - d 'de' MMM 'al' d 'de' MMM - - - E d 'al' E d 'de' MMM - E d 'de' MMM 'al' E d 'de' MMM - - - y–y - - - MM/y – MM/y - MM/y – MM/y - - - d/MM/y – d/MM/y - d/MM/y – d/MM/y - d/MM/y – d/MM/y - - - E d/MM/y – E d/MM/y - E d/MM/y – E d/MM/y - E d/MM/y – E d/MM/y - - - MMM–MMM 'de' y - MMM 'de' y 'a' MMM 'de' y - - - d–d 'de' MMM 'de' y - d 'de' MMM 'al' d 'de' MMM 'de' y - d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y - - - E d 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y - - - - - - - - - a. m. - p. m. - - - - - - - d/MM/y - - - - - d/MM/yy - - - - - - {0} a el {1} - - H–H - - - h:mm–h:mm a - h:mm–h:mm a - - - H:mm–H:mm - H:mm–H:mm - - - H:mm–H:mm v - H:mm–H:mm v - - - H–H v - - - d/MM – d/MM - d/MM – d/MM - - - E d/MM – E d/MM - E d/MM – E d/MM - - - d 'de' MMM 'al' d 'de' MMM - - - E d 'al' E d 'de' MMM - E d 'de' MMM 'al' E d 'de' MMM - - - MM/y – MM/y - MM/y – MM/y - - - d/MM/y – d/MM/y - d/MM/y – d/MM/y - d/MM/y – d/MM/y - - - E d/MM/y – E d/MM/y - E d/MM/y – E d/MM/y - E d/MM/y – E d/MM/y - - - MMM 'de' y 'a' MMM 'de' y - - - d 'de' MMM 'al' d 'de' MMM 'de' y - d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y - - - E d 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y - - - - - - - - - , - . - - - - $ - - - US$ - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_DO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_DO.xml deleted file mode 100644 index 2d78e0f0399..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_DO.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - $ - - - US$ - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_GT.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_GT.xml deleted file mode 100644 index 85c38746b80..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_GT.xml +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - - - - - - - - - - - d/MM/y G - - - - - d/MM/yy GGGGG - - - - - - {0} a el {1} - - h:mm–h:mm a - h:mm–h:mm a - - - HH:mm–HH:mm - HH:mm–HH:mm - - - h:mm–h:mm a v - h:mm–h:mm a v - - - HH:mm–HH:mm v - HH:mm–HH:mm v - - - d/MM – d/MM - d/MM – d/MM - - - E d/MM – E d/MM - E d/MM – E d/MM - - - d 'de' MMM 'al' d 'de' MMM - - - E d 'al' E d 'de' MMM - E d 'de' MMM 'al' E d 'de' MMM - - - y–y - - - MM/y – MM/y - MM/y – MM/y - - - d/MM/y – d/MM/y - d/MM/y – d/MM/y - d/MM/y – d/MM/y - - - E d/MM/y – E d/MM/y - E d/MM/y – E d/MM/y - E d/MM/y – E d/MM/y - - - MMM–MMM 'de' y - MMM 'de' y 'a' MMM 'de' y - - - d–d 'de' MMM 'de' y - d 'de' MMM 'al' d 'de' MMM 'de' y - d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y - - - E d 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y - - - - - - - - - d/MM/y - - - - - d/MM/yy - - - - - - {0} a el {1} - - h:mm–h:mm a - h:mm–h:mm a - - - HH:mm–HH:mm - HH:mm–HH:mm - - - HH:mm–HH:mm v - HH:mm–HH:mm v - - - HH–HH v - - - d/MM – d/MM - d/MM – d/MM - - - E d/MM – E d/MM - E d/MM – E d/MM - - - d 'de' MMM 'al' d 'de' MMM - - - E d 'al' E d 'de' MMM - E d 'de' MMM 'al' E d 'de' MMM - - - MM/y – MM/y - MM/y – MM/y - - - d/MM/y – d/MM/y - d/MM/y – d/MM/y - d/MM/y – d/MM/y - - - E d/MM/y – E d/MM/y - E d/MM/y – E d/MM/y - E d/MM/y – E d/MM/y - - - MMM 'de' y 'a' MMM 'de' y - - - d 'de' MMM 'al' d 'de' MMM 'de' y - d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y - - - E d 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y - - - - - - - - antier - - - - - - - Q - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_PA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_PA.xml deleted file mode 100644 index 89d81567dc7..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_PA.xml +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - MM/dd/y G - - - - - MM/dd/yy GGGGG - - - - - - MM/dd - E, MM/dd - MM/y - MM/dd/y - E MM/dd/y - - - {0} a el {1} - - h:mm–h:mm a - h:mm–h:mm a - - - HH:mm–HH:mm - HH:mm–HH:mm - - - h:mm–h:mm a v - h:mm–h:mm a v - - - HH:mm–HH:mm v - HH:mm–HH:mm v - - - MM/dd – MM/dd - MM/dd – MM/dd - - - E MM/dd – E MM/dd - E MM/dd – E MM/dd - - - d 'de' MMM 'al' d 'de' MMM - - - E d 'al' E d 'de' MMM - E d 'de' MMM 'al' E d 'de' MMM - - - y–y - - - MM/y – MM/y - MM/y – MM/y - - - MM/dd/y – MM/dd/y - MM/dd/y – MM/dd/y - MM/dd/y – MM/dd/y - - - E MM/dd/y – E MM/dd/y - E MM/dd/y – E MM/dd/y - E MM/dd/y – E MM/dd/y - - - MMM–MMM 'de' y - MMM 'de' y 'a' MMM 'de' y - - - d–d 'de' MMM 'de' y - d 'de' MMM 'al' d 'de' MMM 'de' y - d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y - - - E d 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y - - - - - - - - - MM/dd/y - - - - - MM/dd/yy - - - - - - MM/dd - E, MM/dd - MM/y - MM/dd/y - E MM/dd/y - - - {0} a el {1} - - h:mm–h:mm a - h:mm–h:mm a - - - HH:mm–HH:mm - HH:mm–HH:mm - - - HH:mm–HH:mm v - HH:mm–HH:mm v - - - HH–HH v - - - MM/dd – MM/dd - MM/dd – MM/dd - - - E MM/dd – E MM/dd - E MM/dd – E MM/dd - - - d 'de' MMM 'al' d 'de' MMM - - - E d 'al' E d 'de' MMM - E d 'de' MMM 'al' E d 'de' MMM - - - MM/y – MM/y - MM/y – MM/y - - - MM/dd/y – MM/dd/y - MM/dd/y – MM/dd/y - MM/dd/y – MM/dd/y - - - E MM/dd/y – E MM/dd/y - E MM/dd/y – E MM/dd/y - E MM/dd/y – E MM/dd/y - - - MMM 'de' y 'a' MMM 'de' y - - - d 'de' MMM 'al' d 'de' MMM 'de' y - d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y - - - E d 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y - - - - - - - - antier - - - - - - - B/. - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ff_MR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ff_MR.xml deleted file mode 100644 index 212dcabbf2d..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ff_MR.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - UM - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fo.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fo.xml deleted file mode 100644 index beb80abc3d5..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fo.xml +++ /dev/null @@ -1,1733 +0,0 @@ - - - - - - - - - - - - abkhaziskt - afríska - amhariskt - arabiskt - assamesiskt - asu (Tanzania) - aymara - azerbaijaniskt - hvitarussiskt - bemba - bena (Tanzania) - bulgarskt - bambara - bengaliskt - tibetanskt - bretonskt - bosniskt - bakossi - katalanskt - kekkiskt - valisiskt - danskt - týskt - divehi - dzongkha - kiembu - efik - grikiskt - enskt - esperanto - spanskt - estlendskt - baskiskt - persiskt - finskt - filipiniskt - fidjianskt - føroyskt - franskt - vestfrisikt - írskt - skotskt gæliskt - galisiskt - guarani - gujariti - haussa - hawaiianskt - hebraiskt - hindi - kroatiskt - haitiskt - ungarskt - armenskt - interlingua - indonesiskt - interlingue - igbo - íslendskt - italskt - japanskt - javanesiskt - georgiskt - kapverdiskt - kazakiskt - kambodjanskt - kannada - koreanskt - kashmiriskt - kurdiskt - kirgisikt - latín - lahnda - luxemburgiskt - lingala - laotiskt - litavskt - olulujia - latviskt - malagasiskt - maoriskt - makedonskt - malayalam - mongoliskt - marathiskt - malajiskt - maltesiskt - burmesiskt - norskt bokmál - nepalskt - hollendskt - nýnorskt - norskt - nyanja - occitan - oriya - ossetiskt - punjabiskt - polskt - afghanskt - portugisiskt - quechua - romansh - rundi - romanskt - russiskt - ruanda - sanskrit - sindhi - sango - serbokroatiskt - sinhalesiskt - slovakiskt - slovenskt - samoiskt - shona - somaliskt - albanskt - serbiskt - swatiskt - sesotho - sundanesiskt - svenskt - swahili - shimaoré - tamilskt - telugiskt - tetum - tajikiskt - thailendskt - tigrinya - turkmenskt - tagalog - klingonskt - tswana - tonganskt - tok pisin - turkiskt - tsonga - tatariskt - twi - tahitiskt - uighur - ukrainskt - ukjent mál - urdu - uzbekiskt - venda - vietnamesiskt - wolof - xhosa - jiddiskt - yoruba - kantonesískt - kinesiskt - sulu - - - - - - heimur - Africa - Norðuramerika - Suðuramerika - Kyrrahavsoyggjarnar - Vesturafrika - Sentralamerika - Eysturafrika - Norðurafrika - Miðafrika - Suður Afrika - Amerika - Amerika norður Meksiko - Karibia - Eysturasia - Suðurasia - Suðureysturasia - Suðurevropa - Avstralia og Nýsæland - Melanesia - Mikronesiske regionen - Polynesia - Asia - Sentralasia - Vesturasia - Evropa - Eysturevropa - Norðurevropa - Vesturevropa - Latínamerika - Ascensionoyggjin - Andorra - Sameindu Emirríkini - Afganistan - Antigua og Barbuda - Anguilla - Albania - Armenia - Niðurlendsku Antilloyggjarnar - Angola - Antarktis - Argentina - Amerikanska Sámoa - Eysturríki - Avstralia - Aruba - Áland - Aserbajdsjan - Bosnia-Hersegovina - Barbados - Bangladesj - Belgia - Burkina Faso - Bulgaria - Bahrain - Burundi - Benin - Saint Barthélemy - Bermuda - Brunei - Bolivia - Niðurlonds Karibia - Brasilia - Bahamas - Butan - Bouvetoyggjin - Botsvana - Hvítarussland - Belis - Kanada - Kokosoyggjarnar - Kongo-Kinshasa - Miðafrikalýðveldið - Kongo - Kongo-Brazzaville - Sveis - Fílabeinsstrondin - Cooksoyggjarnar - Kili - Kamerun - Kina - Kolombia - Clippertonoyggjin - Kosta Rika - Kuba - Grønhøvdaoyggjarnar - Curaçao - Jólaoyggjin - Kýpros - Kekkia - Týskland - Diego Garcia - Djibouti - Danmørk - Dominika - Domingo lýðveldið - Algeria - Ceuta og Melilla - Ekvador - Estland - Egyptaland - Vestursahara - Eritrea - Spania - Etiopia - Evropasamveldið - Finnland - Fiji - Falklandsoyggjarnar - Mikronesia - Føroyar - Frakland - Gabon - Stóra Bretland - Stóra Bretland - Grenada - Georgia - Fransk Gujana - Guernsey - Ghana - Gibraltar - Grønland - Gambia - Guinea - Guadeloupe - Ekvator Guinea - Grikkaland - Suðurgeorgia - Guatemala - Guam - Guinea Bissau - Gujana - Hongkong - Hongkong - Heard- og McDonald-oyggjarnar - Honduras - Kroatia - Haiti - Ungarn - Kanaríoyggjarnar - Indonesia - Írland - Ísrael - Mann - India - Bretsku Indiahavsoyggjarnar - Irak - Iran - Ísland - Italia - Jersey - Jameika - Jordania - Japan - Kenja - Kirgisia - Kambodja - Kiribati - Komorooyggjarnar - Saint Kitts og Nevis - Norður-Korea - Suður-Korea - Kuvait - Caymanoyggjarnar - Kasakstan - Laos - Libanon - Saint Lusia - Liktenstein - Sri Lanka - Liberia - Lesoto - Litava - Luksemborg - Lettland - Libya - Marokko - Monako - Moldova - Montenegro - Fransk Saint Martin - Madagaskar - Marshalloyggjarnar - Makedónia - Mali - Burma - Mongolia - Makao - Makao - Norðurmarianoyggjarnar - Martinique - Móritania - Montserrat - Malta - Móritius - Maldivuoyggjarnar - Malavi - Meksiko - Maleisia - Mosambik - Namibia - Ný-Kaledonia - Niger - Norfolkoyggjin - Nigeria - Nikaragua - Niðurlond - Noreg - Nepal - Nauru - Niue - Ný Sæland - Oman - Panama - Perú - Franska Polynesia - Papua Nýguinea - Filipsoyggjar - Pakistan - Pólland - Saint Pierre og Miquelon - Pitcairn - Puerto Rico - Palestinskt territorium - Palestina - Portugal - Palau - Paraguei - Katar - Réunion - Rumenia - Serbia - Russland - Ruanda - Saudi-Arábia - Sálomonoyggjarnar - Seyskelloyggjarnar - Norðursudan - Svøríki - Singapor - Saint Helena - Slovenia - Svalbard og Jan Mayen - Slovakia - Sierra Leone - San Marino - Senegal - Somalia - Surinam - Suðursudan - Sao Tome og Prinsipi - El Salvador - Niðurlonds Saint Martin - Syria - Svasiland - Tristan da Cunha - Turks- og Caicosoyggjarnar - Kjad - Togo - Teiland - Tadsjikistan - Tokelau - Eystur-Timor - Turkmenistan - Tunesia - Tonga - Turkaland - Trinidad og Tobago - Tuvalu - Teivan - Tansania - Ukreina - Uganda - Sambandsríki Amerika - USA - Uruguei - Usbekistan - Vatikan - Saint Vinsent og Grenadinoyggjar - Venesuela - Stóra Bretlands Jómfrúoyggjarnar - Sambandsríki Amerikas Jómfrúoyggjarnar - Vietnam - Vanuatu - Wallis og Futuna - Sámoa - Kosovo - Jemen - Mayotte - Suðurafrikalýðveldið - Sambia - Simbabvi - (ukendt område) - - - monotonísk - pinyin - polytonísk - Wade-Giles - - - röðina fyrir fjöltyngi evrópskum skjölum - - - SI-einingar - GB-einingar - USA-einingar - - - - [a á b d ð e f g h i í j k l m n o ó p r s t u ú v x y ý æ ø] - [c q w z] - [A Á B C D Ð E F G H I Í J K L M N O Ó P Q R S T U Ú V W X Y Ý Z Æ Ø] - {0}… - …{0} - {0}…{1} - {0} … - … {0} - {0} … {1} - ? - - - - - - - - - - - - - - EEEE dd MMMM y G - - - - - d. MMM y G - - - - - dd-MM-y G - - - - - dd-MM-yy GGGGG - - - - - - - {1} {0} - - - - - {1} {0} - - - - - {1} {0} - - - - - {1} {0} - - - - d - d E - h a - HH - h:mm a - HH:mm - h:mm:ss a - HH:mm:ss - L - M-d - E, M-d - LLL - MMM d - E MMM d - mm:ss - y - y-MM - y-MM-dd - E, y-MM-dd - y MMM - y MMM d - E, y MMM d - y QQQ - y QQQQ - - - {0} – {1} - - d–d - - - h a – h a - h–h a - - - HH–HH - - - h:mm a – h:mm a - h:mm–h:mm a - h:mm–h:mm a - - - HH:mm–HH:mm - HH:mm–HH:mm - - - h:mm a – h:mm a v - h:mm–h:mm a v - h:mm–h:mm a v - - - HH:mm–HH:mm v - HH:mm–HH:mm v - - - h a – h a v - h–h a v - - - HH–HH v - - - M–M - - - MM-dd – dd - MM-dd – MM-dd - - - E, MM-dd – E, MM-dd - E, MM-dd – E, MM-dd - - - LLL–LLL - - - MM-d – d - MM-d – MM-d - - - E, MM-d – E, MM-d - E, MM-d – E, MM-d - - - y–y - - - y-MM – MM - y-MM – y-MM - - - y-MM-dd – dd - y-MM-dd – MM-dd - y-MM-dd – y-MM-dd - - - E, y-MM-dd – E, y-MM-dd - E, y-MM-dd – E, y-MM-dd - E, y-MM-dd – E, y-MM-dd - - - y-MM – MM - y-MM – y-MM - - - y-MM-d – d - y-MM-dd – MM-d - y-MM-dd – y-MM-dd - - - E, y-MM-dd – E, y-MM-dd - E, y-MM-dd – E, y-MM-dd - E, y-MM-dd – E, y-MM-dd - - - y-MM – MM - y-MM – y-MM - - - - - - - - - jan - feb - mar - apr - mai - jun - jul - aug - sep - okt - nov - des - - - J - F - M - A - M - J - J - A - S - O - N - D - - - januar - februar - mars - apríl - mai - juni - juli - august - september - oktober - november - desember - - - - - J - F - M - A - M - J - J - A - S - O - N - D - - - - - - - sun - mán - týs - mik - hós - frí - ley - - - su - - - mi - - fr - le - - - sunnudagur - mánadagur - týsdagur - mikudagur - hósdagur - fríggjadagur - leygardagur - - - - - S - M - T - M - H - F - L - - - su - - - mi - - fr - le - - - - - - - K1 - K2 - K3 - K4 - - - 1. kvartal - 2. kvartal - 3. kvartal - 4. kvartal - - - - - 1 - 2 - 3 - 4 - - - 1. kvartal - 2. kvartal - 3. kvartal - 4. kvartal - - - - - - - f.p. - s.p. - - - um fyrrapartur - um seinnapartur - - - - - fyrrapartur - seinnapartur - - - - - - fyrir Krist - fyrir látlaus tímatal - eftir Krist - látlaus tímatal - - - f.Kr. - f.l.t. - e.Kr. - l.t. - - - fKr - flt - eKr - lt - - - - - - EEEE dd MMMM y - - - - - d. MMM y - - - - - dd-MM-y - - - - - dd-MM-yy - - - - - - - HH:mm:ss zzzz - - - - - HH:mm:ss z - - - - - HH:mm:ss - - - - - HH:mm - - - - - - - {1} {0} - - - - - {1} {0} - - - - - {1} {0} - - - - - {1} {0} - - - - d - d E - h a - HH - h:mm a - HH:mm - h:mm:ss a - HH:mm:ss - L - M-d - E, M-d - LLL - MMM d - E MMM d - mm:ss - y - y-MM - y-MM-dd - E, y-MM-dd - y MMM - y MMM d - E, y MMM d - y QQQ - y QQQQ - - - {0} – {1} - - d–d - - - h a – h a - h–h a - - - HH–HH - - - h:mm a – h:mm a - h:mm–h:mm a - h:mm–h:mm a - - - HH:mm–HH:mm - HH:mm–HH:mm - - - h:mm a – h:mm a v - h:mm–h:mm a v - h:mm–h:mm a v - - - HH:mm–HH:mm v - HH:mm–HH:mm v - - - h a – h a v - h–h a v - - - HH–HH v - - - M–M - - - MM-dd – dd - MM-dd – MM-dd - - - E, MM-dd – E, MM-dd - E, MM-dd – E, MM-dd - - - LLL–LLL - - - MM-d – d - MM-d – MM-d - - - E, MM-d – E, MM-d - E, MM-d – E, MM-d - - - y–y - - - y-MM – MM - y-MM – y-MM - - - y-MM-dd – dd - y-MM-dd – MM-dd - y-MM-dd – y-MM-dd - - - E, y-MM-dd – E, y-MM-dd - E, y-MM-dd – E, y-MM-dd - E, y-MM-dd – E, y-MM-dd - - - y-MM – MM - y-MM – y-MM - - - y-MM-d – d - y-MM-dd – MM-d - y-MM-dd – y-MM-dd - - - E, y-MM-dd – E, y-MM-dd - E, y-MM-dd – E, y-MM-dd - E, y-MM-dd – E, y-MM-dd - - - y-MM – MM - y-MM – y-MM - - - - - - - - tíðarrokning - - - ár - í fjør - í ár - næsta ár - - - mánaður - seinasta mánað - henda mánaðin - næsta mánað - - - vika - seinastu viku - hesu viku - næstu viku - - - dagur - fyrradagin - í gjár - í dag - í morgin - í ovurmorgin - - - gerandisdagur - - - seinasta sunnudag - næsta sunnudag - sunnudagin í næstu viku - - - seinasta mánadag - næsta mánadag - mánadagin í næstu viku - - - seinasta týsdag - næsta týsdag - týsdagin í næstu viku - - - seinasta mikudag - næsta mikudag - mikudagin í næstu viku - - - seinasta hósdag - næsta hósdag - hósdagin í næstu viku - - - seinasta fríggjadag - næsta fríggjadag - fríggjadagin í næstu viku - - - seinasta leygardag - næsta leygardag - leygardagin í næstu viku - - - AM/PM - - - tími - - - minuttur - - - sekund - - - tíðarøki - - - - - - , - . - ; - % - + - - ×10^ - - - ¤¤¤ - - - - - #,##0.### - - - - - 0 tusind - 0 tusind - 00 tusind - 00 tusind - 000 tusind - 000 tusind - 0 million - 0 millioner - 00 million - 00 millioner - 000 million - 000 millioner - 0 milliard - 0 milliarder - 00 milliard - 00 milliarder - 000 milliard - 000 milliarder - 0 billion - 0 billioner - 00 billion - 00 billioner - 000 billion - 000 billioner - - - - - 0 td - 0 td - 00 td - 00 td - 000 td - 000 td - 0 mn - 0 mn - 00 mn - 00 mn - 000 mn - 000 mn - 0 md - 0 md - 00 md - 00 md - 000 md - 000 md - 0 bn - 0 bn - 00 bn - 00 bn - 000 bn - 000 bn - - - - - - - #E0 - - - - - - - #,##0 % - - - - - - - ¤#,##0.00;¤-#,##0.00 - - - {0} {1} - {0} {1} - - - - donsk króna - donsk króna - donska krónur - kr - - - euro - euro - euro - - - íslendsk króna - íslendsk króna - íslendska krónur - - - norsk króna - norsk króna - norska krónur - - - svensk króna - svensk króna - svenska krónur - - - unse sølv - unse sølv - unse sølv - - - unse guld - unse guld - unse guld - - - unse palladium - unse palladium - unse palladium - - - unse platin - unse platin - unse platin - - - - - - - {0} á {1} - - - tyngdakraft Jørðin - {0} tyngdakraft Jørðin - {0} tyngdakraft Jørðin - - - bueminuttir - {0} bueminutt - {0} bueminuttir - - - buesekundir - {0} buesekund - {0} buesekundir - - - gradir - {0} grad - {0} gradir - - - hektar - {0} hektar - {0} hektar - - - samdøgur - {0} samdøgur - {0} samdøgur - - - tímar - {0} tími - {0} tímar - - - millissekundir - {0} millisekund - {0} millissekundir - - - minuttir - {0} minuttur - {0} minuttir - - - mánaðir - {0} mánadur - {0} mánaðir - - - sekundir - {0} sekund - {0} sekundir - - - vikur - {0} vika - {0} vikur - - - ára - {0} ár - {0} ára - - - sentimeter - {0} sentimeter - {0} sentimeter - - - kilometer - {0} kilometer - {0} kilometer - - - meter - {0} meter - {0} meter - - - millimeter - {0} millimeter - {0} millimeter - - - pikometer - {0} pikometer - {0} pikometer - - - gram - {0} gram - {0} gram - - - kilogram - {0} kilogram - {0} kilogram - - - hektopascal - {0} hektopascal - {0} hektopascal - - - millibar - {0} millibar - {0} millibar - - - gradir Celsius - {0} grad Celsius - {0} gradir Celsius - - - gradir Fahrenheit - {0} grad Fahrenheit - {0} gradir Fahrenheit - - - - - {0}/{1} - - - tyngdakraft Jørðin - {0} G - {0} G - - - bueminuttir - {0}′ - {0}′ - - - buesekundir - {0}″ - {0}″ - - - gradir - {0}° - {0}° - - - hektar - {0} ha - {0} ha - - - {0} km² - {0} km² - - - {0} m² - {0} m² - - - samdøgur - {0} d - {0} d - - - tímar - {0} h - {0} h - - - millissekundir - {0} ms - {0} ms - - - minuttir - {0} min - {0} min - - - mánaðir - {0} mán - {0} mán - - - sekundir - {0} s - {0} s - - - vikur - {0} v - {0} v - - - ára - {0} á - {0} á - - - sentimeter - {0} cm - {0} cm - - - kilometer - {0} km - {0} km - - - meter - {0} m - {0} m - - - millimeter - {0} mm - {0} mm - - - pikometer - {0} pm - {0} pm - - - gram - {0} g - {0} g - - - kilogram - {0} kg - {0} kg - - - {0} kW - {0} kW - - - {0} W - {0} W - - - hektopascal - {0} hPa - {0} hPa - - - millibar - {0} mbar - {0} mbar - - - {0} km/h - {0} km/h - - - {0} m/s - {0} m/s - - - gradir Celsius - {0}°C - {0}°C - - - gradir Fahrenheit - {0}°F - {0}°F - - - {0} km³ - {0} km³ - - - {0} l - {0} l - - - - - {0}/{1} - - - {0}G - {0}G - - - {0}′ - {0}′ - - - {0}″ - {0}″ - - - {0}° - {0}° - - - {0}ha - {0}ha - - - {0}km² - {0}km² - - - {0}m² - {0}m² - - - {0}d - {0}d - - - {0}h - {0}h - - - {0}ms - {0}ms - - - {0}m - {0}m - - - {0}m - {0}m - - - {0}s - {0}s - - - {0}v - {0}v - - - {0}á - {0}á - - - {0}cm - {0}cm - - - {0}km - {0}km - - - {0}m - {0}m - - - {0}mm - {0}mm - - - {0}pm - {0}pm - - - {0}g - {0}g - - - {0}kg - {0}kg - - - {0}kW - {0}kW - - - {0}W - {0}W - - - {0}hPa - {0}hPa - - - {0}mbar - {0}mbar - - - {0}km/h - {0}km/h - - - {0}m/s - {0}m/s - - - {0}° - {0}° - - - {0}°F - {0}°F - - - {0}km³ - {0}km³ - - - {0}L - {0}L - - - - h:mm - - - h:mm:ss - - - m:ss - - - - - {0}, {1} - {0}, {1} - {0} og {1} - {0} og {1} - - - {0}, {1} - {0}, {1} - {0}, {1} - {0}, {1} - - - {0} {1} - {0} {1} - {0} {1} - {0} {1} - - - {0}, {1} - {0}, {1} - {0}, {1} - {0}, {1} - - - - - já:j - nei:n - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_DJ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_DJ.xml deleted file mode 100644 index 5afe4e1f320..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_DJ.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - Fdj - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_DZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_DZ.xml deleted file mode 100644 index c9eb98a4ea0..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_DZ.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - DA - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_GF.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_GF.xml deleted file mode 100644 index c2d58407e55..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_GF.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_HT.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_HT.xml deleted file mode 100644 index 762c7397e6e..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_HT.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - G - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MA.xml deleted file mode 100644 index 29283357a21..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MA.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MR.xml deleted file mode 100644 index 27a4bfdbdb6..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MR.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - UM - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_SY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_SY.xml deleted file mode 100644 index f0573372a9f..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_SY.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - LS - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_TD.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_TD.xml deleted file mode 100644 index be31f375d3e..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_TD.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_TN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_TN.xml deleted file mode 100644 index dd30ff8141d..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_TN.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - DT - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_VU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_VU.xml deleted file mode 100644 index 9e5176af806..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_VU.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - VT - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ha_Latn_NE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ha_Latn_NE.xml deleted file mode 100644 index 1c896cdb9ad..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ha_Latn_NE.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - 中美洲 - 加勒比 - 波利尼西亞 - 阿拉伯聯合酋長國 - 安提瓜及巴布達 - 阿魯巴 - 阿塞拜疆 - 波斯尼亞和黑塞哥維那 - 巴巴多斯 - 布隆迪 - 貝寧 - 聖巴泰勒米 - 博茨瓦納 - 伯利茲 - 剛果 - 金夏沙 - 剛果 - 布拉薩 - 科特迪瓦 - 象牙海岸 - 哥斯達黎加 - 佛得角 - 塞浦路斯 - 厄立特里亞 - 埃塞俄比亞 - 加蓬 - 格林納達 - 格魯吉亞 - 加納 - 岡比亞 - 南佐治亞島與南桑威奇群島 - 危地馬拉 - 赫德與麥當勞群島 - 洪都拉斯 - 克羅地亞 - 英屬地曼島 - 意大利 - 肯雅 - 科摩羅 - 聖基茨和尼維斯 - 聖盧西亞 - 列支敦士登 - 利比里亞 - 萊索托 - 黑山 - 馬里 - 毛里塔尼亞 - 蒙塞拉特島 - 毛里裘斯 - 馬爾代夫 - 莫桑比克 - 尼日爾 - 尼日利亞 - 瑙魯 - 阿曼 - 法屬波利尼西亞 - 巴布亞新幾內亞 - 皮特凱恩島 - 卡塔爾 - 盧旺達 - 沙特阿拉伯 - 所羅門群島 - 塞舌爾 - 斯洛文尼亞 - 斯瓦爾巴特群島及揚馬延島 - 塞拉利昂 - 索馬里 - 蘇里南 - 斯威士蘭 - 特克斯和凱科斯群島 - 乍得 - 法屬南部地區 - 湯加 - 千里達和多巴哥 - 圖瓦盧 - 坦桑尼亞 - 梵蒂岡宮城 - 聖文森特和格林納丁斯 - 瓦努阿圖 - 也門 - 贊比亞 - 津巴布韋 - - - 傳統德國拼字法 - 1996 德國拼字法 - San Giorgio/Bila 方言 - 已修訂拼字法 - 蘇格蘭標準英語 - - - 日曆 - 專用區 - - - 繁體中文排序 (Big5) - 佛教曆法 - 梵文位數 - 詞典排序 - 埃塞俄比亞數字 - 埃及曆 - 埃塞俄比亞阿美德阿萊姆曆 - 簡體中文排序 (GB2312) - 格魯吉亞數字 - 卡納達數字 - 老撾數字 - 馬來亞位數 - 蒙古文位數 - 奧里亞數字 - 改革版排序 - 泰米爾數字 - - - 數值 - 重音 - 韓文 - - - - - - - - M-d - M-d(E) - - - - - - - - 正月 - 二月 - 三月 - 四月 - 五月 - 六月 - 七月 - 八月 - 九月 - 十月 - 十一月 - 十二月 - - - - - - - - - - - - - 十一 - 十二 - - - 正月 - 二月 - 三月 - 四月 - 五月 - 六月 - 七月 - 八月 - 九月 - 十月 - 十一月 - 十二月 - - - - - 正月 - 二月 - 三月 - 四月 - 五月 - 六月 - 七月 - 八月 - 九月 - 十月 - 十一月 - 十二月 - - - - - - - - - - - - - 十一 - 十二 - - - 正月 - 二月 - 三月 - 四月 - 五月 - 六月 - 七月 - 八月 - 九月 - 十月 - 十一月 - 十二月 - - - - - - - U年MMMdEEEE - - - - - U年MMMd - - - - - U年MMMd - - - - - - - - - Gy年M月d日EEEE - - - - - Gy年M月d日 - - - - - Gy年M月d日 - - - - - Gy/M/d - - - - - - d日E - Gy年 - Gy年M月 - Gy年M月d日 - Gy年M月d日E - d/M - E, d/M - M月d日E - Gy年 - Gy年 - Gy/M - Gy/M/d - Gy/M/dE - Gy年M月 - Gy年M月d日 - Gy年M月d日E - Gy年QQQ - Gy年QQQQ - - - - d/M 至 d/M - d/M 至 d/M - - - d/M(E) 至 d/M(E) - d/M(E) 至 d/M(E) - - - Gy年至y年 - - - Gy/M至y/M - Gy/M至y/M - - - Gy/M/d至y/M/d - Gy/M/d至y/M/d - Gy/M/d至y/M/d - - - Gy/M/dE至y/M/dE - Gy/M/dE至y/M/dE - Gy/M/dE至y/M/dE - - - Gy年M月至M月 - Gy年M月至y年M月 - - - Gy年M月d日至d日 - Gy年M月d日至M月d日 - Gy年M月d日至y年M月d日 - - - Gy年M月d日E至d日E - Gy年M月d日E至M月d日E - Gy年M月d日E至y年M月d日E - - - Gy年M月至M月 - Gy年M月至y年M月 - - - - - - - - - Q1 - Q2 - Q3 - Q4 - - - - - Q1 - Q2 - Q3 - Q4 - - - - - - 公元前 - 公元 - - - BC - BCE - AD - CE - - - - - - y年M月d日EEEE - - - - - d/M/yy - - - - - - d日E - E ah:mm - E ah:mm:ss - Gy年M月d日E - d/M - E, d/M - dd/MM - M月d日E - M/y - d/M/y - y/M/dE - MM/y - y年M月d日E - - - - d/M 至 d/M - d/M 至 d/M - - - d/M(E) 至 d/M(E) - d/M(E) 至 d/M(E) - - - M/y 至 M/y - M/y 至 M/y - - - d/M/y 至 d/M/y - d/M/y 至 d/M/y - d/M/y 至 d/M/y - - - d/M/y(E) 至 d/M/y(E) - d/M/y(E) 至 d/M/y(E) - d/M/y(E) 至 d/M/y(E) - - - - - - - - d日E - d-M - d-M(E) - Gy/M/dE - - - - - - - 星期 - - {0} 星期後 - - - {0} 星期前 - - - - - {0} 星期後 - - - {0} 星期前 - - - - 星期幾 - - - 上星期日 - 本星期日 - 下星期日 - - - 上星期日 - 本星期日 - 下星期日 - - - 上星期一 - 本星期一 - 下星期一 - - - 上星期一 - 本星期一 - 下星期一 - - - 上星期二 - 本星期二 - 下星期二 - - - 上星期二 - 本星期二 - 下星期二 - - - 上星期三 - 本星期三 - 下星期三 - - - 上星期三 - 本星期三 - 下星期三 - - - 上星期四 - 本星期四 - 下星期四 - - - 上星期四 - 本星期四 - 下星期四 - - - 上星期五 - 本星期五 - 下星期五 - - - 上星期五 - 本星期五 - 下星期五 - - - 上星期六 - 本星期六 - 下星期六 - - - 上星期六 - 本星期六 - 下星期六 - - - - - {0}小時後 - - - {0}小時前 - - - - - - {0}分後 - - - {0}分前 - - - - - {0}秒後 - - - {0}秒前 - - - - - {0}夏令時間 - {0}標準時間 - - 耶烈萬 - - - 盧安達 - - - 帕爾默 - - - 特羅爾站 - - - 昭和 - - - 杜蒙杜爾維爾 - - - 珀斯 - - - 荷伯特 - - - 悉尼 - - - 布里斯本 - - - 麥夸里 - - - 阿魯巴 - - - 薩拉熱窩 - - - 巴巴多斯 - - - 聖巴夫林米 - - - 大坎普 - - - 馬塞約 - - - 累西腓 - - - 伯利茲 - - - 伊努維克 - - - 道森灣 - - - 愛民頓 - - - 哈利法克斯 - - - 格萊斯灣 - - - 可可斯群島 - - - 阿比贊 - - - 聖地亞哥 - - - 哥斯達黎加 - - - 佛得角 - - - 尼科西亞 - - - 聖多明各 - - - 阿斯馬拉 - - - 史坦雷 - - - 利布維 - - - 格林納達 - - - 法屬蓋亞那 - - - 圖勒 - - - 危地馬拉 - - - 圭亞那 - - - 香港 - - - 錫江 - - - 雷克雅未克 - - - 內羅畢 - - - 比斯凱克 - - - 科摩羅 - - - 聖盧西亞 - - - 馬塞魯 - - - 基希訥烏 - - - 波德戈里察 - - - 馬久羅 - - - 斯科普里 - - - 澳門 - - - 努瓦克肖特 - - - 蒙塞拉特島 - - - 馬爾代夫 - - - 巴伊亞德班德拉斯 - - - 墨西哥城 - - - 溫特和克 - - - 努美阿 - - - 拉各斯 - - - 馬那瓜 - - - 瑙魯 - - - 紐埃 - - - 馬克薩斯群島 - - - 甘比爾 - - - 卡拉奇 - - - 密克隆 - - - 匹特開恩群島 - - - 加沙 - - - 希伯侖 - - - 卡塔爾 - - - 留尼旺 - - - 貝爾格萊德 - - - 阿納德爾 - - - 利雅得 - - - 瓜達爾卡納爾島 - - - 盧布爾雅那 - - - 朗伊爾城 - - - 伯拉第斯拉瓦 - - - 摩加迪沙 - - - 凱爾蓋朗 - - - 杜尚別 - - - 阿什哈巴德 - - - 湯加塔布島 - - - 達累斯薩拉姆 - - - 烏日哥羅德 - - - 埃達克 - - - 亞庫塔特 - - - 博伊西 - - - 北達科他州比尤拉 - - - 北達科他州新薩勒姆 - - - 北達科他州申特城 - - - 梅諾米尼 - - - 印第安納州溫森斯 - - - 印第安納州特爾城 - - - 印第安納州諾克斯 - - - 印第安納州馬倫哥 - - - 印第安納波利斯 - - - 印第安納州韋韋 - - - 蒙得維的亞 - - - 聖文森特 - - - 加拉加斯 - - - 馬約特 - - - 約翰內斯堡 - - - 盧薩卡 - - - - 北美東部時間 - 北美東部標準時間 - 北美東部夏令時間 - - - - - 北美山區時間 - 北美山區標準時間 - 北美山區夏令時間 - - - - - 北美太平洋時間 - 北美太平洋標準時間 - 北美太平洋夏令時間 - - - - - 亞塞拜疆時間 - 亞塞拜疆標準時間 - 亞塞拜疆夏令時間 - - - - - 佛得角時間 - 佛得角標準時間 - 佛得角夏令時間 - - - - - 可可斯群島時間 - - - - - 加拉帕戈群島時間 - - - - - 格魯吉亞時間 - 格魯吉亞標準時間 - 格魯吉亞夏令時間 - - - - - 波斯灣海域時間 - - - - - 圭亞那時間 - - - - - 印度時間 - - - - - 麥夸里群島時間 - - - - - 馬爾代夫時間 - - - - - 馬克沙斯時間 - - - - - 毛里裘斯時間 - 毛里裘斯標準時間 - 毛里裘斯夏令時間 - - - - - 瑙魯時間 - - - - - 新喀里多尼亞時間 - 新喀里多尼亞標準時間 - 新喀里多尼亞夏令時間 - - - - - 巴布亞新畿內亞時間 - - - - - 皮特康時間 - - - - - 新加坡時間 - - - - - 所羅門群島時間 - - - - - 瓦努阿圖時間 - 瓦努阿圖標準時間 - 瓦努阿圖夏令時間 - - - - - - - - - 0千 - 0萬 - 00萬 - - - - - - 阿拉伯聯合酋長國迪爾汗 - 阿拉伯聯合酋長國迪爾汗 - - - 澳元 - 澳元 - - - 阿魯巴盾 - 阿魯巴盾 - - - 亞塞拜疆馬納特 - 亞塞拜疆馬納特 - - - 波斯尼亞-赫塞哥維納第納爾 - - - 波斯尼亞-赫塞哥維納可轉換馬克 - 波斯尼亞-赫塞哥維納可轉換馬克 - - - 巴巴多斯元 - 巴巴多斯元 - - - 布隆迪法郎 - 布隆迪法郎 - - - 博茨瓦納普拉 - 博茨瓦納普拉 - - - 伯利茲元 - 伯利茲元 - - - 加元 - - - 哥斯達黎加科郎 - 哥斯達黎加科郎 - - - 佛得角埃斯庫多 - 佛得角埃斯庫多 - - - 丹麥克羅納 - - - 埃塞俄比亞比爾 - 埃塞俄比亞比爾 - - - 格魯吉亞拉里 - 格魯吉亞拉里 - - - 加納塞地 - 加納塞地 - - - 岡比亞達拉西 - 岡比亞達拉西 - - - 危地馬拉格查爾 - 危地馬拉格查爾 - - - 港元 - 港元 - - - 克羅地亞庫納 - 克羅地亞庫納 - - - 意大利里拉 - - - - - - 開曼群島美元 - - - 利比利亞元 - 利比利亞元 - - - 立陶宛里塔 - - - 馬達加斯加艾瑞爾 - 馬達加斯加艾瑞爾 - - - 毛里塔尼亞烏吉亞 - 毛里塔尼亞烏吉亞 - - - 毛里裘斯盧布 - 毛里裘斯盧布 - - - 馬爾代夫盧非亞 - 馬爾代夫盧非亞 - - - 莫桑比克梅蒂卡爾 - 莫桑比克梅蒂卡爾 - - - 尼日利亞奈拉 - 尼日利亞奈拉 - - - 挪威克羅納 - - - 紐西蘭元 - 紐西蘭元 - - - 巴布亞新畿內亞基那 - 巴布亞新畿內亞基那 - - - 卡塔爾里亞爾 - 卡塔爾里亞爾 - - - 塞爾維亞第納爾 - 塞爾維亞第納爾 - - - 盧旺達法郎 - 盧旺達法郎 - - - 沙特阿拉伯里亞爾 - 沙特阿拉伯里亞爾 - - - 所羅門群島元 - 所羅門群島元 - - - 瑞典克羅納 - - - 新加坡元 - 新加坡元 - - - 塞拉利昂利昂 - 塞拉利昂利昂 - - - 聖多美和普林西比多布拉 - 聖多美和普林西比多布拉 - - - 新台幣 - 新台幣 - - - US$ - - - 瓦努阿圖瓦圖 - 瓦努阿圖瓦圖 - - - 中非法郎 - 中非法郎 - - - 東加勒比元 - 東加勒比元 - - - 多哥非洲共同體法郎 - 多哥非洲共同體法郎 - - - 太平洋法郎 - 太平洋法郎 - - - 也門里雅 - 也門里雅 - - - - - - - 米/平方秒 - {0} 米/平方秒 - - - 角分 - {0} 角分 - - - 角秒 - {0} 角秒 - - - 平方厘米 - {0} 平方厘米 - - - 平方呎 - {0} 平方呎 - - - 平方吋 - {0} 平方吋 - - - 平方米 - {0} 平方米 - - - 公升/公里 - {0} 公升/公里 - - - 英里每加侖 - {0} 英里每加侖 - - - 位元 - {0} 個位元 - - - 位元組 - {0} 位元組 - - - - {0} 日 - - - 納秒 - {0} 納秒 - - - 星期 - {0}星期 - - - 卡路里 - {0} 卡路里 - - - 厘米 - {0} 厘米 - - - 分米 - {0} 分米 - - - - {0} 米 - - - 毫米 - {0} 毫米 - - - 納米 - {0} 納米 - - - 安士 - {0} 安士 - - - 金衡安士 - {0} 金衡安士 - - - 兆瓦 - {0} 兆瓦 - - - 百帕斯卡 - {0} 百帕斯卡 - - - 英吋汞柱 - {0} 英吋汞柱 - - - 毫米汞柱 - {0} 毫米汞柱 - - - 磅/平方吋 - {0} 磅/平方吋 - - - 公里每小時 - 每小時 {0} 公里 - - - 米/秒 - {0} 米/秒 - - - 英里每小時 - 每小時 {0} 英里 - - - 攝氏度 - 攝氏 {0} 度 - - - 華氏度 - 華氏 {0} 度 - - - 開爾文 - {0} 開爾文 - - - 英畝 - 英尺 - {0} 英畝 - 英尺 - - - 厘升 - {0} 厘升 - - - 立方厘米 - {0} 立方厘米 - - - 立方呎 - {0} 立方呎 - - - 立方吋 - {0} 立方吋 - - - 立方米 - {0} 立方米 - - - 液安士 - {0} 液安士 - - - - - {0} G - - - 米/平方秒 - {0} 米每平方秒 - - - - {0} 分 - - - 平方厘米 - {0} 平方厘米 - - - 平方呎 - {0} 平方呎 - - - 平方吋 - {0} 平方吋 - - - 平方米 - {0} 平方米 - - - {0} 升每公里 - - - {0} 英里每加侖 - - - - {0} 日 - - - {0}ph - - - 納秒 - {0} 納秒 - - - {0}ps - - - - - - 毫安 - - - cal - - - Cal - {0} 千卡 - - - kcal - - - GHz - - - Hz - - - kHz - - - MHz - - - au - - - 厘米 - {0} 厘米 - - - dm - {0} 分米 - - - - {0} 米 - - - - {0} 哩 - - - 毫米 - {0} 毫米 - - - nm - {0} 納米 - - - - {0} 浬 - - - pm - - - 安士 - {0} 安士 - - - 金衡安士 - {0} 金衡安士 - - - GW - - - hp - - - kW - - - MW - {0} 兆瓦 - - - mW - - - - {0} 瓦 - - - in Hg - {0} 英吋汞柱 - - - mbar - - - mm Hg - {0} 毫米汞柱 - - - psi - {0} 磅每平方吋 - - - km/h - {0} kph - - - 米/秒 - {0} 米/秒 - - - {0} mph - - - 英畝呎 - {0} 英畝呎 - - - cL - {0} 厘升 - - - cm³ - {0} 立方厘米 - - - 立方呎 - {0} 立方呎 - - - 立方吋 - {0} 立方吋 - - - km³ - - - - {0} 立方米 - - - mi³ - - - dL - - - fl oz - {0} 液安士 - - - gal - - - hL - - - - {0} 升 - - - ML - - - mL - - - qts - - - tbsp - - - tsp - - - - - {0}ft² - - - {0}mi² - - - - {0}日 - - - {0}小時 - - - - - - 厘米 - {0}厘米 - - - - {0}米 - - - 毫米 - {0}毫米 - - - {0} 安士 - - - {0}″ Hg - - - km/hr - {0}kph - - - {0}m/s - - - {0}mph - - - {0}mi³ - - - - {0}升 - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/dayPeriods.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/dayPeriods.xml deleted file mode 100644 index 526abad11fb..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/dayPeriods.xml +++ /dev/null @@ -1,660 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/postalCodeData.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/postalCodeData.xml deleted file mode 100644 index 19b7d1f2f15..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/postalCodeData.xml +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - - GIR[ ]?0AA|((AB|AL|B|BA|BB|BD|BH|BL|BN|BR|BS|BT|CA|CB|CF|CH|CM|CO|CR|CT|CV|CW|DA|DD|DE|DG|DH|DL|DN|DT|DY|E|EC|EH|EN|EX|FK|FY|G|GL|GY|GU|HA|HD|HG|HP|HR|HS|HU|HX|IG|IM|IP|IV|JE|KA|KT|KW|KY|L|LA|LD|LE|LL|LN|LS|LU|M|ME|MK|ML|N|NE|NG|NN|NP|NR|NW|OL|OX|PA|PE|PH|PL|PO|PR|RG|RH|RM|S|SA|SE|SG|SK|SL|SM|SN|SO|SP|SR|SS|ST|SW|SY|TA|TD|TF|TN|TQ|TR|TS|TW|UB|W|WA|WC|WD|WF|WN|WR|WS|WV|YO|ZE)(\d[\dA-Z]?[ ]?\d[ABD-HJLN-UW-Z]{2}))|BFPO[ ]?\d{1,4} - JE\d[\dA-Z]?[ ]?\d[ABD-HJLN-UW-Z]{2} - GY\d[\dA-Z]?[ ]?\d[ABD-HJLN-UW-Z]{2} - IM\d[\dA-Z]?[ ]?\d[ABD-HJLN-UW-Z]{2} - \d{5}([ \-]\d{4})? - [ABCEGHJKLMNPRSTVXY]\d[ABCEGHJ-NPRSTV-Z][ ]?\d[ABCEGHJ-NPRSTV-Z]\d - \d{5} - \d{3}-\d{4} - \d{2}[ ]?\d{3} - \d{4} - \d{5} - \d{4} - \d{4} - \d{5} - \d{4}[ ]?[A-Z]{2} - \d{4} - \d{4} - \d{3}[ ]?\d{2} - \d{4} - \d{5}[\-]?\d{3} - \d{4}([\-]\d{3})? - \d{5} - 22\d{3} - \d{3}[\-]\d{3} - \d{6} - \d{3}(\d{2})? - \d{6} - \d{5} - AD\d{3} - ([A-HJ-NP-Z])?\d{4}([A-Z]{3})? - (37)?\d{4} - \d{4} - ((1[0-2]|[2-9])\d{2})? - \d{4} - (BB\d{5})? - \d{6} - [A-Z]{2}[ ]?[A-Z0-9]{2} - \d{5} - BBND 1ZZ - [A-Z]{2}[ ]?\d{4} - \d{4} - \d{5} - \d{4} - \d{7} - \d{4,5}|\d{3}-\d{4} - \d{5} - \d{4} - \d{3}[ ]?\d{2} - \d{5} - ([A-Z]\d{4}[A-Z]|(?:[A-Z]{2})?\d{6})? - \d{5} - \d{5} - \d{3} - \d{4} - \d{3}[ ]?\d{2} - 39\d{2} - \d{5} - \d{4} - (?:\d{5})? - \d{4} - \d{3} - \d{6} - \d{5} - \d{5} - \d{5} - \d{6} - \d{5} - \d{5} - \d{5} - \d{4} - (\d{4}([ ]?\d{4})?)? - (948[5-9])|(949[0-7]) - \d{5} - \d{4} - \d{4} - \d{5} - \d{5} - [A-Z]{3}[ ]?\d{2,4} - (\d{3}[A-Z]{2}\d{3})? - \d{5} - \d{4} - 980\d{2} - \d{5} - \d{5} - \d{4} - ((\d{4}-)?\d{3}-\d{3}(-\d{1})?)? - (\d{6})? - (PC )?\d{3} - \d{5} - \d{4} - \d{4} - \d{2}-\d{3} - 00[679]\d{2}([ \-]\d{4})? - \d{6} - \d{6} - 4789\d - \d{5} - \d{5} - \d{3}[ ]?\d{2} - \d{4} - \d{4} - \d{5} - \d{6} - \d{5} - \d{4} - \d{5} - \d{6} - \d{5} - \d{5} - \d{6} - 00120 - \d{4} - \d{5} - 96799 - 6799 - \d{4} - \d{6} - 8\d{4} - \d{5} - \d{5} - 6798 - \d{4} - FIQQ 1ZZ - 2899 - (9694[1-4])([ \-]\d{4})? - 9[78]3\d{2} - \d{3} - 9[78][01]\d{2} - SIQQ 1ZZ - 969[123]\d([ \-]\d{4})? - \d{4} - \d{4} - \d{5} - \d{6} - \d{4} - \d{3} - \d{3} - 969[67]\d([ \-]\d{4})? - \d{6} - 9695[012]([ \-]\d{4})? - 9[78]2\d{2} - 988\d{2} - \d{4} - 008(([0-4]\d)|(5[01]))([ \-]\d{4})? - 987\d{2} - \d{3} - 9[78]5\d{2} - PCRN 1ZZ - 96940 - 9[78]4\d{2} - (ASCN|STHL) 1ZZ - \d{4} - \d{5} - [HLMS]\d{3} - TKCA 1ZZ - 986\d{2} - \d{5} - 976\d{2} - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/supplementalMetadata.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/supplementalMetadata.xml deleted file mode 100644 index cbb6287af1a..00000000000 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/supplementalMetadata.xml +++ /dev/null @@ -1,1963 +0,0 @@ - - - - - - - - - -_q type id choice key registry source target path day date version count lines characters before from to iso4217 mzone number time casing list uri digits rounding iso3166 hex request direction alternate backwards caseFirst caseLevel hiraganaQuarternary hiraganaQuaternary maxVariable variableTop normalization numeric strength elements element attributes attribute attributeValue contains multizone order other replacement scripts services territories territory aliases tzidVersion value values variant variants visibility alpha3 code end exclude fips10 gdp internet literacyPercent locales population writingPercent populationPercent officialStatus start used otherVersion typeVersion access after allowsParsing at bcp47 decexp desired indexSource numberSystem numbers oneway ordering percent priority radix rules supported tender territoryId yeartype cldrVersion grouping inLanguage inScript inTerritory match parent private reason reorder status cashDigits cashRounding allowed override preferred regions paths votes validSubLocales standard references alt draft - - -ldml alternate approvalRequirement approvalRequirements attributeOrder attributes blockingItems calendarPreference calendarSystem casingData casingItem character character-fallback characterOrder codesByTerritory comment context coverageVariable coverageLevel cp dayPeriodRule dayPeriodRules deprecatedItems distinguishingItems elementOrder exception first_variable fractions hours identity indexSeparator compressedIndexSeparator indexRangePattern indexLabelBefore indexLabelAfter indexLabel info keyMap languageAlias languageCodes languageCoverage languageMatch languageMatches languagePopulation last_variable first_tertiary_ignorable last_tertiary_ignorable first_secondary_ignorable last_secondary_ignorable first_primary_ignorable last_primary_ignorable first_non_ignorable last_non_ignorable first_trailing last_trailing likelySubtag lineOrder mapKeys mapTypes mapZone numberingSystem parentLocale personList pluralRule pluralRules postCodeRegex primaryZone reference region scriptAlias scriptCoverage serialElements stopwordList substitute suppress suppression tRule telephoneCountryCode territoryAlias territoryCodes territoryCoverage currencyCodes currencyCoverage timezone timezoneCoverage transform typeMap usesMetazone validity alias appendItem base beforeCurrency afterCurrency codePattern compoundUnit compoundUnitPattern contextTransform contextTransformUsage currencyMatch cyclicName cyclicNameContext cyclicNameSet cyclicNameWidth dateFormatItem day dayPeriod dayPeriodContext dayPeriodWidth defaultCollation defaultNumberingSystem deprecated distinguishing blocking coverageAdditions durationUnitPattern era eraNames eraAbbr eraNarrow exemplarCharacters ellipsis fallback field generic greatestDifference height hourFormat hoursFormat gmtFormat gmtZeroFormat intervalFormatFallback intervalFormatItem key listPattern listPatternPart localeDisplayNames layout contextTransforms localeDisplayPattern languages localePattern localeSeparator localeKeyTypePattern localizedPatternChars dateRangePattern calendars long measurementSystem measurementSystemName messages minDays firstDay month monthPattern monthPatternContext monthPatternWidth months monthNames monthAbbr monthPatterns days dayNames dayAbbr moreInformation native orientation inList inText otherNumberingSystems paperSize quarter quarters quotationStart quotationEnd alternateQuotationStart alternateQuotationEnd rbnfrule regionFormat fallbackFormat fallbackRegionFormat abbreviationFallback preferenceOrdering relativeTimePattern reset import p pc rule ruleset rulesetGrouping s sc scripts segmentation settings short commonlyUsed exemplarCity singleCountries default calendar collation currency currencyFormat currencySpacing currencyFormatLength dateFormat dateFormatLength dateTimeFormat dateTimeFormatLength availableFormats appendItems dayContext dayWidth decimalFormat decimalFormatLength intervalFormats monthContext monthWidth pattern displayName percentFormat percentFormatLength quarterContext quarterWidth relative relativeTime scientificFormat scientificFormatLength skipDefaultLocale defaultContent standard daylight stopwords indexLabels mapping suppress_contractions optimize cr rules surroundingMatch insertBetween symbol decimal group list percentSign nativeZeroDigit patternDigit plusSign minusSign exponential superscriptingExponent perMille infinity nan currencyDecimal currencyGroup symbols decimalFormats scientificFormats percentFormats currencyFormats currencies miscPatterns t tc q qc i ic extend territories timeFormat timeFormatLength traditional finance transformName type unit unitLength durationUnit unitPattern variable attributeValues variables segmentRules exceptions suppressions variantAlias variants keys types transformNames measurementSystemNames codePatterns version generation cldrVersion currencyData language script territory territoryContainment languageData territoryInfo postalCodeData calendarData calendarPreferenceData variant week am pm dayPeriods eras cyclicNameSets dateFormats timeFormats dateTimeFormats fields timeZoneNames weekData timeData measurementData timezoneData characters delimiters measurement dates numbers transforms units listPatterns collations posix segmentations rbnf metadata codeMappings parentLocales likelySubtags metazoneInfo mapTimezones plurals telephoneCodeData numberingSystems bcp47KeywordMappings gender references languageMatching dayPeriodRuleSet metaZones primaryZones weekendStart weekendEnd width windowsZones coverageLevels x yesstr nostr yesexpr noexpr zone metazone special zoneAlias zoneFormatting zoneItem supplementalData - - - - attributeValues attributes base comment context exception extend i ic languageMatch last_non_ignorable last_secondary_ignorable last_tertiary_ignorable optimize p pc pluralRule rbnfrule reset rules ruleset s sc settings substitute suppress_contractions suppression t tRule tc variable x - - - - - - - - - - - - - - - - - - - - - - - - aa ab ace ach ada ady ae aeb af afh agq ain ak akk akz ale aln alt am an ang anp ar - arc arn aro arp arq arw ary arz as asa ase ast av avk awa ay az azb - ba bal ban bar bas bax bbc bbj bfd be bej bem bew bez bfq bg bho bi bik bin bjn bkm bla bm bn - bo bpy bqi br bra brh brx bs bss bua bug bum byn byv - ca cad car cay cch ce ceb cgg ch chb chg chk chm chn cho chp chr chy ckb - co cop cps cr crh cs csb cu cv cy - da dak dar dav de del den dgr din dje doi dsb dtp dua dum dv dyo dyu dz dzg - ebu ee efi egl egy eka el elx en enm eo es esu et eu ewo ext - fa fan fat ff fi fil fit fj fo fon fr frc frm fro frp frr frs fur fy - ga gaa gag gan gay gba gbz gd gez gil gl glk gmh gn goh gom gon gor got grb grc gsw gu guc gur guz gv gwi - ha hai hak haw he hi hif hil hit hmn ho hr hsb hsn ht hu hup hy hz - ia iba ibb id ie ig ii ik ilo inh io is it iu izh - ja jam jbo jgo jmc jpr jrb jut jv - ka kaa kab kac kaj kam kaw kbd kbl kcg kde kea ken kfo kg kgp kha kho khq khw ki kiu kj kk kkj - kl kln km kmb kn ko koi kok kos kpe kr krc kri krj krl kru ks ksb ksf ksh ku kum kut kv kw ky - la lad lag lah lam lb lez lfn lg li lij liv lkt lmo ln lo lol loz lt ltg lu lua lui lun luo lus luy lv lzh lzz - mad maf mag mai mak man mas mde mdf mdr men mer mfe mg mga mgh mgo mh mi mic min mk - ml mn mnc mni moh mos mr mrj ms mt mua mul mus mwl mwr mwv my mye myv mzn - na nan nap naq nb nd nds ne new ng nia niu njo nl nmg nn nnh no nog non nov nqo nr nso - nus nv nwc ny nym nyn nyo nzi - oc oj om or os osa ota - pa pag pal pam pap pau pcd pdc pdt peo pfl phn pi pl pms pnt pon prg pro ps pt - qu quc qug - raj rap rar rgn rif rm rn ro rof rom root rtm ru rue rug rup rw rwk - sa sad sah sam saq sas sat saz sba sbp sc scn sco sd sdc se see seh sei sel ses sg sga sgs - sh shi shn shu si sid sk sl sli sly sm sma smj smn sms sn snk so sog sq - sr srn srr ss ssy st stq su suk sus sux sv sw swb swc syc syr szl - ta tcy te tem teo ter tet tg th ti tig tiv tk tkl tkr tl tlh tli tly tmh tn to tog tpi - tr tru trv ts tsd tsi tt ttt tum tvl tw twq ty tyv tzm - udm ug uga uk umb und ur uz - vai ve vec vep vi vls vmf vo vot vro vun - wa wae wal war was wo wuu - xal xh xmf xog - yao yap yav ybb yi yo yrl yue - za zap zbl zea zen zgh zh zu zun zxx zza - - - - art-lojban - cel-gaulish - en-GB-oed - i-ami i-bnn i-default i-enochian i-hak i-klingon i-lux i-mingo i-navajo i-pwn - i-tao i-tay i-tsu - no-bok no-nyn - sgn-BE-FR sgn-BE-NL sgn-CH-DE - zh-guoyu zh-hakka zh-min zh-min-nan zh-xiang - - - 001 002 003 005 009 011 013 014 015 017 018 019 021 029 030 034 035 039 053 054 - 057 061 - 142 143 145 150 151 154 155 - 419 - AC AD AE AF AG AI AL AM AO AQ AR AS AT AU AW AX AZ - BA BB BD BE BF BG BH BI BJ BL BM BN BO BQ BR BS BT BV BW BY BZ - CA CC CD CF CG CH CI CK CL CM CN CO CP CR CU CV CW CX CY CZ - DE DG DJ DK DM DO DZ - EA EC EE EG EH ER ES ET EU - FI FJ FK FM FO FR - GA GB GD GE GF GG GH GI GL GM GN GP GQ GR GS GT GU GW GY - HK HM HN HR HT HU - IC ID IE IL IM IN IO IQ IR IS IT - JE JM JO JP - KE KG KH KI KM KN KP KR KW KY KZ - LA LB LC LI LK LR LS LT LU LV LY - MA MC MD ME MF MG MH MK ML MM MN MO MP MQ MR MS MT MU MV MW MX MY MZ - NA NC NE NF NG NI NL NO NP NR NU NZ - OM - PA PE PF PG PH PK PL PM PN PR PS PT PW PY - QA QO - RE RO RS RU RW - SA SB SC SD SE SG SH SI SJ SK SL SM SN SO SR SS ST SV SX SY SZ - TA TC TD TF TG TH TJ TK TL TM TN TO TR TT TV TW TZ - UA UG UM US UY UZ - VA VC VE VG VI VN VU - WF WS - XK - YE YT - ZA ZM ZW ZZ - - - Afak Aghb Arab Armi Armn Avst - Bali Bamu Bass Batk Beng Blis Bopo Brah Brai Bugi Buhd - Cakm Cans Cari Cham Cher Cirt Copt Cprt Cyrl Cyrs - Deva Dsrt Dupl - Egyd Egyh Egyp Elba Ethi - Geok Geor Glag Goth Gran Grek Gujr Guru - Hang Hani Hano Hans Hant Hebr Hira Hluw Hmng Hrkt Hung - Inds Ital - Java Jpan Jurc - Kali Kana Khar Khmr Khoj Knda Kore Kpel Kthi - Lana Laoo Latf Latg Latn Lepc Limb Lina Linb Lisu Loma Lyci Lydi - Mahj Mand Mani Maya Mend Merc Mero Mlym Modi Mong Moon Mroo Mtei Mymr - Narb Nbat Nkgb Nkoo Nshu - Ogam Olck Orkh Orya Osma - Palm Pauc Perm Phag Phli Phlp Phlv Phnx Plrd Prti - Qaaa Qaab Qaac Qaad Qaae Qaaf Qaag Qaah Qaaj Qaak Qaal Qaam Qaan Qaao Qaap Qaaq - Qaar Qaas Qaat Qaau Qaav Qaaw Qaax Qaay Qaaz Qaba Qabb Qabc Qabd Qabe Qabf Qabg - Qabh Qabi Qabj Qabk Qabl Qabm Qabn Qabo Qabp Qabq Qabr Qabs Qabt Qabu Qabv Qabw - Qabx - Rjng Roro Runr - Samr Sara Sarb Saur Sgnw Shaw Shrd Sidd Sind Sinh Sora Sund Sylo Syrc Syre Syrj - Syrn - Tagb Takr Tale Talu Taml Tang Tavt Telu Teng Tfng Tglg Thaa Thai Tibt Tirh - Ugar - Vaii Visp - Wara Wole - Xpeo Xsux - Yiii - Zinh Zmth Zsym Zxxx Zyyy Zzzz - - - 1606NICT 1694ACAD 1901 1959ACAD 1994 1996 - ALALC97 ALUKU AREVELA AREVMDA - BAKU1926 BALANKA BARLA BAUDDHA BISCAYAN BISKE BOHORIC BOONT - DAJNKO - EKAVSK EMODENG - FONIPA FONUPA FONXSAMP - HEPBURN HOGNORSK - IJEKAVSK ITIHASA - JAUER JYUTPING - KKCOR KOCIEWIE KSCOR - LAUKIKA LIPAW LUNA1918 - METELKO MONOTON - NDYUKA NEDIS NJIVA NULIK - OSOJS - PAMAKA PETR1708 PINYIN POLYTON POSIX PUTER - REVISED RIGIK ROZAJ RUMGR - SAAHO SCOTLAND SCOUSE SOLBA SOTAV SURMIRAN SURSILV SUTSILV - TARASK - UCCOR UCRCOR ULSTER UNIFON - VAIDIKA VALENCIA VALLADER - WADEGILE - - - buddhist - chinese coptic - dangi - ethioaa ethiopic ethiopic-amete-alem - gregorian gregory - hebrew - indian islamic islamic-civil islamic-rgsa islamic-tbla islamic-umalqura - islamicc iso8601 - japanese - persian - roc - - - big5han - compat - dict dictionary direct ducet - emoji eor - gb2312 gb2312han - phonebk phonebook phonetic pinyin - reformed - search searchjl standard stroke - trad traditional - unihan - zhuyin - - - adp aed afa afn alk all amd ang aoa aok aon aor ara arl arm arp ars ats aud awg - azm azn - bad bam ban bbd bdt bec bef bel bgl bgm bgn bgo bhd bif bmd bnd bob bol bop bov - brb brc bre brl brn brr brz bsd btn buk bwp byb byr bzd - cad cdf che chf chw cle clf clp cnx cny cop cou crc csd csk cuc cup cve cyp czk - ddm dem djf dkk dop dzd - ecs ecv eek egp ern esa esb esp etb eur - fim fjd fkp frf - gbp gek gel ghc ghs gip gmd gnf gns gqe grd gtq gwe gwp gyd - hkd hnl hrd hrk htg huf - idr iep ilp ilr ils inr iqd irr isj isk itl - jmd jod jpy - kes kgs khr kmf kpw krh kro krw kwd kyd kzt - lak lbp lkr lrd lsl ltl ltt luc luf lul lvl lvr lyd - mad maf mcf mdc mdl mga mgf mkd mkn mlf mmk mnt mop mro mtl mtp mur mvp mvr mwk - mxn mxp mxv myr mze mzm mzn - nad ngn nic nio nlg nok npr nzd - omr - pab pei pen pes pgk php pkr pln plz pte pyg - qar - rhd rol ron rsd rub rur rwf - sar sbd scr sdd sdg sdp sek sgd shp sit skk sll sos srd srg ssp std sur svc syp - szl - thb tjr tjs tmm tmt tnd top tpe trl try ttd twd tzs - uah uak ugs ugx usd usn uss uyi uyp uyu uzs - veb vef vnd vnn vuv - wst - xaf xag xau xba xbb xbc xbd xcd xdr xeu xfo xfu xof xpd xpf xpt xre xsu xts xua - xxx - ydd yer yud yum yun yur - zal zar zmk zmw zrn zrz zwd zwl zwr - - - handwrit - pinyin - und - wubi - - - 101key 102key - 600dpi - 768dpi - android azerty - chromeos colemak - dvorak dvorakl dvorakr - el220 el319 extended - googlevk - isiri - legacy lt1205 lt1582 - nutaaq - osx - patta - qwerty qwertz - ta99 - und - var viqr - windows - - - noignore non-ignorable - shifted - - - false - no - true - yes - - - false - no - true - yes - - - false - lower - no - upper - - - false - no - true - yes - - - false - no - true - yes - - - false - no - true - yes - - - REORDER_CODE - - - identic identical - level1 level2 level3 level4 - primary - quarternary quaternary - secondary - tertiary - - - currency - punct - space symbol - - - loose - normal - strict - - - alaloc - bgn buckwalt - din - gost - iso - mcst - satts - ungegn - - - arab arabext armn armnlow - bali beng brah - cakm cham - deva - ethi - finance fullwide - geor grek greklow gujr guru - hanidays hanidec hans hansfin hant hantfin hebr - java jpan jpanfin - kali khmr knda - lana lanatham laoo latn lepc limb - mlym mong mtei mymr mymrshan - native nkoo - olck orya osma - roman romanlow - saur shrd sora sund - takr talu taml tamldec telu thai tibt traditio traditional - vaii - - - und - - - adalv aedxb afkbl Africa/Abidjan Africa/Accra Africa/Addis_Ababa Africa/Algiers - Africa/Asmara Africa/Asmera Africa/Bamako Africa/Bangui Africa/Banjul - Africa/Bissau Africa/Blantyre Africa/Brazzaville Africa/Bujumbura Africa/Cairo - Africa/Casablanca Africa/Ceuta Africa/Conakry Africa/Dakar Africa/Dar_es_Salaam - Africa/Djibouti Africa/Douala Africa/El_Aaiun Africa/Freetown Africa/Gaborone - Africa/Harare Africa/Johannesburg Africa/Juba Africa/Kampala Africa/Khartoum - Africa/Kigali Africa/Kinshasa Africa/Lagos Africa/Libreville Africa/Lome - Africa/Luanda Africa/Lubumbashi Africa/Lusaka Africa/Malabo Africa/Maputo - Africa/Maseru Africa/Mbabane Africa/Mogadishu Africa/Monrovia Africa/Nairobi - Africa/Ndjamena Africa/Niamey Africa/Nouakchott Africa/Ouagadougou - Africa/Porto-Novo Africa/Sao_Tome Africa/Timbuktu Africa/Tripoli Africa/Tunis - Africa/Windhoek aganu aiaxa altia America/Adak America/Anchorage - America/Anguilla America/Antigua America/Araguaina - America/Argentina/Buenos_Aires America/Argentina/Catamarca - America/Argentina/ComodRivadavia America/Argentina/Cordoba - America/Argentina/Jujuy America/Argentina/La_Rioja America/Argentina/Mendoza - America/Argentina/Rio_Gallegos America/Argentina/Salta - America/Argentina/San_Juan America/Argentina/San_Luis America/Argentina/Tucuman - America/Argentina/Ushuaia America/Aruba America/Asuncion America/Atikokan - America/Atka America/Bahia America/Bahia_Banderas America/Barbados - America/Belem America/Belize America/Blanc-Sablon America/Boa_Vista - America/Bogota America/Boise America/Buenos_Aires America/Cambridge_Bay - America/Campo_Grande America/Cancun America/Caracas America/Catamarca - America/Cayenne America/Cayman America/Chicago America/Chihuahua - America/Coral_Harbour America/Cordoba America/Costa_Rica America/Creston - America/Cuiaba America/Curacao America/Danmarkshavn America/Dawson - America/Dawson_Creek America/Denver America/Detroit America/Dominica - America/Edmonton America/Eirunepe America/El_Salvador America/Ensenada - America/Fort_Wayne America/Fortaleza America/Glace_Bay America/Godthab - America/Goose_Bay America/Grand_Turk America/Grenada America/Guadeloupe - America/Guatemala America/Guayaquil America/Guyana America/Halifax - America/Havana America/Hermosillo America/Indiana/Indianapolis - America/Indiana/Knox America/Indiana/Marengo America/Indiana/Petersburg - America/Indiana/Tell_City America/Indiana/Vevay America/Indiana/Vincennes - America/Indiana/Winamac America/Indianapolis America/Inuvik America/Iqaluit - America/Jamaica America/Jujuy America/Juneau America/Kentucky/Louisville - America/Kentucky/Monticello America/Knox_IN America/Kralendijk America/La_Paz - America/Lima America/Los_Angeles America/Louisville America/Lower_Princes - America/Maceio America/Managua America/Manaus America/Marigot - America/Martinique America/Matamoros America/Mazatlan America/Mendoza - America/Menominee America/Merida America/Metlakatla America/Mexico_City - America/Miquelon America/Moncton America/Monterrey America/Montevideo - America/Montreal America/Montserrat America/Nassau America/New_York - America/Nipigon America/Nome America/Noronha America/North_Dakota/Beulah - America/North_Dakota/Center America/North_Dakota/New_Salem America/Ojinaga - America/Panama America/Pangnirtung America/Paramaribo America/Phoenix - America/Port_of_Spain America/Port-au-Prince America/Porto_Acre - America/Porto_Velho America/Puerto_Rico America/Rainy_River - America/Rankin_Inlet America/Recife America/Regina America/Resolute - America/Rio_Branco America/Rosario America/Santa_Isabel America/Santarem - America/Santiago America/Santo_Domingo America/Sao_Paulo America/Scoresbysund - America/Shiprock America/Sitka America/St_Barthelemy America/St_Johns - America/St_Kitts America/St_Lucia America/St_Thomas America/St_Vincent - America/Swift_Current America/Tegucigalpa America/Thule America/Thunder_Bay - America/Tijuana America/Toronto America/Tortola America/Vancouver - America/Virgin America/Whitehorse America/Winnipeg America/Yakutat - America/Yellowknife amevn ancur Antarctica/Casey Antarctica/Davis - Antarctica/DumontDUrville Antarctica/Macquarie Antarctica/Mawson - Antarctica/McMurdo Antarctica/Palmer Antarctica/Rothera Antarctica/South_Pole - Antarctica/Syowa Antarctica/Troll Antarctica/Vostok aolad aqams aqcas aqdav - aqddu aqmaw aqmcm aqplm aqrot aqsyw aqtrl aqvos arbue arcor arctc - Arctic/Longyearbyen arirj arjuj arluq armdz arrgl arsla artuc aruaq arush - Asia/Aden Asia/Almaty Asia/Amman Asia/Anadyr Asia/Aqtau Asia/Aqtobe - Asia/Ashgabat Asia/Ashkhabad Asia/Baghdad Asia/Bahrain Asia/Baku Asia/Bangkok - Asia/Beirut Asia/Bishkek Asia/Brunei Asia/Calcutta Asia/Chita Asia/Choibalsan - Asia/Chongqing Asia/Chungking Asia/Colombo Asia/Dacca Asia/Damascus Asia/Dhaka - Asia/Dili Asia/Dubai Asia/Dushanbe Asia/Gaza Asia/Harbin Asia/Hebron - Asia/Ho_Chi_Minh Asia/Hong_Kong Asia/Hovd Asia/Irkutsk Asia/Istanbul - Asia/Jakarta Asia/Jayapura Asia/Jerusalem Asia/Kabul Asia/Kamchatka - Asia/Karachi Asia/Kashgar Asia/Kathmandu Asia/Katmandu Asia/Khandyga - Asia/Kolkata Asia/Krasnoyarsk Asia/Kuala_Lumpur Asia/Kuching Asia/Kuwait - Asia/Macao Asia/Macau Asia/Magadan Asia/Makassar Asia/Manila Asia/Muscat - Asia/Nicosia Asia/Novokuznetsk Asia/Novosibirsk Asia/Omsk Asia/Oral - Asia/Phnom_Penh Asia/Pontianak Asia/Pyongyang Asia/Qatar Asia/Qyzylorda - Asia/Rangoon Asia/Riyadh Asia/Saigon Asia/Sakhalin Asia/Samarkand Asia/Seoul - Asia/Shanghai Asia/Singapore Asia/Srednekolymsk Asia/Taipei Asia/Tashkent - Asia/Tbilisi Asia/Tehran Asia/Tel_Aviv Asia/Thimbu Asia/Thimphu Asia/Tokyo - Asia/Ujung_Pandang Asia/Ulaanbaatar Asia/Ulan_Bator Asia/Urumqi Asia/Ust-Nera - Asia/Vientiane Asia/Vladivostok Asia/Yakutsk Asia/Yekaterinburg Asia/Yerevan - asppg Atlantic/Azores Atlantic/Bermuda Atlantic/Canary Atlantic/Cape_Verde - Atlantic/Faeroe Atlantic/Faroe Atlantic/Jan_Mayen Atlantic/Madeira - Atlantic/Reykjavik Atlantic/South_Georgia Atlantic/St_Helena Atlantic/Stanley - atvie auadl aubhq aubne audrw aueuc auhba aukns auldc auldh aumel aumqi auper - Australia/ACT Australia/Adelaide Australia/Brisbane Australia/Broken_Hill - Australia/Canberra Australia/Currie Australia/Darwin Australia/Eucla - Australia/Hobart Australia/LHI Australia/Lindeman Australia/Lord_Howe - Australia/Melbourne Australia/North Australia/NSW Australia/Perth - Australia/Queensland Australia/South Australia/Sydney Australia/Tasmania - Australia/Victoria Australia/West Australia/Yancowinna ausyd awaua azbak - basjj bbbgi bddac bebru bfoua bgsof bhbah bibjm bjptn bmbda bnbwn bolpb bqkra - braux Brazil/Acre Brazil/DeNoronha Brazil/East Brazil/West brbel brbvb brcgb - brcgr brern brfen brfor brmao brmcz brpvh brrbr brrec brsao brssa brstm bsnas - btthi bwgbe bymsq bzbze - cacfq caedm caffs caglb cagoo cahal caiql camon camtr Canada/Atlantic - Canada/Central Canada/East-Saskatchewan Canada/Eastern Canada/Mountain - Canada/Newfoundland Canada/Pacific Canada/Saskatchewan Canada/Yukon canpg capnt - careb careg casjf cathu cator cavan cawnp caybx caycb cayda caydq cayek cayev - cayxy cayyn cayzf cayzs cccck cdfbm cdfih cfbgf cgbzv Chile/Continental - Chile/EasterIsland chzrh ciabj ckrar clipc clscl cmdla cnckg cnhrb cnkhg cnsha - cnurc cobog crsjo CST6CDT Cuba cuhav cvrai cxxch cynic czprg - deber debsngn djjib dkcph dmdom dosdq dzalg - ecgps ecgye eetll egcai Egypt eheai Eire erasm esceu eslpa esmad EST EST5EDT - etadd Etc/GMT Etc/GMT-0 Etc/GMT-1 Etc/GMT-10 Etc/GMT-11 Etc/GMT-12 Etc/GMT-13 - Etc/GMT-14 Etc/GMT-2 Etc/GMT-3 Etc/GMT-4 Etc/GMT-5 Etc/GMT-6 Etc/GMT-7 - Etc/GMT-8 Etc/GMT-9 Etc/GMT+0 Etc/GMT+1 Etc/GMT+10 Etc/GMT+11 Etc/GMT+12 - Etc/GMT+2 Etc/GMT+3 Etc/GMT+4 Etc/GMT+5 Etc/GMT+6 Etc/GMT+7 Etc/GMT+8 Etc/GMT+9 - Etc/GMT0 Etc/Greenwich Etc/UCT Etc/Universal Etc/Unknown Etc/UTC Etc/Zulu - Europe/Amsterdam Europe/Andorra Europe/Athens Europe/Belfast Europe/Belgrade - Europe/Berlin Europe/Bratislava Europe/Brussels Europe/Bucharest - Europe/Budapest Europe/Busingen Europe/Chisinau Europe/Copenhagen Europe/Dublin - Europe/Gibraltar Europe/Guernsey Europe/Helsinki Europe/Isle_of_Man - Europe/Istanbul Europe/Jersey Europe/Kaliningrad Europe/Kiev Europe/Lisbon - Europe/Ljubljana Europe/London Europe/Luxembourg Europe/Madrid Europe/Malta - Europe/Mariehamn Europe/Minsk Europe/Monaco Europe/Moscow Europe/Nicosia - Europe/Oslo Europe/Paris Europe/Podgorica Europe/Prague Europe/Riga Europe/Rome - Europe/Samara Europe/San_Marino Europe/Sarajevo Europe/Simferopol Europe/Skopje - Europe/Sofia Europe/Stockholm Europe/Tallinn Europe/Tirane Europe/Tiraspol - Europe/Uzhgorod Europe/Vaduz Europe/Vatican Europe/Vienna Europe/Vilnius - Europe/Volgograd Europe/Warsaw Europe/Zagreb Europe/Zaporozhye Europe/Zurich - fihel fimhq fjsuv fkpsy fmksa fmpni fmtkk fotho frpar - galbv gaza GB GB-Eire gblon gdgnd getbs gfcay gggci ghacc gigib gldkshvn glgoh - globy glthu gmbjl GMT GMT-0 GMT+0 GMT0 gncky gpbbr gpmsb gpsbh gqssg grath - Greenwich gsgrv gtgua gugum gwoxb gygeo - hebron hkhkg hntgu Hongkong hrzag HST htpap hubud - Iceland iddjj idjkt idmak idpnk iedub imdgs inccu Indian/Antananarivo - Indian/Chagos Indian/Christmas Indian/Cocos Indian/Comoro Indian/Kerguelen - Indian/Mahe Indian/Maldives Indian/Mauritius Indian/Mayotte Indian/Reunion - iodga iqbgw Iran irthr Israel isrey itrom - Jamaica Japan jeruslm jesth jmkin joamm jptyo - kenbo kgfru khpnh kicxi kipho kitrw kmyva knbas kpfnj krsel Kwajalein kwkwi - kygec kzaau kzakx kzala kzkzo kzura - lavte lbbey lccas Libya livdz lkcmb lrmlw lsmsu ltvno lulux lvrix lytip - macas mcmon mdkiv metgd Mexico/BajaNorte Mexico/BajaSur Mexico/General mgtnr - mhkwa mhmaj mkskp mlbko mmrgn mncoq mnhvd mnuln momfm mpspn mqfdf mrnkc msmni - MST MST7MDT mtmla muplu mvmle mwblz mxchi mxcun mxhmo mxmam mxmex mxmid mxmty - mxmzt mxoji mxpvr mxstis mxtij mykch mykul mzmpm - Navajo nawdh ncnou nenim nfnlk nglos nimga nlams noosl npktm nrinu nuiue NZ - NZ-CHAT nzakl nzcht - ommct - Pacific/Apia Pacific/Auckland Pacific/Bougainville Pacific/Chatham - Pacific/Chuuk Pacific/Easter Pacific/Efate Pacific/Enderbury Pacific/Fakaofo - Pacific/Fiji Pacific/Funafuti Pacific/Galapagos Pacific/Gambier - Pacific/Guadalcanal Pacific/Guam Pacific/Honolulu Pacific/Johnston - Pacific/Kiritimati Pacific/Kosrae Pacific/Kwajalein Pacific/Majuro - Pacific/Marquesas Pacific/Midway Pacific/Nauru Pacific/Niue Pacific/Norfolk - Pacific/Noumea Pacific/Pago_Pago Pacific/Palau Pacific/Pitcairn Pacific/Pohnpei - Pacific/Ponape Pacific/Port_Moresby Pacific/Rarotonga Pacific/Saipan - Pacific/Samoa Pacific/Tahiti Pacific/Tarawa Pacific/Tongatapu Pacific/Truk - Pacific/Wake Pacific/Wallis Pacific/Yap papty pelim pfgmr pfnhv pfppt pgpom - pgraw phmnl pkkhi plwaw pmmqc pnpcn Poland Portugal PRC prsju PST8PDT ptfnc - ptlis ptpdl pwror pyasu - qadoh - rereu robuh ROC ROK rsbeg ruchita rudyr rugdx ruikt rukgd rukhndg rukra rukuf - rumow runoz ruoms ruovb rupkc rusred ruunera ruuus ruvog ruvvo ruyek ruyks - rwkgl - saruh sbhir scmaw sdkrt sesto sgsin shshn silju Singapore sjlyr skbts slfna - smsai sndkr somgq srpbm ssjub sttms svsal sxphi sydam szqmn - tcgdt tdndj tfpfr tglfw thbkk tjdyu tkfko tldil tmasb tntun totbu trist ttpos - Turkey tvfun twtpe tzdar - uaiev uaozh uasip uauzh UCT ugkla umawk umjon ummdy Universal unk US/Alaska - US/Aleutian US/Arizona US/Central US/East-Indiana US/Eastern US/Hawaii - US/Indiana-Starke US/Michigan US/Mountain US/Pacific US/Pacific-New US/Samoa - usadk usaeg usanc usboi uschi usden usdet ushnl usind usinvev usjnu usknx uslax - uslui usmnm usmoc usmtm usnavajo usndcnt usndnsl usnyc usoea usome usphx ussit - ustel uswlz uswsq usxul usyak UTC utce01 utce02 utce03 utce04 utce05 utce06 - utce07 utce08 utce09 utce10 utce11 utce12 utce13 utce14 utcw01 utcw02 utcw03 - utcw04 utcw05 utcw06 utcw07 utcw08 utcw09 utcw10 utcw11 utcw12 uymvd uzskd - uztas - vavat vcsvd veccs vgtov vistt vnsgn vuvli - W-SU wfmau wsapw - yeade ytmam - zajnb zmlun Zulu zwhre - - - posix - - - CODEPOINTS - - - - Africa/Abidjan Africa/Accra Africa/Addis_Ababa Africa/Algiers Africa/Asmera - Africa/Bamako Africa/Bangui Africa/Banjul Africa/Bissau Africa/Blantyre - Africa/Brazzaville Africa/Bujumbura - Africa/Cairo Africa/Casablanca Africa/Ceuta Africa/Conakry - Africa/Dakar Africa/Dar_es_Salaam Africa/Djibouti Africa/Douala - Africa/El_Aaiun - Africa/Freetown - Africa/Gaborone - Africa/Harare - Africa/Johannesburg Africa/Juba - Africa/Kampala Africa/Khartoum Africa/Kigali Africa/Kinshasa - Africa/Lagos Africa/Libreville Africa/Lome Africa/Luanda Africa/Lubumbashi - Africa/Lusaka - Africa/Malabo Africa/Maputo Africa/Maseru Africa/Mbabane Africa/Mogadishu - Africa/Monrovia - Africa/Nairobi Africa/Ndjamena Africa/Niamey Africa/Nouakchott - Africa/Ouagadougou - Africa/Porto-Novo - Africa/Sao_Tome - Africa/Tripoli Africa/Tunis - Africa/Windhoek - America/Adak America/Anchorage America/Anguilla America/Antigua - America/Araguaina - America/Argentina/La_Rioja - America/Argentina/Rio_Gallegos - America/Argentina/Salta America/Argentina/San_Juan America/Argentina/San_Luis - America/Argentina/Tucuman - America/Argentina/Ushuaia - America/Aruba America/Asuncion - America/Bahia America/Bahia_Banderas America/Barbados America/Belem - America/Belize America/Blanc-Sablon America/Boa_Vista America/Bogota - America/Boise America/Buenos_Aires - America/Cambridge_Bay America/Campo_Grande America/Cancun America/Caracas - America/Catamarca America/Cayenne America/Cayman America/Chicago - America/Chihuahua America/Coral_Harbour America/Cordoba America/Costa_Rica - America/Creston America/Cuiaba America/Curacao - America/Danmarkshavn America/Dawson America/Dawson_Creek America/Denver - America/Detroit America/Dominica - America/Edmonton America/Eirunepe America/El_Salvador - America/Fortaleza - America/Glace_Bay America/Godthab America/Goose_Bay America/Grand_Turk - America/Grenada America/Guadeloupe America/Guatemala America/Guayaquil - America/Guyana - America/Halifax America/Havana America/Hermosillo - America/Indiana/Knox - America/Indiana/Marengo - America/Indiana/Petersburg - America/Indiana/Tell_City - America/Indiana/Vevay America/Indiana/Vincennes - America/Indiana/Winamac - America/Indianapolis America/Inuvik America/Iqaluit - America/Jamaica America/Jujuy America/Juneau - America/Kentucky/Monticello - America/Kralendijk - America/La_Paz America/Lima America/Los_Angeles America/Louisville - America/Lower_Princes - America/Maceio America/Managua America/Manaus America/Marigot - America/Martinique America/Matamoros America/Mazatlan America/Mendoza - America/Menominee America/Merida America/Metlakatla America/Mexico_City - America/Miquelon America/Moncton America/Monterrey America/Montevideo - America/Montserrat - America/Nassau America/New_York America/Nipigon America/Nome America/Noronha - America/North_Dakota/Beulah - America/North_Dakota/Center - America/North_Dakota/New_Salem - America/Ojinaga - America/Panama America/Pangnirtung America/Paramaribo America/Phoenix - America/Port-au-Prince America/Port_of_Spain America/Porto_Velho - America/Puerto_Rico - America/Rainy_River America/Rankin_Inlet America/Recife America/Regina - America/Resolute America/Rio_Branco - America/Santa_Isabel America/Santarem America/Santiago America/Santo_Domingo - America/Sao_Paulo America/Scoresbysund America/Sitka America/St_Barthelemy - America/St_Johns America/St_Kitts America/St_Lucia America/St_Thomas - America/St_Vincent America/Swift_Current - America/Tegucigalpa America/Thule America/Thunder_Bay America/Tijuana - America/Toronto America/Tortola - America/Vancouver - America/Whitehorse America/Winnipeg - America/Yakutat America/Yellowknife - Antarctica/Casey - Antarctica/Davis Antarctica/DumontDUrville - Antarctica/Macquarie Antarctica/Mawson Antarctica/McMurdo - Antarctica/Palmer - Antarctica/Rothera - Antarctica/Syowa - Antarctica/Troll - Antarctica/Vostok - Arctic/Longyearbyen - Asia/Aden Asia/Almaty Asia/Amman Asia/Anadyr Asia/Aqtau Asia/Aqtobe - Asia/Ashgabat - Asia/Baghdad Asia/Bahrain Asia/Baku Asia/Bangkok Asia/Beirut Asia/Bishkek - Asia/Brunei - Asia/Calcutta Asia/Chita Asia/Choibalsan Asia/Colombo - Asia/Damascus Asia/Dhaka Asia/Dili Asia/Dubai Asia/Dushanbe - Asia/Gaza - Asia/Hebron Asia/Hong_Kong Asia/Hovd - Asia/Irkutsk - Asia/Jakarta Asia/Jayapura Asia/Jerusalem - Asia/Kabul Asia/Kamchatka Asia/Karachi Asia/Katmandu Asia/Khandyga - Asia/Krasnoyarsk Asia/Kuala_Lumpur Asia/Kuching Asia/Kuwait - Asia/Macau Asia/Magadan Asia/Makassar Asia/Manila Asia/Muscat - Asia/Nicosia Asia/Novokuznetsk Asia/Novosibirsk - Asia/Omsk Asia/Oral - Asia/Phnom_Penh Asia/Pontianak Asia/Pyongyang - Asia/Qatar Asia/Qyzylorda - Asia/Rangoon Asia/Riyadh - Asia/Saigon Asia/Sakhalin Asia/Samarkand Asia/Seoul Asia/Shanghai - Asia/Singapore Asia/Srednekolymsk - Asia/Taipei Asia/Tashkent Asia/Tbilisi Asia/Tehran Asia/Thimphu Asia/Tokyo - Asia/Ulaanbaatar Asia/Urumqi Asia/Ust-Nera - Asia/Vientiane Asia/Vladivostok - Asia/Yakutsk Asia/Yekaterinburg Asia/Yerevan - Atlantic/Azores - Atlantic/Bermuda - Atlantic/Canary Atlantic/Cape_Verde - Atlantic/Faeroe - Atlantic/Madeira - Atlantic/Reykjavik - Atlantic/South_Georgia Atlantic/St_Helena Atlantic/Stanley - Australia/Adelaide - Australia/Brisbane Australia/Broken_Hill - Australia/Currie - Australia/Darwin - Australia/Eucla - Australia/Hobart - Australia/Lindeman Australia/Lord_Howe - Australia/Melbourne - Australia/Perth - Australia/Sydney - CST6CDT EST5EDT Etc/GMT Etc/GMT+1 Etc/GMT+10 Etc/GMT+11 Etc/GMT+12 Etc/GMT+2 - Etc/GMT+3 Etc/GMT+4 Etc/GMT+5 Etc/GMT+6 Etc/GMT+7 Etc/GMT+8 Etc/GMT+9 Etc/GMT-1 - Etc/GMT-10 Etc/GMT-11 Etc/GMT-12 Etc/GMT-13 Etc/GMT-14 Etc/GMT-2 Etc/GMT-3 - Etc/GMT-4 Etc/GMT-5 Etc/GMT-6 Etc/GMT-7 Etc/GMT-8 Etc/GMT-9 - Etc/Unknown - Europe/Amsterdam Europe/Andorra Europe/Athens - Europe/Belgrade Europe/Berlin Europe/Bratislava Europe/Brussels - Europe/Bucharest Europe/Budapest Europe/Busingen - Europe/Chisinau Europe/Copenhagen - Europe/Dublin - Europe/Gibraltar Europe/Guernsey - Europe/Helsinki - Europe/Isle_of_Man Europe/Istanbul - Europe/Jersey - Europe/Kaliningrad Europe/Kiev - Europe/Lisbon Europe/Ljubljana Europe/London Europe/Luxembourg - Europe/Madrid Europe/Malta Europe/Mariehamn Europe/Minsk Europe/Monaco - Europe/Moscow - Europe/Oslo - Europe/Paris Europe/Podgorica Europe/Prague - Europe/Riga Europe/Rome - Europe/Samara Europe/San_Marino Europe/Sarajevo Europe/Simferopol Europe/Skopje - Europe/Sofia Europe/Stockholm - Europe/Tallinn Europe/Tirane - Europe/Uzhgorod - Europe/Vaduz Europe/Vatican Europe/Vienna Europe/Vilnius Europe/Volgograd - Europe/Warsaw - Europe/Zagreb Europe/Zaporozhye Europe/Zurich - Indian/Antananarivo - Indian/Chagos Indian/Christmas Indian/Cocos Indian/Comoro - Indian/Kerguelen - Indian/Mahe Indian/Maldives Indian/Mauritius Indian/Mayotte - Indian/Reunion - MST7MDT PST8PDT Pacific/Apia Pacific/Auckland - Pacific/Bougainville - Pacific/Chatham - Pacific/Easter Pacific/Efate Pacific/Enderbury - Pacific/Fakaofo Pacific/Fiji Pacific/Funafuti - Pacific/Galapagos Pacific/Gambier Pacific/Guadalcanal Pacific/Guam - Pacific/Honolulu - Pacific/Johnston - Pacific/Kiritimati Pacific/Kosrae Pacific/Kwajalein - Pacific/Majuro Pacific/Marquesas Pacific/Midway - Pacific/Nauru Pacific/Niue Pacific/Norfolk Pacific/Noumea - Pacific/Pago_Pago Pacific/Palau Pacific/Pitcairn Pacific/Ponape - Pacific/Port_Moresby - Pacific/Rarotonga - Pacific/Saipan - Pacific/Tahiti Pacific/Tarawa Pacific/Tongatapu Pacific/Truk - Pacific/Wake Pacific/Wallis - - - stand-alone variant list secondary email www short narrow accounting arab arabext armn armnlow bali beng cham deva ethi fullwide geor grek greklow gujr guru hans hansfin hant hantfin hebr java jpan jpanfin kali knda khmr lana lanatham laoo latn lepc limb mlym mong mtei mymr mymrshan new nkoo olck orya roman romanlow saur sund talu taml telu thai tibt vaii - - - $tzid - titlecase-words titlecase-firstword lowercase-words mixed - - - (verbatim) - ((stand-alone|variant|list|secondary|email|www|short|narrow|new|accounting)(-proposed.*)?|(proposed.*)) - Era Year Quarter Month Week Day-Of-Week Day Hour Minute Second Timezone - - ([12][0-9][0-9][0-9])-((0[0-9])|1[0-2])-([0-2][0-9]|3[01]) - 20[0-9][0-9]-([0-9]|1[0-2])-([12][0-9]|3[01]) - [0-9]+(\.[0-9]+)? - [0-9]+ - standard - - \$.*\$ - - ([R|S]|RP)[0-9]+ - ([01][0-9]|2[0-4]):[0-6][0-9] - - - [$][a-zA-Z0-9_]+ - \$.*\$ - - $alt - $integer - $locale - notDoneYet - notDoneYet - - locale - cu - $append - ca - . - co - $version - uiListOrMenu stand-alone - [a-zA-Z-]+ - [0-9A-Fa-f]{4,6} - $currencyDate - cu - cu - standard accounting - nu - [0-9]+ - format stand-alone - years months days dayParts zodiacs solarTerms - $format - full long medium short - sun mon tue wed thu fri sat - abbreviated narrow short wide - format gregorian long medium pinyin standard stroke wide - [0-9]+ - era year year-short year-narrow quarter quarter-short quarter-narrow month month-short month-narrow week week-short week-narrow day day-short day-narrow weekday dayperiod hour hour-short hour-narrow minute minute-short minute-narrow second second-short second-narrow zone sun sun-short sun-narrow mon mon-short mon-narrow tue tue-short tue-narrow wed wed-short wed-narrow thu thu-short thu-narrow fri fri-short fri-narrow sat sat-short sat-narrow - sun mon tue wed thu fri sat - $genDate - $territory - [HKhk]( [HKhk])* - H K h k - $territory - [0-9]+ - cu - [0-9]+ - calendar collation colAlternate colBackwards colCaseFirst colCaseLevel colHiraganaQuaternary colNormalization colNumeric colReorder colStrength currency kv numbers timezone va variableTop x - $script - $territory - $locale - $variant - - $version - .+ - $tzid - iana - utf-8 - nu - algorithmic numeric - [0-7] - 1 2 3 4 5 6 7 8 9 10 11 12 13 - leap standardAfterLeap combined - format stand-alone numeric - abbreviated narrow wide all - abbreviated narrow wide - standard atLeast range 1000 10000 100000 1000000 10000000 10000000 100000000 1000000000 10000000000 100000000000 1000000000000 10000000000000 100000000000000 - $tzidList - 1 2 3 4 - $reference - notDoneYet - $territory - -?[0-9]+ - future past - primary secondary tertiary - $double - $script - $script - $script - GraphemeClusterBreak LineBreak SentenceBreak WordBreak - $version - nu - $territory - $territory - calendar collation colAlternate colBackwards colCaseFirst colCaseLevel colHiraganaQuaternary colNormalization colNumeric colStrength numbers va - arab arabext armn armnlow bali beng big5han brah buddhist cakm cham chinese coptic dangi deva dictionary ducet eor ethi ethiopic ethiopic-amete-alem finance fullwide gb2312han geor gregorian grek greklow gujr guru hanidays hanidec hans hansfin hant hantfin hebr hebrew identical indian islamic islamic-civil islamic-rgsa islamic-tbla islamic-umalqura iso8601 japanese java jpan jpanfin kali khmr knda lana lanatham laoo latn lepc limb lower mlym mong mtei mymr mymrshan native nkoo no non-ignorable olck orya osma persian phonebook phonetic pinyin posix primary quaternary reformed roc roman romanlow saur search searchjl secondary shifted shrd sora standard stroke sund takr talu taml tamldec telu tertiary thai tibt traditional unihan upper vaii yes zhuyin - (acceleration-(g-force|meter-per-second-squared)|angle-(degree|arc-minute|arc-second|radian)|area-(acre|square-(centimeter|inch|foot|kilometer|meter|mile|yard)|hectare)|consumption-(liter-per-kilometer|mile-per-gallon)|digital-(kilo|mega|giga|tera)?(bit|byte)|duration-(nanosecond|microsecond|millisecond|(day|hour|minute|month|second|week|year))|electric-(milli)?(ampere|ohm|volt)|energy-(kilocalorie|calorie|foodcalorie|joule|kilojoule|kilowatt-hour)|frequency-(kilo|mega|giga)?hertz|length-(astronomical-unit|(pico|nano|micro|milli|centi|deci|kilo)?meter|fathom|foot|furlong|inch|light-year|mile|nautical-mile|parsec|yard)|light-lux|mass-(carat|(kilo|milli|micro)?gram|ounce|ounce-troy|pound|metric-ton|stone|ton)|power-(horsepower|(kilo|milli|mega|giga)?watt)|pressure-(hectopascal|inch-hg|millibar|millimeter-of-mercury|pound-per-square-inch)|proportion-karat|speed-((mile|kilometer)-per-hour|meter-per-second)|temperature-(celsius|fahrenheit|kelvin)|volume-(acre-foot|bushel|cup|fluid-ounce|(milli|deci|centi|hecto|mega)?liter|gallon|pint|quart|cubic-(centimeter|kilometer|meter|mile|inch|foot|yard)|tablespoon|teaspoon)) - $variableID - $variant - $variant - $version - $time - $tzid - $territory - $tzidList - $territory - $tzid - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/dtd/ldml.dtd b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/dtd/ldml.dtd new file mode 100644 index 00000000000..fcdb15287df --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/dtd/ldml.dtd @@ -0,0 +1,2798 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/dtd/ldmlSupplemental.dtd b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/dtd/ldmlSupplemental.dtd new file mode 100644 index 00000000000..f0fabdf07e1 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/dtd/ldmlSupplemental.dtd @@ -0,0 +1,945 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/af.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/af.xml similarity index 89% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/af.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/af.xml index 42efc076558..7ce4e73a8b8 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/af.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/af.xml @@ -1,13 +1,12 @@ - - - + @@ -33,10 +32,11 @@ For terms of use, see http://www.unicode.org/copyright.html Azerbeidjans Azeri Baskir - Wit-Russies + Belo-Russies Bemba Bena Bulgaars + Wes-Balochi Bambara Bengaals Tibettaans @@ -44,6 +44,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bodo Bosnies Katalaans + Tsjetsjen Sjiga Cherokees Sorani Koerdies @@ -51,6 +52,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kopties Tsjeggies Kerkslawies + Chuvash Wallies Deens Taita @@ -147,6 +149,7 @@ For terms of use, see http://www.unicode.org/copyright.html Lingaals Lao Lozi + Noord-Luri Litaus Luba-Katanga Luba-Lulua @@ -170,9 +173,12 @@ For terms of use, see http://www.unicode.org/copyright.html Mundang Veelvuldige tale Birmaans + Masanderani Nama Noorse Bokmål Noord-Ndebele + Lae Duits + Nedersaksies Nepalees Nederlands Vlaams @@ -210,7 +216,8 @@ For terms of use, see http://www.unicode.org/copyright.html Sangu Skots Sindhi - Noordelike Sami + Suid-Koerdies + Noord-Sami Sena Koyraboro Senni Sango @@ -233,10 +240,10 @@ For terms of use, see http://www.unicode.org/copyright.html Sundanees Sweeds Swahili + Swahili (Kongo) Shimaorees - Swahili (Kongo) Tamil - Telugu + Teloegoe Teso Tetum Tadzjieks @@ -264,6 +271,7 @@ For terms of use, see http://www.unicode.org/copyright.html Venda Viëtnamees Vunjo + Warlpiri Wolof Xhosa Soga @@ -315,7 +323,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -365,7 +373,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albanië Armenië - Nederlands-Antille Angola Antarktika Argentinië @@ -401,8 +408,8 @@ For terms of use, see http://www.unicode.org/copyright.html Demokratiese Republiek van die Kongo Kongo (DRK) Sentraal-Afrikaanse Republiek - Republiek van die Kongo - Kongo (Republiek) + Kongo - Brazzaville + Kongo (Republiek die) Switserland Ivoorkus Cookeilande @@ -509,7 +516,7 @@ For terms of use, see http://www.unicode.org/copyright.html Monaco Moldowa Montenegro - Sint Martin + St. Martin Madagaskar Marshalleilande Macedonië @@ -646,6 +653,9 @@ For terms of use, see http://www.unicode.org/copyright.html Numeriese sortering Sorteringssterkte Geldeenheid + Uursiklus (12 vs 24) + Reëlbreek-styl + Meetstelsel Syfers Tydsone Lokaalvariant @@ -653,95 +663,105 @@ For terms of use, see http://www.unicode.org/copyright.html Privaat gebruik - Arabies-Indiese syfers - Uitgebreide Arabies-Indiese syfers - Armeense syfers - Armeense kleinletter-syfers - Bengaalse syfers - Tradisionele Chinese sorteervolgorde - Groot5 - Boeddhistiese kalender - Sjinese kalender - Koptiese kalender - Dangi-kalender - Devanagari-syfers - Woordeboek-sorteervolgorde - Verstek Unicode-sorteervolgorde - Ethiopiese syfers - Ethiopiese kalender - Etiopiese Amete Alem-kalender - Finansiële syfers - Vollewydte-syfers - Vereenvoudigde Chinese sorteervolgorde - GB2312 - Georgiese syfers - Gregoriese kalender - Griekse syfers - Griekse kleinletter-syfers - Goedjarati-syfers - Gurmukhi-syfers - Chinese desimale syfers - Vereenvoudigde Chinese syfers - Vereenvoudigde Chinese finansiële syfers - Tradisionele Chinese syfers - Tradisionele Chinese finansiële syfers - Hebreeuse syfers - Hebreeuse kalender - Sorteer almal - Indiese nasionale kalender - Islamitiese kalender - Islamitiese siviele kalender - ISO-8601-kalender - Japannese kalender - Japannese syfers - Japannese finansiële syfers - Khmer-syfers - Kannada-syfers - Lao-syfers - Westerse syfers - Sorteer kleinletters veerste - Malabaarse syfers - Mongoliese syfers - Mianmar-syfers - Inheemse syfers - Sorteer aksente gewoonweg - Sorteer gewone letterorde - Sorteer nie kassensitief nie - Sorteer Kana afsonderlik - Sorteer sonder normalisering - Sorteer syfers individueel - Sorteer simbole - Oriya-syfers - Persiese kalender - Foonboek-sorteervolgorde - Fonetiese sorteerorde - Pinyin-sorteervolgorde - Sorteer slegs basisletters - Sorteer aksente/kas/breedte/Kana - Gereformeerde sorteervolgorde - Minguo-kalender - Romeinse syfers - Romeinse kleinletter-syfers - Algemenedoel-soektog - Soek volgens Hangul-beginkonsonant - Sorteer aksente - Sorteer ignoreersimbole - Standaard sorteervolgorde - Slag-sorteervolgorde - Tradisionele Tamil-syfers - Tamil-syfers - Telugu-syfers - Sorteer aksente/kas/breedte - Thaise syfers - Tibettaanse syfers - Tradisionele sorteervolgorde - Tradisionele syfers - Radikale-slag-sorteervolgorde - Sorteer hoofletters eerste - Vai-syfers - Sorteer aksente omgekeerd - Sorteer kassensitief - Sorteer Kana anders - Sorteer Unicode genormaliseer - Sorteer syfers numeries + Boeddhistiese kalender + Sjinese kalender + Koptiese kalender + Dangi-kalender + Ethiopiese kalender + Etiopiese Amete Alem-kalender + Gregoriese kalender + Hebreeuse kalender + Indiese nasionale kalender + Islamitiese kalender + Islamitiese siviele kalender + ISO-8601-kalender + Japannese kalender + Persiese kalender + Minguo-kalender + Sorteer simbole + Sorteer ignoreersimbole + Sorteer aksente gewoonweg + Sorteer aksente omgekeerd + Sorteer kleinletters veerste + Sorteer gewone letterorde + Sorteer hoofletters eerste + Sorteer nie kassensitief nie + Sorteer kassensitief + Sorteer Kana afsonderlik + Sorteer Kana anders + Tradisionele Chinese sorteervolgorde - Groot5 + Woordeboek-sorteervolgorde + Verstek Unicode-sorteervolgorde + Vereenvoudigde Chinese sorteervolgorde - GB2312 + Foonboek-sorteervolgorde + Fonetiese sorteerorde + Pinyin-sorteervolgorde + Gereformeerde sorteervolgorde + Algemenedoel-soektog + Soek volgens Hangul-beginkonsonant + Standaard sorteervolgorde + Slag-sorteervolgorde + Tradisionele sorteervolgorde + Radikale-slag-sorteervolgorde + Sorteer sonder normalisering + Sorteer Unicode genormaliseer + Sorteer syfers individueel + Sorteer syfers numeries + Sorteer almal + Sorteer slegs basisletters + Sorteer aksente/kas/breedte/Kana + Sorteer aksente + Sorteer aksente/kas/breedte + 12-uur-stelsel (0-11) + 112-uur-stelsel (1-12) + 24-uur-stelsel + 24-uur-stelsel (1-24) + Los reëlbreek-styl + Normale reëlbreek-styl + Streng reëlbreek-styl + Metriese stelsel + Imperiale meetstelsel + VS-meetstelsel + Arabies-Indiese syfers + Uitgebreide Arabies-Indiese syfers + Armeense syfers + Armeense kleinletter-syfers + Bengaalse syfers + Devanagari-syfers + Ethiopiese syfers + Finansiële syfers + Vollewydte-syfers + Georgiese syfers + Griekse syfers + Griekse kleinletter-syfers + Goedjarati-syfers + Gurmukhi-syfers + Chinese desimale syfers + Vereenvoudigde Sjinese syfers + Vereenvoudigde Sjinese finansiële syfers + Tradisionele Sjinese syfers + Tradisionele Sjinese finansiële syfers + Hebreeuse syfers + Japannese syfers + Japannese finansiële syfers + Khmer-syfers + Kannada-syfers + Lao-syfers + Westerse syfers + Malabaarse syfers + Mongoliese syfers + Mianmar-syfers + Inheemse syfers + Oriya-syfers + Romeinse syfers + Romeinse kleinletter-syfers + Tradisionele Tamil-syfers + Tamil-syfers + Teloegoe-syfers + Thaise syfers + Tibettaanse syfers + Tradisionele syfers + Vai-syfers BGN @@ -833,6 +853,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d y G MMM y G @@ -845,19 +866,18 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm:ss a HH:mm:ss L - M/d - E, M/d + d/M + E, d/M LLL - MMM d - E, MMM d - MMMM d - dd MMMM - E, MMMM d + d MMM + E, d MMM + d MMMM + E, d MMMM mm:ss y G y G - M/y G - M/d/y G + M/y GGGGG + d/M/y GGGGG E, d/M/y G MMM y G d MMM y G @@ -907,40 +927,40 @@ For terms of use, see http://www.unicode.org/copyright.html M – M - M/d – M/d - M/d – M/d + d/M – d/M + d/M – d/M - E, M/d – E, M/d - E, M/d – E, M/d + E, d/M – E, d/M + E, d/M – E, d/M - MMM–MMM + MMM – MMM - MMM d–d - MMM d – MMM d + d – d MMM + d MMM – d MMM - E, MMM d – E, MMM d - E, MMM d – E, MMM d + E, d MMM – E, d MMM + E, d MMM – E, d MMM - y–y G + y – y G - M/y – M/y G - M/y – M/y G + M/y – M/y GGGGG + M/y – M/y GGGGG - M/d/y – M/d/y G - M/d/y – M/d/y G - M/d/y – M/d/y G + d/M/y – d/M/y GGGGG + d/M/y – d/M/y GGGGG + d/M/y – d/M/y GGGGG - E, M/d/y – E, M/d/y G - E, M/d/y – E, M/d/y G - E, M/d/y – E, M/d/y G + E, d/M/y – E, d/M/y GGGGG + E, d/M/y – E, d/M/y GGGGG + E, d/M/y – E, d/M/y GGGGG MMM–MMM y G @@ -948,13 +968,13 @@ For terms of use, see http://www.unicode.org/copyright.html d–d MMM, y G - MMM d – MMM d, y G + d MMM – d MMM y G d MMM, y – d MMM, y G E, d MMM – E, d MMM, y G E, d MMM – E, d MMM, y G - E, MMM d, y – E, MMM d, y G + E, d MMM y – E, d MMM y G MMMM–MMMM y G @@ -970,15 +990,15 @@ For terms of use, see http://www.unicode.org/copyright.html Jan. Feb. Mrt. - Apr + Apr. Mei - Jun - Jul - Aug - Sep - Okt - Nov - Des + Jun. + Jul. + Aug. + Sep. + Okt. + Nov. + Des. J @@ -1014,15 +1034,15 @@ For terms of use, see http://www.unicode.org/copyright.html Jan. Feb. Mrt. - Apr + Apr. Mei - Jun - Jul - Aug - Sep - Okt - Nov - Des + Jun. + Jul. + Aug. + Sep. + Okt. + Nov. + Des. J @@ -1057,13 +1077,13 @@ For terms of use, see http://www.unicode.org/copyright.html - So - Ma - Di - Wo - Do - Vr - Sa + So. + Ma. + Di. + Wo. + Do. + Vr. + Sa. S @@ -1095,13 +1115,13 @@ For terms of use, see http://www.unicode.org/copyright.html - So - Ma - Di - Wo - Do - Vr - Sa + So. + Ma. + Di. + Wo. + Do. + Vr. + Sa. S @@ -1176,22 +1196,68 @@ For terms of use, see http://www.unicode.org/copyright.html + + middernag + vm. + nm. + die oggend + die middag + die aand + die nag + + mn v - m n + o + m + a + n + middernag vm. - middag nm. + die oggend + die middag + die aand + die nag + + + + + middernag + vm. + nm. + oggend + middag + aand + nag + + + mn + v + n + o + m + a + n + + + middernag + vm. + nm. + oggend + middag + aand + nag voor Christus - v.g.j. + voor die gewone jaartelling na Christus g.j. @@ -1291,6 +1357,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L dd-MM E, d/M @@ -1298,7 +1368,6 @@ For terms of use, see http://www.unicode.org/copyright.html d MMM E d MMM d MMM - dd MMMM E d MMMM mm:ss y @@ -1322,15 +1391,15 @@ For terms of use, see http://www.unicode.org/copyright.html h a – h a - h–h a + h – h a HH–HH h:mm a – h:mm a - h:mm–h:mm a - h:mm–h:mm a + h:mm – h:mm a + h:mm – h:mm a HH:mm–HH:mm @@ -1338,8 +1407,8 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm a – h:mm a v - h:mm–h:mm a v - h:mm–h:mm a v + h:mm a – h:mm a v + h:mm a – h:mm a v HH:mm–HH:mm v @@ -1347,7 +1416,7 @@ For terms of use, see http://www.unicode.org/copyright.html h a – h a v - h–h a v + h – h a v HH–HH v @@ -1356,23 +1425,23 @@ For terms of use, see http://www.unicode.org/copyright.html M–M - M/d – M/d - M/d – M/d + d/M – d/M + d/M – d/M - E, M/d – E, M/d - E, M/d – E, M/d + E, d/M – E, d/M + E, d/M – E, d/M MMM–MMM - MMM d–d - MMM d – MMM d + d–d MMM + d MMM – d MMM - E, MMM d – E, MMM d - E, MMM d – E, MMM d + E, d MMM – E, d MMM + E, d MMM – E, d MMM y–y @@ -1382,31 +1451,31 @@ For terms of use, see http://www.unicode.org/copyright.html M/y – M/y - M/d/y – M/d/y - M/d/y – M/d/y - M/d/y – M/d/y + d/M/y – d/M/y + d/M/y – d/M/y + d/M/y – d/M/y - E, M/d/y – E, M/d/y - E, M/d/y – E, M/d/y - E, M/d/y – E, M/d/y + E, d/M/y – E, d/M/y + E, d/M/y – E, d/M/y + E, d/M/y – E, d/M/y MMM–MMM y MMM y – MMM y - d–d MMM, y - MMM d – MMM d, y - d MMM, y – d MMM, y + d–d MMM y + d MMM – d MMM y + d MMM y – d MMM y - E, d MMM – E, d MMM, y + E, d MMM – E, d MMM y E, d MMM – E, d MMM, y - E, MMM d, y – E, MMM d, y + E, d MMM y – E, d MMM y - MMMM–MMMM y + MMMM – MMMM y MMMM y – MMMM y @@ -1415,16 +1484,16 @@ For terms of use, see http://www.unicode.org/copyright.html - Era + era - Jaar + jaar verlede jaar hierdie jaar volgende jaar - Oor {0} jaar - Oor {0} jaar + oor {0} jaar + oor {0} jaar {0} jaar gelede @@ -1434,8 +1503,8 @@ For terms of use, see http://www.unicode.org/copyright.html j. - Oor {0} jaar - Oor {0} jaar + oor {0} jaar + oor {0} jaar {0} jaar gelede @@ -1445,8 +1514,8 @@ For terms of use, see http://www.unicode.org/copyright.html j. - Oor {0} jaar - Oor {0} jaar + oor {0} jaar + oor {0} jaar {0} jaar gelede @@ -1454,7 +1523,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Kwartaal + kwartaal oor {0} kwartaal oor {0} kwartale @@ -1492,8 +1561,8 @@ For terms of use, see http://www.unicode.org/copyright.html vandeesmaand volgende maand - Oor {0} maand - Oor {0} maande + oor {0} minuut + oor {0} minuut {0} maand gelede @@ -1528,8 +1597,8 @@ For terms of use, see http://www.unicode.org/copyright.html vandeesweek volgende week - Oor {0} week - Oor {0} weke + oor {0} week + oor {0} weke {0} week gelede @@ -1566,8 +1635,8 @@ For terms of use, see http://www.unicode.org/copyright.html môre oormôre - Oor {0} dag - Oor {0} dae + oor {0} minuut + oor {0} minuut {0} dag gelede @@ -1576,6 +1645,11 @@ For terms of use, see http://www.unicode.org/copyright.html d. + eergister + gister + vandag + môre + oormôre oor {0} dag oor {0} dae @@ -1587,6 +1661,11 @@ For terms of use, see http://www.unicode.org/copyright.html d. + eergister + gister + vandag + môre + oormôre oor {0} dag oor {0} dae @@ -1597,7 +1676,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Dag van die Week + dag van die week verlede Sondag @@ -1681,20 +1760,37 @@ For terms of use, see http://www.unicode.org/copyright.html verlede Vr. + dié Vr. + vlg. Vr. + + + verlede Vr. + dié Vr. + vlg. Vr. verlede Saterdag hierdie Saterdag volgende Saterdag + + verlede Sa. + dié Sa. + vlg. Sa. + + + verlede Sa. + dié Sa. + vlg. Sa. + VM/NM - Uur + uur - Oor {0} uur - Oor {0} uur + oor {0} uur + oor {0} uur {0} uur gelede @@ -1724,10 +1820,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Minuut + minuut - Oor {0} minuut - Oor {0} minute + oor {0} minuut + oor {0} minuut {0} minuut gelede @@ -1757,11 +1853,11 @@ For terms of use, see http://www.unicode.org/copyright.html - Sekonde + sekonde nou - Oor {0} sekonde - Oor {0} sekondes + oor {0} sekonde + oor {0} sekondes {0} sekonde gelede @@ -1791,7 +1887,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Tydsone + tydsone @@ -2082,7 +2178,7 @@ For terms of use, see http://www.unicode.org/copyright.html Swift Current - Cambridge Bay + Cambridgebaai Regina @@ -2103,7 +2199,7 @@ For terms of use, see http://www.unicode.org/copyright.html Atikokan - Thunder Bay + Thunderbaai Nipigon @@ -2124,10 +2220,10 @@ For terms of use, see http://www.unicode.org/copyright.html Halifax - Goose Bay + Goosebaai - Glace Bay + Glacebaai Blanc-Sablon @@ -2433,7 +2529,7 @@ For terms of use, see http://www.unicode.org/copyright.html Comore - St. Kitts + Sint Kitts Pyongyang @@ -2445,7 +2541,7 @@ For terms of use, see http://www.unicode.org/copyright.html Koeweit - Cayman + Kaaiman Aqtau @@ -2469,7 +2565,7 @@ For terms of use, see http://www.unicode.org/copyright.html Beiroet - St. Lucia + Sint Lucia Vaduz @@ -2669,6 +2765,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -2753,6 +2852,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Chita + Jakoetsk @@ -2771,6 +2873,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolymsk + Kamchatka @@ -3012,7 +3117,7 @@ For terms of use, see http://www.unicode.org/copyright.html Vatikaanstad - St. Vincent + Sint Vincent Caracas @@ -3021,7 +3126,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tortola - St. Thomas + Sint Thomas Ho Tsji Minhstad @@ -4067,6 +4172,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤ 000K + ¤ 000K + ¤0 m + ¤0 m + ¤00 m + ¤00 m + ¤000 m + ¤000 m + ¤0 mjd + ¤0 mjd + ¤00 mjd + ¤00 mjd + ¤000 mjd + ¤000 mjd + ¤0 bn + ¤0 bn + ¤00 bn + ¤00 bn + ¤000 bn + ¤000 bn + + {0} {1} {0} {1} @@ -4106,6 +4239,7 @@ For terms of use, see http://www.unicode.org/copyright.html Angolese kwanza Angolese kwanza AOA + Kz Argentynse peso @@ -4138,6 +4272,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bosnies-Herzegowiniese omskakelbare marka Bosnies-Herzegowiniese omskakelbare marka BAM + KM Barbados-dollar @@ -4190,6 +4325,7 @@ For terms of use, see http://www.unicode.org/copyright.html Boliviaanse boliviano Boliviaanse boliviano BOB + Bs Brasilliaanse reaal @@ -4216,6 +4352,7 @@ For terms of use, see http://www.unicode.org/copyright.html Botswana pula Botswana pula BWP + P Belo-Russiese roebel @@ -4283,6 +4420,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kubaanse omskakelbare peso Kubaanse omskakelbare peso CUC + $ Kubaanse peso @@ -4302,6 +4440,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tsjeggiese kroon Tsjeggiese kroon CZK + Djiboeti frank @@ -4314,6 +4453,7 @@ For terms of use, see http://www.unicode.org/copyright.html Deense kroon Deense kroon DKK + kr Dominikaanse peso @@ -4333,6 +4473,7 @@ For terms of use, see http://www.unicode.org/copyright.html Egiptiese pond Egiptiese pond EGP + Eritrese nakfa @@ -4365,6 +4506,7 @@ For terms of use, see http://www.unicode.org/copyright.html Falkland-eilande pond Falkland-eilande pond FKP + £ Britse pond @@ -4378,6 +4520,7 @@ For terms of use, see http://www.unicode.org/copyright.html Georgiese lari Georgiese lari GEL + Ghanese cedi (1979–2007) @@ -4406,6 +4549,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guinese frank Guinese frank GNF + FG Guinese syli @@ -4415,6 +4559,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guatemalaanse quetzal Guatemalaanse quetzal GTQ + Q Guyanese dollar @@ -4435,12 +4580,14 @@ For terms of use, see http://www.unicode.org/copyright.html Hondurese lempira Hondurese lempira HNL + L Kroatiese kuna Kroatiese kuna Kroatiese kuna HRK + kn Haïtiaanse gourde @@ -4453,12 +4600,14 @@ For terms of use, see http://www.unicode.org/copyright.html Hongaarse florint Hongaarse florint HUF + Ft Indonesiese roepia Indonesiese roepia Indonesiese roepia IDR + Rp Israeliese nuwe sikkel @@ -4491,6 +4640,7 @@ For terms of use, see http://www.unicode.org/copyright.html Yslandse kroon Yslandse kroon ISK + kr Italiaanse lier @@ -4539,12 +4689,14 @@ For terms of use, see http://www.unicode.org/copyright.html Comoraanse frank Comoraanse frank KMF + CF Noord-Koreaanse won Noord-Koreaanse won Noord-Koreaanse won KPW + Suid-Koreaanse won @@ -4585,12 +4737,14 @@ For terms of use, see http://www.unicode.org/copyright.html Lebanese pond Lebanese pond LBP + Sri Lankaanse roepee Sri Lankaanse roepee Sri Lankaanse roepee LKR + Rs Liberiese dollar @@ -4634,6 +4788,7 @@ For terms of use, see http://www.unicode.org/copyright.html Malgassiese ariary Malgassiese ariary MGA + Ar Macedoniese denar @@ -4646,6 +4801,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mianmese kyat Mianmese kyat MMK + K Mongoolse toegrik @@ -4671,6 +4827,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mauritiaanse rupee Mauritiaanse rupee MUR + Rs Malediviese rufia @@ -4696,6 +4853,7 @@ For terms of use, see http://www.unicode.org/copyright.html Maleisiese ringgit Maleisiese ringgit MYR + RM Mosambiekse metical (1980–2006) @@ -4725,18 +4883,21 @@ For terms of use, see http://www.unicode.org/copyright.html Nicaraguaanse córdoba Nicaraguaanse córdoba NIO + C$ Noorse kroon Noorse kroon Noorse kroon NOK + kr Nepalese roepee Nepalese roepee Nepalese roepee NPR + Rs Nieu-Seeland dollar @@ -4781,12 +4942,14 @@ For terms of use, see http://www.unicode.org/copyright.html Pakistanse roepee Pakistanse roepee PKR + Rs Poolse zloty Poolse zloty Poolse zloty PLN + Paraguaanse guarani @@ -4818,6 +4981,7 @@ For terms of use, see http://www.unicode.org/copyright.html Russiese roebel Russiese roebel RUB + @@ -4825,6 +4989,7 @@ For terms of use, see http://www.unicode.org/copyright.html Rwandiese frank Rwandiese frank RWF + RF Saoedi-Arabiese riyal @@ -4859,6 +5024,7 @@ For terms of use, see http://www.unicode.org/copyright.html Sweedse kroon Sweedse kroon SEK + kr Singapoer dollar @@ -4872,6 +5038,7 @@ For terms of use, see http://www.unicode.org/copyright.html Sint Helena pond Sint Helena pond SHP + £ Sierra Leoniese leone @@ -4904,12 +5071,14 @@ For terms of use, see http://www.unicode.org/copyright.html São Tomé en Príncipe dobra São Tomé en Príncipe dobra STD + Db Siriese pond Siriese pond Siriese pond SYP + £ Swazilandse lilangeni @@ -4922,6 +5091,7 @@ For terms of use, see http://www.unicode.org/copyright.html Thaise baht Thaise baht ฿ + ฿ Tadjikse roebel @@ -4946,6 +5116,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tongaanse pa’anga Tongaanse pa’anga TOP + T$ Turkse lier (1922–2005) @@ -4956,6 +5127,7 @@ For terms of use, see http://www.unicode.org/copyright.html Turkse lier TRY + TL Trinidad en Tobago dollar @@ -5015,6 +5187,7 @@ For terms of use, see http://www.unicode.org/copyright.html Venezolaanse bolivar Venezolaanse bolivar VEF + Bs Viëtnamese dong @@ -5046,6 +5219,7 @@ For terms of use, see http://www.unicode.org/copyright.html Oos-Karibbiese dollar Oos-Karibbiese dollar EC$ + $ CFA frank BCEAO @@ -5075,6 +5249,7 @@ For terms of use, see http://www.unicode.org/copyright.html Suid-Afrikaanse rand Suid-Afrikaanse rand R + R Zambiese kwacha (1968–2012) @@ -5084,6 +5259,7 @@ For terms of use, see http://www.unicode.org/copyright.html Zambiese kwacha Zambiese kwacha ZMW + ZK Zimbabwiese dollar @@ -5109,6 +5285,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rewolusie + {0} rewolusie + {0} rewolusies + + + radiale + {0} radiaal + {0} radiale + + + grade + {0} graad + {0} grade + boogminute {0} boogminuut @@ -5119,30 +5310,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} boogsekonde {0} boogsekondes - - grade - {0} graad - {0} grade - - - radiale - {0} radiaal - {0} radiale - - - akker - {0} akker - {0} akker + + vierkante kilometer + {0} vierkante kilometer + {0} vierkante kilometer hektaar {0} hektaar {0} hektaar + + vierkante meter + {0} vierkante meter + {0} vierkante meter + {0} per vierkante meter + vierkante sentimeter {0} vierkante sentimeter {0} vierkante sentimeter + {0} per vierkante sentimeter + + + vierkante myl + {0} vierkante myl + {0} vierkante myl + + + akker + {0} akker + {0} akker + + + vierkante jaart + {0} vierkante jaart + {0} vierkante jaart vierkante voet @@ -5153,91 +5356,106 @@ For terms of use, see http://www.unicode.org/copyright.html vierkante duim {0} vierkante duim {0} vierkante duim + {0} per vierkante duim - - vierkante kilometer - {0} vierkante kilometer - {0} vierkante kilometer - - - vierkante meter - {0} vierkante meter - {0} vierkante meter - - - vierkante myl - {0} vierkante myl - {0} vierkante myl - - - vierkante jaart - {0} vierkante jaart - {0} vierkante jaart + + karat + {0} karat + {0} karat liter per kilometer {0} liter per kilometer {0} liter per kilometer + + liter per 100 kilometers + {0} liter per 100 kilometers + {0} liter per 100 kilometers + myl per gelling {0} myl per gelling {0} myl per gelling - - bis - {0} bis - {0} bis - - - grepe - {0} greep - {0} grepe - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + grepe + {0} greep + {0} grepe + + + bis + {0} bis + {0} bis + + + eeu + {0} eeu + {0} eeue + + + jaar + {0} jaar + {0} jaar + {0} per jaar + + + maande + {0} maand + {0} maande + {0}/md. + + + weke + {0} week + {0} weke + {0}/w. + dae {0} dag {0} dae + {0}/d. uur @@ -5245,30 +5463,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} uur {0}/h - - mikrosekondes - {0} mikrosekonde - {0} mikrosekondes - - - millisekondes - {0} millisekonde - {0} millisekondes - minute {0} minuut {0} minute - - - maande - {0} maand - {0} maande - - - nanosekondes - {0} nanosekonde - {0} nanosekondes + {0} per minuut sekondes @@ -5276,15 +5475,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sekondes {0}/s - - weke - {0} week - {0} weke + + millisekondes + {0} millisekonde + {0} millisekondes - - jaar - {0} jaar - {0} jaar + + mikrosekondes + {0} mikrosekonde + {0} mikrosekondes + + + nanosekondes + {0} nanosekonde + {0} nanosekondes ampere @@ -5306,6 +5510,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volt + + kilokalorië + {0} kilokalorie + {0} kilokalorië + kalorië {0} kalorie @@ -5316,21 +5525,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Kalorie {0} Kalorië - - joule - {0} joule - {0} joule - - - kilokalorië - {0} kilokalorie - {0} kilokalorië - kJ {0} kJ {0} kJ + + joule + {0} joule + {0} joule + kWh {0} kWh @@ -5341,201 +5545,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - astronomiese eenheid - {0} astronomiese eenheid - {0} astronomiese eenheid + + kilometer + {0} kilometer + {0} kilometer + {0} per kilometer - - sentimeter - {0} sentimeter - {0} sentimeter + + meter + {0} meter + {0} meter + {0} per meter desimeter {0} desimeter {0} desimeter - - voet - {0} voet - {0} voet - - - duim - {0} duim - {0} duim - - - kilometer - {0} kilometer - {0} kilometer - - - ligjare - {0} ligjare - {0} ligjare - - - meter - {0} meter - {0} meter - - - mikrometer - {0} mikrometer - {0} mikrometer - - - myl - {0} myl - {0} myl + + sentimeter + {0} sentimeter + {0} sentimeter + {0} per sentimeter millimeter {0} millimeter {0} millimeter + + mikrometer + {0} mikrometer + {0} mikrometer + nanometer {0} nanometer {0} nanometer - - seemyl - {0} seemyl - {0} seemyl - - - parsek - {0} parsek - {0} parsek - pikometer {0} pikometer {0} pikometer + + myl + {0} myl + {0} myl + jaart {0} jaart {0} jaart + + voet + {0} voet + {0} voet + {0} per voet + + + duim + {0} duim + {0} duim + {0} per duim + + + parsek + {0} parsek + {0} parsek + + + ligjare + {0} ligjare + {0} ligjare + + + astronomiese eenheid + {0} astronomiese eenheid + {0} astronomiese eenheid + + + seemyl + {0} seemyl + {0} seemyl + + + skandinawiese myl + {0} skandinawiese myl + {0} skandinawiese myl + lux {0} lux {0} lux - - karaat - {0} karaat - {0} karaat - - - gram - {0} gram - {0} gram - - - kilogram - {0} kilogram - {0} kilogram - t {0} t {0} t - - mikrogram - {0} mikrogram - {0} mikrogram + + kilogram + {0} kilogram + {0} kilogram + {0} per kilogram + + + gram + {0} gram + {0} gram + {0} per gram milligram {0} milligram {0} milligram - - onse - {0} ons - {0} onse - - - troy-onse - {0} troy-ons - {0} troy-onse - - - pond - {0} pond - {0} pond + + mikrogram + {0} mikrogram + {0} mikrogram ton {0} ton {0} ton + + pond + {0} pond + {0} pond + {0}/lb + + + onse + {0} ons + {0} onse + {0} per ons + + + troy-onse + {0} troy-ons + {0} troy-onse + + + karaat + {0} karaat + {0} karaat + GW {0} GW {0} GW - - perdekrag - {0} perdekrag - {0} perdekrag - - - kilowatt - {0} kilowatt - {0} kilowatt - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kilowatt + {0} kilowatt + {0} kilowatt watt {0} watt {0} watt + + mW + {0} mW + {0} mW + + + perdekrag + {0} perdekrag + {0} perdekrag + hektopascal {0} hektopascal {0} hektopascal - - duim kwik - {0} duim kwik - {0} duim kwik - - - millibar - {0} millibar - {0} millibar - millimeter kwik {0} millimeter kwik @@ -5546,10 +5754,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pond per vierkante duim {0} pond per vierkante duim - - karat - {0} karat - {0} karat + + duim kwik + {0} duim kwik + {0} duim kwik + + + millibar + {0} millibar + {0} millibar kilometer per uur @@ -5566,6 +5779,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} myl per uur {0} myl per uur + + knoop + {0} knoop + {0} knope + + + ° + {0}° + {0}° + grade Celsius {0} graad Celsius @@ -5581,31 +5804,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - akkervoet - {0} akkervoet - {0} akkervoet - - - sentiliter - {0} sentiliter - {0} sentiliter - - - kubieke sentimeter - {0} kubieke sentimeter - {0} kubieke sentimeter - - - kubieke voet - {0} kubieke voet - {0} ft³ - - - kubieke duim - {0} kubieke duim - {0} kubieke duim - kubieke kilometer {0} kubieke kilometer @@ -5615,6 +5813,13 @@ For terms of use, see http://www.unicode.org/copyright.html kubieke meter {0} kubieke meter {0} kubieke meter + {0} per kubieke meter + + + kubieke sentimeter + {0} kubieke sentimeter + {0} kubieke sentimeter + {0} per kubieke sentimeter kubieke myl @@ -5626,25 +5831,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubieke jaart {0} kubieke jaart - - koppies - {0} koppie - {0} koppies + + kubieke voet + {0} kubieke voet + {0} ft³ - - desiliter - {0} desiliter - {0} desiliter + + kubieke duim + {0} kubieke duim + {0} kubieke duim - - vloeistofonse - {0} vloeistofons - {0} vloeistofonse - - - gelling - {0} gelling - {0} gelling + + megaliter + {0} megaliter + {0} megaliter hektoliter @@ -5655,27 +5855,64 @@ For terms of use, see http://www.unicode.org/copyright.html liter {0} liter {0} liter + {0} per liter - - megaliter - {0} megaliter - {0} megaliter + + desiliter + {0} desiliter + {0} desiliter + + + sentiliter + {0} sentiliter + {0} sentiliter milliliter {0} milliliter {0} milliliter - - pinte - {0} pint - {0} pinte + + metrieke pinte + {0} metrieke pint + {0} metrieke pinte + + + metrieke koppies + {0} metrieke koppie + {0} metrieke koppies + + + akkervoet + {0} akkervoet + {0} akkervoet + + + gelling + {0} gelling + {0} gelling + {0} per gelling kwarte {0} kwart {0} kwarte + + pinte + {0} pint + {0} pinte + + + koppies + {0} koppie + {0} koppies + + + vloeistofonse + {0} vloeistofons + {0} vloeistofonse + eetlepel {0} eetlepel @@ -5686,6 +5923,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} teelepel {0} teelepels + + {0}O + {0}N + {0}S + {0}W + @@ -5701,6 +5944,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rew. + {0} rew. + {0} rew. + + + radiale + {0} rad. + {0} rad. + + + grade + {0} gr. + {0} gr. + boogminute {0} boogmin. @@ -5711,30 +5969,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} boogsek. {0} boogsek. - - grade - {0} gr. - {0} gr. - - - radiale - {0} rad. - {0} rad. - - - akker - {0} ak - {0} ak + + km² + {0} km² + {0} km² hektaar {0} ha {0} ha + + + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + myl² + {0} myl² + {0} myl² + + + akker + {0} ak + {0} ak + + + jaart² + {0} jt.² + {0} jt.² vt.² @@ -5745,91 +6015,106 @@ For terms of use, see http://www.unicode.org/copyright.html duim² {0} dm.² {0} dm.² + {0}/dm.² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - myl² - {0} myl² - {0} myl² - - - jaart² - {0} jt.² - {0} jt.² + + karat + {0} kar. + {0} kar. liter/km {0} ℓ/km {0} ℓ/km + + ℓ/100km + {0} ℓ/100km + {0} ℓ/100km + myl/gelling {0} m.p.g. {0} m.p.g. - - bis - {0} bis - {0} bis - - - greep - {0} greep - {0} greep - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + greep + {0} greep + {0} greep + + + bis + {0} bis + {0} bis + + + e. + {0} e. + {0} e. + + + jaar + {0} j. + {0} j. + {0}/j. + + + maande + {0} md. + {0} md. + {0}/md. + + + weke + {0} w. + {0} w. + {0}/w. + dae {0} dag {0} dae + {0}/d. uur @@ -5837,30 +6122,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} u. {0}/h - - μs - {0} μs - {0} μs - - - millisekondes - {0} ms - {0} ms - minute {0} min. {0} min. - - - maande - {0} md. - {0} md. - - - ns - {0} ns - {0} ns + {0}/min sekondes @@ -5868,15 +6134,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sek. {0}/s - - weke - {0} w. - {0} w. + + millisekondes + {0} ms + {0} ms - - jaar - {0} j. - {0} j. + + μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns ampere @@ -5898,6 +6169,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kkal. + {0} kkal. + {0} kkal. + kal. {0} kal. @@ -5908,21 +6184,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kal. {0} kal. - - joule - {0} J - {0} J - - - kkal. - {0} kkal. - {0} kkal. - kJ {0} kJ {0} kJ + + joule + {0} J + {0} J + kWh {0} kWh @@ -5933,201 +6204,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - AE - {0} AE - {0} AE + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + meter + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - voet - {0} vt. - {0} vt. - - - duim - {0} duim - {0} duim - - - km - {0} km - {0} km - - - ligjare - {0} lj. - {0} lj. - - - meter - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - myl - {0} myl - {0} myl + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - sm. - {0} sm. - {0} sm. - - - parsek - {0} pc - {0} pc - pm {0} pm {0} pm + + myl + {0} myl + {0} myl + jaart {0} jt. {0} jt. + + voet + {0} vt. + {0} vt. + {0}/vt. + + + duim + {0} duim + {0} duim + {0}/duim + + + parsek + {0} pc + {0} pc + + + ligjare + {0} lj. + {0} lj. + + + AE + {0} AE + {0} AE + + + sm. + {0} sm. + {0} sm. + + + smi + {0} smi + {0} smi + lux {0} lux {0} lux - - karaat - {0} kar. - {0} kar. - - - gram - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + gram + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - oz. - {0} oz. - {0} oz. - - - troy-ons - {0} oz t - {0} oz t - - - lb. - {0} lb. - {0} lb. + + µg + {0} µg + {0} µg ton {0} tn {0} tn + + lb. + {0} lb. + {0} lb. + {0}/lb + + + oz. + {0} oz. + {0} oz. + {0}/oz. + + + troy-ons + {0} oz t + {0} oz t + + + karaat + {0} kar. + {0} kar. + GW {0} GW {0} GW - - perdekrag - {0} pk. - {0} pk. - - - kilowatt - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kilowatt + {0} kW + {0} kW watt {0} W {0} W + + mW + {0} mW + {0} mW + + + perdekrag + {0} pk. + {0} pk. + hPa {0} hPa {0} hPa - - duim kwik - {0} dm.Hg - {0} dm.Hg - - - millibar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -6138,10 +6413,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pd.vk.dm. {0} pd.vk.dm. - - karat - {0} kar. - {0} kar. + + duim kwik + {0} dm.Hg + {0} dm.Hg + + + millibar + {0} mbar + {0} mbar km/uur @@ -6158,6 +6438,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} myl/h {0} myl/h + + kn. + {0} kn. + {0} kn. + + + ° + {0}° + {0}° + grade Celsius {0} °C @@ -6173,31 +6463,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - akkervoet - {0} ak.vt. - {0} ak.vt. - - - cℓ - {0} cℓ - {0} cℓ - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - duim³ - {0} dm.³ - {0} dm.³ - km³ {0} km³ @@ -6207,6 +6472,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ myl³ @@ -6218,25 +6490,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} jt.³ {0} jt.³ - - koppie - {0} kp. - {0} kp. + + ft³ + {0} ft³ + {0} ft³ - - dℓ - {0} dℓ - {0} dℓ + + duim³ + {0} dm.³ + {0} dm.³ - - vloz. - {0} vloz. - {0} vloz. - - - gell. - {0} gell. - {0} gell. + + Mℓ + {0} Mℓ + {0} Mℓ hℓ @@ -6247,27 +6514,64 @@ For terms of use, see http://www.unicode.org/copyright.html liter {0} ℓ {0} ℓ + {0}/ℓ - - Mℓ - {0} Mℓ - {0} Mℓ + + dℓ + {0} dℓ + {0} dℓ + + + cℓ + {0} cℓ + {0} cℓ mℓ {0} mℓ {0} mℓ - - pinte - {0} pt. - {0} pt. + + mpt. + {0} mpt. + {0} mpt. + + + mkp. + {0} mkp. + {0} mkp. + + + akkervoet + {0} ak.vt. + {0} ak.vt. + + + gell. + {0} gell. + {0} gell. + {0}/gell. kw. {0} kw. {0} kw. + + pinte + {0} pt. + {0} pt. + + + koppie + {0} kp. + {0} kp. + + + vloz. + {0} vloz. + {0} vloz. + eetl. {0} e. @@ -6278,6 +6582,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} teel. {0} teel. + + {0}O + {0}N + {0}S + {0}W + @@ -6287,6 +6597,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}G {0}G + + {0}° + {0}° + {0}′ {0}′ @@ -6295,26 +6609,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} ak - {0} ak + + {0} km² + {0} km² {0}ha {0}ha - - {0} vt.² - {0} vt.² - - - {0} km² - {0} km² - {0} m² {0} m² @@ -6323,6 +6625,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0}myl² {0}myl² + + {0} ak + {0} ak + + + {0} vt.² + {0} vt.² + + + ℓ/100km + {0} ℓ/100km + {0} ℓ/100km + + + jaar + {0} j. + {0} j. + + + maand + {0} md. + {0} md. + + + w. + {0} w. + {0} w. + dag {0} d. @@ -6333,66 +6663,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} u. {0} u. - - ms - {0} ms - {0} ms - minute {0} min. {0} min. - - maand - {0} md. - {0} md. - sekondes {0} sek. {0} sek. - - w. - {0} w. - {0} w. - - - jaar - {0} j. - {0} j. - - - cm - {0} cm - {0} cm - - - {0} vt. - {0} vt. - - - {0} duim - {0} duim + + ms + {0} ms + {0} ms km {0} km {0} km - - {0} lj - {0} lj - meter {0} m {0} m - - {0} myl - {0} myl + + cm + {0} cm + {0} cm mm @@ -6403,31 +6702,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0}pm {0}pm + + {0} myl + {0} myl + {0} jt. {0} jt. - - gram - {0} g - {0} g + + {0} vt. + {0} vt. + + + {0} duim + {0} duim + + + {0} lj + {0} lj kg {0} kg {0} kg - - {0} oz. - {0} oz. + + gram + {0} g + {0} g {0} lb. {0} lb. - - {0}pk. - {0}pk. + + {0} oz. + {0} oz. {0}kW @@ -6437,6 +6748,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}W {0}W + + {0}pk. + {0}pk. + {0}hPa {0}hPa @@ -6484,6 +6799,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ℓ {0} ℓ + + {0}O + {0}N + {0}S + {0}W + hh:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/af_NA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/af_NA.xml similarity index 52% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/af_NA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/af_NA.xml index d7b03bfa354..29cbf1cbd06 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/af_NA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/af_NA.xml @@ -1,13 +1,12 @@ - - - + @@ -31,28 +30,6 @@ For terms of use, see http://www.unicode.org/copyright.html - - - - HH:mm:ss zzzz - - - - - HH:mm:ss z - - - - - HH:mm:ss - - - - - HH:mm - - - @@ -72,28 +49,6 @@ For terms of use, see http://www.unicode.org/copyright.html - - - - HH:mm:ss zzzz - - - - - HH:mm:ss z - - - - - HH:mm:ss - - - - - HH:mm - - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/af_ZA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/af_ZA.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/af_ZA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/af_ZA.xml index 878edebfae3..1fb8ac7fc8a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/af_ZA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/af_ZA.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/agq.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/agq.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/agq.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/agq.xml index a68fa47434f..84f9e339671 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/agq.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/agq.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Àŋgwilà Àabɛnìa Àmɛnyìa - Nedàlân Antàe Àŋgolà Àdzɛ̀ntinà Àmɛlekan Samwà @@ -443,6 +441,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + a.g + a.k + a.g a.k @@ -595,6 +597,22 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤ + + + 0K¤ + 00K¤ + 000K¤ + 0M¤ + 00M¤ + 000M¤ + 0G¤ + 00G¤ + 000G¤ + 0T¤ + 00T¤ + 000T¤ + + @@ -771,3 +789,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/agq_CM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/agq_CM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/agq_CM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/agq_CM.xml index e9b25905e3d..11b7d1a5687 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/agq_CM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/agq_CM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ak.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ak.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ak.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ak.xml index 6d41f672e0a..c2237598a04 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ak.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ak.xml @@ -1,13 +1,12 @@ - - - + @@ -65,7 +64,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguila Albenia Aamenia - Nɛdɛland Antelez Angola Agyɛntina Amɛrika Samoa @@ -416,6 +414,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + AN + EW + AN EW @@ -457,22 +459,22 @@ For terms of use, see http://www.unicode.org/copyright.html - HH:mm:ss zzzz + h:mm:ss a zzzz - HH:mm:ss z + h:mm:ss a z - HH:mm:ss + h:mm:ss a - HH:mm + h:mm a @@ -554,6 +556,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00 + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ak_GH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ak_GH.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ak_GH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ak_GH.xml index dbfa78a29c3..36a5db549bd 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ak_GH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ak_GH.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/am.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/am.xml similarity index 84% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/am.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/am.xml index 3507a0bcd05..c362b7ffa94 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/am.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/am.xml @@ -1,71 +1,143 @@ - - - + {0} ({1}) - {0},{1} + {0}፣{1} {0}: {1} አፋርኛ አብሐዚኛ + አቻይንኛ አኮሊኛ + አዳንግሜ + አድይግሄ + አቬስታን አፍሪካንኛ + አፍሪሂሊ አገም + አይኑ አካንኛ + አካዲያን + አላባማ + አልዩት አማርኛ + አራጎንስ + አንጊካ ዓረብኛ ዘመናዊ መደበኛ ዓረብኛ + አራማይክ ማፑቼ + አራኦና + አራፓሆ + የአልጄሪያ ዓረብኛ + አራዋክ አሳሜዛዊ አሱ + የአሜሪካ የምልክት ቋንቋ + አውስትሪያን + አቫሪክ + አዋድሂ አያማርኛ አዘርባጃንኛ አዜሪ ባስኪርኛ + ባሉቺ + ባሊኔስ + ባቫሪያን + ባሳ + ባሙን + ባታካ ቶባ ቤላራሻኛ + ቤጃ ቤምባ + ቤታዊ ቤና + ባፉት + ባዳጋ ቡልጋሪኛ + የምዕራብ ባሎቺ + ቦጁሪ ቢስላምኛ + ቢኮል + ቢኒ + ባንጃር ባምባርኛ ቤንጋሊኛ ቲቤታንኛ + ቢሹንፑሪያ + ባክህቲያሪ ብሬቶንኛ + ብራጅ + ብራሁዪ ቦዶ ቦስኒያንኛ + አኮስ + ቡሪያት + ቡጊኔዝ + ቡሉ ብሊን ካታላንኛ + ካዶ + ካሪብ + ካዩጋ + አትሳም + ችችን + ካቡዋኖ ቺጋኛ + ቻሞሮ + ቺብቻ + ቻጋታይ + ቹክስ + ቺኑክ ጃርጎን + ቾክታዋ + ቺፔውያን ቼሮኬኛ + ችዬኔ የሶራኒ ኩርድኛ ኮርሲካኛ + ኮፕቲክ + ካፒዝኖን + ክሪ + ክሪሚያን ተርኪሽ ቼክኛ + ቸርች ስላቪክ + ቹቫሽ ወልሽ ዴኒሽ + ዳኮታ + ዳርግዋ ታይታኛ ጀርመን የኦስትሪያ ጀርመን የስዊዝ ከፍተኛ ጀርመንኛ + ዳላዌር + ዶግሪብ + ዲንካ ዛርማኛ - የታችኛው ሶርቢያንኛ + ዶግሪ + የታችኛው ሰርቢያንኛ + ሴንተራል ዱሰን ዱዋላኛ ዲቬህ ጆላ ፎንያኛ + ድዩላ ድዞንግኻኛ + ዳዛጋ ኢቦኛ ኢዊ ኤፊክ + የጥንታዊ ግብጽኛ ግሪክኛ እንግሊዝኛ የአውስትራሊያ እንግሊዝኛ @@ -75,9 +147,11 @@ For terms of use, see http://www.unicode.org/copyright.html የአሜሪካ እንግሊዝኛ የዩ ኤስ እንግሊዝኛ ኤስፐራንቶ - ስፓኒሽ + ስፓንሽኛ የላቲን አሜሪካ ስፓኒሽ - የአውሮፓ እስፓንኛ + የአውሮፓ ስፓንሽኛ + የሜክሲኮ ስፓንሽኛ + ሴንተራል ዩፒክ ኢስቶኒያንኛ ባስክኛ ፐርሺያኛ @@ -88,6 +162,8 @@ For terms of use, see http://www.unicode.org/copyright.html ፈረንሳይኛ የካናዳ ፈረንሳይኛ የስዊዝ ፈረንሳይኛ + ካጁን ፍሬንች + አርፒታን የምዕራብ ፍሪስኛ አይሪሽ @@ -96,6 +172,7 @@ For terms of use, see http://www.unicode.org/copyright.html ግዕዝኛ ጋሊሺያ ጓራኒኛ + የጥንታዊ ግሪክ የስዊዝ ጀርመን ጉጃርቲኛ ጉስሊኛ @@ -141,6 +218,7 @@ For terms of use, see http://www.unicode.org/copyright.html ካሽሚርኛ ሻምባላ ባፊያ + ኮሎኝያን ኩርድሽኛ ኮርኒሽ ኪርጊዝኛ @@ -152,6 +230,7 @@ For terms of use, see http://www.unicode.org/copyright.html ሊንጋላኛ ላውስኛ ሎዚኛ + ሰሜናዊ ሉሪ ሉቴንያንኛ ሉባ ካታንጋ ሉባ-ሉሏ @@ -173,12 +252,17 @@ For terms of use, see http://www.unicode.org/copyright.html ማላይኛ ማልቲስኛ ሙንዳንግ + ክሪክ ቡርማኛ + ማዛንደራኒ ናኡሩ ናማ የኖርዌይ ቦክማል ሰሜን ንዴብሌ + የታችኛው ጀርመን + የታችኛው ሳክሰን ኔፓሊኛ + ኦ ናጋ ደች ፍሌሚሽ ክዋሲዮ @@ -187,6 +271,7 @@ For terms of use, see http://www.unicode.org/copyright.html ንኮ ሰሜናዊ ሶቶ ኑዌር + ክላሲክ ኔዋሪ ንያንጃ ኒያንኮልኛ ኦኪታንኛ @@ -202,24 +287,28 @@ For terms of use, see http://www.unicode.org/copyright.html የአውሮፓ ፖርቹጋልኛ ኵቿኛ ኪቼ + ቺምቦራዞ ሃይላንድ ኩቹዋ ሮማንሽ ሩንዲኛ ሮማኒያን ሞልዳቫዊና ሮምቦ - ራሽኛ + ራሽያኛ + አሮማንያን ኪንያርዋንድኛ ርዋ ሳንስክሪትኛ ሳምቡሩ ሳንጉ ሲንድሂኛ + ደቡባዊ ኩዲሽ ሰሜናዊ ሳሚ ሴና ኮይራቦሮ ሴኒ ሳንጎኛ ሰርቦ-ክሮኤሽያኛ ታቼልሂት + ቻዲያን ዓረብኛ ሲንሃልኛ ሲዳምኛ ስሎቫክኛ @@ -238,7 +327,9 @@ For terms of use, see http://www.unicode.org/copyright.html ሱዳንኛ ስዊድንኛ ስዋሂሊኛ - ኮንጎ ስዋሂሊ + ኮንጎ ስዋሂሊ + ኮሞሪያን + ክላሲክ ኔይራ ታሚልኛ ተሉጉኛ ቴሶ @@ -272,12 +363,15 @@ For terms of use, see http://www.unicode.org/copyright.html ቪትናምኛ ቮላፑክኛ ቩንጆ + ዋርልፒሪ ዎሎፍኛ ዞሳኛ ሶጋ ይዲሽኛ ዮሩባዊኛ + ካንቶኒዝ ዡዋንግኛ + ብሊስይምቦልስ መደበኛ የሞሮኮ ታማዚግት ቻይንኛ ቀለል ያለ ቻይንኛ @@ -393,7 +487,6 @@ For terms of use, see http://www.unicode.org/copyright.html አንጉኢላ አልባኒያ አርሜኒያ - ኔዘርላንድስ አንቲልስ አንጐላ አንታርክቲካ አርጀንቲና @@ -566,7 +659,7 @@ For terms of use, see http://www.unicode.org/copyright.html ናይጄሪያ ኒካራጓ ኔዘርላንድ - ኖርዌ + ኖርዌይ ኔፓል ናኡሩ ኒኡይ @@ -592,7 +685,7 @@ For terms of use, see http://www.unicode.org/copyright.html ሪዩኒየን ሮሜኒያ ሰርብያ - ራሺያ + ራሽያ ሩዋንዳ ሳውድአረቢያ ሰሎሞን ደሴት @@ -669,6 +762,9 @@ For terms of use, see http://www.unicode.org/copyright.html የቁጥር ድርደራ የድርደራ አቅም ገንዘብ + የሰዓት ዑደት (12 ወይም 24) + መስመር መስበሪያ ቅጥ + የመለኪያ ስርዓት ቁጥሮች የሰዓት ሰቅ የአካባቢ አይነት @@ -676,95 +772,105 @@ For terms of use, see http://www.unicode.org/copyright.html ለግል ጥቅም - የአረቢክ-ኢንዲክ አሃዞች - የተራዘሙ የአረቢክ-ኢንዲክ አሃዞች - የአርመንኛ ቁጥሮች - የአሜሪካን ንዑስ ሆሄ አሃዞች - የቤንጋሊ አሃዞች - የባህላዊ ቻይንኛ የድርድር ቅደም ተከተል - ትልቅ5 - የቡዲስት ቀን አቆጣጠር - የቻይና የቀን አቆጣጠር - የኮፕቲክ የቀን አቆጣጠር - የዳንጊ የቀን አቆጣጠር - የዴቫንጋሪ አሃዞች - የመዝገበ ቃላት የድርድር ቅደም ተከተል - የነባሪ ዩኒኮድ የድርድር ቅደም ተከተል - የኢትዮፒክ ቁጥሮች - የኢትዮጵያ የቀን አቆጣጠር - የኢትዮፒክ አመተ አለም የቀን አቆጣጠር - የፋይናንስ ቁጥሮች - የሙሉ ወርድ አሃዞች - የቀለለ የቻይንኛ የድርደራ ቅደም ተከተል - GB2312 - የጆርጂያን ቁጥሮች - የግሪጎሪያን ቀን አቆጣጠር - የግሪክ ቁጥሮች - የግሪክ ንዑስ ሆሄ ቁጥሮች - የጉጃራቲ አሃዞች - የጉርሙኪ አሃዞች - የቻይንኛ አስርዮሽ ቁጥሮች - ቀለል ያሉ የቻይንኛ ቁጥሮች - ቀለል ያሉ የቻይንኛ ገንዘብ ነክ ቁጥሮች - የባህላዊ ቻይንኛ ቁጥሮች - የባህላዊ ቻይንኛ የገንዘብ ነክ ቁጥሮች - የእብራይስጥ ቁጥሮች - የእብራዊያን የቀን አቆጣጠር - ሁሉንም ደርድር - የህንድ ብሔራዊ የቀን አቆጣጠር - የእስላማዊ የሰዓት አቆጣጠር - የእስላም ህዝባዊ የቀን አቆጣጠር - ISO-8601 የቀን አቆጣጠር - የጃፓን የቀን አቆጣጠር - የጃፓንኛ ቁጥሮች - የጃፓንኛ የገንዘብ ነክ ቁጥሮች - የክህመር አሃዞች - የካንአዳ አሃዞች - የላኦ አሃዞች - የምስራቃዊ አሃዞች - ንዑስ ሆሄ መጀመሪያ ደርድር - የማላያላምኛ አሃዞች - የሞንጎልኛ አሃዞች - የማያንማር አሃዞች - ትውልድ አሃዞች - የፊደል ጭረቶችን እንደመደበኛ ደርድር - መደበኛ የመልከፊደል አቀማመጥ ደርድር - ያለመልከፊደል ትብ ደርድር - ካና ለይተህ ደርድር - ያለመደበኛ ሁኔታ ደርድር - አሃዞችን በየግል ደርድር - ምልክቶችን ደርድር - የኦሪያኛ አሃዞች - የፐርሽያ የቀን አቆጣጠር - የስልክ ደብተር ድርድር ቅደም ተከተል - የፎነቲክ ድርደራ ቅደም ተከተል - ፒንይን የድርድር ቅደም ተከተል - የመሠረት ፊደላት ብቻ ደርድር - የፊደል ጭረቶች/መልከፊደል/ስፋት/ካና ደርድር - ዳግም የተፈጠረ የድርድር ቅደም ተከተል - የሚንጉ የቀን አቆጣጠር - የሮማን ቁጥሮች - የሮማን ንዑስ ሆሄ ቁጥሮች - ለጠቅላላ ጉዳይ ፍለጋ - በሃንጉል የመጀመሪያ ተነባቢ ፈልግ - የፊደል ጭረቶችን ደርድር - ችላ ባይ ምልክቶችን ደርድር - መደበኛ - የበትር ድርድር ቅደም ተከተል - ባህላዊ የታሚል ቁጥሮች - የታሚል አሃዞች - የተልጉ አሃዞች - የፊደል ጭረቶች/መልከፊደል/ስፋት ደርድር - የታይ አሃዞች - የቲቤታን አሃዞች - ባህላዊ የድርድር ቅደም ተከተል - ተለምዷዊ ቁጥሮች - የመሰረታዊ በትር ድርድር ቅደም ተከተል - አቢይ ሆሄ መጀመሪያ ደርድር - የቫይ አሃዞች - የፊደል ጭረቶች በኋሊዮሽ ደርድር - በመልከፊደል ትብ ደርድር - ካና ለይተህ ደርድር - ዩኒኮድ በመደበኛ ሁኔታ ደርድር - አሃዞች በቁጥር ደርድር + የቡዲስት ቀን አቆጣጠር + የቻይና የቀን አቆጣጠር + የኮፕቲክ የቀን አቆጣጠር + የዳንጊ የቀን አቆጣጠር + የኢትዮጵያ የቀን አቆጣጠር + የኢትዮፒክ አመተ አለም የቀን አቆጣጠር + የግሪጎሪያን የቀን አቆጣጠር + የእብራዊያን የቀን አቆጣጠር + የህንድ ብሔራዊ የቀን አቆጣጠር + የእስላማዊ የሰዓት አቆጣጠር + የእስላም ህዝባዊ የቀን አቆጣጠር + ISO-8601 የቀን አቆጣጠር + የጃፓን የቀን አቆጣጠር + የፐርሽያ የቀን አቆጣጠር + የሚንጉ የቀን አቆጣጠር + ምልክቶችን ደርድር + ችላ ባይ ምልክቶችን ደርድር + የፊደል ጭረቶችን እንደመደበኛ ደርድር + የፊደል ጭረቶች በኋሊዮሽ ደርድር + ንዑስ ሆሄ መጀመሪያ ደርድር + መደበኛ የመልከፊደል አቀማመጥ ደርድር + አቢይ ሆሄ መጀመሪያ ደርድር + ያለመልከፊደል ትብ ደርድር + በመልከፊደል ትብ ደርድር + ካና ለይተህ ደርድር + ካና ለይተህ ደርድር + የባህላዊ ቻይንኛ የድርድር ቅደም ተከተል - ትልቅ5 + የመዝገበ ቃላት የድርድር ቅደም ተከተል + የነባሪ ዩኒኮድ የድርድር ቅደም ተከተል + የቀለለ የቻይንኛ የድርደራ ቅደም ተከተል - GB2312 + የስልክ ደብተር ድርድር ቅደም ተከተል + የፎነቲክ ድርደራ ቅደም ተከተል + ፒንይን የድርድር ቅደም ተከተል + ዳግም የተፈጠረ የድርድር ቅደም ተከተል + ለጠቅላላ ጉዳይ ፍለጋ + በሃንጉል የመጀመሪያ ተነባቢ ፈልግ + መደበኛ + የበትር ድርድር ቅደም ተከተል + ባህላዊ የድርድር ቅደም ተከተል + የመሰረታዊ በትር ድርድር ቅደም ተከተል + ያለመደበኛ ሁኔታ ደርድር + ዩኒኮድ በመደበኛ ሁኔታ ደርድር + አሃዞችን በየግል ደርድር + አሃዞች በቁጥር ደርድር + ሁሉንም ደርድር + የመሠረት ፊደላት ብቻ ደርድር + የፊደል ጭረቶች/መልከፊደል/ስፋት/ካና ደርድር + የፊደል ጭረቶችን ደርድር + የፊደል ጭረቶች/መልከፊደል/ስፋት ደርድር + የ12 ሰዓት ስርዓት (0–11) + የ12 ሰዓት ስርዓት (1–12) + የ24 ሰዓት ስርዓት (0–23) + የ24 ሰዓት ስርዓት (1–24) + ላላ ያለ መስመር መስበሪያ ቅጥ + መደበኛ መስመር መስበሪያ ቅጥ + ጠበቅ ያለ መስመር መስበሪያ ቅጥ + የልኬት ስርዓት + ኢምፔሪያል የመለኪያ ስርዓት + የአሜሪካ መለኪያ ስርዓት + የአረቢክ-ኢንዲክ አሃዞች + የተራዘሙ የአረቢክ-ኢንዲክ አሃዞች + የአርመንኛ ቁጥሮች + የአሜሪካን ንዑስ ሆሄ አሃዞች + የቤንጋሊ አሃዞች + የዴቫንጋሪ አሃዞች + የኢትዮፒክ ቁጥሮች + የፋይናንስ ቁጥሮች + የሙሉ ወርድ አሃዞች + የጆርጂያን ቁጥሮች + የግሪክ ቁጥሮች + የግሪክ ንዑስ ሆሄ ቁጥሮች + የጉጃራቲ አሃዞች + የጉርሙኪ አሃዞች + የቻይንኛ አስርዮሽ ቁጥሮች + ቀለል ያሉ የቻይንኛ ቁጥሮች + ቀለል ያሉ የቻይንኛ ገንዘብ ነክ ቁጥሮች + የባህላዊ ቻይንኛ ቁጥሮች + የባህላዊ ቻይንኛ የገንዘብ ነክ ቁጥሮች + የእብራይስጥ ቁጥሮች + የጃፓንኛ ቁጥሮች + የጃፓንኛ የገንዘብ ነክ ቁጥሮች + የክህመር አሃዞች + የካንአዳ አሃዞች + የላኦ አሃዞች + የምስራቃዊ አሃዞች + የማላያላምኛ አሃዞች + የሞንጎልኛ አሃዞች + የማያንማር አሃዞች + ትውልድ አሃዞች + የኦሪያኛ አሃዞች + የሮማን ቁጥሮች + የሮማን ንዑስ ሆሄ ቁጥሮች + ባህላዊ የታሚል ቁጥሮች + የታሚል አሃዞች + የተልጉ አሃዞች + የታይ አሃዞች + የቲቤታን አሃዞች + ተለምዷዊ ቁጥሮች + የቫይ አሃዞች ቢ ጂ ኤን @@ -810,6 +916,194 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + BE + + + BE + + + BE + + + + + + EEEE፣ d MMMM y G + + + + + d MMMM y G + + + + + d MMM y G + + + + + dd/MM/y GGGGG + + + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + d + ccc + E d + y G + MMM፣ y G + MMM d፣ y G + E MMM d፣ y G + L + M/d + E፣ M/d + LLL + MMM d + E፣ MMM d + MMMM d + E፣ MMMM d + y + M/y + d/M/y + E፣ d/M/y + MMM y + d MMM y + E፣ MMM d y + MMMM y + QQQ y + QQQQ y + G y + GGGGG y-MM + GGGGG y-MM-dd + GGGGG y-MM-dd, E + G y MMM + G y MMM d + G y MMM d, E + G y QQQ + G y QQQQ + + + {0} – {1} + + d–d + + + h a – h a + h – h a + + + HH–HH + + + h:mm a – h:mm a + h:mm – h:mm a + h:mm – h:mm a + + + HH:mm–HH:mm + HH:mm–HH:mm + + + h:mm a – h:mm a v + h:mm – h:mm a v + h:mm – h:mm a v + + + HH:mm–HH:mm v + HH:mm–HH:mm v + + + h a – h a v + h – h a v + + + HH–HH v + + + M–M + + + d–d/M + d/M – d/M + + + E d/M – E d/M + E፣ d/M – E፣ d/M + + + MMM–MMM + + + MMM d–d + MMM d – MMM d + + + E d – E d፣ MMM + E፣ MMM d – E፣ MMM d + + + y–y + + + M/y – M/y + M/y – M/y + + + d/M/y – d/M/y + d/M/y – d/M/y + d/M/y – d/M/y + + + E፣ d/M/y – E፣ d/M/y + E d/M/ – E d/M፣ y + E፣ d/M/y – E፣ d/M/y + + + MMM–MMM፣ y + MMM y – MMM y + + + MMM d–d፣ y + MMM d – MMM d፣ y + MMM d፣ y – MMM d፣ y + + + E MMM d – E MMM d፣ y + E MMM d – E MMM d፣ y + E፣ MMM d፣ y – E፣ MMM d፣ y + + + MMMM–MMMM y + MMMM y – MMMM y + + + + @@ -822,19 +1116,19 @@ For terms of use, see http://www.unicode.org/copyright.html - መስከ - ጥቅም + መስከረም + ጥቅምት ኅዳር - ታኅሣ + ታኅሣሥ ጥር - የካቲ - መጋቢ - ሚያዝ - ግንቦ + የካቲት + መጋቢት + ሚያዝያ + ግንቦት ሰኔ ሐምሌ ነሐሴ - ጳጉሜ + ጳጉሜን 1 @@ -869,19 +1163,19 @@ For terms of use, see http://www.unicode.org/copyright.html - መስከ - ጥቅም + መስከረም + ጥቅምት ኅዳር - ታኅሣ + ታኅሣሥ ጥር - የካቲ - መጋቢ - ሚያዝ - ግንቦ + የካቲት + መጋቢት + ሚያዝያ + ግንቦት ሰኔ ሐምሌ ነሐሴ - ጳጉሜ + ጳጉሜን 1 @@ -915,13 +1209,195 @@ For terms of use, see http://www.unicode.org/copyright.html + + + ERA0 + ERA1 + + + ERA0 + ERA1 + + + ERA0 + ERA1 + + - EEEE፣ MMMM d ቀን y G + EEEE፣ d MMMM y G + + + + + d MMMM y G + + + + + d MMM y G + + + + + dd/MM/y GGGGG + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + d + ccc + E d + y G + MMM፣ y G + MMM d፣ y G + E MMM d፣ y G + L + M/d + E፣ M/d + LLL + MMM d + E፣ MMM d + MMMM d + E, MMMM d + y + M/y + d/M/y + E፣ d/M/y + MMM y + d MMM y + E፣ MMM d y + MMMM y + QQQ y + QQQQ y + G y + GGGGG y-MM + GGGGG y-MM-dd + GGGGG y-MM-dd, E + G y MMM + G y MMM d + G y MMM d, E + G y QQQ + G y QQQQ + + + {0} – {1} + + d–d + + + h a – h a + h – h a + + + HH–HH + + + h:mm a – h:mm a + h:mm – h:mm a + h:mm – h:mm a + + + HH:mm–HH:mm + HH:mm–HH:mm + + + h:mm a – h:mm a v + h:mm – h:mm a v + h:mm – h:mm a v + + + HH:mm–HH:mm v + HH:mm–HH:mm v + + + h a – h a v + h – h a v + + + HH–HH v + + + M–M + + + d–d/M + d/M – d/M + + + E d/M – E d/M + E፣ d/M – E፣ d/M + + + MMM–MMM + + + MMM d–d + MMM d – MMM d + + + E d – E d፣ MMM + E፣ MMM d – E፣ MMM d + + + y–y + + + M/y – M/y + M/y – M/y + + + d/M/y – d/M/y + d/M/y – d/M/y + d/M/y – d/M/y + + + E፣ d/M/y – E፣ d/M/y + E d/M/ – E d/M፣ y + E፣ d/M/y – E፣ d/M/y + + + MMM–MMM፣ y + MMM y – MMM y + + + MMM d–d፣ y + MMM d – MMM d፣ y + MMM d፣ y – MMM d፣ y + + + E MMM d – E MMM d፣ y + E MMM d – E MMM d፣ y + E፣ MMM d፣ y – E፣ MMM d፣ y + + + MMMM–MMMM y + MMMM y – MMMM y + + + @@ -969,6 +1445,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d y G MMM፣ y G @@ -985,9 +1462,9 @@ For terms of use, see http://www.unicode.org/copyright.html E፣ M/d LLL MMM d - E, MMM d + E፣ MMM d MMMM d - E, MMMM d + E፣ MMMM d mm:ss y M/y @@ -1006,6 +1483,7 @@ For terms of use, see http://www.unicode.org/copyright.html G y MMM G y MMM d G y MMM d, E + MMMM y G G y QQQ G y QQQQ @@ -1291,7 +1769,7 @@ For terms of use, see http://www.unicode.org/copyright.html 1ኛው ሩብ - ሁለተኛው ሩብ + 2ኛው ሩብ 3ኛው ሩብ 4ኛው ሩብ @@ -1319,15 +1797,67 @@ For terms of use, see http://www.unicode.org/copyright.html - - - - - - + + እኩለ ሌሊት ጥዋት ቀትር ከሰዓት + ጥዋት1 + ከሰዓት1 + ማታ1 + ሌሊት1 + + + እኩለ ሌሊት + + + + ጥዋት1 + ከሰዓት1 + ማታ1 + ሌሊት1 + + + እኩለ ሌሊት + ጥዋት + ቀትር + ከሰዓት + ጥዋት1 + ከሰዓት1 + ማታ1 + ሌሊት1 + + + + + እኩለ ሌሊት + ጥዋት + ቀትር + ከሰዓት + ጥዋት1 + ከሰዓት በኋላ + ማታ + ሌሊት + + + እኩለ ሌሊት + + ቀትር + + ጥዋት + ከሰዓት በኋላ + ማታ + ሌሊት + + + እኩለ ሌሊት + ጥዋት + ቀትር + ከሰዓት + ጥዋት1 + ከሰዓት በኋላ + ማታ + ሌሊት @@ -1336,19 +1866,22 @@ For terms of use, see http://www.unicode.org/copyright.html ዓመተ ዓለም BCE ዓመተ ምሕረት - CE + ዓ/ም ዓ/ዓ BCE ዓ/ም - CE + + ዓ/ዓ + ዓ/ም + - EEEE, d MMMM y + EEEE ፣d MMMM y @@ -1428,14 +1961,18 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L M/d - E, M/d + E፣ M/d LLL MMM d - E, MMM d + E፣ MMM d MMMM d - E, MMMM d + E፣ MMMM d mm:ss y M/y @@ -1589,6 +2126,9 @@ For terms of use, see http://www.unicode.org/copyright.html ዓመት + ያለፈው ዓመት + በዚህ ዓመት + የሚቀጥለው ዓመት በ{0} ዓመታት ውስጥ በ{0} ዓመታት ውስጥ @@ -1600,6 +2140,9 @@ For terms of use, see http://www.unicode.org/copyright.html ዓመት + ያለፈው ዓመት + በዚህ ዓመት + የሚቀጥለው ዓመት በ{0} ዓመታት ውስጥ በ{0} ዓመታት ውስጥ @@ -1611,35 +2154,44 @@ For terms of use, see http://www.unicode.org/copyright.html ሩብ + የመጨረሻው ሩብ + ይህ ሩብ + የሚቀጥለው ሩብ +{0} ሩብ +{0} ሩብ - -{0} Q ሩብ - -{0} Q ሩብ + {0} ሩብ በፊት + {0} ሩብ በፊት ሩብ + የመጨረሻው ሩብ + ይህ ሩብ + የሚቀጥለው ሩብ +{0} ሩብ +{0} ሩብ - -{0} Q ሩብ - -{0} Q ሩብ + {0} ሩብ በፊት + {0} ሩብ በፊት ሩብ + የመጨረሻው ሩብ + ይህ ሩብ + የሚቀጥለው ሩብ +{0} ሩብ +{0} ሩብ - -{0} Q ሩብ - -{0} Q ሩብ + {0} ሩብ በፊት + {0} ሩብ በፊት @@ -1658,6 +2210,9 @@ For terms of use, see http://www.unicode.org/copyright.html ወር + ያለፈው ወር + በዚህ ወር + የሚቀጥለው ወር በ{0} ወራት ውስጥ በ{0} ወራት ውስጥ @@ -1669,6 +2224,9 @@ For terms of use, see http://www.unicode.org/copyright.html ወር + ያለፈው ወር + በዚህ ወር + የሚቀጥለው ወር በ{0} ወራት ውስጥ በ{0} ወራት ውስጥ @@ -1680,7 +2238,7 @@ For terms of use, see http://www.unicode.org/copyright.html ሳምንት - ባለፈው ሳምንት + ያለፈው ሳምንት በዚህ ሳምንት የሚቀጥለው ሳምንት @@ -1694,6 +2252,9 @@ For terms of use, see http://www.unicode.org/copyright.html ሳምንት + ባለፈው ሳምንት + በዚህ ሣምንት + የሚቀጥለው ሳምንት በ{0} ሳምንታት ውስጥ በ{0} ሳምንታት ውስጥ @@ -1705,6 +2266,9 @@ For terms of use, see http://www.unicode.org/copyright.html ሳምንት + ባለፈው ሳምንት + በዚህ ሣምንት + የሚቀጥለው ሳምንት በ{0} ሳምንታት ውስጥ በ{0} ሳምንታት ውስጥ @@ -1732,6 +2296,11 @@ For terms of use, see http://www.unicode.org/copyright.html ቀን + ከትናንት ወዲያ + ትላንትና + ዛሬ + ነገ + ከነገ ወዲያ በ{0} ቀን ውስጥ በ{0} ቀኖች ውስጥ @@ -1743,6 +2312,11 @@ For terms of use, see http://www.unicode.org/copyright.html ቀን + ከትናንት ወዲያ + ትላንትና + ዛሬ + ነገ + ከነገ ወዲያ በ{0} ቀን ውስጥ በ{0} ቀኖች ውስጥ @@ -1943,6 +2517,7 @@ For terms of use, see http://www.unicode.org/copyright.html ሰከንድ + አሁን በ{0} ሰከንድ ውስጥ በ{0} ሰከንዶች ውስጥ @@ -1954,6 +2529,7 @@ For terms of use, see http://www.unicode.org/copyright.html ሰከንድ + አሁን በ{0} ሰከንድ ውስጥ በ{0} ሰከንዶች ውስጥ @@ -2842,6 +3418,9 @@ For terms of use, see http://www.unicode.org/copyright.html ፖርት ሞሬስባይ + + ቦጌይንቪል + ማኒላ @@ -2926,6 +3505,9 @@ For terms of use, see http://www.unicode.org/copyright.html ኢርኩትስክ + + ቺታ + ያኩትስክ @@ -2944,6 +3526,9 @@ For terms of use, see http://www.unicode.org/copyright.html ማጋዳን + + ስሬድኔስኮልምስክ + ካምቻትካ @@ -3266,9 +3851,9 @@ For terms of use, see http://www.unicode.org/copyright.html - መካከለኛ የሰዓት አቆጣጠር - የመካከላዊ መደበኛ ሰዓት አቆጣጠር - የመካከላዊ የቀን ሰዓት አቆጣጠር + የመካከለኛ ሰዓት አቆጣጠር + የመካከለኛ መደበኛ ሰዓት አቆጣጠር + የመካከለኛ የቀን ሰዓት አቆጣጠር @@ -3308,9 +3893,9 @@ For terms of use, see http://www.unicode.org/copyright.html - የአረቢያ ሰዓት - የአረቢያ መደበኛ ሰዓት - የአረቢያ የቀን ብርሃን ሰዓት + የዓረቢያ ሰዓት + የዓረቢያ መደበኛ ሰዓት + የዓረቢያ የቀን ብርሃን ሰዓት @@ -4187,8 +4772,8 @@ For terms of use, see http://www.unicode.org/copyright.html 0 ሜትር 00 ሜትር 00 ሜትር - 000 ሜትር - 000 ሜትር + 000ሜ + 000ሜ 0 ቢ 0 ቢ 00 ቢ @@ -4227,6 +4812,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0 ሺ + ¤0 ሺ + ¤00 ሺ + ¤00 ሺ + ¤000 ሺ + ¤000 ሺ + ¤0 ሜትር + ¤0 ሜትር + ¤00 ሜትር + ¤00 ሜትር + ¤000 ሜትር + ¤000 ሜትር + ¤0 ቢ + ¤0 ቢ + ¤00 ቢ + ¤00 ቢ + ¤000 ቢ + ¤000 ቢ + ¤0 ት + ¤0 ት + ¤00 ት + ¤00 ት + ¤000 ት + ¤000 ት + + {0} {1} {0} {1} @@ -4266,6 +4879,7 @@ For terms of use, see http://www.unicode.org/copyright.html የአንጎላ ኩዋንዛ የአንጎላ ኩዋንዛ AOA + Kz የአርጀንቲና ፔሶ @@ -4298,6 +4912,7 @@ For terms of use, see http://www.unicode.org/copyright.html የቦስኒያ ሄርዞጎቪና የሚመነዘር ማርክ የቦስኒያ ሄርዞጎቪና የሚመነዘር ማርክ BAM + KM የባርቤዶስ ዶላር @@ -4350,6 +4965,7 @@ For terms of use, see http://www.unicode.org/copyright.html የቦሊቪያ ቦሊቪያኖ የቦሊቪያ ቦሊቪያኖ BOB + Bs የብራዚል ሪል @@ -4376,6 +4992,7 @@ For terms of use, see http://www.unicode.org/copyright.html የቦትስዋና ፑላ የቦትስዋና ፑላ BWP + P የቤላሩስያ ሩብል @@ -4443,6 +5060,7 @@ For terms of use, see http://www.unicode.org/copyright.html የኩባ የሚመነዘር ፔሶ የኩባ የሚመነዘር ፔሶ CUC + $ የኩባ ፔሶ @@ -4462,6 +5080,7 @@ For terms of use, see http://www.unicode.org/copyright.html ቼክ ሪፐብሊክ ኮሩና ቼክ ሪፐብሊክ ኮሮና CZK + የጅቡቲ ፍራንክ @@ -4474,6 +5093,7 @@ For terms of use, see http://www.unicode.org/copyright.html የዴንማርክ ክሮን የዴንማርክ ክሮን DKK + kr የዶሚኒክ ፔሶ @@ -4493,6 +5113,7 @@ For terms of use, see http://www.unicode.org/copyright.html የግብጽ ፓውንድ የግብጽ ፓውንድ EGP + የኤርትራ ናቅፋ @@ -4525,6 +5146,7 @@ For terms of use, see http://www.unicode.org/copyright.html የፎክላንድ ደሴቶች ፓውንድ የፎክላንድ ደሴቶች ፓውንድ FKP + £ የእንግሊዝ ፓውንድ ስተርሊንግ @@ -4538,6 +5160,7 @@ For terms of use, see http://www.unicode.org/copyright.html የጆርጅያ ላሪ የጆርጅያ ላሪ GEL + የጋና ሴዲ @@ -4566,12 +5189,14 @@ For terms of use, see http://www.unicode.org/copyright.html የጊኒ ፍራንክ የጊኒ ፍራንክ GNF + FG ጓቲማላን ኩቲዛል ጓቲማላን ኩቲዛል ጓቲማላን ኩቲዛል GTQ + Q የጉየና ዶላር @@ -4592,12 +5217,14 @@ For terms of use, see http://www.unicode.org/copyright.html የሃንዱራ ሌምፓአይራ የሃንዱራ ሌምፓአይራ HNL + L የክሮሽያ ኩና የክሮሽያ ኩና የክሮሽያ ኩና HRK + kn የሃያቲ ጓርዴ @@ -4610,12 +5237,14 @@ For terms of use, see http://www.unicode.org/copyright.html የሁንጋሪ ፎሪንት የሃንጋሪያን ፎሪንት HUF + Ft የኢንዶኔዥያ ሩፒሃ የኢንዶኔዥያ ሩፒሃ የኢንዶኔዥያ ሩፒሃ IDR + Rp የእስራኤል አዲስ ሽቅል @@ -4648,6 +5277,7 @@ For terms of use, see http://www.unicode.org/copyright.html የአይስላንድ ክሮና የአይስላንድ ክሮና ISK + kr የጃማይካ ዶላር @@ -4693,12 +5323,14 @@ For terms of use, see http://www.unicode.org/copyright.html የኮሞሮ ፍራንክ የኮሞሮ ፍራንክ KMF + CF የሰሜን ኮሪያ ዎን የሰሜን ኮሪያ ዎን የሰሜን ኮሪያ ዎን KPW + የደቡብ ኮሪያ ዎን @@ -4739,12 +5371,14 @@ For terms of use, see http://www.unicode.org/copyright.html የሊባኖስ ፓውንድ የሊባኖስ ፓውንድ LBP + የሲሪላንካ ሩፒ የሲሪላንካ ሩፒ የሲሪላንካ ሩፒ LKR + Rs የላይቤሪያ ዶላር @@ -4791,6 +5425,7 @@ For terms of use, see http://www.unicode.org/copyright.html የማደጋስካር ማላጋስይ አሪያርይ የማደጋስካር ማላጋስይ አሪያርይ MGA + Ar የሜቆድንያ ዲናር @@ -4803,6 +5438,7 @@ For terms of use, see http://www.unicode.org/copyright.html ምያንማ ክያት ምያንማ ክያት MMK + K የሞንጎሊያን ቱግሪክ @@ -4828,6 +5464,7 @@ For terms of use, see http://www.unicode.org/copyright.html የሞሪሸስ ሩፒ የሞሪሸስ ሩፒ MUR + Rs የማልዲቫ ሩፊያ @@ -4853,6 +5490,7 @@ For terms of use, see http://www.unicode.org/copyright.html የማሌዥያ ሪንጊት የማሌዥያ ሪንጊት MYR + RM የሞዛምቢክ ሜቲካል @@ -4879,18 +5517,21 @@ For terms of use, see http://www.unicode.org/copyright.html የኒካራጓ ኮርዶባ የኒካራጓ ኮርዶባ NIO + C$ የኖርዌይ ክሮን የኖርዌይ ክሮን የኖርዌይ ክሮን NOK + kr የኔፓል ሩፒ የኔፓል ሩፒ የኔፓል ሩፒ NPR + Rs የኒውዚላንድ ዶላር @@ -4935,12 +5576,14 @@ For terms of use, see http://www.unicode.org/copyright.html የፓኪስታን ሩፒ የፓኪስታን ሩፒ PKR + Rs የፖላንድ ዝሎቲ የፖላንድ ዝሎቲ የፖላንድ ዝሎቲ PLN + የፓራጓይ ጉአራኒ @@ -4972,12 +5615,14 @@ For terms of use, see http://www.unicode.org/copyright.html የሩስያ ሩብል የሩስያ ሩብል RUB + የሩዋንዳ ፍራንክ የሩዋንዳ ፍራንክ የሩዋንዳ ፍራንክ RWF + RF የሳውዲ ሪያል @@ -5012,6 +5657,7 @@ For terms of use, see http://www.unicode.org/copyright.html የስዊድን ክሮና የስዊድን ክሮና SEK + kr የሲንጋፖር ዶላር @@ -5025,6 +5671,7 @@ For terms of use, see http://www.unicode.org/copyright.html የሴይንት ሔሌና ፓውንድ የሴይንት ሔሌና ፓውንድ SHP + £ የሴራሊዎን ሊዎን @@ -5057,12 +5704,14 @@ For terms of use, see http://www.unicode.org/copyright.html የሳኦ ቶመ እና ፕሪንሲፐ ዶብራ የሳኦ ቶመ እና ፕሪንሲፐ ዶብራ STD + Db የሲሪያ ፓውንድ የሲሪያ ፓውንድ የሲሪያ ፓውንድ SYP + £ የስዋዚላንድ ሊላንገኒ @@ -5075,6 +5724,7 @@ For terms of use, see http://www.unicode.org/copyright.html የታይላንድ ባህት የታይላንድ ባህት ฿ + ฿ የታጂክስታን ሶሞኒ @@ -5099,6 +5749,7 @@ For terms of use, see http://www.unicode.org/copyright.html ቶንጋን ፓ’አንጋ ቶንጋን ፓ’አንጋ TOP + T$ የቱርክ ሊራ @@ -5106,6 +5757,7 @@ For terms of use, see http://www.unicode.org/copyright.html የቱርክ ሊራ TRY + TL የትሪንዳድ እና ቶቤጎዶላር @@ -5165,6 +5817,7 @@ For terms of use, see http://www.unicode.org/copyright.html የቬንዝዌላ ቦሊቫር የቬንዝዌላ ቦሊቫር VEF + Bs የቭየትናም ዶንግ @@ -5196,6 +5849,7 @@ For terms of use, see http://www.unicode.org/copyright.html የምዕራብ ካሪብያን ዶላር የምዕራብ ካሪብያን ዶላር EC$ + $ ሴኤፍአ ፍራንክ ቤሴእአኦ @@ -5225,6 +5879,7 @@ For terms of use, see http://www.unicode.org/copyright.html የደቡብ አፍሪካ ራንድ የደቡብ አፍሪካ ራንድ ZAR + R የዛምቢያ ክዋቻ (1968–2012) @@ -5236,6 +5891,7 @@ For terms of use, see http://www.unicode.org/copyright.html የዛምቢያ ክዋቻ የዛምቢያ ክዋቻ ZMW + ZK የዚምቧቡዌ ዶላር @@ -5257,9 +5913,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ጂ-ኃይል - m/s² - {0} m/s² - {0} m/s² + ሜ/ሰ² + {0} ሜ/ሰ² + {0} ሜ/ሰ² + + + rev + {0} rev + {0} rev + + + rad + {0} rad + {0} rad + + + ዲግሪ + {0} ዲግሪ + {0} ዲግሪ ደቂቃ @@ -5271,30 +5942,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ሰከንድ {0} ሰከንድ - - ዲግሪ - {0} ዲግሪ - {0} ዲግሪ - - - rad - {0} rad - {0} rad - - - ኤክር - {0} ኤክር - {0} ኤክር + + ካሬ ኪሎሜትር + {0} ካሬ ኪሎሜትር + {0} ካሬ ኪሎሜትር ሄክታር {0} ሄክታር {0} ሄክታር + + ካሬ ሜትር + {0} ካሬ ሜትር + {0} ካሬ ሜትር + {0}/ሜ² + - cm² - {0} cm² - {0} cm² + ሴሜ² + {0} ሴሜ² + {0} ሴሜ² + {0}/ሴሜ² + + + ካሬ ማይል + {0} ካሬ ማይል + {0} ካሬ ማይል + + + ኤክር + {0} ኤክር + {0} ኤክር + + + yd² + {0} yd² + {0} yd² ካሬ ጫማ @@ -5302,94 +5985,109 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ካሬ ጫማ - in² - {0} in² - {0} in² + ኢንች² + {0} ኢንች² + {0} ኢንች² + {0}/ኢንች² - - ካሬ ኪሎሜትር - {0} ካሬ ኪሎሜትር - {0} ካሬ ኪሎሜትር - - - ካሬ ሜትር - {0} ካሬ ሜትር - {0} ካሬ ሜትር - - - ካሬ ማይል - {0} ካሬ ማይል - {0} ካሬ ማይል - - - yd² - {0} yd² - {0} yd² + + ካራት + {0} ካራት + {0} ካራት ሊ/ኪሜ {0} ሊ/ኪሜ {0} ሊ/ኪሜ + + ሊትሮች በ100 ኪሎሜትሮች + {0} ሊትር በ100 ኪሎሜትሮች + {0} ሊትሮች በ100 ኪሎሜትሮች + mpg {0} mpg {0} mpg - - ቢት - {0} ቢት - {0} ቢት - - - ባይት - {0} ባይት - {0} ባይት - - - ጊባይት - {0} ጊባይት - {0} ጊባይት - - - ጊባ - {0} ጊባ - {0} ጊባ - - - ኪባይት - {0} ኪባይት - {0} ኪባይት - - - ኪባ - {0} ኪባ - {0} ኪባ - - - ሜባ - {0} ሜባ - {0} ሜባ - - - ሜባይት - {0} ሜባይት - {0} ሜባይት - - - ቴባ - {0} ቴባ - {0} ቴባ - ቴባይት {0} ቴባይት {0} ቴባይት + + ቴባ + {0} ቴባ + {0} ቴባ + + + ጊባ + {0} ጊባ + {0} ጊባ + + + ጊባይት + {0} ጊባይት + {0} ጊባይት + + + ሜባይት + {0} ሜባይት + {0} ሜባይት + + + ሜባ + {0} ሜባ + {0} ሜባ + + + ኪባ + {0} ኪባ + {0} ኪባ + + + ኪባይት + {0} ኪባይት + {0} ኪባይት + + + ባይት + {0} ባይት + {0} ባይት + + + ቢት + {0} ቢት + {0} ቢት + + + ምዕተ ዓመት + {0} ምዕተ ዓመት + {0} ምዕተ ዓመት + + + ዓመታት + {0} ዓመት + {0} ዓመታት + {0}/ዓ + + + ወራት + {0} ወር + {0} ወራት + {0}/ወ + + + ሳምንታት + {0} ሳምንት + {0} ሳምንታት + {0}/ሳ + ቀናት {0} ቀናት {0} ቀናት + {0}/ቀ ሰዓቶች @@ -5397,30 +6095,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ሰዓቶች {0}/ሰ - - ማይክሮሰከንድ - {0} ማይክሮሰከንድ - {0} ማይክሮሰከንድ - - - ሚሊሰከንድ - {0} ሚሊሰከንድ - {0} ሚሊሰከንድ - ደቂቃዎች {0} ደቂቃ {0} ደቂቃዎች - - - ወራት - {0} ወር - {0} ወራት - - - ናኖሰከንድ - {0} ናኖሰከንድ - {0} ናኖሰከንድ + {0}/ደ ሰከንዶች @@ -5428,15 +6107,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ሰከንዶች {0}/ሰከ - - ሳምንታት - {0} ሳምንት - {0} ሳምንታት + + ሚሊሰከንድ + {0} ሚሊሰከንድ + {0} ሚሊሰከንድ - - ዓመታት - {0} ዓመታት - {0} ዓመታት + + ማይክሮሰከንድ + {0} ማይክሮሰከንድ + {0} ማይክሮሰከንድ + + + ናኖሰከንድ + {0} ናኖሰከንድ + {0} ናኖሰከንድ amp @@ -5458,6 +6142,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -5468,21 +6157,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - joule - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + joule + {0} J + {0} J + kWh {0} kWh @@ -5493,201 +6177,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au + + ኪሎሜትር + {0} ኪሎሜትር + {0} ኪሎሜትር + {0}/ኪሜ - - ሴንቲሜትር - {0} ሴንቲሜትር - {0} ሴንቲሜትር + + ሜትር + {0} ሜትር + {0} ሜትር + {0}/ሜ dm {0} dm {0} dm - - ጫማ - {0} ጫማ - {0} ጫማ - - - ኢንች - {0} ኢንች - {0} ኢንች - - - ኪሎሜትር - {0} ኪሎሜትር - {0} ኪሎሜትር - - - የብርሃን ዓመት - {0} የብርሃን ዓመት - {0} የብርሃን ዓመት - - - ሜትር - {0} ሜትር - {0} ሜትር - - - µm - {0} µm - {0} µm - - - ማይል - {0} ማይል - {0} ማይል + + ሴንቲሜትር + {0} ሴንቲሜትር + {0} ሴንቲሜትር + {0}/ሴሜ ሚሊሜትር {0} ሚሊሜትር {0} ሚሊሜትር + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - pc - {0} pc - {0} pc - ፒኮሜትር {0} ፒኮሜትር {0} ፒኮሜትር + + ማይል + {0} ማይል + {0} ማይል + ያርድ {0} ያርድ {0} ያርድ + + ጫማ + {0} ጫማ + {0} ጫማ + {0}/ጫማ + + + ኢንች + {0} ኢንች + {0} ኢንች + {0}/ኢንች + + + pc + {0} pc + {0} pc + + + የብርሃን ዓመት + {0} የብርሃን ዓመት + {0} የብርሃን ዓመት + + + au + {0} au + {0} au + + + nmi + {0} nmi + {0} nmi + + + ስማይል + {0} ስማይል + {0} ስማይል + lx {0} lx {0} lx - - CD - {0} CD - {0} CD - - - ግራም - {0} ግራም - {0} ግራም - - - ኪሎግራም - {0} ኪሎግራም - {0} ኪሎግራም - t {0} t {0} t - - µg - {0} µg - {0} µg + + ኪሎግራም + {0} ኪሎግራም + {0} ኪሎግራም + {0}/ኪሎግራም + + + ግራም + {0} ግራም + {0} ግራም + {0}/ግራም mg {0} mg {0} mg - - አውንስ - {0} አውንስ - {0} አውንስ - - - oz t - {0} oz t - {0} oz t - - - ፓውንድ - {0} ፓውንድ - {0} ፓውንድ + + µg + {0} µg + {0} µg ቶን {0} ቶን {0} ቶን + + ፓውንድ + {0} ፓውንድ + {0} ፓውንድ + {0}/ፓውንድ + + + አውንስ + {0} አውንስ + {0} አውንስ + {0}/አውንስ + + + oz t + {0} oz t + {0} oz t + + + CD + {0} CD + {0} CD + GW {0} GW {0} GW - - የፈረስ ጉልበት - {0} የፈረስ ጉልበት - {0} የፈረስ ጉልበት - - - ኪሎዋት - {0} ኪሎዋት - {0} ኪሎዋት - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + ኪሎዋት + {0} ኪሎዋት + {0} ኪሎዋት ዋት {0} ዋት {0} ዋት + + mW + {0} mW + {0} mW + + + የፈረስ ጉልበት + {0} የፈረስ ጉልበት + {0} የፈረስ ጉልበት + ሄክቶፓስካል {0} ሄክቶፓስካል {0} ሄክቶፓስካል - - ኢንች ሜርኩሪ - {0} ኢንች ሜርኩሪ - {0} ኢንች ሜርኩሪ - - - ሚሊባር - {0} ሚሊባር - {0} ሚሊባር - mm Hg {0} mm Hg @@ -5698,10 +6386,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - ካራት - {0} ካራት - {0} ካራት + + ኢንች ሜርኩሪ + {0} ኢንች ሜርኩሪ + {0} ኢንች ሜርኩሪ + + + ሚሊባር + {0} ሚሊባር + {0} ሚሊባር ኪሎሜትር በሰዓት @@ -5718,6 +6411,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ማይል በሰዓት {0} ማይል በሰዓት + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + ዲግሪ ሴልሺየስ {0} ዲግሪ ሴልሺየስ @@ -5733,40 +6436,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - - - cL - {0} cL - {0} cL - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - ኩቢክ ኪሎሜትር {0} ኩቢክ ኪሎሜትር {0} ኩቢክ ኪሎሜትር - - {0} m³ - {0} m³ + ሜ³ + {0} ሜ³ + {0} ሜ³ + {0}/ሜ³ + + + ሴሜ³ + {0} ሴሜ³ + {0} ሴሜ³ + {0}/ሴሜ³ ኩቢክ ማይል @@ -5778,25 +6463,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - cup - {0} c - {0} c + + ጫማ³ + {0} ጫማ³ + {0} ጫማ³ - - dL - {0} dL - {0} dL + + ኢንች³ + {0} ኢንች³ + {0} ኢንች³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML hL @@ -5807,27 +6487,64 @@ For terms of use, see http://www.unicode.org/copyright.html ሊትር {0} ሊትር {0} ሊትር + {0}/ሊትር - - ML - {0} ML - {0} ML + + dL + {0} dL + {0} dL + + + ሴንቲ ሊትር + {0} ሴንቲ ሊትር + {0} ሴንቲ ሊትር mL {0} mL {0} mL - - pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + ኤከር ጫማ + {0} ኤከር ጫማ + {0} ኤከር ጫማ + + + gal + {0} gal + {0} gal + {0}/gal qt {0} qt {0} qt + + pt + {0} pt + {0} pt + + + cup + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + tbsp {0} tbsp @@ -5838,6 +6555,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0}ምስ + {0}ሰ + {0}ደ + {0}ምዕ + @@ -5849,9 +6572,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ጂ - m/s² - {0} m/s² - {0} m/s² + ሜ/ሰ² + {0} ሜ/ሰ² + {0} ሜ/ሰ² + + + rev + {0} rev + {0} rev + + + rad + {0} rad + {0} rad + + + ዲግሪ + {0}°ዲግሪ + {0}°ዲግሪ ደቂቃ @@ -5863,30 +6601,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ሰከንድ {0} ሰከንድ - - ዲግሪ - {0}°ዲግሪ - {0}°ዲግሪ - - - rad - {0} rad - {0} rad - - - ኤክር - {0} ኤክር - {0} ኤክር + + ካሬ ኪሎሜትር + {0} ኪሜ² + {0} ኪሜ² ሄክታር {0} ሄክታር {0} ሄክታር + + ካሬ ሜትር + {0} ሜ² + {0} ሜ² + {0}/ሜ² + - cm² - {0} cm² - {0} cm² + ሴሜ² + {0} ሴሜ² + {0} ሴሜ² + {0}/ሴሜ² + + + ካሬ ማይል + {0} ካሬ ማይል + {0} ካሬ ማይል + + + ኤክር + {0} ኤክር + {0} ኤክር + + + yd² + {0} yd² + {0} yd² ካሬ ጫማ @@ -5894,94 +6644,109 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ካሬ ጫማ - in² - {0} in² - {0} in² + ኢንች² + {0} ኢንች² + {0} ኢንች² + {0}/ኢንች² - - ካሬ ኪሎሜትር - {0} ኪሜ² - {0} ኪሜ² - - - ካሬ ሜትር - {0} ሜ² - {0} ሜ² - - - ካሬ ማይል - {0} ካሬ ማይል - {0} ካሬ ማይል - - - yd² - {0} yd² - {0} yd² + + ካራት + {0} ካራት + {0} ካራት ሊ/ኪሜ {0} ሊ/ኪሜ {0} ሊ/ኪሜ + + ሊትር በ100 ኪሎሜትሮች + {0} ሊ/100ኪሜ + {0} ሊ/100ኪሜ + mpg {0} mpg {0} mpg - - ቢት - {0} ቢት - {0} ቢት - - - ባይት - {0} ባይት - {0} ባይት - - - ጊባይት - {0} ጊባይት - {0} ጊባይት - - - ጊባ - {0} ጊባ - {0} ጊባ - - - ኪባይት - {0} ኪባይት - {0} ኪባይት - - - ኪባ - {0} ኪባ - {0} ኪባ - - - ሜባ - {0} ሜባ - {0} ሜባ - - - ሜባይት - {0} ሜባይት - {0} ሜባይት - - - ቴባ - {0} ቴባ - {0} ቴባ - ቴባይት {0} ቴባይት {0} ቴባይት + + ቴባ + {0} ቴባ + {0} ቴባ + + + ጊባ + {0} ጊባ + {0} ጊባ + + + ጊባይት + {0} ጊባይት + {0} ጊባይት + + + ሜባይት + {0} ሜባይት + {0} ሜባይት + + + ሜባ + {0} ሜባ + {0} ሜባ + + + ኪባ + {0} ኪባ + {0} ኪባ + + + ኪባይት + {0} ኪባይት + {0} ኪባይት + + + ባይት + {0} ባይት + {0} ባይት + + + ቢት + {0} ቢት + {0} ቢት + + + ምዕተ ዓመት + {0} ምዕተ ዓመት + {0} ምዕተ ዓመት + + + ዓመታት + {0} ዓመት + {0} ዓመታት + {0}/ዓ + + + ወራት + {0} ወራት + {0} ወራት + {0}/ወ + + + ሳምንታት + {0} ሳምንት + {0} ሳምንታት + {0}/ሳ + ቀናት {0} ቀናት {0} ቀናት + {0}/ቀ ሰዓቶች @@ -5989,30 +6754,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ሰዓ {0}/ሰ - - ማይክሮሰከንድ - {0} ማይክሮሰከንድ - {0} ማይክሮሰከንድ - - - ሚሊሰከንድ - {0} ሚሴ - {0} ሚሴ - ደቂቃዎች {0} ደቂ {0} ደቂቃ - - - ወራት - {0} ወራት - {0} ወራት - - - ናኖሰከንድ - {0} ናኖሰከንድ - {0} ናኖሰከንድ + {0}/ደ ሰከንዶች @@ -6020,15 +6766,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ሰከ {0}/ሰከ - - ሳምንታት - {0} ሳምንት - {0} ሳምንታት + + ሚሊሰከንድ + {0} ሚሴ + {0} ሚሴ - - ዓመታት - {0} ዓመት - {0} ዓመታት + + ማይክሮሰከንድ + {0} ማሰ + {0} ማሰ + + + ናኖሰከንድ + {0} ናኖሰከንድ + {0} ናኖሰከንድ amp @@ -6050,6 +6801,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -6060,21 +6816,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - joule - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + joule + {0} J + {0} J + kWh {0} kWh @@ -6085,201 +6836,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au + + ኪሎሜትር + {0} ኪሜ + {0} ኪሜ + {0}/ኪሜ - - ሴንቲሜትር - {0} ሴሜ - {0} ሴሜ + + ሜትር + {0} ሜ + {0} ሜ + {0}/ሜ dm {0} dm {0} dm - - ጫማ - {0} ጫማ - {0} ጫማ - - - ኢንች - {0} ኢንች - {0} ኢንች - - - ኪሎሜትር - {0} ኪሜ - {0} ኪሜ - - - የብርሃን ዓመት - {0} ly - {0} ly - - - ሜትር - {0} ሜ - {0} ሜ - - - µm - {0} µm - {0} µm - - - ማይል - {0} ማይል - {0} ማይል + + ሴንቲሜትር + {0} ሴሜ + {0} ሴሜ + {0}/ሴሜ ሚሊሜትር {0} ሚሜ {0} ሚሜ + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - pc - {0} pc - {0} pc - ፒኮሜትር {0} ፒሜ {0} ፒሜ + + ማይል + {0} ማይል + {0} ማይል + ያርድ {0} ያርድ {0} ያርድ + + ጫማ + {0} ጫማ + {0} ጫማ + {0}/ጫማ + + + ኢንች + {0} ኢንች + {0} ኢንች + {0}/ኢንች + + + pc + {0} pc + {0} pc + + + የብርሃን ዓመት + {0} ly + {0} ly + + + au + {0} au + {0} au + + + nmi + {0} nmi + {0} nmi + + + ስማይል + {0} ስማይል + {0} ስማይል + lx {0} lx {0} lx - - CD - {0} CD - {0} CD - - - ግራም - {0} ግ - {0} ግ - - - ኪሎግራም - {0} ኪግ - {0} ኪግ - t {0} t {0} t - - µg - {0} µg - {0} µg + + ኪሎግራም + {0} ኪግ + {0} ኪግ + {0}/ኪሎግራም + + + ግራም + {0} ግ + {0} ግ + {0}/ግራም mg {0} mg {0} mg - - አውንስ - {0} አውንስ - {0} አውንስ - - - oz t - {0} oz t - {0} oz t - - - ፓውንድ - {0} ፓውንድ - {0} ፓውንድ + + µg + {0} µg + {0} µg ቶን {0} ቶን {0} ቶን + + ፓውንድ + {0} ፓውንድ + {0} ፓውንድ + {0}/ፓውንድ + + + አውንስ + {0} አውንስ + {0} አውንስ + {0}/አውንስ + + + oz t + {0} oz t + {0} oz t + + + CD + {0} CD + {0} CD + GW {0} GW {0} GW - - የፈረስ ጉልበት - {0} የፈረስ ጉልበት - {0} የፈረስ ጉልበት - - - ኪሎዋት - {0} ኪዋ - {0} ኪዋ - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + ኪሎዋት + {0} ኪዋ + {0} ኪዋ ዋት {0} ዋ {0} ዋ + + mW + {0} mW + {0} mW + + + የፈረስ ጉልበት + {0} የፈጉ + {0} የፈጉ + ሄክቶፓስካል {0} ሄክቶፓስካል {0} ሄክቶፓስካል - - ኢንች ሜርኩሪ - {0} ኢንች ሜርኩሪ - {0} ኢንች ሜርኩሪ - - - ሚሊባር - {0} ሚባ - {0} ሚባ - mm Hg {0} mm Hg @@ -6290,10 +7045,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - ካራት - {0} ካራት - {0} ካራት + + ኢንች ሜርኩሪ + {0} ኢሜ + {0} ኢንሜር + + + ሚሊባር + {0} ሚባ + {0} ሚባ ኪሎሜትር በሰዓት @@ -6310,6 +7070,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ማይል/ሰ {0} ማይል/ሰ + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + ዲግሪ ሴልሺየስ {0}°ሴ @@ -6325,40 +7095,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - - - cL - {0} cL - {0} cL - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - ኩቢክ ኪሎሜትር {0} ኪሜ³ {0} ኪሜ³ - - {0} m³ - {0} m³ + ሜ³ + {0} ሜ³ + {0} ሜ³ + {0}/ሜ³ + + + ሴሜ³ + {0} ሴሜ³ + {0} ሴሜ³ + {0}/ሴሜ³ ኩቢክ ማይል @@ -6370,25 +7122,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - cup - {0} c - {0} c + + ጫማ³ + {0} ጫማ³ + {0} ጫማ³ - - dL - {0} dL - {0} dL + + ኢንች³ + {0} ኢንች³ + {0} ኢንች³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML hL @@ -6399,27 +7146,64 @@ For terms of use, see http://www.unicode.org/copyright.html ሊትር {0} ሊ {0} ሊ + {0}/ሊትር - - ML - {0} ML - {0} ML + + dL + {0} dL + {0} dL + + + ሴንቲ ሊትር + {0} ሴንቲ ሊትር + {0} ሴንቲ ሊትር mL {0} mL {0} mL - - pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + ኤከር ጫማ + {0} ኤከር ጫማ + {0} ኤከር ጫማ + + + gal + {0} gal + {0} gal + {0}/gal qt {0} qt {0} qt + + pt + {0} pt + {0} pt + + + cup + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + tbsp {0} tbsp @@ -6430,6 +7214,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0}ምስ + {0}ሰ + {0}ደ + {0}ምዕ + @@ -6439,6 +7229,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ጂ {0} ጂ + + {0}° + {0}° + {0}′ {0}′ @@ -6447,26 +7241,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} ኤክር - {0} ኤክር + + {0} ኪሜ² + {0} ኪሜ² {0} ሄክታር {0} ሄክታር - - {0} ጫማ² - {0} ጫማ² - - - {0} ኪሜ² - {0} ኪሜ² - {0} ሜ² {0} ሜ² @@ -6475,9 +7257,37 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ማይል² {0} ማይል² + + {0} ኤክር + {0} ኤክር + + + {0} ጫማ² + {0} ጫማ² + + + ሊትር በ100 ኪሎሜትሮች + {0}ሊበ100ኪሜ + {0}ሊበ100ኪሜ + ቴባይት + + ዓመታት + {0} ዓመት + {0} ዓ + + + ወራት + {0} ወር + {0} ወር + + + ሳምንታት + {0} ሳምንት + {0} ሳምንት + ቀናት {0} ቀ @@ -6488,66 +7298,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ሰ {0} ሰ - - ሚሊሰከንድ - {0} ሚሴ - {0} ሚሴ - ደቂቃዎች {0} ደ {0} ደ - - ወራት - {0} ወር - {0} ወር - ሰከንድ {0} ሰ {0} ሰ - - ሳምንታት - {0} ሳምንት - {0} ሳምንት - - - ዓመታት - {0} ዓመት - {0} ዓ - - - ሴንቲሜትር - {0} ሴሜ - {0} ሴሜ - - - {0} ጫማ - {0} ጫማ - - - {0} ኢንች - {0} ኢንች + + ሚሊሰከንድ + {0} ሚሴ + {0} ሚሴ ኪሎሜትር {0} ኪሜ {0} ኪሜ - - {0} ly - {0} ly - ሜትር {0} ሜ {0} ሜ - - {0} ማይል - {0} ማይል + + ሴንቲሜትር + {0} ሴሜ + {0} ሴሜ ሚሊሜትር @@ -6558,31 +7337,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ፒሜ {0} ፒሜ + + {0} ማይል + {0} ማይል + {0} ያርድ {0} ያርድ - - ግራም - {0} ግ - {0} ግ + + {0} ጫማ + {0} ጫማ + + + {0} ኢንች + {0} ኢንች + + + {0} ly + {0} ly ኪሎግራም {0} ኪግ {0} ኪግ - - {0} አውንስ - {0} አውንስ + + ግራም + {0} ግ + {0} ግ {0} ፓውንድ {0} ፓውንድ - - {0} የፈረስ ኃይል - {0} የፈረስ ኃይል + + {0} አውንስ + {0} አውንስ {0} ኪዋ @@ -6592,6 +7383,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ዋ {0} ዋ + + {0} የፈረስ ኃይል + {0} የፈረስ ኃይል + {0} hPa {0} hPa @@ -6639,6 +7434,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ሊ {0} ሊ + + {0}ምስ + {0}ሰ + {0}ደ + {0}ምዕ + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/am_ET.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/am_ET.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/am_ET.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/am_ET.xml index b71442f63b7..dd1ec508d13 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/am_ET.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/am_ET.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar.xml similarity index 56% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar.xml index ab011105f15..88c80ad7deb 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar.xml @@ -1,13 +1,12 @@ - - - + @@ -43,7 +42,7 @@ For terms of use, see http://www.unicode.org/copyright.html الأراباهو الأراواكية الأسامية - الآسو + الآسو الأسترية الأوارية الأوادية @@ -56,12 +55,13 @@ For terms of use, see http://www.unicode.org/copyright.html الباسا بامن لغة الغومالا - البيلاروسية + البيلاروسية البيجا البيمبا - بينا + بينا لغة البافوت البلغارية + البلوشية الغربية البهوجبورية البيسلامية البيكولية @@ -73,7 +73,7 @@ For terms of use, see http://www.unicode.org/copyright.html التبتية البريتونية البراجية - البودو + البودو البوسنية أكوس البرياتية @@ -88,7 +88,7 @@ For terms of use, see http://www.unicode.org/copyright.html الأتسام الشيشانية السيبونية - تشيغا + تشيغا التشامورو التشيبشا التشاجاتاي @@ -99,7 +99,7 @@ For terms of use, see http://www.unicode.org/copyright.html الشيباوايان الشيروكي الشايان - السورانية الكردية + السورانية الكردية الكورسيكية القبطية الكرى @@ -107,7 +107,7 @@ For terms of use, see http://www.unicode.org/copyright.html التشيكية الكاشبايان سلافية كنسية - التشوفاشي + التشوفاشي الولزية الدانماركية الداكوتا @@ -142,14 +142,14 @@ For terms of use, see http://www.unicode.org/copyright.html الإنجليزية الكندية الإنجليزية البريطانية الإنجليزية المملكة المتحدة - الإنجليزية الولايات المتحدة + الإنجليزية الأمريكية الإنجليزية الولايات المتحدة الإنجليزية الوسطى الإسبرانتو الإسبانية الإسبانية أمريكا اللاتينية الإسبانية الأوروبية - الإسبانية المكسيكية + الإسبانية المكسيكية الإستونية لغة الباسك الإيوندو @@ -226,7 +226,7 @@ For terms of use, see http://www.unicode.org/copyright.html اليابانية اللوجبان نغومبا - الماتشامية + الماتشامية الفارسية اليهودية العربية اليهودية الجاوية @@ -251,7 +251,7 @@ For terms of use, see http://www.unicode.org/copyright.html الكيونياما الكازاخستانية الكالاليست - كالينجين + كالينجين الخميرية الكيمبندو الكانادا @@ -266,7 +266,7 @@ For terms of use, see http://www.unicode.org/copyright.html الكوروخ الكشميرية شامبالا - لغة البافيا + لغة البافيا لغة الكولونيان الكردية القموقية @@ -288,6 +288,7 @@ For terms of use, see http://www.unicode.org/copyright.html اللاوية منغولى اللوزي + اللرية الشمالية اللتوانية اللبا-كاتانجا اللبا-لؤلؤ @@ -295,7 +296,7 @@ For terms of use, see http://www.unicode.org/copyright.html اللوندا اللو الميزو - لغة اللويا + لغة اللويا اللاتفية المادريز الماجا @@ -307,12 +308,12 @@ For terms of use, see http://www.unicode.org/copyright.html الموكشا الماندار الميند - الميرو - المورسيانية + الميرو + المورسيانية المالاجاشية الأيرلندية الوسطى - ماخاوا-ميتو - ميتا + ماخاوا-ميتو + ميتا المارشالية الماورية الميكماكيونية @@ -334,19 +335,21 @@ For terms of use, see http://www.unicode.org/copyright.html الماروارية البورمية الأرزية + المازندرانية النورو اللغة النابولية - لغة الناما + لغة الناما البوكمالية النرويجية النديبيل الشمالي الألمانية السفلى + السكسونية السفلى النيبالية النوارية الندونجا النياس النيوي الهولندية - الفلمنكية + الفلمنكية كواسيو النينورسك النرويجي لغة النجيمبون @@ -356,7 +359,7 @@ For terms of use, see http://www.unicode.org/copyright.html أنكو النديبيل الجنوبي السوتو الشمالية - النوير + النوير النافاجو النوارية التقليدية النيانجا @@ -397,31 +400,32 @@ For terms of use, see http://www.unicode.org/copyright.html الرندي الرومانية المولدوفية - الرومبو + الرومبو غجري الجذر الروسية الأرومانيان الكينيارواندا - الروا + الروا السنسكريتية السانداوي الساخية الآرامية السامرية - سامبورو + سامبورو الساساك السانتالي نامبي - سانغو + سانغو السردينية الصقلية الأسكتلندية السندية + الكردية الجنوبية السامي الشمالي السنيكا - سينا + سينا السيلكب - كويرابورو سيني + كويرابورو سيني السانجو الأيرلندية القديمة صربية-كرواتية @@ -454,19 +458,19 @@ For terms of use, see http://www.unicode.org/copyright.html السومارية السويدية السواحلية + الكونغو السواحلية القمرية - لغة الكونغو السواحلية سريانية تقليدية السريانية التاميلية التيلجو التيمن - تيسو + تيسو التيرينو التيتم الطاجيكية التايلاندية - التغرينية + التغرينية التغرية التيف التركمانية @@ -487,10 +491,10 @@ For terms of use, see http://www.unicode.org/copyright.html التامبوكا التوفالو التوي - تاساواق + تاساواق التاهيتية التوفية - الأمازيغية وسط الأطلس + الأمازيغية وسط الأطلس الأدمرت الأغورية الأيغورية @@ -499,22 +503,23 @@ For terms of use, see http://www.unicode.org/copyright.html الأمبندو لغة غير معروفة الأردية - الأوزبكية + الأوزبكية الفاي الفيندا الفيتنامية لغة الفولابوك الفوتيك - الفونجو + الفونجو الولونية الوالسر الولاياتا الواراي الواشو + وارلبيري الولوف الكالميك الخوسا - السوغا + السوغا الياو اليابيز يانجبن @@ -667,7 +672,7 @@ For terms of use, see http://www.unicode.org/copyright.html شمال أفريقيا وسط أفريقيا أفريقيا الجنوبية - الأمريكتين + الأمريكتان شمال أمريكا الكاريبي شرق آسيا @@ -694,14 +699,13 @@ For terms of use, see http://www.unicode.org/copyright.html أنغويلا ألبانيا أرمينيا - جزر الأنتيل الهولندية أنغولا أنتاركتيكا الأرجنتين ساموا الأمريكية النمسا أستراليا - آروبا + أروبا جزر آلاند أذربيجان البوسنة والهرسك @@ -719,14 +723,14 @@ For terms of use, see http://www.unicode.org/copyright.html بوليفيا هولندا الكاريبية البرازيل - الباهاما + البهاما بوتان جزيرة بوفيه بتسوانا - روسيا البيضاء + بيلاروس بليز كندا - جزر كوكوس + جزر كوكوس (كيلينغ) الكونغو - كينشاسا جمهورية الكونغو الديمقراطية جمهورية أفريقيا الوسطى @@ -735,7 +739,7 @@ For terms of use, see http://www.unicode.org/copyright.html سويسرا ساحل العاج جزر كوك - شيلي + تشيلي الكاميرون الصين كولومبيا @@ -756,10 +760,10 @@ For terms of use, see http://www.unicode.org/copyright.html الجزائر سيوتا وميليلا الإكوادور - أستونيا + إستونيا مصر الصحراء الغربية - أريتريا + إريتريا إسبانيا إثيوبيا الاتحاد الأوروبي @@ -782,7 +786,7 @@ For terms of use, see http://www.unicode.org/copyright.html غرينلاند غامبيا غينيا - جوادلوب + غوادلوب غينيا الإستوائية اليونان جورجيا الجنوبية وجزر ساندويتش الجنوبية @@ -798,7 +802,7 @@ For terms of use, see http://www.unicode.org/copyright.html هايتي هنغاريا جزر الكناري - أندونيسيا + إندونيسيا أيرلندا إسرائيل جزيرة مان @@ -870,7 +874,7 @@ For terms of use, see http://www.unicode.org/copyright.html نيبال ناورو نيوي - نيوزيلاندا + نيوزيلندا عُمان بنما بيرو @@ -916,12 +920,12 @@ For terms of use, see http://www.unicode.org/copyright.html سوريا سوازيلاند تريستان دي كونها - جزر الترك وجايكوس + جزر توركس وكايكوس تشاد - المقاطعات الجنوبية الفرنسية - توجو + الأقاليم الجنوبية الفرنسية + توغو تايلاند - طاجكستان + طاجيكستان توكيلو تيمور الشرقية تركمانستان @@ -931,7 +935,7 @@ For terms of use, see http://www.unicode.org/copyright.html ترينيداد وتوباغو توفالو تايوان - تانزانيا + تنزانيا أوكرانيا أوغندا جزر الولايات المتحدة النائية @@ -988,6 +992,9 @@ For terms of use, see http://www.unicode.org/copyright.html التصنيف الرقمي قوة التصنيف العملة + نظام التوقيت (12 مقابل 24) + نمط فصل السطور + نظام القياس الأرقام المنطقة الزمنية متغيرات اللغة @@ -995,98 +1002,108 @@ For terms of use, see http://www.unicode.org/copyright.html استخدام خاص - الأرقام العربية الهندية - الأرقام العربية الهندية الممتدة - الأرقام الأرمينية - الأرقام الأرمينية الصغيرة - الأرقام البنغالية - ترتيب فرز الصينية التقليدية (Big5) - التقويم البوذي - التقويم الصيني - التقويم القبطي - تقويم دانجي - الأرقام الديفانغارية - ترتيب فرز القاموس - ترتيب فرز Unicode الافتراضي - الأرقام الإثيوبية - التقويم الإثيوبي - تقويم أميتي أليم الإثيوبي - الأرقام المالية - أرقام كاملة العرض - ترتيب فرز الصينية المبسطة (GB2312) - الأرقام الجورجية - التقويم الميلادي - الأرقام اليونانية - الأرقام اليونانية الصغيرة - الأرقام الغوجاراتية - الأرقام الغورموخية - الأرقام العشرية الصينية - الأرقام الصينية المبسطة - الأرقام المالية الصينية المبسطة - الأرقام الصينية التقليدية - الأرقام المالية الصينية التقليدية - الأرقام العبرية - التقويم العبري - تصنيف الكل - التقويم القومي الهندي - التقويم الهجري - التقويم الإسلامي المدني - التقويم الإسلامي (مستخدم بالسعودية) - التقويم الإسلامي (مجدول، العصر الفلكي) - التقويم الإسلامي (أم القرى) - تقويم ISO-8601 - التقويم الياباني - الأرقام اليابانية - الأرقام المالية اليابانية - الأرقام الخيمرية - أرقام الكانادا - الأرقام اللاوية - الأرقام الغربية - تصنيف الأحرف الصغيرة أولاً - الأرقام الملايلامية - الأرقام المغولية - أرقام ميانمار - الأرقام الأصلية - تصنيف اللكنات بشكل عادي - ترتيب تصنيف حالة الأحرف الطبيعية - تصنيف بحسب الأحرف غير الحساسة لحالة الأحرف - تصنيف الكانا بشكل منفصل - التصفية بدون تسوية - تصنيف الأرقام على حدة - تصنيف الرموز - أرقام الأوريا - التقويم الفارسي - ترتيب فرز دليل الهاتف - ترتيب الفرز الصوتي - الترتيب الصيني بنيين المبسط - تصنيف الحروف الأساسية فقط - تصنيف اللكنات/الحالة/العرض/الكانا - ترتيب فرز محسَّن - تقويم مينجو - الأرقام الرومانية - الأرقام الرومانية الصغيرة - بحث لأغراض عامة - بحث باستخدام حرف الهانغول الساكن الأول - تصنيف اللكنات - تصنيف تجاهل الرموز - ترتيب الفرز القياسي - الترتيب الصيني بنيين التقليدي - الأرقام التاميلية التقليدية - الأرقام التاميلية - الأرقام التيلوغوية - تصنيف اللكنات/الحالة/العرض - الأرقام التايلاندية - الأرقام التبتية - ترتيب تقليدي - أرقام تقليدية - ترتيب تصنيف الجذر والضغطات - تصنيف الأحرف الكبيرة أولاً - أرقام فاي - تصنيف اللكنات معكوسة - تصنيف بحسب حساسية الأحرف - تصنيف الكانا بشكل مختلف - تصنيف Unicode طبيعي - تصنيف الأرقام بالعدد + التقويم البوذي + التقويم الصيني + التقويم القبطي + تقويم دانجي + التقويم الإثيوبي + تقويم أميتي أليم الإثيوبي + التقويم الميلادي + التقويم العبري + التقويم القومي الهندي + التقويم الهجري + التقويم الإسلامي المدني + التقويم الإسلامي (مستخدم بالسعودية) + التقويم الإسلامي (مجدول، العصر الفلكي) + التقويم الإسلامي (أم القرى) + تقويم ISO-8601 + التقويم الياباني + التقويم الفارسي + تقويم مينجو + تصنيف الرموز + تصنيف تجاهل الرموز + تصنيف اللكنات بشكل عادي + تصنيف اللكنات معكوسة + تصنيف الأحرف الصغيرة أولاً + ترتيب تصنيف حالة الأحرف الطبيعية + تصنيف الأحرف الكبيرة أولاً + تصنيف بحسب الأحرف غير الحساسة لحالة الأحرف + تصنيف بحسب حساسية الأحرف + تصنيف الكانا بشكل منفصل + تصنيف الكانا بشكل مختلف + ترتيب فرز الصينية التقليدية (Big5) + ترتيب فرز القاموس + ترتيب فرز Unicode الافتراضي + ترتيب فرز الصينية المبسطة (GB2312) + ترتيب فرز دليل الهاتف + ترتيب الفرز الصوتي + الترتيب الصيني بنيين المبسط + ترتيب فرز محسَّن + بحث لأغراض عامة + بحث باستخدام حرف الهانغول الساكن الأول + ترتيب الفرز القياسي + الترتيب الصيني بنيين التقليدي + ترتيب تقليدي + ترتيب تصنيف الجذر والضغطات + التصفية بدون تسوية + تصنيف Unicode طبيعي + تصنيف الأرقام على حدة + تصنيف الأرقام بالعدد + تصنيف الكل + تصنيف الحروف الأساسية فقط + تصنيف اللكنات/الحالة/العرض/الكانا + تصنيف اللكنات + تصنيف اللكنات/الحالة/العرض + نظام 12 ساعة (0–11) + نظام 12 ساعة (1–12) + نظام 24 ساعة (0–23) + نظام 24 ساعة (1–24) + نمط فصل السطور: متباعد + نمط فصل السطور: عادي + نمط فصل السطور: متقارب + نظام متري + نظام المملكة المتحدة + نظام الولايات المتحدة + الأرقام العربية الهندية + الأرقام العربية الهندية الممتدة + الأرقام الأرمينية + الأرقام الأرمينية الصغيرة + الأرقام البنغالية + الأرقام الديفانغارية + الأرقام الإثيوبية + الأرقام المالية + أرقام كاملة العرض + الأرقام الجورجية + الأرقام اليونانية + الأرقام اليونانية الصغيرة + الأرقام الغوجاراتية + الأرقام الغورموخية + الأرقام العشرية الصينية + الأرقام الصينية المبسطة + الأرقام المالية الصينية المبسطة + الأرقام الصينية التقليدية + الأرقام المالية الصينية التقليدية + الأرقام العبرية + الأرقام اليابانية + الأرقام المالية اليابانية + الأرقام الخيمرية + أرقام الكانادا + الأرقام اللاوية + الأرقام الغربية + الأرقام الملايلامية + الأرقام المغولية + أرقام ميانمار + الأرقام الأصلية + أرقام الأوريا + الأرقام الرومانية + الأرقام الرومانية الصغيرة + الأرقام التاميلية التقليدية + الأرقام التاميلية + الأرقام التيلوغوية + الأرقام التايلاندية + الأرقام التبتية + أرقام تقليدية + أرقام فاي بي جي إن @@ -1121,12 +1138,12 @@ For terms of use, see http://www.unicode.org/copyright.html [\u200C\u200D\u200E\u200F پ چ ژ ڜ ڢ ڤ ڥ ٯ ڧ ڨ ک گ ی] [ا ب ت ث ج ح خ د ذ ر ز س ش ص ض ط ظ ع غ ف ق ك ل م ن ه و ي] [\- ‐ – — ، ؛ \: ! ؟ . ' " ( ) \[ \]] - {0}… - …{0} - {0}…{1} - {0} … - … {0} - {0} … {1} + {0}… + …{0} + {0}…{1} + {0} … + … {0} + {0} … {1} ؟ @@ -1139,9 +1156,15 @@ For terms of use, see http://www.unicode.org/copyright.html - + التقويم البوذي + + + BE + + BE + @@ -1163,19 +1186,19 @@ For terms of use, see http://www.unicode.org/copyright.html نسيئ - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 + ١ + ٢ + ٣ + ٤ + ٥ + ٦ + ٧ + ٨ + ٩ + ١٠ + ١١ + ١٢ + ١٣ توت @@ -1210,19 +1233,19 @@ For terms of use, see http://www.unicode.org/copyright.html نسيئ - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 + ١ + ٢ + ٣ + ٤ + ٥ + ٦ + ٧ + ٨ + ٩ + ١٠ + ١١ + ١٢ + ١٣ توت @@ -1308,7 +1331,8 @@ For terms of use, see http://www.unicode.org/copyright.html - d + d + ccc E، d y G MMM y G @@ -1320,12 +1344,13 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss - L + L d/‏M E، d/M LLL d MMM E، d MMM + d MMMM mm:ss y G y G @@ -1652,15 +1677,73 @@ For terms of use, see http://www.unicode.org/copyright.html + + ص + م + فجرا + صباحًا + ظهرًا + بعد الظهر + مساءً + منتصف الليل + ليلاً + ص - ظ م + فجرا + صباحًا + ظهرًا + بعد الظهر + مساءً + منتصف الليل + ليلاً ص - ظهرا م + فجرا + صباحًا + ظهرًا + بعد الظهر + مساءً + منتصف الليل + ليلاً + + + + + ص + م + فجرا + صباحًا + ظهرًا + بعد الظهر + مساءً + منتصف الليل + ليلاً + + + ص + م + فجرا + صباحًا + ظهرًا + بعد الظهر + مساءً + منتصف الليل + ليلاً + + + صباحًا + مساءً + فجرا + صباحًا + ظهرًا + بعد الظهر + مساءً + منتصف الليل + ليلاً @@ -1742,8 +1825,8 @@ For terms of use, see http://www.unicode.org/copyright.html - d - ccc + d + ccc E، d E h:mm a E HH:mm @@ -1798,7 +1881,7 @@ For terms of use, see http://www.unicode.org/copyright.html h–h a - HH–HH + HH–HH h:mm a – h:mm a @@ -1806,8 +1889,8 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm–h:mm a - HH:mm–HH:mm - HH:mm–HH:mm + HH:mm–HH:mm + HH:mm–HH:mm h:mm a – h:mm a v @@ -1815,15 +1898,15 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm–h:mm a v - HH:mm–HH:mm v - HH:mm–HH:mm v + HH:mm–HH:mm v + HH:mm–HH:mm v h a – h a v h–h a v - HH–HH v + HH–HH v M–M @@ -2052,7 +2135,7 @@ For terms of use, see http://www.unicode.org/copyright.html ١ ٢ ٣ - 4 + ٤ ٥ ٦ ٧ @@ -2107,24 +2190,26 @@ For terms of use, see http://www.unicode.org/copyright.html - d + d + ccc E، d y G MMM y G d MMM، y G E، d MMM، y G - L + L d/‏M E، d/M LLL d MMM E، d MMM + d MMMM y G y G M‏/y G d‏/M‏/y G E، d/‏M/‏y G - MMM y G + MMM، y G d MMM، y G E، d MMM، y G MMMM، y G @@ -2416,239 +2501,248 @@ For terms of use, see http://www.unicode.org/copyright.html السنة - السنة الماضية + السنة الماضية السنة الحالية - السنة التالية + السنة التالية - خلال {0} من السنوات - خلال {0} من السنوات + خلال {0} سنة + خلال سنة واحدة خلال سنتين خلال {0} سنوات خلال {0} سنة - خلال {0} من السنوات + خلال {0} سنة - قبل {0} من السنوات - قبل {0} من السنوات + قبل {0} سنة + قبل سنة واحدة قبل سنتين قبل {0} سنوات قبل {0} سنة - قبل {0} من السنوات + قبل {0} سنة - السنة + السنة - خلال {0} من السنوات - خلال {0} من السنوات - خلال {0} من السنوات - خلال {0} من السنوات - خلال {0} من السنوات - خلال {0} من السنوات + خلال {0} سنة + خلال سنة واحدة + خلال سنتين + خلال {0} سنوات + خلال {0} سنة + خلال {0} سنة - قبل {0} من السنوات - قبل {0} من السنوات - قبل {0} من السنوات - قبل {0} من السنوات - قبل {0} من السنوات - قبل {0} من السنوات + قبل {0} سنة + قبل سنة واحدة + قبل سنتين + قبل {0} سنوات + قبل {0} سنة + قبل {0} سنة - السنة + السنة - خلال {0} من السنوات - خلال {0} من السنوات - خلال {0} من السنوات - خلال {0} من السنوات - خلال {0} من السنوات - خلال {0} من السنوات + خلال {0} سنة + خلال سنة واحدة + خلال سنتين + خلال {0} سنوات + خلال {0} سنة + خلال {0} سنة - قبل {0} من السنوات - قبل {0} من السنوات - قبل {0} من السنوات - قبل {0} من السنوات - قبل {0} من السنوات - قبل {0} من السنوات + قبل {0} سنة + قبل سنة واحدة + قبل سنتين + قبل {0} سنوات + قبل {0} سنة + قبل {0} سنة ربع السنة + الربع الأخير + هذا الربع + الربع القادم - خلال {0} من أرباع السنة - خلال {0} من أرباع السنة - خلال {0} من أرباع السنة - خلال {0} من أرباع السنة - خلال {0} من أرباع السنة - خلال {0} من أرباع السنة + خلال {0} ربع سنة + خلال ربع سنة واحد + خلال ربعي سنة + خلال {0} أرباع سنة + خلال {0} ربع سنة + خلال {0} ربع سنة - قبل {0} من أرباع السنة - قبل {0} من أرباع السنة - قبل {0} من أرباع السنة - قبل {0} من أرباع السنة - قبل {0} من أرباع السنة - قبل {0} من أرباع السنة + قبل {0} ربع سنة + قبل ربع سنة واحد + قبل ربعي سنة + قبل {0} أرباع سنة + قبل {0} ربع سنة + قبل {0} ربع سنة ربع السنة + الربع الأخير + هذا الربع + الربع القادم - خلال {0} من أرباع السنة - خلال {0} من أرباع السنة - خلال {0} من أرباع السنة - خلال {0} من أرباع السنة - خلال {0} من أرباع السنة - خلال {0} من أرباع السنة + خلال {0} ربع سنة + خلال ربع سنة واحد + خلال ربعي سنة + خلال {0} أرباع سنة + خلال {0} ربع سنة + خلال {0} ربع سنة - قبل {0} من أرباع السنة - قبل {0} من أرباع السنة - قبل {0} من أرباع السنة - قبل {0} من أرباع السنة - قبل {0} من أرباع السنة - قبل {0} من أرباع السنة + قبل {0} ربع سنة + قبل ربع سنة واحد + قبل ربعي سنة + قبل {0} أرباع سنة + قبل {0} ربع سنة + قبل {0} ربع سنة ربع السنة + الربع الأخير + هذا الربع + الربع القادم - خلال {0} من أرباع السنة - خلال {0} من أرباع السنة - خلال {0} من أرباع السنة - خلال {0} من أرباع السنة - خلال {0} من أرباع السنة - خلال {0} من أرباع السنة + خلال {0} ربع سنة + خلال ربع سنة واحد + خلال ربعي سنة + خلال {0} أرباع سنة + خلال {0} ربع سنة + خلال {0} ربع سنة - قبل {0} من أرباع السنة - قبل {0} من أرباع السنة - قبل {0} من أرباع السنة - قبل {0} من أرباع السنة - قبل {0} من أرباع السنة - قبل {0} من أرباع السنة + قبل {0} ربع سنة + قبل ربع سنة واحد + قبل ربعي سنة + قبل {0} أرباع سنة + قبل {0} ربع سنة + قبل {0} ربع سنة الشهر - الشهر الماضي - هذا الشهر - الشهر التالي + الشهر الماضي + هذا الشهر + الشهر التالي - خلال {0} من الشهور - خلال {0} من الشهور + خلال {0} شهر + خلال شهر واحد خلال شهرين - خلال {0} شهور + خلال {0} أشهر خلال {0} شهرًا - خلال {0} من الشهور + خلال {0} شهر - قبل {0} من الشهور - قبل {0} من الشهور + قبل {0} شهر + قبل شهر واحد قبل شهرين قبل {0} أشهر قبل {0} شهرًا - قبل {0} من الشهور + قبل {0} شهر - الشهر + الشهر - خلال {0} من الشهور - خلال {0} من الشهور - خلال {0} من الشهور - خلال {0} من الشهور - خلال {0} من الشهور - خلال {0} من الشهور + خلال {0} شهر + خلال شهر واحد + خلال شهرين + خلال {0} أشهر + خلال {0} شهرًا + خلال {0} شهر - قبل {0} من الشهور - قبل {0} من الشهور - قبل {0} من الشهور - قبل {0} من الشهور - قبل {0} من الشهور - قبل {0} من الشهور + قبل {0} شهر + قبل شهر واحد + قبل شهرين + خلال {0} أشهر + قبل {0} شهرًا + قبل {0} شهر - الشهر + الشهر - خلال {0} من الشهور - خلال {0} من الشهور - خلال {0} من الشهور - خلال {0} من الشهور - خلال {0} من الشهور - خلال {0} من الشهور + خلال {0} شهر + خلال شهر واحد + خلال شهرين + خلال {0} أشهر + خلال {0} شهرًا + خلال {0} شهر - قبل {0} من الشهور - قبل {0} من الشهور - قبل {0} من الشهور - قبل {0} من الشهور - قبل {0} من الشهور - قبل {0} من الشهور + قبل {0} شهر + قبل شهر واحد + قبل شهرين + قبل {0} أشهر + قبل {0} شهرًا + قبل {0} شهر الأسبوع الأسبوع الماضي هذا الأسبوع - الأسبوع التالي + الأسبوع التالي - خلال {0} من الأسابيع - خلال {0} من الأسابيع + خلال {0} أسبوع + خلال أسبوع واحد خلال أسبوعين خلال {0} أسابيع خلال {0} أسبوعًا - خلال {0} من الأسابيع + خلال {0} أسبوع - قبل {0} من الأسابيع - قبل {0} من الأسابيع + قبل {0} أسبوع + قبل أسبوع واحد قبل أسبوعين قبل {0} أسابيع قبل {0} أسبوعًا - قبل {0} من الأسابيع + قبل {0} أسبوع - الأسبوع + الأسبوع - خلال {0} من الأسابيع - خلال {0} من الأسابيع - خلال {0} من الأسابيع - خلال {0} من الأسابيع - خلال {0} من الأسابيع - خلال {0} من الأسابيع + خلال {0} أسبوع + خلال أسبوع واحد + خلال {0} أسبوعين + خلال {0} أسابيع + خلال {0} أسبوعًا + خلال {0} أسبوع - قبل {0} من الأسابيع - قبل {0} من الأسابيع - قبل {0} من الأسابيع - قبل {0} من الأسابيع - قبل {0} من الأسابيع - قبل {0} من الأسابيع + قبل {0} أسبوع + قبل أسبوع واحد + قبل أسبوعين + قبل {0} أسابيع + قبل {0} أسبوعًا + قبل {0} أسبوع - الأسبوع + الأسبوع - خلال {0} من الأسابيع - خلال {0} من الأسابيع - خلال {0} من الأسابيع - خلال {0} من الأسابيع - خلال {0} من الأسابيع - خلال {0} من الأسابيع + خلال {0} أسبوع + خلال أسبوع واحد + خلال أسبوعين + خلال {0} أسابيع + خلال {0} أسبوعًا + خلال {0} أسبوع - قبل {0} من الأسابيع - قبل {0} من الأسابيع - قبل {0} من الأسابيع - قبل {0} من الأسابيع - قبل {0} من الأسابيع - قبل {0} من الأسابيع + قبل {0} أسبوع + قبل أسبوع واحد + قبل أسبوعين + قبل {0} أسابيع + قبل {0} أسبوعًا + قبل {0} أسبوع @@ -2659,58 +2753,58 @@ For terms of use, see http://www.unicode.org/copyright.html غدًا بعد الغد - خلال {0} من الأيام - خلال {0} من الأيام + خلال {0} يوم + خلال يوم واحد خلال يومين خلال {0} أيام خلال {0} يومًا - خلال {0} من الأيام + خلال {0} يوم - قبل {0} من الأيام - قبل {0} من الأيام + قبل {0} يوم + قبل يوم واحد قبل يومين قبل {0} أيام قبل {0} يومًا - قبل {0} من الأيام + قبل {0} يوم - يوم + يوم - خلال {0} من الأيام - خلال {0} من الأيام - خلال {0} من الأيام - خلال {0} من الأيام - خلال {0} من الأيام - خلال {0} من الأيام + خلال {0} يوم + خلال يوم واحد + خلال يومين + خلال {0} أيام + خلال {0} يومًا + خلال {0} يوم - قبل {0} من الأيام - قبل {0} من الأيام - قبل {0} من الأيام - قبل {0} من الأيام - قبل {0} من الأيام - قبل {0} من الأيام + قبل {0} يوم + قبل يوم واحد + قبل يومين + قبل {0} أيام + قبل {0} يومًا + قبل {0} يوم - يوم + يوم - خلال {0} من الأيام - خلال {0} من الأيام - خلال {0} من الأيام - خلال {0} من الأيام - خلال {0} من الأيام - خلال {0} من الأيام + خلال {0} يوم + خلال يوم واحد + خلال يومين + خلال {0} أيام + خلال {0} يومًا + خلال {0} يوم - قبل {0} من الأيام - قبل {0} من الأيام - قبل {0} من الأيام - قبل {0} من الأيام - قبل {0} من الأيام - قبل {0} من الأيام + قبل {0} يوم + قبل يوم واحد + قبل يومين + قبل {0} أيام + قبل {0} يومًا + قبل {0} يوم @@ -2719,105 +2813,107 @@ For terms of use, see http://www.unicode.org/copyright.html الأحد الماضي الأحد الحالي - الأحد التالي + الأحد القادم - الأحد الحالي - الأحد القادم + الأحد الماضي + الأحد الحالي + الأحد القادم - الأحد الماضي - الأحد الحالي - الأحد القادم + الأحد الماضي + الأحد الحالي + الأحد القادم - الاثنين الماضي - الاثنين الحالي - الاثنين التالي + الاثنين الماضي + الاثنين الحالي + الاثنين القادم - الاثنين الماضي - الاثنين الحالي - الاثنين القادم + الاثنين الماضي + الاثنين الحالي + الاثنين القادم - الاثنين الماضي - الاثنين الحالي - الاثنين القادم + الاثنين الماضي + الاثنين الحالي + الاثنين القادم - الثلاثاء الماضي - الثلاثاء الحالي - الثلاثاء التالي + الثلاثاء الماضي + الثلاثاء الحالي + الثلاثاء القادم - الثلاثاء الماضي - الثلاثاء الحالي - الثلاثاء القادم + الثلاثاء الماضي + الثلاثاء الحالي + الثلاثاء القادم - الثلاثاء الماضي - الثلاثاء الحالي - الثلاثاء القادم + الثلاثاء الماضي + الثلاثاء الحالي + الثلاثاء القادم - الأربعاء الماضي - الأربعاء الحالي - الأربعاء التالي + الأربعاء الماضي + الأربعاء الحالي + الأربعاء القادم - الأربعاء الحالي - الأربعاء القادم + الأربعاء الماضي + الأربعاء الحالي + الأربعاء القادم - الأربعاء الماضي - الأربعاء الحالي - الأربعاء القادم + الأربعاء الماضي + الأربعاء الحالي + الأربعاء القادم - الخميس الماضي - الخميس الحالي - الخميس التالي + الخميس الماضي + الخميس الحالي + الخميس القادم - الخميس الماضي - الخميس الحالي - الخميس القادم + الخميس الماضي + الخميس الحالي + الخميس القادم - الخميس الماضي - الخميس الحالي - الخميس القادم + الخميس الماضي + الخميس الحالي + الخميس القادم - الجمعة الماضية - الجمعة الحالية - الجمعة التالية + الجمعة الماضي + الجمعة الحالي + الجمعة القادم - الجمعة الماضية - الجمعة الحالية - الجمعة القادمة + الجمعة الماضي + الجمعة الحالي + الجمعة القادم - الجمعة الماضية - الجمعة الحالية - الجمعة القادمة + الجمعة الماضي + الجمعة الحالي + الجمعة القادم - السبت الماضي - السبت الحالي - السبت التالي + السبت الماضي + السبت الحالي + السبت القادم - السبت الماضي - السبت الحالي - السبت القادم + السبت الماضي + السبت الحالي + السبت القادم - السبت الماضي - السبت الحالي - السبت القادم + السبت الماضي + السبت الحالي + السبت القادم ص/م @@ -2825,173 +2921,173 @@ For terms of use, see http://www.unicode.org/copyright.html الساعات - خلال {0} من الساعات - خلال {0} من الساعات + خلال {0} ساعة + خلال ساعة واحدة خلال ساعتين خلال {0} ساعات خلال {0} ساعة - خلال {0} من الساعات + خلال {0} ساعة - قبل {0} من الساعات - قبل {0} من الساعات + قبل {0} ساعة + قبل ساعة واحدة قبل ساعتين قبل {0} ساعات قبل {0} ساعة - قبل {0} من الساعات + قبل {0} ساعة - الساعات + الساعات - خلال {0} من الساعات - خلال {0} من الساعات - خلال {0} من الساعات - خلال {0} من الساعات - خلال {0} من الساعات - خلال {0} من الساعات + خلال {0} ساعة + خلال ساعة واحدة + خلال ساعتين + خلال {0} ساعات + خلال {0} ساعة + خلال {0} ساعة - قبل {0} من الساعات - قبل {0} من الساعات - قبل {0} من الساعات - قبل {0} من الساعات - قبل {0} من الساعات - قبل {0} من الساعات + قبل {0} ساعة + قبل ساعة واحدة + قبل ساعتين + قبل {0} ساعات + قبل {0} ساعة + قبل {0} ساعة - الساعات + الساعات - خلال {0} من الساعات - خلال {0} من الساعات - خلال {0} من الساعات - خلال {0} من الساعات - خلال {0} من الساعات - خلال {0} من الساعات + خلال {0} ساعة + خلال ساعة واحدة + خلال ساعتين + خلال {0} ساعات + خلال {0} ساعة + خلال {0} ساعة - قبل {0} من الساعات - قبل {0} من الساعات - قبل {0} من الساعات - قبل {0} من الساعات - قبل {0} من الساعات - قبل {0} من الساعات + قبل {0} ساعة + قبل ساعة واحدة + قبل ساعتين + قبل {0} ساعات + قبل {0} ساعة + قبل {0} ساعة الدقائق - خلال {0} من الدقائق - خلال {0} من الدقائق + خلال {0} دقيقة + خلال دقيقة واحدة خلال دقيقتين خلال {0} دقائق خلال {0} دقيقة - خلال {0} من الدقائق + خلال {0} دقيقة - قبل {0} من الدقائق - قبل {0} من الدقائق + قبل {0} دقيقة + قبل دقيقة واحدة قبل دقيقتين قبل {0} دقائق قبل {0} دقيقة - قبل {0} من الدقائق + قبل {0} دقيقة - الدقائق + الدقائق - خلال {0} من الدقائق - خلال {0} من الدقائق - خلال {0} من الدقائق - خلال {0} من الدقائق - خلال {0} من الدقائق - خلال {0} من الدقائق + خلال {0} دقيقة + خلال دقيقة واحدة + خلال دقيقتين + خلال {0} دقائق + خلال {0} دقيقة + خلال {0} دقيقة - قبل {0} من الدقائق - قبل {0} من الدقائق - قبل {0} من الدقائق - قبل {0} من الدقائق - قبل {0} من الدقائق - قبل {0} من الدقائق + قبل {0} دقيقة + قبل دقيقة واحدة + قبل دقيقتين + قبل {0} دقائق + قبل {0} دقيقة + قبل {0} دقيقة - الدقائق + الدقائق - خلال {0} من الدقائق - خلال {0} من الدقائق - خلال {0} من الدقائق - خلال {0} من الدقائق - خلال {0} من الدقائق - خلال {0} من الدقائق + خلال {0} دقيقة + خلال دقيقة واحدة + خلال دقيقتين + خلال {0} دقائق + خلال {0} دقيقة + خلال {0} دقيقة - قبل {0} من الدقائق - قبل {0} من الدقائق - قبل {0} من الدقائق - قبل {0} من الدقائق - قبل {0} من الدقائق - قبل {0} من الدقائق + قبل {0} دقيقة + قبل دقيقة واحدة + قبل دقيقتين + قبل {0} دقائق + قبل {0} دقيقة + قبل {0} دقيقة الثواني الآن - خلال {0} من الثواني - خلال {0} من الثواني + خلال {0} ثانية + خلال ثانية واحدة خلال ثانيتين خلال {0} ثوانِ خلال {0} ثانية - خلال {0} من الثواني + خلال {0} ثانية - قبل {0} من الثواني - قبل {0} من الثواني + قبل {0} ثانية + قبل ثانية واحدة قبل ثانيتين قبل {0} ثوانِ قبل {0} ثانية - قبل {0} من الثواني + قبل {0} ثانية - الثواني + الثواني - خلال {0} من الثواني - خلال {0} من الثواني - خلال {0} من الثواني - خلال {0} من الثواني - خلال {0} من الثواني - خلال {0} من الثواني + خلال {0} ثانية + خلال ثانية واحدة + خلال ثانيتين + خلال {0} ثوانٍ + خلال {0} ثانية + خلال {0} ثانية - قبل {0} من الثواني - قبل {0} من الثواني - قبل {0} من الثواني - قبل {0} من الثواني - قبل {0} من الثواني - قبل {0} من الثواني + قبل {0} ثانية + قبل ثانية واحدة + قبل ثانيتين + قبل {0} ثوانٍ + قبل {0} ثانية + قبل {0} ثانية - الثواني + الثواني - خلال {0} من الثواني - خلال {0} من الثواني - خلال {0} من الثواني - خلال {0} من الثواني - خلال {0} من الثواني - خلال {0} من الثواني + خلال {0} ثانية + خلال ثانية واحدة + خلال ثانيتين + خلال {0} ثوانٍ + خلال {0} ثانية + خلال {0} ثانية - قبل {0} من الثواني - قبل {0} من الثواني - قبل {0} من الثواني - قبل {0} من الثواني - قبل {0} من الثواني - قبل {0} من الثواني + قبل {0} ثانية + قبل ثانية واحدة + قبل ثانيتين + قبل {0} ثوانٍ + قبل {0} ثانية + قبل {0} ثانية @@ -3025,10 +3121,10 @@ For terms of use, see http://www.unicode.org/copyright.html أنغيلا - تيرانا + تيرانا - يريفان + يريفان لواندا @@ -3085,7 +3181,7 @@ For terms of use, see http://www.unicode.org/copyright.html كاتاماركا - سالطا + سالطا جوجو @@ -3100,7 +3196,7 @@ For terms of use, see http://www.unicode.org/copyright.html بوينوس أيرس - باغو باغو + باغو باغو فيينا @@ -3139,7 +3235,7 @@ For terms of use, see http://www.unicode.org/copyright.html برسيبان - ماكواري + ماكواري لورد هاو @@ -3148,7 +3244,7 @@ For terms of use, see http://www.unicode.org/copyright.html أروبا - ماريهامن + ماريهامن باكو @@ -3166,7 +3262,7 @@ For terms of use, see http://www.unicode.org/copyright.html بروكسل - واغادوغو + واغادوغو صوفيا @@ -3178,7 +3274,7 @@ For terms of use, see http://www.unicode.org/copyright.html بوجومبورا - بورتو نوفو + بورتو نوفو سانت بارتيليمي @@ -3214,7 +3310,7 @@ For terms of use, see http://www.unicode.org/copyright.html كيابا - سانتاريم + سانتاريم كومبو جراند @@ -3244,7 +3340,7 @@ For terms of use, see http://www.unicode.org/copyright.html نوروناه - ناسو + ناسو تيمفو @@ -3361,13 +3457,13 @@ For terms of use, see http://www.unicode.org/copyright.html أبيدجان - راروتونغا + راروتونغا استر - سانتياغو + سانتياغو دوالا @@ -3376,7 +3472,7 @@ For terms of use, see http://www.unicode.org/copyright.html أرومكي - شنغهاي + شنغهاي بوغوتا @@ -3403,7 +3499,7 @@ For terms of use, see http://www.unicode.org/copyright.html براغ - بوسنغن + بوسنغن برلين @@ -3427,7 +3523,7 @@ For terms of use, see http://www.unicode.org/copyright.html جلاباجوس - غواياكويل + غواياكويل تالين @@ -3448,7 +3544,7 @@ For terms of use, see http://www.unicode.org/copyright.html سيتا - مدريد + مدريد أديس أبابا @@ -3460,7 +3556,7 @@ For terms of use, see http://www.unicode.org/copyright.html فيجي - استانلي + استانلي ترك @@ -3482,7 +3578,7 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت بريطانيا الصيفي + توقيت بريطانيا الصيفي لندن @@ -3496,7 +3592,7 @@ For terms of use, see http://www.unicode.org/copyright.html كايين - غيرنسي + غيرنسي أكرا @@ -3523,7 +3619,7 @@ For terms of use, see http://www.unicode.org/copyright.html كوناكري - غوادلوب + غوادلوب مالابو @@ -3538,13 +3634,13 @@ For terms of use, see http://www.unicode.org/copyright.html غواتيمالا - غوام + غوام بيساو - غيانا + غيانا هونغ كونغ @@ -3553,10 +3649,10 @@ For terms of use, see http://www.unicode.org/copyright.html تيغوسيغالبا - زغرب + زغرب - بورت أو برنس + بورت أو برنس بودابست @@ -3583,7 +3679,7 @@ For terms of use, see http://www.unicode.org/copyright.html القدس - جزيرة مان + جزيرة مان كالكتا @@ -3598,7 +3694,7 @@ For terms of use, see http://www.unicode.org/copyright.html طهران - ريكيافيك + ريكيافيك روما @@ -3643,7 +3739,7 @@ For terms of use, see http://www.unicode.org/copyright.html بيونغ يانغ - سول + سول الكويت @@ -3667,34 +3763,34 @@ For terms of use, see http://www.unicode.org/copyright.html ألماتي - فيانتيان + فيانتيان بيروت - سانت لوشيا + سانت لوشيا - فادوز + فادوز كولومبو - مونروفيا + مونروفيا - ماسيرو + ماسيرو - فيلنيوس + فيلنيوس لوكسمبورغ - ريغا + ريغا طرابلس @@ -3709,10 +3805,10 @@ For terms of use, see http://www.unicode.org/copyright.html تشيسيناو - بودغوريكا + بودغوريكا - ماريغوت + ماريغوت أنتاناناريفو @@ -3721,16 +3817,16 @@ For terms of use, see http://www.unicode.org/copyright.html كواجالين - ماجورو + ماجورو - سكوبي + سكوبي - باماكو + باماكو - رانغون + رانغون هوفد @@ -3745,22 +3841,22 @@ For terms of use, see http://www.unicode.org/copyright.html ماكاو - سايبان + سايبان - المارتينيك + المارتينيك نواكشوط - مونتسيرات + مونتسيرات مالطة - موريشيوس + موريشيوس المالديف @@ -3805,19 +3901,19 @@ For terms of use, see http://www.unicode.org/copyright.html كانكون - كوالا لامبور + كوالا لامبور كيشينج - مابوتو + مابوتو ويندهوك - نوميا + نوميا نيامي @@ -3835,22 +3931,22 @@ For terms of use, see http://www.unicode.org/copyright.html أمستردام - أوسلو + أوسلو - كاتماندو + كاتماندو - ناورو + ناورو - نيوي + نيوي تشاثام - أوكلاند + أوكلاند مسقط @@ -3859,10 +3955,10 @@ For terms of use, see http://www.unicode.org/copyright.html بنما - ليما + ليما - تاهيتي + تاهيتي ماركيساس @@ -3871,7 +3967,10 @@ For terms of use, see http://www.unicode.org/copyright.html جامبير - بور مورسبي + بور مورسبي + + + بوغانفيل مانيلا @@ -3886,7 +3985,7 @@ For terms of use, see http://www.unicode.org/copyright.html ميكولن - بيتكيرن + بيتكيرن بورتوريكو @@ -3895,7 +3994,7 @@ For terms of use, see http://www.unicode.org/copyright.html غزة - هيبرون (مدينة الخليل) + هيبرون (مدينة الخليل) أزورس @@ -3904,10 +4003,10 @@ For terms of use, see http://www.unicode.org/copyright.html ماديرا - لشبونة + لشبونة - بالاو + بالاو أسونسيون @@ -3916,7 +4015,7 @@ For terms of use, see http://www.unicode.org/copyright.html قطر - ريونيون + ريونيون بوخارست @@ -3949,7 +4048,7 @@ For terms of use, see http://www.unicode.org/copyright.html نوفوسبيرسك - نوفوكوزنتسك + نوفوكوزنتسك كراسنويارسك @@ -3957,6 +4056,9 @@ For terms of use, see http://www.unicode.org/copyright.html ايركيتسك + + تشيتا + ياكتسك @@ -3964,17 +4066,20 @@ For terms of use, see http://www.unicode.org/copyright.html فلاديفوستك - خانديجا + خانديجا سكالين - أوست نيرا + أوست نيرا مجادن + + سريدنكوليمسك + كامتشاتكا @@ -3991,7 +4096,7 @@ For terms of use, see http://www.unicode.org/copyright.html غوادالكانال - ماهي + ماهي الخرطوم @@ -4006,10 +4111,10 @@ For terms of use, see http://www.unicode.org/copyright.html سانت هيلينا - ليوبليانا + ليوبليانا - لونجيربين + لونجيربين براتيسلافا @@ -4018,7 +4123,7 @@ For terms of use, see http://www.unicode.org/copyright.html فري تاون - سان مارينو + سان مارينو داكار @@ -4030,22 +4135,22 @@ For terms of use, see http://www.unicode.org/copyright.html باراماريبو - جوبا + جوبا - ساو تومي + ساو تومي السلفادور - حي الأمير السفلي + حي الأمير السفلي دمشق - مباباني + مباباني غراند ترك @@ -4054,10 +4159,10 @@ For terms of use, see http://www.unicode.org/copyright.html نجامينا - كيرغويلين + كيرغويلين - لومي + لومي بانكوك @@ -4078,13 +4183,13 @@ For terms of use, see http://www.unicode.org/copyright.html تونس - تونغاتابو + تونغاتابو إسطنبول - بورت أوف سبين + بورت أوف سبين فونافوتي @@ -4099,7 +4204,7 @@ For terms of use, see http://www.unicode.org/copyright.html أوزجرود - كييف + كييف زابوروزي @@ -4174,7 +4279,7 @@ For terms of use, see http://www.unicode.org/copyright.html بيترسبرغ - مدينة تل، إنديانا + مدينة تل، إنديانا كونكس @@ -4204,28 +4309,28 @@ For terms of use, see http://www.unicode.org/copyright.html نيويورك - مونتفيديو + مونتفيديو سمرقند - طشقند + طشقند الفاتيكان - سانت فنسنت + سانت فنسنت كاراكاس - تورتولا + تورتولا - سانت توماس + سانت توماس مدينة هو تشي منة @@ -4234,7 +4339,7 @@ For terms of use, see http://www.unicode.org/copyright.html إيفات - واليس + واليس أبيا @@ -4243,16 +4348,16 @@ For terms of use, see http://www.unicode.org/copyright.html عدن - مايوت + مايوت جوهانسبرغ - لوساكا + لوساكا - هراري + هراري @@ -4283,9 +4388,9 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت ألاسكا - التوقيت الرسمي لألاسكا - توقيت ألاسكا الصيفي + توقيت ألاسكا + التوقيت الرسمي لألاسكا + توقيت ألاسكا الصيفي @@ -4367,9 +4472,9 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت الأطلسي - التوقيت الرسمي الأطلسي - التوقيت الصيفي الأطلسي + توقيت الأطلسي + التوقيت الرسمي الأطلسي + التوقيت الصيفي الأطلسي @@ -4416,9 +4521,9 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت بنجلاديش - توقيت بنجلاديش الرسمي - توقيت بنجلاديش الصيفي + توقيت بنجلاديش + توقيت بنجلاديش الرسمي + توقيت بنجلاديش الصيفي @@ -4452,7 +4557,7 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت تشامورو + توقيت تشامورو @@ -4485,12 +4590,12 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت جزر الكريسماس + توقيت جزر الكريسماس - توقيت جزر كوكوس + توقيت جزر كوكوس @@ -4502,9 +4607,9 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت جزر كووك - توقيت جزر كووك الرسمي - توقيت جزر كووك الصيفي + توقيت جزر كووك + توقيت جزر كووك الرسمي + توقيت جزر كووك الصيفي @@ -4516,12 +4621,12 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت دافيز + توقيت دافيز - توقيت دي مونت دو روفيل + توقيت دي مونت دو روفيل @@ -4557,7 +4662,7 @@ For terms of use, see http://www.unicode.org/copyright.html - التوقيت الأوروبي (أكثر شرقًا) + التوقيت الأوروبي (أكثر شرقًا) @@ -4583,12 +4688,12 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت غويانا الفرنسية + توقيت غايانا الفرنسية - توقيت المقاطعات الفرنسية الجنوبية والأنتارتيكية + توقيت المقاطعات الفرنسية الجنوبية والأنتارتيكية @@ -4598,7 +4703,7 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت جامبير + توقيت جامبير @@ -4610,7 +4715,7 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت جزر جيلبرت + توقيت جزر جيلبرت @@ -4639,7 +4744,7 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت الخليج + توقيت الخليج @@ -4752,7 +4857,7 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت كوسرا + توقيت كوسرا @@ -4764,24 +4869,24 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت قرغيزستان + توقيت قرغيزستان - توقيت جزر لاين + توقيت جزر لاين - توقيت لورد هاو - توقيت لورد هاو الرسمي - التوقيت الصيفي للورد هاو + توقيت لورد هاو + توقيت لورد هاو الرسمي + التوقيت الصيفي للورد هاو - توقيت ماكواري + توقيت ماكواري @@ -4798,12 +4903,12 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت الـمالديف + توقيت الـمالديف - توقيت ماركيساس + توقيت ماركيساس @@ -4846,9 +4951,9 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت موسكو - توقيت موسكو الرسمي - توقيت موسكو الصيفي + توقيت موسكو + توقيت موسكو الرسمي + توقيت موسكو الصيفي @@ -4868,9 +4973,9 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت كاليدونيا الجديدة - توقيت كاليدونيا الجديدة الرسمي - توقيت كاليدونيا الجديدة الصيفي + توقيت كاليدونيا الجديدة + توقيت كاليدونيا الجديدة الرسمي + توقيت كاليدونيا الجديدة الصيفي @@ -4956,14 +5061,14 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت الفيلبين - توقيت الفيلبين الرسمي - توقيت الفيلبين الصيفي + توقيت الفيلبين + توقيت الفيلبين الرسمي + توقيت الفيلبين الصيفي - توقيت جزر فينكس + توقيت جزر فينكس @@ -4975,7 +5080,7 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت بيتكيرن + توقيت بيتكيرن @@ -5009,19 +5114,19 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت ساموا - توقيت ساموا الرسمي - توقيت ساموا الصيفي + توقيت ساموا + توقيت ساموا الرسمي + توقيت ساموا الصيفي - توقيت سيشل + توقيت سيشل - توقيت سنغافورة + توقيت سنغافورة @@ -5031,7 +5136,7 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت جنوب جورجيا + توقيت جنوب جورجيا @@ -5041,7 +5146,7 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت سايووا + توقيت سايووا @@ -5099,9 +5204,9 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت أوزبكستان - توقيت أوزبكستان الرسمي - توقيت أوزبكستان الصيفي + توقيت أوزبكستان + توقيت أوزبكستان الرسمي + توقيت أوزبكستان الصيفي @@ -5142,7 +5247,7 @@ For terms of use, see http://www.unicode.org/copyright.html - توقيت واليس و فوتونا + توقيت واليس و فوتونا @@ -5175,24 +5280,24 @@ For terms of use, see http://www.unicode.org/copyright.html ‏+ ‏- اس - × + × ؉ ليس رقم - ، + : . , ; - % + ٪ ‎+ ‎- E - × + × - NaN + ليس رقمًا : @@ -5246,24 +5351,24 @@ For terms of use, see http://www.unicode.org/copyright.html 000 مليون 000 مليون 000 مليون - 0 بليون - 0 بليون - 0 بليون - 0 بلايين - 0 بليون - 0 بليون - 00 بليون - 00 بليون - 00 بليون - 00 بليون - 00 بليون - 00 بليون - 000 بليون - 000 بليون - 000 بليون - 000 بليون - 000 بليون - 000 بليون + 0 مليار + 0 مليار + 0 مليار + 0 مليار + 0 مليار + 0 مليار + 00 مليار + 00 مليار + 00 مليار + 00 مليار + 00 مليار + 00 مليار + 000 مليار + 000 مليار + 000 مليار + 000 مليار + 000 مليار + 000 مليار 0 تريليون 0 تريليون 0 تريليون @@ -5322,24 +5427,24 @@ For terms of use, see http://www.unicode.org/copyright.html 000 مليو 000 مليو 000 مليو - 0 بليو - 0 بليو - 0 بليو - 0 بليو - 0 بليو - 0 بليو - 00 بليو - 00 بليو - 00 بليو - 00 بليو - 00 بليو - 00 بليو - 000 بليو - 000 بليو - 000 بليو - 000 بليو - 000 بليو - 000 بليو + 0 مليا + 0 مليا + 0 مليا + 0 مليا + 0 مليا + 0 مليا + 00 مليا + 00 مليا + 00 مليا + 00 مليا + 00 مليا + 00 مليا + 000 مليا + 000 مليا + 000 مليا + 000 مليا + 000 مليا + 000 مليا 0 ترليو 0 ترليو 0 ترليو @@ -5408,7 +5513,83 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 - ¤#,##0.00;(¤#,##0.00) + ¤#,##0.00;(¤#,##0.00) + + + + + ¤ 0 ألف + ¤ 0 ألف + ¤ 0 ألف + ¤ 0 ألف + ¤ 0 ألف + ¤ 0 ألف + ¤ 00 ألف + ¤ 00 ألف + ¤ 00 ألف + ¤ 00 ألف + ¤ 00 ألف + ¤ 00 ألف + ¤ 000 ألف + ¤ 000 ألف + ¤ 000 ألف + ¤ 000 ألف + ¤ 000 ألف + ¤ 000 ألف + ¤ 0 مليو + ¤ 0 مليو + ¤ 0 مليو + ¤ 0 مليو + ¤ 0 مليو + ¤ 0 مليو + ¤ 00 مليو + ¤ 00 مليو + ¤ 00 مليو + ¤ 00 مليو + ¤ 00 مليو + ¤ 00 مليو + ¤ 000 مليو + ¤ 000 مليو + ¤ 000 مليو + ¤ 000 مليو + ¤ 000 مليو + ¤ 000 مليو + ¤ 0 مليا + ¤ 0 مليا + ¤ 0 مليا + ¤ 0 مليا + ¤ 0 مليا + ¤ 0 مليا + ¤ 00 مليا + ¤ 00 مليا + ¤ 00 مليا + ¤ 00 مليا + ¤ 00 مليا + ¤ 00 مليا + ¤ 000 مليا + ¤ 000 مليا + ¤ 000 مليا + ¤ 000 مليا + ¤ 000 مليا + ¤ 000 مليا + ¤ 0 ترليو + ¤ 0 ترليو + ¤ 0 ترليو + ¤ 0 ترليو + ¤ 0 ترليو + ¤ 0 ترليو + ¤ 00 ترليو + ¤ 00 ترليو + ¤ 00 ترليو + ¤ 00 ترليو + ¤ 00 ترليو + ¤ 00 ترليو + ¤ 000 ترليو + ¤ 000 ترليو + ¤ 000 ترليو + ¤ 000 ترليو + ¤ 000 ترليو + ¤ 000 ترليو {0} {1} @@ -5428,12 +5609,12 @@ For terms of use, see http://www.unicode.org/copyright.html درهم إماراتي - درهم إماراتي - درهم إماراتي - درهم إماراتي - درهم إماراتي - درهم إماراتي - درهم إماراتي + درهم إماراتي + درهم إماراتي + درهم إماراتي + دراهم إماراتية + درهمًا إماراتيًا + درهم إماراتي د.إ.‏ @@ -5451,26 +5632,26 @@ For terms of use, see http://www.unicode.org/copyright.html ليك ألباني - ليك ألباني - ليك ألباني - ليك ألباني - ليك ألباني - ليك ألباني - ليك ألباني + ليك ألباني + ليك ألباني + ليك ألباني + ليك ألباني + ليك ألباني + ليك ألباني ALL درام أرميني - درام أرميني - درام أرميني - درام أرميني - درام أرميني - درام أرميني - درام أرميني + درام أرميني + درام أرميني + درام أرميني + درام أرميني + درامًا أرمينيًا + درام أرميني AMD - غيلدر هولندي أنتيلي + غيلدر أنتيلي هولندي غيلدر أنتيلي هولندي غيلدر أنتيلي هولندي غيلدر أنتيلي هولندي @@ -5481,13 +5662,14 @@ For terms of use, see http://www.unicode.org/copyright.html كوانزا أنجولي - كوانزا أنجولي - كوانزا أنجولي - كوانزا أنجولي - كوانزا أنجولي - كوانزا أنجولي - كوانزا أنجولي + كوانزا أنجولي + كوانزا أنجولي + كوانزا أنجولي + كوانزا أنجولي + كوانزا أنجولي + كوانزا أنجولي AOA + Kz كوانزا أنجولي - 1977-1990 @@ -5512,12 +5694,12 @@ For terms of use, see http://www.unicode.org/copyright.html بيزو أرجنتيني - بيزو أرجنتيني - بيزو أرجنتيني - بيزو أرجنتيني - بيزو أرجنتيني - بيزو أرجنتيني - بيزو أرجنتيني + بيزو أرجنتيني + بيزو أرجنتيني + بيزو أرجنتيني + بيزو أرجنتيني + بيزو أرجنتيني + بيزو أرجنتيني ARS AR$ @@ -5526,12 +5708,12 @@ For terms of use, see http://www.unicode.org/copyright.html دولار أسترالي - دولار أسترالي - دولار أسترالي - دولار أسترالي - دولار أسترالي - دولار أسترالي - دولار أسترالي + دولار أسترالي + دولار أسترالي + دولار أسترالي + دولار أسترالي + دولار أسترالي + دولار أسترالي AU$ AU$ @@ -5556,6 +5738,12 @@ For terms of use, see http://www.unicode.org/copyright.html مانات أذربيجان + مانت أذربيجاني + مانت أذربيجاني + مانت أذربيجاني + مانت أذربيجاني + مانت أذربيجاني + مانت أذربيجاني AZN @@ -5563,13 +5751,14 @@ For terms of use, see http://www.unicode.org/copyright.html مارك البوسنة والهرسك قابل للتحويل - مارك البوسنة والهرسك قابل للتحويل - مارك البوسنة والهرسك قابل للتحويل - مارك البوسنة والهرسك قابل للتحويل - مارك البوسنة والهرسك قابل للتحويل - مارك البوسنة والهرسك قابل للتحويل - مارك البوسنة والهرسك قابل للتحويل + مارك البوسنة والهرسك قابل للتحويل + مارك البوسنة والهرسك قابل للتحويل + مارك البوسنة والهرسك قابل للتحويل + مارك البوسنة والهرسك قابل للتحويل + مارك البوسنة والهرسك قابل للتحويل + مارك البوسنة والهرسك قابل للتحويل BAM + KM دولار بربادوسي @@ -5584,12 +5773,12 @@ For terms of use, see http://www.unicode.org/copyright.html تاكا بنجلاديشي - تاكا بنجلاديشي - تاكا بنجلاديشي - تاكا بنجلاديشي - تاكا بنجلاديشي - تاكا بنجلاديشي - تاكا بنجلاديشي + تاكا بنجلاديشي + تاكا بنجلاديشي + تاكا بنجلاديشي + تاكا بنجلاديشي + تاكا بنجلاديشي + تاكا بنجلاديشي BDT @@ -5620,22 +5809,22 @@ For terms of use, see http://www.unicode.org/copyright.html دينار بحريني - دينار بحريني - دينار بحريني - دينار بحريني - دينار بحريني - دينار بحريني - دينار بحريني + دينار بحريني + دينار بحريني + دينار بحريني + دينارات بحرينية + دينارًا بحرينيًا + دينار بحريني د.ب.‏ فرنك بروندي - فرنك بروندي - فرنك بروندي - فرنك بروندي - فرنك بروندي - فرنك بروندي - فرنك بروندي + فرنك بروندي + فرنك بروندي + فرنك بروندي + فرنك بروندي + فرنك بروندي + فرنك بروندي BIF @@ -5651,12 +5840,12 @@ For terms of use, see http://www.unicode.org/copyright.html دولار بروناي - دولار بروناي - دولار بروناي - دولار بروناي - دولار بروناي - دولار بروناي - دولار بروناي + دولار بروناي + دولار بروناي + دولار بروناي + دولار بروناي + دولار بروناي + دولار بروناي BND BN$ @@ -5669,6 +5858,7 @@ For terms of use, see http://www.unicode.org/copyright.html بوليفيانو بوليفي بوليفيانو بوليفي BOB + Bs بيزو بوليفي @@ -5693,34 +5883,34 @@ For terms of use, see http://www.unicode.org/copyright.html ريال برازيلي - ريال برازيلي - ريال برازيلي - ريال برازيلي - ريال برازيلي - ريال برازيلي - ريال برازيلي + ريال برازيلي + ريال برازيلي + ريال برازيلي + ريال برازيلي + ريال برازيلي + ريال برازيلي R$ R$ دولار باهامي - دولار باهامي - دولار باهامي - دولار باهامي - دولار باهامي - دولار باهامي - دولار باهامي + دولار باهامي + دولار باهامي + دولار باهامي + دولار باهامي + دولار باهامي + دولار باهامي BSD BS$ نولتوم بوتاني - نولتوم بوتاني - نولتوم بوتاني - نولتوم بوتاني - نولتوم بوتاني - نولتوم بوتاني - نولتوم بوتاني + نولتوم بوتاني + نولتوم بوتاني + نولتوم بوتاني + نولتوم بوتاني + نولتوم بوتاني + نولتوم بوتاني BTN @@ -5728,25 +5918,26 @@ For terms of use, see http://www.unicode.org/copyright.html بولا بتسواني - بولا بتسواني - بولا بتسواني - بولا بتسواني - بولا بتسواني - بولا بتسواني - بولا بتسواني + بولا بتسواني + بولا بتسواني + بولا بتسواني + بولا بتسواني + بولا بتسواني + بولا بتسواني BWP + P روبل بيلاروسي جديد - 1994-1999 روبل بيلاروسي - روبل بيلاروسي - روبل بيلاروسي - روبل بيلاروسي - روبل بيلاروسي - روبل بيلاروسي - روبل بيلاروسي + روبل بيلاروسي + روبل بيلاروسي + روبل بيلاروسي + روبل بيلاروسي + روبل بيلاروسي + روبل بيلاروسي BYR р. @@ -5754,7 +5945,7 @@ For terms of use, see http://www.unicode.org/copyright.html دولار بليزي دولار بليزي دولار بليزي - دولار بليزي + دولاران بليزيان دولار بليزي دولار بليزي دولار بليزي @@ -5784,44 +5975,44 @@ For terms of use, see http://www.unicode.org/copyright.html فرنك سويسري - فرنك سويسري - فرنك سويسري - فرنك سويسري - فرنك سويسري - فرنك سويسري - فرنك سويسري + فرنك سويسري + فرنك سويسري + فرنك سويسري + فرنك سويسري + فرنك سويسري + فرنك سويسري CHF بيزو شيلي - بيزو شيلي - بيزو شيلي - بيزو شيلي - بيزو شيلي - بيزو شيلي - بيزو شيلي + بيزو شيلي + بيزو شيلي + بيزو شيلي + بيزو شيلي + بيزو شيلي + بيزو شيلي CLP CL$ يوان صيني - يوان صيني - يوان صيني - يوان صيني - يوان صيني - يوان صيني - يوان صيني - ي.ص + يوان صيني + يوان صيني + يوان صيني + يوان صيني + يوان صيني + يوان صيني + CN¥ CN¥ بيزو كولومبي - بيزو كولومبي - بيزو كولومبي - بيزو كولومبي - بيزو كولومبي - بيزو كولومبي - بيزو كولومبي + بيزو كولومبي + بيزو كولومبي + بيزو كولومبي + بيزو كولومبي + بيزو كولومبي + بيزو كولومبي COP CO$ @@ -5844,7 +6035,14 @@ For terms of use, see http://www.unicode.org/copyright.html بيزو كوبي قابل للتحويل + بيزو كوبي قابل للتحويل + بيزو كوبي قابل للتحويل + بيزو كوبي قابل للتحويل + بيزو كوبي قابل للتحويل + بيزو كوبي قابل للتحويل + بيزو كوبي قابل للتحويل CUC + $ بيزو كوبي @@ -5859,12 +6057,12 @@ For terms of use, see http://www.unicode.org/copyright.html اسكودو الرأس الخضراء - اسكودو الرأس الخضراء - اسكودو الرأس الخضراء - اسكودو الرأس الخضراء - اسكودو الرأس الخضراء - اسكودو الرأس الخضراء - اسكودو الرأس الخضراء + اسكودو الرأس الخضراء + اسكودو الرأس الخضراء + اسكودو الرأس الخضراء + اسكودو الرأس الخضراء + اسكودو الرأس الخضراء + اسكودو الرأس الخضراء CVE @@ -5878,13 +6076,14 @@ For terms of use, see http://www.unicode.org/copyright.html كرونة تشيكية - كرونة تشيكية - كرونة تشيكية - كرونة تشيكية - كرونة تشيكية - كرونة تشيكية - كرونة تشيكية + كرونة تشيكية + كرونة تشيكية + كرونة تشيكية + كرونة تشيكية + كرونة تشيكية + كرونة تشيكية CZK + أوستمارك ألماني شرقي @@ -5900,43 +6099,44 @@ For terms of use, see http://www.unicode.org/copyright.html فرنك جيبوتي - فرنك جيبوتي - فرنك جيبوتي - فرنك جيبوتي - فرنك جيبوتي - فرنك جيبوتي - فرنك جيبوتي + فرنك جيبوتي + فرنك جيبوتي + فرنك جيبوتي + فرنك جيبوتي + فرنك جيبوتي + فرنك جيبوتي DJF كرونة دانماركي - كرونة دانماركي - كرونة دانماركي - كرونة دانماركي - كرونة دانماركي - كرونة دانماركي - كرونة دانماركي + كرونة دانماركي + كرونة دانماركي + كرونة دانماركي + كرونة دانماركي + كرونة دانماركي + كرونة دانماركي DKK + kr بيزو الدومنيكان - بيزو الدومنيكان - بيزو الدومنيكان - بيزو الدومنيكان - بيزو الدومنيكان - بيزو الدومنيكان - بيزو الدومنيكان + بيزو الدومنيكان + بيزو الدومنيكان + بيزو الدومنيكان + بيزو الدومنيكان + بيزو الدومنيكان + بيزو الدومنيكان DOP DO$ دينار جزائري - دينار جزائري - دينار جزائري - دينار جزائري - دينار جزائري - دينار جزائري - دينار جزائري + دينار جزائري + دينار جزائري + ديناران جزائريان + دينارات جزائرية + دينارًا جزائريًا + دينار جزائري د.ج.‏ @@ -5952,20 +6152,21 @@ For terms of use, see http://www.unicode.org/copyright.html جنيه مصري جنيه مصري جنيه مصري - جنيه مصري - جنيه مصري - جنيه مصري + جنيهان مصريان + جنيهات مصرية + جنيهًا مصريًا جنيه مصري ج.م.‏ + ناكفا أريتري - ناكفا أريتري - ناكفا أريتري - ناكفا أريتري - ناكفا أريتري - ناكفا أريتري - ناكفا أريتري + ناكفا أريتري + ناكفا أريتري + ناكفا أريتري + ناكفا أريتري + ناكفا أريتري + ناكفا أريتري ERN @@ -5979,22 +6180,22 @@ For terms of use, see http://www.unicode.org/copyright.html بير أثيوبي - بير أثيوبي - بير أثيوبي - بير أثيوبي - بير أثيوبي - بير أثيوبي - بير أثيوبي + بير أثيوبي + بير أثيوبي + بير أثيوبي + بير أثيوبي + بير أثيوبي + بير أثيوبي ETB يورو - يورو - يورو - يورو - يورو - يورو - يورو + يورو + يورو + يورو + يورو + يورو + يورو @@ -6009,24 +6210,25 @@ For terms of use, see http://www.unicode.org/copyright.html دولار فيجي - دولار فيجي - دولار فيجي - دولار فيجي - دولار فيجي - دولار فيجي - دولار فيجي + دولار فيجي + دولار فيجي + دولار فيجي + دولار فيجي + دولار فيجي + دولار فيجي FJD FJ$ جنيه جزر فوكلاند - جنيه جزر فوكلاند - جنيه جزر فوكلاند - جنيه جزر فوكلاند - جنيه جزر فوكلاند - جنيه جزر فوكلاند - جنيه جزر فوكلاند + جنيه جزر فوكلاند + جنيه جزر فوكلاند + جنيه جزر فوكلاند + جنيه جزر فوكلاند + جنيه جزر فوكلاند + جنيه جزر فوكلاند FKP + £ فرنك فرنسي @@ -6050,13 +6252,14 @@ For terms of use, see http://www.unicode.org/copyright.html لارى جورجي - لاري جورجي - لاري جورجي - لاري جورجي - لاري جورجي - لاري جورجي - لاري جورجي + لاري جورجي + لاري جورجي + لاري جورجي + لاري جورجي + لاري جورجي + لاري جورجي GEL + سيدي غاني @@ -6069,38 +6272,45 @@ For terms of use, see http://www.unicode.org/copyright.html سيدي غانا + سيدي غانا + سيدي غانا + سيدي غانا + سيدي غانا + سيدي غانا + سيدي غانا GHS جنيه جبل طارق - جنيه جبل طارق - جنيه جبل طارق - جنيه جبل طارق - جنيه جبل طارق - جنيه جبل طارق - جنيه جبل طارق + جنيه جبل طارق + جنيه جبل طارق + جنيه جبل طارق + جنيه جبل طارق + جنيه جبل طارق + جنيه جبل طارق GIP £ دلاسي جامبي - دلاسي جامبي - دلاسي جامبي - دلاسي جامبي - دلاسي جامبي - دلاسي جامبي - دلاسي جامبي + دلاسي جامبي + دلاسي جامبي + دلاسي جامبي + دلاسي جامبي + دلاسي جامبي + دلاسي جامبي GMD فرنك غينيا - فرنك غينيا - فرنك غينيا - فرنك غينيا - فرنك غينيا - فرنك غينيا - فرنك غينيا + فرنك غينيا + فرنك غينيا + فرنك غينيا + فرنك غينيا + فرنك غينيا + فرنك غينيا GNF + FG سيلي غينيا @@ -6126,6 +6336,7 @@ For terms of use, see http://www.unicode.org/copyright.html كوتزال جواتيمالا كوتزال جواتيمالا GTQ + Q اسكود برتغالي غينيا @@ -6135,23 +6346,23 @@ For terms of use, see http://www.unicode.org/copyright.html دولار غيانا - دولار غيانا - دولار غيانا - دولار غيانا - دولار غيانا - دولار غيانا - دولار غيانا + دولار غيانا + دولار غيانا + دولار غيانا + دولار غيانا + دولار غيانا + دولار غيانا GYD GY$ - دولار هونج كونج - دولار هونج كونج - دولار هونج كونج - دولار هونج كونج - دولار هونج كونج - دولار هونج كونج - دولار هونج كونج + دولار هونغ كونغ + دولار هونغ كونغ + دولار هونغ كونغ + دولار هونغ كونغ + دولار هونغ كونغ + دولار هونغ كونغ + دولار هونغ كونغ HK$ HK$ @@ -6164,49 +6375,53 @@ For terms of use, see http://www.unicode.org/copyright.html ليمبيرا هندوراس ليمبيرا هندوراس HNL + L دينار كرواتي كونا كرواتي - كونا كرواتي - كونا كرواتي - كونا كرواتي - كونا كرواتي - كونا كرواتي - كونا كرواتي + كونا كرواتي + كونا كرواتي + كونا كرواتي + كونا كرواتي + كونا كرواتي + كونا كرواتي HRK + kn جوردى هايتي - جوردى هايتي - جوردى هايتي - جوردى هايتي - جوردى هايتي - جوردى هايتي - جوردى هايتي + جوردى هايتي + جوردى هايتي + جوردى هايتي + جوردى هايتي + جوردى هايتي + جوردى هايتي HTG فورينت مجري - فورينت مجري - فورينت مجري - فورينت مجري - فورينت مجري - فورينت مجري - فورينت مجري + فورينت مجري + فورينت مجري + فورينت مجري + فورينت مجري + فورينت مجري + فورينت مجري HUF + Ft روبية إندونيسية - روبيه إندونيسية - روبيه إندونيسية - روبيه إندونيسية - روبيه إندونيسية - روبيه إندونيسية - روبيه إندونيسية + روبيه إندونيسية + روبيه إندونيسية + روبيه إندونيسية + روبيه إندونيسية + روبيه إندونيسية + روبيه إندونيسية ر.إن. + Rp جنيه إيرلندي @@ -6228,55 +6443,56 @@ For terms of use, see http://www.unicode.org/copyright.html شيكل إسرائيلي جديد - شيكل إسرائيلي جديد - شيكل إسرائيلي جديد - شيكل إسرائيلي جديد - شيكل إسرائيلي جديد - شيكل إسرائيلي جديد - شيكل إسرائيلي جديد + شيكل إسرائيلي جديد + شيكل إسرائيلي جديد + شيكل إسرائيلي جديد + شيكل إسرائيلي جديد + شيكل إسرائيلي جديد + شيكل إسرائيلي جديد روبيه هندي - روبية هندي - روبية هندي - روبية هندي - روبية هندي - روبية هندي - روبية هندي - ر.ه.‏ + روبية هندي + روبية هندي + روبية هندي + روبية هندي + روبية هندي + روبية هندي + دينار عراقي - دينار عراقي - دينار عراقي - دينار عراقي - دينار عراقي - دينار عراقي - دينار عراقي + دينار عراقي + دينار عراقي + دينار عراقي + دينارات عراقية + دينارًا عراقيًا + دينار عراقي د.ع.‏ ريال إيراني - ريال إيراني - ريال إيراني - ريال إيراني - ريال إيراني - ريال إيراني - ريال إيراني + ريال إيراني + ريال إيراني + ريال إيراني + ريال إيراني + ريال إيراني + ريال إيراني ر.إ. كرونه أيسلندي - كرونه أيسلندي - كرونه أيسلندي - كرونه أيسلندي - كرونه أيسلندي - كرونه أيسلندي - كرونه أيسلندي + كرونه أيسلندي + كرونه أيسلندي + كرونه أيسلندي + كرونه أيسلندي + كرونه أيسلندي + كرونه أيسلندي ISK + kr ليرة إيطالية @@ -6289,169 +6505,173 @@ For terms of use, see http://www.unicode.org/copyright.html دولار جامايكي - دولار جامايكي - دولار جامايكي - دولار جامايكي - دولار جامايكي - دولار جامايكي - دولار جامايكي + دولار جامايكي + دولار جامايكي + دولار جامايكي + دولار جامايكي + دولار جامايكي + دولار جامايكي JMD JM$ دينار أردني - دينار أردني - دينار أردني - دينار أردني - دينار أردني - دينار أردني - دينار أردني + دينار أردني + دينار أردني + دينار أردني + دينارات أردنية + دينارًا أردنيًا + دينار أردني د.أ.‏ ين ياباني - ين ياباني - ين ياباني - ين ياباني - ين ياباني - ين ياباني - ين ياباني + ين ياباني + ين ياباني + ين ياباني + ين ياباني + ين ياباني + ين ياباني JP¥ JP¥ شلن كينيي - شلن كينيي - شلن كينيي - شلن كينيي - شلن كينيي - شلن كينيي - شلن كينيي + شلن كينيي + شلن كينيي + شلن كينيي + شلن كينيي + شلن كينيي + شلن كينيي KES سوم قيرغستاني - سوم قيرغستاني - سوم قيرغستاني - سوم قيرغستاني - سوم قيرغستاني - سوم قيرغستاني - سوم قيرغستاني + سوم قيرغستاني + سوم قيرغستاني + سوم قيرغستاني + سوم قيرغستاني + سوم قيرغستاني + سوم قيرغستاني KGS رييال كمبودي - رييال كمبودي - رييال كمبودي - رييال كمبودي - رييال كمبودي - رييال كمبودي - رييال كمبودي + رييال كمبودي + رييال كمبودي + رييال كمبودي + رييال كمبودي + رييال كمبودي + رييال كمبودي KHR فرنك جزر القمر - فرنك جزر القمر - فرنك جزر القمر - فرنك جزر القمر - فرنك جزر القمر - فرنك جزر القمر - فرنك جزر القمر + فرنك جزر القمر + فرنك جزر القمر + فرنك جزر القمر + فرنك جزر القمر + فرنك جزر القمر + فرنك جزر القمر ف.ج.ق.‏ + CF وون كوريا الشمالية - وون كوريا الشمالية - وون كوريا الشمالية - وون كوريا الشمالية - وون كوريا الشمالية - وون كوريا الشمالية - وون كوريا الشمالية + وون كوريا الشمالية + وون كوريا الشمالية + وون كوريا الشمالية + وون كوريا الشمالية + وون كوريا الشمالية + وون كوريا الشمالية KPW + وون كوريا الجنوبية - وون كوريا الجنوبية - وون كوريا الجنوبية - وون كوريا الجنوبية - وون كوريا الجنوبية - وون كوريا الجنوبية - وون كوريا الجنوبية + وون كوريا الجنوبية + وون كوريا الجنوبية + وون كوريا الجنوبية + وون كوريا الجنوبية + وون كوريا الجنوبية + وون كوريا الجنوبية دينار كويتي - دينار كويتي - دينار كويتي - دينار كويتي - دينار كويتي - دينار كويتي - دينار كويتي + دينار كويتي + دينار كويتي + دينار كويتي + دينارات كويتية + دينارًا كويتيًا + دينار كويتي د.ك.‏ دولار جزر كيمن - دولار جزر كيمن - دولار جزر كيمن - دولار جزر كيمن - دولار جزر كيمن - دولار جزر كيمن - دولار جزر كيمن + دولار جزر كيمن + دولار جزر كيمن + دولار جزر كيمن + دولار جزر كيمن + دولار جزر كيمن + دولار جزر كيمن KYD KY$ تينغ كازاخستاني - تينغ كازاخستاني - تينغ كازاخستاني - تينغ كازاخستاني - تينغ كازاخستاني - تينغ كازاخستاني - تينغ كازاخستاني + تينغ كازاخستاني + تينغ كازاخستاني + تينغ كازاخستاني + تينغ كازاخستاني + تينغ كازاخستاني + تينغ كازاخستاني KZT كيب لاوسي - كيب لاوسي - كيب لاوسي - كيب لاوسي - كيب لاوسي - كيب لاوسي - كيب لاوسي + كيب لاوسي + كيب لاوسي + كيب لاوسي + كيب لاوسي + كيب لاوسي + كيب لاوسي LAK - جنية لبناني - جنية لبناني - جنية لبناني - جنية لبناني - جنية لبناني - جنية لبناني - جنية لبناني + جنيه لبناني + جنيه لبناني + جنيه لبناني + جنيه لبناني + جنية لبناني + جنيه لبناني + جنيه لبناني ل.ل.‏ + روبية سريلانكية - روبية سريلانكية - روبية سريلانكية - روبية سريلانكية - روبية سريلانكية - روبية سريلانكية - روبية سريلانكية + روبية سريلانكية + روبية سريلانكية + روبية سريلانكية + روبية سريلانكية + روبية سريلانكية + روبية سريلانكية LKR + Rs دولار ليبيري - دولار ليبيري - دولار ليبيري - دولار ليبيري - دولار ليبيري - دولار ليبيري - دولار ليبيري + دولار ليبيري + دولار ليبيري + دولاران ليبيريان + دولارات ليبيرية + دولارًا ليبيريًا + دولار ليبيري LRD $ @@ -6501,22 +6721,22 @@ For terms of use, see http://www.unicode.org/copyright.html دينار ليبي - دينار ليبي - دينار ليبي - دينار ليبي - دينار ليبي - دينار ليبي - دينار ليبي + دينار ليبي + دينار ليبي + ديناران ليبيان + دينارات ليبية + دينارًا ليبيًا + دينار ليبي د.ل.‏ درهم مغربي - درهم مغربي - درهم مغربي - درهم مغربي - درهم مغربي - درهم مغربي - درهم مغربي + درهم مغربي + درهم مغربي + درهمان مغربيان + دراهم مغربية + درهمًا مغربيًا + درهم مغربي د.م.‏ @@ -6534,25 +6754,26 @@ For terms of use, see http://www.unicode.org/copyright.html أرياري مدغشقر - أرياري مدغشقر - أرياري مدغشقر - أرياري مدغشقر - أرياري مدغشقر - أرياري مدغشقر - أرياري مدغشقر + أرياري مدغشقر + أرياري مدغشقر + أرياري مدغشقر + أرياري مدغشقر + أرياري مدغشقر + أرياري مدغشقر MGA + Ar فرنك مدغشقر دينار مقدوني - دينار مقدوني - دينار مقدوني - دينار مقدوني - دينار مقدوني - دينار مقدوني - دينار مقدوني + دينار مقدوني + دينار مقدوني + ديناران مقدونيان + دينارات مقدونية + دينارًا مقدونيًا + دينار مقدوني MKD @@ -6560,43 +6781,44 @@ For terms of use, see http://www.unicode.org/copyright.html كيات ميانمار - كيات ميانمار - كيات ميانمار - كيات ميانمار - كيات ميانمار - كيات ميانمار - كيات ميانمار + كيات ميانمار + كيات ميانمار + كيات ميانمار + كيات ميانمار + كيات ميانمار + كيات ميانمار MMK + K توغروغ منغولي - توغروغ منغولي - توغروغ منغولي - توغروغ منغولي - توغروغ منغولي - توغروغ منغولي - توغروغ منغولي + توغروغ منغولي + توغروغ منغولي + توغروغ منغولي + توغروغ منغولي + توغروغ منغولي + توغروغ منغولي MNT باتاكا ماكاوي - باتاكا ماكاوي - باتاكا ماكاوي - باتاكا ماكاوي - باتاكا ماكاوي - باتاكا ماكاوي - باتاكا ماكاوي + باتاكا ماكاوي + باتاكا ماكاوي + باتاكا ماكاوي + باتاكا ماكاوي + باتاكا ماكاوي + باتاكا ماكاوي MOP أوقية موريتانية - أوقية موريتانية - أوقية موريتانية - أوقية موريتانية - أوقية موريتانية - أوقية موريتانية - أوقية موريتانية + أوقية موريتانية + أوقية موريتانية + أوقية موريتانية + أوقية موريتانية + أوقية موريتانية + أوقية موريتانية أ.م.‏ @@ -6619,32 +6841,33 @@ For terms of use, see http://www.unicode.org/copyright.html روبية موريشيوسية - روبي موريشي - روبي موريشي - روبي موريشي - روبي موريشي - روبي موريشي - روبي موريشي + روبية موريشيوسية + روبية موريشيوسية + روبية موريشيوسية + روبية موريشيوسية + روبية موريشيوسية + روبية موريشيوسية MUR + Rs روفيه جزر المالديف - روفيه جزر المالديف - روفيه جزر المالديف - روفيه جزر المالديف - روفيه جزر المالديف - روفيه جزر المالديف - روفيه جزر المالديف + روفيه جزر المالديف + روفيه جزر المالديف + روفيه جزر المالديف + روفيه جزر المالديف + روفيه جزر المالديف + روفيه جزر المالديف MVR كواشا مالاوي - كواشا مالاوي - كواشا مالاوي - كواشا مالاوي - كواشا مالاوي - كواشا مالاوي - كواشا مالاوي + كواشا مالاوي + كواشا مالاوي + كواشا مالاوي + كواشا مالاوي + كواشا مالاوي + كواشا مالاوي MWK @@ -6669,13 +6892,14 @@ For terms of use, see http://www.unicode.org/copyright.html رينغيت ماليزي - رينغيت ماليزي - رينغيت ماليزي - رينغيت ماليزي - رينغيت ماليزي - رينغيت ماليزي - رينغيت ماليزي + رينغيت ماليزي + رينغيت ماليزي + رينغيت ماليزي + رينغيت ماليزي + رينغيت ماليزي + رينغيت ماليزي MYR + RM اسكود موزمبيقي @@ -6692,23 +6916,23 @@ For terms of use, see http://www.unicode.org/copyright.html دولار ناميبي - دولار نامبيا - دولار نامبيا - دولار نامبيا - دولار نامبيا - دولار نامبيا - دولار نامبيا + دولار ناميبي + دولار ناميبي + دولار ناميبي + دولار ناميبي + دولار ناميبي + دولار ناميبي NAD $ نايرا نيجيري - نايرا نيجيري - نايرا نيجيري - نايرا نيجيري - نايرا نيجيري - نايرا نيجيري - نايرا نيجيري + نايرا نيجيري + نايرا نيجيري + نايرا نيجيري + نايرا نيجيري + نايرا نيجيري + نايرا نيجيري NGN @@ -6724,6 +6948,7 @@ For terms of use, see http://www.unicode.org/copyright.html قرطبة نيكاراغوا قرطبة نيكاراغوا NIO + C$ جلدر هولندي @@ -6736,43 +6961,45 @@ For terms of use, see http://www.unicode.org/copyright.html كرونة نرويجية - كرونة نرويجية - كرونة نرويجية - كرونة نرويجية - كرونة نرويجية - كرونة نرويجية - كرونة نرويجية + كرونة نرويجية + كرونة نرويجية + كرونة نرويجية + كرونة نرويجية + كرونة نرويجية + كرونة نرويجية NOK + kr روبية نيبالي - روبية نيبالي - روبية نيبالي - روبية نيبالي - روبية نيبالي - روبية نيبالي - روبية نيبالي + روبية نيبالي + روبية نيبالي + روبية نيبالي + روبية نيبالي + روبية نيبالي + روبية نيبالي NPR + Rs دولار نيوزيلندي - دولار نيوزيلندي - دولار نيوزيلندي - دولار نيوزيلندي - دولار نيوزيلندي - دولار نيوزيلندي - دولار نيوزيلندي + دولار نيوزيلندي + دولار نيوزيلندي + دولار نيوزيلندي + دولار نيوزيلندي + دولار نيوزيلندي + دولار نيوزيلندي NZ$ NZ$ ريال عماني - ريال عماني - ريال عماني - ريال عماني - ريال عماني - ريال عماني - ريال عماني + ريال عماني + ريال عماني + ريال عماني + ريالات عمانية + ريالاً عمانيًا + ريال عماني ر.ع.‏ @@ -6787,48 +7014,56 @@ For terms of use, see http://www.unicode.org/copyright.html سول جديد البيرو + سول جديد البيرو + سول جديد البيرو + سول جديد البيرو + سول جديد البيرو + سول جديد البيرو + سول جديد البيرو PEN كينا بابوا غينيا الجديدة - كينا بابوا غينيا الجديدة - كينا بابوا غينيا الجديدة - كينا بابوا غينيا الجديدة - كينا بابوا غينيا الجديدة - كينا بابوا غينيا الجديدة - كينا بابوا غينيا الجديدة + كينا بابوا غينيا الجديدة + كينا بابوا غينيا الجديدة + كينا بابوا غينيا الجديدة + كينا بابوا غينيا الجديدة + كينا بابوا غينيا الجديدة + كينا بابوا غينيا الجديدة PGK بيزو فلبيني - بيزو فلبيني - بيزو فلبيني - بيزو فلبيني - بيزو فلبيني - بيزو فلبيني - بيزو فلبيني + بيزو فلبيني + بيزو فلبيني + بيزو فلبيني + بيزو فلبيني + بيزو فلبيني + بيزو فلبيني PHP روبية باكستاني - روبية باكستاني - روبية باكستاني - روبية باكستاني - روبية باكستاني - روبية باكستاني - روبية باكستاني + روبية باكستاني + روبية باكستاني + روبية باكستاني + روبية باكستاني + روبية باكستاني + روبية باكستاني ر.ب. + Rs زلوتي بولندي - زلوتي بولندي - زلوتي بولندي - زلوتي بولندي - زلوتي بولندي - زلوتي بولندي - زلوتي بولندي + زلوتي بولندي + زلوتي بولندي + زلوتي بولندي + زلوتي بولندي + زلوتي بولندي + زلوتي بولندي PLN + زلوتي بولندي - 1950-1995 @@ -6844,23 +7079,23 @@ For terms of use, see http://www.unicode.org/copyright.html جواراني باراجواي - جواراني باراجواي - جواراني باراجواي - جواراني باراجواي - جواراني باراجواي - جواراني باراجواي - جواراني باراجواي + جواراني باراجواي + جواراني باراجواي + جواراني باراجواي + جواراني باراجواي + جواراني باراجواي + جواراني باراجواي PYG ريال قطري - ريال قطري - ريال قطري - ريال قطري - ريال قطري - ريال قطري - ريال قطري + ريال قطري + ريال قطري + ريال قطري + ريالات قطرية + ريالاً قطريًا + ريال قطري ر.ق.‏ @@ -6893,60 +7128,68 @@ For terms of use, see http://www.unicode.org/copyright.html دينار صربي + دينار صربي + دينار صربي + ديناران صربيان + دينارات صربية + دينارًا صربيًا + دينار صربي RSD روبل روسي - روبل روسي - روبل روسي - روبل روسي - روبل روسي - روبل روسي - روبل روسي + روبل روسي + روبل روسي + روبل روسي + روبل روسي + روبل روسي + روبل روسي RUB + روبل روسي - 1991-1998 فرنك رواندي - فرنك رواندي - فرنك رواندي - فرنك رواندي - فرنك رواندي - فرنك رواندي - فرنك رواندي + فرنك رواندي + فرنك رواندي + فرنك رواندي + فرنك رواندي + فرنك رواندي + فرنك رواندي RWF + RF ريال سعودي - ريال سعودي - ريال سعودي - ريال سعودي - ريال سعودي - ريال سعودي - ريال سعودي + ريال سعودي + ريال سعودي + ريال سعودي + ريالات سعودية + ريالاً سعوديًا + ريال سعودي ر.س.‏ دولار جزر سليمان - دولار جزر سليمان - دولار جزر سليمان - دولار جزر سليمان - دولار جزر سليمان - دولار جزر سليمان - دولار جزر سليمان + دولار جزر سليمان + دولار جزر سليمان + دولار جزر سليمان + دولار جزر سليمان + دولار جزر سليمان + دولار جزر سليمان SBD SB$ روبية سيشيلية - روبية سيشيلية - روبية سيشيلية - روبية سيشيلية - روبية سيشيلية - روبية سيشيلية - روبية سيشيلية + روبية سيشيلية + روبية سيشيلية + روبية سيشيلية + روبية سيشيلية + روبية سيشيلية + روبية سيشيلية SCR @@ -6964,8 +7207,8 @@ For terms of use, see http://www.unicode.org/copyright.html جنيه سوداني جنيه سوداني جنيه سوداني - جنيه سوداني - جنيه سوداني + جنيهات سودانية + جنيهًا سودانيًا جنيه سوداني ج.س. @@ -6980,34 +7223,36 @@ For terms of use, see http://www.unicode.org/copyright.html كرونة سويدية - كرونة سويدية - كرونة سويدية - كرونة سويدية - كرونة سويدية - كرونة سويدية - كرونة سويدية + كرونة سويدية + كرونة سويدية + كرونة سويدية + كرونة سويدية + كرونة سويدية + كرونة سويدية SEK + kr دولار سنغافوري - دولار سنغافوري - دولار سنغافوري - دولار سنغافوري - دولار سنغافوري - دولار سنغافوري - دولار سنغافوري + دولار سنغافوري + دولار سنغافوري + دولار سنغافوري + دولار سنغافوري + دولار سنغافوري + دولار سنغافوري SGD $ جنيه سانت هيلين - جنيه سانت هيلين - جنيه سانت هيلين - جنيه سانت هيلين - جنيه سانت هيلين - جنيه سانت هيلين - جنيه سانت هيلين + جنيه سانت هيلين + جنيه سانت هيلين + جنيه سانت هيلين + جنيه سانت هيلين + جنيه سانت هيلين + جنيه سانت هيلين SHP + £ تولار سلوفيني @@ -7023,32 +7268,32 @@ For terms of use, see http://www.unicode.org/copyright.html ليون سيراليوني - ليون سيراليوني - ليون سيراليوني - ليون سيراليوني - ليون سيراليوني - ليون سيراليوني - ليون سيراليوني + ليون سيراليوني + ليون سيراليوني + ليون سيراليوني + ليون سيراليوني + ليون سيراليوني + ليون سيراليوني SLL شلن صومالي - شلن صومالي - شلن صومالي - شلن صومالي - شلن صومالي - شلن صومالي - شلن صومالي + شلن صومالي + شلن صومالي + شلن صومالي + شلن صومالي + شلن صومالي + شلن صومالي SOS دولار سورينامي - دولار سورينامي - دولار سورينامي - دولار سورينامي - دولار سورينامي - دولار سورينامي - دولار سورينامي + دولار سورينامي + دولار سورينامي + دولار سورينامي + دولار سورينامي + دولار سورينامي + دولار سورينامي SRD SR$ @@ -7065,22 +7310,23 @@ For terms of use, see http://www.unicode.org/copyright.html جنيه جنوب السودان جنيه جنوب السودان جنيه جنوب السودان - جنيه جنوب السودان - جنيه جنوب السودان - جنيه جنوب السودان + جنيهان جنوب السودان + جنيهات جنوب السودان + جنيهًا جنوب السودان جنيه جنوب السودان ج.ج.س. ج.ج.س. دوبرا ساو تومي وبرينسيبي - دوبرا ساو تومي وبرينسيبي - دوبرا ساو تومي وبرينسيبي - دوبرا ساو تومي وبرينسيبي - دوبرا ساو تومي وبرينسيبي - دوبرا ساو تومي وبرينسيبي - دوبرا ساو تومي وبرينسيبي + دوبرا ساو تومي وبرينسيبي + دوبرا ساو تومي وبرينسيبي + دوبرا ساو تومي وبرينسيبي + دوبرا ساو تومي وبرينسيبي + دوبرا ساو تومي وبرينسيبي + دوبرا ساو تومي وبرينسيبي STD + Db روبل سوفيتي @@ -7096,45 +7342,47 @@ For terms of use, see http://www.unicode.org/copyright.html ليرة سورية - ليرة سورية - ليرة سورية - ليرة سورية - ليرة سورية - ليرة سورية - ليرة سورية + ليرة سورية + ليرة سورية + ليرة سورية + ليرات سورية + ليرة سورية + ليرة سورية ل.س.‏ + £ ليلانجيني سوازيلندي - ليلانجيني سوازيلندي - ليلانجيني سوازيلندي - ليلانجيني سوازيلندي - ليلانجيني سوازيلندي - ليلانجيني سوازيلندي - ليلانجيني سوازيلندي + ليلانجيني سوازيلندي + ليلانجيني سوازيلندي + ليلانجيني سوازيلندي + ليلانجيني سوازيلندي + ليلانجيني سوازيلندي + ليلانجيني سوازيلندي SZL باخت تايلاندي - باخت تايلاندي - باخت تايلاندي - باخت تايلاندي - باخت تايلاندي - باخت تايلاندي - باخت تايلاندي + باخت تايلاندي + باخت تايلاندي + باخت تايلاندي + باخت تايلاندي + باخت تايلاندي + باخت تايلاندي ฿ + ฿ روبل طاجيكستاني سوموني طاجيكستاني - سوموني طاجيكستاني - سوموني طاجيكستاني - سوموني طاجيكستاني - سوموني طاجيكستاني - سوموني طاجيكستاني - سوموني طاجيكستاني + سوموني طاجيكستاني + سوموني طاجيكستاني + سوموني طاجيكستاني + سوموني طاجيكستاني + سوموني طاجيكستاني + سوموني طاجيكستاني TJS @@ -7148,21 +7396,34 @@ For terms of use, see http://www.unicode.org/copyright.html مانات تركمانستان + مانات تركمانستان + مانات تركمانستان + مانات تركمانستان + مانات تركمانستان + مانات تركمانستان + مانات تركمانستان TMT - دينارتونسي - دينارتونسي - دينارتونسي - دينارتونسي - دينارتونسي - دينارتونسي - دينارتونسي + دينار تونسي + دينار تونسي + دينار تونسي + ديناران تونسيان + دينارات تونسية + دينارًا تونسيًا + دينار تونسي د.ت.‏ بانغا تونغا + بانغا تونغا + بانغا تونغا + بانغا تونغا + بانغا تونغا + بانغا تونغا + بانغا تونغا TOP + T$ اسكود تيموري @@ -7178,55 +7439,56 @@ For terms of use, see http://www.unicode.org/copyright.html ليرة تركية - ليرة تركية - ليرة تركية - ليرة تركية - ليرة تركية - ليرة تركية - ليرة تركية + ليرة تركية + ليرة تركية + ليرة تركية + ليرات تركية + ليرة تركية + ليرة تركية ل.ت. + TL دولار ترينداد وتوباجو - دولار ترينداد وتوباجو - دولار ترينداد وتوباجو - دولار ترينداد وتوباجو - دولار ترينداد وتوباجو - دولار ترينداد وتوباجو - دولار ترينداد وتوباجو + دولار ترينداد وتوباجو + دولار ترينداد وتوباجو + دولار ترينداد وتوباجو + دولار ترينداد وتوباجو + دولار ترينداد وتوباجو + دولار ترينداد وتوباجو TTD TT$ دولار تايواني - دولار تايواني - دولار تايواني - دولار تايواني - دولار تايواني - دولار تايواني - دولار تايواني + دولار تايواني + دولار تايواني + دولار تايواني + دولار تايواني + دولار تايواني + دولار تايواني NT$ NT$ شلن تنزاني - شلن تنزاني - شلن تنزاني - شلن تنزاني - شلن تنزاني - شلن تنزاني - شلن تنزاني + شلن تنزاني + شلن تنزاني + شلن تنزاني + شلن تنزاني + شلن تنزاني + شلن تنزاني TZS هريفنيا أوكراني - هريفنيا أوكراني - هريفنيا أوكراني - هريفنيا أوكراني - هريفنيا أوكراني - هريفنيا أوكراني - هريفنيا أوكراني + هريفنيا أوكراني + هريفنيا أوكراني + هريفنيا أوكراني + هريفنيا أوكراني + هريفنيا أوكراني + هريفنيا أوكراني UAH @@ -7235,12 +7497,12 @@ For terms of use, see http://www.unicode.org/copyright.html شلن أوغندي - شلن أوغندي - شلن أوغندي - شلن أوغندي - شلن أوغندي - شلن أوغندي - شلن أوغندي + شلن أوغندي + شلن أوغندي + شلن أوغندي + شلن أوغندي + شلن أوغندي + شلن أوغندي UGX @@ -7265,17 +7527,23 @@ For terms of use, see http://www.unicode.org/copyright.html بيزو اوروغواي + بيزو اوروغواي + بيزو اوروغواي + بيزو اوروغواي + بيزو اوروغواي + بيزو اوروغواي + بيزو اوروغواي UYU UY$ سوم أوزبكستاني - سوم أوزبكستاني - سوم أوزبكستاني - سوم أوزبكستاني - سوم أوزبكستاني - سوم أوزبكستاني - سوم أوزبكستاني + سوم أوزبكستاني + سوم أوزبكستاني + سوم أوزبكستاني + سوم أوزبكستاني + سوم أوزبكستاني + سوم أوزبكستاني UZS @@ -7283,35 +7551,54 @@ For terms of use, see http://www.unicode.org/copyright.html بوليفار فنزويلي + بوليفار فنزويلي + بوليفار فنزويلي + بوليفار فنزويلي + بوليفار فنزويلي + بوليفار فنزويلي + بوليفار فنزويلي VEF + Bs دونج فيتنامي - دونج فيتنامي - دونج فيتنامي - دونج فيتنامي - دونج فيتنامي - دونج فيتنامي - دونج فيتنامي + دونج فيتنامي + دونج فيتنامي + دونج فيتنامي + دونج فيتنامي + دونج فيتنامي + دونج فيتنامي فاتو فانواتو + فاتو فانواتو + فاتو فانواتو + فاتو فانواتو + فاتو فانواتو + فاتو فانواتو + فاتو فانواتو VUV تالا ساموا + تالا ساموا + تالا ساموا + تالا ساموا + تالا ساموا + تالا ساموا + تالا ساموا WST - فرنك أفريقي - فرنك أفريقي - فرنك أفريقي - فرنك أفريقي - فرنك أفريقي - فرنك أفريقي - فرنك أفريقي + فرنك وسط أفريقي + فرنك وسط أفريقي + فرنك وسط أفريقي + فرنك وسط أفريقي + فرنك وسط أفريقي + فرنك وسط أفريقي + فرنك وسط أفريقي FCFA @@ -7370,13 +7657,14 @@ For terms of use, see http://www.unicode.org/copyright.html دولار شرق الكاريبي - دولار شرق الكاريبي - دولار شرق الكاريبي - دولار شرق الكاريبي - دولار شرق الكاريبي - دولار شرق الكاريبي - دولار شرق الكاريبي + دولار شرق الكاريبي + دولار شرق الكاريبي + دولار شرق الكاريبي + دولار شرق الكاريبي + دولار شرق الكاريبي + دولار شرق الكاريبي EC$ + $ حقوق السحب الخاصة @@ -7409,14 +7697,26 @@ For terms of use, see http://www.unicode.org/copyright.html (UIC)فرنك فرنسي - فرنك سي إف إيه غرب إفريقيا + فرنك غرب أفريقي + فرنك غرب أفريقي + فرنك غرب أفريقي + فرنك غرب أفريقي + فرنك غرب أفريقي + فرنك غرب أفريقي + فرنك غرب أفريقي CFA بالاديوم - فرنك سي إف بي + فرنك سي إف بي + فرنك سي إف بي + فرنك سي إف بي + فرنك سي إف بي + فرنك سي إف بي + فرنك سي إف بي + فرنك سي إف بي CFPF @@ -7439,12 +7739,12 @@ For terms of use, see http://www.unicode.org/copyright.html عملة غير معروفة - عملة غير معروفة - عملة غير معروفة - عملة غير معروفة - عملة غير معروفة - عملة غير معروفة - عملة غير معروفة + (عملة غير معروفة) + (عملة غير معروفة) + (عملة غير معروفة) + (عملة غير معروفة) + (عملة غير معروفة) + (عملة غير معروفة) *** @@ -7452,12 +7752,12 @@ For terms of use, see http://www.unicode.org/copyright.html ريال يمني - ريال يمني - ريال يمني - ريال يمني - ريال يمني - ريال يمني - ريال يمني + ريال يمني + ريال يمني + ريال يمني + ريالات يمنية + ريالاً يمنيًا + ريال يمني ر.ي.‏ @@ -7471,13 +7771,14 @@ For terms of use, see http://www.unicode.org/copyright.html راند جنوب أفريقيا - راند جنوب أفريقيا - راند جنوب أفريقيا - راند جنوب أفريقيا - راند جنوب أفريقيا - راند جنوب أفريقيا - راند جنوب أفريقيا + راند جنوب أفريقيا + راند جنوب أفريقيا + راند جنوب أفريقيا + راند جنوب أفريقيا + راند جنوب أفريقيا + راند جنوب أفريقيا ZAR + R كواشا زامبي - 1968-2012 @@ -7490,13 +7791,14 @@ For terms of use, see http://www.unicode.org/copyright.html كواشا زامبي - كواشا زامبي - كواشا زامبي - كواشا زامبي - كواشا زامبي - كواشا زامبي - كواشا زامبي + كواشا زامبي + كواشا زامبي + كواشا زامبي + كواشا زامبي + كواشا زامبي + كواشا زامبي ZMW + ZK زائير زائيري جديد @@ -7530,321 +7832,356 @@ For terms of use, see http://www.unicode.org/copyright.html - +{0} - {0}–{1} + +{0} + {0}–{1} - {0} كل {1} + {0} لكل {1} - قوة تسارع - {0} قوة تسارع - {0} قوة تسارع - {0} قوة تسارع - {0} قوة تسارع - {0} قوة تسارع - {0} قوة تسارع + قوة تسارع + {0} قوة تسارع + {0} قوة تسارع + {0} قوة تسارع + {0} قوة تسارع + {0} قوة تسارع + {0} قوة تسارع - متر في الثانية المربعة - {0} متر في الثانية المربعة - {0} متر في الثانية المربعة - {0} متر في الثانية المربعة - {0} متر في الثانية المربعة - {0} متر في الثانية المربعة - {0} متر في الثانية المربعة + متر في الثانية المربعة + {0} متر في الثانية المربعة + {0} متر في الثانية المربعة + {0} متر في الثانية المربعة + {0} متر في الثانية المربعة + {0} متر في الثانية المربعة + {0} متر في الثانية المربعة - - دقيقة قوسية - {0} من الدقائق - {0} دقيقة - دقيقتان ({0}) - {0} دقائق - {0} دقيقة - {0} من الدقائق - - - ثانية قوسية - {0} من الثواني - {0} ثانية - ثانيتان ({0}) - {0} ثوانٍ - {0} ثانية - {0} من الثواني - - - درجة - {0} من الدرجات - {0} درجة - درجتان ({0}) - {0} درجات - {0} درجة - {0} من الدرجات + + دورة + {0} دورة + دورة ({0}) + دورتان ({0}) + {0} دورات + {0} دورة + {0} دورة - راديان - {0} راديان - {0} راديان - {0} راديان - {0} راديان - {0} راديان - {0} راديان + راديان + {0} راديان + {0} راديان + {0} راديان + {0} راديان + {0} راديان + {0} راديان - - فدان - {0} من الفدادين - {0} فدان - فدانان ({0}) - {0} فدادين - {0} فدانًا - {0} من الفدادين + + درجة + {0} درجة + {0} درجة + درجتان ({0}) + {0} درجات + {0} درجة + {0} درجة - - هكتار - {0} من الهكتارات - {0} هكتار - هكتاران ({0}) - {0} هكتارات - {0} هكتارًا - {0} من الهكتارات + + دقيقة قوسية + {0} دقيقة قوسية + {0} دقيقة قوسية + دقيقتان قوسيتان + {0} دقائق قوسية + {0} دقيقة قوسية + {0} دقيقة قوسية - - سنتيمتر مربع - {0} سنتيمتر مربع - {0} سنتيمتر مربع - {0} سنتيمتر مربع - {0} سنتيمتر مربع - {0} سنتيمتر مربع - {0} سنتيمتر مربع - - - قدم مربعة - {0} من الأقدام المربعة - {0} قدم مربعة - قدمان مربعان ({0}) - {0} أقدام مربعة - {0} قدمًا مربعًا - {0} من الأقدام المربعة - - - بوصة مربعة - {0} بوصة مربعة - {0} بوصة مربعة - {0} بوصة مربعة - {0} بوصة مربعة - {0} بوصة مربعة - {0} بوصة مربعة + + ثانية قوسية + {0} ثانية قوسية + {0} ثانية قوسية + ثانيتان قوسيتان + {0} ثوانٍ قوسية + {0} ثانية قوسية + {0} ثانية قوسية - كيلومتر مربع - {0} كيلومتر مربع - {0} كيلومتر مربع - {0} كيلومتر مربع - {0} كيلومتر مربع - {0} كيلومتر مربع - {0} كيلومتر مربع + كيلومتر مربع + {0} كيلومتر مربع + {0} كيلومتر مربع + {0} كيلومتر مربع + {0} كيلومتر مربع + {0} كيلومتر مربع + {0} كيلومتر مربع + + + هكتار + {0} هكتار + {0} هكتار + هكتاران + {0} هكتارات + {0} هكتار + {0} هكتار - متر مربع - {0} متر مربع - {0} متر مربع - {0} متر مربع - {0} متر مربع - {0} متر مربع - {0} متر مربع + متر مربع + {0} متر مربع + {0} متر مربع + {0} متر مربع + {0} متر مربع + {0} متر مربع + {0} متر مربع + {0} لكل متر مربع + + + سنتيمتر مربع + {0} سنتيمتر مربع + {0} سنتيمتر مربع + {0} سنتيمتر مربع + {0} سنتيمتر مربع + {0} سنتيمتر مربع + {0} سنتيمتر مربع + {0}/سنتيمتر مربع - ميل مربع - {0} ميل مربع - {0} ميل مربع - {0} ميل مربع - {0} ميل مربع - {0} ميل مربع - {0} ميل مربع + ميل مربع + {0} ميل مربع + {0} ميل مربع + {0} ميل مربع + {0} ميل مربع + {0} ميل مربع + {0} ميل مربع + + + فدان + {0} فدان + فدان + فدانان + {0} فدادين + {0} فدانًا + {0} فدان - ياردة مربعة - {0} ياردة مربعة - {0} ياردة مربعة - {0} ياردة مربعة - {0} ياردة مربعة - {0} ياردة مربعة - {0} ياردة مربعة + ياردة مربعة + {0} ياردة مربعة + {0} ياردة مربعة + {0} ياردة مربعة + {0} ياردة مربعة + {0} ياردة مربعة + {0} ياردة مربعة + + + قدم مربعة + {0} قدم مربعة + قدم مربعة + قدمان مربعان ({0}) + {0} أقدام مربعة + {0} قدمًا مربعًا + {0} قدم مربعة + + + بوصة مربعة + {0} بوصة مربعة + {0} بوصة مربعة + {0} بوصة مربعة + {0} بوصة مربعة + {0} بوصة مربعة + {0} بوصة مربعة + {0} لكل بوصة مربعة + + + قيراط + {0} قيراط + {0} قيراط + {0} قيراط + {0} قيراط + {0} قيراط + {0} قيراط - لتر لكل كيلومتر - {0} لتر لكل كيلومتر - {0} لتر لكل كيلومتر - {0} لتر لكل كيلومتر - {0} لتر لكل كيلومتر - {0} لتر لكل كيلومتر - {0} لتر لكل كيلومتر + لتر لكل كيلومتر + {0} لتر لكل كيلومتر + {0} لتر لكل كيلومتر + {0} لتر لكل كيلومتر + {0} لتر لكل كيلومتر + {0} لتر لكل كيلومتر + {0} لتر لكل كيلومتر + + + لتر لكل ١٠٠ كيلومتر + {0} لتر لكل ١٠٠ كيلومتر + {0} لتر لكل ١٠٠ كيلومتر + {0} لتر لكل ١٠٠ كيلومتر + {0} لتر لكل ١٠٠ كيلومتر + {0} لتر لكل ١٠٠ كيلومتر + {0} لتر لكل ١٠٠ كيلومتر - ميل لكل غالون - {0} ميل لكل غالون - {0} ميل لكل غالون - {0} ميل لكل غالون - {0} ميل لكل غالون - {0} ميل لكل غالون - {0} ميل لكل غالون - - - بت - {0} بت - {0} بت - {0} بت - {0} بت - {0} بت - {0} بت - - - بايت - {0} بايت - {0} بايت - {0} بايت - {0} بايت - {0} بايت - {0} بايت - - - غيغابت - {0} غيغابت - {0} غيغابت - {0} غيغابت - {0} غيغابت - {0} غيغابت - {0} غيغابت - - - غيغابايت - {0} غيغابايت - {0} غيغابايت - {0} غيغابايت - {0} غيغابايت - {0} غيغابايت - {0} غيغابايت - - - كيلوبت - {0} كيلوبت - {0} كيلوبت - {0} كيلوبت - {0} كيلوبت - {0} كيلوبت - {0} كيلوبت - - - كيلوبايت - {0} كيلوبايت - {0} كيلوبايت - {0} كيلوبايت - {0} كيلوبايت - {0} كيلوبايت - {0} كيلوبايت - - - ميغابت - {0} ميغابت - {0} ميغابت - {0} ميغابت - {0} ميغابت - {0} ميغابت - {0} ميغابت - - - ميغابايت - {0} ميغابايت - {0} ميغابايت - {0} ميغابايت - {0} ميغابايت - {0} ميغابايت - {0} ميغابايت - - - تيرابت - {0} تيرابت - {0} تيرابت - {0} تيرابت - {0} تيرابت - {0} تيرابت - {0} تيرابت + ميل لكل غالون + {0} ميل لكل غالون + {0} ميل لكل غالون + {0} ميل لكل غالون + {0} ميل لكل غالون + {0} ميل لكل غالون + {0} ميل لكل غالون - تيرابايت - {0} تيرابايت - {0} تيرابايت - {0} تيرابايت - {0} تيرابايت - {0} تيرابايت - {0} تيرابايت + تيرابايت + {0} تيرابايت + {0} تيرابايت + {0} تيرابايت + {0} تيرابايت + {0} تيرابايت + {0} تيرابايت - - يوم - {0} يوم - يوم - يومان - {0} أيام - {0} يومًا - {0} يوم + + تيرابت + {0} تيرابت + {0} تيرابت + {0} تيرابت + {0} تيرابت + {0} تيرابت + {0} تيرابت - - ساعة - {0} ساعة - ساعة - ساعتان - {0} ساعات - {0} ساعة - {0} ساعة - {0}/ساعة + + غيغابايت + {0} غيغابايت + {0} غيغابايت + {0} غيغابايت + {0} غيغابايت + {0} غيغابايت + {0} غيغابايت - - ميكروثانية - {0} ميكروثانية - {0} ميكروثانية - {0} ميكروثانية - {0} ميكروثانية - {0} ميكروثانية - {0} ميكروثانية + + غيغابت + {0} غيغابت + {0} غيغابت + {0} غيغابت + {0} غيغابت + {0} غيغابت + {0} غيغابت - - مللي ثانية - {0} مللي ثانية - {0} مللي ثانية - {0} مللي ثانية - {0} مللي ثانية - {0} مللي ثانية - {0} مللي ثانية + + ميغابايت + {0} ميغابايت + {0} ميغابايت + {0} ميغابايت + {0} ميغابايت + {0} ميغابايت + {0} ميغابايت - - دقيقة - {0} دقيقة - {0} دقيقة - دقيقتان - {0} دقائق - {0} دقيقة - {0} دقيقة + + ميغابت + {0} ميغابت + {0} ميغابت + {0} ميغابت + {0} ميغابت + {0} ميغابت + {0} ميغابت + + + كيلوبايت + {0} كيلوبايت + {0} كيلوبايت + {0} كيلوبايت + {0} كيلوبايت + {0} كيلوبايت + {0} كيلوبايت + + + كيلوبت + {0} كيلوبت + {0} كيلوبت + {0} كيلوبت + {0} كيلوبت + {0} كيلوبت + {0} كيلوبت + + + بايت + {0} بايت + {0} بايت + {0} بايت + {0} بايت + {0} بايت + {0} بايت + + + بت + {0} بت + {0} بت + {0} بت + {0} بت + {0} بت + {0} بت + + + قرون + {0} قرن + قرن ({0}) + قرنان ({0}) + {0} قرون + {0} قرنًا + {0} قرن + + + سنوات + {0} سنة + سنة + سنتان + {0} سنوات + {0} سنة + {0} سنة + {0} في السنة - شهر + شهور {0} شهر شهر شهران {0} أشهر {0} شهرًا {0} شهر + {0}/ش - - نانو ثانية - {0} نانو ثانية - {0} نانو ثانية - {0} نانو ثانية - {0} نانو ثانية - {0} نانو ثانية - {0} نانو ثانية + + أسابيع + {0} أسبوع + أسبوع + أسبوعان + {0} أسابيع + {0} أسبوعًا + {0} أسبوع + {0} كل أسبوع + + + أيام + {0} يوم + يوم + يومان + {0} أيام + {0} يومًا + {0} يوم + {0} كل يوم + + + ساعات + {0} ساعة + ساعة + ساعتان + {0} ساعات + {0} ساعة + {0} ساعة + {0} كل ساعة + + + دقيقة + {0} دقيقة + دقيقة + دقيقتان + {0} دقائق + {0} دقيقة + {0} دقيقة + {0} كل دقيقة ثانية @@ -7856,59 +8193,77 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ثانية {0}/ثانية - - أسبوع - {0} أسبوع - أسبوع - أسبوعان - {0} أسابيع - {0} أسبوعًا - {0} أسبوع + + مللي ثانية + {0} مللي ثانية + {0} مللي ثانية + {0} مللي ثانية + {0} مللي ثانية + {0} مللي ثانية + {0} مللي ثانية - - سنة - {0} سنة - سنة - سنتان - {0} سنوات - {0} سنة - {0} سنة + + ميكروثانية + {0} ميكروثانية + {0} ميكروثانية + {0} ميكروثانية + {0} ميكروثانية + {0} ميكروثانية + {0} ميكروثانية + + + نانو ثانية + {0} نانو ثانية + {0} نانو ثانية + {0} نانو ثانية + {0} نانو ثانية + {0} نانو ثانية + {0} نانو ثانية - أمبير - {0} أمبير - {0} أمبير - {0} أمبير - {0} أمبير - {0} أمبير - {0} أمبير + أمبير + {0} أمبير + {0} أمبير + {0} أمبير + {0} أمبير + {0} أمبير + {0} أمبير - مللي أمبير - {0} مللي أمبير - {0} مللي أمبير - {0} مللي أمبير - {0} مللي أمبير - {0} مللي أمبير - {0} مللي أمبير + مللي أمبير + {0} مللي أمبير + {0} مللي أمبير + {0} مللي أمبير + {0} مللي أمبير + {0} مللي أمبير + {0} مللي أمبير - أوم - {0} أوم - {0} أوم - {0} أوم - {0} أوم - {0} أوم - {0} أوم + أوم + {0} أوم + {0} أوم + {0} أوم + {0} أوم + {0} أوم + {0} أوم - فولت - {0} فولت - {0} فولت - {0} فولت - {0} فولت - {0} فولت - {0} فولت + فولت + {0} فولت + {0} فولت + {0} فولت + {0} فولت + {0} فولت + {0} فولت + + + كيلو كالوري + {0} كيلو كالوري + {0} كيلو كالوري + {0} كيلو كالوري + {0} كيلو كالوري + {0} كيلو كالوري + {0} كيلو كالوري كالوري @@ -7928,455 +8283,473 @@ For terms of use, see http://www.unicode.org/copyright.html {0} كالوري {0} كالوري - - جول - {0} جول - {0} جول - {0} جول - {0} جول - {0} جول - {0} جول - - - كيلو كالوري - {0} كيلو كالوري - {0} كيلو كالوري - {0} كيلو كالوري - {0} كيلو كالوري - {0} كيلو كالوري - {0} كيلو كالوري - - كيلو جول - {0} كيلو جول - {0} كيلو جول - {0} كيلو جول - {0} كيلو جول - {0} كيلو جول - {0} كيلو جول + كيلو جول + {0} كيلو جول + {0} كيلو جول + {0} كيلو جول + {0} كيلو جول + {0} كيلو جول + {0} كيلو جول + + + جول + {0} جول + {0} جول + {0} جول + {0} جول + {0} جول + {0} جول - كيلو واط/ساعة - {0} كيلو واط/ساعة - {0} كيلو واط/ساعة - {0} كيلو واط/ساعة - {0} كيلو واط/ساعة - {0} كيلو واط/ساعة - {0} كيلو واط/ساعة + كيلو واط/ساعة + {0} كيلو واط/ساعة + {0} كيلو واط/ساعة + {0} كيلو واط/ساعة + {0} كيلو واط/ساعة + {0} كيلو واط/ساعة + {0} كيلو واط/ساعة - غيغا هرتز - {0} غيغا هرتز - {0} غيغا هرتز - {0} غيغا هرتز - {0} غيغا هرتز - {0} غيغا هرتز - {0} غيغا هرتز - - - هرتز - {0} هرتز - {0} هرتز - {0} هرتز - {0} هرتز - {0} هرتز - {0} هرتز - - - كيلو هرتز - {0} كيلو هرتز - {0} كيلو هرتز - {0} كيلو هرتز - {0} كيلو هرتز - {0} كيلو هرتز - {0} كيلو هرتز + غيغا هرتز + {0} غيغا هرتز + {0} غيغا هرتز + {0} غيغا هرتز + {0} غيغا هرتز + {0} غيغا هرتز + {0} غيغا هرتز - ميغا هرتز - {0} ميغا هرتز - {0} ميغا هرتز - {0} ميغا هرتز - {0} ميغا هرتز - {0} ميغا هرتز - {0} ميغا هرتز + ميغا هرتز + {0} ميغا هرتز + {0} ميغا هرتز + {0} ميغا هرتز + {0} ميغا هرتز + {0} ميغا هرتز + {0} ميغا هرتز - - وحدة فلكية - {0} من الوحدات الفلكية - {0} وحدة فلكية - وحدتان فلكيتان - {0} وحدات فلكية - {0} وحدة فلكية - {0} من الوحدات الفلكية + + كيلو هرتز + {0} كيلو هرتز + {0} كيلو هرتز + {0} كيلو هرتز + {0} كيلو هرتز + {0} كيلو هرتز + {0} كيلو هرتز - - سنتيمتر - {0} سنتيمتر - {0} سنتيمتر - {0} سنتيمتر - {0} سنتيمتر - {0} سنتيمتر - {0} سنتيمتر - - - ديسيمتر - {0} ديسيمتر - {0} ديسيمتر - {0} ديسيمتر - {0} ديسيمتر - {0} ديسيمتر - {0} ديسيمتر - - - قدم - {0} من الأقدام - {0} قدم - قدمان ({0}) - {0} أقدام - {0} قدمًا - {0} من الأقدام - - - بوصة - {0} بوصة - {0} بوصة - {0} بوصة - {0} بوصة - {0} بوصة - {0} بوصة + + هرتز + {0} هرتز + {0} هرتز + {0} هرتز + {0} هرتز + {0} هرتز + {0} هرتز - كيلومتر - {0} كيلومتر - {0} كيلومتر - {0} كيلومتر - {0} كيلومتر - {0} كيلومتر - {0} كيلومتر - - - سنة ضوئية - {0} من السنوات الضوئية - {0} سنة ضوئية - سنتان ضوئيتان ({0}) - {0} سنوات ضوئية - {0} سنة ضوئية - {0} من السنوات الضوئية + كيلومتر + {0} كيلومتر + {0} كيلومتر + {0} كيلومتر + {0} كيلومتر + {0} كيلومتر + {0} كيلومتر + {0}/كيلومتر - متر - {0} من الأمتار - {0} متر - متران ({0}) - {0} أمتار - {0} مترًا - {0} من الأمتار + متر + {0} متر + متر + متران + {0} أمتار + {0} مترًا + {0} متر + {0} لكل متر - - ميكرومتر - {0} ميكرومتر - {0} ميكرومتر - {0} ميكرومتر - {0} ميكرومتر - {0} ميكرومتر - {0} ميكرومتر + + ديسيمتر + {0} ديسيمتر + {0} ديسيمتر + {0} ديسيمتر + {0} ديسيمتر + {0} ديسيمتر + {0} ديسيمتر - - ميل - {0} من الأميال - {0} ميل - ميلان ({0}) - {0} أميال - {0} ميلاً - {0} من الأميال + + سنتيمتر + {0} سنتيمتر + {0} سنتيمتر + {0} سنتيمتر + {0} سنتيمتر + {0} سنتيمتر + {0} سنتيمتر + {0}/سنتيمتر - ملليمتر - {0} ملليمتر - {0} ملليمتر - {0} ملليمتر - {0} ملليمتر - {0} ملليمتر - {0} ملليمتر + ملليمتر + {0} ملليمتر + {0} ملليمتر + {0} ملليمتر + {0} ملليمتر + {0} ملليمتر + {0} ملليمتر + + + ميكرومتر + {0} ميكرومتر + {0} ميكرومتر + {0} ميكرومتر + {0} ميكرومتر + {0} ميكرومتر + {0} ميكرومتر - نانو متر - {0} نانو متر - {0} نانو متر - {0} نانو متر - {0} نانو متر - {0} نانو متر - {0} نانو متر - - - ميل بحري - {0} من الأميال البحرية - {0} ميل بحري - ميلان بحريان - {0} أميال بحرية - {0} ميلاً بحريًا - {0} من الأميال البحرية - - - فرسخ فلكي - {0} من الفراسخ الفلكية - {0} فرسخ فلكي - فرسخان فلكيان - {0} فراسخ فلكية - {0} فرسخًا فلكيًا - {0} من الفراسخ الفلكية + نانو متر + {0} نانو متر + {0} نانو متر + {0} نانو متر + {0} نانو متر + {0} نانو متر + {0} نانو متر - بيكومتر - {0} بيكومتر - {0} بيكومتر - {0} بيكومتر - {0} بيكومتر - {0} بيكومتر - {0} بيكومتر + بيكومتر + {0} بيكومتر + {0} بيكومتر + {0} بيكومتر + {0} بيكومتر + {0} بيكومتر + {0} بيكومتر + + + ميل + {0} ميل + ميل + ميلان + {0} أميال + {0} ميلاً + {0} ميل - ياردة - {0} من الياردات - {0} ياردة - ياردتان ({0}) - {0} ياردات - {0} ياردة - {0} من الياردات + ياردة + ياردة + ياردة + ياردتان + {0} ياردات + {0} ياردة + {0} ياردة + + + قدم + {0} قدم + قدم + قدمان + {0} أقدام + {0} قدمًا + {0} قدم + {0} لكل قدم + + + بوصة + {0} بوصة + {0} بوصة + {0} بوصة + {0} بوصة + {0} بوصة + {0} بوصة + {0}/بوصة + + + فرسخ فلكي + {0} فرسخ فلكي + فرسخ فلكي + فرسخان فلكيان + {0} فراسخ فلكية + {0} فرسخًا فلكيًا + {0} فرسخ فلكي + + + سنة ضوئية + {0} سنة ضوئية + سنة ضوئية + سنتان ضوئيتان + {0} سنوات ضوئية + {0} سنة ضوئية + {0} سنة ضوئية + + + وحدة فلكية + {0} وحدة فلكية + وحدة فلكية + وحدتان فلكيتان + {0} وحدات فلكية + {0} وحدة فلكية + {0} من الوحدات الفلكية + + + ميل بحري + {0} ميل بحري + ميل بحري + ميلان بحريان + {0} أميال بحرية + {0} ميلاً بحريًا + {0} ميل بحري + + + ميل اسكندنافي + {0} ميل اسكندنافي + {0} ميل اسكندنافي + {0} ميل اسكندنافي + {0} ميل اسكندنافي + {0} ميل اسكندنافي + {0} ميل اسكندنافي - لكس - {0} لكس - {0} لكس - {0} لكس - {0} لكس - {0} لكس - {0} لكس + لكس + {0} لكس + {0} لكس + {0} لكس + {0} لكس + {0} لكس + {0} لكس + + + طن متري + {0} طن متري + {0} طن متري + {0} طن متري + {0} طن متري + {0} طن متري + {0} طن متري + + + كيلوغرام + {0} كيلوغرام + {0} كيلوغرام + {0} كيلوغرام + {0} كيلوغرام + {0} كيلوغرام + {0} كيلوغرام + {0}/كيلوغرام + + + غرام + {0} غرام + غرام ({0}) + غرامان ({0}) + {0} غرامات + {0} غرامًا + {0} غرام + {0}/غرام + + + ملليغرام + {0} ملليغرام + {0} ملليغرام + {0} ملليغرام + {0} ملليغرام + {0} ملليغرام + {0} ملليغرام + + + ميكروغرام + {0} ميكروغرام + {0} ميكروغرام + {0} ميكروغرام + {0} ميكروغرام + {0} ميكروغرام + {0} ميكروغرام + + + طن + {0} طن + {0} طن + {0} طن + {0} طن + {0} طن + {0} طن + + + رطل + {0} رطل + {0} رطل + {0} رطل + {0} رطل + {0} رطل + {0} رطل + {0}/رطل + + + أونصة + أونصة + {0} أونصة + أونصتان + {0} أونصات + {0} أونصة + {0} أونصة + {0}/أونصة + + + أونصة ترويسية + {0} أونصة ترويسية + {0} أونصة ترويسية + أونصتان ترويسيتان + {0} أونصات ترويسية + {0} أونصة ترويسية + {0} أونصة ترويسية قيراط {0} قيراط {0} قيراط - {0} قيراط - {0} قيراط + قيراطان + {0} قراريط {0} قيراط {0} قيراط - - غرام - {0} من الغرامات - {0} غرام - غرامان ({0}) - {0} غرامات - {0} غرامًا - {0} من الغرامات - - - كيلوغرام - {0} كيلوغرام - {0} كيلوغرام - {0} كيلوغرام - {0} كيلوغرام - {0} كيلوغرام - {0} كيلوغرام - - - طن متري - {0} طن متري - {0} طن متري - {0} طن متري - {0} طن متري - {0} طن متري - {0} طن متري - - - ميكروغرام - {0} ميكروغرام - {0} ميكروغرام - {0} ميكروغرام - {0} ميكروغرام - {0} ميكروغرام - {0} ميكروغرام - - - ملليغرام - {0} ملليغرام - {0} ملليغرام - {0} ملليغرام - {0} ملليغرام - {0} ملليغرام - {0} ملليغرام - - - أونصة - {0} أونس - {0} أونس - {0} أونس - {0} أونس - {0} أونس - {0} أونس - - - أونصة ترويسية - {0} من الأونصات الترويسية - {0} أونصة ترويسية - أونصتان ترويسيتان - {0} أونصات ترويسية - {0} أونصة ترويسية - {0} من الأونصات الترويسية - - - رطل - {0} رطل - {0} رطل - {0} رطل - {0} رطل - {0} رطل - {0} رطل - - - طن - {0} طن - {0} طن - {0} طن - {0} طن - {0} طن - {0} طن - - غيغا واط - {0} غيغا واط - {0} غيغا واط - {0} غيغا واط - {0} غيغا واط - {0} غيغا واط - {0} غيغا واط - - - قوة حصان - {0} قوة حصان - {0} قوة حصان - {0} قوة حصان - {0} قوة حصان - {0} قوة حصان - {0} قوة حصان - - - كيلوواط - {0} كيلوواط - {0} كيلوواط - {0} كيلوواط - {0} كيلوواط - {0} كيلوواط - {0} كيلوواط + غيغا واط + {0} غيغا واط + {0} غيغا واط + {0} غيغا واط + {0} غيغا واط + {0} غيغا واط + {0} غيغا واط - ميغا واط - {0} ميغا واط - {0} ميغا واط - {0} ميغا واط - {0} ميغا واط - {0} ميغا واط - {0} ميغا واط + ميغا واط + {0} ميغا واط + {0} ميغا واط + {0} ميغا واط + {0} ميغا واط + {0} ميغا واط + {0} ميغا واط - - مللي واط - {0} مللي واط - {0} مللي واط - {0} مللي واط - {0} مللي واط - {0} مللي واط - {0} مللي واط + + كيلوواط + {0} كيلوواط + {0} كيلوواط + {0} كيلوواط + {0} كيلوواط + {0} كيلوواط + {0} كيلوواط - واط - {0} واط - {0} واط - {0} واط - {0} واط - {0} واط - {0} واط + واط + {0} واط + {0} واط + {0} واط + {0} واط + {0} واط + {0} واط + + + مللي واط + {0} مللي واط + {0} مللي واط + {0} مللي واط + {0} مللي واط + {0} مللي واط + {0} مللي واط + + + قوة حصان + {0} قوة حصان + {0} قوة حصان + {0} قوة حصان + {0} قوة حصان + {0} قوة حصان + {0} قوة حصان - هكتوباسكال - {0} هكتوباسكال - {0} هكتوباسكال - {0} هكتوباسكال - {0} هكتوباسكال - {0} هكتوباسكال - {0} هكتوباسكال - - - بوصة زئبقية - {0} بوصة زئبقية - {0} بوصة زئبقية - {0} بوصة زئبقية - {0} بوصة زئبقية - {0} بوصة زئبقية - {0} بوصة زئبقية - - - مللي بار - {0} مللي بار - {0} مللي بار - {0} مللي بار - {0} مللي بار - {0} مللي بار - {0} مللي بار + هكتوباسكال + {0} هكتوباسكال + {0} هكتوباسكال + {0} هكتوباسكال + {0} هكتوباسكال + {0} هكتوباسكال + {0} هكتوباسكال - ملليمتر زئبقي - {0} ملليمتر زئبقي - {0} ملليمتر زئبقي - {0} ملليمتر زئبقي - {0} ملليمتر زئبقي - {0} ملليمتر زئبقي - {0} ملليمتر زئبقي + ملليمتر زئبقي + {0} ملليمتر زئبقي + {0} ملليمتر زئبقي + {0} ملليمتر زئبقي + {0} ملليمتر زئبقي + {0} ملليمتر زئبقي + {0} ملليمتر زئبقي - رطل لكل بوصة مربعة - {0} رطل لكل بوصة مربعة - {0} رطل لكل بوصة مربعة - {0} رطل لكل بوصة مربعة - {0} رطل لكل بوصة مربعة - {0} رطل لكل بوصة مربعة - {0} رطل لكل بوصة مربعة + رطل لكل بوصة مربعة + {0} رطل لكل بوصة مربعة + {0} رطل لكل بوصة مربعة + {0} رطل لكل بوصة مربعة + {0} رطل لكل بوصة مربعة + {0} رطل لكل بوصة مربعة + {0} رطل لكل بوصة مربعة - - قيراط - {0} قيراط - {0} قيراط - {0} قيراط - {0} قيراط - {0} قيراط - {0} قيراط + + بوصة زئبقية + {0} بوصة زئبقية + {0} بوصة زئبقية + {0} بوصة زئبقية + {0} بوصة زئبقية + {0} بوصة زئبقية + {0} بوصة زئبقية + + + مللي بار + {0} مللي بار + {0} مللي بار + {0} مللي بار + {0} مللي بار + {0} مللي بار + {0} مللي بار - كيلومتر في الساعة - {0} كيلومتر في الساعة - {0} كيلومتر في الساعة - {0} كيلومتر في الساعة - {0} كيلومتر في الساعة - {0} كيلومتر في الساعة - {0} كيلومتر في الساعة + كيلومتر في الساعة + {0} كيلومتر في الساعة + {0} كيلومتر في الساعة + {0} كيلومتر في الساعة + {0} كيلومتر في الساعة + {0} كيلومتر في الساعة + {0} كيلومتر في الساعة - متر في الثانية - {0} متر في الثانية - {0} متر في الثانية - {0} متر في الثانية - {0} متر في الثانية - {0} متر في الثانية - {0} متر في الثانية + متر في الثانية + {0} متر في الثانية + {0} متر في الثانية + {0} متر في الثانية + {0} متر في الثانية + {0} متر في الثانية + {0} متر في الثانية - ميل في الساعة - {0} ميل في الساعة - {0} ميل في الساعة - {0} ميل في الساعة - {0} ميل في الساعة - {0} ميل في الساعة - {0} ميل في الساعة + ميل في الساعة + {0} ميل في الساعة + {0} ميل في الساعة + {0} ميل في الساعة + {0} ميل في الساعة + {0} ميل في الساعة + {0} ميل في الساعة + + + عقدة + {0} عقدة + {0} عقدة + {0} عقدة + {0} عقدة + {0} عقدة + {0} عقدة + + + ° + {0}° + {0}° + {0}° + {0}° + {0}° + {0}° درجة مئوية @@ -8405,451 +8778,549 @@ For terms of use, see http://www.unicode.org/copyright.html {0} درجة كلفن {0} درجة كلفن - - فدان قدم - {0} فدان قدم - {0} فدان قدم - {0} فدان قدم - {0} فدان قدم - {0} فدان قدم - {0} فدان قدم - - - سنتيلتر - {0} سنتيلتر - {0} سنتيلتر - {0} سنتيلتر - {0} سنتيلتر - {0} سنتيلتر - {0} سنتيلتر - - - سنتيمتر مكعب - {0} سنتيمتر مكعب - {0} سنتيمتر مكعب - {0} سنتيمتر مكعب - {0} سنتيمتر مكعب - {0} سنتيمتر مكعب - {0} سنتيمتر مكعب - - - قدم مكعبة - {0} من الأقدام المكعبة - {0} قدم مكعبة - قدمان مكعبان - {0} أقدام مكعبة - {0} قدمًا مكعبًا - {0} من الأقدام المكعبة - - - بوصة مكعبة - {0} بوصة مكعبة - {0} بوصة مكعبة - {0} بوصة مكعبة - {0} بوصة مكعبة - {0} بوصة مكعبة - {0} بوصة مكعبة - - كيلومتر مكعب - {0} كيلومتر مكعب - {0} كيلومتر مكعب - {0} كيلومتر مكعب - {0} كيلومتر مكعب - {0} كيلومتر مكعب - {0} كيلومتر مكعب + كيلومتر مكعب + {0} كيلومتر مكعب + {0} كيلومتر مكعب + {0} كيلومتر مكعب + {0} كيلومتر مكعب + {0} كيلومتر مكعب + {0} كيلومتر مكعب - متر مكعب - {0} متر مكعب - {0} متر مكعب - {0} متر مكعب - {0} متر مكعب - {0} متر مكعب - {0} متر مكعب + متر مكعب + {0} متر مكعب + {0} متر مكعب + {0} متر مكعب + {0} متر مكعب + {0} متر مكعب + {0} متر مكعب + {0}/m³ + + + سنتيمتر مكعب + {0} سنتيمتر مكعب + {0} سنتيمتر مكعب + {0} سنتيمتر مكعب + {0} سنتيمتر مكعب + {0} سنتيمتر مكعب + {0} سنتيمتر مكعب + {0}/سنتيمتر مكعب - ميل مكعب - {0} ميل مكعب - {0} ميل مكعب - {0} ميل مكعب - {0} ميل مكعب - {0} ميل مكعب - {0} ميل مكعب + ميل مكعب + {0} ميل مكعب + {0} ميل مكعب + {0} ميل مكعب + {0} ميل مكعب + {0} ميل مكعب + {0} ميل مكعب - ياردة مكعبة - {0} ياردة مكعبة - {0} ياردة مكعبة - {0} ياردة مكعبة - {0} ياردة مكعبة - {0} ياردة مكعبة - {0} ياردة مكعبة + ياردة مكعبة + {0} ياردة مكعبة + {0} ياردة مكعبة + {0} ياردة مكعبة + {0} ياردة مكعبة + {0} ياردة مكعبة + {0} ياردة مكعبة - - كوب - {0} من الأكواب - {0} كوب - كوبان - {0} أكواب - {0} كوبًا - {0} من الأكواب + + قدم مكعبة + {0} قدم مكعبة + قدم مكعبة + قدمان مكعبان + {0} أقدام مكعبة + {0} قدمًا مكعبًا + {0} قدم مكعبة - - ديسيلتر - {0} ديسيلتر - {0} ديسيلتر - {0} ديسيلتر - {0} ديسيلتر - {0} ديسيلتر - {0} ديسيلتر - - - أونصة سائلة - {0} من الأونصات السائلة - {0} أونصة سائلة - أونصتان سائلتان - {0} أونصات سائلة - {0} أونصة سائلة - {0} من الأونصات السائلة - - - غالون - {0} من الغالونات - {0} غالون - غالونان - {0} غالونات - {0} غالونًا - {0} من الغالونات - - - هكتولتر - {0} هكتولتر - {0} هكتولتر - {0} هكتولتر - {0} هكتولتر - {0} هكتولتر - {0} هكتولتر - - - لتر - {0} من اللترات - {0} لتر - لتران ({0}) - {0} لترات - {0} لترًا - {0} من اللترات + + بوصة مكعبة + {0} بوصة مكعبة + {0} بوصة مكعبة + {0} بوصة مكعبة + {0} بوصة مكعبة + {0} بوصة مكعبة + {0} بوصة مكعبة - ميغالتر - {0} ميغالتر - {0} ميغالتر - {0} ميغالتر - {0} ميغالتر - {0} ميغالتر - {0} ميغالتر + ميغالتر + {0} ميغالتر + {0} ميغالتر + {0} ميغالتر + {0} ميغالتر + {0} ميغالتر + {0} ميغالتر + + + هكتولتر + {0} هكتولتر + {0} هكتولتر + {0} هكتولتر + {0} هكتولتر + {0} هكتولتر + {0} هكتولتر + + + لتر + {0} لتر + لتر + لتران + {0} لترات + {0} لترًا + {0} لتر + {0} لكل لتر + + + ديسيلتر + {0} ديسيلتر + {0} ديسيلتر + {0} ديسيلتر + {0} ديسيلتر + {0} ديسيلتر + {0} ديسيلتر + + + سنتيلتر + {0} سنتيلتر + {0} سنتيلتر + {0} سنتيلتر + {0} سنتيلتر + {0} سنتيلتر + {0} سنتيلتر - ملليلتر - {0} ملليلتر - {0} ملليلتر - {0} ملليلتر - {0} ملليلتر - {0} ملليلتر - {0} ملليلتر + ملليلتر + {0} ملليلتر + {0} ملليلتر + {0} ملليلتر + {0} ملليلتر + {0} ملليلتر + {0} ملليلتر - - باينت - {0} باينت - {0} باينت - {0} باينت - {0} باينت - {0} باينت - {0} باينت + + مكيال متري + {0} مكيال متري + {0} مكيال متري + {0} مكيال متري + {0} مكيال متري + {0} مكيال متري + {0} مكيال متري + + + كوب متري + {0} كوب متري + {0} كوب متري + {0} كوب متري + {0} كوب متري + {0} كوب متري + {0} كوب متري + + + فدان قدم + {0} فدان قدم + {0} فدان قدم + {0} فدان قدم + {0} فدان قدم + {0} فدان قدم + {0} فدان قدم + + + غالون + {0} غالون + غالون + غالونان + {0} غالونات + {0} غالونًا + {0} غالون + {0} لكل غالون - ربع غالون - {0} من أرباع الغالون - {0} ربع غالون - نصف غالون - {0} أرباع غالون - {0} ربع غالون - {0} من أرباع الغالون + ربع غالون + {0} ربع غالون + ربع غالون + نصف غالون + {0} أرباع غالون + {0} ربع غالون + {0} ربع غالون + + + مكيال + {0} مكيال + مكيال + مكيالان + {0} مكاييل + {0} مكيالاً + {0} مكيال + + + كوب + {0} كوب + كوب + كوبان + {0} أكواب + {0} كوبًا + {0} كوب + + + أونصة سائلة + {0} أونصة سائلة + أونصة سائلة + أونصتان سائلتان + {0} أونصات سائلة + {0} أونصة سائلة + {0} أونصة سائلة - ملعقة المائدة - {0} من ملاعق المائدة - {0} ملعقة مائدة - ملعقتا مائدة - {0} ملاعق مائدة - {0} ملعقة مائدة - {0} من ملاعق المائدة + ملعقة المائدة + {0} ملعقة مائدة + ملعقة مائدة + ملعقتا مائدة + {0} ملاعق مائدة + {0} ملعقة مائدة + {0} ملعقة مائدة - ملعقة شاي - {0} من ملاعق الشاي - {0} ملعقة شاي - ملعقتا شاي - {0} ملاعق شاي - {0} ملعقة شاي - {0} من ملاعق الشاي + ملعقة شاي + {0} ملعقة شاي + ملعقة شاي + ملعقتا شاي + {0} ملاعق شاي + {0} ملعقة شاي + {0} ملعقة شاي + + {0} شرقًا + {0} شمالاً + {0} جنوبًا + {0} غربًا + - {0}/{1} + {0}/{1} - قوة تسارع - {0} قوة تسارع - {0} قوة تسارع - {0} قوة تسارع - {0} قوة تسارع - {0} قوة تسارع - {0} قوة تسارع + قوة تسارع + {0} قوة تسارع + {0} قوة تسارع + {0} قوة تسارع + {0} قوة تسارع + {0} قوة تسارع + {0} قوة تسارع - م/ث² - {0} م/ث² - {0} م/ث² - {0} م/ث² - {0} م/ث² - {0} م/ث² - {0} م/ث² + م/ث² + {0} م/ث² + {0} م/ث² + {0} م/ث² + {0} م/ث² + {0} م/ث² + {0} م/ث² - - دقيقة قوسية - {0} من الدقائق - {0} دقيقة - دقيقتان ({0}) - {0} دقائق - {0} دقيقة - {0} من الدقائق - - - ثانية قوسية - {0} من الثواني - {0} ثانية - ثانيتان ({0}) - {0} ثوانٍ - {0} ثانية - {0} من الثواني - - - درجة - {0} من الدرجات - {0} درجة - درجتان ({0}) - {0} درجات - {0} درجة - {0} من الدرجات + + دورة + {0} دورة + دورة ({0}) + دورتان ({0}) + {0} دورات + {0} دورة + {0} دورة - راديان - {0} راديان - {0} راديان - {0} راديان - {0} راديان - {0} راديان - {0} راديان + راديان + {0} راديان + {0} راديان + {0} راديان + {0} راديان + {0} راديان + {0} راديان - - فدان - {0} من الفدادين - {0} فدان - فدانان ({0}) - {0} فدادين - {0} فدانًا - {0} من الفدادين + + درجة + {0} درجة + {0} درجة + درجتان ({0}) + {0} درجات + {0} درجة + {0} درجة - - هكتار - {0} من الهكتارات - {0} هكتار - هكتاران ({0}) - {0} هكتارات - {0} هكتارًا - {0} من الهكتارات + + دقيقة قوسية + {0} دقيقة قوسية + {0} دقيقة قوسية + دقيقتان قوسيتان + {0} دقائق قوسية + {0} دقيقة قوسية + {0} دقيقة قوسية - - سم ² - {0} سم ² - {0} سم ² - {0} سم ² - {0} سم ² - {0} سم ² - {0} سم ² - - - قدم مربعة - {0} من الأقدام المربعة - {0} قدم مربعة - قدمان مربعان ({0}) - {0} أقدام مربعة - {0} قدمًا مربعًا - {0} من الأقدام المربعة - - - بوصة مربعة - {0} بوصة مربعة - {0} بوصة مربعة - {0} بوصة مربعة - {0} بوصة مربعة - {0} بوصة مربعة - {0} بوصة مربعة + + ثانية قوسية + {0} ثانية قوسية + {0} ثانية قوسية + ثانيتان قوسيتان + {0} ثوانٍ قوسية + {0} ثانية قوسية + {0} ثانية قوسية - كم² - {0} كم² - {0} كم² - {0} كم² - {0} كم² - {0} كم² - {0} كم² + كم² + {0} كم² + {0} كم² + {0} كم² + {0} كم² + {0} كم² + {0} كم² + + + هكتار + {0} هكتار + {0} هكتار + هكتاران + {0} هكتارات + {0} هكتار + {0} هكتار - م² - {0} م² - {0} م² - {0} م² - {0} م² - {0} م² - {0} م² + م² + {0} م² + {0} م² + {0} م² + {0} م² + {0} م² + {0} م² + {0}/م² + + + سم ² + {0} سم² + {0} سم² + {0} سم² + {0} سم² + {0} سم² + {0} سم² + {0}/سم² - ميل مربع - {0} ميل مربع - {0} ميل مربع - {0} ميل مربع - {0} ميل مربع - {0} ميل مربع - {0} ميل مربع + ميل مربع + {0} ميل مربع + {0} ميل مربع + {0} ميل مربع + {0} ميل مربع + {0} ميل مربع + {0} ميل مربع + + + فدان + {0} فدان + فدان + فدانان + {0} فدادين + {0} فدانًا + {0} فدان - ياردة مربعة - {0} ياردة مربعة - {0} ياردة مربعة - {0} ياردة مربعة - {0} ياردة مربعة - {0} ياردة مربعة - {0} ياردة مربعة + ياردة مربعة + {0} ياردة مربعة + {0} ياردة مربعة + {0} ياردة مربعة + {0} ياردة مربعة + {0} ياردة مربعة + {0} ياردة مربعة + + + قدم مربعة + {0} قدم مربعة + قدم مربعة + قدمان مربعان + {0} أقدام مربعة + {0} قدمًا مربعًا + {0} قدم مربعة + + + بوصة مربعة + {0} بوصة مربعة + {0} بوصة مربعة + {0} بوصة مربعة + {0} بوصة مربعة + {0} بوصة مربعة + {0} بوصة مربعة + {0}/بوصة مربعة + + + قيراط + {0} قيراط + {0} قيراط + {0} قيراط + {0} قيراط + {0} قيراط + {0} قيراط - لتر/كم - {0} لتر/كم - {0} لتر/كم - {0} لتر/كم - {0} لتر/كم - {0} لتر/كم - {0} لتر/كم + لتر/كم + {0} لتر/كم + {0} لتر/كم + {0} لتر/كم + {0} لتر/كم + {0} لتر/كم + {0} لتر/كم + + + لتر/‏١٠٠ كم + {0} لتر/١٠٠ كم + {0} لتر/١٠٠ كم + {0} لتر/١٠٠ كم + {0} لتر/١٠٠ كم + {0} لتر/١٠٠ كم + {0} لتر/١٠٠ كم - ميل/غالون - {0} ميل/غالون - {0} ميل/غالون - {0} ميل/غالون - {0} ميل/غالون - {0} ميل/غالون - {0} ميل/غالون - - - بت - {0} بت - {0} بت - {0} بت - {0} بت - {0} بت - {0} بت - - - بايت - {0} بايت - {0} بايت - {0} بايت - {0} بايت - {0} بايت - {0} بايت - - - غيغابت - {0} غيغابت - {0} غيغابت - {0} غيغابت - {0} غيغابت - {0} غيغابت - {0} غيغابت - - - غيغابايت - {0} غيغابايت - {0} غيغابايت - {0} غيغابايت - {0} غيغابايت - {0} غيغابايت - {0} غيغابايت - - - كيلوبت - {0} كيلوبت - {0} كيلوبت - {0} كيلوبت - {0} كيلوبت - {0} كيلوبت - {0} كيلوبت - - - كيلوبايت - {0} كيلوبايت - {0} كيلوبايت - {0} كيلوبايت - {0} كيلوبايت - {0} كيلوبايت - {0} كيلوبايت - - - ميغابت - {0} ميغابت - {0} ميغابت - {0} ميغابت - {0} ميغابت - {0} ميغابت - {0} ميغابت - - - ميغابايت - {0} ميغابايت - {0} ميغابايت - {0} ميغابايت - {0} ميغابايت - {0} ميغابايت - {0} ميغابايت - - - تيرابت - {0} تيرابت - {0} تيرابت - {0} تيرابت - {0} تيرابت - {0} تيرابت - {0} تيرابت + ميل/غالون + {0} ميل/غالون + {0} ميل/غالون + {0} ميل/غالون + {0} ميل/غالون + {0} ميل/غالون + {0} ميل/غالون - تيرابايت - {0} تيرابايت - {0} تيرابايت - {0} تيرابايت - {0} تيرابايت - {0} تيرابايت - {0} تيرابايت + تيرابايت + {0} تيرابايت + {0} تيرابايت + {0} تيرابايت + {0} تيرابايت + {0} تيرابايت + {0} تيرابايت + + + تيرابت + {0} تيرابت + {0} تيرابت + {0} تيرابت + {0} تيرابت + {0} تيرابت + {0} تيرابت + + + غيغابايت + {0} غيغابايت + {0} غيغابايت + {0} غيغابايت + {0} غيغابايت + {0} غيغابايت + {0} غيغابايت + + + غيغابت + {0} غيغابت + {0} غيغابت + {0} غيغابت + {0} غيغابت + {0} غيغابت + {0} غيغابت + + + ميغابايت + {0} ميغابايت + {0} ميغابايت + {0} ميغابايت + {0} ميغابايت + {0} ميغابايت + {0} ميغابايت + + + ميغابت + {0} ميغابت + {0} ميغابت + {0} ميغابت + {0} ميغابت + {0} ميغابت + {0} ميغابت + + + كيلوبايت + {0} كيلوبايت + {0} كيلوبايت + {0} كيلوبايت + {0} كيلوبايت + {0} كيلوبايت + {0} كيلوبايت + + + كيلوبت + {0} كيلوبت + {0} كيلوبت + {0} كيلوبت + {0} كيلوبت + {0} كيلوبت + {0} كيلوبت + + + بايت + {0} بايت + {0} بايت + {0} بايت + {0} بايت + {0} بايت + {0} بايت + + + بت + {0} بت + {0} بت + {0} بت + {0} بت + {0} بت + {0} بت + + + قرن + {0} قرن + قرن + قرنان + {0} قرون + {0} قرنًا + {0} قرن + + + سنة + {0} سنة + سنة واحدة + سنتان + {0} سنة + {0} سنة + {0} سنة + {0}/سنة + + + شهور + {0} شهر + شهر + شهران + {0} أشهر + {0} شهرًا + {0} شهر + {0}/ش + + + أسبوع + {0} أسبوع + أسبوع + أسبوعان + {0} أسابيع + {0} أسبوعًا + {0} أسبوع + {0}/أ - يوم + أيام {0} يوم - {0} يوم + يوم يومان {0} أيام {0} يومًا {0} يوم + {0}/ي ساعة @@ -8861,50 +9332,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} س {0}/س - - م.ث. - {0} م.ث. - {0} م.ث. - {0} م.ث. - {0} م.ث. - {0} م.ث. - {0} م.ث. - - - مللي ثانية - {0} مللي ث. - {0} مللي ث. - {0} مللي ث. - {0} مللي ث. - {0} مللي ث. - {0} مللي ث. - - دقيقة + د {0} د {0} د {0} د {0} د {0} د {0} د - - - شهر - {0} شهر - شهر - شهران - {0} أشهر - {0} شهرًا - {0} شهر - - - ن.ث. - {0} ن.ث. - {0} ن.ث. - {0} ن.ث. - {0} ن.ث. - {0} ن.ث. - {0} ن.ث. + {0}/د ثانية @@ -8916,59 +9352,77 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ث {0}/ث - - أسبوع - {0} أسبوع - {0} أسبوع - أسبوعان - {0} أسابيع - {0} أسبوعًا - {0} أسبوع + + مللي ثانية + {0} مللي ث. + {0} مللي ث. + {0} مللي ث. + {0} مللي ث. + {0} مللي ث. + {0} مللي ث. - - سنة - {0} سنة - سنة - سنتان - {0} سنة - {0} سنة - {0} سنة + + م.ث. + {0} م.ث. + {0} م.ث. + {0} م.ث. + {0} م.ث. + {0} م.ث. + {0} م.ث. + + + ن.ث. + {0} ن.ث. + {0} ن.ث. + {0} ن.ث. + {0} ن.ث. + {0} ن.ث. + {0} ن.ث. - أمبير - {0} أمبير - {0} أمبير - {0} أمبير - {0} أمبير - {0} أمبير - {0} أمبير + أمبير + {0} أمبير + {0} أمبير + {0} أمبير + {0} أمبير + {0} أمبير + {0} أمبير - مللي أمبير - {0} مللي أمبير - {0} مللي أمبير - {0} مللي أمبير - {0} مللي أمبير - {0} مللي أمبير - {0} مللي أمبير + مللي أمبير + {0} مللي أمبير + {0} مللي أمبير + {0} مللي أمبير + {0} مللي أمبير + {0} مللي أمبير + {0} مللي أمبير - أوم - {0} أوم - {0} أوم - {0} أوم - {0} أوم - {0} أوم - {0} أوم + أوم + {0} أوم + {0} أوم + {0} أوم + {0} أوم + {0} أوم + {0} أوم - فولت - {0} فولت - {0} فولت - {0} فولت - {0} فولت - {0} فولت - {0} فولت + فولت + {0} فولت + {0} فولت + {0} فولت + {0} فولت + {0} فولت + {0} فولت + + + ك كالوري + {0} ك كالوري + {0} ك كالوري + {0} ك كالوري + {0} ك كالوري + {0} ك كالوري + {0} ك كالوري كالوري @@ -8980,238 +9434,328 @@ For terms of use, see http://www.unicode.org/copyright.html {0} كالوري - كالوري - {0} كالوري - {0} كالوري - {0} كالوري - {0} كالوري - {0} كالوري - {0} كالوري - - - جول - {0} جول - {0} جول - {0} جول - {0} جول - {0} جول - {0} جول - - - ك كالوري - {0} ك كالوري - {0} ك كالوري - {0} ك كالوري - {0} ك كالوري - {0} ك كالوري - {0} ك كالوري + كالوري + {0} كالوري + {0} كالوري + {0} كالوري + {0} كالوري + {0} كالوري + {0} كالوري - ك جول - {0} ك جول - {0} ك جول - {0} ك جول - {0} ك جول - {0} ك جول - {0} ك جول + ك جول + {0} ك جول + {0} ك جول + {0} ك جول + {0} ك جول + {0} ك جول + {0} ك جول + + + جول + {0} جول + {0} جول + {0} جول + {0} جول + {0} جول + {0} جول - ك.و.س - {0} ك.و.س - {0} ك.و.س - {0} ك.و.س - {0} ك.و.س - {0} ك.و.س - {0} ك.و.س + ك.و.س + {0} ك.و.س + {0} ك.و.س + {0} ك.و.س + {0} ك.و.س + {0} ك.و.س + {0} ك.و.س - غ هرتز - {0} غ هرتز - {0} غ هرتز - {0} غ هرتز - {0} غ هرتز - {0} غ هرتز - {0} غ هرتز - - - هرتز - {0} هرتز - {0} هرتز - {0} هرتز - {0} هرتز - {0} هرتز - {0} هرتز - - - ك هرتز - {0} ك هرتز - {0} ك هرتز - {0} ك هرتز - {0} ك هرتز - {0} ك هرتز - {0} ك هرتز + غ هرتز + {0} غ هرتز + {0} غ هرتز + {0} غ هرتز + {0} غ هرتز + {0} غ هرتز + {0} غ هرتز - م هرتز - {0} م هرتز - {0} م هرتز - {0} م هرتز - {0} م هرتز - {0} م هرتز - {0} م هرتز + م هرتز + {0} م هرتز + {0} م هرتز + {0} م هرتز + {0} م هرتز + {0} م هرتز + {0} م هرتز - - و.ف. - {0} و.ف. - {0} و.ف. - {0} و.ف. - {0} و.ف. - {0} و.ف. - {0} و.ف. + + ك هرتز + {0} ك هرتز + {0} ك هرتز + {0} ك هرتز + {0} ك هرتز + {0} ك هرتز + {0} ك هرتز - - سم - {0} سم - {0} سم - {0} سم - {0} سم - {0} سم - {0} سم - - - دسم - {0} دسم - {0} دسم - {0} دسم - {0} دسم - {0} دسم - {0} دسم - - - قدم - {0} من الأقدام - {0} قدم - قدمان ({0}) - {0} أقدام - {0} قدمًا - {0} من الأقدام - - - بوصة - {0} بوصة - {0} بوصة - {0} بوصة - {0} بوصة - {0} بوصة - {0} بوصة + + هرتز + {0} هرتز + {0} هرتز + {0} هرتز + {0} هرتز + {0} هرتز + {0} هرتز - كم - {0} كم - {0} كم - {0} كم - {0} كم - {0} كم - {0} كم - - - سنة ضوئية - {0} من السنوات الضوئية - {0} سنة ضوئية - سنتان ضوئيتان ({0}) - {0} سنوات ضوئية - {0} سنة ضوئية - {0} من السنوات الضوئية + كم + {0} كم + {0} كم + {0} كم + {0} كم + {0} كم + {0} كم + {0}/كم - متر - {0} من الأمتار - {0} متر - متران ({0}) - {0} أمتار - {0} مترًا - {0} من الأمتار + متر + {0} متر + متر + متران + {0} أمتار + {0} مترًا + {0} متر + {0}/م - - ميكرومتر - {0} ميكرومتر - {0} ميكرومتر - {0} ميكرومتر - {0} ميكرومتر - {0} ميكرومتر - {0} ميكرومتر + + دسم + {0} دسم + {0} دسم + {0} دسم + {0} دسم + {0} دسم + {0} دسم - - ميل - {0} من الأميال - {0} ميل - ميلان ({0}) - {0} أميال - {0} ميلاً - {0} من الأميال + + سم + {0} سم + {0} سم + {0} سم + {0} سم + {0} سم + {0} سم + {0}/سم - ملليمتر - {0} ملليمتر - {0} ملليمتر - {0} ملليمتر - {0} ملليمتر - {0} ملليمتر - {0} ملليمتر + ملليمتر + {0} ملليمتر + {0} ملليمتر + {0} ملليمتر + {0} ملليمتر + {0} ملليمتر + {0} ملليمتر + + + ميكرومتر + {0} ميكرومتر + {0} ميكرومتر + {0} ميكرومتر + {0} ميكرومتر + {0} ميكرومتر + {0} ميكرومتر - نانو متر - {0} نانو متر - {0} نانو متر - {0} نانو متر - {0} نانو متر - {0} نانو متر - {0} نانو متر - - - ميل بحري - {0} من الأميال البحرية - {0} ميل بحري - ميلان بحريان - {0} أميال بحرية - {0} ميلاً بحريًا - {0} من الأميال البحرية - - - فرسخ فلكي - {0} من الفراسخ الفلكية - {0} فرسخ فلكي - فرسخان فلكيان - {0} فراسخ فلكية - {0} فرسخًا فلكيًا - {0} من الفراسخ الفلكية + نانو متر + {0} نانو متر + {0} نانو متر + {0} نانو متر + {0} نانو متر + {0} نانو متر + {0} نانو متر - بيكومتر - {0} بيكومتر - {0} بيكومتر - {0} بيكومتر - {0} بيكومتر - {0} بيكومتر - {0} بيكومتر + بيكومتر + {0} بيكومتر + {0} بيكومتر + {0} بيكومتر + {0} بيكومتر + {0} بيكومتر + {0} بيكومتر + + + ميل + {0} ميل + ميل + ميلان + {0} أميال + {0} ميلاً + {0} ميل - ياردة - {0} من الياردات - {0} ياردة - ياردتان ({0}) - {0} ياردات - {0} ياردة - {0} من الياردات + ياردة + {0} ياردة + ياردة + ياردتان + {0} ياردات + {0} ياردة + {0} ياردة + + + قدم + {0} قدم + قدم + قدمان + {0} أقدام + {0} قدمًا + {0} قدم + {0}/قدم + + + بوصة + {0} بوصة + {0} بوصة + {0} بوصة + {0} بوصة + {0} بوصة + {0} بوصة + {0}/بوصة + + + فرسخ فلكي + {0} فرسخ فلكي + فرسخ فلكي + فرسخان فلكيان + {0} فراسخ فلكية + {0} فرسخًا فلكيًا + {0} فرسخ فلكي + + + سنة ضوئية + {0} سنة ضوئية + سنة ضوئية + سنتان ضوئيتان + {0} سنوات ضوئية + {0} سنة ضوئية + {0} سنة ضوئية + + + و.ف. + {0} و.ف. + {0} و.ف. + {0} و.ف. + {0} و.ف. + {0} و.ف. + {0} و.ف. + + + ميل بحري + {0} ميل بحري + ميل بحري + ميلان بحريان + {0} أميال بحرية + {0} ميلاً بحريًا + {0} ميل بحري + + + ميل اسكندنافي + {0} ميل اسكندنافي + {0} ميل اسكندنافي + {0} ميل اسكندنافي + {0} ميل اسكندنافي + {0} ميل اسكندنافي + {0} ميل اسكندنافي - لكس - {0} لكس - {0} لكس - {0} لكس - {0} لكس - {0} لكس - {0} لكس + لكس + {0} لكس + {0} لكس + {0} لكس + {0} لكس + {0} لكس + {0} لكس + + + ط/م + {0} ط/م + {0} ط/م + {0} ط/م + {0} ط/م + {0} ط/م + {0} ط/م + + + كغم + {0} كغم + {0} كغم + {0} كغم + {0} كغم + {0} كغم + {0} كغم + {0}/كغم + + + غرام + {0} غرام + غرام ({0}) + غرامان ({0}) + {0} غرامات + {0} غرامًا + {0} غرام + {0}/غم + + + مغم + {0} مغم + {0} مغم + {0} مغم + {0} مغم + {0} مغم + {0} مغم + + + مكغم + {0} مكغم + {0} مكغم + {0} مكغم + {0} مكغم + {0} مكغم + {0} مكغم + + + طن + {0} طن + {0} طن + {0} طن + {0} طن + {0} طن + {0} طن + + + رطل + {0} رطل + {0} رطل + {0} رطل + {0} رطل + {0} رطل + {0} رطل + {0}/رطل + + + أونصة + أونصة + {0} أونصة + أونصتان + {0} أونصات + {0} أونصة + {0} أونصة + {0}/أونصة + + + أونصة ترويسية + {0} أونصة ترويسية + {0} أونصة ترويسية + أونصتان ترويسيتان + {0} أونصات ترويسية + {0} أونصة ترويسية + {0} أونصة ترويسية قيراط @@ -9222,221 +9766,149 @@ For terms of use, see http://www.unicode.org/copyright.html {0} قيراط {0} قيراط - - غرام - {0} من الغرامات - {0} غرام - غرامان ({0}) - {0} غرامات - {0} غرامًا - {0} من الغرامات - - - كغم - {0} كغم - {0} كغم - {0} كغم - {0} كغم - {0} كغم - {0} كغم - - - ط/م - {0} ط/م - {0} ط/م - {0} ط/م - {0} ط/م - {0} ط/م - {0} ط/م - - - مكغم - {0} مكغم - {0} مكغم - {0} مكغم - {0} مكغم - {0} مكغم - {0} مكغم - - - مغم - {0} مغم - {0} مغم - {0} مغم - {0} مغم - {0} مغم - {0} مغم - - - أونصة - {0} أونس - {0} أونس - {0} أونس - {0} أونس - {0} أونس - {0} أونس - - - أونصة ترويسية - {0} أونصات ترويسية - {0} أونصة ترويسية - أونصتان ترويسيتان - {0} أونصات ترويسية - {0} أونصة ترويسية - {0} أونصات ترويسية - - - رطل - {0} رطل - {0} رطل - {0} رطل - {0} رطل - {0} رطل - {0} رطل - - - طن - {0} طن - {0} طن - {0} طن - {0} طن - {0} طن - {0} طن - - غ واط - {0} غ واط - {0} غ واط - {0} غ واط - {0} غ واط - {0} غ واط - {0} غ واط - - - قوة حصان - {0} قوة حصان - {0} قوة حصان - {0} قوة حصان - {0} قوة حصان - {0} قوة حصان - {0} قوة حصان - - - ك واط - {0} كيلوواط - {0} كيلوواط - {0} كيلوواط - {0} كيلوواط - {0} كيلوواط - {0} كيلوواط + غ واط + {0} غ واط + {0} غ واط + {0} غ واط + {0} غ واط + {0} غ واط + {0} غ واط - م واط - {0} م واط - {0} م واط - {0} م واط - {0} م واط - {0} م واط - {0} م واط + م واط + {0} م واط + {0} م واط + {0} م واط + {0} م واط + {0} م واط + {0} م واط - - مللي واط - {0} مللي واط - {0} مللي واط - {0} مللي واط - {0} مللي واط - {0} مللي واط - {0} مللي واط + + ك واط + {0} كيلوواط + {0} كيلوواط + {0} كيلوواط + {0} كيلوواط + {0} كيلوواط + {0} كيلوواط - واط - {0} واط - {0} واط - {0} واط - {0} واط - {0} واط - {0} واط + واط + {0} واط + {0} واط + {0} واط + {0} واط + {0} واط + {0} واط + + + مللي واط + {0} مللي واط + {0} مللي واط + {0} مللي واط + {0} مللي واط + {0} مللي واط + {0} مللي واط + + + حصان + {0} حصان + {0} حصان + {0} حصان + {0} حصان + {0} حصان + {0} حصان - هكتوباسكال - {0} هكتوباسكال - {0} هكتوباسكال - {0} هكتوباسكال - {0} هكتوباسكال - {0} هكتوباسكال - {0} هكتوباسكال - - - بوصة زئبقية - {0} بوصة زئبقية - {0} بوصة زئبقية - {0} بوصة زئبقية - {0} بوصة زئبقية - {0} بوصة زئبقية - {0} بوصة زئبقية - - - مللي بار - {0} مللي بار - {0} مللي بار - {0} مللي بار - {0} مللي بار - {0} مللي بار - {0} مللي بار + هكتوباسكال + {0} هكتوباسكال + {0} هكتوباسكال + {0} هكتوباسكال + {0} هكتوباسكال + {0} هكتوباسكال + {0} هكتوباسكال - ملم زئبقي - {0} ملم زئبقي - {0} ملم زئبقي - {0} ملم زئبقي - {0} ملم زئبقي - {0} ملم زئبقي - {0} ملم زئبقي + ملم زئبقي + {0} ملم زئبقي + {0} ملم زئبقي + {0} ملم زئبقي + {0} ملم زئبقي + {0} ملم زئبقي + {0} ملم زئبقي - رطل/بوصة مربعة - {0} رطل/بوصة مربعة - {0} رطل/بوصة مربعة - {0} رطل/بوصة مربعة - {0} رطل/بوصة مربعة - {0} رطل/بوصة مربعة - {0} رطل/بوصة مربعة + رطل/بوصة مربعة + {0} رطل/بوصة مربعة + {0} رطل/بوصة مربعة + {0} رطل/بوصة مربعة + {0} رطل/بوصة مربعة + {0} رطل/بوصة مربعة + {0} رطل/بوصة مربعة - - قيراط - {0} قيراط - {0} قيراط - {0} قيراط - {0} قيراط - {0} قيراط - {0} قيراط + + بوصة زئبقية + {0} بوصة زئبقية + {0} بوصة زئبقية + {0} بوصة زئبقية + {0} بوصة زئبقية + {0} بوصة زئبقية + {0} بوصة زئبقية + + + مللي بار + {0} مللي بار + {0} مللي بار + {0} مللي بار + {0} مللي بار + {0} مللي بار + {0} مللي بار - كم/س - {0} كم/س - {0} كم/س - {0} كم/س - {0} كم/س - {0} كم/س - {0} كم/س + كم/س + {0} كم/س + {0} كم/س + {0} كم/س + {0} كم/س + {0} كم/س + {0} كم/س - م/ث - {0} م/ث - {0} م/ث - {0} م/ث - {0} م/ث - {0} م/ث - {0} م/ث + م/ث + {0} م/ث + {0} م/ث + {0} م/ث + {0} م/ث + {0} م/ث + {0} م/ث - ميل/س - {0} ميل/س - {0} ميل/س - {0} ميل/س - {0} ميل/س - {0} ميل/س - {0} ميل/س + ميل/س + {0} ميل/س + {0} ميل/س + {0} ميل/س + {0} ميل/س + {0} ميل/س + {0} ميل/س + + + عقدة + {0} عقدة + {0} عقدة + {0} عقدة + {0} عقدة + {0} عقدة + {0} عقدة + + + ° + {0}° + {0}° + {0}° + {0}° + {0}° + {0}° درجة مئوية @@ -9457,207 +9929,235 @@ For terms of use, see http://www.unicode.org/copyright.html {0}°ف - د كلفن - {0} د كلفن - {0} د كلفن - {0} د كلفن - {0} د كلفن - {0} د كلفن - {0} د كلفن - - - فدان قدم - {0} فدان قدم - {0} فدان قدم - {0} فدان قدم - {0} فدان قدم - {0} فدان قدم - {0} فدان قدم - - - سنتيلتر - {0} سنتيلتر - {0} سنتيلتر - {0} سنتيلتر - {0} سنتيلتر - {0} سنتيلتر - {0} سنتيلتر - - - سم³ - {0} سم³ - {0} سم³ - {0} سم³ - {0} سم³ - {0} سم³ - {0} سم³ - - - قدم مكعبة - {0} من الأقدام المكعبة - {0} قدم مكعبة - قدمان مكعبان - {0} أقدام مكعبة - {0} قدمًا مكعبًا - {0} من الأقدام المكعبة - - - بوصة مكعبة - {0} بوصة مكعبة - {0} بوصة مكعبة - {0} بوصة مكعبة - {0} بوصة مكعبة - {0} بوصة مكعبة - {0} بوصة مكعبة + د كلفن + {0} د كلفن + {0} د كلفن + {0} د كلفن + {0} د كلفن + {0} د كلفن + {0} د كلفن - كم³ - {0} كم³ - {0} كم³ - {0} كم³ - {0} كم³ - {0} كم³ - {0} كم³ + كم³ + {0} كم³ + {0} كم³ + {0} كم³ + {0} كم³ + {0} كم³ + {0} كم³ - م³ - {0} م³ - {0} م³ - {0} م³ - {0} م³ - {0} م³ - {0} م³ + م³ + {0} م³ + {0} م³ + {0} م³ + {0} م³ + {0} م³ + {0} م³ + {0}/م³ + + + سم³ + {0} سم³ + {0} سم³ + {0} سم³ + {0} سم³ + {0} سم³ + {0} سم³ + {0}/سم³ - ميل مكعب - {0} ميل مكعب - {0} ميل مكعب - {0} ميل مكعب - {0} ميل مكعب - {0} ميل مكعب - {0} ميل مكعب + ميل مكعب + {0} ميل مكعب + {0} ميل مكعب + {0} ميل مكعب + {0} ميل مكعب + {0} ميل مكعب + {0} ميل مكعب - ياردة مكعبة - {0} ياردة مكعبة - {0} ياردة مكعبة - {0} ياردة مكعبة - {0} ياردة مكعبة - {0} ياردة مكعبة - {0} ياردة مكعبة + ياردة مكعبة + {0} ياردة مكعبة + {0} ياردة مكعبة + {0} ياردة مكعبة + {0} ياردة مكعبة + {0} ياردة مكعبة + {0} ياردة مكعبة - - كوب - {0} من الأكواب - {0} كوب - كوبان - {0} أكواب - {0} كوبًا - {0} من الأكواب + + قدم مكعبة + {0} قدم مكعبة + قدم مكعبة + قدمان مكعبان + {0} أقدام مكعبة + {0} قدمًا مكعبًا + {0} قدم مكعبة - - ديسيلتر - {0} ديسيلتر - {0} ديسيلتر - {0} ديسيلتر - {0} ديسيلتر - {0} ديسيلتر - {0} ديسيلتر - - - أونصة سائلة - {0} من الأونصات السائلة - {0} أونصة سائلة - أونصتان سائلتان - {0} أونصات سائلة - {0} أونصة سائلة - {0} من الأونصات السائلة - - - غالون - {0} من الغالونات - {0} غالون - غالونان - {0} غالونات - {0} غالونًا - {0} من الغالونات - - - هكتولتر - {0} هكتولتر - {0} هكتولتر - {0} هكتولتر - {0} هكتولتر - {0} هكتولتر - {0} هكتولتر - - - لتر - {0} من اللترات - {0} لتر - لتران ({0}) - {0} لترات - {0} لترًا - {0} من اللترات + + بوصة مكعبة + {0} بوصة مكعبة + {0} بوصة مكعبة + {0} بوصة مكعبة + {0} بوصة مكعبة + {0} بوصة مكعبة + {0} بوصة مكعبة - ميغالتر - {0} ميغالتر - {0} ميغالتر - {0} ميغالتر - {0} ميغالتر - {0} ميغالتر - {0} ميغالتر + ميغالتر + {0} ميغالتر + {0} ميغالتر + {0} ميغالتر + {0} ميغالتر + {0} ميغالتر + {0} ميغالتر + + + هكتولتر + {0} هكتولتر + {0} هكتولتر + {0} هكتولتر + {0} هكتولتر + {0} هكتولتر + {0} هكتولتر + + + لتر + {0} لتر + لتر + لتران + {0} لترات + {0} لترًا + {0} لتر + {0}/ل + + + ديسيلتر + {0} ديسيلتر + {0} ديسيلتر + {0} ديسيلتر + {0} ديسيلتر + {0} ديسيلتر + {0} ديسيلتر + + + سنتيلتر + {0} سنتيلتر + {0} سنتيلتر + {0} سنتيلتر + {0} سنتيلتر + {0} سنتيلتر + {0} سنتيلتر - ملتر - {0} ملتر - {0} ملتر - {0} ملتر - {0} ملتر - {0} ملتر - {0} ملتر + ملتر + {0} ملتر + {0} ملتر + {0} ملتر + {0} ملتر + {0} ملتر + {0} ملتر - - باينت - {0} باينت - {0} باينت - {0} باينت - {0} باينت - {0} باينت - {0} باينت + + مكيال متري + {0} مكيال متري + {0} مكيال متري + {0} مكيال متري + {0} مكيال متري + {0} مكيال متري + {0} مكيال متري + + + كوب متري + {0} كوب متري + {0} كوب متري + {0} كوب متري + {0} كوب متري + {0} كوب متري + {0} كوب متري + + + فدان قدم + {0} فدان قدم + {0} فدان قدم + {0} فدان قدم + {0} فدان قدم + {0} فدان قدم + {0} فدان قدم + + + غالون + {0} غالون + غالون + غالونان + {0} غالونات + {0} غالونًا + {0} غالون + {0}/غالون - ربع غالون - {0} من أرباع الغالون - {0} ربع غالون - نصف غالون - {0} أرباع غالون - {0} ربع غالون - {0} من أرباع الغالون + ربع غالون + {0} ربع غالون + ربع غالون + نصف غالون + {0} أرباع غالون + {0} ربع غالون + {0} ربع غالون + + + مكيال + {0} مكيال + مكيال + مكيالان + {0} مكاييل + {0} مكيالاً + {0} مكيال + + + كوب + {0} كوب + كوب + كوبان + {0} أكواب + {0} كوبًا + {0} كوب + + + أونصة سائلة + {0} أونصة سائلة + أونصة سائلة + أونصتان سائلتان + {0} أونصات سائلة + {0} أونصة سائلة + {0} أونصة سائلة - ملعقة المائدة - {0} من ملاعق المائدة - {0} ملعقة مائدة - ملعقتا مائدة - {0} ملاعق مائدة - {0} ملعقة مائدة - {0} من ملاعق المائدة + ملعقة المائدة + {0} ملعقة مائدة + ملعقة مائدة + ملعقتا مائدة + {0} ملاعق مائدة + {0} ملعقة مائدة + {0} ملعقة مائدة - ملعقة شاي - {0} من ملاعق الشاي - {0} ملعقة شاي - ملعقتا شاي - {0} ملاعق شاي - {0} ملعقة شاي - {0} من ملاعق الشاي + ملعقة شاي + {0} ملعقة شاي + ملعقة شاي + ملعقتا شاي + {0} ملاعق شاي + {0} ملعقة شاي + {0} ملعقة شاي + + {0} شرق + {0} شمال + {0} ج + {0} غ + - {0}/{1} + {0}/{1} {0} قوة تسارع @@ -9667,6 +10167,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} قوة تسارع {0} قوة تسارع + + {0} درجة + {0} درجة + درجتان ({0}) + {0} درجات + {0} درجة + {0} درجة + {0}′ {0} دقيقة @@ -9683,21 +10191,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0} درجة - {0} درجة - درجتان ({0}) - {0} درجات - {0} درجة - {0} درجة - - - {0} من الفدادين - {0} فدان - فدانان ({0}) - {0} فدادين - {0} فدانًا - {0} من الفدادين + + {0} كم² + {0} كم² + {0} كم² + {0} كم² + {0} كم² + {0} كم² {0} هكت @@ -9707,22 +10207,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} هكتارًا {0} هكت - - {0}ft² - {0}ft² - {0}ft² - {0}ft² - {0}ft² - {0}ft² - - - {0} كم² - {0} كم² - {0} كم² - {0} كم² - {0} كم² - {0} كم² - {0} م² {0} م² @@ -9739,13 +10223,65 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ميل مربع {0} ميل مربع + + {0} من الفدادين + {0} فدان + فدانان ({0}) + {0} فدادين + {0} فدانًا + {0} من الفدادين + + + {0}ft² + {0}ft² + {0}ft² + {0}ft² + {0}ft² + {0}ft² + + + ل/١٠٠كم + {0} ل/١٠٠كم + {0} ل/١٠٠كم + {0} ل/١٠٠كم + {0} ل/١٠٠كم + {0} ل/١٠٠كم + {0} ل/١٠٠كم + + + سنة + {0} سنة + {0} سنة + {0} سنة + {0} سنة + {0} سنة + {0} سنة + + + شهر + {0} شهر + {0} شهر + {0} شهر + {0} شهر + {0} شهر + {0} شهر + + + أسبوع + {0} أسبوع + أسبوع + أسبوعان + {0} أسابيع + {0} أسبوع + {0} أسبوع + يوم {0} يوم - {0} يوم - {0} يوم - {0} يوم - {0} يوم + يوم + يومان + {0} أيام + {0} يومًا {0} يوم @@ -9757,15 +10293,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} س {0} س - - مللي ثانية - {0} مللي ث. - {0} مللي ث. - {0} مللي ث. - {0} مللي ث. - {0} مللي ث. - {0} مللي ث. - د {0} د @@ -9775,15 +10302,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} د {0} د - - شهر - {0} شهر - {0} شهر - {0} شهر - {0} شهر - {0} شهر - {0} شهر - ث {0} ث @@ -9793,32 +10311,74 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ث {0} ث - - أسبوع - {0} أسبوع - {0} أسبوع - {0} أسبوع - {0} أسبوع - {0} أسبوع - {0} أسبوع + + مللي ثانية + {0} مللي ث. + {0} مللي ث. + {0} مللي ث. + {0} مللي ث. + {0} مللي ث. + {0} مللي ث. - - سنة - {0} سنة - {0} سنة - {0} سنة - {0} سنة - {0} سنة - {0} سنة + + كم + {0} كم + {0} كم + {0} كم + {0} كم + {0} كم + {0} كم + + + متر + {0} م + {0} متر + {0} م + {0} م + {0} م + {0} م - سم - {0} سم - {0} سم - {0} سم - {0} سم - {0} سم - {0} سم + سم + {0} سم + {0} سم + {0} سم + {0} سم + {0} سم + {0} سم + + + مم + {0} ملم + {0} ملم + {0} ملم + {0} ملم + {0} ملم + {0} ملم + + + {0} بيكومتر + {0} بيكومتر + {0} بيكومتر + {0} بيكومتر + {0} بيكومتر + {0} بيكومتر + + + {0} من الأميال + {0} ميل + ميلان ({0}) + {0} أميال + {0} ميلاً + {0} من الأميال + + + {0} من الياردات + {0} ياردة + ياردتان ({0}) + {0} ياردات + {0} ياردة + {0} من الياردات {0} من الأقدام @@ -9836,15 +10396,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} بوصة {0} بوصة - - كم - {0} كم - {0} كم - {0} كم - {0} كم - {0} كم - {0} كم - {0}س ض {0} س ض @@ -9853,74 +10404,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} س ض {0} س ض - - متر - {0} من الأمتار - {0} متر - متران ({0}) - {0} أمتار - {0} مترًا - {0} من الأمتار - - - {0} من الأميال - {0} ميل - ميلان ({0}) - {0} أميال - {0} ميلاً - {0} من الأميال - - - مم - {0} ملم - {0} ملم - {0} ملم - {0} ملم - {0} ملم - {0} ملم - - - {0} بيكومتر - {0} بيكومتر - {0} بيكومتر - {0} بيكومتر - {0} بيكومتر - {0} بيكومتر - - - {0} من الياردات - {0} ياردة - ياردتان ({0}) - {0} ياردات - {0} ياردة - {0} من الياردات + + كغم + {0} كغم + {0} كغم + {0} كغم + {0} كغم + {0} كغم + {0} كغم - غ + غ {0} غ - {0} غرام - غرامان ({0}) - {0} غرامات - {0} غرامًا + {0} غ + {0} غ + {0} غ + {0} غ {0}غ - - كغم - {0} كغم - {0} كغم - {0} كغم - {0} كغم - {0} كغم - {0} كغم - - - {0} أونس - {0} أونس - {0} أونس - {0} أونس - {0} أونس - {0} أونس - {0}# {0}# @@ -9929,13 +10430,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0}# {0}# - - {0} قوة حصان - {0} قوة حصان - {0} قوة حصان - {0} قوة حصان - {0} قوة حصان - {0} قوة حصان + + {0} أونس + {0} أونس + {0} أونس + {0} أونس + {0} أونس + {0} أونس {0} كواط @@ -9953,6 +10454,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} واط {0} واط + + {0} قوة حصان + {0} قوة حصان + {0} قوة حصان + {0} قوة حصان + {0} قوة حصان + {0} قوة حصان + {0} هكب {0} هكب @@ -9978,13 +10487,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} مللي بار - كم/س - {0} كم/س - {0} كم/س - {0} كم/س - {0} كم/س - {0} كم/س - {0} كم/س + كم/س + {0} كم/س + {0} كم/س + {0} كم/س + {0} كم/س + {0} كم/س + {0} كم/س {0} م/ث @@ -10036,14 +10545,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ميل مكعب - لتر + لتر {0} ل - {0} لتر - لتران ({0}) - {0} لترات - {0} لترًا + {0} ل + {0} ل + {0} ل + {0} ل {0} ل + + {0} شرق + {0} شمال + {0} ج + {0} غ + h:mm @@ -10057,28 +10572,28 @@ For terms of use, see http://www.unicode.org/copyright.html - {0}، {1} - {0}، {1} - {0}، و {1} - {0} و {1} + {0}، {1} + {0}، {1} + {0}، و{1} + {0} و{1} - {0}، {1} - {0}، {1} - {0}، و {1} - {0} و {1} + {0}، {1} + {0}، {1} + {0}، و{1} + {0} و{1} - {0}، {1} - {0}، {1} - {0}، و {1} - {0} و {1} + {0}، {1} + {0}، {1} + {0}، و{1} + {0} و{1} - {0}، {1} - {0}، {1} - {0}، و {1} - {0} و {1} + {0}، {1} + {0}، {1} + {0}، و{1} + {0} و{1} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_001.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_001.xml new file mode 100644 index 00000000000..89bd2ca6d64 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_001.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_AE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_AE.xml similarity index 83% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_AE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_AE.xml index 91a9ae42704..fa0b7096ecf 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_AE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_AE.xml @@ -1,13 +1,12 @@ - - - + @@ -32,7 +31,9 @@ For terms of use, see http://www.unicode.org/copyright.html + السنة الماضية هذه السنة + السنة التالية diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_BH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_BH.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_BH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_BH.xml index 70cab6bdbd1..12360d0d0b8 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_BH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_BH.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_DJ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_DJ.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_DJ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_DJ.xml index 21eeef707c5..abd2c2ec37f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_DJ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_DJ.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_DZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_DZ.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_DZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_DZ.xml index 8c7da2cf4e8..f5affb8d019 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_DZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_DZ.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_EG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_EG.xml similarity index 62% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_EG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_EG.xml index 2b0efc5086e..d611e544c54 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_EG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_EG.xml @@ -1,13 +1,12 @@ - - - + @@ -16,10 +15,5 @@ For terms of use, see http://www.unicode.org/copyright.html الدنماركية - - - {0} و{1} - - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_EH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_EH.xml similarity index 72% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_EH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_EH.xml index 72ad3d531f4..5cc63d7055c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_EH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_EH.xml @@ -1,13 +1,12 @@ - - - + @@ -15,3 +14,4 @@ For terms of use, see http://www.unicode.org/copyright.html latn + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_ER.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_ER.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_ER.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_ER.xml index fe2b190a330..2d99dea8f13 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_ER.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_ER.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_IL.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_IL.xml new file mode 100644 index 00000000000..e3b6c6df902 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_IL.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + H:mm:ss zzzz + + + + + H:mm:ss z + + + + + H:mm:ss + + + + + H:mm + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_IQ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_IQ.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_IQ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_IQ.xml index 2937fa92bdf..c62256d21c6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_IQ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_IQ.xml @@ -1,13 +1,12 @@ - - - + @@ -108,3 +107,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_JO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_JO.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_JO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_JO.xml index 13ccfaddf6a..aa8ca381a8a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_JO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_JO.xml @@ -1,13 +1,12 @@ - - - + @@ -108,3 +107,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_KM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_KM.xml new file mode 100644 index 00000000000..36e7af66988 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_KM.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_KW.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_KW.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_KW.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_KW.xml index a63f1cbbb6a..8ae014ce34d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_KW.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_KW.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_LB.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_LB.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_LB.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_LB.xml index 897e16379bc..85ff426cee0 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_LB.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_LB.xml @@ -1,13 +1,12 @@ - - - + @@ -118,4 +117,5 @@ For terms of use, see http://www.unicode.org/copyright.html - \ No newline at end of file + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_LY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_LY.xml similarity index 76% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_LY.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_LY.xml index 9d347c9eb8c..645efce4d0d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_LY.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_LY.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_MA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_MA.xml similarity index 85% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_MA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_MA.xml index 115cb3bbc8c..b273d3d4a32 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_MA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_MA.xml @@ -1,13 +1,12 @@ - - - + @@ -104,6 +103,28 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_MR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_MR.xml similarity index 80% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_MR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_MR.xml index 242591da167..f365d91a896 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_MR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_MR.xml @@ -1,13 +1,12 @@ - - - + @@ -31,8 +30,18 @@ For terms of use, see http://www.unicode.org/copyright.html دجمبر + ي + ف + م إ + و + ن + ل + غ ش + ك + ب + د يناير @@ -65,8 +74,18 @@ For terms of use, see http://www.unicode.org/copyright.html دجمبر + ي + ف + م إ + و + ن + ل + غ ش + ك + ب + د يناير @@ -94,3 +113,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_OM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_OM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_OM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_OM.xml index 901eb5a4ae0..a1e921ea907 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_OM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_OM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_PS.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_PS.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_PS.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_PS.xml index 317af1e4a4b..9cfa050ea5b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_PS.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_PS.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_QA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_QA.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_QA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_QA.xml index 789635f3282..07501a2b147 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_QA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_QA.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_SA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_SA.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_SA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_SA.xml index ce99a25cd73..3736aba366c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_SA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_SA.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_SD.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_SD.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_SD.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_SD.xml index d187770ae77..e8e8242a34d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_SD.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_SD.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_SO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_SO.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_SO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_SO.xml index 9732167cf97..fabd56d6e34 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_SO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_SO.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_SS.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_SS.xml similarity index 76% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_SS.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_SS.xml index 89316e51761..55ce8b93ab7 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_SS.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_SS.xml @@ -1,13 +1,12 @@ - - - + @@ -22,3 +21,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_SY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_SY.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_SY.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_SY.xml index 94baf73538e..5345efe7249 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_SY.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_SY.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_TD.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_TD.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_TD.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_TD.xml index fe81b107737..4105246a002 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_TD.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_TD.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_TN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_TN.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_TN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_TN.xml index 488ec975091..d579dd1a613 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_TN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_TN.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_YE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_YE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_YE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_YE.xml index f885349202d..fc5635de7c8 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ar_YE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ar_YE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/as.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/as.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/as.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/as.xml index f444e6cfc6d..21002f47fff 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/as.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/as.xml @@ -1,13 +1,12 @@ - - - + @@ -44,21 +43,21 @@ For terms of use, see http://www.unicode.org/copyright.html মুদ্ৰা - পৰম্পৰাগত চীনা শৃঙ্খলাবদ্ধ কৰাৰ ক্ৰম - Big5 - বৌদ্ধ পঞ্জিকা - চীনা পঞ্জিকা - সৰল চীনা শৃঙ্খলাবদ্ধ কৰাৰ ক্ৰম - GB2312 - গ্ৰিগোৰীয় পঞ্জিকা - হীব্ৰু পঞ্জিকা - ভাৰতীয় ৰাষ্ট্ৰীয় পঞ্জিকা - ইচলামী পঞ্জিকা - ইচলামী-নাগৰিকৰ পঞ্জিকা - জাপানী পঞ্জিকা - টেলিফোন বহিৰ মতেশৃঙ্খলাবদ্ধ কৰাৰ ক্ৰম - পিন্‌য়িন শৃঙ্খলাবদ্ধ কৰাৰ ক্ৰম - চীনা গণৰাজ্যৰ পঞ্জিকা - স্ট্ৰোক শৃঙ্খলাবদ্ধ কৰাৰ ক্ৰম - পৰম্পৰাগতভাবে শৃঙ্খলাবদ্ধ কৰাৰ ক্ৰম + বৌদ্ধ পঞ্জিকা + চীনা পঞ্জিকা + গ্ৰিগোৰীয় পঞ্জিকা + হীব্ৰু পঞ্জিকা + ভাৰতীয় ৰাষ্ট্ৰীয় পঞ্জিকা + ইচলামী পঞ্জিকা + ইচলামী-নাগৰিকৰ পঞ্জিকা + জাপানী পঞ্জিকা + চীনা গণৰাজ্যৰ পঞ্জিকা + পৰম্পৰাগত চীনা শৃঙ্খলাবদ্ধ কৰাৰ ক্ৰম - Big5 + সৰল চীনা শৃঙ্খলাবদ্ধ কৰাৰ ক্ৰম - GB2312 + টেলিফোন বহিৰ মতেশৃঙ্খলাবদ্ধ কৰাৰ ক্ৰম + পিন্‌য়িন শৃঙ্খলাবদ্ধ কৰাৰ ক্ৰম + স্ট্ৰোক শৃঙ্খলাবদ্ধ কৰাৰ ক্ৰম + পৰম্পৰাগতভাবে শৃঙ্খলাবদ্ধ কৰাৰ ক্ৰম মেট্ৰিক @@ -66,7 +65,7 @@ For terms of use, see http://www.unicode.org/copyright.html - [অ আ ই ঈ উ ঊ ঋ এ ঐ ও ঔ ং \u0981 ঃ ক খ গ ঘ ঙ চ ছ জ ঝ ঞ ট ঠ ড {ড\u09BC}ড় ঢ {ঢ\u09BC}ঢ় ণ ত থ দ ধ ন প ফ ব ভ ম য {য\u09BC} ৰ ল ৱ শ ষ স হ {ক\u09CDষ} া ি ী \u09C1 \u09C2 \u09C3 ে ৈ ো ৌ \u09CD] + [\u09BC অ আ ই ঈ উ ঊ ঋ এ ঐ ও ঔ ং \u0981 ঃ ক খ গ ঘ ঙ চ ছ জ ঝ ঞ ট ঠ ড {ড\u09BC} ঢ {ঢ\u09BC} ণ ত থ দ ধ ন প ফ ব ভ ম য {য\u09BC} ৰ ল ৱ শ ষ স হ {ক\u09CDষ} া ি ী \u09C1 \u09C2 \u09C3 ে ৈ ো ৌ \u09CD] [\u200C\u200D ৲] [অ আ ই ঈ উ ঊ ঋ ৠ ঌ ৡ এ ঐ ও ঔ ক খ গ ঘ ঙ চ ছ জ ঝ ঞ ট ঠ ড ঢ ণ ৎ ত থ দ ধ ন প ফ ব ভ ম য ৰ ল ৱ শ ষ স হ ঽ] @@ -163,6 +162,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + পূৰ্বাহ্ণ + অপৰাহ্ণ + পূৰ্বাহ্ণ অপৰাহ্ণ @@ -230,8 +233,9 @@ For terms of use, see http://www.unicode.org/copyright.html দিন - পৰহি + পৰহি কালি + আজি কাইলৈ পৰহিলৈ @@ -267,6 +271,9 @@ For terms of use, see http://www.unicode.org/copyright.html beng + + . + @@ -287,6 +294,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##,##0.00 + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0M + ¤ 0M + ¤ 00M + ¤ 00M + ¤ 000M + ¤ 000M + ¤ 0G + ¤ 0G + ¤ 00G + ¤ 00G + ¤ 000G + ¤ 000G + ¤ 0T + ¤ 0T + ¤ 00T + ¤ 00T + ¤ 000T + ¤ 000T + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/as_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/as_IN.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/as_IN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/as_IN.xml index 0c78daaf25d..6a8d97753d1 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/as_IN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/as_IN.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/asa.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/asa.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/asa.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/asa.xml index ef92273634f..69a1b65e24a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/asa.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/asa.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antili za Uholandhi Angola Ajentina Thamoa ya Marekani @@ -448,6 +446,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + icheheavo + ichamthi + icheheavo ichamthi @@ -489,22 +491,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -583,6 +585,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0K ¤ + 0K ¤ + 00K ¤ + 00K ¤ + 000K ¤ + 000K ¤ + 0M ¤ + 0M ¤ + 00M ¤ + 00M ¤ + 000M ¤ + 000M ¤ + 0G ¤ + 0G ¤ + 00G ¤ + 00G ¤ + 000G ¤ + 000G ¤ + 0T ¤ + 0T ¤ + 00T ¤ + 00T ¤ + 000T ¤ + 000T ¤ + + @@ -763,3 +793,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/asa_TZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/asa_TZ.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/asa_TZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/asa_TZ.xml index 851fc5f2d2e..1654141cfba 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/asa_TZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/asa_TZ.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ast.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ast.xml new file mode 100644 index 00000000000..10573d1635d --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ast.xml @@ -0,0 +1,10293 @@ + + + + + + + + + + + {0} ({1}) + {0}, {1} + {0}: {1} + + + afar + abkhazianu + achinés + acoli + adangme + adyghe + avestanín + árabe de Túnez + afrikaans + afrihili + aghem + ainu + akan + acadianu + alabama + aleut + gheg d’Albania + altai del sur + amháricu + aragonés + inglés antiguu + angika + árabe + árabe estándar modernu + araméu + mapuche + araona + arapaho + árabe d’Arxelia + arawak + árabe de Marruecos + árabe d’Exiptu + asamés + asu + llingua de signos americana + asturianu + aváricu + kotava + awadhi + aymara + azerbaixanu + azerí + bashkir + baluchi + balinés + bávaru + basaa + bamun + batak toba + ghomala + bielorrusu + beja + bemba + betawi + bena + bafut + badaga + búlgaru + balochi occidental + bhojpuri + bislama + bikol + bini + banjar + kom + siksika + bambara + bengalín + tibetanu + bishnupriya + bakhtiari + bretón + braj + brahui + bodo + bosniu + akoose + buriat + buginés + bulu + blin + medumba + catalán + caddo + caribe + cayuga + atsam + chechenu + cebuanu + chiga + chamorro + chibcha + chagatai + chuukés + mari + xíriga chinook + choctaw + chipewyanu + cheroqui + cheyenne + kurdu central + corsu + cópticu + capiznon + cree + turcu de Crimea + checu + kashubianu + eslávicu eclesiásticu + chuvash + galés + danés + dakota + dargwa + taita + alemán + alemán d’Austria + altualemán de Suiza + delaware + slave + dogrib + dinka + zarma + dogri + baxu sorbiu + dusun central + duala + neerlandés mediu + divehi + jola-fonyi + dyula + dzongkha + dazaga + embú + ewe + efik + emilianu + exipciu antiguu + ekajuk + griegu + elamita + inglés + inglés d’Australia + inglés de Canadá + inglés de Gran Bretaña + inglés del R.X. + inglés d’Estaos Xuníos + inglés d’EE.XX. + inglés mediu + esperanto + español + español d’América Llatina + español européu + español de Méxicu + yupik central + estoniu + vascu + ewondo + estremeñu + persa + fang + fanti + fulah + finlandés + filipín + finlandés de Tornedalen + fixanu + feroés + fon + francés + francés de Canadá + francés de Suiza + francés cajun + francés mediu + francés antiguu + arpitanu + frisón del norte + frisón oriental + friulianu + frisón occidental + irlandés + ga + gagauz + chinu gan + gayo + gbaya + dari zoroastrianu + gaélicu escocés + geez + gilbertés + gallegu + gilaki + altualemán mediu + guaraní + altualemán antiguu + goan konkani + gondi + gorontalo + góticu + grebo + griegu antiguu + alemán de Suiza + guyaratí + wayuu + frafra + gusii + manés + gwichʼin + ḥausa + haida + chinu hakka + hawaianu + hebréu + hindi + hindi de Fiji + hiligaynon + hitita + hmong + hiri motu + croata + altu sorbiu + chinu xiang + haitianu + húngaru + hupa + armeniu + herero + interlingua + iban + ibibio + indonesiu + interlingue + igbo + yi de Sichuán + inupiaq + iloko + ingush + ido + islandés + italianu + inuktitut + ingrianu + xaponés + inglés criollu xamaicanu + lojban + ngomba + machame + xudeo-persa + xudeo-árabe + jutlandés + xavanés + xeorxanu + kara-kalpak + kabileñu + kachin + jju + kamba + kawi + kabardianu + kanembu + tyap + makonde + cabuverdianu + kenyang + koro + kongo + kaingang + khasi + khotanés + koyra chiini + khowar + kikuyu + kirmanjki + kuanyama + kazaquistanín + kako + kalaallisut + kalenjin + ḥemer + kimbundu + canarés + coreanu + komi-permyak + konkani + kosraeanu + kpelle + kanuri + karachay-balkar + krio + kinaray-a + karelianu + kurukh + cachemirés + shambala + bafia + colonianu + curdu + kumyk + kutenai + komi + córnicu + kirguistanín + llatín + ladino + langi + lahnda + lamba + luxemburgués + lezghianu + lingua franca nova + ganda + limburgués + ligurianu + livonianu + lakota + lombardu + lingala + laosianu + mongo + lozi + luri del norte + lituanu + latgalianu + luba-katanga + luba-lulua + luiseno + lunda + luo + mizo + luyia + letón + chinu lliterariu + laz + madurés + mafa + magahi + maithili + makasar + mandingo + masái + maba + moksha + mandar + mende + meru + morisyen + malgaxe + írlandés mediu + makhuwa-meetto + meta’ + marshallés + maorí + micmac + minangkabau + macedoniu + malayalam + mongol + manchú + manipuri + mohawk + mossi + marathi + mari occidental + malayu + maltés + mundang + múltiples llingües + creek + mirandés + marwari + mentawai + birmanu + myene + erzya + mazanderani + nauru + chinu min nan + napolitanu + nama + noruegu Bokmål + ndebele del norte + baxu alemán + baxu saxón + nepalés + newari + ndonga + nias + niueanu + ao naga + neerlandés + flamencu + kwasio + noruegu Nynorsk + ngiemboon + noruegu + nogai + noruegu antiguu + novial + n’ko + ndebele del sur + sotho del norte + nuer + navajo + newari clásicu + nyanja + nyamwezi + nyankole + nyoro + nzima + occitanu + ojibwa + oromo + oriya + oséticu + Osage + turcu otomanu + punyabí + pangasinan + pahlavi + pampanga + papiamento + palauanu + pícaru + alemán de Pennsylvania + plautdietsch + persa antiguu + alemán palatinu + feniciu + pali + polacu + piamontés + pónticu + pohnpeianu + prusianu + provenzal antiguu + pashtu + portugués + portugués del Brasil + portugués européu + quechua + kʼicheʼ + quichua del altiplanu de Chimborazo + rajasthanín + rapanui + rarotonganu + romañol + rifianu + romanche + rundi + rumanu + moldavu + rombo + romaní + root + rotumanu + rusu + rusyn + roviana + aromanianu + kinyarwanda + rwa + sánscritu + sandavés + sakha + araméu samaritanu + samburu + sasak + santali + saurashtra + ngambay + sangu + sardu + sicilianu + scots + sindhi + sardu sassarés + Kurdu del sur + sami del norte + séneca + sena + seri + selkup + koyraboro senni + sango + irlandés antiguu + samogitianu + serbo-croata + tachelhit + shan + árabe chadianu + cingalés + sidamo + eslovacu + eslovenu + baxu silesianu + selayarés + samoanu + sami del sur + lule sami + inari sami + skolt sami + shona + soninke + somalín + sogdianu + albanu + serbiu + sranan tongo + serer + swati + saho + sotho del sur + frisón de Saterland + sondanés + sukuma + susu + sumeriu + suecu + suaḥili + swahili del Congu + comorianu + siriacu clásicu + siriacu + silesianu + tamil + tulu + telugu + timne + teso + terena + tetum + taxiquistanín + tailandés + tigrinya + tigre + tiv + turcomanu + tokelau + tsakhur + tagalog + klingon + tlingit + talixín + tamashek + tswana + tonganu + tonga nyasa + tok pisin + turcu + turoyo + taroko + tsonga + tsakoniu + tsimshian + tártaru + tati musulmán + tumbuka + tuvalu + twi + tasawaq + tahitianu + tuvinianu + tamazight del Atles central + udmurt + uigur + ugaríticu + ucraín + umbundu + llingua desconocida + urdu + uzbequistanín + vai + venda + venecianu + vepsiu + vietnamín + flamencu occidental + franconianu del Main + volapük + vóticu + voro + vunjo + valón + walser + wolaytta + waray + washo + warlpiri + wolof + chinu wu + calmuco + xhosa + mingrelianu + soga + yao + yapés + yangben + yemba + yiddish + yoruba + nheengatu + cantonés + zhuang + zapoteca + simbólicu Bliss + zeelandés + zenaga + tamazight estándar de Marruecos + chinu + chinu simplificáu + chinu tradicional + zulú + zuni + ensin conteníu llingüísticu + zaza + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mundu + África + Norteamérica + América del Sur + Oceanía + África Occidental + América Central + África Oriental + África del Norte + África Central + África del Sur + América + América del Norte + Caribe + Asia Oriental + Asia del Sur + Sureste Asiáticu + Europa del Sur + Australasia + Melanesia + Rexón de Micronesia + Polinesia + Asia + Asia Central + Asia Occidental + Europa + Europa Oriental + Europa del Norte + Europa Occidental + América Llatina + Islla Ascensión + Andorra + Emiratos Árabes Xuníos + Afganistán + Antigua y Barbuda + Anguila + Albania + Armenia + Angola + L’Antártida + Arxentina + Samoa Americana + Austria + Australia + Aruba + Islles Aland + Azerbaixán + Bosnia y Herzegovina + Barbados + Bangladex + Bélxica + Burkina Fasu + Bulgaria + Baḥréin + Burundi + Benín + San Bartolomé + Les Bermudes + Brunéi + Bolivia + Caribe neerlandés + Brasil + Les Bahames + Bután + Islla Bouvet + Botsuana + Bielorrusia + Belize + Canadá + Islles Cocos (Keeling) + Congu - Kinxasa + Congu (RDC) + República Centroafricana + Congu - Brazzaville + Congu (República del) + Suiza + Costa de Marfil + Islles Cook + Chile + Camerún + China + Colombia + Islla Clipperton + Costa Rica + Cuba + Cabu Verde + Curaçao + Islla Christmas + Xipre + Chequia + Alemaña + Diego Garcia + Xibuti + Dinamarca + Dominica + República Dominicana + Arxelia + Ceuta y Melilla + Ecuador + Estonia + Exiptu + Sáḥara Occidental + Eritrea + España + Etiopía + Xunión Europea + Finlandia + Islles Fixi + Falkland Islands + Islles Malvines (Falkland Islands) + Micronesia + Islles Feroe + Francia + Gabón + Reinu Xuníu + RX + Granada + Xeorxa + Guyana Francesa + Guernsey + Ghana + Xibraltar + Groenlandia + Gambia + Guinea + Guadalupe + Guinea Ecuatorial + Grecia + Islles Xeorxa del Sur y Sandwich del Sur + Guatemala + Guam + Guinea-Bisáu + Guyana + ARE China de Ḥong Kong + Ḥong Kong + Islles Heard y McDonald + Hondures + Croacia + Haití + Hungría + Islles Canaries + Indonesia + Irlanda + Israel + Islla de Man + India + Territoriu Británicu del Océanu Índicu + Iraq + Irán + Islandia + Italia + Jersey + Xamaica + Xordania + Xapón + Kenia + Kirguistán + Camboya + Kiribati + Les Comores + Saint Kitts y Nevis + Corea del Norte + Corea del Sur + Kuwait + Islles Caimán + Kazakstán + Laos + Líbanu + Santa Llucía + Liechtenstein + Sri Lanka + Liberia + Lesothu + Lituania + Luxemburgu + Letonia + Libia + Marruecos + Mónacu + Moldavia + Montenegru + Saint Martin + Madagascar + Islles Marshall + Macedonia + Macedonia (ARYDM) + Malí + Myanmar (Birmania) + Mongolia + ARE China de Macáu + Macáu + Islles Marianes del Norte + La Martinica + Mauritania + Montserrat + Malta + Mauriciu + Les Maldives + Malaui + Méxicu + Malasia + Mozambique + Namibia + Nueva Caledonia + El Níxer + Islla Norfolk + Nixeria + Nicaragua + Países Baxos + Noruega + Nepal + Nauru + Niue + Nueva Zelanda + Omán + Panamá + Perú + Polinesia Francesa + Papúa Nueva Guinea + Filipines + Paquistán + Polonia + Saint Pierre y Miquelon + Islles Pitcairn + Puertu Ricu + Territorios Palestinos + Palestina + Portugal + Paláu + Paraguái + Qatar + Oceanía esterior + Reunión + Rumanía + Serbia + Rusia + Ruanda + Arabia Saudita + Islles Salomón + Les Seixeles + Sudán + Suecia + Singapur + Santa Helena + Eslovenia + Svalbard ya Islla Jan Mayen + Eslovaquia + Sierra Lleona + San Marín + Senegal + Somalia + Surinam + Sudán del Sur + Santu Tomé y Príncipe + El Salvador + Sint Maarten + Siria + Suazilandia + Tristán da Cunha + Islles Turques y Caicos + Chad + Tierres Australes Franceses + Togu + Tailandia + Taxiquistán + Tokeláu + Timor Oriental + Timor Este + Turkmenistán + Tunicia + Tonga + Turquía + Trinidá y Tobagu + Tuvalu + Taiwán + Tanzania + Ucraína + Uganda + Islles Perifériques Menores de los EE.XX. + Estaos Xuníos + EE.XX. + Uruguái + Uzbequistán + Ciudá del Vaticanu + San Vicente y Granadines + Venezuela + Islles Vírxenes Britániques + Islles Vírxenes Americanes + Vietnam + Vanuatu + Wallis y Futuna + Samoa + Kosovu + Yemen + Mayotte + Sudáfrica + Zambia + Zimbabue + Rexón desconocida + + + ortografía alemana tradicional + ortografía resiana estandarizada + ortografía alemana de 1996 + últimu francés mediu fasta 1606 + francés modernu primitivu + académicu + romanizacion ALA-LC, edicion de 1997 + dialectu aluku + armeniu oriental + armeniu occidental + alfabetu turcu llatino unificáu + dialectu balanka del anii + grupu dialectal barlavento del cabuverdianu + BAUDDHA + BISCAYAN + dialectu San Giorgio/Bila + alfabetu bohorič + boontling + alfabetu dajnko + serbiu con pronunciación ekaviana + inglés modernu primitivu + fonética IPA + fonética UPA + FONXSAMP + romanización de Hepburn + HOGNORSK + serbiu con pronunciación Ijekaviana + ITIHASA + JAUER + JYUTPING + ortografía común + KOCIEWIE + ortografía estándar + LAUKIKA + el dialectu lipovaz del resianu + LUNA1918 + alfabetu metelko + monotónicu + dialectu ndyuka + dialectu natisone + dialectu gniva/njiva + volapük modernu + dialectu oseacco/osojane + dialectu pamaka + PETR1708 + romanización pinyin + politónicu + ordenador + PUTER + ortografía revisada + volapük clásicu + resianu + RUMGR + saho + inglés estándar escocés + scouse + dialectu stolvizza/solbica + grupu dialectal sotavento del cabuverdianu + SURMIRAN + SURSILV + SUTSILV + ortografía taraskievica + ortografía unificada + ortografía unificada revisada + ULSTER + alfabetu fonéticu Unifon + VAIDIKA + valencianu + VALLADER + romanización de Wade-Giles + + + calendariu + orde de clasificación + moneda + ciclu horariu (12 o 24) + estilu de saltu de llinia + sistema de midida + númberos + + + calendariu budista + calendariu chinu + calendariu coptu + calendariu dangi + calendariu etíope + calendariu etíope Amete Alem + calendariu gregorianu + calendariu hebréu + calendariu nacional indiu + calendariu islámicu + calendariu islámicu (tabular, época civil) + calendariu islámicu (Arabia Saudita, visual) + calendariu islámicu (tabular, época astronómica) + calendariu islámicu (Umm al-Qura) + calendariu ISO-8601 + calendariu xaponés + calendariu persa + calendariu Minguo + orde de clasificación chinu tradicional - Big5 + orde de clasificación anterior, por compatibilidá + orde de clasificación de diccionariu + orde de clasificación Unicode predetermináu + orde de clasificación Emoji + regles d’ordenamientu europees + orde de clasificación chinu simplificáu - GB2312 + orde de clasificación de llista telefónica + orde de clasificación pinyin + orde de clasificación reformáu + gueta xeneral + gueta por consonante Hangul d’aniciu + orde de clasificación estándar + orde de clasificación pol trazu + orde de clasificación tradicional + orde de clasificación por radical y trazu + orde de clasificación zhuyin + sistema de 12 hores (0–11) + sistema de 12 hores (1–12) + sistema de 24 hores (0–23) + sistema de 24 hores (1–24) + saltu de llinia relaxáu + saltu de llinia normal + saltu de llinia estrictu + sistema métricu + sistema de midida imperial + sistema de midida d’EE.XX. + númberos arábico-índicos + númberos arábico-índicos estendíos + númberos armenios + númberos armenios en minúscules + númberos balineses + númberos bengalinos + númberos brahmi + númberos chakma + númberos cham + númberos devanagari + númberos etíopes + númberos n’anchu completu + númberos xeorxanos + númberos griegos + númberos griegos en minúscules + númberos gujarati + númberos gurmukhi + númberos decimales chinos + númberos chinos simplificaos + númberos chinos financieros simplificaos + númberos chinos tradicionales + númberos chinos financieros tradicionales + númberos hebreos + númberos xavanesos + númberos xaponeses + númberos financieros xaponeses + númberos Kayah Li + numberación khmer + numberación kannada + numberación Tai Tham Hora + numberación Tai Tham Tham + númberos laosianos + númberos occidentales + númberos lepcha + númberos limbu + númberos malayalam + númberos mongoles + númberos Meetei Mayek + númberos de Myanmar + númberos Shan de Myanmar + númberos N’Ko + númberos Ol Chiki + númberos oriya + númberos osmanya + númberos romanos + númberos romanos en minúscules + númberos saurashtra + númberos sharada + númberos Sora Sompeng + númberos sondaneses + númberos takri + numberación Tai Lue nueva + númberos tamil tradicionales + númberos tamil + númberos telugu + númberos tailandeses + númberos tibetanos + númberos vai + + + Métricu + R.X. + EE.XX. + + + Llingua: {0} + Alfabetu: {0} + Rexón: {0} + + + + [a á b c d e é f g h ḥ i í l ḷ m n ñ o ó p q r s t u ú ü v x y z] + [ª à ă â å ä ã ā æ ç è ĕ ê ë ē ì ĭ î ï ī j k º ò ŏ ô ö ø ō œ ù ŭ û ū w ÿ] + [A B C D E F G H I L M N Ñ O P Q R S T U V X Y Z] + [\- ‐ – — , ; \: ! ¡ ? ¿ . … ' ‘ ’ " “ ” « » ( ) \[ \] § @ * / \\ \& # † ‡ ′ ″] + {0}… + …{0} + {0}… {1} + {0} … + … {0} + {0} … {1} + ? + + + « + » + + + + + + + + + era budista + + + EB + + + EB + + + + + + EEEE, dd MMMM 'de' y G + + + + + d MMMM 'de' y G + + + + + d MMM y G + + + + + d/M/yy GGGGG + + + + + + + {1} 'a' 'les' {0} + + + + + {1} 'a' 'les' {0} + + + + + {1}, {0} + + + + + {1}, {0} + + + + d + ccc + E d + y G + MMM y G + d MMM 'de' y G + E, d MMM 'de' y G + L + d/M + E, d/M + LLL + d MMM + E, d MMM + d 'de' MMMM + y G + M/y + d/M/y + E, d/M/y + MMM y + d MMM y + E, d MMM y + QQQ y + QQQQ y + y G + M/y GGGG + d/M/y GGGG + E, d/M/y GGGG + MMM y G + d MMM 'de' y G + E, d MMM 'de' y G + MMMM 'de' y G + QQQ y G + QQQQ 'de' y G + + + {0} – {1} + + d – d + + + h a – h a + h–h a + + + HH – HH + + + h:mm a – h:mm a + h:mm – h:mm a + h:mm – h:mm a + + + HH:mm – HH:mm + HH:mm – HH:mm + + + h:mm a – h:mm a v + h:mm – h:mm a v + h:mm – h:mm a v + + + HH:mm – HH:mm v + HH:mm – HH:mm v + + + h a – h a v + h – h a v + + + HH – HH v + + + M – M + + + dd – dd/MM + dd/MM – dd/MM + + + E, dd – E, dd/MM + E, dd/MM – E, dd/MM + + + LLL – LLL + + + d – d MMM + d MMM – d MMM + + + E, d MMM – E, d MMM + E, d MMM – E, d MMM + + + y – y G + + + M/y – M/y GGGG + M/y – M/y GGGG + + + d/M/y – d/M/y GGGG + d/M/y – d/M/y GGGG + d/M/y – d/M/y GGGG + + + E, d/M/y – E, d/M/y GGGG + E, d/M/y – E, d/M/y GGGG + E, d/M/y – E, d/M/y GGGG + + + LLL – LLL y G + LLL y – LLL y G + + + d – d MMM 'de' y G + d MMM – d MMM 'de' y G + d MMM y – d MMM y G + + + E, d MMM – E, d MMM y G + E, d MMM – E, d MMM y G + E, d MMM y – E, d MMM y G + + + LLLL – LLLL 'de' y G + LLLL 'de' y – LLLL 'de' y G + + + + + + + + + mes 1 + mes 2 + mes 3 + mes 4 + mes 5 + mes 6 + mes 7 + mes 8 + mes 9 + mes 10 + mes 11 + mes 12 + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + mes 1 + mes 2 + mes 3 + mes 4 + mes 5 + mes 6 + mes 7 + mes 8 + mes 9 + mes 10 + mes 11 + mes 12 + + + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + Mes 1 + Mes 2 + Mes 3 + Mes 4 + Mes 5 + Mes 6 + Mes 7 + Mes 8 + Mes 9 + Mes 10 + Mes 11 + Mes 12 + + + + + + + {0}bis + + + {0}b + + + {0} bisiestu + + + + + {0} bis + + + + + {0}bis + + + {0}b + + + {0} bisiestu + + + + + + + + ratu + güe + tigre + conexu + dragón + culebra + caballu + cabra + monu + gallu + perru + gochu + + + ratu + güe + tigre + conexu + dragón + culebra + caballu + cabra + monu + gallu + perru + gochu + + + ratu + güe + tigre + conexu + dragón + culebra + caballu + cabra + monu + gallu + perru + gochu + + + + + + + principia la primavera + agua de lluvia + esconsoñen los inseutos + equinocciu de primavera + brillante y claro + lluvia del granu + principia’l branu + granu completu + granu n’espiga + solsticiu braniegu + pequeña calor + gran calor + principia la seronda + fin de la calor + rosada blanca + equinocciu serondiegu + rosada fría + descende’l xelu + principia l’iviernu + pequeña ñeve + gran ñeve + solsticiu d’iviernu + pequeñu fríu + gran fríu + + + + + + + ratu de madera yang + güe de madera yin + tigre de fueu yang + conexu de fueu yin + dragón de tierra yang + culebra de tierra yin + caballu de metal yang + cabra de metal yin + monu d’agua yang + gallu d’agua yin + perru de madera yang + gochu de madera yin + ratu de fueu yang + güe de fueu yin + tigre de tierra yang + conexu de tierra yin + dragón de metal yang + culebra de metal yin + caballu d’agua yang + cabra d’agua yin + monu de madera yang + gallu de madera yin + perru de fueu yang + gochu de fueu yin + ratu de tierra yang + güe de tierra yin + tigre de metal yang + conexu de metal yin + dragón d’agua yang + culebra d’agua yin + caballu de madera yang + cabra de madera yin + monu de fueu yang + gallu de fueu yin + perru de tierra yang + gochu de tierra yin + ratu de metal yang + güe de metal yin + tigre d’agua yang + conexu d’agua yin + dragón de madera yang + culebra de madera yin + caballu de fueu yang + cabra de fueu yin + monu de tierra yang + gallu de tierra yin + perru de metal yang + gochu de metal yin + rata d’agua yang + güe d’agua yin + tigre de madera yang + conexu de madera yin + dragón de fueu yang + culebra de fueu yin + caballu de tierra yang + cabra de tierra yin + monu de metal yang + gallu de metal yin + perru d’agua yang + gochu d’agua yin + + + + + + + ratu + güe + tigre + conexu + dragón + culebra + caballu + cabra + monu + gallu + perru + gochu + + + rat + güe + tig + con + dra + cul + cbl + cbr + mon + gal + per + gch + + + Ratu + Güe + Tigre + Conexu + Dragón + Culebra + Caballu + Cabra + Monu + Gallu + Perru + Gochu + + + + + + + + + + + ratu + güe + tigre + conexu + dragón + culebra + caballu + cabra + monu + gallu + perru + gochu + + + ratu + güe + tigre + conexu + dragón + culebra + caballu + cabra + monu + gallu + perru + gochu + + + + + + + + + + mes + tek + hed + tah + ter + yek + meg + mia + gen + sen + ham + neh + pag + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + + + de meskerem + de tekemt + d’hedar + de tahsas + de ter + de yekatit + de megabit + de miazia + de genbot + de sene + d’hamle + de nehasse + de pagumen + + + + + mes + tek + hed + tah + ter + yek + meg + mia + gen + sen + ham + neh + pag + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + + + Meskerem + Tekemt + Hedar + Tahsas + Ter + Yekatit + Megabit + Miazia + Genbot + Sene + Hamle + Nehasse + Pagumen + + + + + + antes de la Encarnación + después de la Encarnación + + + a. E. + d. E. + + + aE + dE + + + + + + d – d + + + M – M + + + LLL – LLL + + + y – y G + + + LLL – LLL y G + + + d – d MMM 'de' y + + + LLLL – LLLL y G + + + + + + + + + EEEE, dd MMMM 'de' y G + + + + + d MMMM 'de' y G + + + + + d MMM y G + + + + + d/M/yy GGGGG + + + + + + + {1} 'a' 'les' {0} + + + + + {1} 'a' 'les' {0} + + + + + {1}, {0} + + + + + {1} {0} + + + + d + ccc + E d + y G + MMM y G + d MMM 'de' y G + E, d MMM 'de' y G + h a + HH + h:mm a + HH:mm + h:mm:ss a + HH:mm:ss + L + d/M + E, d/M + LLL + d MMM + E, d MMM + d 'de' MMMM + mm:ss + y G + M/y + d/M/y + E, d/M/y + MMM y + d MMM y + E, d MMM y + QQQ y + QQQQ y + y G + M/y GGGGG + d/M/y GGGGG + E, d/M/y GGGGG + MMM y G + d MMM 'de' y G + E, d MMM 'de' y G + MMMM 'de' y G + QQQ y G + QQQQ y G + + + {0} – {1} + + d – d + + + h a – h a + h–h a + + + HH–HH + + + h:mm a – h:mm a + h:mm–h:mm a + h:mm–h:mm a + + + HH:mm–HH:mm + HH:mm–HH:mm + + + h:mm a – h:mm a v + h:mm–h:mm a v + h:mm–h:mm a v + + + HH:mm–HH:mm v + HH:mm–HH:mm v + + + h a – h a v + h–h a v + + + HH–HH v + + + M – M + + + dd – dd/MM + dd/MM – dd/MM + + + E, dd – E, dd/MM + E, dd/MM – E, dd/MM + + + LLL – LLL + + + d – d MMM + d/MM – d/MM + + + E, d MMM – E, d MMM + E, d MMM – E, d MMM + + + y – y G + + + MM – MM/y GGGGG + MM/y – MM/y GGGGG + + + d/M/y – d/M/y GGGGG + d/M/y – d/M/y GGGGG + d/M/y – d/M/y GGGGG + + + E, d/M/y – E, d/M/y GGGGG + E, d/M/y – E, d/M/y GGGGG + E, d/M/y – E, d/M/y GGGGG + + + LLL – LLL y G + MMM y – MMM y G + + + d – d MMM 'de' y G + d MMM – d MMM 'de' y G + d MMM y – d MMM y + + + E, d MMM – E, d MMM y + E, d MMM – E, d MMM y + E, d MMM y – E, d MMM y + + + LLLL – LLLL 'de' y G + LLLL y – LLLL y + + + + + + + + + xin + feb + mar + abr + may + xun + xnt + ago + set + och + pay + avi + + + X + F + M + A + M + X + X + A + S + O + P + A + + + de xineru + de febreru + de marzu + d’abril + de mayu + de xunu + de xunetu + d’agostu + de setiembre + d’ochobre + de payares + d’avientu + + + + + Xin + Feb + Mar + Abr + May + Xun + Xnt + Ago + Set + Och + Pay + Avi + + + X + F + M + A + M + X + X + A + S + O + P + A + + + xineru + febreru + marzu + abril + mayu + xunu + xunetu + agostu + setiembre + ochobre + payares + avientu + + + + + + + dom + llu + mar + mié + xue + vie + sáb + + + D + L + M + M + X + V + S + + + do + ll + ma + mi + xu + vi + + + + domingu + llunes + martes + miércoles + xueves + vienres + sábadu + + + + + dom + llu + mar + mié + xue + vie + sáb + + + D + L + M + M + X + V + S + + + do + ll + ma + mi + xu + vi + + + + domingu + llunes + martes + miércoles + xueves + vienres + sábadu + + + + + + + 1T + 2T + 3T + 4T + + + 1 + 2 + 3 + 4 + + + 1er trimestre + 2u trimestre + 3er trimestre + 4u trimestre + + + + + 1T + 2T + 3T + 4T + + + 1 + 2 + 3 + 4 + + + 1er trimestre + 2u trimestre + 3er trimestre + 4u trimestre + + + + + + + AM + PM + + + a + p + + + de la mañana + de la tardi + + + + + AM + PM + + + a + p + + + mañana + tardi + + + + + + a.C. + antes de nuestra Era + después de Cristu + nuestra Era + + + a.C. + edC + d.C. + n.E. + + + aC + anE + dC + nE + + + + + + EEEE, d MMMM 'de' y + + + + + d MMMM 'de' y + + + + + d MMM y + + + + + d/M/yy + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + {1} 'a' 'les' {0} + + + + + {1} 'a' 'les' {0} + + + + + {1}, {0} + + + + + {1} {0} + + + + d + ccc + E d + E h:mm a + E HH:mm + E h:mm:ss a + E HH:mm:ss + y G + MMM y G + d MMM y G + E, d MMM y G + h a + HH + h:mm a + HH:mm + h:mm:ss a + HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v + L + d/M + E, d/M + LLL + d MMM + E, d MMM + d MMMM + mm:ss + y + M/y + d/M/y + E, d/M/y + MMM y + d MMM y + E, d MMM y + LLLL 'de' y + QQQ y + QQQQ y + + + {0} {1} + + + {0} – {1} + + d – d + + + h a – h a + h – h a + + + HH – HH + + + h:mm a – h:mm a + h:mm – h:mm a + h:mm – h:mm a + + + HH:mm – HH:mm + HH:mm – HH:mm + + + h:mm a – h:mm a v + h:mm – h:mm a v + h:mm – h:mm a v + + + HH:mm – HH:mm v + HH:mm – HH:mm v + + + h a – h a v + h – h a v + + + HH – HH v + + + M – M + + + dd – dd/MM + dd/MM – dd/MM + + + E, dd – E, dd/MM + E, dd/MM – E, dd/MM + + + LLL – LLL + + + d – d MMM + d/MM – d/MM + + + E, d MMM – E, d MMM + E, d MMM – E, d MMM + + + y – y + + + MM – MM/y + MM/y – MM/y + + + d/M/y – d/M/y + d/M/y – d/M/y + d/M/y – d/M/y + + + E, d/M/y – E, d/M/y + E, d/M/y – E, d/M/y + E, d/M/y – E, d/M/y + + + MMM – MMM y + MMM y – MMM y + + + d – d MMM 'de' y + d MMM – d MMM 'de' y + d MMM 'de' y – d MMM 'de' y + + + E, d MMM – E, d MMM 'de' y + E, d MMM – E, d MMM 'de' y + E, d MMM 'de' y – E, d MMM 'de' y + + + LLLL – LLLL y + LLLL y – LLLL y + + + + + + + + + Chaitra + Vaisakha + Jyaistha + Asadha + Sravana + Bhadra + Asvina + Kartika + Agrahayana + Pausa + Magha + Phalguna + + + Chaitra + Vaisakha + Jyaistha + Asadha + Sravana + Bhadra + Asvina + Kartika + Agrahayana + Pausa + Magha + Phalguna + + + + + Chaitra + Vaisakha + Jyaistha + Asadha + Sravana + Bhadra + Asvina + Kartika + Agrahayana + Pausa + Magha + Phalguna + + + Chaitra + Vaisakha + Jyaistha + Asadha + Sravana + Bhadra + Asvina + Kartika + Agrahayana + Pausa + Magha + Phalguna + + + + + + Saka + + + Saka + + + Saka + + + + + + + + Muh. + Saf. + Rab. I + Rab. II + Jum. I + Jum. II + Raj. + Sha. + Ram. + Shaw. + Dhuʻl-Q. + Dhuʻl-H. + + + Muharram + Safar + Rabiʻ I + Rabiʻ II + Jumada I + Jumada II + Rajab + Shaʻban + Ramadan + Shawwal + Dhuʻl-Qiʻdah + Dhuʻl-Hijjah + + + + + Muh. + Saf. + Rab. I + Rab. II + Jum. I + Jum. II + Raj. + Sha. + Ram. + Shaw. + Dhuʻl-Q. + Dhuʻl-H. + + + Muharram + Safar + Rabiʻ I + Rabiʻ II + Jumada I + Jumada II + Rajab + Shaʻban + Ramadan + Shawwal + Dhuʻl-Qiʻdah + Dhuʻl-Hijjah + + + + + + AH + + + AH + + + AH + + + + + + + Taika (645–650) + Hakuchi (650–671) + Hakuhō (672–686) + Shuchō (686–701) + Taihō (701–704) + Keiun (704–708) + Wadō (708–715) + Reiki (715–717) + Yōrō (717–724) + Jinki (724–729) + Tenpyō (729–749) + Tenpyō-kampō (749-749) + Tenpyō-shōhō (749-757) + Tenpyō-hōji (757-765) + Tenpyō-jingo (765-767) + Jingo-keiun (767-770) + Hōki (770–780) + Ten-ō (781-782) + Enryaku (782–806) + Daidō (806–810) + Kōnin (810–824) + Tenchō (824–834) + Jōwa (834–848) + Kajō (848–851) + Ninju (851–854) + Saikō (854–857) + Ten-an (857-859) + Jōgan (859–877) + Gangyō (877–885) + Ninna (885–889) + Kanpyō (889–898) + Shōtai (898–901) + Engi (901–923) + Enchō (923–931) + Jōhei (931–938) + Tengyō (938–947) + Tenryaku (947–957) + Tentoku (957–961) + Ōwa (961–964) + Kōhō (964–968) + Anna (968–970) + Tenroku (970–973) + Ten’en (973–976) + Jōgen (976–978) + Tengen (978–983) + Eikan (983–985) + Kanna (985–987) + Eien (987–989) + Eiso (989–990) + Shōryaku (990–995) + Chōtoku (995–999) + Chōhō (999–1004) + Kankō (1004–1012) + Chōwa (1012–1017) + Kannin (1017–1021) + Jian (1021–1024) + Manju (1024–1028) + Chōgen (1028–1037) + Chōryaku (1037–1040) + Chōkyū (1040–1044) + Kantoku (1044–1046) + Eishō (1046–1053) + Tengi (1053–1058) + Kōhei (1058–1065) + Jiryaku (1065–1069) + Enkyū (1069–1074) + Shōho (1074–1077) + Shōryaku (1077–1081) + Eihō (1081–1084) + Ōtoku (1084–1087) + Kanji (1087–1094) + Kahō (1094–1096) + Eichō (1096–1097) + Jōtoku (1097–1099) + Kōwa (1099–1104) + Chōji (1104–1106) + Kashō (1106–1108) + Tennin (1108–1110) + Ten-ei (1110-1113) + Eikyū (1113–1118) + Gen’ei (1118–1120) + Hōan (1120–1124) + Tenji (1124–1126) + Daiji (1126–1131) + Tenshō (1131–1132) + Chōshō (1132–1135) + Hōen (1135–1141) + Eiji (1141–1142) + Kōji (1142–1144) + Ten’yō (1144–1145) + Kyūan (1145–1151) + Ninpei (1151–1154) + Kyūju (1154–1156) + Hōgen (1156–1159) + Heiji (1159–1160) + Eiryaku (1160–1161) + Ōho (1161–1163) + Chōkan (1163–1165) + Eiman (1165–1166) + Nin’an (1166–1169) + Kaō (1169–1171) + Shōan (1171–1175) + Angen (1175–1177) + Jishō (1177–1181) + Yōwa (1181–1182) + Juei (1182–1184) + Genryaku (1184–1185) + Bunji (1185–1190) + Kenkyū (1190–1199) + Shōji (1199–1201) + Kennin (1201–1204) + Genkyū (1204–1206) + Ken’ei (1206–1207) + Jōgen (1207–1211) + Kenryaku (1211–1213) + Kenpō (1213–1219) + Jōkyū (1219–1222) + Jōō (1222–1224) + Gennin (1224–1225) + Karoku (1225–1227) + Antei (1227–1229) + Kanki (1229–1232) + Jōei (1232–1233) + Tenpuku (1233–1234) + Bunryaku (1234–1235) + Katei (1235–1238) + Ryakunin (1238–1239) + En-ō (1239-1240) + Ninji (1240–1243) + Kangen (1243–1247) + Hōji (1247–1249) + Kenchō (1249–1256) + Kōgen (1256–1257) + Shōka (1257–1259) + Shōgen (1259–1260) + Bun’ō (1260–1261) + Kōchō (1261–1264) + Bun’ei (1264–1275) + Kenji (1275–1278) + Kōan (1278–1288) + Shōō (1288–1293) + Einin (1293–1299) + Shōan (1299–1302) + Kengen (1302–1303) + Kagen (1303–1306) + Tokuji (1306–1308) + Enkyō (1308–1311) + Ōchō (1311–1312) + Shōwa (1312–1317) + Bunpō (1317–1319) + Genō (1319–1321) + Genkō (1321–1324) + Shōchū (1324–1326) + Karyaku (1326–1329) + Gentoku (1329–1331) + Genkō (1331–1334) + Kenmu (1334–1336) + Engen (1336–1340) + Kōkoku (1340–1346) + Shōhei (1346–1370) + Kentoku (1370–1372) + Bunchū (1372–1375) + Tenju (1375–1379) + Kōryaku (1379–1381) + Kōwa (1381–1384) + Genchū (1384–1392) + Meitoku (1384–1387) + Kakei (1387–1389) + Kōō (1389–1390) + Meitoku (1390–1394) + Ōei (1394–1428) + Shōchō (1428–1429) + Eikyō (1429–1441) + Kakitsu (1441–1444) + Bun’an (1444–1449) + Hōtoku (1449–1452) + Kyōtoku (1452–1455) + Kōshō (1455–1457) + Chōroku (1457–1460) + Kanshō (1460–1466) + Bunshō (1466–1467) + Ōnin (1467–1469) + Bunmei (1469–1487) + Chōkyō (1487–1489) + Entoku (1489–1492) + Meiō (1492–1501) + Bunki (1501–1504) + Eishō (1504–1521) + Taiei (1521–1528) + Kyōroku (1528–1532) + Tenbun (1532–1555) + Kōji (1555–1558) + Eiroku (1558–1570) + Genki (1570–1573) + Tenshō (1573–1592) + Bunroku (1592–1596) + Keichō (1596–1615) + Genna (1615–1624) + Kan’ei (1624–1644) + Shōho (1644–1648) + Keian (1648–1652) + Jōō (1652–1655) + Meireki (1655–1658) + Manji (1658–1661) + Kanbun (1661–1673) + Enpō (1673–1681) + Tenna (1681–1684) + Jōkyō (1684–1688) + Genroku (1688–1704) + Hōei (1704–1711) + Shōtoku (1711–1716) + Kyōhō (1716–1736) + Genbun (1736–1741) + Kanpō (1741–1744) + Enkyō (1744–1748) + Kan’en (1748–1751) + Hōreki (1751–1764) + Meiwa (1764–1772) + An’ei (1772–1781) + Tenmei (1781–1789) + Kansei (1789–1801) + Kyōwa (1801–1804) + Bunka (1804–1818) + Bunsei (1818–1830) + Tenpō (1830–1844) + Kōka (1844–1848) + Kaei (1848–1854) + Ansei (1854–1860) + Man’en (1860–1861) + Bunkyū (1861–1864) + Genji (1864–1865) + Keiō (1865–1868) + Meiji + Taishō + era Shōwa + Heisei + + + Taika + Hakuchi + Hakuhō + Shuchō + Taihō + Keiun + Wadō + Reiki + Yōrō + Jinki + Tenpyō + T.-kampō + T.-shōhō + T.-hōji + T.-jingo + J.-keiun + Hōki + Ten-ō + Enryaku + Daidō + Kōnin + Tenchō + Jōwa + Kajō + Ninju + Saikō + Ten-an + Jōgan + Gangyō + Ninna + Kanpyō + Shōtai + Engi + Enchō + Jōhei + Tengyō + Tenryaku + Tentoku + Ōwa + Kōhō + Anna + Tenroku + Ten’en + Jōgen + Tengen + Eikan + Kanna + Eien + Eiso + Shōryaku + Chōtoku + Chōhō + Kankō + Chōwa + Kannin + Jian + Manju + Chōgen + Chōryaku + Chōkyū + Kantoku + Eishō + Tengi + Kōhei + Jiryaku + Enkyū + Shōho + Shōryaku II + Eihō + Ōtoku + Kanji + Kahō + Eichō + Jōtoku + Kōwa + Chōji + Kashō + Tennin + Ten-ei + Eikyū + Gen’ei + Hōan + Tenji + Daiji + Tenshō + Chōshō + Hōen + Eiji + Kōji + Ten’yō + Kyūan + Ninpei + Kyūju + Hōgen + Heiji + Eiryaku + Ōho + Chōkan + Eiman + Nin’an + Kaō + Shōan + Angen + Jishō + Yōwa + Juei + Genryaku + Bunji + Kenkyū + Shōji + Kennin + Genkyū + Ken’ei + Jōgen II + Kenryaku + Kenpō + Jōkyū + Jōō + Gennin + Karoku + Antei + Kanki + Jōei + Tenpuku + Bunryaku + Katei + Ryakunin + En’ō + Ninji + Kangen + Hōji + Kenchō + Kōgen + Shōka + Shōgen + Bun’ō + Kōchō + Bun’ei + Kenji + Kōan + Shōō + Einin + Shōan II + Kengen + Kagen + Tokuji + Enkyō + Ōchō + Shōwa + Bunpō + Genō + Genkō + Shōchū + Karyaku + Gentoku + Genkō II + Kenmu + Engen + Kōkoku + Shōhei + Kentoku + Bunchū + Tenju + Kōryaku + Kōwa II + Genchū + Meitoku + Kakei + Kōō + Meitoku II + Ōei + Shōchō + Eikyō + Kakitsu + Bun’an + Hōtoku + Kyōtoku + Kōshō + Chōroku + Kanshō + Bunshō + Ōnin + Bunmei + Chōkyō + Entoku + Meiō + Bunki + Eishō II + Taiei + Kyōroku + Tenbun + Kōji II + Eiroku + Genki + Tenshō II + Bunroku + Keichō + Genna + Kan’ei + Shōho II + Keian + Jōō II + Meireki + Manji + Kanbun + Enpō + Tenna + Jōkyō + Genroku + Hōei + Shōtoku + Kyōhō + Genbun + Kanpō + Enkyō II + Kan’en + Hōreki + Meiwa + An’ei + Tenmei + Kansei + Kyōwa + Bunka + Bunsei + Tenpō + Kōka + Kaei + Ansei + Man’en + Bunkyū + Genji + Keiō + Meiji + Taishō + e. Shōwa + Heisei + + + Taika + Tenpyō + T. kampō + T. shōhō + T. hōji + T. jingo + Saikō + Ten-an + Jōgan + Gangyō + Kanpyō + Jōhei + Tenryaku + Eien + Eihō + + + + + + {1} 'a' 'les' {0} + + + + + {1} 'a' 'les' {0} + + + + + {1}, {0} + + + + y G + MMM y G + d MMM 'de' y G + E, d MMM 'de' y G + y G + y G + y-MM GGGGG + dd-MM-y GGGGG + E, d-M-y GGGGG + MMM y G + d MMM 'de' y G + E, d MMM 'de' y G + QQQ y G + QQQQ y G + + + + d – d + + + M – M + + + LLL – LLL + + + y – y G + + + MM – MM/y GGGGG + MM/y – MM/y GGGGG + + + d/M/y – d/M/y GGGGG + d/M/y – d/M/y GGGGG + d/M/y – d/M/y GGGGG + + + E, d/M/y – E, d/M/y GGGGG + E, d/M/y – E, d/M/y GGGGG + E, d/M/y – E, d/M/y GGGGG + + + LLL – LLL y G + MMM y – MMM y G + + + d – d MMM 'de' y + d MMM – d MMM 'de' y G + + + LLLL – LLLL y G + + + + + + + + + d – d + + + M – M + + + LLL – LLL + + + y – y G + + + LLL – LLL y G + + + d – d MMM 'de' y + + + + + + + + antes de la R.D.C. + Minguo + + + A.R.D.C. + Minguo + + + R.D.C. + + + + + + d – d + + + M – M + + + LLL – LLL + + + y – y G + + + LLL – LLL y G + + + d – d MMM 'de' y + + + + + + + + era + + + añu + l’añu pasáu + esti añu + l’añu viniente + + en {0} añu + en {0} años + + + hai {0} añu + hai {0} años + + + + añu + l’añu pas. + esti añu + l’añu vin. + + en {0} añu + en {0} años + + + hai {0} añu + hai {0} años + + + + añu + añu pas. + esti añu + añu vin. + + en {0} a. + en {0} a. + + + hai {0} a. + hai {0} a. + + + + trimestre + trimestre anterior + esti trimestre + trimestre viniente + + en {0} trimestre + en {0} trimestres + + + hai {0} trimestre + hai {0} trimestres + + + + tri. + trim. ant. + esti trim. + trim. vin. + + en {0} trim. + en {0} trim. + + + hai {0} trim. + hai {0} trim. + + + + tri. + trim. ant. + esti trim. + trim. vin. + + en {0} tr. + en {0} tr. + + + hai {0} tr. + hai {0} tr. + + + + mes + el mes pasáu + esti mes + el mes viniente + + en {0} mes + en {0} meses + + + hai {0} mes + hai {0} meses + + + + mes + mes pas. + esti mes + mes vin. + + en {0} mes + en {0} meses + + + hai {0} mes + hai {0} meses + + + + mes + mes pas. + esti mes + mes vin. + + en {0} m. + en {0} m. + + + hai {0} m. + hai {0} m. + + + + selmana + la selmana pasada + esta selmana + la selmana viniente + + en {0} selmana + en {0} selmanes + + + hai {0} selmana + hai {0} selmanes + + + + sel. + selm. pasada + esta selm. + selm. viniente + + en {0} selm. + en {0} selm. + + + hai {0} selm. + hai {0} selm. + + + + sel. + selm. pas. + esta selm. + selm. vin. + + en {0} se. + en {0} se. + + + hai {0} se. + hai {0} se. + + + + día + antayeri + ayeri + güei + mañana + pasao mañana + + en {0} día + en {0} díes + + + hai {0} día + hai {0} díes + + + + día + antayeri + ayeri + güei + mañana + pasao mañana + + en {0} día + en {0} díes + + + hai {0} día + hai {0} díes + + + + día + antay. + ayeri + güei + mañ. + p. mañ. + + en {0} d. + en {0} d. + + + hai {0} d. + hai {0} d. + + + + día de la selmana + + + el domingu pasáu + esti domingu + el domingu viniente + + + dom. pasáu + esti dom. + dom. viniente + + + dom. pas. + esti dom. + dom. vin. + + + el llunes pasáu + esti llunes + el llunes viniente + + + llun. pasáu + esti llun. + llun. viniente + + + llu. pas. + esti llu. + llu. vin. + + + el martes pasáu + esti martes + el martes viniente + + + mar. pasáu + esti mar. + mar. viniente + + + mar. pas. + esti mar. + mar. vin. + + + el miércoles pasáu + esti miércoles + el miércoles viniente + + + mié. pasáu + esti mié. + mié. viniente + + + mié. pas. + esti mié. + mié. vin. + + + el xueves pasáu + esti xueves + el xueves viniente + + + xue. pasáu + esti xue. + xue. viniente + + + xue. pas. + esti xue. + xue. vin. + + + el vienres pasáu + esti vienres + el vienres viniente + + + vie. pasáu + esti vie. + vie. viniente + + + vie. pas. + esti vie. + vie. vin. + + + el sábadu pasáu + esti sábadu + el sábadu viniente + + + sáb. pasáu + esti sáb. + sáb. viniente + + + sáb. pas. + esti sáb. + sáb. vin. + + + periodu del día + + + hora + + en {0} hora + en {0} hores + + + hai {0} hora + hai {0} hores + + + + h. + + en {0} h. + en {0} h. + + + hai {0} h. + hai {0} h. + + + + h. + + en {0} h. + en {0} h. + + + hai {0} h. + hai {0} h. + + + + minutu + + en {0} minutu + en {0} minutos + + + hai {0} minutu + hai {0} minutos + + + + min. + + en {0} min. + en {0} min. + + + hai {0} min. + hai {0} min. + + + + m. + + en {0} min. + en {0} min. + + + hai {0} min. + hai {0} min. + + + + segundu + agora + + en {0} segundu + en {0} segundos + + + hai {0} segundu + hai {0} segundos + + + + s. + agora + + en {0} seg. + en {0} seg. + + + hai {0} seg. + hai {0} seg. + + + + s. + agora + + en {0} s. + en {0} s. + + + hai {0} s. + hai {0} s. + + + + estaya horaria + + + + +HH:mm;-HH:mm + GMT{0} + GMT + Hora de {0} + Hora braniega de {0} + Hora estándar de {0} + {1} ({0}) + + Ciudá desconocida + + + Andorra + + + Dubai + + + Kabul + + + Antigua + + + Anguila + + + Tirana + + + Yerevan + + + Luanda + + + Rothera + + + Palmer + + + Troll + + + Syowa + + + Mawson + + + Davis + + + Vostok + + + Casey + + + Dumont d’Urville + + + McMurdo + + + Rio Gallegos + + + Mendoza + + + San Juan + + + Ushuaia + + + La Rioja + + + San Luis + + + Catamarca + + + Salta + + + Jujuy + + + Tucumán + + + Córdoba + + + Buenos Aires + + + Pago Pago + + + Viena + + + Perth + + + Eucla + + + Darwin + + + Adelaida + + + Broken Hill + + + Currie + + + Melbourne + + + Hobart + + + Lindeman + + + Sydney + + + Brisbane + + + Macquarie + + + Lord Howe + + + Aruba + + + Mariehamn + + + Bakú + + + Sarajevo + + + Barbados + + + Dhaka + + + Bruxeles + + + Uagadugú + + + Sofía + + + Baḥréin + + + Bujumbura + + + Porto-Novo + + + St. Barthelemy + + + Bermuda + + + Brunéi + + + La Paz + + + Kralendijk + + + Eirunepe + + + Rio Branco + + + Porto Velho + + + Boa Vista + + + Manaus + + + Cuiaba + + + Santarem + + + Campo Grande + + + Belem + + + Araguaina + + + Sao Paulo + + + Bahía + + + Fortaleza + + + Maceio + + + Recife + + + Noronha + + + Nassau + + + Thimphu + + + Gaborone + + + Minsk + + + Belize + + + Dawson + + + Whitehorse + + + Inuvik + + + Vancouver + + + Dawson Creek + + + Creston + + + Yellowknife + + + Edmonton + + + Swift Current + + + Cambridge Bay + + + Regina + + + Winnipeg + + + Resolute + + + Rainy River + + + Rankin Inlet + + + Atikokan + + + Thunder Bay + + + Nipigon + + + Toronto + + + Iqaluit + + + Pangnirtung + + + Moncton + + + Halifax + + + Goose Bay + + + Glace Bay + + + Blanc-Sablon + + + St. John’s + + + Cocos + + + Kinshasa + + + Lubumbashi + + + Bangui + + + Brazzaville + + + Zurich + + + Abidjan + + + Rarotonga + + + Pascua + + + Santiago + + + Douala + + + Urumqi + + + Shanghai + + + Bogotá + + + Costa Rica + + + La Habana + + + Cabu Verde + + + Curaçao + + + Christmas + + + Nicosia + + + Praga + + + Busingen + + + Berlín + + + Xibuti + + + Copenhague + + + Dominica + + + Santu Domingu + + + Arxel + + + Galápagos + + + Guayaquil + + + Tallinn + + + El Cairu + + + El Aaiun + + + Asmara + + + Canaries + + + Ceuta + + + Madrid + + + Adís Abeba + + + Ḥélsinki + + + Fixi + + + Stanley + + + Chuuk + + + Pohnpei + + + Kosrae + + + Islles Feroe + + + París + + + Libreville + + + + Hora braniega británica + + Londres + + + Granada + + + Tbilisi + + + Cayenne + + + Guernsey + + + Accra + + + Xibraltar + + + Thule + + + Nuuk + + + Ittoqqortoormiit + + + Danmarkshavn + + + Banjul + + + Conakry + + + Guadalupe + + + Malabo + + + Atenes + + + Xeorxa del Sur + + + Guatemala + + + Guam + + + Bissau + + + Guyana + + + Ḥong Kong + + + Tegucigalpa + + + Zagreb + + + Puertu Príncipe + + + Budapest + + + Xakarta + + + Pontianak + + + Makassar + + + Xayapura + + + + Hora estándar irlandesa + + Dublín + + + Xerusalén + + + Islla de Man + + + Calcuta + + + Chagos + + + Bagdag + + + Teḥrán + + + Reikiavik + + + Roma + + + Jersey + + + Xamaica + + + Amán + + + Tokiu + + + Nairobi + + + Bishkek + + + Phnom Penh + + + Enderbury + + + Kiritimati + + + Tarawa + + + Comoro + + + St. Kitts + + + Pyong Yang + + + Seúl + + + Kuwait + + + Caimán + + + Aqtau + + + Oral + + + Aqtobe + + + Qyzylorda + + + Almaty + + + Vientián + + + Beirut + + + St. Lucia + + + Vaduz + + + Colombo + + + Monrovia + + + Maseru + + + Vilnius + + + Luxemburgu + + + Riga + + + Trípoli + + + Casablanca + + + Mónacu + + + Chisinau + + + Podgorica + + + Marigot + + + Antananarivo + + + Kwajalein + + + Majuro + + + Skopje + + + Bamako + + + Rangún + + + Hovd + + + Ulán Bátor + + + Choibalsan + + + Macáu + + + Saipan + + + La Martinica + + + Nuakxot + + + Montserrat + + + Malta + + + Mauriciu + + + Maldives + + + Blantyre + + + Tijuana + + + Santa Isabel + + + Hermosillo + + + Mazatlan + + + Chihuahua + + + Bahía Banderas + + + Ojinaga + + + Monterrey + + + Ciudá de Méxicu + + + Matamoros + + + Mérida + + + Cancún + + + Kuala Lumpur + + + Kuching + + + Maputo + + + Windhoek + + + Noumea + + + Niaméi + + + Norfolk + + + Lagos + + + Managua + + + Amsterdam + + + Oslo + + + Katmandú + + + Nauru + + + Niue + + + Chatham + + + Auckland + + + Mascate + + + Panamá + + + Lima + + + Tahiti + + + Marquesas + + + Gambier + + + Port Moresby + + + Bougainville + + + Manila + + + Karachi + + + Varsovia + + + Miquelon + + + Pitcairn + + + Puertu Ricu + + + Gaza + + + Hebrón + + + Les Azores + + + Madeira + + + Lisboa + + + Palau + + + Asunción + + + Qatar + + + Reunión + + + Bucarest + + + Belgráu + + + Kaliningráu + + + Simferopol + + + Moscú + + + Volgográu + + + Samara + + + Yekaterimburgu + + + Omsk + + + Novosibirsk + + + Novokuznetsk + + + Krasnoyarsk + + + Irkutsk + + + Chita + + + Yakutsk + + + Vladivostok + + + Khandyga + + + Saxalín + + + Ust-Nera + + + Magadán + + + Srednekolymsk + + + Kamchatka + + + Anadyr + + + Kigali + + + Riyad + + + Guadalcanal + + + Mahe + + + Ḥartum + + + Estocolmu + + + Singapur + + + Santa Lena + + + Liubliana + + + Longyearbyen + + + Bratislava + + + Freetown + + + San Marín + + + Dakar + + + Mogadixu + + + Paramaribo + + + Juba + + + Santu Tomé + + + El Salvador + + + Lower Prince’s Quarter + + + Damascu + + + Mbabane + + + Grand Turk + + + Xamena + + + Kerguelen + + + Lomé + + + Bangkok + + + Duxanbé + + + Fakaofo + + + Dili + + + Ashgabat + + + Túnez + + + Tongatapu + + + Istanbul + + + Puertu España + + + Funafuti + + + Taipei + + + Dar es Salaam + + + Uzhgorod + + + Kiev + + + Zaporozhye + + + Kampala + + + Midway + + + Johnston + + + Wake + + + Adak + + + Nome + + + + HST + HST + HDT + + Honolulu + + + Anchorage + + + Yakutat + + + Sitka + + + Juneau + + + Metlakatla + + + Los Angeles + + + Boise + + + Phoenix + + + Denver + + + Beulah, Dakota del Norte + + + Nueva Salem, Dakota del Norte + + + Center, Dakota del Norte + + + Chicago + + + Menominee + + + Vincennes, Indiana + + + Petersburg, Indiana + + + Tell City, Indiana + + + Knox, Indiana + + + Winamac, Indiana + + + Marengo, Indiana + + + Indianapolis + + + Louisville + + + Vevay, Indiana + + + Monticello, Kentucky + + + Detroit + + + Nueva York + + + Montevideo + + + Samarcanda + + + Tashkent + + + El Vaticanu + + + St. Vincent + + + Caracas + + + Tórtola + + + St. Thomas + + + Ciudá de Ho Chi Minh + + + Efate + + + Wallis + + + Apia + + + Aden + + + Mayotte + + + Johannesburgu + + + Lusaka + + + Harare + + + + hora d’Acre + hora estándar d’Acre + hora braniega d’Acre + + + + + Hora d’Afganistán + + + + + Hora d’África central + + + + + Hora d’África del este + + + + + Hora de Sudáfrica + + + + + Hora d’África del oeste + Hora estándar d’África del oeste + Hora braniega d’África del oeste + + + + + Hora d’Alaska + Hora estándar d’Alaska + Hora braniega d’Alaska + + + AKT + AKST + AKDT + + + + + Hora d’Almaty + hora estándar d’Almaty + hora braniega d’Almaty + + + + + Hora del Amazonas + Hora estándar del Amazonas + Hora braniega del Amazonas + + + + + Hora central norteamericana + Hora estándar central norteamericana + Hora braniega central norteamericana + + + CT + CST + CDT + + + + + Hora del este norteamericanu + Hora estándar del este norteamericanu + Hora braniega del este norteamericanu + + + ET + EST + EDT + + + + + Hora de les montañes norteamericanes + Hora estándar de les montañes norteamericanes + Hora braniega de les montañes norteamericanes + + + MT + MST + MDT + + + + + Hora del Pacíficu norteamericanu + Hora estándar del Pacíficu norteamericanu + Hora braniega del Pacíficu norteamericanu + + + PT + PST + PDT + + + + + hora d’Anadyr + hora estándar d’Anadyr + hora braniega d’Anadyr + + + + + Hora d’Apia + Hora estándar d’Apia + Hora braniega d’Apia + + + + + Hora d’Aqtau + Hora estándar d’Aqtau + Hora braniega d’Aqtau + + + + + Hora d’Aqtobe + Hora estándar d’Aqtobe + Hora braniega d’Aqtobe + + + + + Hora d’Arabia + Hora estándar d’Arabia + Hora braniega d’Arabia + + + + + Hora d’Arxentina + Hora estándar d’Arxentina + Hora braniega d’Arxentina + + + + + Hora occidental d’Arxentina + Hora estándar occidental d’Arxentina + Hora braniega occidental d’Arxentina + + + + + Hora d’Armenia + Hora estándar d’Armenia + Hora braniega d’Armenia + + + + + Hora del Atlánticu + Hora estándar del Atlánticu + Hora braniega del Atlánticu + + + AT + AST + ADT + + + + + Hora d’Australia central + Hora estándar d’Australia central + Hora braniega d’Australia central + + + + + Hora d’Australia central del oeste + Hora estándar d’Australia central del oeste + Hora braniega d’Australia central del oeste + + + + + Hora d’Australia del este + Hora estándar d’Australia del este + Hora braniega d’Australia del este + + + + + Hora d’Australia del oeste + Hora estándar d’Australia del oeste + Hora braniega d’Australia del oeste + + + + + Hora d’Azerbaixán + Hora estándar d’Azerbaixán + Hora braniega d’Azerbaixán + + + + + Hora de les Azores + Hora estándar de les Azores + Hora braniega de Les Azores + + + + + Hora de Bangladex + Hora estándar de Bangladex + Hora braniega de Bangladex + + + + + Hora de Bután + + + + + Hora de Bolivia + + + + + Hora de Brasilia + Hora estándar de Brasilia + Hora braniega de Brasilia + + + + + Hora de Brunéi Darussalam + + + + + Hora de Cabu Verde + Hora estándar de Cabu Verde + Hora braniega de Cabu Verde + + + + + Hora de Casey + + + + + Hora estándar de Chamorro + + + + + Hora de Chatham + Hora estándar de Chatham + Hora braniega de Chatham + + + + + Hora de Chile + Hora estándar de Chile + Hora braniega de Chile + + + + + Hora de China + Hora estándar de China + Hora braniega de China + + + + + Hora de Choibalsan + Hora estándar de Choibalsan + Hora braniega de Choibalsan + + + + + Hora estándar de la Islla Christmas + + + + + Hora de les Islles Cocos + + + + + Hora de Colombia + Hora estándar de Colombia + Hora braniega de Colombia + + + + + Hora de les Islles Cook + Hora estándar de les Islles Cook + Hora media braniega de les Islles Cook + + + + + Hora de Cuba + Hora estándar de Cuba + Hora braniega de Cuba + + + + + Hora de Davis + + + + + Hora de Dumont-d’Urville + + + + + Hora de Timor Oriental + + + + + Hora de la Islla de Pascua + Hora estándar de la Islla de Pascua + Hora braniega de la Islla de Pascua + + + + + Hora d’Ecuador + + + + + Hora d’Europa Central + Hora estándar d’Europa Central + Hora braniega d’Europa Central + + + CET + CET + CEST + + + + + Hora d’Europa del Este + Hora estándar d’Europa del Este + Hora braniega d’Europa del Este + + + EET + EET + EEST + + + + + Hora d’Europa del estremu este + + + + + Hora d’Europa Occidental + Hora estándar d’Europa Occidental + Hora braniega d’Europa Occidental + + + WET + WET + WEST + + + + + Hora de les Islles Falkland + Hora estándar de les Islles Falkland + Hora braniega de les Islles Falkland + + + + + Hora de Fixi + Hora estándar de Fixi + Hora braniega de Fixi + + + + + Hora de La Guyana Francesa + + + + + Hora del sur y l’antárticu francés + + + + + Hora de Galápagos + + + + + Hora de Gambier + + + + + Hora de Xeorxa + Hora estándar de Xeorxa + Hora braniega de Xeorxa + + + + + Hora de les Islles Gilbert + + + + + Hora media de Greenwich + + + GMT + + + + + Hora de Groenlandia oriental + Hora estándar de Groenlandia oriental + Hora braniega de Groenlandia oriental + + + + + Hora de Groenlandia occidental + Hora estándar de Groenlandia occidental + Hora braniega de Groenlandia occidental + + + + + Hora estándar de Guam + + + + + Hora estándar del Golfu + + + + + Hora de La Guyana + + + + + Hora de Hawaii-Aleutianes + Hora estándar de Hawaii-Aleutianes + Hora braniega de Hawaii-Aleutianes + + + HAT + HAST + HADT + + + + + Hora de Ḥong Kong + Hora estándar de Ḥong Kong + Hora braniega de Ḥong Kong + + + + + Hora de Hovd + Hora estándar de Hovd + Hora braniega de Hovd + + + + + Hora estándar de la India + + + + + Hora del Océanu Índicu + + + + + Hora d’Indochina + + + + + Hora d’Indonesia central + + + + + Hora d’Indonesia del este + + + + + Hora d’Indonesia del oeste + + + + + Hora d’Irán + Hora estándar d’Irán + Hora braniega d’Irán + + + + + Hora d’Irkutsk + Hora estándar d’Irkutsk + Hora braniega d’Irkutsk + + + + + Hora d’Israel + Hora estándar d’Israel + Hora braniega d’Israel + + + + + Hora de Xapón + Hora estándar de Xapón + Hora braniega de Xapón + + + + + hora de Petropavlovsk-Kamchatski + hora estandar de Petropavlovsk-Kamchatski + hora braniega de Petropavlovsk-Kamchatski + + + + + Hora del Kazakstán oriental + + + + + Hora del Kazakstán occidental + + + + + Hora de Corea + Hora estándar de Corea + Hora braniega de Corea + + + + + Hora de Kosrae + + + + + Hora de Krasnoyarsk + Hora estándar de Krasnoyarsk + Hora braniega de Krasnoyarsk + + + + + Hora del Kirguistán + + + + + Hora de Lanka + + + + + Hora de les Islles Line + + + + + Hora de Lord Howe + Hora estándar de Lord Howe + Hora braniega de Lord Howe + + + + + Hora de Macáu + Hora estándar de Macáu + Hora braniega de Macáu + + + + + Hora de la Islla Macquarie + + + + + Hora de Magadán + Hora estándar de Magadán + Hora braniega de Magadán + + + + + Hora de Malasia + + + + + Hora de Les Maldives + + + + + Hora de les Marqueses + + + + + Hora de les Islles Marshall + + + + + Hora de Mauriciu + Hora estándar de Mauriciu + Hora braniega de Mauriciu + + + + + Hora de Mawson + + + + + Hora del noroeste de Méxicu + Hora estándar del noroeste de Méxicu + Hora braniega del noroeste de Méxicu + + + + + Hora del Pacíficu de Méxicu + Hora estándar del Pacíficu de Méxicu + Hora braniega del Pacíficu de Méxicu + + + + + Hora d’Ulán Bátor + Hora estándar d’Ulán Bátor + Hora braniega d’Ulán Bátor + + + + + Hora de Moscú + Hora estándar de Moscú + Hora braniega de Moscú + + + + + Hora de Myanmar + + + + + Hora de Nauru + + + + + Hora del Nepal + + + + + Hora de Nueva Caledonia + Hora estándar de Nueva Caledonia + Hora braniega de Nueva Caledonia + + + + + Hora de Nueva Zelanda + Hora estándar de Nueva Zelanda + Hora braniega de Nueva Zelanda + + + + + Hora de Newfoundland + Hora estándar de Newfoundland + Hora braniega de Newfoundland + + + + + Hora de Niue + + + + + Hora de la Islla Norfolk + + + + + Hora de Fernando de Noronha + Hora estándar de Fernando de Noronha + Hora braniega de Fernando de Noronha + + + + + Hora de les Islles Marianes del Norte + + + + + Hora de Novosibirsk + Hora estándar de Novosibirsk + Hora braniega de Novosibirsk + + + + + Hora d’Omsk + Hora estándar d’Omsk + Hora braniega d’Omsk + + + + + Hora del Paquistán + Hora estándar del Paquistán + Hora braniega del Paquistán + + + + + Hora de Palau + + + + + Hora de Papúa Nueva Guinea + + + + + Hora del Paraguái + Hora estándar del Paraguái + Hora braniega del Paraguái + + + + + Hora del Perú + Hora estándar del Perú + Hora braniega del Perú + + + + + Hora de Filipines + Hora estándar de Filipines + Hora de branu de Filipines + + + + + Hora de les Islles Phoenix + + + + + Hora de Saint Pierre y Miquelon + Hora estándar de Saint Pierre y Miquelon + Hora braniega de Saint Pierre y Miquelon + + + + + Hora de Pitcairn + + + + + Hora de Ponape + + + + + Hora de Qyzylorda + Hora estándar de Qyzylorda + Hora braniega de Qyzylorda + + + + + Hora de Reunión + + + + + Hora de Rothera + + + + + Hora de Saxalín + Hora estándar de Saxalín + Hora braniega de Saxalín + + + + + Hora de Samara + Hora estándar de Samara + Hora braniega de Samara + + + + + Hora de Samoa + Hora estándar de Samoa + Hora braniega de Samoa + + + + + Hora de Les Seixeles + + + + + Hora estándar de Singapur + + + + + Hora de les Islles Salomón + + + + + Hora de Xeorxa del Sur + + + + + Hora del Surinam + + + + + Hora de Syowa + + + + + Hora de Tahiti + + + + + Hora de Taipéi + Hora estándar de Taipéi + Hora braniega de Taipéi + + + + + Hora del Taxiquistán + + + + + Hora de Tokelau + + + + + Hora de Tonga + Hora estándar de Tonga + Hora braniega de Tonga + + + + + Hora de Chuuk + + + + + Hora del Turkmenistán + Hora estándar del Turkmenistán + Hora braniega del Turkmenistán + + + + + Hora de Tuvalu + + + + + Hora del Uruguái + Hora estándar del Uruguái + Hora braniega del Uruguái + + + + + Hora del Uzbequistán + Hora estándar del Uzbequistán + Hora braniega del Uzbequistán + + + + + Hora de Vanuatu + Hora estándar de Vanuatu + Hora braniega de Vanuatu + + + + + Hora de Venezuela + + + + + Hora de Vladivostok + Hora estándar de Vladivostok + Hora braniega de Vladivostok + + + + + Hora de Volgográu + Hora estándar de Volgográu + Hora braniega de Volgográu + + + + + Hora de Vostok + + + + + Hora de la Islla Wake + + + + + Hora de Wallis y Futuna + + + + + Hora de Yakutsk + Hora estándar de Yakutsk + Hora braniega de Yakutsk + + + + + Hora de Yekaterimburgu + Hora estándar de Yekaterimburgu + Hora braniega de Yekaterimburgu + + + + + + latn + + latn + + 1 + + ٫ + ٬ + ٪ + ‏+ + ‏- + ؉ + : + + + ‎+‎ + ‎-‎ + + + , + . + ; + % + + + - + E + × + + + ND + : + + + + + #,##0.### + + + + + 0 millar + 0 millares + 00 millares + 00 millares + 000 millares + 000 millares + 0 millón + 0 millones + 00 millones + 00 millones + 000 millones + 000 millones + 0G + 0G + 00G + 00G + 000G + 000G + 0T + 0T + 00T + 00T + 000T + 000T + + + + + 0K + 0K + 00K + 00K + 000K + 000K + 0M + 0M + 00M + 00M + 000M + 000M + 0G + 0G + 00G + 00G + 000G + 000G + 0T + 0T + 00T + 00T + 000T + 000T + + + + + + + #E0 + + + + + + + #,##0% + + + + + + + #,##0.00 ¤ + + + #,##0.00 ¤ + + + + + 0K ¤ + 0K ¤ + 00K ¤ + 00K ¤ + 000K ¤ + 000K ¤ + 0M ¤ + 0M ¤ + 00M ¤ + 00M ¤ + 000M ¤ + 000M ¤ + 0G ¤ + 0G ¤ + 00G ¤ + 00G ¤ + 000G ¤ + 000G ¤ + 0T ¤ + 0T ¤ + 00T ¤ + 00T ¤ + 000T ¤ + 000T ¤ + + + {0} {1} + {0} {1} + + + + Peseta andorrana + peseta andorrana + pesetes andorranes + ADP + + + Dirḥam de los Emiratos Árabes Xuníos + dirḥam EAX + dirḥams EAX + AED + + + Afganí afganistanu (1927–2002) + afganí afganistanu (1927–2002) + afganís afganistanos (1927–2002) + AFA + + + Afganí afganistanu + afganí afganistanu + afganís afganistanos + AFN + + + Lek albanés (1946–1965) + lek albanés (1946–1965) + lekë albaneses (1946–1965) + + + Lek albanés + lek albanés + lekë albaneses + ALL + + + Dram armeniu + dram armeniu + drams armenios + AMD + + + Guílder de les Antilles Neerlandeses + guílder de les Antilles Neerlandeses + guílders de les Antilles Neerlandeses + ANG + + + Kwanza angolanu + kwanza angolanu + kwanzas angolanos + AOA + Kz + + + Kwanza angolanu (1977–1991) + kwanza angolanu (1977–1991) + kwanzas angolanos (1977–1991) + AOK + + + Kwanza nuevu angolanu (1990–2000) + kwanza nuevu angolanu (1990–2000) + kwanzas nuevos angolanos (1990–2000) + AON + + + Kwanza angolanu reaxustáu (1995–1999) + kwanza angolanu reaxustáu (1995–1999) + kwanzas angolanos reaxustaos (1995–1999) + AOR + + + Austral arxentín + austral arxentín + australes arxentinos + ARA + + + Pesu Ley arxentín (1970–1983) + pesu ley arxentín (1970–1983) + pesos ley arxentinos (1970–1983) + ARL + + + Pesu arxentín (1881–1970) + pesu arxentín (1881–1970) + pesos arxentinos (1881–1970) + ARM + + + Pesu arxentín (1983–1985) + pesu arxentín (1983–1985) + pesos arxentinos (1983–1985) + ARP + + + pesu arxentín + pesu arxentín + pesos arxentinos + ARS + $ + + + Chelín austriacu + chelín austriacu + chelinos austriacos + ATS + + + Dólar australianu + dólar australianu + dólares australianos + A$ + $ + + + Florín arubanu + florín arubanu + florines arubanos + AWG + + + Manat azerbaixanu (1993–2006) + manat azerbaixanu (1993–2006) + manats azerbaixanos (1993–2006) + AZM + + + Manat azerbaixanu + manat azerbaixanu + manats azerbaixanos + AZN + + + Dinar de Bosnia-Herzegovina (1992–1994) + dinar de Bosnia-Herzegovina (1992–1994) + dinares de Bosnia-Herzegovina (1992–1994) + BAD + + + marcu convertible de Bosnia-Herzegovina + marcu convertible de Bosnia-Herzegovina + marcos convertibles de Bosnia-Herzegovina + BAM + KM + + + Dinar nuevu de Bosnia-Herzegovina (1994–1997) + dinar nuevu de Bosnia-Herzegovina (1994–1997) + dinares nuevos de Bosnia-Herzegovina (1994–1997) + BAN + + + Dólar barbadianu + dólar barbadianu + dólares barbadianos + BBD + $ + + + Taka bangladexí + taka bangladexí + takas bangladexinos + BDT + + + + Francu belga (convertible) + francu belga (convertible) + francos belgas (convertibles) + BEC + + + Francu belga + francu belga + francos belgues + BEF + + + Francu belga (financieru) + francu belga (financieru) + francos belgues (financieros) + BEL + + + Lev fuerte búlgaru + lev fuerte búlgaru + leva fuertes búlgaros + BGL + + + Lev socialista búlgaru + lev socialista búlgaru + leva socialistes búlgaros + BGM + + + Lev búlgaru + lev búlgaru + leva búlgaros + BGN + + + Lev búlgaru (1879–1952) + lev búlgaru (1879–1952) + leva búlgaros (1879–1952) + BGO + + + Dinar baḥreiní + dinar baḥreiní + dinares baḥreininos + BHD + + + Francu burundianu + francu burundianu + francos burundianos + BIF + + + Dólar bermudianu + dólar bermudianu + dólares bermudianos + BMD + $ + + + dólar bruneyanu + dólar bruneyanu + dólares bruneyanos + BND + $ + + + Bolivianu de Bolivia + bolivianu de Bolivia + bolivianos de Bolivia + BOB + Bs + + + Boliviano de Bolivia (1863–1963) + boliviano de Bolivia (1863–1963) + bolivianos de Bolivia (1863–1963) + BOL + + + Pesu bolivianu + pesu bolivianu + pesos bolivianos + BOP + + + Bolivianos mvdol + bolivianu mvdol + bolivianos mvdol + BOV + + + Cruzeiro nuevu brasilanu (1967–1986) + cruzeiro nuevu brasilanu (1967–1986) + cruzeiros nuevos brasilanos (1967–1986) + BRB + + + Cruzado brasilanu (1986–1989) + cruzado brasilanu (1986–1989) + cruzados brasilanos (1986–1989) + BRC + + + Cruzeiro brasilanu (1990–1993) + cruzeiro brasilanu (1990–1993) + cruzeiros brasilanos (1990–1993) + BRE + + + real brasilanu + real brasilanu + reales brasilanos + R$ + R$ + + + Cruzado nuevu brasilanu (1989–1990) + cruzado nuevu brasilanu (1989–1990) + cruzados nuevos brasilanos (1989–1990) + BRN + + + Cruzeiro brasilanu (1993–1994) + cruzeiro brasilanu (1993–1994) + cruzeiros brasilanos (1993–1994) + BRR + + + Cruzeiru brasilanu (1942–1967) + cruzeiru brasilanu (1942–1967) + cruzeiros brasilanos (1942–1967) + BRZ + + + Dólar bahamés + dólar bahamés + dólares bahameses + BSD + $ + + + Ngultrum butanés + ngultrum butanés + ngultrums butaneses + BTN + + + Kyat birmanu + kyat birmanu + kyats birmanos + BUK + + + Pula botsuaniana + pula botsuaniana + pulas botsuanianes + BWP + P + + + Rublu nuevu bielorrusu (1994–1999) + rublu nuevu bielorrusu (1994–1999) + rublos nuevos bielorrusos (1994–1999) + BYB + + + Rublu bielorrusu + rublu bielorrusu + rublos bielorrusos + BYR + BYR + + + Dólar belizianu + dólar belizianu + dólares belizianos + BZD + $ + + + Dólar canadiense + dólar canadiense + dólares canadienses + CA$ + $ + + + francu congolés + francu congolés + francos congoleses + CDF + + + Euru WIR + euru WIR + euros WIR + CHE + + + francu suizu + francu suizu + francos suizos + CHF + + + Francu WIR + francu WIR + francos WIR + CHW + + + Escudu chilenu + escudu chilenu + escudos chilenos + CLE + + + Unidá de cuenta chilena (UF) + unidá de cuenta chilena (UF) + unidaes de cuenta chilenes (UF) + CLF + + + pesu chilenu + pesu chilenu + pesos chilenos + CLP + $ + + + Dólar del Bancu Popular Chinu + dólar del Bancu Popular Chinu + dólares del Bancu Popular Chinu + + + Yuan chinu + yuan chinu + yuanes chinos + CN¥ + ¥ + + + pesu colombianu + pesu colombianu + pesos colombianos + COP + $ + + + Unidá de valor real colombiana + unidá de valor real colombiana + unidaes de valor real colombianes + COU + + + Colón costarricanu + colón costarricanu + colones costarricanos + CRC + + + + Dinar serbiu (2002–2006) + dinar serbiu (2002–2006) + dinares serbios (2002–2006) + CSD + + + Corona fuerte checoslovaca + corona fuerte checoslovaca + corones fuertes checoslovaques + CSK + + + Pesu cubanu convertible + pesu cubanu convertible + pesos cubanos convertibles + CUC + $ + + + Pesu cubanu + pesu cubanu + pesos cubanos + CUP + $ + + + escudu cabuverdianu + escudu cabuverdianu + escudos cabuverdianos + CVE + + + Llibra xipriota + llibra xipriota + llibres xipriotes + CYP + + + Corona checa + corona checa + corones cheques + CZK + + + + Marcu d’Alemaña Oriental + marcu d’Alemaña Oriental + marcos d’Alemaña Oriental + DDM + + + Marcu alemán + marcu alemán + marcos alemanes + DEM + + + Francu xibutianu + francu xibutianu + francos xibutianos + DJF + + + corona danesa + corona danesa + corones daneses + DKK + DKK + + + Pesu dominicanu + pesu dominicanu + pesos dominicanos + DOP + $ + + + dinar arxelín + dinar arxelín + dinares arxelinos + DZD + + + Sucre ecuatorianu + sucre ecuatorianu + sucres ecuatorianos + ECS + + + Unidá ecuatoriana de valor constante + unidá ecuatoriana de valor constante + unidaes ecuatorianes de valor constante + ECV + + + Corona estonia + corona estoniana + corones estonianes + EEK + + + llibra exipciana + llibra exipciana + llibres exipcianes + EGP + + + + Nakfa eritréu + nakfa eritréu + nafkas eritreos + ERN + + + Peseta española (cuenta A) + peseta española (cuenta A) + pesetes españoles (cuenta A) + ESA + + + Peseta española (cuenta convertible) + peseta española (cuenta convertible) + pesetes españoles (cuenta convertible) + ESB + + + Peseta española + peseta española + pesetes españoles + ESP + + + + Birr etíope + birr etíope + birrs etíopes + ETB + + + euro + euro + euros + + + + + Marcu finlandés + marcu finlandés + marcos finlandeses + FIM + + + dólar fixanu + dólar fixanu + dólares fixanos + FJD + $ + + + llibra malviniana + llibra malviniana + llibres malvinianes + FKP + £ + + + Francu francés + francu francés + francos franceses + FRF + + + llibra esterlina + llibra esterlina + llibres esterlines + £ + £ + + + Kupon larit xeorxanu + kupon larit xeorxanu + kupon larits xeorxanos + GEK + + + Lari xeorxanu + lari xeorxanu + laris xeorxanos + GEL + + + Cedi ghanianu (1979–2007) + cedi ghanianu (1979–2007) + cedis ghanianos (1979–2007) + GHC + + + cedi ghanianu + cedi ghanianu + cedis ghanianos + GHS + + + llibra de Xibraltar + llibra de Xibraltar + llibres de Xibraltar + GIP + £ + + + dalasi gambianu + dalasi gambianu + dalasis gambianos + GMD + + + francu guineanu + francu guineanu + francos guineanos + GNF + FG + + + syli guineanu + syli guineanu + sylis guineanos + GNS + + + Ekwele de Guinea Ecuatorial + ekwele de Guinea Ecuatorial + ekweles de Guinea Ecuatorial + GQE + + + Dracma griegu + dracma griegu + dracmes griegos + GRD + + + Quetzal guatemalianu + quetzal guatemalianu + quetzales guatemalianos + GTQ + Q + + + Escudo de Guinea portuguesa + escudo de Guinea portuguesa + escudos de Guinea portuguesa + GWE + + + Pesu de Guinea-Bisáu + pesu de Guinea-Bisáu + pesos de Guinea-Bisáu + GWP + + + dólar guyanés + dólar guyanés + dólares guyaneses + GYD + $ + + + Dólar hongkonés + dólar hongkonés + dólares ḥongkoneses + HK$ + $ + + + Lempira hondurana + lempira hondurana + lempires honduranes + HNL + L + + + Dinar croata + dinar croata + dinares croates + HRD + + + Kuna croata + kuna croata + kunes croates + HRK + HRK + + + Gourde haitianu + gourde haitianu + gourde haitianos + HTG + + + Forint húngaru + forint húngaru + forints húngaros + HUF + Ft + + + rupiah indonesia + rupiah indonesia + rupiahs indonesies + IDR + Rp + + + Llibra irlandesa + llibra irlandesa + llibres irlandeses + IEP + + + Llibra israelina + llibra israelina + llibres israelines + ILP + + + Xequel israelín (1980–1985) + xequel israelín (1980–1985) + xequels israelinos (1980–1985) + + + Xequel nuevu israelín + xequel nuevu israelín + xequels nuevos israelinos + + + + + Rupia india + rupia india + rupies indies + + + + + Dinar iraquín + dinar iraquín + dinares iraquinos + IQD + + + Rial iranín + rial iranín + riales iraninos + IRR + + + Corona islandesa (1918–1981) + corona islandesa (1918–1981) + corones islandeses (1918–1981) + + + corona islandesa + corona islandesa + corones islandeses + ISK + ISK + + + Llira italiana + llira italiana + llires italianes + ITL + + + Dólar xamaicanu + dólar xamaicanu + dólares xamaicanos + JMD + $ + + + Dinar xordanu + dinar xordanu + dinares xordanos + JOD + + + Yen xaponés + yen xaponés + yenes xaponeses + ¥ + ¥ + + + Shilling kenianu + shilling kenianu + shillings kenianos + KES + + + Som kirguistanín + som kirguistanín + soms kirguistaninos + KGS + + + riel camboyanu + riel camboyanu + riels camboyanos + KHR + + + + Francu comoranu + francu comoranu + francos comoranos + KMF + CF + + + Won norcoreanu + won norcoreanu + wons norcoreanos + KPW + + + + Hwan surcoreanu (1953–1962) + hwan surcoreanu (1953–1962) + hwans surcoreanos (1953–1962) + KRH + + + Won surcoreanu (1945–1953) + won surcoreanu (1945–1953) + won surcoreanos (1945–1953) + KRO + + + Won surcoreanu + won surcoreanu + wons surcoreanos + + + + + Dinar kuwaitianu + dinar kuwaitianu + dinares kuwaitianos + KWD + + + dólar caimanés + dólar caimanés + dólares caimaneses + KYD + $ + + + Tenge kazaquistanín + tenge kazaquistanín + tenges kazaquistaninos + KZT + + + + kip laosianu + kip laosianu + kips laosianos + LAK + + + + Llibra libanesa + llibra libanesa + llibres libaneses + LBP + + + + Rupia de Sri Lanka + rupia de Sri Lanka + rupies de Sri Lanka + LKR + Rs + + + dólar liberianu + dólar liberianu + dólares liberianos + LRD + $ + + + Loti de Lesothu + loti de Lesothu + lotis de Lesothu + LSL + + + Litas lituanu + litas lituanu + litas lituanos + LTL + Lt + + + Talonas lituanu + talonas lituanu + talonas lituanos + LTT + + + Francu convertible luxemburgués + francu convertible luxemburgués + francos convertibles luxemburgueses + LUC + + + Francu luxemburgués + francu luxemburgués + francos luxemburgueses + LUF + + + Francu financieru luxemburgués + francu financieru luxemburgués + francos financieros luxemburgueses + LUL + + + Lats letón + lats letón + lats letones + LVL + Ls + + + Rublu letón + rublu letón + rublos letones + LVR + + + dinar libiu + dinar libiu + dinares libios + LYD + + + dirḥam marroquín + dirḥam marroquín + dirḥams marroquinos + MAD + + + francu marroquín + francu marroquín + francos marroquinos + MAF + + + Francu monegascu + francu monegascu + francos monegascos + MCF + + + Cupón moldavu + cupón moldavu + cupones moldavos + MDC + + + Leu moldavu + leu moldavu + leus moldavos + MDL + + + Ariary malgaxe + ariary malgaxe + ariarys malgaxes + MGA + Ar + + + Francu malgaxe + francu malgaxe + francos malgaxes + MGF + + + Denar macedoniu + denar macedoniu + denares macedonios + MKD + + + Denar macedoniu (1992–1993) + denar macedoniu (1992–1993) + denares macedonios (1992–1993) + MKN + + + Francu malianu + francu malianu + francos malianos + MLF + + + kyat de Myanmar + kyat de Myanmar + kyats de Myanmar + MMK + K + + + Tugrik mongol + tugrik mongol + tugriks mongoles + MNT + + + + Pataca de Macáu + pataca de Macáu + pataques de Macáu + MOP + + + ouguiya mauritanu + ouguiya mauritanu + ouguiyas mauritanos + MRO + + + Llira maltesa + llira maltesa + llires malteses + MTL + + + Llibra maltesa + llibra maltesa + llibres malteses + MTP + + + Rupia mauriciana + rupia mauriciana + rupies mauricianes + MUR + Rs + + + Rupia maldiviana (1947–1981) + rupia maldiviana (1947–1981) + rupies maldivianes (1947–1981) + + + Rufiyaa maldiviana + rufiyaa maldiviana + rufiyaas maldivianas + MVR + + + Kwacha malauianu + kwacha malauianu + kwachas malauianos + MWK + + + Pesu mexicanu + pesu mexicanu + pesos mexicanos + MX$ + $ + + + Pesu de plata mexicanu (1861–1992) + pesu de plata mexicanu (1861–1992) + pesos de plata mexicanos (1861–1992) + MXP + + + Unidá d’inversión mexicana + unidá d’inversión mexicana + unidaes d’inversión mexicanes + MXV + + + ringgit malasiu + ringgit malasiu + ringgits malasios + MYR + RM + + + Escudu mozambicanu + escudu mozambicanu + escudos mozambicanos + MZE + + + Metical mozambicanu (1980–2006) + metical mozambicanu (1980–2006) + meticales mozambicanos (1980–2006) + MZM + + + Metical mozambicanu + metical mozambicanu + meticales mozambicanos + MZN + + + Dólar namibianu + dólar namibianu + dólares namibianos + NAD + $ + + + naira nixeriana + naira nixeriana + nairas nixerianes + NGN + + + + Córdoba nicaraguanu (1988–1991) + córdoba nicaraguanu (1988–1991) + córdobes nicaraguanes (1988–1991) + NIC + + + Córdoba nicaraguanu + córdoba nicaraguanu + córdobes nicaraguanos + NIO + C$ + + + Florín neerlandés + florín neerlandés + florines neerlandeses + NLG + + + corona noruega + corona noruega + corones noruegues + NOK + NOK + + + Rupia nepalesa + rupia nepalesa + rupies nepaleses + NPR + Rs + + + dólar neozelandés + dólar neozelandés + dólares neozelandeses + NZ$ + $ + + + Rial omanianu + rial omanianu + riales omanianos + OMR + + + Balboa panamiegu + balboa panamiegu + balboes panamiegos + PAB + + + Inti peruanu + inti peruanu + intis peruanos + PEI + + + sol nuevu peruanu + sol nuevu peruanu + soles nuevos peruanos + PEN + + + Sol peruanu (1863–1965) + sol peruanu (1863–1965) + soles peruanos (1863–1965) + PES + + + kina papuana + kina papuana + kines papuanes + PGK + + + pesu filipín + pesu filipín + pesos filipinos + PHP + + + + Rupia paquistanina + rupia paquistanina + rupies paquistanines + PKR + Rs + + + Zloty polacu + zloty polacu + zlotys polacos + PLN + PLN + + + Zloty polacu (1950–1995) + zloty polacu (1950–1995) + zloty polacos (1950–1995) + PLZ + + + Escudu portugués + escudu portugués + escudos portugueses + PTE + + + guaraní paraguayu + guaraní paraguayu + guaranís paraguayos + PYG + + + + Rial qatarín + rial qatarín + riales qatarinos + QAR + + + Dólar rodesianu + dólar rodesianu + dólares rodesianos + RHD + + + Leu rumanu (1952–2006) + leu rumanu (1952–2006) + leus rumanos (1952–2006) + ROL + + + Leu rumanu + leu rumanu + leus rumanos + RON + + + dinar serbiu + dinar serbiu + dinares serbios + RSD + + + Rublu rusu + rublu rusu + rublos rusos + RUB + + + + + Rublu rusu (1991–1998) + rublu rusu (1991–1998) + rublos rusos (1991–1998) + RUR + RUR + + + Francu ruandés + francu ruandés + francos ruandeses + RWF + RF + + + Riyal saudita + riyal saudita + riyales saudites + SAR + + + dólar salomonés + dólar salomonés + dólares salomoneses + SBD + $ + + + Rupia seixelesa + rupia seixelesa + rupies seixeleses + SCR + + + dinar sudanés (1992–2007) + dinar sudanés (1992–2007) + dinares sudaneses (1992–2007) + SDD + + + llibra sudanesa + llibra sudanesa + llibres sudaneses + SDG + + + llibra sudanesa (1957–1998) + llibra sudanesa (1957–1998) + llibres sudaneses (1957–1998) + SDP + + + corona sueca + corona sueca + corones sueques + SEK + SEK + + + dólar singapuranu + dólar singapuranu + dólares singapuranos + SGD + $ + + + llibra de Santa Lena + llibra de Santa Lena + llibres de Santa Lena + SHP + £ + + + Tolar eslovenu + tolar eslovenu + tolares eslovenos + SIT + + + Corona eslovaca + corona eslovaca + corones eslovaques + SKK + + + leone sierralleonés + leone sierralleonés + leones sierralleoneses + SLL + + + Shilling somalín + shilling somalín + shillings somalinos + SOS + + + dólar surinamés + dólar surinamés + dólares surinameses + SRD + $ + + + Florín surinamés + florín surinamés + florinos surinameses + SRG + + + llibra sursudanesa + llibra sursudanesa + llibres sursudaneses + SSP + £ + + + dobra de Santu Tomé y Príncipe + dobra de Santu Tomé y Príncipe + dobras de Santu Tomé y Príncipe + STD + Db + + + Rublu soviéticu + rublu soviéticu + rublos soviéticos + SUR + + + Colón salvadorianu + colón salvadorianu + colones salvadorianos + SVC + + + Llibra siria + llibra siria + llibres siries + SYP + £ + + + Lilangeni suazilandés + lilangeni suazilandés + lilangenis suazilandeses + SZL + + + baht tailandés + baht tailandés + bahts tailandeses + ฿ + ฿ + + + Rublu taxiquistanín + rublu taxiquistanín + rublos taxiquistaninos + TJR + + + Somoni taxiquistanín + somoni taxiquistanín + somonis taxiquistaninos + TJS + + + Manat turcomanu (1993–2009) + manat turcomanu (1993–2009) + manats turcomanos (1993–2009) + TMM + + + Manat turcomanu + manat turcomanu + manats turcomanos + TMT + + + dinar tunecín + dinar tunecín + dinares tunecinos + TND + + + paʻanga tonganu + paʻanga tonganu + paʻangas tonganos + TOP + T$ + + + Escudu timorés + escudu timorés + escudos timoreses + TPE + + + Llira turca (1922–2005) + llira turca (1922–2005) + llires turques (1922–2005) + TRL + + + Llira turca + llira turca + llires turques + TRY + + TL + + + dólar de Trinidá y Tobagu + dólar de Trinidá y Tobagu + dólares de Trinidá y Tobagu + TTD + $ + + + Dólar nuevu taiwanés + dólar nuevu taiwanés + dólares nuevos taiwaneses + NT$ + NT$ + + + Shilling tanzanianu + shilling tanzanianu + shillings tanzanianos + TZS + + + Grivna ucraína + grivna ucraína + grivnas ucraínes + UAH + + + + Karbovanets ucraína + karbovanets ucraína + karbovanets ucraínes + UAK + + + Shilling ugandés (1966–1987) + shilling ugandés (1966–1987) + shillings ugandeses (1966–1987) + UGS + + + Shilling ugandés + shilling ugandés + shillings ugandeses + UGX + + + Dólar estaunidense + dólar estaunidense + dólares estaunidenses + $ + $ + + + Dólar d’EE.XX. (día siguiente) + dólar d’EE.XX. (día siguiente) + dólares d’EE.XX. (día siguiente) + USN + + + Dólar d’EE.XX. (mesmu día) + dólar d’EE.XX. (mesmu día) + dólares d’EE.XX. (mesmu día) + USS + + + Pesu uruguayu (Unidaes indexaes) + pesu uruguayu (unidaes indexaes) + pesos uruguayos (unidaes indexaes) + UYI + + + Pesu uruguayu (1975–1993) + pesu uruguayu (1975–1993) + pesos uruguayos (1975–1993) + UYP + + + pesu uruguayu + pesu uruguayu + pesos uruguayos + UYU + $ + + + Som uzbequistanín + som uzbequistanín + soms uzbequistaninos + UZS + + + Bolívar venezolanu (1871–2008) + bolívar venezolanu (1871–2008) + bolívares venezolanos (1871–2008) + VEB + + + bolívar venezolanu + bolívar venezolanu + bolívares venezolanos + VEF + Bs + + + dong vietnamín + dong vietnamín + dongs vietnaminos + + + + + Dong vietnamín (1978–1985) + dong vietnamín (1978–1985) + dongs vietnaminos (1978–1985) + VNN + + + vatu vanuatuanu + vatu vanuatuanu + vatus vanuatuanos + VUV + + + tala samoanu + tala samoanu + talas samoanos + WST + + + Francu CFA centroafricanu + francu CFA centroafricanu + francos CFA centroafricanos + FCFA + + + Plata + onza troy de plata + onces troy de plata + XAG + + + Oru + onza troy d’oru + onces troy d’oru + XAU + + + Unidá Compuesta Europea + unidá compuesta europea + unidaes compuestes europées + XBA + + + Unidá monetaria europea + unidá monetaria europea + unidaes monetaries europées + XBB + + + Unidá de cuenta europea (XBC) + unidá de cuenta europea (XBC) + unidaes de cuenta europées (XBC) + XBC + + + Unidá de cuenta europea (XBD) + unidá de cuenta europea (XBD) + unidaes de cuenta europées (XBD) + XBD + + + dólar del Caribe Oriental + dólar del Caribe Oriental + dólares del Caribe Oriental + EC$ + $ + + + Drechos especiales de xiru + drechos especiales de xiru + drechos especiales de xiru + XDR + + + Unidá de divisa europea + unidá de divisa europea + unidaes de divisa europees + XEU + + + Francu oru francés + francu oru francés + francos oru franceses + XFO + + + Francu UIC francés + francu UIC francés + francos UIC franceses + XFU + + + francu CFA BCEAO + francu CFA BCEAO + francos CFA BCEAO + CFA + + + Paladiu + onza troy de paladiu + onces troy de paladiu + XPD + + + francu CFP + francu CFP + francos CFP + CFPF + + + Platín + onza troy de platín + onces troy de platín + XPT + + + Fondos RINET + unidá de fondos RINET + unidaes de fondos RINET + XRE + + + Sucre + sucre + sucres + XSU + + + Códigu monetariu de prueba + códigu monetariu de prueba + códigos monetarios de prueba + XTS + + + unidá de cuenta ADB + unidá de cuenta ADB + unidaes de cuenta ADB + XUA + + + Divisa desconocida + (unidá desconocida de divisa) + (divises desconocíes) + XXX + + + Dinar yemenín + dinar yemenín + dinares yemeninos + YDD + + + Rial yemenín + rial yemenín + riales yemeninos + YER + + + Dinar fuerte yugoslavu (1966–1990) + dinar fuerte yugoslavu (1966–1990) + dinares fuertes yugoslavos (1966–1990) + YUD + + + Dinar nuevu yugoslavu (1994–2002) + dinar nuevu yugoslavu (1994–2002) + dinares nuevos yugoslavos (1994–2002) + YUM + + + Dinar convertible yugoslavu (1990–1992) + dinar convertible yugoslavu (1990–1992) + dinares convertibles yugoslavos (1990–1992) + YUN + + + Dinar reformáu yugoslavu (1992–1993) + dinar reformáu yugoslavu (1992–1993) + dinares reformaos yugoslavos (1992–1993) + YUR + + + Rand sudafricanu (financieru) + rand sudafricanu (financieru) + rands sudafricanos (financieros) + ZAL + + + Rand sudafricanu + rand sudafricanu + rands sudafricanos + ZAR + R + + + Kwacha zambianu (1968–2012) + kwacha zambianu (1968–2012) + kwachas zambianos (1968–2012) + ZMK + + + Kwacha zambianu + kwacha zambianu + kwachas zambianos + ZMW + ZK + + + Zaire nuevu zairiegu (1993–1998) + zaire nuevu zairiegu (1993–1998) + zaires nuevos zairiegos (1993–1998) + ZRN + + + Zaire zairiegu (1971–1993) + zaire zairiegu (1971–1993) + zaires zairiegos (1971–1993) + ZRZ + + + Dólar zimbabuanu (1980–2008) + dólar zimbabuanu (1980–2008) + dólares zimbabuanos (1980–2008) + ZWD + + + Dólar zimbabuanu (2009) + dólar zimbabuanu (2009) + dólares zimbabuanos (2009) + ZWL + + + Dólar zimbabuanu (2008) + dólar zimbabuanu (2008) + dólares zimbabuanos (2008) + ZWR + + + + ⩾{0} + {0}–{1} + + + + + + {0} per {1} + + + fuercia g + {0} fuercia g + {0} fuercies gues + + + metros per segundu al cuadráu + {0} metru per segundu al cuadráu + {0} metros por segundu al cuadráu + + + revolución + {0} revolución + {0} revoluciones + + + radianes + {0} radián + {0} radianes + + + graos + {0} grau + {0} graos + + + minutos d’arcu + {0} minutu d'arcu + {0} minutos d'arcu + + + segundos d’arcu + {0} segundu d'arcu + {0} segundos d'arcu + + + kilómetros cuadraos + {0} kilómetru cuadráu + {0} kilómetros cuadraos + + + hectárees + {0} hectárea + {0} hectárees + + + metros cuadraos + {0} metru cuadráu + {0} metros cuadraos + {0} per metru cuadráu + + + centímetros cuadraos + {0} centímetru cuadráu + {0} centímetros cuadraos + {0} per centímetru cuadráu + + + milles cuadraes + {0} milla cuadrada + {0} milles cuadraes + + + acres + {0} acre + {0} acres + + + yardes cuadraes + {0} yarda cuadrada + {0} yardes cuadraes + + + pies cuadraos + {0} pie cuadráu + {0} pies cuadraos + + + pulgaes cuadraes + {0} pulgada cuadrada + {0} pulgaes cuadraes + {0} per pulgada cuadrada + + + quilates + {0} quilate + {0} quilates + + + llitros per quilómetru + {0} llitru per quilómetru + {0} llitros per quilómetru + + + llitros per 100 quilómetros + {0} llitru per 100 quilómetros + {0} llitros per 100 quilómetros + + + milles per galón + {0} milla per galón + {0} milles per galón + + + terabytes + {0} terabyte + {0} terabytes + + + terabits + {0} terabit + {0} terabits + + + gigabytes + {0} gigabyte + {0} gigabytes + + + gigabits + {0} gigabit + {0} gigabits + + + megabytes + {0} megabyte + {0} megabytes + + + megabits + {0} megabit + {0} megabits + + + kilobytes + {0} kilobyte + {0} kilobytes + + + kilobits + {0} kilobit + {0} kilobits + + + bytes + {0} byte + {0} bytes + + + bits + {0} bit + {0} bits + + + sieglos + {0} sieglu + {0} sieglos + + + años + {0} añu + {0} años + {0} per añu + + + meses + {0} mes + {0} meses + {0} per mes + + + selmanes + {0} selmana + {0} selmanes + {0} per selmana + + + díes + {0} día + {0} díes + {0} per día + + + hores + {0} hora + {0} hores + {0} per hora + + + minutos + {0} minutu + {0} minutos + {0} per minutu + + + segundos + {0} segundu + {0} segundos + {0} per segundu + + + milisegundos + {0} milisegundu + {0} milisegundos + + + microsegundos + {0} microsegundu + {0} microsegundos + + + nanosegundos + {0} nanosegundu + {0} nanosegundos + + + amperios + {0} amperiu + {0} amperios + + + miliamperios + {0} milliamperiu + {0} milliamperios + + + ohmnios + {0} ohmiu + {0} ohmios + + + voltios + {0} voltiu + {0} voltios + + + quilocaloríes + {0} quilocaloría + {0} quilocaloríes + + + caloríes + {0} caloría + {0} caloríes + + + Caloríes + {0} Caloría + {0} Caloríes + + + quiloxulios + {0} quiloxuliu + {0} quiloxulios + + + xulios + {0} xuliu + {0} xulios + + + quilovatios hora + {0} quilovatiu hora + {0} quilovatios hora + + + gigahercios + {0} gigaherciu + {0} gigahercios + + + megahercios + {0} megaherciu + {0} megahercios + + + quilohercios + {0} quiloherciu + {0} kilohercios + + + hercios + {0} herciu + {0} hercios + + + quilómetros + {0} quilómetru + {0} quilómetros + {0} per quilómetru + + + metros + {0} metru + {0} metros + {0} per metru + + + decímetros + {0} decímetru + {0} decímetros + + + centímetros + {0} centímetru + {0} centímetros + {0} por centímetru + + + milímetros + {0} milímetru + {0} milímetros + + + micrómetros + {0} micrómetru + {0} micrómetros + + + nanómetros + {0} nanómetru + {0} nanómetros + + + picómetros + {0} picómetru + {0} picómetros + + + milles + {0} milla + {0} milles + + + yardes + {0} yarda + {0} yardes + + + pies + {0} pie + {0} pies + {0} per pie + + + pulgaes + {0} pulgada + {0} pulgaes + {0} per pulgada + + + parsecs + {0} parsec + {0} parsecs + + + años lluz + {0} añu lluz + {0} años lluz + + + unidaes astronómiques + {0} unidá astronómica + {0} unidaes astronómiques + + + furlongs + {0} furlong + {0} furlongs + + + fathoms + {0} fathom + {0} fathoms + + + milles náutiques + {0} milla náutica + {0} milles náutiques + + + milla escandinava + {0} milla escandinava + {0} milles escandinaves + + + lux + {0} lux + {0} lux + + + tonelaes métriques + {0} tonelada métrica + {0} tonelaes métriques + + + quilogramos + {0} quilogramu + {0} quilogramos + {0} per quilogramu + + + gramos + {0} gramu + {0} gramos + {0} per gramu + + + miligramos + {0} miligramu + {0} miligramos + + + microgramos + {0} microgramu + {0} microgramos + + + tonelaes + {0} tonelada + {0} tonelaes + + + piedres + {0} piedra + {0} piedres + + + llibres + {0} llibra + {0} llibres + {0} per llibra + + + onces + {0} onza + {0} onces + {0} per onza + + + onces troy + {0} onza troy + {0} onces troy + + + quilates + {0} quilate + {0} quilates + + + gigavatios + {0} gigavatiu + {0} gigavatios + + + megavatios + {0} megavatiu + {0} megavatios + + + quilovatios + {0} quilovatiu + {0} quilovatios + + + vatios + {0} vatiu + {0} vatios + + + millivatios + {0} millivatiu + {0} millivatios + + + caballos de fuerza + {0} caballu de fuerza + {0} caballos de fuerza + + + hectopascales + {0} hectopascal + {0} hectopascales + + + milímetros de mercuriu + {0} milímetru de mercuriu + {0} milímetros de mercuriu + + + llibres per pulgada cuadrada + {0} llibra per pulgada cuadrada + {0} llibres per pulgada cuadrada + + + pulgaes de mercuriu + {0} pulgada de mercuriu + {0} pulgaes de mercuriu + + + milibares + {0} milibar + {0} milibares + + + quilómetros per hora + {0} quilómetru per hora + {0} quilómetros per hora + + + metros per segundu + {0} metru per segundu + {0} metros per segundu + + + milles per hora + {0} milla per hora + {0} milles per hora + + + nuedu + {0} nuedu + {0} nuedos + + + ° + {0}° + {0}° + + + graos Celsius + {0} grau Celsius + {0} graos Celsius + + + graos Fahrenheit + {0} grau Fahrenheit + {0} graos Fahrenheit + + + kelvins + {0} kelvin + {0} kelvins + + + quilómetros cúbicos + {0} quilómetru cúbicu + {0} quilómetros cúbicos + + + metros cúbicos + {0} metru cúbicu + {0} metros cúbicos + {0} per metru cúbicu + + + centímetros cúbicos + {0} centímetru cúbicu + {0} centímetros cúbicos + {0} per centímetru cúbicu + + + milles cúbiques + {0} milla cúbica + {0} milles cúbiques + + + yardes cúbiques + {0} yarda cúbica + {0} yardes cúbiques + + + pies cúbicos + {0} pie cúbicu + {0} pies cúbicos + + + pulgaes cúbiques + {0} pulgada cúbica + {0} pulgaes cúbiques + + + megallitros + {0} megallitru + {0} megallitros + + + hectollitros + {0} hectollitru + {0} hectollitros + + + llitros + {0} llitru + {0} llitros + {0} per llitru + + + decillitros + {0} decillitru + {0} decillitros + + + centillitros + {0} centillitru + {0} centillitros + + + milillitros + {0} milillitru + {0} milillitros + + + pintes métriques + {0} pinta métrica + {0} pintes métriques + + + taces métriques + {0} taza métrica + {0} taces métriques + + + acre-pies + {0} acre-pie + {0} acre-pies + + + bushels + {0} bushel + {0} bushels + + + galones + {0} galón + {0} galones + {0} per galón + + + cuartos + {0} cuartu + {0} cuartos + + + pintes + {0} pinta + {0} pintes + + + taces + {0} taza + {0} taces + + + onces de fluidos + {0} onza de fluidos + {0} onces de fluidos + + + cuyares + {0} cuyar + {0} cuyares + + + cuyarines + {0} cuyarina + {0} cuyarines + + + {0}E + {0}N + {0}S + {0}O + + + + + {0}/{1} + + + fuercia g + {0} G + {0} Gs + + + m/s² + {0} m/s² + {0} m/s² + + + rev + {0} rev + {0} rev + + + radianes + {0} rad + {0} rad + + + graos + {0}° + {0}° + + + arcmins + {0} arcmin + {0} arcmins + + + arcsecs + {0}″ + {0}″ + + + km² + {0} km² + {0} km² + + + hectárees + {0} ha + {0} ha + + + + {0} m² + {0} m² + {0}/m² + + + cm² + {0} cm² + {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + + + acre + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² + + + ft² + {0} ft² + {0} ft² + + + in² + {0} in² + {0} in² + {0}/in² + + + quilates + {0} kt + {0} kt + + + llitros/km + {0} L/km + {0} L/km + + + L/100km + {0} L/100km + {0} L/100km + + + milles/gal + {0} mpg + {0} mpg + + + TByte + {0} TB + {0} TB + + + Tbit + {0} Tb + {0} Tb + + + GByte + {0} GB + {0} GB + + + Gbit + {0} Gb + {0} Gb + + + MByte + {0} MB + {0} MB + + + Mbit + {0} Mb + {0} Mb + + + kByte + {0} kB + {0} kB + + + kbit + {0} kb + {0} kb + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + sgl + {0} sgl + {0} sgls + + + años + {0} añ + {0} añs + {0}/añ + + + meses + {0} mes + {0} meses + {0}/mes + + + selmanes + {0} sel + {0} sels + {0}/sel + + + díes + {0} día + {0} díes + {0}/día + + + hores + {0} hr + {0} hrs + {0}/hr + + + mins + {0} min + {0} mins + {0}/min + + + segs + {0} seg + {0} segs + {0}/seg + + + milisegs + {0} ms + {0} ms + + + μsegs + {0} μs + {0} μs + + + nanosegs + {0} ns + {0} ns + + + amps + {0} A + {0} A + + + miliamps + {0} mA + {0} mA + + + ohmnios + {0} Ω + {0} Ω + + + voltios + {0} V + {0} V + + + kcal + {0} kcal + {0} kcal + + + cal + {0} cal + {0} cal + + + Cal + {0} Cal + {0} Cal + + + quiloxuliu + {0} kJ + {0} kJ + + + xulios + {0} J + {0} J + + + kW-hora + {0} kWh + {0} kWh + + + GHz + {0} GHz + {0} GHz + + + MHz + {0} MHz + {0} MHz + + + kHz + {0} kHz + {0} kHz + + + Hz + {0} Hz + {0} Hz + + + km + {0} km + {0} km + {0}/km + + + metros + {0} m + {0} m + {0}/m + + + dm + {0} dm + {0} dm + + + cm + {0} cm + {0} cm + {0}/cm + + + mm + {0} mm + {0} mm + + + µmetros + {0} µm + {0} µm + + + nm + {0} nm + {0} nm + + + pm + {0} pm + {0} pm + + + milles + {0} mi + {0} mi + + + yd + {0} yd + {0} yd + + + pies + {0} ft + {0} ft + {0}/ft + + + pulgaes + {0} in + {0} in + {0}/in + + + pc + {0} pc + {0} pc + + + añ. lluz + {0} ly + {0} ly + + + ua + {0} ua + {0} ua + + + furlongs + {0} fur + {0} fur + + + fathoms + {0} ftm + {0} ftm + + + nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + + + lux + {0} lx + {0} lx + + + t + {0} t + {0} t + + + kg + {0} kg + {0} kg + {0}/kg + + + gramos + {0} g + {0} g + {0}/g + + + mg + {0} mg + {0} mg + + + µg + {0} µg + {0} µg + + + tonelaes + {0} tn + {0} tn + + + piedres + {0} st + {0} st + + + llibres + {0} lb + {0} lbs + {0}/lb + + + oz + {0} oz + {0} oz + {0}/oz + + + oz troy + {0} oz t + {0} oz t + + + quilates + {0} CD + {0} CD + + + GW + {0} GW + {0} GW + + + MW + {0} MW + {0} MW + + + kW + {0} kW + {0} kW + + + vatios + {0} W + {0} W + + + mW + {0} mW + {0} mW + + + hp + {0} hp + {0} hp + + + hPa + {0} hPa + {0} hPa + + + mm Hg + {0} mm Hg + {0} mm Hg + + + psi + {0} psi + {0} psi + + + in Hg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar + + + km/h + {0} km/h + {0} km/h + + + metros/seg + {0} m/s + {0} m/s + + + milles/hora + {0} mi/h + {0} mi/h + + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + + + °C + {0}°C + {0}°C + + + °F + {0}°F + {0}°F + + + K + {0} K + {0} K + + + km³ + {0} km³ + {0} km³ + + + + {0} m³ + {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ + + + mi³ + {0} mi³ + {0} mi³ + + + yd³ + {0} yd³ + {0} yd³ + + + ft³ + {0} ft³ + {0} ft³ + + + pulgaes³ + {0} in³ + {0} in³ + + + ML + {0} ML + {0} ML + + + hectollitros + {0} hL + {0} hL + + + llitros + {0} l + {0} l + {0}/l + + + dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL + + + mL + {0} mL + {0} mL + + + mpt + {0} mpt + {0} mpt + + + taces mét. + {0} mc + {0} mc + + + ac ft + {0} ac ft + {0} ac ft + + + bushels + {0} bu + {0} bu + + + gal + {0} gal + {0} gal + {0}/gal + + + cuartos + {0} qt + {0} qt + + + pintes + {0} pt + {0} pt + + + taces + {0} tz + {0} tz + + + fl oz + {0} fl oz + {0} fl oz + + + cuyar + {0} cuyar + {0} cuyar + + + cuyrn + {0} cuyrn + {0} cuyrn + + + {0}E + {0}N + {0}S + {0}O + + + + + {0}/{1} + + + fuercia g + {0}G + {0}Gs + + + m/s² + {0}m/s² + {0}m/s² + + + rev + {0}rev + {0}rev + + + rad + {0}rad + {0}rad + + + graos + {0}° + {0}° + + + arcmin + {0}′ + {0}′ + + + arcsecs + {0}″ + {0}″ + + + km² + {0} km² + {0} km² + + + hectárea + {0}ha + {0}ha + + + + {0} m² + {0} m² + {0} per m² + + + cm² + {0}cm² + {0}cm² + {0}/cm² + + + mi² + {0}mi² + {0}mi² + + + acre + {0}ac + {0}ac + + + yd² + {0}yd² + {0}yd² + + + ft² + {0}ft² + {0}ft² + + + in² + {0}in² + {0}in² + {0}/in² + + + quilate + {0}kt + {0}kt + + + L/km + {0}L/km + {0}L/km + + + L/100km + {0}L/100km + {0}L/100km + + + mpg + {0}mpg + {0}mpg + + + TByte + {0}TB + {0}TB + + + Tbit + {0}Tb + {0}Tb + + + GByte + {0}GB + {0}GB + + + Gbit + {0}Gb + {0}Gb + + + MByte + {0}MB + {0}MB + + + Mbit + {0}Mb + {0}Mb + + + kByte + {0}kB + {0}kB + + + kbit + {0}kb + {0}kb + + + byte + {0}byte + {0}byte + + + bit + {0}bit + {0}bits + + + sgl + {0} sgl + {0} sgls + + + + {0}añ + {0}añs + {0}/añ + + + mes + {0}mes + {0}meses + {0}/mes + + + sel + {0}sel + {0}sels + {0}/sel + + + día + {0}día + {0}díes + {0}/día + + + hora + {0}hr + {0}hrs + {0}/hr + + + min + {0}min + {0}mins + {0}/min + + + seg + {0}seg + {0}segs + {0}/seg + + + mseg + {0}ms + {0}ms + + + μseg + {0}μs + {0}μs + + + ns + {0}ns + {0}ns + + + amp + {0}A + {0}A + + + mA + {0}mA + {0}mA + + + ohmnios + {0}Ω + {0}Ω + + + voltios + {0}V + {0}V + + + kcal + {0}kcal + {0}kcal + + + cal + {0}cal + {0}cal + + + Cal + {0}Cal + {0}Cal + + + kJ + {0}kJ + {0}kJ + + + xulios + {0}J + {0}J + + + kWh + {0}kWh + {0}kWh + + + GHz + {0}GHz + {0}GHz + + + MHz + {0}MHz + {0}MHz + + + kHz + {0}kHz + {0}kHz + + + Hz + {0}Hz + {0}Hz + + + km + {0}km + {0}km + {0}/km + + + metru + {0}m + {0}m + {0}/m + + + dm + {0}dm + {0}dm + + + cm + {0}cm + {0}cm + {0}/cm + + + mm + {0}mm + {0}mm + + + µm + {0}µm + {0}µm + + + nm + {0}nm + {0}nm + + + pm + {0}pm + {0}pm + + + mi + {0}mi + {0}mi + + + yd + {0}yd + {0}yd + + + ft + {0}′ + {0}′ + {0}/ft + + + in + {0}″ + {0}″ + {0}/in + + + parsec + {0}pc + {0}pc + + + añ. lluz + {0}ly + {0}ly + + + ua + {0}ua + {0}ua + + + furlongs + {0}fur + {0}fur + + + fathom + {0}fm + {0}fm + + + nmi + {0}nmi + {0}nmi + + + smi + {0}smi + {0}smi + + + lux + {0}lx + {0}lx + + + t + {0}t + {0}t + + + kg + {0}kg + {0}kg + {0}/kg + + + gramos + {0}g + {0}g + {0}/g + + + mg + {0}mg + {0}mg + + + µg + {0}µg + {0}µg + + + ton + {0}tn + {0}tn + + + piedres + {0}st + {0}st + + + lb + {0}# + {0}# + {0}/lb + + + oz + {0}oz + {0}oz + {0}/oz + + + oz t + {0}oz t + {0}oz t + + + quilates + {0}CD + {0}CD + + + GW + {0}GW + {0}GW + + + MW + {0}MW + {0}MW + + + kW + {0}kW + {0}kW + + + vatios + {0}W + {0}W + + + mW + {0}mW + {0}mW + + + hp + {0}hp + {0}hp + + + hPa + {0}hPa + {0}hPa + + + mm Hg + {0}mm Hg + {0}mm Hg + + + psi + {0}psi + {0}psi + + + ″ Hg + {0}″ Hg + {0}″ Hg + + + mbar + {0}mb + {0}mb + + + km/h + {0}km/h + {0}km/h + + + m/s + {0}m/s + {0}m/s + + + mi/h + {0}mph + {0}mph + + + kn + {0}kn + {0}kn + + + ° + {0}° + {0}° + + + °C + {0}°C + {0}°C + + + °F + {0}°F + {0}°F + + + K + {0}K + {0}K + + + km³ + {0}km³ + {0}km³ + + + + {0}m³ + {0}m³ + {0}/m³ + + + cm³ + {0}cm³ + {0}cm³ + {0}/cm³ + + + mi³ + {0}mi³ + {0}mi³ + + + yd³ + {0}yd³ + {0}yd³ + + + ft³ + {0}ft³ + {0}ft³ + + + in³ + {0}in³ + {0}in³ + + + ML + {0}ML + {0}ML + + + hL + {0}hL + {0}hL + + + llitru + {0}l + {0}l + {0}/l + + + dL + {0}dL + {0}dL + + + cL + {0}cL + {0}cL + + + mL + {0}mL + {0}mL + + + mpt + {0}mpt + {0}mpt + + + taces mét. + {0}mc + {0}mc + + + acre ft + {0}ac ft + {0}ac ft + + + bushel + {0}bu + {0}bu + + + gal + {0}gal + {0}gal + {0}/gal + + + qt + {0}qt + {0}qt + + + pt + {0}pt + {0}pt + + + taces + {0}tz + {0}tz + + + fl oz + {0}fl oz + {0}fl oz + + + tbsp + {0}tbsp + {0}tbsp + + + tsp + {0}tsp + {0}tsp + + + {0}E + {0}N + {0}S + {0}O + + + + h:mm + + + h:mm:ss + + + m:ss + + + + + {0}, {1} + {0}, {1} + {0} y {1} + {0} y {1} + + + {0}, {1} + {0}, {1} + {0} y {1} + {0} y {1} + + + {0}, {1} + {0}, {1} + {0} y {1} + {0} y {1} + + + {0}, {1} + {0}, {1} + {0} y {1} + {0} y {1} + + + + + sí:s + non:n + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ast_ES.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ast_ES.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ast_ES.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ast_ES.xml index 025527dc974..3cd332153a6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ast_ES.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ast_ES.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/az.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/az.xml similarity index 90% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/az.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/az.xml index c163b004578..ab2c120a644 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/az.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/az.xml @@ -1,13 +1,12 @@ - - - + @@ -19,28 +18,28 @@ For terms of use, see http://www.unicode.org/copyright.html afarca abxaz - akin dili - akoli dili - adangme dili - aduge dili + akin + akoli + adangme + aduge avestanca afrikaans - afrihili dili + afrihili aqhem aynuca akanca akadianca aleutca - cənub altay dili + cənub altay amhar aragonca qədimi ingiliscə - angikə dili + angikə ərəb Modern Standart Ərəbcə - aramik dili + aramik araukanca - arapaho dili + arapaho aravakça assam asu @@ -48,86 +47,88 @@ For terms of use, see http://www.unicode.org/copyright.html avarikcə avadicə aymarca - azərbaycan + azərbaycan dili azəri + cənubi azərbaycan başqırd - baluc dili + baluc balincə - basa dili + basa belarus - beja dili + beja bemba bena bolqar - bxoçpuri dili - bislama dili + qərbi bəluc + bxoçpuri + bislama bikolca - bini dili - siksikə dili + bini + siksikə bambara benqal tibet Bretonca - braj dili + braj bodo bosniak - buryat dili - bugin dili + buryat + bugin bilincə katalan - kado dili - karib dili + kado + karib atsamca - çeçen dili - kebuano dili + çeçen + kebuano çiqa - çamoro dili - çibçə dili - çağatay dili - çukiz dili - mari dili + çamoro + çibçə + çağatay + çukiz + mari çinuk ləhçəsi - çoktau dili - çipevyan dili + çoktau + çipevyan çiroki - çeyen dili + çeyen sorani kürd korsika - kopt dili + kopt kri dili krım türkçə çex - kaşubyan dili - kilsə slav dili - çuvaş dili + kaşubyan + kilsə slav + çuvaş uels danimarka - dakota dili - darqva dili + dakota + darqva taita alman Avstriya almancası İsveçrə yüksək almancası - delaver dili + delaver slavey - doqrib dili - dinka dili + doqrib + dinka zarma - doqri dili + doqri aşağı sorb duala ortacaq hollandca - diveh dili + diveh diola - dyula dili + dyula dzonqa embu eve - efik dili - qədimi misir dili - ekacuk dili + efik + qədimi misir + ekacuk yunan - elamit dili + elamit ingilis Avstraliya ingiliscəsi Kanada ingiliscəsi @@ -143,229 +144,232 @@ For terms of use, see http://www.unicode.org/copyright.html Meksika ispancası eston bask - evondo dili + evondo fars - fang dili - fanti dili - fula dili + fang + fanti + fula fin filippin fici farer - fon dili + fon fransız Kanada fransızcası İsveçrə fransızcası ortacaq fransızca qədimi fransızca - şimal fris dili - friul dili + şimal fris + friul qərbi friz irland - qa dili + qa qaqauz - qayo dili - qabaya dili - skot gaelik dili - qez dili + qayo + qabaya + skot gaelik + qez qilbert gili qalisian ortacaq yüksək almanca quarani qədimi almanca - qondi dili - qorontalo dili + qondi + qorontalo gotça - qrebo dili + qrebo qədimi yunanca İsveçrə almancası qucarat qusi manks - qviçin dili + qviçin hausa - hayda dili + hayda havay ivrit hindi - hiliqaynon dili - hittit dili - monq dili - hiri motu dili + hiliqaynon + hittit + monq + hiri motu xorvat yuxarı sorb haiti macar - hupa dili + hupa erməni - Herer dili - interlingua dili - iban dili + Herer + interlingua + iban indonez - interlingue dili + interlingue iqbo siçuan yi - inupiaq dili - iloko dili - inquş dili - ido dili + inupiaq + iloko + inquş + ido island italyan inuktitut yapon - loğban dili + loğban nqomba maçam judo-farsca jude-ərəbcə yava gürcü - qara-qalpaq dili + qara-qalpaq kabile kaçinca - ju dili + ju kamba - kavi dili + kavi kabardca - tiyap dili + tiyap makond kabuverdian - koro dili - konqo dili - xazi dili - xotan dili + koro + konqo + xazi + xotan koyra çiini kikuyu - kuanyama dili + kuanyama qazax kalaallisut kalencin kxmer - kimbundu dili + kimbundu kannada koreya komi-permyak konkan - kosreyan dili - kpelle dili - kanur dili - qaraçay-balkar dili - karelyan dili - kurux dili + kosreyan + kpelle + kanur + qaraçay-balkar + karelyan + kurux kaşmir şambala bafia kürd - kumuk dili - kutenay dili - komi dili + kumuk + kutenay + komi korn qırğız latın - ladin dili + ladin langi - laxnda dili - lamba dili + laxnda + lamba lüksemburq - ləzqi dili + ləzqi qanda - limburqiş dili + limburqiş lakota linqala laos - monqo dili - lozi dili + monqo + lozi + şimali luri litva luba-katanqa - luba-lulua dili - luyseno dili - lunda dili + luba-lulua + luyseno + lunda luo lushayca luyia latış - maduriz dili - maqahi dili - maitili dili - makasar dili - məndinqo dili + maduriz + maqahi + maitili + makasar + məndinqo masay - mokşa dili - mandar dili - mende dili + mokşa + mandar + mende meru morisien malaqas ortacaq irlandca maxuva-meetto meta’ - marşal dili + marşal maori - mikmak dili - minanqkaban dili + mikmak + minanqkaban makedon malayalam monqol - mançu dili - manipüri dili + mançu + manipüri mohavk - mosi dili + mosi marati malay malta mundanq digər dillər - krik dili - mirand dili - maruari dili + krik + mirand + maruari birma - erzya dili - nauru dili - neapolital dili + erzya + mazandaran + nauru + neapolital nama bokmal norveç şimali ndebele aşağı almanca + aşağı sakson nepal - nevari dili - nqonka dili - nyas dili - niyuan dili + nevari + nqonka + nyas + niyuan holland flamand kvasio nünorsk norveç - norveç dili - noqay dili + norveç + noqay qədimi norsca nqo - cənub ndebele dili - şimal soto dili + cənub ndebele + şimal soto nuer - navayo dili - nyanca dili - nyamvezi dili + navayo + nyanca + nyamvezi nyankol - niyoro dili - nizima dili + niyoro + nizima oksitanca - ocibva dili + ocibva oromo oriya - osetik dili - osage dili - osman dili + osetik + osage + osman pəncab - panqasinan dili - paxlavi dili - pampanqa dili - papyamento dili + panqasinan + paxlavi + pampanqa + papyamento palayanca qədimi farsca - foyenik dili - pali dili + foyenik + pali polyak - ponpeyan dili + ponpeyan qədimi provensialca puştu portuqal @@ -373,138 +377,139 @@ For terms of use, see http://www.unicode.org/copyright.html Portuqaliya portuqalcası keçua kiçe - racastan dili - rapanu dili - rarotonqan dili + racastan + rapanu + rarotonqan retoroman rundi rumın moldav rombo - roman dili - rut dili + roman + rut rus aromanca kinyarvanda rua sanskrit - sandave dili - yakut dili - samaritan dili + sandave + yakut + samaritan samburu - sasak dili - santal dili + sasak + santal sanqu - sardin dili - sisili dili - skots dili + sardin + sisili + skots sindhi + cənubi kürd şimali sami sena - selkup dili + selkup koyraboro senni sanqo qədimi irlandca serb-xorvatca taçelit - şan dili + şan sinhal - sidamo dili + sidamo slovak sloven - samoa dili + samoa cənubi sami lule sami inari sami skolt şona - soninke dili + soninke somali - soqdiyen dili + soqdiyen alban serb - sranan tonqo dili + sranan tonqo serer dilii - svati dili - Sesoto dili - sudan - sukuma dili - susu dili - sumeryan dili + svati + Sesoto + sukuma + susu + sumeryan isveç suahili - Konqo suahilicəsi - siryak dili + Konqo suahilicəsi + siryak tamil teluqu - timne dili + timne teso - tereno dili - tetum dili + tereno + tetum tacik tay tiqrin - tiqre dili - tiv dili + tiqre + tiv türkmən - tokelay dili - taqaloq dili + tokelay + taqaloq klinqon - tlinqit dili - tamaşek dili - svana dili + tlinqit + tamaşek + svana tonqa - niyasa tonga dili - tok pisin dili + niyasa tonga + tok pisin türk - sonqa dili - simşyan dili + sonqa + simşyan tatar - tumbuka dili - tuvalu dili - Tvi dili + tumbuka + tuvalu + Tvi tasavaq - taxiti dili - tuvinyan dili + taxiti + tuvinyan Mərkəzi Atlas tamazicəsi - udmurt dili + udmurt uyğur - uqaritik dili + uqaritik ukrayna - umbundu dili + umbundu naməlum dil urdu özbək vai - venda dili + venda vyetnam - volapük dili - votik dili + volapük + votik vunyo - valun dili - valamo dili - varay dili - vaşo dili + valun + valamo + varay + vaşo + Valpiri volof kalmıqca xosa soqa - yao dili - yapiz dili - Yahudi dili + yao + yapiz + Yahudi yoruba - juənq dili - zapotek dili - blisimbols dili - zenaqa dili + juənq + zapotek + blisimbols + zenaqa tamazi çin sadələşmiş çin ənənəvi çin zulu - zuni dili + zuni dil məzmunu yoxdur - zaza dili + zaza @@ -546,11 +551,11 @@ For terms of use, see http://www.unicode.org/copyright.html - + - + - + @@ -674,7 +679,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angila Albaniya Ermənistan - Hollandiya antilleri Anqola Antarktika Argentina @@ -941,61 +945,74 @@ For terms of use, see http://www.unicode.org/copyright.html Təqvim Çeşidləmə Valyuta + Saat Sikli (12 / 24) + Sətirdən sətrə keçirmə üslubu + Ölçü Sistemi Rəqəmlər - Ərəb-Hind Rəqəmləri - Genişlənmiş Ərəb-Hind Rəqəmləri - Erməni Rəqəmləri - Kiçik Erməni Rəqəmləri - Benqal Rəqəmləri - Buddist Təqvimi - Çin Təqvimi - Dangi Təqvimi - Devanaqari Rəqəmləri - Defolt Unicode Çeşidləmə - Efiop Rəqəmləri - Efiop Təqvimi - Tam Geniş Rəqəmlər - Gürcü Rəqəmləri - Qreqorian Təqvimi - Yunan Rəqəmləri - Kiçik Yunan Rəqəmləri - Qucarat Rəqəmləri - Qurmuxi Rəqəmləri - Onluq Çin Rəqəmləri - Sadələşmiş Çin Rəqəmləri - Sadələşmiş Çin Maliyyə Rəqəmləri - Ənənəvi Çin Rəqəmləri - Ənənəvi Çin Maliyyə Rəqəmləri - İvrit Rəqəmləri - Yəhudi Təqvimi - Hindi təqvimi - İslam Təqvimi - Ivrit təqvimi - ISO-8601 Təqvimi - Yapon Təqvimi - Yapon Rəqəmləri - Yapon Maliyyə Rəqəmləri - Kxmer Rəqəmləri - Kannada Rəqəmləri - Lao Rəqəmləri - Qərb Rəqəmləri - Malayalam Rəqəmləri - Myanma Rəqəmləri - Oriya Rəqəmləri - İran Təqvimi - Pinyin təqvimi - Minquo Təqvimi - Rum Rəqəmləri - Kiçik Rum Rəqəmləri - Ümumi Məqsədli Axtarış - Standart Çeşidləmə - Ənənəvi Tamil Rəqəmləri - Tamil Rəqəmləri - Teluqu Rəqəmləri - Tay Rəqəmləri - Tibet Rəqəmləri + Buddist Təqvimi + Çin Təqvimi + Dangi Təqvimi + Efiop Təqvimi + Qreqorian Təqvimi + Yəhudi Təqvimi + Hindi təqvimi + İslam Təqvimi + Ivrit təqvimi + ISO-8601 Təqvimi + Yapon Təqvimi + İran Təqvimi + Minquo Təqvimi + Defolt Unicode Çeşidləmə + Pinyin təqvimi + Ümumi Məqsədli Axtarış + Standart Çeşidləmə + 12 Saatlıq Sistem (0–11) + 12 Saatlıq Sistem (0–12) + 24 Saatlıq Sistem (0–23) + 24 Saatlıq Sistem (0–23) + Sərbəst sətirdən sətrə keçirmə üslubu + Normal sətirdən sətrə keçirmə üslubu + Sərt sətirdən sətrə keçirmə üslubu + Metrik Sistem + İmperial Ölçü Sistemi + ABŞ Ölçü Sistemi + Ərəb-Hind Rəqəmləri + Genişlənmiş Ərəb-Hind Rəqəmləri + Erməni Rəqəmləri + Kiçik Erməni Rəqəmləri + Benqal Rəqəmləri + Devanaqari Rəqəmləri + Efiop Rəqəmləri + Tam Geniş Rəqəmlər + Gürcü Rəqəmləri + Yunan Rəqəmləri + Kiçik Yunan Rəqəmləri + Qucarat Rəqəmləri + Qurmuxi Rəqəmləri + Onluq Çin Rəqəmləri + Sadələşmiş Çin Rəqəmləri + Sadələşmiş Çin Maliyyə Rəqəmləri + Ənənəvi Çin Rəqəmləri + Ənənəvi Çin Maliyyə Rəqəmləri + İvrit Rəqəmləri + Yapon Rəqəmləri + Yapon Maliyyə Rəqəmləri + Kxmer Rəqəmləri + Kannada Rəqəmləri + Lao Rəqəmləri + Qərb Rəqəmləri + Malayalam Rəqəmləri + Myanma Rəqəmləri + Oriya Rəqəmləri + Rum Rəqəmləri + Kiçik Rum Rəqəmləri + Ənənəvi Tamil Rəqəmləri + Tamil Rəqəmləri + Teluqu Rəqəmləri + Tay Rəqəmləri + Tibet Rəqəmləri Metrik @@ -1075,6 +1092,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d, E G y G MMM y @@ -1086,6 +1104,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d MMM d MMM, E + MMMM d G y G y GGGGG MM y @@ -1094,6 +1113,7 @@ For terms of use, see http://www.unicode.org/copyright.html G MMM y G d MMM y G d MMM y, E + G y MMMM G y QQQ G y QQQQ @@ -1375,15 +1395,67 @@ For terms of use, see http://www.unicode.org/copyright.html - - a - g - p - - + + gecəyarı AM günorta PM + sübh + səhər + gündüz + axşamüstü + axşam + gecə + + + gecəyarı + a + g + p + sübh + səhər + gündüz + axşamüstü + axşam + gecə + + + gecəyarı + AM + günorta + PM + sübh + səhər + gündüz + axşamüstü + axşam + gecə + + + + + gecəyarı + AM + günorta + PM + sübh + səhər + gündüz + axşamüstü + axşam + gecə + + + gecəyarı + AM + günorta + PM + sübh + səhər + gündüz + axşamüstü + axşam + gecə @@ -1391,8 +1463,8 @@ For terms of use, see http://www.unicode.org/copyright.html eramızdan əvvəl ümumi eradan öncə - bizim eramızın - ümumi eranın + eramız + ümumi era e.ə. @@ -1484,12 +1556,17 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L dd.MM dd.MM, E LLL d MMM d MMM, E + MMMM d mm:ss y MM.y @@ -1498,6 +1575,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y d MMM y d MMM y, E + y MMMM y QQQ y QQQQ @@ -2873,6 +2951,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresbi + + Buqanvil + Manila @@ -2957,6 +3038,9 @@ For terms of use, see http://www.unicode.org/copyright.html İrkutsk + + Çita + Yakutsk @@ -2975,6 +3059,9 @@ For terms of use, see http://www.unicode.org/copyright.html Maqadan + + Srednekolımsk + Kamçatka @@ -4243,6 +4330,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0M + ¤ 0M + ¤ 00M + ¤ 00M + ¤ 000M + ¤ 000M + ¤ 0G + ¤ 0G + ¤ 00G + ¤ 00G + ¤ 000G + ¤ 000G + ¤ 0T + ¤ 0T + ¤ 00T + ¤ 00T + ¤ 000T + ¤ 000T + + {0} {1} {0} {1} @@ -4357,8 +4472,7 @@ For terms of use, see http://www.unicode.org/copyright.html Azərbaycan Manatı Azərbaycan manatı Azərbaycan manatı - AZN - + Bosniya-Herseqovina Dinarı @@ -4370,6 +4484,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bosniya-Herseqovina markası Bosniya-Herseqovina markası BAM + KM Barbados Dolları @@ -4624,6 +4739,7 @@ For terms of use, see http://www.unicode.org/copyright.html Çexiya korunası Çexiya korunası CZK + Şərq Almaniya Ostmarkı @@ -4646,6 +4762,7 @@ For terms of use, see http://www.unicode.org/copyright.html Danimarka kronu Danimarka kronu DKK + kr Dominika Pesosu @@ -4675,6 +4792,7 @@ For terms of use, see http://www.unicode.org/copyright.html Misir funtu Misir funtu EGP + Eritreya Nakfası @@ -4750,6 +4868,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gürcüstan larisi Gürcüstan larisi GEL + Qana Sedisi (1979–2007) @@ -4842,6 +4961,7 @@ For terms of use, see http://www.unicode.org/copyright.html Xorvatiya kunası Xorvatiya kunası HRK + kn Haiti Qourdu @@ -4854,6 +4974,7 @@ For terms of use, see http://www.unicode.org/copyright.html Macarıstan forinti Macarıstan forinti HUF + Ft İndoneziya Rupisi @@ -5008,6 +5129,7 @@ For terms of use, see http://www.unicode.org/copyright.html Livan funtu Livan funtu LBP + Şri Lanka Rupisi @@ -5297,6 +5419,7 @@ For terms of use, see http://www.unicode.org/copyright.html Polşa zlotısı Polşa zlotısı PLN + Polşa Zlotısı (1950–1995) @@ -5348,6 +5471,7 @@ For terms of use, see http://www.unicode.org/copyright.html Rusiya rublu Rusiya rublu RUB + Rusiya Rublu (1991–1998) @@ -5403,6 +5527,7 @@ For terms of use, see http://www.unicode.org/copyright.html Müqəddəs Yelena funtu Müqəddəs Yelena funtu SHP + £ Sloveniya Toları @@ -5461,6 +5586,7 @@ For terms of use, see http://www.unicode.org/copyright.html Suriya funtu Suriya funtu SYP + Svazilend Lilangenini @@ -5524,6 +5650,7 @@ For terms of use, see http://www.unicode.org/copyright.html Türkiyə lirəsi TRY + TL Trinidad və Tobaqo Dolları @@ -5796,6 +5923,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metr saniyə kvadratı {0} metr saniyə kvadratı + + dövrə + {0} dövrə + {0} dövrə + + + radian + {0} radian + {0} radian + + + dərəcə + {0} dərəcə + {0} dərəcə + dəqiqə {0} dəqiqə @@ -5806,30 +5948,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} saniyə {0} saniyə - - dərəcə - {0} dərəcə - {0} dərəcə - - - radian - {0} radian - {0} radian - - - akr - {0} akr - {0} akr + + kvadrat kilometr + {0} kvadrat kilometr + {0} kvadrat kilometr hektar {0} hektar {0} hektar + + kvadrat metr + {0} kvadrat metr + {0} kvadrat metr + {0}/m² + kvadrat santimetr {0} kvadrat santimetr {0} kvadrat santimetr + {0}/sm² + + + kvadrat mil + {0} kvadrat mil + {0} kvadrat mil + + + akr + {0} akr + {0} akr + + + yd² + {0} yd² + {0} yd² kvadrat fut @@ -5840,91 +5994,106 @@ For terms of use, see http://www.unicode.org/copyright.html kvadrat düym {0} kvadrat düym {0} kvadrat düym + {0}/in² - - kvadrat kilometr - {0} kvadrat kilometr - {0} kvadrat kilometr - - - kvadrat metr - {0} kvadrat metr - {0} kvadrat metr - - - kvadrat mil - {0} kvadrat mil - {0} kvadrat mil - - - yd² - {0} yd² - {0} yd² + + karat + {0} karat + {0} karat litr/kilometr {0} litr/kilometr {0} litr/kilometr + + L/100km + {0} L/100km + {0} L/100km + mil/qallon {0} mil/qallon {0} mil/qallon - - bit - {0} bit - {0} bit - - - bayt - {0} bayt - {0} bayt - - - giqabit - {0} giqabit - {0} giqabit - - - giqabayt - {0} giqabayt - {0} giqabayt - - - kilobit - {0} kilobit - {0} kilobit - - - kilobayt - {0} kilobayt - {0} kilobayt - - - meqabit - {0} meqabit - {0} meqabit - - - meqabayt - {0} meqabayt - {0} meqabayt - - - terabit - {0} terabit - {0} terabit - terabayt {0} terabayt {0} terabayt + + terabit + {0} terabit + {0} terabit + + + giqabayt + {0} giqabayt + {0} giqabayt + + + giqabit + {0} giqabit + {0} giqabit + + + meqabayt + {0} meqabayt + {0} meqabayt + + + meqabit + {0} meqabit + {0} meqabit + + + kilobayt + {0} kilobayt + {0} kilobayt + + + kilobit + {0} kilobit + {0} kilobit + + + bayt + {0} bayt + {0} bayt + + + bit + {0} bit + {0} bit + + + əsr + {0} əsr + {0} əsr + + + il + {0} il + {0} il + {0}/il + + + ay + {0} ay + {0} ay + {0}/ay + + + həftə + {0} həftə + {0} həftə + {0}/həftə + gün {0} gün {0} gün + {0}/gün saat @@ -5932,47 +6101,33 @@ For terms of use, see http://www.unicode.org/copyright.html {0} saat {0}/saat - - mikrosaniyə - {0} mikrosaniyə - {0} mikrosaniyə + + dəqiqə + {0} dəqiqə + {0} dəqiqə + {0}/dəqiqə + + + saniyə + {0} saniyə + {0} saniyə + {0}/saniyə millisaniyə {0} millisaniyə {0} millisaniyə - - dəqiqə - {0} dəqiqə - {0} dəqiqə - - - ay - {0} ay - {0} ay + + mikrosaniyə + {0} mikrosaniyə + {0} mikrosaniyə nanosaniyə {0} nanosaniyə {0} nanosaniyə - - saniyə - {0} saniyə - {0} saniyə - {0}/san - - - həftə - {0} həftə - {0} həftə - - - il - {0} il - {0} il - amper {0} amper @@ -5993,6 +6148,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volt + + kilokalori + {0} kilokalori + {0} kilokalori + kalori {0} kalori @@ -6003,21 +6163,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Kalori {0} Kalori - - coul - {0} coul - {0} coul - - - kilokalori - {0} kilokalori - {0} kilokalori - kilocoul {0} kilocoul {0} kilocoul + + coul + {0} coul + {0} coul + kilovatt-saat {0} kilovatt-saat @@ -6028,206 +6183,210 @@ For terms of use, see http://www.unicode.org/copyright.html {0} giqahers {0} giqahers - - hers - {0} hers - {0} hers + + meqahers + {0} meqahers + {0} meqahers kilohers {0} kilohers {0} kilohers - - meqahers - {0} meqahers - {0} meqahers + + hers + {0} hers + {0} hers - - astronomik vahid - {0} astronomik vahid - {0} astronomik vahid + + kilometr + {0} kilometr + {0} kilometr + {0}/km - - santimetr - {0} santimetr - {0} santimetr + + metr + {0} metr + {0} metr + {0}/m dm {0} dm {0} dm - - fut - {0} fut - {0} fut - - - düym - {0} düym - {0} düym - - - kilometr - {0} kilometr - {0} kilometr - - - işıq ili - {0} işıq ili - {0} işıq ili - - - metr - {0} metr - {0} metr - - - µm - {0} µm - {0} µm - - - mil - {0} mil - {0} mil + + santimetr + {0} santimetr + {0} santimetr + {0}/sm millimetr {0} millimetr {0} millimetr + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - pc - {0} pc - {0} pc - pikometr {0} pikometr {0} pikometr + + mil + {0} mil + {0} mil + yard {0} yard {0} yard + + fut + {0} fut + {0} fut + {0}/ft + + + düym + {0} düym + {0} düym + {0}/in + + + pc + {0} pc + {0} pc + + + işıq ili + {0} işıq ili + {0} işıq ili + + + astronomik vahid + {0} astronomik vahid + {0} astronomik vahid + + + nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + lüks {0} lüks {0} lüks - - karat - {0} karat - {0} karat - - - qram - {0} qram - {0} qram - - - kiloqram - {0} kiloqram - {0} kiloqram - metrik ton {0} metrik ton {0} metrik ton - - mikroqram - {0} mikroqram - {0} mikroqram + + kiloqram + {0} kiloqram + {0} kiloqram + {0}/kq + + + qram + {0} qram + {0} qram + {0}/q milliqram {0} milliqram {0} milliqram - - unsiya - {0} unsiya - {0} unsiya - - - troy unsiyası - {0} troy unsiyası - {0} troy unsiyası - - - funt - {0} funt - {0} funt - - - stone - {0} stone - {0} stone + + mikroqram + {0} mikroqram + {0} mikroqram ton {0} ton {0} ton + + stone + {0} stone + {0} stone + + + funt + {0} funt + {0} funt + {0}/lb + + + unsiya + {0} unsiya + {0} unsiya + {0}/oz + + + troy unsiyası + {0} troy unsiyası + {0} troy unsiyası + + + karat + {0} karat + {0} karat + giqavatt {0} giqavatt {0} giqavatt - - at gücü - {0} at gücü - {0} at gücü - - - kilovatt - {0} kilovatt - {0} kilovatt - meqavatt {0} meqavatt {0} meqavatt - - millivatt - {0} millivatt - {0} millivatt + + kilovatt + {0} kilovatt + {0} kilovatt vatt {0} vatt {0} vatt + + millivatt + {0} millivatt + {0} millivatt + + + at gücü + {0} at gücü + {0} at gücü + hektopaskal {0} hektopaskal {0} hektopaskal - - civə düymü - {0} civə düymü - {0} civə düymü - - - millibar - {0} millibar - {0} millibar - millimetr civə sütunu {0} millimetr civə sütunu @@ -6238,10 +6397,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} funt/kvadrat düym {0} funt/kvadrat düym - - karat - {0} karat - {0} karat + + civə düymü + {0} civə düymü + {0} civə düymü + + + millibar + {0} millibar + {0} millibar kilometr/saat @@ -6258,6 +6422,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mil/saat {0} mil/saat + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + dərəcə Selsi {0} dərəcə Selsi @@ -6273,31 +6447,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dərəcə Kelvin {0} dərəcə Kelvin - - akr-fut - {0} akr-fut - {0} akr-fut - - - santilitr - {0} santilitr - {0} santilitr - - - kub santimetr - {0} kub santimetr - {0} kub santimetr - - - kub fut - {0} kub fut - {0} kub fut - - - kub düym - {0} kub düym - {0} kub düym - kub kilometr {0} kub kilometr @@ -6307,6 +6456,13 @@ For terms of use, see http://www.unicode.org/copyright.html kub metr {0} kub metr {0} kub metr + {0}/m³ + + + kub santimetr + {0} kub santimetr + {0} kub santimetr + {0}/sm³ kub mil @@ -6318,25 +6474,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kub yard {0} kub yard - - stəkan - {0} stəkan - {0} stəkan + + kub fut + {0} kub fut + {0} kub fut - - desilitr - {0} desilitr - {0} desilitr + + kub düym + {0} kub düym + {0} kub düym - - maye unsiyası - {0} maye unsiyası - {0} maye unsiyası - - - qallon - {0} qallon - {0} qallon + + meqalitr + {0} meqalitr + {0} meqalitr hektolitr @@ -6347,27 +6498,64 @@ For terms of use, see http://www.unicode.org/copyright.html litr {0} litr {0} litr + {0}/l - - meqalitr - {0} meqalitr - {0} meqalitr + + desilitr + {0} desilitr + {0} desilitr + + + santilitr + {0} santilitr + {0} santilitr millilitr {0} millilitr {0} millilitr - - pint - {0} pint - {0} pint + + mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + akr-fut + {0} akr-fut + {0} akr-fut + + + qallon + {0} qallon + {0} qallon + {0}/qal kvart {0} kvart {0} kvart + + pint + {0} pint + {0} pint + + + stəkan + {0} stəkan + {0} stəkan + + + maye unsiyası + {0} maye unsiyası + {0} maye unsiyası + xörək qaşığı {0} xörək qaşığı @@ -6378,6 +6566,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} çay qaşığı {0} çay qaşığı + + {0}E + {0}N + {0}S + {0}W + @@ -6393,6 +6587,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + döv + {0} döv + {0} döv + + + rad + {0} rad + {0} rad + + + dərəcə + {0}dər + {0}dər + dəqiqə {0}dəq @@ -6403,30 +6612,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0}san {0}san - - dərəcə - {0}dər - {0}dər - - - rad - {0} rad - {0} rad - - - akr - {0} ak - {0} ak + + kvadrat kilometr + {0} kv km + {0} kv km hektar {0} ha {0} ha + + kvadrat metr + {0} kv m + {0} kv m + {0}/m² + sm² {0} sm² {0} sm² + {0}/sm² + + + kvadrat mil + {0} kv mil + {0} kv mil + + + akr + {0} ak + {0} ak + + + yd² + {0} yd² + {0} yd² kvadrat fut @@ -6437,91 +6658,106 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0} in² {0} in² + {0}/in² - - kvadrat kilometr - {0} kv km - {0} kv km - - - kvadrat metr - {0} kv m - {0} kv m - - - kvadrat mil - {0} kv mil - {0} kv mil - - - yd² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt L/km {0} L/km {0} L/km + + L/100km + {0} L/100km + {0} L/100km + mpg {0} mpg {0} mpg - - bit - {0} bit - {0} bit - - - bayt - {0} bayt - {0} bayt - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + bayt + {0} bayt + {0} bayt + + + bit + {0} bit + {0} bit + + + əsr + {0} əsr + {0} əsr + + + il + {0} il + {0} il + {0}/il + + + ay + {0} ay + {0} ay + {0}/ay + + + həftə + {0} hft + {0} hft + {0}/hft + gün {0} gün {0} gün + {0}/gün saat @@ -6529,30 +6765,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} saat {0}/saat - - μsan - {0} μsan - {0} μsan - - - millisaniyə - {0} msan - {0} msan - dəqiqə {0} dəq {0} dəq - - - ay - {0} ay - {0} ay - - - nsan - {0} nsan - {0} nsan + {0}/dəq saniyə @@ -6560,15 +6777,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} san {0}/san - - həftə - {0} hft - {0} hft + + millisaniyə + {0} msan + {0} msan - - il - {0} il - {0} il + + μsan + {0} μsan + {0} μsan + + + nsan + {0} nsan + {0} nsan amp @@ -6590,6 +6812,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kkal + {0} kkal + {0} kkal + kal {0} kal @@ -6600,21 +6827,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Kal {0} Kal - - coul - {0} c - {0} c - - - kkal - {0} kkal - {0} kkal - kc {0} kc {0} kc + + coul + {0} c + {0} c + kWh {0} kWh @@ -6625,206 +6847,210 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - av - {0} av - {0} av + + kilometr + {0} km + {0} km + {0}/km - - sm - {0} sm - {0} sm + + metr + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - fut - {0} ft - {0} ft - - - düym - {0} in - {0} in - - - kilometr - {0} km - {0} km - - - işıq ili - {0} ii - {0} ii - - - metr - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - mil - {0} mil - {0} mil + + sm + {0} sm + {0} sm + {0}/sm millimetr {0} mm {0} mm + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - pc - {0} pc - {0} pc - pikometr {0} pm {0} pm + + mil + {0} mil + {0} mil + yard {0} yd {0} yd + + fut + {0} ft + {0} ft + {0}/ft + + + düym + {0} in + {0} in + {0}/in + + + pc + {0} pc + {0} pc + + + işıq ili + {0} ii + {0} ii + + + av + {0} av + {0} av + + + nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + lx {0} lx {0} lx - - CD - {0} CD - {0} CD - - - qram - {0} q - {0} q - - - kiloqram - {0} kq - {0} kq - t {0} t {0} t - - µq - {0} µq - {0} µq + + kiloqram + {0} kq + {0} kq + {0}/kq + + + qram + {0} q + {0} q + {0}/q mq {0} mq {0} mq - - unsiya - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - - - funt - {0} lb - {0} lb - - - stone - {0} stone - {0} stone + + µq + {0} µq + {0} µq tn {0} tn {0} tn + + stone + {0} stone + {0} stone + + + funt + {0} lb + {0} lb + {0}/lb + + + unsiya + {0} oz + {0} oz + {0}/oz + + + oz t + {0} oz t + {0} oz t + + + CD + {0} CD + {0} CD + GW {0} GW {0} GW - - at gücü - {0} hp - {0} hp - - - kilovatt - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kilovatt + {0} kW + {0} kW vatt {0} W {0} W + + mW + {0} mW + {0} mW + + + at gücü + {0} hp + {0} hp + hektopaskal {0} hPa {0} hPa - - civə düymü - {0} inHg - {0} inHg - - - millibar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -6835,10 +7061,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kt - {0} kt - {0} kt + + civə düymü + {0} inHg + {0} inHg + + + millibar + {0} mbar + {0} mbar kilometr/saat @@ -6855,6 +7086,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mil/saat {0} mil/saat + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + dərəcə Selsi {0}°C @@ -6870,31 +7111,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - - - sL - {0} sL - {0} sL - - - sm³ - {0} sm³ - {0} sm³ - - - ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -6904,6 +7120,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + sm³ + {0} sm³ + {0} sm³ + {0}/sm³ kub mil @@ -6915,25 +7138,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - st - {0} st - {0} st + + ft³ + {0} ft³ + {0} ft³ - - dL - {0} dL - {0} dL + + in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML hL @@ -6944,27 +7162,64 @@ For terms of use, see http://www.unicode.org/copyright.html litr {0} l {0} l + {0}/l - - ML - {0} ML - {0} ML + + dL + {0} dL + {0} dL + + + sL + {0} sL + {0} sL mL {0} mL {0} mL - - pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + ac ft + {0} ac ft + {0} ac ft + + + qal + {0} qal + {0} qal + {0}/qal qt {0} qt {0} qt + + pt + {0} pt + {0} pt + + + st + {0} st + {0} st + + + fl oz + {0} fl oz + {0} fl oz + xrqş {0} xrqş @@ -6975,6 +7230,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} çyqş {0} çyqş + + {0}E + {0}N + {0}S + {0}W + @@ -6984,6 +7245,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}′ {0}′ @@ -6992,26 +7257,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} ak - {0} ak + + {0} km² + {0} km² {0} ha {0} ha - - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} m² {0} m² @@ -7020,6 +7273,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mil² {0} mil² + + {0} ak + {0} ak + + + {0} ft² + {0} ft² + + + L/100km + {0} L/100km + {0} L/100km + + + il + {0} il + {0} il + + + ay + {0} ay + {0} ay + + + hft + {0} hft + {0} hft + gün {0} gün @@ -7030,66 +7311,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} saat {0} saat - - msan - {0} msan - {0} msan - dəq {0} dəq {0} dəq - - ay - {0} ay - {0} ay - san {0} san {0} san - - hft - {0} hft - {0} hft - - - il - {0} il - {0} il - - - sm - {0} sm - {0} sm - - - {0} ft - {0} ft - - - {0} in - {0} in + + msan + {0} msan + {0} msan kilometr {0} km {0} km - - {0} ii - {0} ii - metr {0} m {0} m - - {0} mil - {0} mil + + sm + {0} sm + {0} sm millimetr @@ -7100,34 +7350,46 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} mil + {0} mil + {0} yd {0} yd - - qram - {0} q - {0} q + + {0} ft + {0} ft + + + {0} in + {0} in + + + {0} ii + {0} ii kiloqram {0} kq {0} kq - - {0} oz - {0} oz + + qram + {0} q + {0} q + + + stone {0} lb {0} lb - - stone - - - {0} hp - {0} hp + + {0} oz + {0} oz {0} kW @@ -7137,6 +7399,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} hp + {0} hp + {0} hPa {0} hPa @@ -7163,7 +7429,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mil/saat - dərəcə Selsi + °C {0}° {0}° @@ -7184,6 +7450,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l + + {0}E + {0}N + {0}S + {0}W + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/az_Cyrl.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/az_Cyrl.xml similarity index 73% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/az_Cyrl.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/az_Cyrl.xml index 39164b4685f..b8d29752dd6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/az_Cyrl.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/az_Cyrl.xml @@ -1,28 +1,27 @@ - - - + @@ -216,13 +215,42 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0M + ¤ 0M + ¤ 00M + ¤ 00M + ¤ 000M + ¤ 000M + ¤ 0G + ¤ 0G + ¤ 00G + ¤ 00G + ¤ 000G + ¤ 000G + ¤ 0T + ¤ 0T + ¤ 00T + ¤ 00T + ¤ 000T + ¤ 000T + + манат - ман. - + + ман. + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/az_Cyrl_AZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/az_Cyrl_AZ.xml similarity index 69% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/az_Cyrl_AZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/az_Cyrl_AZ.xml index caf8a6dd19c..af6b4e45695 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/az_Cyrl_AZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/az_Cyrl_AZ.xml @@ -1,15 +1,15 @@ - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Свет + Афрыка + Паўночная Амерыка + Паўднёвая Амерыка + Акіянія + Заходняя Афрыка + Цэнтральная Амерыка + Усходняя Афрыка + Паўночная Афрыка + Цэнтральная Афрыка + Паўднёвая Афрыка + Паўночная і Паўднёвая Амерыкі + Паўночнаамерыканскі рэгіён + Карыбскія астравы + Усходняя Азія + Паўднёвая Азія + Паўднёва-Усходняя Азія + Паўднёвая Еўропа + Аўстралазія + Меланезія + Мікранезійскі рэгіён + Палінезія + Азія + Цэнтральная Азія + Заходняя Азія + Еўропа + Усходняя Еўропа + Паўночная Еўропа + Заходняя Еўропа + Лацінская Амерыка + Востраў Ушэсця + Андора + Аб’яднаныя Арабскія Эміраты + Афганістан + Антыгуа і Барбуда + Ангілья + Албанія + Арменія + Ангола + Антарктыка + Аргенціна + Амерыканскае Самоа + Аўстрыя + Аўстралія + Аруба + Аландскія астравы + Азербайджан + Боснія і Герцагавіна + Барбадас + Бангладэш + Бельгія + Буркіна-Фасо + Балгарыя + Бахрэйн + Бурундзі + Бенін + Сен-Бартэльмі + Бермудскія астравы + Бруней + Балівія + Карыбскія Нідэрланды + Бразілія + Багамы + Бутан + Востраў Бувэ + Батсвана + Беларусь + Беліз + Канада + Какосавыя астравы + Конга (Кіншаса) + Дэмакратычная Рэспубліка Конга + Цэнтральна-Афрыканская Рэспубліка + Конга (Бразавіль) + Рэспубліка Конга + Швейцарыя + Кот-д’Івуар + Бераг Слановай Косці + Астравы Кука + Чылі + Камерун + Кітай + Калумбія + Востраў Кліпертон + Коста-Рыка + Куба + Каба-Вердэ + Востраў Кюрасаа + Востраў Раства + Кіпр + Чэхія + Германія + Востраў Дыега-Гарсія + Джыбуці + Данія + Дамініка + Дамініканская Рэспубліка + Алжыр + Сеўта і Мелілья + Эквадор + Эстонія + Егіпет + Заходняя Сахара + Эрытрэя + Іспанія + Эфіопія + Еўрапейскі саюз + Фінляндыя + Фіджы + Фалклендскія астравы + Фалклендскія (Мальвінскія) астравы + Мікранезія + Фарэрскія астравы + Францыя + Габон + Вялікабрытанія + Брытанія + Грэнада + Грузія + Французская Гвіяна + Востраў Гернсі + Гана + Гібралтар + Грэнландыя + Гамбія + Гвінея + Гвадэлупа + Экватарыяльная Гвінея + Грэцыя + Паўднёвая Джорджыя і Паўднёвыя Сандвічавы астравы + Гватэмала + Гуам + Гвінея-Бісау + Гаяна + Ганконг, САР (Кітай) + Ганконг + Востраў Херд і астравы Макдональд + Гандурас + Харватыя + Гаіці + Венгрыя + Канарскія астравы + Інданезія + Ірландыя + Ізраіль + Востраў Мэн + Індыя + Брытанская тэрыторыя ў Індыйскім акіяне + Ірак + Іран + Ісландыя + Італія + Востраў Джэрсі + Ямайка + Іарданія + Японія + Кенія + Кыргызстан + Камбоджа + Кірыбаці + Каморскія Астравы + Сент-Кітс і Невіс + Паўночная Карэя + Паўднёвая Карэя + Кувейт + Кайманавы астравы + Казахстан + Лаос + Ліван + Сент-Люсія + Ліхтэнштэйн + Шры-Ланка + Ліберыя + Лесота + Літва + Люксембург + Латвія + Лівія + Марока + Манака + Малдова + Чарнагорыя + Сен-Мартэн + Мадагаскар + Маршалавы Астравы + Македонія + Македонія (БЮРМ) + Малі + М’янма (Бірма) + Манголія + Макаа, САР (Кітай) + Макаа + Паўночныя Марыянскія астравы + Марцініка + Маўрытанія + Мантсерат + Мальта + Маўрыкій + Мальдывы + Малаві + Мексіка + Малайзія + Мазамбік + Намібія + Новая Каледонія + Нігер + Востраў Норфалк + Нігерыя + Нікарагуа + Нідэрланды + Нарвегія + Непал + Науру + Ніуэ + Новая Зеландыя + Аман + Панама + Перу + Французская Палінезія + Папуа — Новая Гвінея + Філіпіны + Пакістан + Польшча + Сен-П’ер і Мікелон + Астравы Піткэрн + Пуэрта-Рыка + Палестынскія тэрыторыі + Палесціна + Партугалія + Палау + Парагвай + Катар + Вонкавая Акіянія + Рэюньён + Румынія + Сербія + Расія + Руанда + Саудаўская Аравія + Саламонавы Астравы + Сейшэльскія Астравы + Судан + Швецыя + Сінгапур + Востраў Святой Алены + Славенія + Свальбард (Паўночна-Усходняя Зямля) і Ян-Маен + Славакія + Сьера-Леонэ + Сан-Марына + Сенегал + Самалі + Сурынам + Паўднёвы Судан + Сан-Тамэ і Прынсіпі + Сальвадор + Сінт-Мартэн + Сірыя + Свазіленд + Трыстан-да-Кунья + Цёркс і Кайкас + Чад + Французскія Паўднёвыя тэрыторыі + Тога + Тайланд + Таджыкістан + Такелау + Усходні Тымор + Туркменістан + Туніс + Тонга + Турцыя + Трынідад і Табага + Тувалу + Тайвань + Танзанія + Украіна + Уганда + Знешнія малыя астравы ЗША + Злучаныя Штаты Амерыкі + ЗША + Уругвай + Узбекістан + Ватыкан + Сент-Вінсент і Грэнадзіны + Венесуэла + Брытанскія Віргінскія астравы + Амерыканскія Віргінскія астравы + В’етнам + Вануату + Уоліс і Футуна + Самоа + Косава + Емен + Востраў Маёта + Паўднёва-Афрыканская Рэспубліка + Замбія + Зімбабвэ + Невядомы рэгіён + + + каляндар + сартаванне + валюта + часавы цыкл (12 і 24) + правілы разрыву радка + сістэма мер + лічбы + + + будыйскі каляндар + кітайскі каляндар + каляндар дангі + эфіопскі каляндар + грыгарыянскі каляндар + яўрэйскі каляндар + мусульманскі каляндар + мусульманскі свецкі каляндар + каляндар ISO-8601 + японскі каляндар + персідскі каляндар + каляндар Міньго + стандартнае сартаванне Unicode + універсальны пошук + стандартнае сартаванне + 12-гадзінны фармат часу (0-11) + 12-гадзінны фармат часу (1-12) + 24-гадзінны фармат часу (0-23) + 24-гадзінны фармат часу (1-24) + гібкія правілы разрыву радка + стандартныя правілы разрыву радка + строгія правілы разрыву радка + метрычная сістэма мер + брытанская сістэма мер + амерыканская сістэма мер + арабска-індыйскія лічбы + пашыраная сістэма арабска-індыйскіх лічбаў + армянскія лічбы + армянскія лічбы ў ніжнім рэгістры + бенгальскія лічбы + лічбы дэванагары + эфіопскія лічбы + поўнашырынныя лічбы + грузінскія лічбы + грэчаскія лічбы + грэчаскія лічбы ў ніжнім рэгістры + лічбы гуджараці + лічбы гурмукхі + кітайскія дзесятковыя лічбы + кітайскія спрошчаныя лічбы + кітайскія спрошчаныя лічбы (фінансы) + кітайскія традыцыйныя лічбы + кітайскія традыцыйныя лічбы (фінансы) + яўрэйскія лічбы + японскія лічбы + японскія лічбы (фінансы) + хмерскія лічбы + лічбы каннада + лаоскія лічбы + сучасныя арабскія лічбы + лічбы малаялам + бірманскія лічбы + лічбы орыя + рымскія лічбы + рымскія лічбы ў ніжнім рэгістры + тамільскія традыцыйныя лічбы + тамільскія лічбы + лічбы тэлугу + тайскія лічбы + тыбецкія лічбы + + + метрычная + брытанская + амерыканская + + + Мова: {0} + Пісьмо: {0} + Рэгіён: {0} + + + + [а б в г д {дж} {дз} е ё ж з і й к л м н о п р с т у ў ф х ц ч ш ы ь э ю я] + [{а\u0301} {е\u0301} {ё\u0301} {і\u0301} {о\u0301} {у\u0301} {ы\u0301} {э\u0301} {ю\u0301} {я\u0301}] + [А Б В Г Д Е Ж З І Й К Л М Н О П Р С Т У Ф Х Ц Ч Ш Ы Э Ю Я] + {0}… + …{0} + {0}…{1} + {0} … + … {0} + {0} … {1} + ? + + + « + » + « + » + + + + + + + + EEEE, d MMMM y G + + + + + d MMMM y G + + + + + d MMM y G + + + + + d.M.yy + + + + + + d + E, d + G y + h.mm a + HH.mm + h.mm.ss a + HH.mm.ss + L + d.M + E, d.M + LLL + d MMM + E, d MMM + G y + M.y + d.M.y + E, d.M.y + MMM y G + d MMM y G + E, d MMM y G + + + + + + + + EEEE, d MMMM y G + + + + + d MMMM y G + + + + + d.M.y G + + + + + d.M.y GGGGG + + + + + + + {1} 'у' {0} + + + + + {1} 'у' {0} + + + + + {1}, {0} + + + + + {1}, {0} + + + + d + ccc + E, d + y G + LLL y G + d MMM y G + E, d MMM y G + h.mm a + HH.mm + h.mm.ss a + HH.mm.ss + L + d.M + E, d.M + LLL + d MMM + E, d MMM + d MMMM + mm.ss + y G + y G + M.y G + d.M.y G + E, d.M.y G + LLL y G + d MMM y G + E, d MMM y G + LLLL y G + QQQ y G + QQQQ y G + + + {0} - {1} + + d–d + + + h–h a + + + HH–HH + + + h.mm–h.mm a + h.mm–h.mm a + + + HH.mm–HH.mm + HH.mm–HH.mm + + + h.mm–h.mm a v + h.mm–h.mm a v + + + HH.mm–HH.mm v + HH.mm–HH.mm v + + + h–h a v + + + HH–HH v + + + M–M + + + d.M – d.M + d.M – d.M + + + E, d.M – E, d.M + E, d.M – E, d.M + + + LLL–LLL + + + d–d MMM + d MMM – d MMM + + + E, d – E, d MMM + E, d MMM – E, d MMM + + + y–y G + + + M.y – M.y G + M.y – M.y G + + + d.M.y – d.M.y G + d.M.y – d.M.y G + d.M.y – d.M.y G + + + E, d.M.y – E, d.M.y G + E, d.M.y – E, d.M.y G + E, d.M.y – E, d.M.y G + + + LLL–LLL y G + LLL y – LLL y G + + + d–d MMM y G + d MMM – d MMM y G + d MMM y – d MMM y G + + + E, d – E, d MMM y G + E, d MMM – E, d MMM y G + E, d MMM y – E, d MMM y G + + + LLLL–LLLL y G + LLLL y – LLLL y G + + + + + + + + + сту + лют + сак + кра + мая + чэр + ліп + жні + вер + кас + ліс + сне + + + с + л + с + к + м + ч + л + ж + в + к + л + с + + + студзеня + лютага + сакавіка + красавіка + мая + чэрвеня + ліпеня + жніўня + верасня + кастрычніка + лістапада + снежня + + + + + сту + лют + сак + кра + май + чэр + ліп + жні + вер + кас + ліс + сне + + + с + л + с + к + м + ч + л + ж + в + к + л + с + + + студзень + люты + сакавік + красавік + май + чэрвень + ліпень + жнівень + верасень + кастрычнік + лістапад + снежань + + + + + + + нд + пн + аў + ср + чц + пт + сб + + + н + п + а + с + ч + п + с + + + нд + пн + аў + ср + чц + пт + сб + + + нядзеля + панядзелак + аўторак + серада + чацвер + пятніца + субота + + + + + нд + пн + аў + ср + чц + пт + сб + + + н + п + а + с + ч + п + с + + + нд + пн + аў + ср + чц + пт + сб + + + нядзеля + панядзелак + аўторак + серада + чацвер + пятніца + субота + + + + + + + 1-шы кв. + 2-гі кв. + 3-ці кв. + 4-ты кв. + + + 1 + 2 + 3 + 4 + + + 1-шы квартал + 2-гі квартал + 3-ці квартал + 4-ты квартал + + + + + 1-шы кв. + 2-гі кв. + 3-ці кв. + 4-ты кв. + + + 1 + 2 + 3 + 4 + + + 1-шы квартал + 2-гі квартал + 3-ці квартал + 4-ты квартал + + + + + + + раніцы + вечара + + + ран. + веч. + + + да паўдня + пасля паўдня + + + + + раніцы + вечара + + + раніцы + вечара + + + да паўдня + пасля паўдня + + + + + + да нашай эры + нашай эры + наша эра + + + да н.э. + н.э. + + + + + + EEEE, d MMMM y + + + + + d MMMM y + + + + + d.M.y + + + + + d.M.yy + + + + + + + HH.mm.ss zzzz + + + + + HH.mm.ss z + + + + + HH.mm.ss + + + + + HH.mm + + + + + + + {1} 'у' {0} + + + + + {1} 'у' {0} + + + + + {1}, {0} + + + + + {1}, {0} + + + + d + ccc + d, E + E hh.mm a + E HH.mm + E hh.mm.ss a + E HH.mm.ss + y G + LLL y G + d MMM y G + E, d MMM y G + hh a + HH + hh.mm a + HH.mm + hh.mm.ss a + HH.mm.ss + hh.mm.ss a v + HH.mm.ss v + hh.mm a v + HH.mm v + L + d.M + E, d.M + LLL + d MMM + E, d MMM + d MMMM + E, d MMMM + mm.ss + y + M.y + d.M.y + E, d.M.y + LLL y + d MMM y + E, d MMM y + LLLL y + QQQ y + QQQQ y + + + {0} {1} + + + {0} – {1} + + d–d + + + h a – h a + h–h a + + + HH–HH + + + hh.mm a – hh.mm a + hh.mm–hh.mm a + hh.mm–hh.mm a + + + HH.mm–HH.mm + HH.mm–HH.mm + + + hh.mm a – hh.mm a v + hh.mm–hh.mm a v + hh.mm–hh.mm a v + + + HH.mm–HH.mm v + HH.mm–HH.mm v + + + h a – h a v + h–h a v + + + HH–HH v + + + M–M + + + d.M – d.M + d.M – d.M + + + E, d.M – E, d.M + E, d.M – E, d.M + + + LLL–LLL + + + d–d MMM + d MMM – d MMM + + + E, d – E, d MMM + E, d MMM – E, d MMM + + + y–y + + + M.y – M.y + M.y – M.y + + + d.M.y – d.M.y + d.M.y – d.M.y + d.M.y – d.M.y + + + E, d.M.y – E, d.M.y + E, d.M.y – E, d.M.y + E, d.M.y – E, d.M.y + + + LLL–LLL y + LLL y – LLL y + + + d–d MMM y + d MMM – d MMM y + d MMM y – d MMM y + + + E, d – E, d MMM y + E, d MMM – E, d MMM y + E, d MMM y – E, d MMM y + + + LLLL–LLLL y + LLLL y – LLLL y + + + + + + + + эра + + + год + у мінулым годзе + у гэтым годзе + у наступным годзе + + праз {0} год + праз {0} гады + праз {0} гадоў + праз {0} года + + + {0} год таму + {0} гады таму + {0} гадоў таму + {0} года таму + + + + г. + + праз {0} г. + праз {0} г. + праз {0} г. + праз {0} г. + + + {0} г. таму + {0} г. таму + {0} г. таму + {0} г. таму + + + + г. + + праз {0} г. + праз {0} г. + праз {0} г. + праз {0} г. + + + {0} г. таму + {0} г. таму + {0} г. таму + {0} г. таму + + + + квартал + + праз {0} квартал + праз {0} кварталы + праз {0} кварталаў + праз {0} квартала + + + {0} квартал таму + {0} кварталы таму + {0} кварталаў таму + {0} квартала таму + + + + кв. + + праз {0} кв. + праз {0} кв. + праз {0} кв. + праз {0} кв. + + + {0} кв. таму + {0} кв. таму + {0} кв. таму + {0} кв. таму + + + + кв. + + праз {0} кв. + праз {0} кв. + праз {0} кв. + праз {0} кв. + + + {0} кв. таму + {0} кв. таму + {0} кв. таму + {0} кв. таму + + + + месяц + у мінулым месяцы + у гэтым месяцы + у наступным месяцы + + праз {0} месяц + праз {0} месяцы + праз {0} месяцаў + праз {0} месяца + + + {0} месяц таму + {0} месяцы таму + {0} месяцаў таму + {0} месяца таму + + + + мес. + + праз {0} мес. + праз {0} мес. + праз {0} мес. + праз {0} мес. + + + {0} мес. таму + {0} мес. таму + {0} мес. таму + {0} мес. таму + + + + мес. + + праз {0} мес. + праз {0} мес. + праз {0} мес. + праз {0} мес. + + + {0} мес. таму + {0} мес. таму + {0} мес. таму + {0} мес. таму + + + + тыдзень + на мінулым тыдні + на гэтым тыдні + на наступным тыдні + + праз {0} тыдзень + праз {0} тыдні + праз {0} тыдняў + праз {0} тыдня + + + {0} тыдзень таму + {0} тыдні таму + {0} тыдняў таму + {0} тыдня таму + + + + тыд. + + праз {0} тыд. + праз {0} тыд. + праз {0} тыд. + праз {0} тыд. + + + {0} тыд. таму + {0} тыд. таму + {0} тыд. таму + {0} тыд. таму + + + + тыд. + + праз {0} тыд. + праз {0} тыд. + праз {0} тыд. + праз {0} тыд. + + + {0} тыд. таму + {0} тыд. таму + {0} тыд. таму + {0} тыд. таму + + + + дзень + пазаўчора + учора + сёння + заўтра + паслязаўтра + + праз {0} дзень + праз {0} дні + праз {0} дзён + праз {0} дня + + + {0} дзень таму + {0} дні таму + {0} дзён таму + {0} дня таму + + + + дзень + + праз {0} дзень + праз {0} дні + праз {0} дзён + праз {0} дня + + + {0} дзень таму + {0} дні таму + {0} дзён таму + {0} дня таму + + + + д. + + праз {0} д. + праз {0} д. + праз {0} д. + праз {0} д. + + + {0} д. таму + {0} д. таму + {0} д. таму + {0} д. таму + + + + дзень тыдня + + + у мінулую нядзелю + у гэту нядзелю + у наступную нядзелю + + + у мінулую нд + у гэту нд + у наступную нд + + + у мінулую нд + у гэту нд + у наступную нд + + + у мінулы панядзелак + у гэты панядзелак + у наступны панядзелак + + + у мінулы пн + у гэты пн + у наступны пн + + + у мінулы пн + у гэты пн + у наступны пн + + + у мінулы аўторак + у гэты аўторак + у наступны аўторак + + + у мінулы аў + у гэты аў + у наступны аў + + + у мінулы аў + у гэты аў + у наступны аў + + + у мінулую сераду + у гэту сераду + у наступную сераду + + + у мінулую ср + у гэту ср + у наступную ср + + + у мінулую ср + у гэту ср + у наступную ср + + + у мінулы чацвер + у гэты чацвер + у наступны чацвер + + + у мінулы чц + у гэты чц + у наступны чц + + + у мінулы чц + у гэты чц + у наступны чц + + + у мінулую пятніцу + у гэту пятніцу + у наступную пятніцу + + + у мінулую пт + у гэту пт + у наступную пт + + + у мінулую пт + у гэту пт + у наступную пт + + + у мінулую суботу + у гэту суботу + у наступную суботу + + + у мінулую сб + у гэту сб + у наступную сб + + + у мінулую сб + у гэту сб + у наступную сб + + + ДП/ПП + + + гадзіна + + праз {0} гадзіну + праз {0} гадзіны + праз {0} гадзін + праз {0} гадзіны + + + {0} гадзіна таму + {0} гадзіны таму + {0} гадзін таму + {0} гадзіны таму + + + + гадз. + + праз {0} гадз. + праз {0} гадз. + праз {0} гадз. + праз {0} гадз. + + + {0} гадз. таму + {0} гадз. таму + {0} гадз. таму + {0} гадз. таму + + + + гадз. + + праз {0} гадз. + праз {0} гадз. + праз {0} гадз. + праз {0} гадз. + + + {0} гадз. таму + {0} гадз. таму + {0} гадз. таму + {0} гадз. таму + + + + хвіліна + + праз {0} хвіліну + праз {0} хвіліны + праз {0} хвілін + праз {0} хвіліны + + + {0} хвіліна таму + {0} хвіліны таму + {0} хвілін таму + {0} хвіліны таму + + + + хв. + + праз {0} хв. + праз {0} хв. + праз {0} хв. + праз {0} хв. + + + {0} хв. таму + {0} хв. таму + {0} хв. таму + {0} хв. таму + + + + хв. + + праз {0} хв. + праз {0} хв. + праз {0} хв. + праз {0} хв. + + + {0} хв. таму + {0} хв. таму + {0} хв. таму + {0} хв. таму + + + + секунда + + праз {0} секунду + праз {0} секунды + праз {0} секунд + праз {0} секунды + + + {0} секунда таму + {0} секунды таму + {0} секунд таму + {0} секунды таму + + + + сек. + + праз {0} сек. + праз {0} сек. + праз {0} сек. + праз {0} сек. + + + {0} сек. таму + {0} сек. таму + {0} сек. таму + {0} сек. таму + + + + сек. + + праз {0} сек. + праз {0} сек. + праз {0} сек. + праз {0} сек. + + + {0} сек. таму + {0} сек. таму + {0} сек. таму + {0} сек. таму + + + + часавы пояс + + + + +HH.mm;-HH.mm + GMT{0} + GMT + Час: {0} + {0} (+1) + {0} (+0) + {1} ({0}) + + Невядомы горад + + + Андора + + + Дубай + + + Кабул + + + Антыгуа + + + Ангілья + + + Тырана + + + Ерэван + + + Луанда + + + Ратэра + + + Палмер + + + Трол + + + Сёва + + + Моўсан + + + Дэйвіс + + + Усход + + + Кэйсі + + + Дзюмон-Дзюрвіль + + + Мак-Мерда + + + Рыа-Гальегас + + + Мендоса + + + Сан-Хуан + + + Ушуая + + + Ла-Рыёха + + + Сан-Луіс + + + Катамарка + + + Сальта + + + Жужуй + + + Тукуман + + + Кордава + + + Буэнас-Айрэс + + + Пага-Пага + + + Вена + + + Перт + + + Юкла + + + Дарвін + + + Адэлаіда + + + Брокен-Хіл + + + Керы + + + Мельбурн + + + Хобарт + + + Ліндэман + + + Сідней + + + Брысбен + + + Макуоры + + + Лорд-Хау + + + Аруба + + + Марыехамн + + + Баку + + + Сараева + + + Барбадас + + + Дака + + + Брусель + + + Уагадугу + + + Сафія + + + Бахрэйн + + + Бужумбура + + + Порта-Нова + + + Сен-Бартэльмі + + + Бермудскія астравы + + + Бруней + + + Ла-Пас + + + Кралендэйк + + + Эйрунэпе + + + Рыу-Бранку + + + Порту-Велью + + + Боа-Віста + + + Манаус + + + Куяба + + + Сантарэн + + + Кампу-Гранды + + + Белен + + + Арагуаіна + + + Сан-Паўлу + + + Баія + + + Фарталеза + + + Масеё + + + Рэсіфі + + + Наронья + + + Насау + + + Тхімпху + + + Габаронэ + + + Мінск + + + Беліз + + + Доўсан + + + Уайтхорс + + + Інувік + + + Ванкувер + + + Досан-Крык + + + Крэстан + + + Елаўнайф + + + Эдмантан + + + Свіфт Керэнт + + + Кеймбрыдж-Бэй + + + Рэджайна + + + Вініпег + + + Рэзальют + + + Рэйні-Рывер + + + Ранкін-Інлет + + + Атыкокан + + + Тандэр-Бэй + + + Ніпігон + + + Таронта + + + Ікалуіт + + + Пангніртунг + + + Манктон + + + Галіфакс + + + Гус-Бэй + + + Глэйс-Бэй + + + Бланк-Саблон + + + Сент-Джонс + + + Какосавыя астравы + + + Кіншаса + + + Лубумбашы + + + Бангі + + + Бразавіль + + + Цюрых + + + Абіджан + + + Раратонга + + + Пасхі востраў + + + Сант’яга + + + Дуала + + + Урумчы + + + Шанхай + + + Багата + + + Коста-Рыка + + + Гавана + + + Каба-Вердэ + + + Кюрасаа + + + Востраў Раства + + + Нікасія + + + Прага + + + Бюзінген + + + Берлін + + + Джыбуці + + + Капенгаген + + + Дамініка + + + Санта-Дамінга + + + Алжыр + + + Галапагас + + + Гуаякіль + + + Талін + + + Каір + + + Эль-Аюн + + + Асмара + + + Канарскія астравы + + + Сеўта + + + Мадрыд + + + Адыс-Абеба + + + Хельсінкі + + + Фіджы + + + Стэнлі + + + Чуўк + + + Панпеі + + + Кусаіе + + + Фарэрскія астравы + + + Парыж + + + Лібрэвіль + + + + Брытанскі летні час + + Лондан + + + Грэнада + + + Тбілісі + + + Каена + + + Гернсі + + + Акра + + + Гібралтар + + + Туле + + + Нуўк + + + Ілакортаарміут + + + Данмарксхаўн + + + Банжул + + + Конакры + + + Гвадэлупа + + + Малаба + + + Афіны + + + Паўднёвая Джорджыя + + + Гватэмала + + + Гуам + + + Бісау + + + Гаяна + + + Ганконг + + + Тэгусігальпа + + + Заграб + + + Порт-о-Прэнс + + + Будапешт + + + Джакарта + + + Панціянак + + + Макасар + + + Джаяпура + + + + Ірландскі стандартны час + + Дублін + + + Іерусалім + + + Востраў Мэн + + + Калькута + + + Чагас + + + Багдад + + + Тэгеран + + + Рэйк’явік + + + Рым + + + Джэрсі + + + Ямайка + + + Аман (горад) + + + Токіа + + + Найробі + + + Бішкек + + + Пнампень + + + Эндэрберы + + + Кірыцімаці + + + Тарава + + + Камор + + + Сент-Кітс + + + Пхеньян + + + Сеул + + + Кувейт + + + Кайман + + + Актау + + + Уральск + + + Актабэ + + + Кызыларда + + + Алматы + + + В’енцьян + + + Бейрут + + + Сент-Люсія + + + Вадуц + + + Каломба + + + Манровія + + + Масеру + + + Вільнюс + + + Люксембург + + + Рыга + + + Трыпалі + + + Касабланка + + + Манака + + + Кішынёў + + + Падгорыца + + + Марыго + + + Антананарыву + + + Кваджалейн + + + Маджура + + + Скоп’е + + + Бамако + + + Рангун + + + Хоўд + + + Улан-Батар + + + Чайбалсан + + + Макаа + + + Сайпан + + + Марцініка + + + Нуакшот + + + Мантсерат + + + Мальта + + + Маўрыкій + + + Мальдывы + + + Блантайр + + + Тыхуана + + + Санта-Ісабель + + + Эрмасілья + + + Масатлан + + + Чыуауа + + + Баія-дэ-Бандэрас + + + Ахінага + + + Мантэрэй + + + Мехіка + + + Матаморас + + + Мерыда + + + Канкун + + + Куала-Лумпур + + + Кучынг + + + Мапуту + + + Віндхук + + + Нумеа + + + Ніямей + + + Норфалк + + + Лагас + + + Манагуа + + + Амстэрдам + + + Осла + + + Катманду + + + Науру + + + Ніуэ + + + Чатэм + + + Окленд + + + Маскат + + + Панама + + + Ліма + + + Таіці + + + Маркізскія астравы + + + Астравы Гамб’е + + + Порт-Морсбі + + + Бугенвіль + + + Маніла + + + Карачы + + + Варшава + + + Мікелон + + + Піткэрн + + + Пуэрта-Рыка + + + Газа + + + Хеўрон + + + Азорскія астравы + + + Мадэйра + + + Лісабон + + + Палау + + + Асунсьён + + + Катар + + + Рэюньён + + + Бухарэст + + + Бялград + + + Калінінград + + + Сімферопаль + + + Масква + + + Валгаград + + + Самара + + + Екацярынбург + + + Омск + + + Новасібірск + + + Навакузнецк + + + Краснаярск + + + Іркуцк + + + Чыта + + + Якуцк + + + Уладзівасток + + + Хандыга + + + Сахалін + + + Вусць-Нера + + + Магадан + + + Сярэднекалымск + + + Камчатка + + + Анадыр + + + Кігалі + + + Эр-Рыяд + + + Гуадалканал + + + Маэ + + + Хартум + + + Стакгольм + + + Сінгапур + + + Востраў Святой Алены + + + Любляна + + + Лонгйір + + + Браціслава + + + Фрытаўн + + + Сан-Марына + + + Дакар + + + Магадыша + + + Парамарыба + + + Джуба + + + Сан-Тамэ + + + Эль-Сальвадор + + + Лоуэр Прынсіз Квортар + + + Дамаск + + + Мбабанэ + + + Гранд-Цёрк + + + Нджамена + + + Кергелен + + + Ламэ + + + Бангкок + + + Душанбэ + + + Факаофа + + + Дылі + + + Ашгабад + + + Туніс + + + Тангатапу + + + Стамбул + + + Порт-оф-Спейн + + + Фунафуці + + + Тайбэй + + + Дар-эс-Салам + + + Ужгарад + + + Кіеў + + + Запарожжа + + + Кампала + + + Мідуэй + + + Джонстан + + + Уэйк + + + Адак + + + Ном + + + Ганалулу + + + Анкорыдж + + + Якутат + + + Сітка + + + Джуна + + + Метлакатла + + + Лос-Анджэлес + + + Бойсэ + + + Фінікс + + + Дэнвер + + + Бойла, Паўночная Дакота + + + Нью-Сейлем, Паўночная Дакота + + + Сентар, Паўночная Дакота + + + Чыкага + + + Мяноміні + + + Вінсенс, Індыяна + + + Пецярсбург, Індыяна + + + Тэл Сіці, Індыяна + + + Нокс, Індыяна + + + Уінамак, Індыяна + + + Марэнга, Індыяна + + + Індыянапаліс + + + Луісвіл + + + Віві, Індыяна + + + Мантысела, Кентукі + + + Дэтройт + + + Нью-Ёрк + + + Мантэвідэа + + + Самарканд + + + Ташкент + + + Ватыкан + + + Сент-Вінсент + + + Каракас + + + Тартола + + + Сент-Томас + + + Хашымін + + + Эфатэ + + + Уоліс + + + Апія + + + Адэн + + + Маёта + + + Іаганэсбург + + + Лусака + + + Харарэ + + + + Афганістанскі час + + + + + Цэнтральнаафрыканскі час + + + + + Усходнеафрыканскі час + + + + + Паўднёваафрыканскі час + + + + + Заходнеафрыканскі час + Заходнеафрыканскі стандартны час + Заходнеафрыканскі летні час + + + + + Час Аляскі + Стандартны час Аляскі + Летні час Аляскі + + + + + Амазонскі час + Амазонскі стандартны час + Амазонскі летні час + + + + + Паўночнаамерыканскі цэнтральны час + Паўночнаамерыканскі цэнтральны стандартны час + Паўночнаамерыканскі цэнтральны летні час + + + + + Паўночнаамерыканскі ўсходні час + Паўночнаамерыканскі ўсходні стандартны час + Паўночнаамерыканскі ўсходні летні час + + + + + Паўночнаамерыканскі горны час + Паўночнаамерыканскі горны стандартны час + Паўночнаамерыканскі горны летні час + + + + + Ціхаакіянскі час + Ціхаакіянскі стандартны час + Ціхаакіянскі летні час + + + + + Час Апіі + Стандартны час Апіі + Летні час Апіі + + + + + Час Саудаўскай Аравіі + Стандартны час Саудаўскай Аравіі + Летні час Саудаўскай Аравіі + + + + + Аргенцінскі час + Аргенцінскі стандартны час + Аргенцінскі летні час + + + + + Час Заходняй Аргенціны + Стандартны час Заходняй Аргенціны + Летні час Заходняй Аргенціны + + + + + Час Арменіі + Стандартны час Арменіі + Летні час Арменіі + + + + + Атлантычны час + Атлантычны стандартны час + Атлантычны летні час + + + + + Час цэнтральнай Аўстраліі + Стандартны час цэнтральнай Аўстраліі + Летні час цэнтральнай Аўстраліі + + + + + Заходні час Цэнтральнай Аўстраліі + Заходні стандартны час Цэнтральнай Аўстраліі + Заходні летні час Цэнтральнай Аўстраліі + + + + + Час усходняй Аўстраліі + Стандартны час усходняй Аўстраліі + Летні час усходняй Аўстраліі + + + + + Час заходняй Аўстраліі + Стандартны час заходняй Аўстраліі + Летні час заходняй Аўстраліі + + + + + Час Азербайджана + Стандартны час Азербайджана + Летні час Азербайджана + + + + + Час Азорскіх астравоў + Стандартны час Азорскіх астравоў + Летні час Азорскіх астравоў + + + + + Час Бангладэша + Стандартны час Бангладэша + Летні час Бангладэша + + + + + Час Бутана + + + + + Балівійскі час + + + + + Бразільскі час + Бразільскі стандартны час + Бразільскі летні час + + + + + Час Брунея + + + + + Час Каба-Вердэ + Стандартны час Каба-Вердэ + Летні час Каба-Вердэ + + + + + Час Чамора + + + + + Час Чатэма + Стандартны час Чатэма + Летні час Чатэма + + + + + Чылійскі час + Чылійскі стандартны час + Чылійскі летні час + + + + + Час Кітая + Стандартны час Кітая + Летні час Кітая + + + + + Час Чайбалсана + Стандартны час Чайбалсана + Летні час Чайбалсана + + + + + Час вострава Раства + + + + + Час Какосавых астравоў + + + + + Калумбійскі час + Калумбійскі стандартны час + Калумбійскі летні час + + + + + Час астравоў Кука + Стандартны час астравоў Кука + Паўлетні час астравоў Кука + + + + + Час Кубы + Стандартны час Кубы + Летні час Кубы + + + + + Час станцыі Дэйвіс + + + + + Час станцыі Дзюмон-Дзюрвіль + + + + + Час Усходняга Тымора + + + + + Час вострава Пасхі + Стандартны час вострава Пасхі + Летні час вострава Пасхі + + + + + Эквадорскі час + + + + + Цэнтральнаеўрапейскі час + Цэнтральнаеўрапейскі стандартны час + Цэнтральнаеўрапейскі летні час + + + + + Усходнееўрапейскі час + Усходнееўрапейскі стандартны час + Усходнееўрапейскі летні час + + + + + Беларускі час + + + + + Заходнееўрапейскі час + Заходнееўрапейскі стандартны час + Заходнееўрапейскі летні час + + + + + Час Фалклендскіх астравоў + Стандартны час Фалклендскіх астравоў + Летні час Фалклендскіх астравоў + + + + + Час Фіджы + Стандартны час Фіджы + Летні час Фіджы + + + + + Час Французскай Гвіяны + + + + + Час Французскіх Паўднёвых і Антарктычных терыторый + + + + + Стандартны час Галапагоскіх астравоў + + + + + Час атравоў Гамб’е + + + + + Грузінскі час + Грузінскі стандартны час + Грузінскі летні час + + + + + Час астравоў Гілберта + + + + + Час па Грынвічы + + + + + Час Усходняй Грэнландыі + Стандартны час Усходняй Грэнландыі + Летні час Усходняй Грэнландыі + + + + + Час Заходняй Грэнландыі + Стандартны час Заходняй Грэнландыі + Летні час Заходняй Грэнландыі + + + + + Час Персідскага заліва + + + + + Час Гаяны + + + + + Гавайска-Алеуцкі час + Гавайска-Алеуцкі стандартны час + Гавайска-Алеуцкі летні час + + + + + Час Ганконга + Стандартны час Ганконга + Летні час Ганконга + + + + + Час Хоўда + Стандартны час Хоўда + Летні час Хоўда + + + + + Час Індыі + + + + + Час Індыйскага акіяна + + + + + Індакітайскі час + + + + + Цэнтральнаінданезійскі час + + + + + Усходнеінданезійскі час + + + + + Заходнеінданезійскі час + + + + + Іранскі час + Іранскі стандартны час + Іранскі летні час + + + + + Іркуцкі час + Іркуцкі стандартны час + Іркуцкі летні час + + + + + Ізраільскі час + Ізраільскі стандартны час + Ізраільскі летні час + + + + + Час Японіі + Стандартны час Японіі + Летні час Японіі + + + + + Усходнеказахстанскі час + + + + + Заходнеказахстанскі час + + + + + Час Карэі + Стандартны час Карэі + Летні час Карэі + + + + + Час астравоў Кусаіе + + + + + Краснаярскі час + Краснаярскі стандартны час + Краснаярскі летні час + + + + + Час Кыргызстана + + + + + Час астравоў Лайн + + + + + Час Лорд-Хау + Стандартны час Лорд-Хау + Летні час Лорд-Хау + + + + + Час вострава Макуоры + + + + + Магаданскі час + Магаданскі стандартны час + Магаданскі летні час + + + + + Час Малайзіі + + + + + Час Мальдыў + + + + + Час Маркізскіх астравоў + + + + + Час Маршалавых Астравоў + + + + + Час Маўрыкія + Стандартны час Маўрыкія + Летні час Маўрыкія + + + + + Час станцыі Моўсан + + + + + Паўночнаамерыканскі мексіканскі час + Паўночнаамерыканскі мексіканскі стандартны час + Паўночнаамерыканскі летні час + + + + + Мексіканскі ціхаакіянскі час + Мексіканскі ціхаакіянскі стандатны час + Мексіканскі ціхаакіянскі летні час + + + + + Час Улан-Батара + Стандартны час Улан-Батара + Летні час Улан-Батара + + + + + Маскоўскі час + Маскоўскі стандартны час + Маскоўскі летні час + + + + + Час М’янмы + + + + + Час Науру + + + + + Непальскі час + + + + + Час Новай Каледоніі + Стандартны час Новай Каледоніі + Летні час Новай Каледоніі + + + + + Час Новай Зеландыі + Стандартны час Новай Зеландыі + Летні час Новай Зеландыі + + + + + Ньюфаўндлендскі час + Ньюфаўндлендскі стандартны час + Ньюфаўндлендскі летні час + + + + + Час Ніуэ + + + + + Час вострава Норфалк + + + + + Час Фернанду-ды-Наронья + Стандартны час Фернанду-ды-Наронья + Летні час Фернанду-ды-Наронья + + + + + Новасібірскі час + Новасібірскі стандартны час + Новасібірскі летні час + + + + + Омскі час + Омскі стандартны час + Омскі летні час + + + + + Пакістанскі час + Пакістанскі стандартны час + Пакістанскі летні час + + + + + Час Палау + + + + + Час Папуа — Новай Гвінеі + + + + + Час Парагвая + Стандартны час Парагвая + Летні час Парагвая + + + + + Перуанскі час + Перуанскі стандартны час + Перуанскі летні час + + + + + Філіпінскі час + Філіпінскі стандартны час + Філіпінскі летні час + + + + + Час астравоў Фенікс + + + + + Час Сен-П’ер і Мікелон + Стандартны час Сен-П’ер і Мікелон + Стандартны летні час Сен-П’ер і Мікелон + + + + + Час астравоў Піткэрн + + + + + Час Панапэ + + + + + Час Рэюньёна + + + + + Час станцыі Ратэра + + + + + Сахалінскі час + Сахалінскі стандартны час + Сахалінскі летні час + + + + + Час Самоа + Стандартны час Самоа + Летні час Самоа + + + + + Час Сейшэльскіх астравоў + + + + + Сінгапурскі час + + + + + Час Саламонавых Астравоў + + + + + Час Паўднёвай Джорджыі + + + + + Час Сурынама + + + + + Час станцыі Сёва + + + + + Час Таіці + + + + + Час Тайбэя + Стандартны час Тайбэя + Летні час Тайбэя + + + + + Час Таджыкістана + + + + + Час Такелау + + + + + Час Тонга + Стандартны час Тонга + Летні час Тонга + + + + + Час Чуўк + + + + + Час Туркменістана + Стандартны час Туркменістана + Летні час Туркменістана + + + + + Час Тувалу + + + + + Уругвайскі час + Уругвайскі стандартны час + Уругвайскі летні час + + + + + Час Узбекістана + Стандартны час Узбекістана + Летні час Узбекістана + + + + + Час Вануату + Стандартны час Вануату + Летні час Вануату + + + + + Венесуэльскі час + + + + + Уладзівастоцкі час + Уладзівастоцкі стандартны час + Уладзівастоцкі летні час + + + + + Валгаградскі час + Валгаградскі стандартны час + Валгаградскі летні час + + + + + Час станцыі Усход + + + + + Час вострава Уэйк + + + + + Час астравоў Уоліс і Футуна + + + + + Якуцкі час + Якуцкі стандартны час + Якуцкі летні час + + + + + Екацярынбургскі час + Екацярынбургскі стандартны час + Екацярынбургскі летні час + + + + + + latn + + latn + + 2 + + , +   + % + + + - + E + × + + + NaN + . + + + + + #,##0.### + + + + + 0 тысяча + 0 тысячы + 0 тысяч + 0 тысячы + 00 тысяча + 00 тысячы + 00 тысяч + 00 тысячы + 000 тысяча + 000 тысячы + 000 тысяч + 000 тысячы + 0 мільён + 0 мільёны + 0 мільёнаў + 0 мільёна + 00 мільён + 00 мільёны + 00 мільёнаў + 00 мільёна + 000 мільён + 000 мільёны + 000 мільёнаў + 000 мільёна + 0 мільярд + 0 мільярды + 0 мільярдаў + 0 мільярда + 00 мільярд + 00 мільярды + 00 мільярдаў + 00 мільярда + 000 мільярд + 000 мільярды + 000 мільярдаў + 000 мільярда + 0 трыльён + 0 трыльёны + 0 трыльёнаў + 0 трыльёна + 00 трыльён + 00 трыльёны + 00 трыльёнаў + 00 трыльёна + 000 трыльён + 000 трыльёны + 000 трыльёнаў + 000 трыльёна + + + + + 0 тыс'.' + 0 тыс'.' + 0 тыс'.' + 0 тыс'.' + 00 тыс'.' + 00 тыс'.' + 00 тыс'.' + 00 тыс'.' + 000 тыс'.' + 000 тыс'.' + 000 тыс'.' + 000 тыс'.' + 0 млн + 0 млн + 0 млн + 0 млн + 00 млн + 00 млн + 00 млн + 00 млн + 000 млн + 000 млн + 000 млн + 000 млн + 0 млрд + 0 млрд + 0 млрд + 0 млрд + 00 млрд + 00 млрд + 00 млрд + 00 млрд + 000 млрд + 000 млрд + 000 млрд + 000 млрд + 0 трлн + 0 трлн + 0 трлн + 0 трлн + 00 трлн + 00 трлн + 00 трлн + 00 трлн + 000 трлн + 000 трлн + 000 трлн + 000 трлн + + + + + + + #E0 + + + + + + + #,##0 % + + + + + + + #,##0.00 ¤ + + + ¤#,##0.00;(¤#,##0.00) + + + + + 0 тыс'.' ¤ + 0 тыс'.' ¤ + 0 тыс'.' ¤ + 0 тыс'.' ¤ + 00 тыс'.' ¤ + 00 тыс'.' ¤ + 00 тыс'.' ¤ + 00 тыс'.' ¤ + 000 тыс'.' ¤ + 000 тыс'.' ¤ + 000 тыс'.' ¤ + 000 тыс'.' ¤ + 0 млн ¤ + 0 млн ¤ + 0 млн ¤ + 0 млн ¤ + 00 млн ¤ + 00 млн ¤ + 00 млн ¤ + 00 млн ¤ + 000 млн ¤ + 000 млн ¤ + 000 млн ¤ + 000 млн ¤ + 0 млрд ¤  + 0 млрд ¤  + 0 млрд ¤  + 0 млрд ¤  + 00 млрд ¤ + 00 млрд ¤ + 00 млрд ¤ + 00 млрд ¤ + 000 млрд ¤ + 000 млрд ¤ + 000 млрд ¤ + 000 млрд ¤ + 0 трлн ¤ + 0 трлн ¤ + 0 трлн ¤ + 0 трлн ¤ + 00 трлн ¤ + 00 трлн ¤ + 00 трлн ¤ + 00 трлн ¤ + 000 трлн ¤ + 000 трлн ¤ + 000 трлн ¤ + 000 трлн ¤ + + + {0} {1} + {0} {1} + {0} {1} + {0} {1} + + + + дырхем ААЭ + дырхем ААЭ + дырхемы ААЭ + дырхемаў ААЭ + дырхема ААЭ + AED + + + афганскі афгані + афганскі афгані + афганскія афгані + афганскіх афгані + афганскага афгані + AFN + + + албанскі лек + албанскі лек + албанскія лекі + албанскіх лекаў + албанскага лека + ALL + + + армянскі драм + армянскі драм + армянскія драмы + армянскіх драмаў + армянскага драма + AMD + + + нідэрландскі антыльскі гульдэн + нідэрландскі антыльскі гульдэн + нідэрландскія антыльскія гульдэны + нідэрландскіх антыльскіх гульдэнаў + нідэрландскага антыльскага гульдэна + ANG + + + ангольская кванза + ангольская кванза + ангольскія кванзы + ангольскіх кванз + ангольскай кванзы + AOA + Kz + + + аргенцінскае песа + аргенцінскае песа + аргенцінскія песа + аргенцінскіх песа + аргенцінскага песа + ARS + $ + + + аўстралійскі долар + аўстралійскі долар + аўстралійскія долары + аўстралійскіх долараў + аўстралійскага долара + A$ + A$ + + + арубанскі фларын + арубанскі фларын + арубанскія фларыны + арубанскіх фларынаў + арубанскага фларына + AWG + + + азербайджанскі манат + азербайджанскі манат + азербайджанскія манаты + азербайджанскіх манатаў + азербайджанскага маната + AZN + + + канверсоўная марка + канверсоўная марка + канверсоўныя маркі + канверсоўных марак + канверсоўнай маркі + BAM + KM + + + барбадоскі долар + барбадоскі долар + барбадоскія долары + барбадоскіх долараў + барбадоскага долара + BBD + Bds$ + + + бангладэшская така + бангладэшская така + бангладэшскія такі + бангладэшскіх так + бангладэшскай такі + BDT + + + + балгарскі леў + балгарскі леў + балгарскія левы + балгарскіх леваў + балгарскага лева + BGN + + + бахрэйнскі дынар + бахрэйнскі дынар + бахрэйнскія дынары + бахрэйнскі дынараў + бахрэйнскага дынара + BHD + + + бурундзійскі франк + бурундзійскі франк + бурундзійскія франкі + бурундзійскіх франкаў + бурундзійскага франка + BIF + + + бермудскі долар + бермудскі долар + бермудскія долары + бермудскіх долараў + бермудскага долара + BMD + BD$ + + + брунейскі долар + брунейскі долар + брунейскія долары + брунейскіх долараў + брунейскага долара + BND + $ + + + балівіяна + балівіяна + балівіяна + балівіяна + балівіяна + BOB + Bs + + + бразільскі рэал + бразільскі рэал + бразільскія рэалы + бразільскіх рэалаў + бразільскага рэала + BRL + R$ + + + багамскі долар + багамскі долар + багамскія долары + багамскіх долараў + багамскага долара + BSD + B$ + + + бутанскі нгултрум + бутанскі нгултрум + бутанскія нгултрумы + бутанскіх нгултрумаў + бутанскага нгултрума + BTN + + + батсванская пула + батсванская пула + батсванскія пулы + батсванскіх пул + батсванскай пулы + BWP + P + + + беларускі рубель + беларускі рубель + беларускія рублі + беларускіх рублёў + беларускага рубля + р. + р. + + + белізскі долар + белізскі долар + белізскія долары + белізскіх долараў + белізскага долара + BZD + BZ$ + + + канадскі долар + канадскі долар + канадскія долары + канадскіх долараў + канадскага долара + CAD + CA$ + + + кангалезскі франк + кангалезскі франк + кангалезскія франкі + кангалезскіх франкаў + кангалезскага франка + CDF + + + швейцарскі франк + швейцарскі франк + швейцарскія франкі + швейцарскіх франкаў + швейцарскага франка + CHF + + + чылійскае песа + чылійскае песа + чылійскія песа + чылійскіх песа + чылійскага песа + CLP + $ + + + кітайскі юань + кітайскі юань + кітайскія юані + кітайскіх юаняў + кітайскага юаня + CN¥ + ¥ + + + калумбійскае песа + калумбійскае песа + калумбійскія песа + калумбійскіх песа + калумбійскага песа + COP + $ + + + коста-рыканскі калон + коста-рыканскі калон + коста-рыканскія калоны + коста-рыканскіх калонаў + коста-рыканскага калона + CRC + + + + кубінскае канверсоўнае песа + кубінскае канверсоўнае песа + кубінскія канверсоўныя песа + кубінскіх канверсоўных песа + кубінскага канверсоўнага песа + CUC + CUC$ + + + кубінскае песа + кубінскае песа + кубінскія песа + кубінскіх песа + кубінскага песа + CUP + $MN + + + эскуда Каба-Вердэ + эскуда Каба-Вердэ + эскуда Каба-Вердэ + эскуда Каба-Вердэ + эскуда Каба-Вердэ + CVE + + + чэшская крона + чэшская крона + чэшскія кроны + чэшскіх крон + чэшскай кроны + CZK + + + + джыбуційскі франк + джыбуційскі франк + джыбуційскія франкі + джыбуційскіх франкаў + джыбуційскага франка + DJF + + + дацкая крона + дацкая крона + дацкія кроны + дацкіх крон + дацкай кроны + DKK + kr + + + дамініканскае песа + дамініканскае песа + дамініканскія песа + дамініканскіх песа + дамініканскага песа + DOP + RD$ + + + алжырскі дынар + алжырскі дынар + алжырскія дынары + алжырскіх дынараў + алжырскага дынара + DZD + + + егіпецкі фунт + егіпецкі фунт + егіпецкія фунты + егіпецкіх фунтаў + егіпецкага фунта + EGP + + + + эрытрэйская накфа + эрытрэйская накфа + эрытрэйскія накфы + эрытрэйскіх накфаў + эрытрэйскай накфы + ERN + + + эфіопскі быр + эфіопскі быр + эфіопскія быры + эфіопскіх быраў + эфіопскага быра + ETB + + + еўра + еўра + еўра + еўра + еўра + + + + + фіджыйскі долар + фіджыйскі долар + фіджыйскія долары + фіджыйскіх долараў + фіджыйскага долара + FJD + FJ$ + + + фунт Фалклендскіх астравоў + фунт Фалклендскіх астравоў + фунты Фалклендскіх астравоў + фунтаў Фалклендскіх астравоў + фунта Фалклендскіх астравоў + FKP + FK£ + + + брытанскі фунт стэрлінгаў + брытанскі фунт стэрлінгаў + брытанскія фунты стэрлінгаў + брытанскіх фунтаў стэрлінгаў + брытанскага фунта стэрлінгаў + £ + £ + + + грузінскі лары + грузінскі лары + грузінскія лары + грузінскіх лары + грузінскага лары + GEL + + + + ганскі седзі + ганскі седзі + ганскія седзі + ганскіх седзі + ганскага седзі + GHS + + + гібралтарскі фунт + гібралтарскі фунт + гібралтарскія фунты + гібралтарскіх фунтаў + гібралтарскага фунта + GIP + £ + + + гамбійскі даласі + гамбійскі даласі + гамбійскія даласі + гамбійскіх даласі + гамбійскага даласі + GMD + + + гвінейскі франк + гвінейскі франк + гвінейскія франкі + гвінейскіх франкаў + гвінейскага франка + GNF + FG + + + гватэмальскі кетсаль + гватэмальскі кетсаль + гватэмальскія кетсалі + гватэмальскіх кетсаляў + гватэмальскага кетсаля + GTQ + Q + + + гаянскі долар + гаянскі долар + гаянскія долары + гаянскіх долараў + гаянскага долара + GYD + G$ + + + ганконгскі долар + ганконгскі долар + ганконгскія долары + ганконгскіх долараў + ганконгскага долара + HK$ + $ + + + гандураская лемпіра + гандураская лемпіра + гандураскія лемпіры + гандураскіх лемпір + гандураскай лемпіры + HNL + L + + + харвацкая куна + харвацкая куна + харвацкія куны + харвацкіх кун + харвацкай куны + HRK + kn + + + гаіцянскі гурд + гаіцянскі гурд + гаіцянскія гурды + гаіцянскіх гурдаў + гаіцянскага гурда + HTG + + + венгерскі форынт + венгерскі форынт + венгерскія форынты + венгерскіх форынтаў + венгерскага форынта + HUF + Ft + + + інданезійская рупія + інданезійская рупія + інданезійскія рупіі + інданезійскіх рупій + інданезійскай рупіі + IDR + Rp + + + новы ізраільскі шэкель + новы ізраільскі шэкель + новыя ізраільскі шэкелі + новых ізраільскіх шэкеляў + новага ізраільскага шэкеля + + + + + індыйская рупія + індыйская рупія + індыйскія рупіі + індыйскіх рупій + індыйскай рупіі + + + + + іракскі дынар + іракскі дынар + іракскія дынары + іракскіх дынараў + іракскага дынара + IQD + + + іранскі рыал + іранскі рыал + іранскія рыалы + іранскіх рыалаў + іранскага рыала + IRR + + + ісландская крона + ісландская крона + ісландскія кроны + ісландскіх крон + ісландскай кроны + ISK + Íkr + + + ямайскі долар + ямайскі долар + ямайскія долары + ямайскіх долараў + ямайскага долара + JMD + J$ + + + іарданскі дынар + іарданскі дынар + іарданскія дынары + іарданскіх дынараў + іарданскага дынара + JOD + + + японская іена + японская іена + японскія іены + японскіх іен + японскай іены + ¥ + ¥ + + + кенійскі шылінг + кенійскі шылінг + кенійскія шылінгі + кенійскіх шылінгаў + кенійскага шылінга + KES + + + кіргізскі сом + кіргізскі сом + кіргізскія сомы + кіргізскіх сомаў + кіргізскага сома + KGS + + + камбаджыйскі рыэль + камбаджыйскі рыэль + камбаджыйскія рыэлі + камбаджыйскіх рыэляў + камбаджыйскага рыэля + KHR + + + + каморскі франк + каморскі франк + каморскія франкі + каморскіх франкаў + каморскага франка + KMF + CF + + + паўночнакарэйская вона + паўночнакарэйская вона + паўночнакарэйскія воны + паўночнакарэйскіх вон + паўночнакарэйскай воны + KPW + + + + паўднёвакарэйская вона + паўднёвакарэйская вона + паўднёвакарэйскія воны + паўднёвакарэйскіх вон + паўднёвакарэйскай воны + + + + + кувейцкі дынар + кувейцкі дынар + кувейцкія дынары + кувейцкіх дынараў + кувейцкага дынара + KWD + + + долар Кайманавых астравоў + долар Кайманавых астравоў + долары Кайманавых астравоў + долараў Кайманавых астравоў + долара Кайманавых астравоў + KYD + CI$ + + + казахстанскі тэнгэ + казахстанскі тэнгэ + казахстанскія тэнгэ + казахстанскіх тэнгэ + казахстанскага тэнгэ + KZT + + + + лаоскі кіп + лаоскі кіп + лаоскія кіпы + лаоскіх кіпаў + лаоскага кіпа + LAK + + + + ліванскі фунт + ліванскі фунт + ліванскія фунты + ліванскіх фунтаў + ліванскага фунта + LBP + + + + шры-ланкійская рупія + шры-ланкійская рупія + шры-ланкійскія рупіі + шры-ланкійскіх рупій + шры-ланкійскай рупіі + LKR + Rs + + + ліберыйскі долар + ліберыйскі долар + ліберыйскія долары + ліберыйскіх долараў + ліберыйскага долара + LRD + L$ + + + лівійскі дынар + лівійскі дынар + лівійскія дынары + лівійскіх дынараў + лівійскага дынара + LYD + + + мараканскі дырхам + мараканскі дырхам + мараканскія дырхамы + мараканскіх дырхамаў + мараканскага дырхама + MAD + + + малдаўскі лей + малдаўскі лей + малдаўскія леі + малдаўскіх леяў + малдаўскага лея + MDL + + + малагасійскі арыяры + малагасійскі арыяры + малагасійскія арыяры + малагасійскіх арыяры + малагасійскага арыяры + MGA + Ar + + + македонскі дэнар + македонскі дэнар + македонскія дэнары + македонскіх дэнараў + македонскага дэнара + MKD + + + м’янманскі к’ят + м’янманскі к’ят + м’янманскія к’яты + м’янманскіх к’ятаў + м’янманскага к’ята + MMK + K + + + мангольскі тугрык + мангольскі тугрык + мангольскія тугрыкі + мангольскіх тугрыкаў + мангольскага тугрыка + MNT + + + + патака Макаа + патака Макаа + патакі Макаа + патак Макаа + патакі Макаа + MOP + + + маўрытанская ўгія + маўрытанская ўгія + маўрытанскія ўгіі + маўрытанскіх угій + маўрытанскай ўгіі + MRO + + + маўрыкійская рупія + маўрыкійская рупія + маўрыкійскія рупіі + маўрыкійскіх рупій + маўрыкійскай рупіі + MUR + Rs + + + мальдыўская руфія + мальдыўская руфія + мальдыўскія руфіі + мальдыўскіх руфій + мальдыўскай руфіі + MVR + + + малавійская квача + малавійская квача + малавійскія квачы + малавійскіх квач + малавійскай квачы + MWK + + + мексіканскае песа + мексіканскае песа + мексіканскія песа + мексіканскіх песа + мексіканскага песа + MX$ + MX$ + + + малайзійскі рынгіт + малайзійскі рынгіт + малайзійскія рынгіты + малайзійскіх рынгітаў + малайзійскага рынгіта + MYR + RM + + + мазамбікскі метыкал + мазамбікскі метыкал + мазамбікскія метыкалы + мазамбікскіх метыкалаў + мазамбікскага метыкала + MZN + + + намібійскі долар + намібійскі долар + намібійскія долары + намібійскіх долараў + намібійскага долара + NAD + N$ + + + нігерыйская найра + нігерыйская найра + нігерыйскія найры + нігерыйскіх найр + нігерыйскай найры + NGN + + + + нікарагуанская кордаба + нікарагуанская кордаба + нікарагуанскія кордабы + нікарагуанскіх кордаб + нікарагуанскай кордабы + NIO + C$ + + + нарвежская крона + нарвежская крона + нарвежскія кроны + нарвежскіх крон + нарвежскай кроны + NOK + kr + + + непальская рупія + непальская рупія + непальскія рупіі + непальскіх рупій + непальскай рупіі + NPR + Rs + + + новазеландскі долар + новазеландскі долар + новазеландскія долары + новазеландскіх долараў + новазеландскага долара + NZD + NZ$ + + + аманскі рыал + аманскі рыал + аманскія рыалы + аманскіх рыалаў + аманска рыала + OMR + + + панамскае бальбоа + панамскае бальбоа + панамскія бальбоа + панамскіх бальбоа + панамскага бальбоа + PAB + + + перуанскі новы соль + перуанскі новы соль + перуанскія новыя солі + перуанскіх новых соляў + перуанскага новага соля + PEN + + + кіна + кіна + кіна + кіна + кіна + PGK + + + філіпінскае песа + філіпінскае песа + філіпінскія песа + філіпінскіх песа + філіпінскага песа + PHP + + + + пакістанская рупія + пакістанская рупія + пакістанскія рупіі + пакістанскіх рупій + пакістанскай рупіі + PKR + Rs + + + польскі злоты + польскі злоты + польскія злотыя + польскіх злотых + польскага злотага + PLN + + + + парагвайскі гуарані + парагвайскі гуарані + парагвайскія гуарані + парагвайскіх гуарані + парагвайскага гуарані + PYG + + + + катарскі рыал + катарскі рыал + катарскія рыалы + катарскіх рыалаў + катарскага рыала + QAR + + + румынскі лей + румынскі лей + румынскія леі + румынскіх леяў + румынскага лея + RON + + + сербскі дынар + сербскі дынар + сербскія дынары + сербскіх дынараў + сербскага дынара + RSD + + + расійскі рубель + расійскі рубель + расійскія рублі + расійскіх рублёў + расійскага рубля + + руб. + + + руандыйскі франк + руандыйскі франк + руандыйскія франкі + руандыйскіх франкаў + руандыйскага франка + RWF + RF + + + саудаўскі рыял + саудаўскі рыял + саудаўскія рыялы + саудаўскіх рыялаў + саудаўскага рыяла + SAR + + + долар Саламонавых Астравоў + долар Саламонавых Астравоў + долары Саламонавых Астравоў + долараў Саламонавых Астравоў + долара Саламонавых Астравоў + SBD + SI$ + + + сейшэльская рупія + сейшэльская рупія + сейшэльскія рупіі + сейшэльскіх рупій + сейшэльскай рупіі + SCR + + + суданскі фунт + суданскі фунт + суданскія фунты + суданскіх фунтаў + суданскага фунта + SDG + + + шведская крона + шведская крона + шведскія кроны + шведскіх крон + шведскай кроны + SEK + kr + + + сінгапурскі долар + сінгапурскі долар + сінгапурскія долары + сінгапурскіх долараў + сінгапурскага долара + SGD + S$ + + + фунт Святой Алены + фунт Святой Алены + фунты Святой Алены + фунтаў Святой Алены + фунта Святой Алены + SHP + £ + + + леонэ + леонэ + леонэ + леонэ + леонэ + SLL + + + самалійскі шылінг + самалійскі шылінг + самалійскія шылінгі + самалійскіх шылінгаў + самалійскага шылінга + SOS + + + сурынамскі долар + сурынамскі долар + сурынамскія долары + сурынамскіх долараў + сурынамскага долара + SRD + $ + + + паўднёвасуданскі фунт + паўднёвасуданскі фунт + паўднёвасуданскія фунты + паўднёвасуданскіх фунтаў + паўднёвасуданскага фунта + SSP + £ + + + добра Сан-Тамэ і Прынсіпі + добра Сан-Тамэ і Прынсіпі + добры Сан-Тамэ і Прынсіпі + добр Сан-Тамэ і Прынсіпі + добры Сан-Тамэ і Прынсіпі + STD + Db + + + сірыйскі фунт + сірыйскі фунт + сірыйскія фунты + сірыйскіх фунтаў + сірыйскага фунта + SYP + £ + + + свазілендскі лілангені + свазілендскі лілангені + свазілендскія лілангені + свазілендскіх лілангені + свазілендскага лілангені + SZL + + + тайскі бат + тайскі бат + тайскія баты + тайскіх батаў + тайскага бата + THB + ฿ + + + таджыкскі самані + таджыкскі самані + таджыкскія самані + таджыкскіх самані + таджыкскага самані + TJS + + + туркменскі манат + туркменскі манат + туркменскія манаты + туркменскіх манатаў + туркменскага маната + TMT + + + туніскі дынар + туніскі дынар + туніскія дынары + туніскіх дынараў + туніскага дынара + TND + + + танганская паанга + танганская паанга + танганскія паангі + танганскіх паанг + танганскай паангі + TOP + T$ + + + турэцкая ліра + турэцкая ліра + турэцкія ліры + турэцкіх лір + турэцкай ліры + TRY + + TL + + + долар Трынідада і Табага + долар Трынідада і Табага + долары Трынідада і Табага + долараў Трынідада і Табага + долара Трынідада і Табага + TTD + TT$ + + + новы тайваньскі долар + новы тайваньскі долар + новыя тайваньскія долары + новых тайваньскіх долараў + новага тайваньскага долара + NT$ + $ + + + танзанійскі шылінг + танзанійскі шылінг + танзанійскія шылінгі + танзанійскіх шылінгаў + танзанійскага шылінга + TZS + + + украінская грыўна + украінская грыўна + украінскія грыўні + украінскіх грыўнаў + украінскай грыўны + UAH + + + + угандыйскі шылінг + угандыйскі шылінг + угандыйскія шылінгі + угандыйскіх шылінгаў + угандыйскага шылінга + UGX + + + долар ЗША + долар ЗША + долары ЗША + долараў ЗША + долара ЗША + $ + $ + + + уругвайскае песа + уругвайскае песа + уругвайскія песа + уругвайскіх песа + уругвайскага песа + UYU + $U + + + узбекскі сум + узбекскі сум + узбекскія сумы + узбекскіх сумаў + узбекскага сума + UZS + + + венесуальскі балівар + венесуальскі балівар + венесуальскія балівары + венесуальскіх балівараў + венесуальскага балівара + VEF + Bs + + + в’етнамскі донг + в’етнамскі донг + в’етнамскія донгі + в’етнамскіх донгаў + в’етнамскага донга + + + + + вату + вату + вату + вату + вату + VUV + + + самаанская тала + самаанская тала + самаанскія талы + самаанскіх тал + самаанскай талы + WST + + + цэнтральнаафрыканскі франк КФА + цэнтральнаафрыканскі франк КФА + цэнтральнаафрыканскія франкі КФА + цэнтральнаафрыканскіх франкаў КФА + цэнтральнаафрыканскага франка КФА + FCFA + + + усходнекарыбскі долар + усходнекарыбскі долар + усходнекарыбскія долары + усходнекарыбскіх долараў + усходнекарыбскага долара + EC$ + EC$ + + + заходнеафрыканскі франк КФА + заходнеафрыканскі франк КФА + заходнеафрыканскія франкі КФА + заходнеафрыканскіх франкаў КФА + заходнеафрыканскага франка КФА + CFA + + + французскі ціхаакіянскі франк + французскі ціхаакіянскі франк + французскія ціхаакіянскія франкі + французскіх ціхаакіянскіх франкаў + французскага ціхаакіянскага франка + CFPF + + + невядомая валюта + невядомая валюта + невядомая валюта + невядомая валюта + невядомая валюта + + + еменскі рыал + еменскі рыал + еменскія рыалы + еменскіх рыалаў + еменскага рыала + YER + + + паўднёваафрыканскі ранд + паўднёваафрыканскі ранд + паўднёваафрыканскія ранды + паўднёваафрыканскіх рандаў + паўднёваафрыканскага ранда + ZAR + R + + + замбійская квача + замбійская квача + замбійскія квачы + замбійскіх квач + замбійскай квачы + ZMW + ZK + + + + {0}+ + {0}–{1} + + + + + + {0} у {1} + + + перагрузка + {0} g + {0} g + {0} g + {0} g + + + метры ў секунду ў квадраце + {0} метр у секунду ў квадраце + {0} метры ў секунду ў квадраце + {0} метраў у секунду ў квадраце + {0} метра ў секунду ў квадраце + + + абарот + {0} абарот + {0} абароты + {0} абаротаў + {0} абарота + + + радыяны + {0} радыян + {0} радыяны + {0} радыян + {0} радыяна + + + градусы + {0} градус + {0} градусы + {0} градусаў + {0} градуса + + + вуглавыя хвіліны + {0} вуглавая хвіліна + {0} вуглавыя хвіліны + {0} вуглавых хвілін + {0} вуглавой хвіліны + + + вуглавыя секунды + {0} вуглавая секунда + {0} вуглавыя секунды + {0} вуглавых секунд + {0} вуглавой секунды + + + квадратныя кіламетры + {0} квадратны кіламетр + {0} квадратныя кіламетры + {0} квадратных кіламетраў + {0} квадратнага кіламетра + + + гектары + {0} гектар + {0} гектары + {0} гектараў + {0} гектара + + + квадратныя метры + {0} квадратны метр + {0} квадратныя метры + {0} квадратных метраў + {0} квадратнага метра + {0} на квадратны метр + + + квадратныя сантыметры + {0} квадратны сантыметр + {0} квадратныя сантыметры + {0} квадратных сантыметраў + {0} квадратнага сантыметра + {0} на квадратны сантыметр + + + квадратныя мілі + {0} квадратная міля + {0} квадратныя мілі + {0} квадратных міль + {0} квадратнай мілі + + + акры + {0} акр + {0} акры + {0} акраў + {0} акра + + + квадратны ярд + {0} квадратны ярд + {0} квадратныя ярды + {0} квадратных ярдаў + {0} квадратнага ярда + + + квадратны фут + {0} квадратны фут + {0} квадратныя футы + {0} квадратных футаў + {0} квадратнага фута + + + квадратныя цалі + {0} квадратная цаля + {0} квадратныя цалі + {0} квадратных цаляў + {0} квадратнай цалі + {0} на квадратную цалю + + + караты золата + {0} карат золата + {0} караты золата + {0} карат золата + {0} карата золата + + + літры на кіламетр + {0} літр на кіламетр + {0} літры на кіламетр + {0} літраў на кіламетр + {0} літра на кіламетр + + + літры на 100 кіламетраў + {0} літр на 100 кіламетраў + {0} літры на 100 кіламетраў + {0} літраў на 100 кіламетраў + {0} літра на 100 кіламетраў + + + мілі на галон + {0} міля на галон + {0} мілі на галон + {0} міль на галон + {0} мілі на галон + + + тэрабайты + {0} тэрабайт + {0} тэрабайты + {0} тэрабайт + {0} тэрабайта + + + тэрабіты + {0} тэрабіт + {0} тэрабіты + {0} тэрабіт + {0} тэрабіт + + + гігабайты + {0} гігабайт + {0} гігабайты + {0} гігабайт + {0} гігабайта + + + гігабіты + {0} гігабіт + {0} гігабіты + {0} гігабіт + {0} гігабіта + + + мегабайты + {0} мегабайт + {0} мегабайты + {0} мегабайт + {0} мегабайта + + + мегабіты + {0} мегабіт + {0} мегабіты + {0} мегабіт + {0} мегабіта + + + кілабайты + {0} кілабайт + {0} кілабайты + {0} кілабайт + {0} кілабайта + + + кілабіты + {0} кілабіт + {0} кілабіты + {0} кілабіт + {0} кілабіта + + + байты + {0} байт + {0} байты + {0} байт + {0} байта + + + біты + {0} біт + {0} біты + {0} біт + {0} біта + + + стагоддзі + {0} стагоддзе + {0} стагоддзі + {0} стагоддзяў + {0} стагоддзя + + + гады + {0} год + {0} гады + {0} гадоў + {0} года + {0} у год + + + месяцы + {0} месяц + {0} месяца + {0} месяцаў + {0} месяца + {0} у месяц + + + тыдні + {0} тыдзень + {0} тыдні + {0} тыдняў + {0} тыдня + {0} у тыдзень + + + суткі + {0} суткі + {0} сутак + {0} сутак + {0} сутак + {0} у суткі + + + гадзіны + {0} гадзіна + {0} гадзіны + {0} гадзін + {0} гадзіны + {0} у гадзіну + + + хвіліны + {0} хвіліна + {0} хвіліны + {0} хвілін + {0} хвіліны + {0} у хвіліну + + + секунды + {0} секунда + {0} секунды + {0} секунд + {0} секунды + {0} у секунду + + + мілісекунды + {0} мілісекунда + {0} мілісекунды + {0} мілісекунд + {0} мілісекунды + + + мікрасекунды + {0} мікрасекунда + {0} мікрасекунды + {0} мікрасекунд + {0} мікрасекунды + + + нанасекунды + {0} нанасекунда + {0} нанасекунды + {0} нанасекунд + {0} нанасекунды + + + амперы + {0} ампер + {0} амперы + {0} ампер + {0} ампера + + + міліамперы + {0} міліампер + {0} міліамперы + {0} міліампер + {0} міліампера + + + омы + {0} Ом + {0} Ом + {0} Ом + {0} Ом + + + вольты + {0} вольт + {0} вольты + {0} вольт + {0} вольта + + + кілакалорыі + {0} кілакалорыя + {0} кілакалорыі + {0} кілакалорый + {0} кілакалорыі + + + калорыі + {0} калорыя + {0} калорыі + {0} калорый + {0} калорыі + + + калорыі + {0} калорыя + {0} калорыі + {0} калорый + {0} калорыі + + + кіладжоўлі + {0} кіладжоўль + {0} кіладжоўлі + {0} кіладжоўляў + {0} кіладжоўля + + + джоўлі + {0} джоўль + {0} джоўлі + {0} джоўляў + {0} джоўля + + + кілават-гадзіны + {0} кілават-гадзіна + {0} кілават-гадзіны + {0} кілават-гадзін + {0} кілават-гадзіны + + + гігагерцы + {0} гігагерц + {0} гігагерцы + {0} гігагерц + {0} гігагерца + + + мегагерцы + {0} мегагерц + {0} мегагерцы + {0} мегагерц + {0} мегагерца + + + кілагерцы + {0} кілагерц + {0} кілагерцы + {0} кілагерц + {0} кілагерца + + + герцы + {0} герц + {0} герцы + {0} герц + {0} герца + + + кіламетры + {0} кіламетр + {0} кіламетры + {0} кіламетраў + {0} кіламетра + {0} на кіламетр + + + метры + {0} метр + {0} метры + {0} метраў + {0} метра + {0} на метр + + + дэцыметры + {0} дэцыметр + {0} дэцыметры + {0} дэцыметраў + {0} дэцыметра + + + сантыметры + {0} сантыметр + {0} сантыметры + {0} сантыметраў + {0} сантыметра + {0} на сантыметр + + + міліметры + {0} міліметр + {0} міліметры + {0} міліметраў + {0} міліметра + + + мікраметры + {0} мікраметр + {0} мікраметры + {0} мікраметраў + {0} мікраметра + + + нанаметры + {0} нанаметр + {0} нанаметры + {0} нанаметраў + {0} нанаметра + + + пікаметры + {0} пікаметр + {0} пікаметры + {0} пікаметраў + {0} пікаметра + + + мілі + {0} міля + {0} мілі + {0} міль + {0} мілі + + + ярды + {0} ярд + {0} ярды + {0} ярдаў + {0} ярда + + + футы + {0} фут + {0} футы + {0} футаў + {0} фута + {0} на фут + + + цалі + {0} цаля + {0} цалі + {0} цаляў + {0} цалі + {0} на цалю + + + парсекі + {0} парсек + {0} парсекі + {0} парсекаў + {0} парсека + + + светлавыя гады + {0} светлавы год + {0} светлавыя гады + {0} светлавых гадоў + {0} светлавога года + + + астранамічныя адзінкі + {0} астранамічная адзінка + {0} астранамічныя адзінкі + {0} астранамічных адзінак + {0} астранамічнай адзінкі + + + марскія мілі + {0} марская міля + {0} марскія мілі + {0} марскіх міль + {0} марской мілі + + + скандынаўскія мілі + {0} скандынаўская міля + {0} скандынаўскія мілі + {0} скандынаўскіх міль + {0} скандынаўскай мілі + + + люкс + {0} люкс + {0} люксы + {0} люксаў + {0} люкса + + + метрычныя тоны + {0} метрычная тона + {0} метрычныя тоны + {0} метрычных тон + {0} метрычнай тоны + + + кілаграмы + {0} кілаграмаў + {0} кілаграмы + {0} кілаграм + {0} кілаграма + {0} на кілаграм + + + грамы + {0} грам + {0} грамы + {0} грамаў + {0} грама + {0} на грам + + + міліграмы + {0} міліграм + {0} міліграмы + {0} міліграмаў + {0} міліграма + + + мікраграмы + {0} мікраграм + {0} мікраграмы + {0} мікраграмаў + {0} мікраграма + + + тоны + {0} тона + {0} тоны + {0} тон + {0} тоны + + + фунты + {0} фунт + {0} фунты + {0} фунтаў + {0} фунта + {0} на фунт + + + унцыі + {0} унцыя + {0} унцыі + {0} унцый + {0} унцыі + {0} на ўнцыю + + + тройскія ўнцыі + {0} тройская ўнцыя + {0} тройскія ўнцыі + {0} тройскіх унцый + {0} тройскай унцыі + + + караты + {0} карат + {0} караты + {0} каратаў + {0} карата + + + гігаваты + {0} гігават + {0} гігаваты + {0} гігават + {0} гігавата + + + мегаваты + {0} мегават + {0} мегаваты + {0} мегават + {0} мегавата + + + кілаваты + {0} кілават + {0} кілаваты + {0} кілават + {0} кілавата + + + ваты + {0} ват + {0} ваты + {0} ват + {0} вата + + + міліваты + {0} міліват + {0} міліваты + {0} міліват + {0} мілівата + + + конская сіла + {0} конская сіла + {0} конскія сілы + {0} конскіх сіл + {0} конскай сілы + + + гектапаскалі + {0} гектапаскаль + {0} гектапаскалі + {0} гектапаскаль + {0} гектапаскаля + + + міліметры ртутнага слупа + {0} міліметр ртутнага слупа + {0} міліметры ртутнага слупа + {0} міліметраў ртутнага слупа + {0} міліметра ртутнага слупа + + + фунты на квадратную цалю + {0} фунт на квадратную цалю + {0} фунты на квадратную цалю + {0} фунтаў на квадратную цалю + {0} фунта на квадратную цалю + + + цалі ртутнага слупа + {0} цаля ртутнага слупа + {0} цалі ртутнага слупа + {0} цаляў ртутнага слупа + {0} цалі ртутнага слупа + + + мілібары + {0} мілібар + {0} мілібары + {0} мілібар + {0} мілібара + + + кіламетраў у гадзіну + {0} кіламетр у гадзіну + {0} кіламетры ў гадзіну + {0} кіламетраў у гадзіну + {0} кіламетра ў гадзіну + + + метраў у секунду + {0} метр у секунду + {0} метры ў секунду + {0} метраў у секунду + {0} метра ў секунду + + + міль у гадзіну + {0} міля ў гадзіну + {0} мілі ў гадзіну + {0} міль у гадзіну + {0} мілі ў гадзіну + + + вузел + {0} вузел + {0} вузлы + {0} вузлоў + {0} вузла + + + ° + {0}° + {0}° + {0}° + {0}° + + + градусы Цэльсія + {0} градус Цэльсія + {0} градусы Цэльсія + {0} градусаў Цэльсія + {0} градуса Цэльсія + + + градусы Фарэнгейта + {0} градус Фарэнгейта + {0} градусы Фарэнгейта + {0} градусаў Фарэнгейта + {0} градуса Фарэнгейта + + + кельвіны + {0} кельвін + {0} кельвіны + {0} кельвінаў + {0} кельвіна + + + кубічныя кіламетры + {0} кубічны кіламетр + {0} кубічныя кіламетры + {0} кубічных кіламетраў + {0} кубічнага кіламетра + + + кубічныя метры + {0} кубічны метр + {0} кубічныя метры + {0} кубічных метраў + {0} кубічнага метра + {0} на кубічны метр + + + кубічныя сантыметры + {0} кубічны сантыметр + {0} кубічныя сантыметры + {0} кубічных сантыметраў + {0} кубічнага сантыметра + {0} на кубічны сантыметр + + + кубічныя мілі + {0} кубічная міля + {0} кубічныя мілі + {0} кубічных міль + {0} кубічнай мілі + + + кубічныя ярды + {0} кубічны ярд + {0} кубічныя ярды + {0} кубічных ярдаў + {0} кубічнага ярда + + + кубічныя футы + {0} кубічны фут + {0} кубічныя футы + {0} кубічных футаў + {0} кубічнага фута + + + кубічныя цалі + {0} кубічная цаля + {0} кубічныя цалі + {0} кубічных цаляў + {0} кубічнай цалі + + + мегалітры + {0} мегалітр + {0} мегалітры + {0} мегалітраў + {0} мегалітра + + + гекталітры + {0} гекталітр + {0} гекталітры + {0} гекталітраў + {0} гекталітра + + + літры + {0} літр + {0} літры + {0} літраў + {0} літра + {0} на літр + + + дэцылітры + {0} дэцылітр + {0} дэцылітры + {0} дэцылітраў + {0} дэцылітра + + + сантылітр + {0} сантылітр + {0} сантылітры + {0} сантылітраў + {0} сантылітра + + + мілілітры + {0} мілілітр + {0} мілілітры + {0} мілілітраў + {0} мілілітра + + + метрычныя пінты + {0} метрычная пінта + {0} метрычныя пінты + {0} метрычных пінтаў + {0} метрычнай пінты + + + метрычныя кубкі + {0} метрычны кубак + {0} метрычныя кубкі + {0} метрычных кубкаў + {0} метрычнага кубка + + + акр-футы + {0} акр-фут + {0} акр-футы + {0} акр-футаў + {0} акр-фута + + + галоны + {0} галон + {0} галоны + {0} галонаў + {0} галона + {0} на галон + + + кварты + {0} кварта + {0} кварты + {0} кварт + {0} кварты + + + пінты + {0} пінта + {0} пінты + {0} пінтаў + {0} пінты + + + кубкі + {0} кубак + {0} кубкі + {0} кубкаў + {0} кубка + + + вадкія ўнцыі + {0} вадкая ўнцыя + {0} вадкія ўнцыі + {0} вадкіх унцый + {0} вадкай унцыі + + + сталовыя лыжкі + {0} сталовая лыжка + {0} сталовыя лыжкі + {0} сталовых лыжак + {0} сталовай лыжкі + + + чайныя лыжкі + {0} чайная лыжка + {0} чайныя лыжкі + {0} чайных лыжак + {0} чайнай лыжкі + + + {0} У + {0} Пн + {0} Пд + {0} З + + + + + {0}/{1} + + + перагрузка + {0} g + {0} g + {0} g + {0} g + + + м/с² + {0} м/с² + {0} м/с² + {0} м/с² + {0} м/с² + + + аб + {0} аб + {0} аб + {0} аб + {0} аб + + + рад + {0} рад + {0} рад + {0} рад + {0} рад + + + ° + {0}° + {0}° + {0}° + {0}° + + + + {0}′ + {0}′ + {0}′ + {0}′ + + + ′′ + {0}″ + {0}″ + {0}″ + {0}″ + + + км² + {0} км² + {0} км² + {0} км² + {0} км² + + + га + {0} га + {0} га + {0} га + {0} га + + + м² + {0} м² + {0} м² + {0} м² + {0} м² + {0}/м² + + + см² + {0} см² + {0} см² + {0} см² + {0} см² + {0}/см² + + + кв. мілі + {0} кв. міля + {0} кв. мілі + {0} кв. міль + {0} кв. мілі + + + акры + {0} акр + {0} акры + {0} акраў + {0} акра + + + кв. ярды + {0} кв. ярд + {0} кв. ярды + {0} кв. ярдаў + {0} кв. ярда + + + кв. футы + {0} кв. фут + {0} кв. футы + {0} кв. футаў + {0} кв. фута + + + кв. цалі + {0} кв. цаля + {0} кв. цалі + {0} кв. цаляў + {0} кв. цалі + {0}/кв. цалю + + + кар золата + {0} кар зол + {0} кар зол + {0} кар зол + {0} кар зол + + + л/км + {0} л/км + {0} л/км + {0} л/км + {0} л/км + + + л/100 км + {0} л/100 км + {0} л/100 км + {0} л/100 км + {0} л/100 км + + + мілі/гал + {0} міля/гал + {0} міля/гал + {0} міль/гал + {0} мілі/гал + + + Тб + {0} Тб + {0} Тб + {0} Тб + {0} Тб + + + Тбіт + {0} Тбіт + {0} Тбіт + {0} Тбіт + {0} Тбіт + + + Гб + {0} Гб + {0} Гб + {0} Гб + {0} Гб + + + Гбіт + {0} Гбіт + {0} Гбіт + {0} Гбіт + {0} Гбіт + + + Мб + {0} Мб + {0} Мб + {0} Мб + {0} Мб + + + Мбіт + {0} Мбіт + {0} Мбіт + {0} Мбіт + {0} Мбіт + + + Кб + {0} Кб + {0} Кб + {0} Кб + {0} Кб + + + кбіт + {0} кбіт + {0} кбіт + {0} кбіт + {0} кбіт + + + байты + {0} байт + {0} байты + {0} байт + {0} байта + + + біты + {0} біт + {0} біты + {0} біт + {0} біта + + + ст. + {0} ст. + {0} ст. + {0} ст. + {0} ст. + + + г. + {0} г. + {0} г. + {0} г. + {0} г. + {0} у г. + + + мес. + {0} мес. + {0} мес. + {0} мес. + {0} мес. + {0} у мес. + + + тыдз. + {0} тыдз. + {0} тыдз. + {0} тыдз. + {0} тыдз. + {0} у тыдз. + + + сут. + {0} сут. + {0} сут. + {0} сут. + {0} сут. + {0} у сут. + + + гадз. + {0} гадз. + {0} гадз. + {0} гадз. + {0} гадз. + {0} у гадз. + + + хв. + {0} хв. + {0} хв. + {0} хв. + {0} хв. + {0} у хв. + + + с + {0} с + {0} с + {0} с + {0} с + {0}/с + + + мс + {0} мс + {0} мс + {0} мс + {0} мс + + + мкс + {0} мкс + {0} мкс + {0} мкс + {0} мкс + + + нс + {0} нс + {0} нс + {0} нс + {0} нс + + + А + {0} A + {0} A + {0} A + {0} A + + + мА + {0} мА + {0} мА + {0} мА + {0} мА + + + Ом + {0} Ом + {0} Ом + {0} Ом + {0} Ом + + + В + {0} В + {0} В + {0} В + {0} В + + + ккал + {0} ккал + {0} ккал + {0} ккал + {0} ккал + + + кал + {0} кал + {0} кал + {0} кал + {0} кал + + + кал + {0} кал + {0} кал + {0} кал + {0} кал + + + кДж + {0} кДж + {0} кДж + {0} кДж + {0} кДж + + + Дж + {0} Дж + {0} Дж + {0} Дж + {0} Дж + + + кВт·г + {0} кВт·г + {0} кВт·г + {0} кВт·г + {0} кВт·г + + + ГГц + {0} ГГц + {0} ГГц + {0} ГГц + {0} ГГц + + + МГц + {0} МГц + {0} МГц + {0} МГц + {0} МГц + + + кГц + {0} кГц + {0} кГц + {0} кГц + {0} кГц + + + Гц + {0} Гц + {0} Гц + {0} Гц + {0} Гц + + + км + {0} км + {0} км + {0} км + {0} км + {0}/км + + + м + {0} м + {0} м + {0} м + {0} м + {0}/м + + + дм + {0} дм + {0} дм + {0} дм + {0} дм + + + см + {0} см + {0} см + {0} см + {0} см + {0}/см + + + мм + {0} мм + {0} мм + {0} мм + {0} мм + + + мкм + {0} мкм + {0} мкм + {0} мкм + {0} мкм + + + нм + {0} нм + {0} нм + {0} нм + {0} нм + + + пм + {0} пм + {0} пм + {0} пм + {0} пм + + + мілі + {0} міля + {0} мілі + {0} міль + {0} мілі + + + ярды + {0} ярд + {0} ярды + {0} ярдаў + {0} ярда + + + футы + {0} фут + {0} футы + {0} футаў + {0} фута + {0}/фут + + + цалі + {0} цаля + {0} цалі + {0} цаляў + {0} цалі + {0}/цалю + + + пс + {0} пс + {0} пс + {0} пс + {0} пс + + + св. г. + {0} св. г. + {0} св. г. + {0} св. г. + {0} св. г. + + + а. а. + {0} а. а. + {0} а. а. + {0} а. а. + {0} а. а. + + + мар. мілі + {0} мар. міля + {0} мар. мілі + {0} мар. міль + {0} мар. міль + + + сканд. мілі + {0} скан. мілі + {0} скан. мілі + {0} скан. міль + {0} скан. мілі + + + лк + {0} лк + {0} лк + {0} лк + {0} лк + + + мет. тоны + {0} мет. тона + {0} мет. тоны + {0} мет. тон + {0} мет. тоны + + + кг + {0} кг + {0} кг + {0} кг + {0} кг + {0}/кг + + + г + {0} г + {0} г + {0} г + {0} г + {0}/г + + + мг + {0} мг + {0} мг + {0} мг + {0} мг + + + мкг + {0} мкг + {0} мкг + {0} мкг + {0} мкг + + + т + {0} т + {0} т + {0} т + {0} т + + + фунты + {0} фунт + {0} фунты + {0} фунтаў + {0} фунта + {0}/фунт + + + унц. + {0} унц. + {0} унц. + {0} унц. + {0} унц. + {0}/унц. + + + тр. унц. + {0} тр. унц. + {0} тр. унц. + {0} тр. унц. + {0} тр. унц. + + + кар + {0} кар + {0} кар + {0} кар + {0} кар + + + ГВт + {0} ГВт + {0} ГВт + {0} ГВт + {0} ГВт + + + МВт + {0} МВт + {0} МВт + {0} МВт + {0} МВт + + + кВт + {0} кВт + {0} кВт + {0} кВт + {0} кВт + + + Вт + {0} Вт + {0} Вт + {0} Вт + {0} Вт + + + мВт + {0} мВт + {0} мВт + {0} мВт + {0} мВт + + + к. с. + {0} к. с. + {0} к. с. + {0} к. с. + {0} к. с. + + + гПа + {0} гПа + {0} гПа + {0} гПа + {0} гПа + + + мм рт. сл. + {0} мм рт. сл. + {0} мм рт. сл. + {0} мм рт. сл. + {0} мм рт. сл. + + + фунты на кв. цалю + {0} фунт на кв. цалю + {0} фунты на кв. цалю + {0} фунтаў на кв. цалю + {0} фунта на кв. цалю + + + цалі рт. сл. + {0} цаля рт. сл. + {0} цалі рт. сл. + {0} цаляў рт. сл. + {0} цалі рт. сл. + + + мбар + {0} мбар + {0} мбар + {0} мбар + {0} мбар + + + км/г + {0} км/г + {0} км/г + {0} км/г + {0} км/г + + + м/с + {0} м/с + {0} м/с + {0} м/с + {0} м/с + + + мілі/г + {0} міля/г + {0} мілі/г + {0} міль/г + {0} мілі/г + + + вуз + {0} вуз + {0} вуз + {0} вуз + {0} вуз + + + ° + {0}° + {0}° + {0}° + {0}° + + + °C + {0} °C + {0} °C + {0} °C + {0} °C + + + °F + {0} °F + {0} °F + {0} °F + {0} °F + + + К + {0} К + {0} К + {0} К + {0} К + + + км³ + {0} км³ + {0} км³ + {0} км³ + {0} км³ + + + м³ + {0} м³ + {0} м³ + {0} м³ + {0} м³ + {0}/м³ + + + см³ + {0} см³ + {0} см³ + {0} см³ + {0} см³ + {0}/см³ + + + куб. мілі + {0} куб. міля + {0} куб. мілі + {0} куб. міль + {0} куб. мілі + + + куб. ярды + {0} куб. ярд + {0} куб. ярды + {0} куб. ярдаў + {0} куб. ярда + + + куб. футы + {0} куб. фут + {0} куб. футы + {0} куб. футаў + {0} куб. фута + + + куб. цалі + {0} куб. цаля + {0} куб. цалі + {0} куб. цаляў + {0} куб. цалі + + + Мл + {0} Мл + {0} Мл + {0} Мл + {0} Мл + + + гл + {0} гл + {0} гл + {0} гл + {0} гл + + + л + {0} л + {0} л + {0} л + {0} л + {0}/л + + + дл + {0} дл + {0} дл + {0} дл + {0} дл + + + сл + {0} сл + {0} сл + {0} сл + {0} сл + + + мл + {0} мл + {0} мл + {0} мл + {0} мл + + + мет. пінты + {0} мет. пінта + {0} мет. пінты + {0} мет. пінтаў + {0} мет. пінты + + + мет. кубак + {0} мет. кубак + {0} мет. кубкі + {0} мет. кубкаў + {0} мет. кубка + + + акр-футы + {0} акр-фут + {0} акр-футы + {0} акр-футаў + {0} акр-фута + + + гал + {0} гал + {0} гал + {0} гал + {0} гал + {0}/гал + + + кварты + {0} кварта + {0} кварты + {0} кварт + {0} кварты + + + пінты + {0} пінта + {0} пінты + {0} пінтаў + {0} пінты + + + кубкі + {0} кубак + {0} кубкі + {0} кубкаў + {0} кубка + + + вадк. унц. + {0} вадк. унц. + {0} вадк. унц. + {0} вадк. унц. + {0} вадк. унц. + + + ст. лыжкі + {0} ст. лыжка + {0} ст. лыжкі + {0} ст. лыжак + {0} ст. лыжкі + + + ч. лыжкі + {0} ч. лыжка + {0} ч. лыжкі + {0} ч. лыжак + {0} ч. лыжкі + + + {0} У + {0} Пн + {0} Пд + {0} З + + + + + {0}/{1} + + + л/100км + {0}л/100км + {0}л/100км + {0}л/100км + {0}л/100км + + + г. + {0}г. + {0}г. + {0}г. + {0}г. + + + мес. + {0}мес. + {0}мес. + {0}мес. + {0}мес. + + + тыдз. + {0}тыдз. + {0}тыдз. + {0}тыдз. + {0}тыдз. + + + сут. + {0}сут. + {0}сут. + {0}сут. + {0}сут. + + + гадз. + {0}гадз. + {0}гадз. + {0}гадз. + {0}гадз. + + + хв. + {0}хв. + {0}хв. + {0}хв. + {0}хв. + + + с + {0}с + {0}с + {0}с + {0}с + + + мс + {0}мс + {0}мс + {0}мс + {0}мс + + + км + {0}км + {0}км + {0}км + {0}км + + + м + {0}м + {0}м + {0}м + {0}м + + + см + {0}см + {0}см + {0}см + {0}см + + + мм + {0}мм + {0}мм + {0}мм + {0}мм + + + кг + {0}кг + {0}кг + {0}кг + {0}кг + + + г + {0}г + {0}г + {0}г + {0}г + + + км/г + {0}км/г + {0}км/г + {0}км/г + {0}км/г + + + °C + {0}°C + {0}°C + {0}°C + {0}°C + + + л + {0}л + {0}л + {0}л + {0}л + + + {0} У + {0} Пн + {0} Пд + {0} З + + + + hh.mm + + + hh.mm.ss + + + mm.ss + + + + + {0}, {1} + {0}, {1} + {0} і {1} + {0} і {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + {0} {1} + {0} {1} + {0} {1} + {0} {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + + + так:т + не:н + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/be_BY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/be_BY.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/be_BY.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/be_BY.xml index c4f11b76f30..7cb14021365 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/be_BY.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/be_BY.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bem.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bem.xml similarity index 82% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bem.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bem.xml index e6cbe2bbc7b..771808dd70a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bem.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bem.xml @@ -1,13 +1,12 @@ - - - + @@ -190,6 +189,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + uluchelo + akasuba + uluchelo akasuba @@ -294,7 +297,9 @@ For terms of use, see http://www.unicode.org/copyright.html Ubushiku + yesterday Lelo + tomorrow Akasuba @@ -320,6 +325,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + @@ -334,3 +367,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bem_ZM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bem_ZM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bem_ZM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bem_ZM.xml index 8af8a182500..d4f1c52e776 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bem_ZM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bem_ZM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bez.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bez.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bez.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bez.xml index 5a51328dec6..6397a8d23d6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bez.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bez.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Huanguila Hualbania Huamenia - Huantili dza Huuholanzi Huangola Huajendina Husamoa ya Humalekani @@ -450,6 +448,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + pamilau + pamunyi + pamilau pamunyi @@ -491,22 +493,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -585,6 +587,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤ + + + 0K¤ + 0K¤ + 00K¤ + 00K¤ + 000K¤ + 000K¤ + 0M¤ + 0M¤ + 00M¤ + 00M¤ + 000M¤ + 000M¤ + 0G¤ + 0G¤ + 00G¤ + 00G¤ + 000G¤ + 000G¤ + 0T¤ + 0T¤ + 00T¤ + 00T¤ + 000T¤ + 000T¤ + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bez_TZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bez_TZ.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bez_TZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bez_TZ.xml index 328bc61ef72..46a18970e8e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bez_TZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bez_TZ.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bg.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bg.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bg.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bg.xml index 3223feebf88..b75128eeb31 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bg.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bg.xml @@ -1,13 +1,12 @@ - - - + @@ -24,7 +23,7 @@ For terms of use, see http://www.unicode.org/copyright.html адангме адиге авестски - африканс + африкаанс африхили агем айну @@ -59,6 +58,7 @@ For terms of use, see http://www.unicode.org/copyright.html бемба бена български + западен балочи божпури бислама биколски @@ -91,7 +91,7 @@ For terms of use, see http://www.unicode.org/copyright.html чиипувски чероки чейенски - кюрдски (сорани) + кюрдски (централен) корсикански коптски крии @@ -106,8 +106,6 @@ For terms of use, see http://www.unicode.org/copyright.html даргва таита немски - австрийски немски - швейцарски горногермански делауер слейви догриб @@ -129,16 +127,12 @@ For terms of use, see http://www.unicode.org/copyright.html гръцки еламитски английски - австралийски английски - канадски английски - британски английски - английски (GB) - американски английски + английски (UK) + английски (САЩ) английски (US) средновековен английски есперанто испански - мексикански испански естонски баски евондо @@ -152,8 +146,6 @@ For terms of use, see http://www.unicode.org/copyright.html фарьорски фон френски - канадски френски - швейцарски френски средновековен френски старофренски северен фризски @@ -274,6 +266,7 @@ For terms of use, see http://www.unicode.org/copyright.html лаоски монго лози + северен лури литовски луба катанга луба-лулуа @@ -319,12 +312,14 @@ For terms of use, see http://www.unicode.org/copyright.html марвари бирмански ерзиа + мазандаран науру неаполитански нама - норвежки букмол + норвежки (букмол) северен ндебеле - долносаксонски + долнонемски + долносаксонски непалски неварски ндонга @@ -333,7 +328,7 @@ For terms of use, see http://www.unicode.org/copyright.html нидерландски фламандски квасио - норвежки нюношк + норвежки (нюношк) норвежки ногаи старонорвежски @@ -398,6 +393,7 @@ For terms of use, see http://www.unicode.org/copyright.html сицилиански шотландски синдхи + южнокюрдски северносаамски сена селкуп @@ -432,8 +428,8 @@ For terms of use, see http://www.unicode.org/copyright.html шумерски шведски суахили + конгоански суахили коморски - конгоански суахили класически сирийски сирийски тамилски @@ -486,6 +482,7 @@ For terms of use, see http://www.unicode.org/copyright.html валамо варай уашо + валпири волоф калмик ксоса @@ -501,8 +498,6 @@ For terms of use, see http://www.unicode.org/copyright.html зенага стандартен марокански тамазигт китайски - опростен китайски - традиционен китайски зулуски зуни без лингвистично съдържание @@ -634,7 +629,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Земята + Свят Африка Северноамерикански континент Южна Америка @@ -672,7 +667,6 @@ For terms of use, see http://www.unicode.org/copyright.html Ангуила Албания Армения - Холандски Антили Ангола Антарктика Аржентина @@ -693,7 +687,7 @@ For terms of use, see http://www.unicode.org/copyright.html Бенин Сен Бартелеми Бермуда - Бруней Дарусалам + Бруней Даруссалам Боливия Карибска Нидерландия Бразилия @@ -705,10 +699,10 @@ For terms of use, see http://www.unicode.org/copyright.html Белиз Канада Кокосови острови (острови Кийлинг) - Демократична република Конго - Конго (Демократична република) + Конго (Киншаса) + Конго (ДРК) Централноафриканска република - Конго + Конго (Бразавил) Конго (Република) Швейцария Кот д’Ивоар @@ -725,7 +719,7 @@ For terms of use, see http://www.unicode.org/copyright.html Кюрасао остров Рождество Кипър - Чехия + Чешка република Германия Диего Гарсия Джибути @@ -750,12 +744,12 @@ For terms of use, see http://www.unicode.org/copyright.html Фарьорски острови Франция Габон - Великобритания - Великобритания + Обединеното кралство + Обединеното кралство Гренада Грузия Френска Гвиана - Гърнси + Гърнзи Гана Гибралтар Гренландия @@ -821,7 +815,7 @@ For terms of use, see http://www.unicode.org/copyright.html Мадагаскар Маршалови острови Македония - Македония (БЮРМ) + Бивша югославска република Македония Мали Мианмар (Бирма) Монголия @@ -854,7 +848,7 @@ For terms of use, see http://www.unicode.org/copyright.html Панама Перу Френска Полинезия - Папуа Нова Гвинея + Папуа-Нова Гвинея Филипини Пакистан Полша @@ -867,7 +861,7 @@ For terms of use, see http://www.unicode.org/copyright.html Палау Парагвай Катар - отдалечени острови на Океания + Отдалечени острови на Океания Реюнион Румъния Сърбия @@ -980,6 +974,9 @@ For terms of use, see http://www.unicode.org/copyright.html Сортиране на цифрите Сила на сортиране валута + Часови формат (12- или 24-часов) + Стил за нов ред + Мерна система цифри Часова зона Вариант на локала @@ -987,95 +984,105 @@ For terms of use, see http://www.unicode.org/copyright.html Собствена употреба - арабско-индийски цифри - разширени арабско-индийски цифри - арменски цифри - арменски цифри в долен регистър - бенгалски цифри - Традиционен китайски (Big5) - будистки календар - китайски календар - Коптски календар - корейски календар - цифри в деванагари - Речников ред на сортиране - стандартен ред на сортиране в уникод - етиопски цифри - етиопски календар - Етиопски календар Амит Алем - Финансови цифри - цифри с пълна ширина - Опростен китайски (GB2312) - грузински цифри - григориански календар - гръцки цифри - гръцки цифри в долен регистър - цифри в гуджарати - цифри в гурмукхи - китайски десетични цифри - цифри в опростения китайски - финансови цифри в опростения китайски - цифри в традиционния китайски - финансови цифри в традиционния китайски - цифри в иврит - еврейски календар - Сортиране на всички - Индийски граждански календар - ислямски календар - Ислямски цивилен календар - календар според ISO 8601 - японски календар - японски цифри - японски финансови цифри - кхмерски цифри - цифри в каннада - лаоски цифри - западни цифри - Сортиране първо по долен регистър - цифри в малаялам - Монголски цифри - мианмарски цифри - Местни цифри - Нормално сортиране по диакритични знаци - Сортиране с нормален ред за регистъра - Сортиране без различаване на регистъра на буквите - Сортиране на кана отделно - Сортиране без нормализиране - Сортиране на цифрите индивидуално - Сортиране по символи - цифри в ория - персийски календар - Азбучен ред - Фонетичен ред на сортиране - Сортиране Пинин - Сортиране само по основни букви - Сортиране по диакритични знаци/регистър/ширина/кана - Следреформен ред на сортиране - календар на Република Китай - римски цифри - римски цифри в долен регистър - търсене с общо предназначение - Търсене по първоначални съгласни в хангул - Сортиране по диакритични знаци - Сортиране с пренебрегване на символи - стандартен ред на сортиране - Сортиране по щрих - традиционни тамилски цифри - тамилски цифри - цифри в телугу - Сортиране по диакритични знаци/регистър/ширина - тайландски цифри - тибетски цифри - Традиционно - Традиционни цифри - Ред на сортиране по ключове и черти - Сортиране първо по горен регистър - Цифри във ваи - Обратно сортиране по диакритични знаци - Сортиране с различаване на регистъра на буквите - Сортиране на кана по различен начин - Нормализирано сортиране в Уникод - Сортиране на цифрите по числена стойност + будистки календар + китайски календар + Коптски календар + корейски календар + етиопски календар + Етиопски календар Амит Алем + григориански календар + еврейски календар + Индийски граждански календар + ислямски календар + Ислямски цивилен календар + календар според ISO 8601 + японски календар + персийски календар + календар на Република Китай + Сортиране по символи + Сортиране с пренебрегване на символи + Нормално сортиране по диакритични знаци + Обратно сортиране по диакритични знаци + Сортиране първо по долен регистър + Сортиране с нормален ред за регистъра + Сортиране първо по горен регистър + Сортиране без различаване на регистъра на буквите + Сортиране с различаване на регистъра на буквите + Сортиране на кана отделно + Сортиране на кана по различен начин + Традиционен китайски (Big5) + Речников ред на сортиране + стандартен ред на сортиране в Уникод + Опростен китайски (GB2312) + Азбучен ред + Фонетичен ред на сортиране + Сортиране Пинин + Следреформен ред на сортиране + търсене с общо предназначение + Търсене по първоначални съгласни в хангул + стандартен ред на сортиране + Сортиране по щрих + Традиционно + Ред на сортиране по ключове и черти + Сортиране без нормализиране + Нормализирано сортиране в Уникод + Сортиране на цифрите индивидуално + Сортиране на цифрите по числена стойност + Сортиране на всички + Сортиране само по основни букви + Сортиране по диакритични знаци/регистър/ширина/кана + Сортиране по диакритични знаци + Сортиране по диакритични знаци/регистър/ширина + 12-часова система (0 – 11) + 12-часова система (1 – 12) + 24-часова система (0 – 23) + 24-часова система (1 – 24) + Свободен стил за нов ред + Нормален стил за нов ред + Строг стил за нов ред + Метрична система + Имперска мерна система + Мерна система на САЩ + арабско-индийски цифри + разширени арабско-индийски цифри + арменски цифри + арменски цифри в долен регистър + бенгалски цифри + цифри в деванагари + етиопски цифри + Финансови цифри + цифри с пълна ширина + грузински цифри + гръцки цифри + гръцки цифри в долен регистър + цифри в гуджарати + цифри в гурмукхи + китайски десетични цифри + цифри в китайски (опростен) + финансови цифри в китайски (опростен) + цифри в китайски (традиционен) + финансови цифри в китайски (традиционен) + цифри в иврит + японски цифри + японски финансови цифри + кхмерски цифри + цифри в каннада + лаоски цифри + западни цифри + цифри в малаялам + Монголски цифри + бирмански цифри + Местни цифри + цифри в ория + римски цифри + римски цифри в долен регистър + традиционни тамилски цифри + тамилски цифри + цифри в телугу + тайландски цифри + тибетски цифри + Традиционни цифри + Цифри във ваи АКГН (BGN) @@ -1167,6 +1174,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E, d y 'г'. G MM.y 'г'. G @@ -1327,18 +1335,18 @@ For terms of use, see http://www.unicode.org/copyright.html - ян. - февр. + яну + фев март - апр. + апр май юни юли - авг. - септ. - окт. - ноем. - дек. + авг + сеп + окт + ное + дек я @@ -1371,18 +1379,18 @@ For terms of use, see http://www.unicode.org/copyright.html - ян. - февр. + яну + фев март - апр. + апр май юни юли - авг. - септ. - окт. - ноем. - дек. + авг + сеп + окт + ное + дек я @@ -1536,15 +1544,61 @@ For terms of use, see http://www.unicode.org/copyright.html + + полунощ + пр.об. + сл.об. + сутринта + на обед + следобед + вечерта + през нощта + пр.об. - пл. сл.об. + полунощ пр.об. - пладне сл.об. + сутринта + на обяд + следобед + вечерта + през нощта + + + + + полунощ + пр.об. + сл.об. + сутрин + на обед + следобед + вечер + нощ + + + полунощ + пр.об. + сл.об. + сутрин + на обед + следобед + вечер + нощ + + + полунощ + пр.об. + сл.об. + сутринта + на обед + следобед + вечерта + нощ @@ -1561,9 +1615,6 @@ For terms of use, see http://www.unicode.org/copyright.html сл.Хр. сл.н.е. - - сл.н.е. - @@ -1651,6 +1702,10 @@ For terms of use, see http://www.unicode.org/copyright.html H:mm h:mm:ss a H:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d.MM E, d.MM @@ -1879,6 +1934,9 @@ For terms of use, see http://www.unicode.org/copyright.html г. + мин. г. + т. г. + следв. г. сл. {0} г. сл. {0} г. @@ -1890,6 +1948,9 @@ For terms of use, see http://www.unicode.org/copyright.html г. + мин. г. + т. г. + сл. г. сл. {0} г. сл. {0} г. @@ -1901,6 +1962,9 @@ For terms of use, see http://www.unicode.org/copyright.html тримесечие + миналото тримесечие + това тримесечие + следващото тримесечие след {0} тримесечие след {0} тримесечия @@ -1912,6 +1976,9 @@ For terms of use, see http://www.unicode.org/copyright.html трим. + мин. трим. + това трим. + следв. трим. сл. {0} трим. сл. {0} трим. @@ -1923,6 +1990,9 @@ For terms of use, see http://www.unicode.org/copyright.html трим. + мин. трим. + това трим. + следв. трим. сл. {0} трим. сл. {0} трим. @@ -1948,6 +2018,9 @@ For terms of use, see http://www.unicode.org/copyright.html м + мин. мес. + този мес. + следв. мес. сл. {0} м. сл. {0} м. @@ -1959,6 +2032,9 @@ For terms of use, see http://www.unicode.org/copyright.html м + мин. м. + т. м. + сл. м. сл. {0} м. сл. {0} м. @@ -1983,7 +2059,10 @@ For terms of use, see http://www.unicode.org/copyright.html - седм + седм. + миналата седмица + тази седм. + следв. седм. след {0} седм. след {0} седм. @@ -1994,7 +2073,10 @@ For terms of use, see http://www.unicode.org/copyright.html - седм + седм. + мин. седм. + тази седм. + сл. седм. сл. {0} седм. сл. {0} седм. @@ -2022,6 +2104,11 @@ For terms of use, see http://www.unicode.org/copyright.html д + онзи ден + вчера + днес + утре + вдругиден след {0} д след {0} д @@ -2033,6 +2120,11 @@ For terms of use, see http://www.unicode.org/copyright.html д + онзи ден + вчера + днес + утре + вдругиден сл. {0} д сл. {0} д @@ -2262,7 +2354,7 @@ For terms of use, see http://www.unicode.org/copyright.html Гринуич{0} Гринуич {0} - {0} – лятно часово време + {0}, лятно часово време {0} – стандартно време {1} ({0}) @@ -3132,6 +3224,9 @@ For terms of use, see http://www.unicode.org/copyright.html Порт Морсби + + Бугенвил + Манила @@ -3216,6 +3311,9 @@ For terms of use, see http://www.unicode.org/copyright.html Иркутск + + Чита + Якутск @@ -3234,6 +3332,9 @@ For terms of use, see http://www.unicode.org/copyright.html Магадан + + Среднеколимск + Камчатка @@ -4476,8 +4577,8 @@ For terms of use, see http://www.unicode.org/copyright.html 0 млн'.' 00 млн'.' 00 млн'.' - 000 млн'.' - 000 млн'.' + 000 млн + 000 млн 0 млрд'.' 0 млрд'.' 00 млрд'.' @@ -4516,6 +4617,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤;(#,##0.00 ¤) + + + 0 хил'.' ¤ + 0 хил'.' ¤ + 00 хил'.' ¤ + 00 хил'.' ¤ + 000 хил'.' ¤ + 000 хил'.' ¤ + 0 млн'.' ¤ + 0 млн'.' ¤ + 00 млн'.' ¤ + 00 млн'.' ¤ + 000 млн'.' ¤ + 000 млн'.' ¤ + 0 млрд'.' ¤ + 0 млрд'.' ¤ + 00 млрд'.' ¤ + 00 млрд'.' ¤ + 000 млрд'.' ¤ + 000 млрд'.' ¤ + 0 трлн'.' ¤ + 0 трлн'.' ¤ + 00 трлн'.' ¤ + 00 трлн'.' ¤ + 000 трлн'.' ¤ + 000 трлн'.' ¤ + + {0} {1} {0} {1} @@ -4996,6 +5125,7 @@ For terms of use, see http://www.unicode.org/copyright.html грузински лари грузински лари GEL + Ганайско седи (1979–2007) @@ -5558,7 +5688,7 @@ For terms of use, see http://www.unicode.org/copyright.html Руска рубла руска рубла руски рубли - руб. + RUB Руска рубла (1991–1998) @@ -5695,6 +5825,7 @@ For terms of use, see http://www.unicode.org/copyright.html тайландски бат тайландски бата THB + ฿ Таджикистанска рубла @@ -6008,6 +6139,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} метър за секунда на квадрат {0} метра за секунда на квадрат + + оборот + {0} оборот + {0} оборота + + + радиани + {0} радиан + {0} радиана + + + градуси + {0} градус + {0} градуса + дъгови минути {0} дъгова минута @@ -6018,30 +6164,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} дъгова секунда {0} дъгови секунди - - градуси - {0} градус - {0} градуса - - - радиани - {0} радиан - {0} радиана - - - акри - {0} акър - {0} акра + + квадратни километри + {0} квадратен километър + {0} квадратни километра хектари {0} хектар {0} хектара + + квадратни метри + {0} квадратен метър + {0} квадратни метра + {0} на квадратен метър + квадратни сантиметри {0} квадратен сантиметър {0} квадратни сантиметра + {0} на квадратен сантиметър + + + квадратни мили + {0} квадратна миля + {0} квадратни мили + + + акри + {0} акър + {0} акра + + + квадратни ярдове + {0} квадратен ярд + {0} квадратни ярда квадратни футове @@ -6052,91 +6210,106 @@ For terms of use, see http://www.unicode.org/copyright.html квадратни инчове {0} квадратен инч {0} квадратни инча + {0} на квадратен инч - - квадратни километри - {0} квадратен километър - {0} квадратни километра - - - квадратни метри - {0} квадратен метър - {0} квадратни метра - - - квадратни мили - {0} квадратна миля - {0} квадратни мили - - - квадратни ярдове - {0} квадратен ярд - {0} квадратни ярда + + карати + {0} карат + {0} карата литри на километър {0} литър на километър {0} литра на километър + + литри на 100 километра + {0} литър на 100 километра + {0} литра на 100 километра + мили с един галон {0} миля с един галон {0} мили с един галон - - битове - {0} бит - {0} бита - - - байтове - {0} байт - {0} байта - - - гигабити - {0} гигабит - {0} гигабита - - - гигабайти - {0} гигабайт - {0} гигабайта - - - килобитове - {0} килобит - {0} килобита - - - килобайтове - {0} килобайт - {0} килобайта - - - мегабитове - {0} мегабит - {0} мегабита - - - мегабайти - {0} мегабайт - {0} мегабайта - - - терабитове - {0} терабит - {0} терабита - терабайтове {0} терабайт {0} терабайта + + терабитове + {0} терабит + {0} терабита + + + гигабайти + {0} гигабайт + {0} гигабайта + + + гигабити + {0} гигабит + {0} гигабита + + + мегабайти + {0} мегабайт + {0} мегабайта + + + мегабитове + {0} мегабит + {0} мегабита + + + килобайтове + {0} килобайт + {0} килобайта + + + килобитове + {0} килобит + {0} килобита + + + байтове + {0} байт + {0} байта + + + битове + {0} бит + {0} бита + + + векове + {0} век + {0} века + + + години + {0} година + {0} години + {0} на година + + + месеци + {0} месец + {0} месеца + {0} на месец + + + седмици + {0} седмица + {0} седмици + {0} на седмица + дни {0} ден {0} дни + {0} на ден часове @@ -6144,30 +6317,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} часа {0} за час - - микросекунди - {0} микросекунда - {0} микросекунди - - - милисекунди - {0} милисекунда - {0} милисекунди - минути {0} минута {0} минути - - - месеци - {0} месец - {0} месеца - - - наносекунди - {0} наносекунда - {0} наносекунди + {0} на минута секунди @@ -6175,15 +6329,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} секунди {0} за секунда - - седмици - {0} седмица - {0} седмици + + милисекунди + {0} милисекунда + {0} милисекунди - - години - {0} година - {0} години + + микросекунди + {0} микросекунда + {0} микросекунди + + + наносекунди + {0} наносекунда + {0} наносекунди ампери @@ -6205,6 +6364,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} волт {0} волта + + килокалории + {0} килокалория + {0} килокалории + калории {0} калория @@ -6215,21 +6379,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} калория {0} калории - - джаули - {0} джаул - {0} джаула - - - килокалории - {0} килокалория - {0} килокалории - килоджаули {0} килоджаул {0} килоджаула + + джаули + {0} джаул + {0} джаула + киловатчаси {0} киловатчас @@ -6240,36 +6399,74 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гигахерц {0} гигахерца - - херцове - {0} херц - {0} херца + + мегахерци + {0} мегахерц + {0} мегахерца килохерци {0} килохерц {0} килохерца - - мегахерци - {0} мегахерц - {0} мегахерца + + херцове + {0} херц + {0} херца - - астрономически единици - {0} астрономическа единица - {0} астрономически единици + + километри + {0} километър + {0} километра + {0} на километър - - сантиметри - {0} сантиметър - {0} сантиметра + + метри + {0} метър + {0} метра + {0} на метър дециметри {0} дециметър {0} дециметра + + сантиметри + {0} сантиметър + {0} сантиметра + {0} на сантиметър + + + милиметри + {0} милиметър + {0} милиметра + + + микрометри + {0} микрометър + {0} микрометра + + + нанометри + {0} нанометър + {0} нанометра + + + пикометри + {0} пикометър + {0} пикометра + + + мили + {0} миля + {0} мили + + + ярдове + {0} ярд + {0} ярда + футове {0} фут @@ -6279,162 +6476,126 @@ For terms of use, see http://www.unicode.org/copyright.html инчове {0} инч {0} инча - - - километри - {0} километър - {0} километра - - - светлинни години - {0} светлинна година - {0} светлинни години - - - метри - {0} метър - {0} метра - - - микрометри - {0} микрометър - {0} микрометра - - - мили - {0} миля - {0} мили - - - милиметри - {0} милиметър - {0} милиметра - - - нанометри - {0} нанометър - {0} нанометра - - - морски мили - {0} морска миля - {0} морски мили + {0}/in парсеци {0} парсек {0} парсека - - пикометри - {0} пикометър - {0} пикометра + + светлинни години + {0} светлинна година + {0} светлинни години - - ярдове - {0} ярд - {0} ярда + + астрономически единици + {0} астрономическа единица + {0} астрономически единици + + + морски мили + {0} морска миля + {0} морски мили + + + шведска миля + {0} шведска миля + {0} шведски мили луксове {0} лукс {0} лукса - - карати - {0} карат - {0} карата - - - грамове - {0} грам - {0} грама - - - килограми - {0} килограм - {0} килограма - тонове {0} тон {0} тона - - микрограмове - {0} микрограм - {0} микрограма + + килограми + {0} килограм + {0} килограма + {0} на килограм + + + грамове + {0} грам + {0} грама + {0} на грам милиграмове {0} милиграм {0} милиграма - - унции - {0} унция - {0} унции - - - тройунции - {0} тройунция - {0} тройунции - - - фунтове - {0} фунт - {0} фунта + + микрограмове + {0} микрограм + {0} микрограма къси тонове {0} къс тон {0} къси тона + + фунтове + {0} фунт + {0} фунта + + + унции + {0} унция + {0} унции + {0} на унция + + + тройунции + {0} тройунция + {0} тройунции + + + карати + {0} карат + {0} карата + гигавати {0} гигават {0} гигавата - - конски сили - {0} конска сила - {0} конски сили - - - киловати - {0} киловат - {0} киловата - мегавати {0} мегават {0} мегавата - - миливати - {0} миливат - {0} миливата + + киловати + {0} киловат + {0} киловата ватове {0} ват {0} вата + + миливати + {0} миливат + {0} миливата + + + конски сили + {0} конска сила + {0} конски сили + хектопаскали {0} хектопаскал {0} хектопаскала - - инчове живачен стълб - {0} инч живачен стълб - {0} инча живачен стълб - - - милибари - {0} милибар - {0} милибара - милиметри живачен стълб {0} мм живачен стълб @@ -6445,10 +6606,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} фунт на квадратен инч {0} фунта на квадратен инч - - карати - {0} карат - {0} карата + + инчове живачен стълб + {0} инч живачен стълб + {0} инча живачен стълб + + + милибари + {0} милибар + {0} милибара километри в час @@ -6465,6 +6631,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миля в час {0} мили в час + + възел + {0} възел + {0} възла + + + ° + {0}° + {0}° + градуси Целзий {0} градус Целзий @@ -6480,31 +6656,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} келвин {0} келвина - - акър-футове - {0} акър-фут - {0} акър-фута - - - сентилитри - {0} сентилитър - {0} сентилитра - - - кубически сантиметри - {0} кубически сантиметър - {0} кубически сантиметра - - - кубически футове - {0} кубически фут - {0} кубически фута - - - кубически инчове - {0} кубически инч - {0} кубически инча - кубически километри {0} кубически километър @@ -6514,6 +6665,13 @@ For terms of use, see http://www.unicode.org/copyright.html кубически метри {0} кубически метър {0} кубически метра + {0} на кубичен метър + + + кубически сантиметри + {0} кубически сантиметър + {0} кубически сантиметра + {0} на кубичен сантиметър кубически мили @@ -6525,25 +6683,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кубически ярд {0} кубически ярда - - чаши - {0} чаша - {0} чаши + + кубически футове + {0} кубически фут + {0} кубически фута - - децилитри - {0} децилитър - {0} децилитра + + кубически инчове + {0} кубически инч + {0} кубически инча - - течни унции - {0} течна унция - {0} течни унции - - - галони - {0} галона - {0} галона + + мегалитри + {0} мегалитър + {0} мегалитра хектолитри @@ -6554,27 +6707,64 @@ For terms of use, see http://www.unicode.org/copyright.html литри {0} литър {0} литра + {0} на литър - - мегалитри - {0} мегалитър - {0} мегалитра + + децилитри + {0} децилитър + {0} децилитра + + + сентилитри + {0} сентилитър + {0} сентилитра милилитри {0} милилитър {0} милилитра - - пинти - {0} пинта - {0} пинти + + метрични пинти + {0} метричен пинт + {0} метрични пинта + + + метрични чаши + {0} mc + {0} метрични чаши + + + акър-футове + {0} акър-фут + {0} акър-фута + + + галони + {0} галона + {0} галона + {0} на галон кварти {0} кварта {0} кварти + + пинти + {0} пинта + {0} пинти + + + чаши + {0} чаша + {0} чаши + + + течни унции + {0} течна унция + {0} течни унции + супени лъжици {0} супена лъжица @@ -6585,6 +6775,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} чаена лъжица {0} чаени лъжици + + {0}И + {0}С + {0}Ю + {0}З + @@ -6600,6 +6796,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + оборот + {0} оборот + {0} оборота + + + rad + {0} rad + {0} rad + + + ° + {0}° + {0}° + дъгови мин. {0}′ @@ -6610,30 +6821,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - ° - {0}° - {0}° - - - rad - {0} rad - {0} rad - - - акри - {0} акър - {0} акра + + km² + {0} km² + {0} km² хектари {0} ha {0} ha + + + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + кв. мили + {0} кв. миля + {0} кв. мили + + + акри + {0} акър + {0} акра + + + кв. ярдове + {0} кв. ярд + {0} кв. ярда кв. футове @@ -6644,91 +6867,106 @@ For terms of use, see http://www.unicode.org/copyright.html кв. инчове {0} кв. инч {0} кв. инча + {0}/in² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - кв. мили - {0} кв. миля - {0} кв. мили - - - кв. ярдове - {0} кв. ярд - {0} кв. ярда + + К + {0} карат + {0} карата l/km {0} l/km {0} l/km + + l/100 km + {0} l/100 km + {0} l/100 km + mpg {0} mpg {0} mpg - - б - {0} б - {0} б - - - B - {0} B - {0} B - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + B + {0} B + {0} B + + + б + {0} б + {0} б + + + в. + {0} в. + {0} в. + + + години + {0} г + {0} г + {0}/год. + + + месеци + {0} мес. + {0} мес. + {0}/месец + + + седмици + {0} седм. + {0} седм. + {0}/седмица + дни {0} д {0} д + {0}/д часове @@ -6736,30 +6974,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0}/h - - μs - {0} μs - {0} μs - - - милисекунди - {0} ms - {0} ms - min {0} min {0} min - - - месеци - {0} мес. - {0} мес. - - - ns - {0} ns - {0} ns + {0}/мин секунди @@ -6767,15 +6986,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} s {0}/s - - седмици - {0} седм. - {0} седм. + + милисекунди + {0} ms + {0} ms - - години - {0} г - {0} г + + μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns A @@ -6797,6 +7021,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -6807,21 +7036,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cal {0} cal - - J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + J + {0} J + {0} J + kWh {0} kWh @@ -6832,201 +7056,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - AU - {0} AU - {0} AU + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + метри + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - футове - {0} фут - {0} фута - - - инчове - {0} инч - {0} инча - - - km - {0} km - {0} km - - - св. г. - {0} св.г. - {0} св.г. - - - метри - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - мили - {0} миля - {0} мили + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - pc - {0} pc - {0} pc - пикометри {0} pm {0} pm + + мили + {0} миля + {0} мили + ярдове {0} ярд {0} ярда + + футове + {0} фут + {0} фута + {0}/ft + + + инчове + {0} инч + {0} инча + {0}/in + + + pc + {0} pc + {0} pc + + + св. г. + {0} св.г. + {0} св.г. + + + AU + {0} AU + {0} AU + + + nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + lx {0} lx {0} lx - - CD - {0} CD - {0} CD - - - g - {0} g - {0} g - - - kg - {0} kg - {0} kg - т {0} т {0} т - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + g + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - унц. - {0} унц. - {0} унц. - - - тр. унц. - {0} тр. унц. - {0} тр. унц. - - - фунтове - {0} фунт - {0} фунта + + µg + {0} µg + {0} µg къси тонове {0} к. т. {0} к. т. + + фунтове + {0} фунт + {0} фунта + {0}/lb + + + унц. + {0} унц. + {0} унц. + {0}/oz + + + тр. унц. + {0} тр. унц. + {0} тр. унц. + + + CD + {0} CD + {0} CD + GW {0} GW {0} GW - - к. с. - {0} к. с. - {0} к. с. - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW W {0} W {0} W + + mW + {0} mW + {0} mW + + + к. с. + {0} к. с. + {0} к. с. + hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - mmHg {0} mmHg @@ -7037,10 +7265,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - К - {0} карат - {0} карат + + inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar km/h @@ -7057,6 +7290,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миля/ч {0} мили/ч + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + °C {0} °C @@ -7072,31 +7315,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - акър-футове - {0} акър-фут - {0} акър-фута - - - cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - - - куб. футове - {0} куб. фут - {0} куб. фута - - - куб. инчове - {0} куб. инч - {0} куб. инча - km³ {0} km³ @@ -7106,6 +7324,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ куб. мили @@ -7117,25 +7342,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} куб. ярд {0} куб. ярда - - чаши - {0} чаша - {0} чаши + + куб. футове + {0} куб. фут + {0} куб. фута - - dl - {0} dl - {0} dl + + куб. инчове + {0} куб. инч + {0} куб. инча - - т. унц. - {0} т. унц. - {0} т. унц. - - - галони - {0} галон - {0} галона + + Ml + {0} Ml + {0} Ml hl @@ -7146,27 +7366,64 @@ For terms of use, see http://www.unicode.org/copyright.html литри {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl ml {0} ml {0} ml - - пинти - {0} пинта - {0} пинти + + mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + акър-футове + {0} акър-фут + {0} ac ft + + + галони + {0} галон + {0} галона + {0}/gal кварти {0} кварта {0} кварти + + пинти + {0} пинта + {0} пинти + + + чаши + {0} чаша + {0} чаши + + + т. унц. + {0} т. унц. + {0} т. унц. + с. л. {0} с. л. @@ -7177,6 +7434,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ч. л. {0} ч. л. + + {0}И + {0}С + {0}Ю + {0}З + @@ -7186,6 +7449,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}′ {0}′ @@ -7194,26 +7461,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} акър - {0} акра + + {0} km² + {0} km² {0} ha {0} ha - - {0} кв. фут - {0} кв. фута - - - {0} km² - {0} km² - {0} m² {0} m² @@ -7222,6 +7477,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кв. миля {0} кв. мили + + {0} акър + {0} акра + + + {0} кв. фут + {0} кв. фута + + + l/100 km + {0} l/100 km + {0} l/100 km + + + г + {0} г + {0} г + + + м + {0} м + {0} м + + + седм. + {0} седм. + {0} седм. + д {0} д @@ -7232,66 +7515,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0} h - - ms - {0} ms - {0} ms - min {0} min {0} min - - м - {0} м - {0} м - s {0} s {0} s - - седм. - {0} седм. - {0} седм. - - - г - {0} г - {0} г - - - cm - {0} cm - {0} cm - - - {0} фут - {0} фута - - - {0}" - {0}" + + ms + {0} ms + {0} ms km {0} km {0} km - - {0} св.г. - {0} св.г. - m {0} m {0} m - - {0} миля - {0} мили + + cm + {0} cm + {0} cm mm @@ -7302,31 +7554,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} миля + {0} мили + {0} ярд {0} ярда - - g - {0} g - {0} g + + {0} фут + {0} фута + + + {0}" + {0}" + + + {0} св.г. + {0} св.г. kg {0} kg {0} kg - - {0} унц. - {0} унц. + + g + {0} g + {0} g {0} фунт {0} фунта - - {0} к.с. - {0} к.с. + + {0} унц. + {0} унц. {0} kW @@ -7336,6 +7600,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} к.с. + {0} к.с. + {0} hPa {0} hPa @@ -7383,6 +7651,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l + + {0}И + {0}С + {0}Ю + {0}З + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bg_BG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bg_BG.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bg_BG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bg_BG.xml index b744c2e482e..034d2e38ead 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bg_BG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bg_BG.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bm.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bm.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bm.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bm.xml index 32ce3f166bb..7bde755ad9a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bm.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bm.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angiya Alibani Arimeni - Peyiba ka Antiyi Angola Arizantin Samowa amerikani @@ -573,6 +571,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤00K + ¤000K + ¤0M + ¤00M + ¤000M + ¤0G + ¤00G + ¤000G + ¤0T + ¤00T + ¤000T + + @@ -752,3 +766,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bm_Latn_ML.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bm_ML.xml similarity index 65% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bm_Latn_ML.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bm_ML.xml index d93fd0014de..36ea3825b8a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bm_Latn_ML.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bm_ML.xml @@ -1,15 +1,14 @@ - - - + - - - + + - + @@ -170,13 +169,13 @@ For terms of use, see http://www.unicode.org/copyright.html ཨི་ཀྲར་ལི་ ཛ་མེ་ཀ། ཇོར་ཌན། - རི་པིན་ + ཉི་ཧོང་ ཁེན་ཉི་ཡ། ཁིར་གིཛ་སྟཱན། ཀམ་བོ་ཌི་ཡ། ཀི་རི་བཱ་ཏི། སེནྚ། ཀིཊྚས྄། དང༌། ནེ་བིས྄། - ཀོ་རི་ཡ། ལྷོ་མ། + ལྷོ་ཀོ་རི་ཡ། ཀུ་ཝེད་རྒྱལ་ཁབ། ཁེ་མེན་གླིང་ཕྲན། ཁ་ཛཱག་སྟཱན། @@ -213,7 +212,7 @@ For terms of use, see http://www.unicode.org/copyright.html ནི་ཀ་ར་གུ་ཨ། ཧའོ་ལན། ནོར་ཝེ། - བར་ཡུལ་ + བལ་ཡུལ་ ནཽ་རུ། ནིའུ་ཝ། ནིའུ་ཛི་ལན྄ཌ། @@ -287,20 +286,20 @@ For terms of use, see http://www.unicode.org/copyright.html - G སྤྱི་ལོ་y MMMMའི་ཙེས་dད + G སྤྱི་ལོ་y MMMMའི་ཚེས་d - G y ལོ་འི་MMMཙེས་d + G y ལོའི་MMMཚེས་d - G y ལོ་འི་MMMཙེས་d - G སྤྱི་ལོ་y MMMMའི་ཙེས་dད - G y ལོ་འི་MMMཙེས་d + G y ལོའི་MMMཚེས་d + G སྤྱི་ལོ་y MMMMའི་ཚེས་d + G y ལོའི་MMMཚེས་d @@ -321,10 +320,26 @@ For terms of use, see http://www.unicode.org/copyright.html ཟླ་༡༡ ཟླ་༡༢ + + ཟླ་བ་དང་པོ + ཟླ་བ་གཉིས་པ + ཟླ་བ་གསུམ་པ + ཟླ་བ་བཞི་པ + ཟླ་བ་ལྔ་པ + ཟླ་བ་དྲུག་པ + ཟླ་བ་བདུན་པ + ཟླ་བ་བརྒྱད་པ + ཟླ་བ་དགུ་པ + ཟླ་བ་བཅུ་པ + ཟླ་བ་བཅུ་གཅིག་པ + ཟླ་བ་བཅུ་གཉིས་པ + + + ཟླ་བ་དང་པོ་ ཟླ་བ་གཉིས་པ་ - ཟླ་བ་སུམ་པ་ + ཟླ་བ་གསུམ་པ་ ཟླ་བ་བཞི་པ་ ཟླ་བ་ལྔ་པ་ ཟླ་བ་དྲུག་པ་ @@ -351,11 +366,11 @@ For terms of use, see http://www.unicode.org/copyright.html ཉི ཟླ - མི - ལྷ - ཕུ - - སྤེ + མིག + ལྷག + ཕུར + སངས + སྤེན གཟའ་ཉི་མ་ @@ -380,11 +395,11 @@ For terms of use, see http://www.unicode.org/copyright.html ཉི ཟླ - མི - ལྷ - ཕུ - - སྤེ + མིག + ལྷག + ཕུར + སངས + སྤེན གཟའ་ཉི་མ་ @@ -400,35 +415,39 @@ For terms of use, see http://www.unicode.org/copyright.html - དུས་ཚིགས་དང་པོ། - དུས་ཚིགས་གཉིས་པ། - ་དུས་ཚིགས་གསུམ་པ། - དུས་ཚིགས་བཞི་པ། + དུས་ཚིགས་དང་པོ། + དུས་ཚིགས་གཉིས་པ། + དུས་ཚིགས་གསུམ་པ། + དུས་ཚིགས་བཞི་པ། - དུས་ཚིགས་དང་པོ། - དུས་ཚིགས་གཉིས་པ། - ་དུས་ཚིགས་གསུམ་པ། - དུས་ཚིགས་བཞི་པ། + དུས་ཚིགས་དང་པོ། + དུས་ཚིགས་གཉིས་པ། + དུས་ཚིགས་གསུམ་པ། + དུས་ཚིགས་བཞི་པ། - དུས་ཚིགས་དང་པོ། - དུས་ཚིགས་གཉིས་པ། - ་དུས་ཚིགས་གསུམ་པ། - དུས་ཚིགས་བཞི་པ། + དུས་ཚིགས་དང་པོ། + དུས་ཚིགས་གཉིས་པ། + དུས་ཚིགས་གསུམ་པ། + དུས་ཚིགས་བཞི་པ། - དུས་ཚིགས་དང་པོ། - དུས་ཚིགས་གཉིས་པ། - ་དུས་ཚིགས་གསུམ་པ། - དུས་ཚིགས་བཞི་པ། + དུས་ཚིགས་དང་པོ། + དུས་ཚིགས་གཉིས་པ། + དུས་ཚིགས་གསུམ་པ། + དུས་ཚིགས་བཞི་པ། + + སྔ་དྲོ་ + ཕྱི་དྲོ་ + སྔ་དྲོ་ ཕྱི་དྲོ་ @@ -437,26 +456,63 @@ For terms of use, see http://www.unicode.org/copyright.html - སྤྱི་ལོ་སྔོན། - སྤྱི་ལོ། + སྤྱི་ལོ་སྔོན་ + སྤྱི་ལོ་ + + + y MMMMའི་ཚེས་d, EEEE + + - སྤྱི་ལོ་y MMMMའི་ཙེས་dད + སྤྱི་ལོ་y MMMMའི་ཚེས་d - y ལོ་འི་MMMཙེས་d + y ལོའི་MMMཚེས་d + + + + + y-MM-dd + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + - y ལོ་འི་MMMཙེས་d - སྤྱི་ལོ་y MMMMའི་ཙེས་dད + G y LLLL + MMMཚེས་d + MMMཚེས་d, E + MMMMའི་ཚེས་d + y LLL + y ལོའི་MMMཚེས་d + སྤྱི་ལོ་y MMMMའི་ཚེས་d @@ -476,11 +532,11 @@ For terms of use, see http://www.unicode.org/copyright.html ཉིན། - ཁས་ཉིན་ཀ་ + ཁས་ཉིན་ ཁས་ས་ དེ་རིང་ སང་ཉིན་ - གནངས་ཉིན་ཀ་ + གནངས་ཉིན་ གཟའ་འཁོར་གཅིག @@ -489,7 +545,7 @@ For terms of use, see http://www.unicode.org/copyright.html སྔ་དྲོ། ཕྱི་དྲོ། - ཆུ་ཙོ་ + ཆུ་ཚོད་ སྐར་མ། @@ -540,6 +596,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0K + ¤ 00K + ¤ 000K + ¤ 0M + ¤ 00M + ¤ 000M + ¤ 0G + ¤ 00G + ¤ 000G + ¤ 0T + ¤ 00T + ¤ 000T + + @@ -547,10 +619,10 @@ For terms of use, see http://www.unicode.org/copyright.html ¥ - རྒྱ་གར་སྒོར་མོ་ + རྒྱ་གར་སྒོར་ - ཨ་རིའི་སྒོར་མོ། + ཨ་རིའི་སྒོར་ མ་རྟོགས་པའི་ནུས་མེད་དངུལ་ལོར @@ -559,8 +631,9 @@ For terms of use, see http://www.unicode.org/copyright.html - ཡིན།:Y - མེད།:N + ཡིན།:Y + མིན།:N + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bo_CN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bo_CN.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bo_CN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bo_CN.xml index e933321c03e..dc1c51d5137 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bo_CN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bo_CN.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bo_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bo_IN.xml similarity index 79% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bo_IN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bo_IN.xml index 9159706316f..5256c475d3c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bo_IN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bo_IN.xml @@ -1,13 +1,12 @@ - - - + @@ -24,3 +23,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/br.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/br.xml similarity index 64% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/br.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/br.xml index 095bae1338b..9898d9877dc 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/br.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/br.xml @@ -1,16 +1,20 @@ - - - + + + {0} ({1}) + {0}, {1} + {0} : {1} + afar abkhazeg @@ -33,10 +37,12 @@ For terms of use, see http://www.unicode.org/copyright.html amhareg aragoneg hensaozneg + angika arabeg arabeg modern arameeg araoukaneg + araona arapaho arabeg Aljeria arawakeg @@ -44,11 +50,13 @@ For terms of use, see http://www.unicode.org/copyright.html arabeg Egipt asameg asu + yezh sinoù Amerika + asturianeg avar awadhi aymara - azeri - azeri ar Su + azerbaidjaneg + azeri bachkir baloutchi balineg @@ -59,6 +67,7 @@ For terms of use, see http://www.unicode.org/copyright.html bemba bena bulgareg + baloutchi ar Cʼhornôg bhojpuri bislama bikol @@ -71,12 +80,14 @@ For terms of use, see http://www.unicode.org/copyright.html brahweg bodo bosneg + akoose bouriat bugi blin katalaneg caddo karibeg + atsam tchetcheneg cebuano chamorru @@ -122,9 +133,9 @@ For terms of use, see http://www.unicode.org/copyright.html saozneg Aostralia saozneg Kanada saozneg Breizh-Veur - saozneg R.U. + saozneg RU saozneg Amerika - saozneg S.U. + saozneg SU krennsaozneg esperanteg spagnoleg @@ -139,12 +150,14 @@ For terms of use, see http://www.unicode.org/copyright.html fanti finneg filipineg + finneg traoñienn an Torne fidjieg faeroeg fon galleg galleg Kanada galleg Suis + galleg cajun krenncʼhalleg hencʼhalleg arpitaneg @@ -203,6 +216,7 @@ For terms of use, see http://www.unicode.org/copyright.html italianeg inuktitut japaneg + kreoleg Jamaika yuzev-perseg yuzev-arabeg javaneg @@ -232,6 +246,7 @@ For terms of use, see http://www.unicode.org/copyright.html karelieg kurukh kashmiri + koluneg kurdeg kutenai kerneveureg @@ -283,6 +298,7 @@ For terms of use, see http://www.unicode.org/copyright.html malteg yezhoù lies muskogi + mirandeg birmaneg erza naurueg @@ -291,11 +307,13 @@ For terms of use, see http://www.unicode.org/copyright.html norvegeg bokmål ndebele an Norzh alamaneg izel + saksoneg izel nepaleg newari ndonga nias niue + aoeg nederlandeg flandrezeg norvegeg nynorsk @@ -339,6 +357,7 @@ For terms of use, see http://www.unicode.org/copyright.html portugaleg Brazil portugaleg Europa kechuaeg + kichuaeg Chimborazo rajasthani rapanui rarotonga @@ -368,6 +387,7 @@ For terms of use, see http://www.unicode.org/copyright.html sango heniwerzhoneg serb-kroateg + tacheliteg shan arabeg Tchad singhaleg @@ -392,9 +412,11 @@ For terms of use, see http://www.unicode.org/copyright.html sumereg svedeg swahili + swahili Kongo komoreg sirieg klasel sirieg + silezieg tamileg touloueg telougou @@ -416,6 +438,7 @@ For terms of use, see http://www.unicode.org/copyright.html nyasa tonga tok pisin turkeg + turoyoeg tsonga tsimshian tatar @@ -424,6 +447,7 @@ For terms of use, see http://www.unicode.org/copyright.html twi tahitianeg touva + tamazigteg Kreizatlas oudmourteg ouigoureg ougariteg @@ -434,10 +458,13 @@ For terms of use, see http://www.unicode.org/copyright.html ouzbekeg vai venda + venezieg + vepseg vietnameg flandrezeg ar c’hornôg volapük votyakeg + voroeg walloneg walser walamo @@ -447,6 +474,7 @@ For terms of use, see http://www.unicode.org/copyright.html sinaeg Wu kalmouk xhosa + megreleg yao yapeg yiddish @@ -573,7 +601,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antilhez Nederlandat Angola Antarktika Arcʼhantina @@ -596,7 +623,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bermuda Brunei Bolivia - Nederlandat Karib + Karib Nederlandat Brazil Bahamas Bhoutan @@ -622,7 +649,7 @@ For terms of use, see http://www.unicode.org/copyright.html Enez Clipperton Costa Rica Kuba - Kab Glas + Kab-Glas Curaçao Enez Christmas Kiprenez @@ -652,7 +679,7 @@ For terms of use, see http://www.unicode.org/copyright.html Frañs Gabon Rouantelezh-Unanet - R.U. + RU Grenada Jorjia Gwiana cʼhall @@ -769,13 +796,13 @@ For terms of use, see http://www.unicode.org/copyright.html Paraguay Qatar Oseania diabell - Reünion + Ar Reünion Roumania Serbia Rusia Rwanda Arabia Saoudat - Salomon + Inizi Salomon Sechelez Soudan Sveden @@ -817,7 +844,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ouganda Inizi diabell ar Stadoù-Unanet Stadoù-Unanet - S.U. + SU Uruguay Ouzbekistan Vatikan @@ -852,7 +879,10 @@ For terms of use, see http://www.unicode.org/copyright.html sanskriteg hiron boudaat rannyezh euskarek Bizkaia rannyezh San Giorgio/Bila + lizherenneg Bohorič boontling + lizherenneg Dajnko + saozneg rakvodern lizherenneg fonetek etrebroadel lizherenneg fonetek ouralek treuzskrivadur X-SAMPA @@ -862,20 +892,26 @@ For terms of use, see http://www.unicode.org/copyright.html rannyezh romañchek Jauer romanekadur kantonek Jyutping kerneveureg kumun + Kociewie + kerneveureg standart sanskriteg klasel rannyezh resianek Lipovaz reizhskrivadur rusianek goude 1917 + lizherenneg Metelko gresianeg untonel rannyezh Ndyuka rannyezh Natisone rannyezh Gniva/Njiva + volapük modern rannyezh Oseacco/Osojane rannyezh Pamaka reizhskrivadur rusianek 1708 Pêr I romanekadur pinyin gresianeg liestonel + POSIX rannyezh romañchek Puter reizhskrivadur reizhet + volapük klasel resianeg romañcheg Grischun saho @@ -889,6 +925,7 @@ For terms of use, see http://www.unicode.org/copyright.html kerneveureg unvan kerneveureg unvan reizhet rannyezh skotek Ulad + lizherenneg fonetek Unifon sanskriteg vedek valensianeg rannyezh romañchek Vallader @@ -898,104 +935,134 @@ For terms of use, see http://www.unicode.org/copyright.html deiziadur doare rummañ moneiz + kelcʼhiad eurioù + reizhiad vuzuliañ niveroù - sifroù arabek indian - sifroù arabek indian astennet - niveroù armenianek - niveroù armenianek bihan - sifroù balinek - sifroù bengali - urzh rummañ sinaek hengounel - Big5 - sifroù brahmi - deiziadur boudaat - deiziadur sinaat - deiziadur kopt - deiziadur dangi - sifroù devanagari - urzh rummañ ar geriadur - urzh rummañ Unicode dre ziouer - reolennoù urzhiañ europat - niveroù etiopiat - deiziadur etiopiat - deiziadur etiopiat Amete Alem - sifroù led plaen - urzh rummañ sinaek eeunaet - GB2312 - niveroù jorjianek - deiziadur gregorian - niveroù gresianek - niveroù gresianek bihan - sifroù gujarati - sifroù gurmukhi - niveroù sinaek dekvedennek - niveroù sinaek eeunaet - niveroù sinaek eeunaet an arcʼhant - niveroù sinaek hengounel - niveroù sinaek hengounel an arcʼhant - niveroù hebraek - deiziadur hebraek - deiziadur indian - deiziadur islamek - deiziadur islamek keodedel - deiziadur islamek (Arabia Saoudat) - deiziadur islamek steredoniel - deiziadur islamek (Umm al-Qura) - deiziadur ISO-8601 - deiziadur japanat - sifroù javanek - niveroù japanek - niveroù japanek an arcʼhant - sifroù Kayah Li - sifroù khmer - sifroù kanarek - sifroù Tai Tham Hora - sifroù Tai Tham Tham - sifroù laosek - sifroù arabek ar Cʼhornôg - sifroù malayalam - sifroù mongolek - sifroù myanmar - sifroù shan Myanmar - sifroù oriya - deiziadur persek - urzh rummañ al levr-pellgomz - urzh rummañ pinyin - urzh rummañ adreizhet - deiziadur Republik Sina - niveroù roman - niveroù roman bihan - enklask hollek - urzh rummañ standart - urzh rummañ an tresoù - sifroù sundanek - niveroù tamilek hengounel - sifroù tamilek - sifroù telougou - sifroù thai - sifroù tibetan - urzh rummañ hengounel - urzh rummañ UniHan - sifroù vai - urzh rummañ Zhuyin + deiziadur boudaat + deiziadur sinaat + deiziadur kopt + deiziadur dangi + deiziadur etiopiat + deiziadur etiopiat Amete Alem + deiziadur gregorian + deiziadur hebraek + deiziadur indian + deiziadur islamek + deiziadur islamek keodedel + deiziadur islamek (Arabia Saoudat) + deiziadur islamek steredoniel + deiziadur islamek (Umm al-Qura) + deiziadur ISO-8601 + deiziadur japanat + deiziadur persek + deiziadur Republik Sina + urzh rummañ sinaek hengounel - Big5 + urzh rummañ ar geriadur + urzh rummañ Unicode dre ziouer + reolennoù urzhiañ europat + urzh rummañ sinaek eeunaet - GB2312 + urzh rummañ al levr-pellgomz + urzh rummañ pinyin + urzh rummañ adreizhet + enklask hollek + urzh rummañ standart + urzh rummañ an tresoù + urzh rummañ hengounel + urzh rummañ UniHan + urzh rummañ Zhuyin + reizhiad 12 eurvezh (0–11) + reizhiad 12 eurvezh (1–12) + reizhiad 24 eurvezh (0–23) + reizhiad 24 eurvezh (1–24) + reizhiad vetrek + reizhiad vuzuliañ RU + reizhiad vuzuliañ SU + sifroù arabek indian + sifroù arabek indian astennet + niveroù armenianek + niveroù armenianek bihan + sifroù balinek + sifroù bengali + sifroù brahmi + sifroù chakma + sifroù cham + sifroù devanagari + niveroù etiopiat + sifroù led plaen + niveroù jorjianek + niveroù gresianek + niveroù gresianek bihan + sifroù gujarati + sifroù gurmukhi + niveroù sinaek dekvedennek + niveroù sinaek eeunaet + niveroù sinaek eeunaet an arcʼhant + niveroù sinaek hengounel + niveroù sinaek hengounel an arcʼhant + niveroù hebraek + sifroù javanek + niveroù japanek + niveroù japanek an arcʼhant + sifroù Kayah Li + sifroù khmer + sifroù kanarek + sifroù Tai Tham Hora + sifroù Tai Tham Tham + sifroù laosek + sifroù arabek ar Cʼhornôg + sifroù lepcha + sifroù limbu + sifroù malayalam + sifroù mongolek + sifroù meitei mayek + sifroù myanmar + sifroù shan Myanmar + sifroù nʼko + sifroù ol chiki + sifroù oriya + sifroù osmanya + niveroù roman + niveroù roman bihan + sifroù Sora Sompeng + sifroù sundanek + sifroù takri + niveroù tamilek hengounel + sifroù tamilek + sifroù telougou + sifroù thai + sifroù tibetan + sifroù vai metrek RU SU + + {0} + {0} + {0} + [a b {ch} {cʼh} d e ê f g h i j k l m n ñ o p r s t u ù v w x y z] [á à ă â å ä ã ā æ c ç é è ĕ ë ē í ì ĭ î ï ī ó ò ŏ ô ö ø ō œ q ú ŭ û ü ū ÿ] [A B C D E F G H I J K L M N O P R S T U V W X Y Z] + {0}… + …{0} + {0}…{1} + {0} … + … {0} + {0} … {1} ? « » - - + + @@ -1003,18 +1070,18 @@ For terms of use, see http://www.unicode.org/copyright.html - Gen - Cʼhwe - Meur - Ebr + Gen. + Cʼhwe. + Meur. + Ebr. Mae - Mezh - Goue + Mezh. + Goue. Eost - Gwen + Gwen. Here Du - Ker + Kzu. 01 @@ -1047,18 +1114,18 @@ For terms of use, see http://www.unicode.org/copyright.html - Gen - Cʼhwe - Meur - Ebr + Gen. + Cʼhwe. + Meur. + Ebr. Mae - Mezh - Goue + Mezh. + Goue. Eost - Gwen + Gwen. Here Du - Ker + Ker. 01 @@ -1182,31 +1249,90 @@ For terms of use, see http://www.unicode.org/copyright.html + + A.M. + G.M. + am - k gm A.M. - kreisteiz G.M. + + + a-raok merenn + goude merenn + + + + + a-raok Jezuz-Krist + goude Jezuz-Krist + + + a-raok J.K. + goude J.K. + + + a-raok J.K. + goude J.K. + + + + + {1} 'da' {0} + + + + + {1} 'da' {0} + + + + + {1} {0} + + + + + {1} {0} + + + d + ccc E d + E h:mm a + E HH:mm + E h:mm:ss a + E HH:mm:ss y G MMM y G d MMM y G E d MMM y G + h a HH + h:mm a + HH:mm + h:mm:ss a + HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v MM dd/MM E dd/MM + LLL d MMM E d MMM + mm:ss y MM/y dd/MM/y @@ -1217,10 +1343,46 @@ For terms of use, see http://www.unicode.org/copyright.html QQQ y QQQQ y + + {0} {1} + + {0} – {1} d–d + + h a – h a + h–h a + + + HH–HH + + + h:mm a – h:mm a + h:mm–h:mm a + h:mm–h:mm a + + + HH:mm–HH:mm + HH:mm–HH:mm + + + h:mm a – h:mm a v + h:mm–h:mm a v + h:mm–h:mm a v + + + HH:mm–HH:mm v + HH:mm–HH:mm v + + + h a – h a v + h–h a v + + + HH–HH v + MM–MM @@ -1232,6 +1394,9 @@ For terms of use, see http://www.unicode.org/copyright.html E dd/MM – E dd/MM E dd/MM – E dd/MM + + LLL–LLL + d–d MMM d MMM – d MMM @@ -1278,6 +1443,39 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + a-raok Republik Sina + Republik Sina + + + a-raok R.S. + R.S. + + + a-raok R.S. + R.S. + + + + + + G y MMMM d, EEEE + + + + + GGGGG y-MM-dd + + + + + + {0} – {1} + + + @@ -1286,12 +1484,193 @@ For terms of use, see http://www.unicode.org/copyright.html bloaz warlene + hevlene + ar bloaz a zeu + + a-benn {0} bloaz + a-benn {0} vloaz + a-benn {0} bloaz + a-benn {0} a vloazioù + a-benn {0} vloaz + + + {0} bloaz zo + {0} vloaz zo + {0} bloaz zo + {0} a vloazioù zo + {0} vloaz zo + + + + bl. + warlene + hevlene + ar bl. a zeu + + a-benn {0} bl. + a-benn {0} bl. + a-benn {0} bl. + a-benn {0} bl. + a-benn {0} bl. + + + {0} bl. zo + {0} bl. zo + {0} bl. zo + {0} bl. zo + {0} bl. zo + + + + bl. + warlene + hevlene + ar bl. a zeu + + +{0} bl. + +{0} bl. + +{0} bl. + +{0} bl. + +{0} bl. + + + -{0} bl. + -{0} bl. + -{0} bl. + -{0} bl. + -{0} bl. + + + + trimiziad + + a-benn {0} trimiziad + a-benn {0} drimiziad + a-benn {0} zrimiziad + a-benn {0} a drimiziadoù + a-benn {0} trimiziad + + + {0} trimiziad zo + {0} drimiziad zo + {0} zrimiziad zo + {0} a zrimiziadoù zo + {0} trimiziad zo + + + + trim. + + a-benn {0} trim. + a-benn {0} trim. + a-benn {0} trim. + a-benn {0} trim. + a-benn {0} trim. + + + {0} trim. zo + {0} trim. zo + {0} trim. zo + {0} trim. zo + {0} trim. zo + + + + trim. + + +{0} trim. + +{0} trim. + +{0} trim. + +{0} trim. + +{0} trim. + + + -{0} trim. + -{0} trim. + -{0} trim. + -{0} trim. + -{0} trim. + miz + ar miz diaraok + ar miz-mañ + ar miz a zeu + + a-benn {0} miz + a-benn {0} viz + a-benn {0} miz + a-benn {0} a vizioù + a-benn {0} miz + + + {0} miz zo + {0} viz zo + {0} miz zo + {0} a vizioù zo + {0} miz zo + + + + miz + ar miz diaraok + ar miz-mañ + ar miz a zeu + + a-benn {0} miz + a-benn {0} viz + a-benn {0} miz + a-benn {0} a vizioù + a-benn {0} miz + + + {0} miz zo + {0} viz zo + {0} miz zo + {0} a vizioù zo + {0} miz zo + + + + miz + ar miz diaraok + ar miz-mañ + ar miz a zeu + + +{0} miz + +{0} miz + +{0} miz + +{0} miz + +{0} miz + + + -{0} miz + -{0} miz + -{0} miz + -{0} miz + -{0} miz + sizhun + ar sizhun diaraok + ar sizhun-mañ + ar sizhun a zeu + + a-benn {0} sizhun + a-benn {0} sizhun + a-benn {0} sizhun + a-benn {0} a sizhunioù + a-benn {0} sizhun + + + {0} sizhun zo + {0} sizhun zo + {0} sizhun zo + {0} a sizhunioù zo + {0} sizhun zo + deiz @@ -1299,33 +1678,342 @@ For terms of use, see http://www.unicode.org/copyright.html decʼh hiziv warcʼhoazh + + a-benn {0} deiz + a-benn {0} zeiz + a-benn {0} deiz + a-benn {0} a zeizioù + a-benn {0} deiz + + + {0} deiz zo + {0} zeiz zo + {0} deiz zo + {0} a zeizioù zo + {0} deiz zo + d + dercʼhent-decʼh + decʼh + hiziv + warcʼhoazh + + a-benn {0} d + a-benn {0} d + a-benn {0} d + a-benn {0} d + a-benn {0} d + + + {0} d zo + {0} d zo + {0} d zo + {0} d zo + {0} d zo + + + + d + dercʼhent-decʼh + decʼh + hiziv + warcʼhoazh + + +{0} d + +{0} d + +{0} d + +{0} d + +{0} d + + + -{0} d + -{0} d + -{0} d + -{0} d + -{0} d + + + + deiz ar sizhun + + + Disul diwezhañ + ar Sul-mañ + Disul a zeu + + + Sul diwezhañ + Sul-mañ + Sul a zeu + + + Su diwezhañ + Su-mañ + Su a zeu + + + Dilun diwezhañ + al Lun-mañ + Dilun a zeu + + + Lun diwezhañ + Lun-mañ + Lun a zeu + + + L diwezhañ + L-mañ + L a zeu + + + Dimeurzh diwezhañ + ar Meurzh-mañ + Dimeurzh a zeu + + + Meu. diwezhañ + Meu.-mañ + Meu. a zeu + + + Mz diwezhañ + Mz-mañ + Mz a zeu + + + Dimercʼher diwezhañ + ar Mercʼher-mañ + Dimercʼher a zeu + + + Mer. diwezhañ + Mer.-mañ + Mer. a zeu + + + Mc diwezhañ + Mc-mañ + Mc a zeu + + + Diriaou diwezhañ + ar Yaou-mañ + Diriaou a zeu + + + Yaou diwezhañ + Yaou-mañ + Yaou a zeu + + + Y diwezhañ + Y-mañ + Yaou a zeu + + + Digwener diwezhañ + ar Gwener-mañ + Digwener a zeu + + + Gwe. diwezhañ + Gwe.-mañ + Gwe. a zeu + + + G diwezhañ + G-mañ + G a zeu + + + Disadorn diwezhañ + ar Sadorn-mañ + Disadorn a zeu + + + Sad. diwezhañ + Sad.-mañ + Sad. a zeu + + + Sa diwezhañ + Sa-mañ + Sa a zeu + + + AM/GM eur + + a-benn {0} eur + a-benn {0} eur + a-benn {0} eur + a-benn {0} a eurioù + a-benn {0} eur + + + {0} eur zo + {0} eur zo + {0} eur zo + {0} a eurioù zo + {0} eur zo + - h + e + + a-benn {0} e + a-benn {0} e + a-benn {0} e + a-benn {0} e + a-benn {0} e + + + {0} e zo + {0} e zo + {0} e zo + {0} e zo + {0} e zo + e + + +{0} h + +{0} h + +{0} h + +{0} h + +{0} h + + + -{0} h + -{0} h + -{0} h + -{0} h + -{0} h + munut + + a-benn {0} munut + a-benn {0} vunut + a-benn {0} munut + a-benn {0} a vunutoù + a-benn {0} munut + + + {0} munut zo + {0} vunut zo + {0} munut zo + {0} a vunutoù zo + {0} munut zo + min + + a-benn {0} min + a-benn {0} min + a-benn {0} min + a-benn {0} min + a-benn {0} min + + + {0} min zo + {0} min zo + {0} min zo + {0} min zo + {0} min zo + + + + min + + +{0} min + +{0} min + +{0} min + +{0} min + +{0} min + + + -{0} min + -{0} min + -{0} min + -{0} min + -{0} min + eilenn + bremañ + + a-benn {0} eilenn + a-benn {0} eilenn + a-benn {0} eilenn + a-benn {0} a eilennoù + a-benn {0} eilenn + + + {0} eilenn zo + {0} eilenn zo + {0} eilenn zo + {0} eilenn zo + {0} eilenn zo + s + brem. + + a-benn {0} s + a-benn {0} s + a-benn {0} s + a-benn {0} s + a-benn {0} s + + + {0} s zo + {0} s zo + {0} s zo + {0} s zo + {0} s zo + + + + s + brem. + + +{0} s + +{0} s + +{0} s + +{0} s + +{0} s + + + -{0} s + -{0} s + -{0} s + -{0} s + -{0} s + + + + takad eur + +HH:mm;-HH:mm + GMT{0} + UTC + eur {0} + eur hañv {0} + eur cʼhoañv {0} + {1} ({0}) kêr dianav @@ -1335,6 +2023,12 @@ For terms of use, see http://www.unicode.org/copyright.html Kaboul + + Antigua + + + Anguilla + Tiranë @@ -1344,9 +2038,39 @@ For terms of use, see http://www.unicode.org/copyright.html Luanda + + Buenos Aires + + + Pago Pago + Vienna + + Perth + + + Darwin + + + Adelaide + + + Melbourne + + + Sydney + + + Brisbane + + + Macquarie + + + Aruba + Marjehamn @@ -1356,6 +2080,9 @@ For terms of use, see http://www.unicode.org/copyright.html Sarajevo + + Barbados + Brusel @@ -1371,21 +2098,60 @@ For terms of use, see http://www.unicode.org/copyright.html Bujumbura + + Porto-Novo + + + Saint Barthélemy + + + Bermudez + Brunei + + La Paz + + + Manaus + Belém São Paulo + + Recife + + + Nassau + + + Thimphu + Gaborone Mensk + + Belize + + + Inuvik + + + Vancouver + + + Edmonton + + + Winnipeg + Saint Johnʼs @@ -1395,6 +2161,9 @@ For terms of use, see http://www.unicode.org/copyright.html Kinshasa + + Lubumbashi + Bangui @@ -1404,18 +2173,36 @@ For terms of use, see http://www.unicode.org/copyright.html Abidjan + + Rarotonga + + + Enez Pask + + + Santiago + Ürümqi + + Shanghai + Bogotá + + Costa Rica + La Habana Kab Glas + + Christmas + Levkosía @@ -1431,6 +2218,9 @@ For terms of use, see http://www.unicode.org/copyright.html Kopenhagen + + Dominica + Aljer @@ -1474,11 +2264,20 @@ For terms of use, see http://www.unicode.org/copyright.html Libreville + + eur hañv Breizh-Veur + Londrez + + Grenada + Tbilisi + + Cayenne + Gwernenez @@ -1491,6 +2290,9 @@ For terms of use, see http://www.unicode.org/copyright.html Qânâq + + Nuuk (Godthåb) + Banjul @@ -1506,12 +2308,33 @@ For terms of use, see http://www.unicode.org/copyright.html Aten + + Georgia ar Su + + + Guatemala + + + Guam + Bissau + + Guyana + + + Hong Kong + + + Tegucigalpa + Zagreb + + Port-au-Prince + Budapest @@ -1522,6 +2345,9 @@ For terms of use, see http://www.unicode.org/copyright.html Jayapura + + eur cʼhoañv Iwerzhon + Dulenn @@ -1530,9 +2356,18 @@ For terms of use, see http://www.unicode.org/copyright.html Manav + + Calcutta + + + Chagos + Baghdad + + Tehran + Reykjavík @@ -1548,9 +2383,15 @@ For terms of use, see http://www.unicode.org/copyright.html Amman + + Tokyo + Nairobi + + Bishkek + Phnum Pénh @@ -1563,9 +2404,18 @@ For terms of use, see http://www.unicode.org/copyright.html Pʼyongyang + + Seoul + Koweit + + Cayman + + + Almaty + Viangchan @@ -1578,6 +2428,9 @@ For terms of use, see http://www.unicode.org/copyright.html Vaduz + + Kolamba + Monrovia @@ -1620,12 +2473,21 @@ For terms of use, see http://www.unicode.org/copyright.html Yangon + + Ulaanbaatar + + + Macau + Martinik Nouakchott + + Montserrat + Malta @@ -1635,6 +2497,12 @@ For terms of use, see http://www.unicode.org/copyright.html Maldivez + + Monterrey + + + Kêr Vecʼhiko + Kuala Lumpur @@ -1650,6 +2518,12 @@ For terms of use, see http://www.unicode.org/copyright.html Niamey + + Norfolk + + + Lagos + Managua @@ -1659,6 +2533,15 @@ For terms of use, see http://www.unicode.org/copyright.html Oslo + + Kathmandu + + + Nauru + + + Niue + Chatham @@ -1671,18 +2554,42 @@ For terms of use, see http://www.unicode.org/copyright.html Panamá + + Lima + + + Tahiti + + + Markiz + + + Gambier + Port Moresby + + Bougainville + Manila + + Karachi + Varsovia Mikelon + + Pitcairn + + + Puerto Rico + Gaza @@ -1695,6 +2602,9 @@ For terms of use, see http://www.unicode.org/copyright.html Lisboa + + Palau + Asunción @@ -1710,12 +2620,33 @@ For terms of use, see http://www.unicode.org/copyright.html Beograd + + Kaliningrad + Moskov + + Volgograd + Yekaterinbourg + + Novosibirsk + + + Irkutsk + + + Yakutsk + + + Vladivostok + + + Sakhalin + Anadyrʼ @@ -1740,6 +2671,9 @@ For terms of use, see http://www.unicode.org/copyright.html Ljubljana + + Longyearbyen + Bratislava @@ -1755,6 +2689,9 @@ For terms of use, see http://www.unicode.org/copyright.html Muqdisho + + Paramaribo + Juba @@ -1782,6 +2719,12 @@ For terms of use, see http://www.unicode.org/copyright.html Bangkok + + Dushanbe + + + Ashgabat + Tuniz @@ -1791,6 +2734,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port of Spain + + Taipei + Dar es Salaam @@ -1800,35 +2746,380 @@ For terms of use, see http://www.unicode.org/copyright.html Kampala + + Midway + + + Adak + + + Honolulu + + + Anchorage + + + Los Angeles + + + Denver + + + Chicago + + + New York + + + Montevideo + + + Toshkent + Vatikan Sant Visant + + Caracas + Kêr Hô-Chi-Minh + + Wallis + + + Apia + Aden Mayotte + + Johannesburg + Lusaka Harare + + + eur Afghanistan + + + + + eur Kreizafrika + + + + + eur Afrika ar Reter + + + + + eur cʼhoañv Suafrika + + + + + eur Afrika ar Cʼhornôg + eur cʼhoañv Afrika ar Cʼhornôg + eur hañv Afrika ar Cʼhornôg + + + + + eur Alaska + eur cʼhoañv Alaska + eur hañv Alaska + + + + + eur Almaty + eur cʼhoañv Almaty + eur hañv Almaty + + + + + eur an Amazon + eur cʼhoañv an Amazon + eur hañv an Amazon + + + + + eur ar Reter + eur cʼhoañv ar Reter + eur hañv ar Reter + + + + + eur ar Menezioù + eur cʼhoañv ar Menezioù + eur hañv ar Menezioù + + + + + eur Anadyrʼ + eur cʼhoañv Anadyrʼ + eur hañv Anadyrʼ + + + + + eur Apia + eur cʼhoañv Apia + eur hañv Apia + + + + + eur Arabia + eur cʼhoañv Arabia + eur hañv Arabia + + + + + eur Arcʼhantina + eur cʼhoañv Arcʼhantina + eur hañv Arcʼhantina + + + + + eur Arcʼhantina ar Cʼhornôg + eur cʼhoañv Arcʼhantina ar Cʼhornôg + eur hañv Arcʼhantina ar Cʼhornôg + + + + + eur Armenia + eur cʼhoañv Armenia + eur hañv Armenia + + + + + eur Kreizaostralia + eur cʼhoañv Kreizaostralia + eur hañv Kreizaostralia + + + + + eur Kreizaostralia ar Cʼhornôg + eur cʼhoañv Kreizaostralia ar Cʼhornôg + eur hañv Kreizaostralia ar Cʼhornôg + + + + + eur Aostralia ar Reter + eur cʼhoañv Aostralia ar Reter + eur hañv Aostralia ar Reter + + + + + eur Aostralia ar Cʼhornôg + eur cʼhoañv Aostralia ar Cʼhornôg + eur hañv Aostralia ar Cʼhornôg + + + + + eur Azerbaidjan + eur cʼhoañv Azerbaidjan + eur hañv Azerbaidjan + + + + + eur an Azorez + eur cʼhoañv an Azorez + eur hañv an Azorez + + + + + eur Bangladesh + eur cʼhoañv Bangladesh + eur hañv Bangladesh + + + + + eur Bhoutan + + + + + eur Bolivia + + + + + eur Brasília + eur cʼhoañv Brasília + eur hañv Brasília + + - Eur Brunei Darussalam + eur Brunei Darussalam + + + + + eur ar Cʼhab-Glas + eur cʼhoañv ar Cʼhab-Glas + eur hañv ar Cʼhab-Glas + + + + + eur Chatham + eur cʼhoañv Chatham + eur hañv Chatham + + + + + eur Chile + eur cʼhoañv Chile + eur hañv Chile + + + + + eur Sina + eur cʼhoañv Sina + eur hañv Sina + + + + + eur Enez Christmas + + + + + eur Inizi Kokoz + + + + + eur Kolombia + eur cʼhoañv Kolombia + eur hañv Kolombia + + + + + eur Inizi Cook + eur cʼhoañv Inizi Cook + eur hañv Inizi Cook + + + + + eur Kuba + eur cʼhoañv Kuba + eur hañv Kuba - Eur Timor ar Reter + eur Timor ar Reter + + + + + eur Enez Pask + eur cʼhoañv Enez Pask + eur hañv Enez Pask + + + + + eur Ecuador + + + + + eur Kreizeuropa + eur cʼhoañv Kreizeuropa + eur hañv Kreizeuropa + + + + + eur Europa ar Reter + eur cʼhoañv Europa ar Reter + eur hañv Europa ar Reter + + + + + eur Europa ar Cʼhornôg + eur cʼhoañv Europa ar Cʼhornôg + eur hañv Europa ar Cʼhornôg + + + + + eur Inizi Falkland + eur cʼhoañv Inizi Falkland + eur hañv Inizi Falkland + + + + + eur Fidji + eur cʼhoañv Fidji + eur hañv Fidji + + + + + eur Gwiana cʼhall + + + + + eur Douaroù aostral Frañs hag Antarktika + + + + + eur Inizi Galápagos + + + + + eur Gambier + + + + + eur Jorjia + eur cʼhoañv Jorjia + eur hañv Jorjia @@ -1836,19 +3127,417 @@ For terms of use, see http://www.unicode.org/copyright.html Amzer keitat Greenwich (AKG) + + + eur Greunland ar Reter + eur cʼhoañv Greunland ar Reter + eur hañv Greunland ar Reter + + + + + eur Greunland ar Cʼhornôg + eur cʼhoañv Greunland ar Cʼhornôg + eur hañv Greunland ar Cʼhornôg + + + + + eur cʼhoañv Guam + + + + + eur cʼhoañv ar Pleg-mor Arab-ha-Pers + + + + + eur Guyana + + + + + eur Hong Kong + eur cʼhoañv Hong Kong + eur hañv Hong Kong + + + + + eur cʼhoañv India + + - Eur Indez-Sina + eur Indez-Sina + + + + + eur Indonezia ar Reter + + + + + eur Indonezia ar Cʼhornôg + + + + + eur Iran + eur cʼhoañv Iran + eur hañv Iran + + + + + eur Irkutsk + eur cʼhoañv Irkutsk + eur hañv Irkutsk + + + + + eur Israel + eur cʼhoañv Israel + eur hañv Israel + + + + + eur Japan + eur cʼhoañv Japan + eur hañv Japan + + + + + eur Kazakstan ar Reter + + + + + eur Kazakstan ar Cʼhornôg + + + + + eur Korea + eur cʼhoañv Korea + eur hañv Korea + + + + + eur Kyrgyzstan + + + + + eur Sri Lanka + + + + + eur Macau + eur cʼhoañv Macau + eur hañv Macau + + + + + eur Enez Macquarie - Eur Malaysia + eur Malaysia + + + + + eur ar Maldivez + + + + + eur Inizi Markiz + + + + + eur Inizi Marshall + + + + + eur Moris + eur cʼhoañv Moris + eur hañv Moris + + + + + eur Gwalarn Mecʼhiko + eur cʼhoañv Gwalarn Mecʼhiko + eur hañv Gwalarn Mecʼhiko + + + + + eur Ulaanbaatar + eur cʼhoañv Ulaanbaatar + eur hañv Ulaanbaatar + + + + + eur Moskov + eur cʼhoañv Moskov + eur hañv Moskov - Eur Myanmar + eur Myanmar + + + + + eur Nauru + + + + + eur Nepal + + + + + eur Kaledonia Nevez + eur cʼhoañv Kaledonia Nevez + eur hañv Kaledonia Nevez + + + + + eur Zeland-Nevez + eur cʼhoañv Zeland-Nevez + eur hañv Zeland-Nevez + + + + + eur Newfoundland + eur cʼhoañv Newfoundland + eur hañv Newfoundland + + + + + eur Niue + + + + + eur Enez Norfolk + + + + + eur Novosibirsk + eur cʼhoañv Novosibirsk + eur hañv Novosibirsk + + + + + eur Pakistan + eur cʼhoañv Pakistan + eur hañv Pakistan + + + + + eur Palau + + + + + eur Paraguay + eur cʼhoañv Paraguay + eur hañv Paraguay + + + + + eur Perou + eur cʼhoañv Perou + eur hañv Perou + + + + + eur ar Filipinez + eur cʼhoañv ar Filipinez + eur hañv ar Filipinez + + + + + eur Sant-Pêr-ha-Mikelon + eur cʼhoañv Sant-Pêr-ha-Mikelon + eur hañv Sant-Pêr-ha-Mikelon + + + + + eur Pitcairn + + + + + eur ar Reünion + + + + + eur Sakhalin + eur cʼhoañv Sakhalin + eur hañv Sakhalin + + + + + eur Samoa + eur cʼhoañv Samoa + eur hañv Samoa + + + + + eur Sechelez + + + + + eur cʼhoañv Singapour + + + + + eur Inizi Salomon + + + + + eur Georgia ar Su + + + + + eur Surinam + + + + + eur Tahiti + + + + + eur Taipei + eur cʼhoañv Taipei + eur hañv Taipei + + + + + eur Tadjikistan + + + + + eur Tokelau + + + + + eur Tonga + eur cʼhoañv Tonga + eur hañv Tonga + + + + + eur Turkmenistan + eur cʼhoañv Turkmenistan + eur hañv Turkmenistan + + + + + eur Tuvalu + + + + + eur Uruguay + eur cʼhoañv Uruguay + eur hañv Uruguay + + + + + eur Ouzbekistan + eur cʼhoañv Ouzbekistan + eur hañv Ouzbekistan + + + + + eur Vanuatu + eur cʼhoañv Vanuatu + eur hañv Vanuatu + + + + + eur Venezuela + + + + + eur Vladivostok + eur cʼhoañv Vladivostok + eur hañv Vladivostok + + + + + eur Volgograd + eur cʼhoañv Volgograd + eur hañv Volgograd + + + + + eur Wallis ha Futuna + + + + + eur Yakutsk + eur cʼhoañv Yakutsk + eur hañv Yakutsk + + + + + eur Yekaterinbourg + eur cʼhoañv Yekaterinbourg + eur hañv Yekaterinbourg @@ -1858,9 +3547,13 @@ For terms of use, see http://www.unicode.org/copyright.html latn + + : + ,   + ; % + - @@ -1892,6 +3585,70 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0K ¤ + 0K ¤ + 0K ¤ + 0K ¤ + 0K ¤ + 00K ¤ + 00K ¤ + 00K ¤ + 00K ¤ + 00K ¤ + 000K ¤ + 000K ¤ + 000K ¤ + 000K ¤ + 000K ¤ + 0M ¤ + 0M ¤ + 0M ¤ + 0M ¤ + 0M ¤ + 00M ¤ + 00M ¤ + 00M ¤ + 00M ¤ + 00M ¤ + 000M ¤ + 000M ¤ + 000M ¤ + 000M ¤ + 000M ¤ + 0G ¤ + 0G ¤ + 0G ¤ + 0G ¤ + 0G ¤ + 00G ¤ + 00G ¤ + 00G ¤ + 00G ¤ + 00G ¤ + 000G ¤ + 000G ¤ + 000G ¤ + 000G ¤ + 000G ¤ + 0T ¤ + 0T ¤ + 0T ¤ + 0T ¤ + 0T ¤ + 00T ¤ + 00T ¤ + 00T ¤ + 00T ¤ + 00T ¤ + 000T ¤ + 000T ¤ + 000T ¤ + 000T ¤ + 000T ¤ + + {0} {1} {0} {1} {0} {1} @@ -1906,6 +3663,7 @@ For terms of use, see http://www.unicode.org/copyright.html feseta Andorra a besetaoù Andorra peseta Andorra + ADP dirham EAU @@ -1914,6 +3672,7 @@ For terms of use, see http://www.unicode.org/copyright.html dirham EAU a zirhamoù EAU dirham EAU + AED afghani Afghanistan (1927–2002) @@ -1922,6 +3681,7 @@ For terms of use, see http://www.unicode.org/copyright.html afghani Afghanistan (1927–2002) a afghanioù Afghanistan (1927–2002) afghani Afghanistan (1927–2002) + AFA afghani Afghanistan @@ -1930,6 +3690,7 @@ For terms of use, see http://www.unicode.org/copyright.html afghani Afghanistan a afghanioù Afghanistan afghani Afghanistan + AFN lek Albania (1946–1965) @@ -1938,6 +3699,7 @@ For terms of use, see http://www.unicode.org/copyright.html lek Albania (1946–1965) a lekoù Albania (1946–1965) lek Albania (1946–1965) + ALK lek Albania @@ -1946,6 +3708,7 @@ For terms of use, see http://www.unicode.org/copyright.html lek Albania a lekoù Albania lek Albania + ALL dram Armenia @@ -1954,6 +3717,7 @@ For terms of use, see http://www.unicode.org/copyright.html dram Armenia a zramoù Armenia dram Armenia + AMD florin Antilhez nederlandat @@ -1962,6 +3726,7 @@ For terms of use, see http://www.unicode.org/copyright.html florin Antilhez nederlandat a florinoù Antilhez florin Antilhez nederlandat + ANG kwanza Angola @@ -1970,6 +3735,8 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhwanza Angola a gwanzaoù Angola kwanza Angola + AOA + Kz kwanza Angola (1977–1991) @@ -1978,6 +3745,7 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhwanza Angola (1977–1991) a gwanzaoù Angola (1977–1991) kwanza Angola (1977–1991) + AOK kwanza nevez Angola (1990–2000) @@ -1986,6 +3754,16 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhwanza nevez Angola (1990–2000) a gwanzaoù nevez Angola (1990–2000) kwanza nevez Angola (1990–2000) + AON + + + AOR + + + ARA + + + ARL peso Arcʼhantina (1881–1970) @@ -1994,6 +3772,7 @@ For terms of use, see http://www.unicode.org/copyright.html feso Arcʼhantina (1881–1970) a besoioù Arcʼhantina (1881–1970) peso Arcʼhantina (1881–1970) + ARM peso Arcʼhantina (1983–1985) @@ -2002,6 +3781,7 @@ For terms of use, see http://www.unicode.org/copyright.html feso Arcʼhantina (1983–1985) a besoioù Arcʼhantina (1983–1985) peso Arcʼhantina (1983–1985) + ARP peso Arcʼhantina @@ -2010,6 +3790,7 @@ For terms of use, see http://www.unicode.org/copyright.html feso Arcʼhantina a pesoioù Arcʼhantina peso Arcʼhantina + ARS schilling Aostria @@ -2018,6 +3799,7 @@ For terms of use, see http://www.unicode.org/copyright.html schilling Aostria a schillingoù Aostria schilling Aostria + ATS dollar Aostralia @@ -2036,6 +3818,7 @@ For terms of use, see http://www.unicode.org/copyright.html florin Aruba a florinoù Aruba florin Aruba + AWG manat Azerbaidjan (1993–2006) @@ -2044,6 +3827,7 @@ For terms of use, see http://www.unicode.org/copyright.html manat Azerbaidjan (1993–2006) a vanatoù Azerbaidjan (1993–2006) manat Azerbaidjan (1993–2006) + AZM manat Azerbaidjan @@ -2052,6 +3836,7 @@ For terms of use, see http://www.unicode.org/copyright.html manat Azerbaidjan a vanatoù Azerbaidjan manat Azerbaidjan + AZN dinar Bosnia ha Herzegovina (1992–1994) @@ -2060,6 +3845,7 @@ For terms of use, see http://www.unicode.org/copyright.html dinar Bosnia ha Herzegovina (1992–1994) a zinaroù Bosnia ha Herzegovina (1992–1994) dinar Bosnia ha Herzegovina (1992–1994) + BAD mark kemmadus Bosnia ha Herzegovina @@ -2068,6 +3854,8 @@ For terms of use, see http://www.unicode.org/copyright.html mark kemmadus Bosnia ha Herzegovina a varkoù kemmadus Bosnia ha Herzegovina mark kemmadus Bosnia ha Herzegovina + BAM + KM dinar nevez Bosnia ha Herzegovina (1994–1997) @@ -2076,6 +3864,7 @@ For terms of use, see http://www.unicode.org/copyright.html dinar nevez Bosnia ha Herzegovina (1994–1997) a zinaroù nevez Bosnia ha Herzegovina (1994–1997) dinar nevez Bosnia ha Herzegovina (1994–1997) + BAN dollar Barbados @@ -2084,6 +3873,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Barbados a zollaroù Barbados dollar Barbados + BBD $ @@ -2093,6 +3883,7 @@ For terms of use, see http://www.unicode.org/copyright.html zaka Bangladesh a dakaoù Bangladesh taka Bangladesh + BDT @@ -2102,6 +3893,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Belgia (kemmadus) a lurioù Belgia (kemmadus) lur Belgia (kemmadus) + BEC lur Belgia @@ -2110,6 +3902,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Belgia a lurioù Belgia lur Belgia + BEF BEL @@ -2118,6 +3911,10 @@ For terms of use, see http://www.unicode.org/copyright.html BEL BEL BEL + BEL + + + BGL lev sokialour Bulgaria @@ -2126,6 +3923,7 @@ For terms of use, see http://www.unicode.org/copyright.html lev sokialour Bulgaria a levoù sokialour Bulgaria lev sokialour Bulgaria + BGM lev Bulgaria @@ -2134,6 +3932,7 @@ For terms of use, see http://www.unicode.org/copyright.html lev Bulgaria a levoù Bulgaria lev Bulgaria + BGN lev Bulgaria (1879–1952) @@ -2142,6 +3941,7 @@ For terms of use, see http://www.unicode.org/copyright.html lev Bulgaria (1879–1952) a levoù Bulgaria (1879–1952) lev Bulgaria (1879–1952) + BGO dinar Bahrein @@ -2150,6 +3950,7 @@ For terms of use, see http://www.unicode.org/copyright.html dinar Bahrein a zinaroù Bahrein dinar Bahrein + BHD lur Burundi @@ -2158,6 +3959,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Burundi a lurioù Burundi lur Burundi + BIF dollar Bermuda @@ -2166,6 +3968,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Bermuda a zollaroù Bermuda dollar Bermuda + BMD $ @@ -2175,6 +3978,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Brunei a zollaroù Brunei dollar Brunei + BND $ @@ -2184,6 +3988,8 @@ For terms of use, see http://www.unicode.org/copyright.html boliviano Bolivia a volivianoioù Bolivia boliviano Bolivia + BOB + Bs boliviano Bolivia (1863–1963) @@ -2192,6 +3998,7 @@ For terms of use, see http://www.unicode.org/copyright.html boliviano Bolivia (1863–1963) a volivianoioù Bolivia (1863–1963) boliviano Bolivia (1863–1963) + BOL peso Bolivia @@ -2200,6 +4007,19 @@ For terms of use, see http://www.unicode.org/copyright.html feso Bolivia a besoioù Bolivia peso Bolivia + BOP + + + BOV + + + BRB + + + BRC + + + BRE real Brazil @@ -2208,6 +4028,16 @@ For terms of use, see http://www.unicode.org/copyright.html real Brazil a realioù Brazil real Brazil + BRL + + + BRN + + + BRR + + + BRZ dollar Bahamas @@ -2216,6 +4046,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Bahamas a zollaroù Bahamas dollar Bahamas + BSD $ @@ -2225,6 +4056,7 @@ For terms of use, see http://www.unicode.org/copyright.html ngultrum Bhoutan a ngultrumoù Bhoutan ngultrum Bhoutan + BTN kyat Birmania @@ -2233,6 +4065,7 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhyat Birmania a gyatoù Birmania kyat Birmania + BUK pula Botswana @@ -2241,6 +4074,8 @@ For terms of use, see http://www.unicode.org/copyright.html fula Botswana a bulaoù Botswana pula Botswana + BWP + P roubl nevez Belarus (1994–1999) @@ -2249,6 +4084,7 @@ For terms of use, see http://www.unicode.org/copyright.html roubl nevez Belarus (1994–1999) a roubloù nevez Belarus (1994–1999) roubl nevez Belarus (1994–1999) + BYB roubl Belarus @@ -2257,6 +4093,8 @@ For terms of use, see http://www.unicode.org/copyright.html roubl Belarus a roubloù Belarus roubl Belarus + BYR + р. dollar Belize @@ -2265,6 +4103,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Belize a zollaroù Belize dollar Belize + BZD $ @@ -2284,6 +4123,16 @@ For terms of use, see http://www.unicode.org/copyright.html lur Kongo a lurioù Kongo lur Kongo + CDF + + + euro WIR + euro WIR + euro WIR + euro WIR + a euroioù WIR + euro WIR + CHE lur Suis @@ -2292,6 +4141,16 @@ For terms of use, see http://www.unicode.org/copyright.html lur Suis a lurioù Suis lur Suis + CHF + + + lur WIR + lur WIR + lur WIR + lur WIR + a lurioù WIR + lur WIR + CHW escudo Chile @@ -2300,6 +4159,7 @@ For terms of use, see http://www.unicode.org/copyright.html escudo Chile a escudoioù Chile escudo Chile + CLE unanenn jediñ Chile @@ -2308,6 +4168,7 @@ For terms of use, see http://www.unicode.org/copyright.html unanenn jediñ Chile a unanennoù jediñ Chile unanenn jediñ Chile + CLF peso Chile @@ -2316,6 +4177,7 @@ For terms of use, see http://www.unicode.org/copyright.html feso Chile a besoioù Chile peso Chile + CLP dollar Bank poblel Sina @@ -2324,6 +4186,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Bank poblel Sina a zollaroù Bank poblel Sina dollar Bank poblel Sina + CNX yuan Sina @@ -2332,6 +4195,7 @@ For terms of use, see http://www.unicode.org/copyright.html yuan Sina a yuanoù Sina yuan Sina + CNY ¥ @@ -2341,6 +4205,10 @@ For terms of use, see http://www.unicode.org/copyright.html feso Kolombia a besoioù Kolombia peso Kolombia + COP + + + COU colón Costa Rica @@ -2349,6 +4217,7 @@ For terms of use, see http://www.unicode.org/copyright.html cʼholón Costa Rica a golónoù Costa Rica colón Costa Rica + CRC @@ -2358,6 +4227,10 @@ For terms of use, see http://www.unicode.org/copyright.html dinar Serbia (2002–2006) a zinaroù Serbia (2002–2006) dinar Serbia (2002–2006) + CSD + + + CSK peso kemmadus Kuba @@ -2366,6 +4239,7 @@ For terms of use, see http://www.unicode.org/copyright.html feso kemmadus Kuba a besoioù kemmadus Kuba peso kemmadus Kuba + CUC peso Kuba @@ -2374,6 +4248,7 @@ For terms of use, see http://www.unicode.org/copyright.html feso Kuba a besoioù Kuba peso Kuba + CUP escudo Kab Glas @@ -2382,6 +4257,7 @@ For terms of use, see http://www.unicode.org/copyright.html escudo Kab Glas a escudoioù Kab Glas escudo Kab Glas + CVE lur Kiprenez @@ -2390,6 +4266,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Kiprenez a lurioù Kiprenez lur Kiprenez + CYP kurunenn Tchek @@ -2398,6 +4275,8 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhurunenn Tchek a gurunennoù Tchek kurunenn Tchek + CZK + mark Alamagn ar Reter @@ -2406,6 +4285,7 @@ For terms of use, see http://www.unicode.org/copyright.html mark Alamagn ar Reter a varkoù Alamagn ar Reter mark Alamagn ar Reter + DDM mark Alamagn @@ -2414,6 +4294,7 @@ For terms of use, see http://www.unicode.org/copyright.html mark Alamagn a varkoù Alamagn mark Alamagn + DEM lur Djibouti @@ -2422,6 +4303,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Djibouti a lurioù Djibouti lur Djibouti + DJF kurunenn Danmark @@ -2430,6 +4312,8 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhurunenn Danmark a gurunennoù Danmark kurunenn Danmark + DKK + kr peso Dominikan @@ -2438,6 +4322,7 @@ For terms of use, see http://www.unicode.org/copyright.html feso Dominikan a besoioù Dominikan peso Dominikan + DOP dinar Aljeria @@ -2446,6 +4331,13 @@ For terms of use, see http://www.unicode.org/copyright.html dinar Aljeria a zinaroù Aljeria dinar Aljeria + DZD + + + ECS + + + ECV kurunenn Estonia @@ -2454,6 +4346,7 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhurunenn Estonia a gurunennoù Estonia kurunenn Estonia + EEK lur Egipt @@ -2462,6 +4355,8 @@ For terms of use, see http://www.unicode.org/copyright.html lur Egipt a lurioù Egipt lur Egipt + EGP + £ E nakfa Eritrea @@ -2470,6 +4365,10 @@ For terms of use, see http://www.unicode.org/copyright.html nakfa Eritrea a nakfaoù Eritrea nakfa Eritrea + ERN + + + ESA peseta gemmadus Spagn @@ -2478,6 +4377,7 @@ For terms of use, see http://www.unicode.org/copyright.html feseta gemmadus Spagn a besetaoù kemmadus Spagn peseta gemmadus Spagn + ESB peseta Spagn @@ -2486,6 +4386,8 @@ For terms of use, see http://www.unicode.org/copyright.html feseta Spagn a besetaoù Spagn peseta Spagn + ESP + birr Etiopia @@ -2494,6 +4396,7 @@ For terms of use, see http://www.unicode.org/copyright.html birr Etiopia a virroù Etiopia birr Etiopia + ETB euro @@ -2512,6 +4415,7 @@ For terms of use, see http://www.unicode.org/copyright.html mark Finland a varkoù Finland mark Finland + FIM dollar Fidji @@ -2520,6 +4424,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Fidji a zollaroù Fidji dollar Fidji + FJD $ @@ -2529,6 +4434,8 @@ For terms of use, see http://www.unicode.org/copyright.html lur Inizi Falkland a lurioù Inizi Falkland lur Inizi Falkland + FKP + £ lur gall @@ -2537,6 +4444,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur gall a lurioù gall lur gall + FRF lur Breizh-Veur @@ -2548,6 +4456,9 @@ For terms of use, see http://www.unicode.org/copyright.html £ RU £ + + GEK + lari Jorjia lari Jorjia @@ -2555,6 +4466,10 @@ For terms of use, see http://www.unicode.org/copyright.html lari Jorjia a larioù Jorjia lari Jorjia + GEL + + + GHC cedi Ghana @@ -2563,6 +4478,7 @@ For terms of use, see http://www.unicode.org/copyright.html cedi Ghana cedi Ghana cedi Ghana + GHS lur Jibraltar @@ -2571,6 +4487,8 @@ For terms of use, see http://www.unicode.org/copyright.html lur Jibraltar a lurioù Jibraltar lur Jibraltar + GIP + £ dalasi Gambia @@ -2579,6 +4497,7 @@ For terms of use, see http://www.unicode.org/copyright.html dalasi Gambia a zalasioù Gambia dalasi Gambia + GMD lur Ginea @@ -2587,6 +4506,8 @@ For terms of use, see http://www.unicode.org/copyright.html lur Ginea a lurioù Ginea lur Ginea + GNF + FG syli Ginea @@ -2595,6 +4516,7 @@ For terms of use, see http://www.unicode.org/copyright.html syli Ginea a sylioù Ginea syli Ginea + GNS ekwele Ginea ar Cʼheheder @@ -2603,6 +4525,7 @@ For terms of use, see http://www.unicode.org/copyright.html ekwele Ginea ar Cʼheheder a ekweleoù Ginea ar Cʼheheder ekwele Ginea ar Cʼheheder + GQE drakm Gres @@ -2611,6 +4534,7 @@ For terms of use, see http://www.unicode.org/copyright.html drakm Gres a zrakmoù Gres drakm Gres + GRD quetzal Guatemala @@ -2619,6 +4543,11 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhuetzal Guatemala a guetzaloù Guatemala quetzal Guatemala + GTQ + Q + + + GWE peso Ginea-Bissau @@ -2627,6 +4556,7 @@ For terms of use, see http://www.unicode.org/copyright.html feso Ginea-Bissau a besoioù Ginea-Bissau peso Ginea-Bissau + GWP dollar Guyana @@ -2635,6 +4565,8 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Guyana a zollaroù Guyana dollar Guyana + GYD + $ dollar Hong Kong @@ -2653,6 +4585,8 @@ For terms of use, see http://www.unicode.org/copyright.html lempira Honduras a lempiraoù Honduras lempira Honduras + HNL + L dinar Kroatia @@ -2661,6 +4595,7 @@ For terms of use, see http://www.unicode.org/copyright.html dinar Kroatia a zinaroù Kroatia dinar Kroatia + HRD kuna Kroatia @@ -2669,6 +4604,8 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhuna Kroatia a gunaoù Kroatia kuna Kroatia + HRK + kn gourde Haiti @@ -2677,6 +4614,7 @@ For terms of use, see http://www.unicode.org/copyright.html gourde Haiti a cʼhourdeoù Haiti gourde Haiti + HTG forint Hungaria @@ -2685,6 +4623,8 @@ For terms of use, see http://www.unicode.org/copyright.html forint Hungaria a forintoù Hungaria forint Hungaria + HUF + Ft roupi Indonezia @@ -2693,6 +4633,8 @@ For terms of use, see http://www.unicode.org/copyright.html roupi Indonezia a roupioù Indonezia roupi Indonezia + IDR + Rp lur Iwerzhon @@ -2701,6 +4643,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Iwerzhon a lurioù Iwerzhon lur Iwerzhon + IEP lur Israel @@ -2709,6 +4652,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Israel a lurioù Israel lur Israel + ILP shekel Israel (1980–1985) @@ -2717,6 +4661,7 @@ For terms of use, see http://www.unicode.org/copyright.html shekel Israel (1980–1985) shekel Israel (1980–1985) shekel Israel (1980–1985) + ILR shekel nevez Israel @@ -2725,6 +4670,7 @@ For terms of use, see http://www.unicode.org/copyright.html shekel nevez Israel shekel nevez Israel shekel nevez Israel + ILS @@ -2743,6 +4689,7 @@ For terms of use, see http://www.unicode.org/copyright.html dinar Iraq a zinaroù Iraq dinar Iraq + IQD rial Iran @@ -2751,6 +4698,7 @@ For terms of use, see http://www.unicode.org/copyright.html rial Iran a rialoù Iran rial Iran + IRR kurunenn Island (1918–1981) @@ -2759,6 +4707,7 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhurunenn Island (1918–1981) a gurunennoù Island (1918–1981) kurunenn Island (1918–1981) + ISJ kurunenn Island @@ -2767,6 +4716,8 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhurunenn Island a gurunennoù Island kurunenn Island + ISK + kr lur Italia @@ -2775,6 +4726,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Italia a lurioù Italia lur Italia + ITL dollar Jamaika @@ -2783,6 +4735,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Jamaika a zollaroù Jamaika dollar Jamaika + JMD $ @@ -2792,6 +4745,7 @@ For terms of use, see http://www.unicode.org/copyright.html dinar Jordania a zinaroù Jordania dinar Jordania + JOD yen Japan @@ -2800,6 +4754,7 @@ For terms of use, see http://www.unicode.org/copyright.html yen Japan a yenoù Japan yen Japan + JPY ¥ @@ -2809,6 +4764,7 @@ For terms of use, see http://www.unicode.org/copyright.html shilling Kenya a shillingoù Kenya shilling Kenya + KES som Kyrgyzstan @@ -2817,6 +4773,7 @@ For terms of use, see http://www.unicode.org/copyright.html som Kyrgyzstan a somoù Kyrgyzstan som Kyrgyzstan + KGS riel Kambodja @@ -2825,6 +4782,7 @@ For terms of use, see http://www.unicode.org/copyright.html riel Kambodja a rieloù Kambodja riel Kambodja + KHR @@ -2834,6 +4792,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Komorez a lurioù Komorez lur Komorez + KMF won Korea an Norzh @@ -2842,6 +4801,8 @@ For terms of use, see http://www.unicode.org/copyright.html won Korea an Norzh a wonoù Korea an Norzh won Korea an Norzh + KPW + hwan Korea ar Su (1953–1962) @@ -2850,6 +4811,7 @@ For terms of use, see http://www.unicode.org/copyright.html hwan Korea ar Su (1953–1962) a hwanoù Korea ar Su (1953–1962) hwan Korea ar Su (1953–1962) + KRH won Korea ar Su (1945–1953) @@ -2858,6 +4820,7 @@ For terms of use, see http://www.unicode.org/copyright.html won Korea ar Su (1945–1953) a wonoù Korea ar Su (1945–1953) won Korea ar Su (1945–1953) + KRO won Korea ar Su @@ -2866,6 +4829,7 @@ For terms of use, see http://www.unicode.org/copyright.html won Korea ar Su a wonoù Korea ar Su won Korea ar Su + KRW @@ -2875,6 +4839,7 @@ For terms of use, see http://www.unicode.org/copyright.html dinar Koweit a zinaroù Koweit dinar Koweit + KWD dollar Inizi Cayman @@ -2883,6 +4848,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Inizi Cayman a zollaroù Inizi Cayman dollar Inizi Cayman + KYD $ @@ -2892,6 +4858,7 @@ For terms of use, see http://www.unicode.org/copyright.html zenge Kazakstan a dengeoù Kazakstan tenge Kazakstan + KZT @@ -2901,6 +4868,7 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhip Laos a gipoù Laos kip Laos + LAK @@ -2910,6 +4878,8 @@ For terms of use, see http://www.unicode.org/copyright.html lur Liban a lurioù Liban lur Liban + LBP + £L roupi Sri Lanka @@ -2918,6 +4888,8 @@ For terms of use, see http://www.unicode.org/copyright.html roupi Sri Lanka a roupioù Sri Lanka roupi Sri Lanka + LKR + Rs dollar Liberia @@ -2926,6 +4898,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Liberia a zollaroù Liberia dollar Liberia + LRD $ @@ -2935,6 +4908,7 @@ For terms of use, see http://www.unicode.org/copyright.html loti Lesotho a lotioù Lesotho loti Lesotho + LSL litas Lituania @@ -2943,6 +4917,8 @@ For terms of use, see http://www.unicode.org/copyright.html litas Lituania a litasoù Lituania litas Lituania + LTL + Lt talonas Lituania @@ -2951,6 +4927,7 @@ For terms of use, see http://www.unicode.org/copyright.html zalonas Lituania a dalonasoù Lituania talonas Lituania + LTT lur kemmadus Luksembourg @@ -2959,6 +4936,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur kemmadus Luksembourg a lurioù kemmadus Luksembourg lur kemmadus Luksembourg + LUC lur Luksembourg @@ -2967,6 +4945,10 @@ For terms of use, see http://www.unicode.org/copyright.html lur Luksembourg a lurioù Luksembourg lur Luksembourg + LUF + + + LUL lats Latvia @@ -2975,6 +4957,8 @@ For terms of use, see http://www.unicode.org/copyright.html lats Latvia a latsoù Latvia lats Latvia + LVL + Ls roubl Latvia @@ -2983,6 +4967,7 @@ For terms of use, see http://www.unicode.org/copyright.html roubl Latvia a roubloù Latvia roubl Latvia + LVR dinar Libia @@ -2991,6 +4976,7 @@ For terms of use, see http://www.unicode.org/copyright.html dinar Libia a zinaroù Libia dinar Libia + LYD dirham Maroko @@ -2999,6 +4985,7 @@ For terms of use, see http://www.unicode.org/copyright.html dirham Maroko a zirhamoù Maroko dirham Maroko + MAD lur Maroko @@ -3007,6 +4994,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Maroko a lurioù Maroko lur Maroko + MAF lur Monaco @@ -3015,6 +5003,10 @@ For terms of use, see http://www.unicode.org/copyright.html lur Monaco a lurioù Monaco lur Monaco + MCF + + + MDC leu Moldova @@ -3023,6 +5015,7 @@ For terms of use, see http://www.unicode.org/copyright.html leu Moldova leu Moldova leu Moldova + MDL ariary Madagaskar @@ -3031,6 +5024,8 @@ For terms of use, see http://www.unicode.org/copyright.html ariary Madagaskar a ariaryoù Madagaska ariary Madagaskar + MGA + Ar lur Madagaskar @@ -3039,6 +5034,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Madagaskar a lurioù Madagaskar lur Madagaskar + MGF denar Makedonia @@ -3047,6 +5043,7 @@ For terms of use, see http://www.unicode.org/copyright.html denar Makedonia a zenaroù Makedonia denar Makedonia + MKD denar Makedonia (1992–1993) @@ -3055,6 +5052,7 @@ For terms of use, see http://www.unicode.org/copyright.html denar Makedonia (1992–1993) a zenaroù Makedonia (1992–1993) denar Makedonia (1992–1993) + MKN lur Mali @@ -3063,6 +5061,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Mali a lurioù Mali lur Mali + MLF kyat Myanmar @@ -3071,6 +5070,8 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhyat Myanmar a gyatoù Myanmar kyat Myanmar + MMK + K tugrik Mongolia @@ -3079,6 +5080,7 @@ For terms of use, see http://www.unicode.org/copyright.html zugrik Mongolia a dugrikoù Mongolia tugrik Mongolia + MNT @@ -3088,6 +5090,7 @@ For terms of use, see http://www.unicode.org/copyright.html fataca Macau a batacaoù Macau pataca Macau + MOP ouguiya Maouritania @@ -3096,6 +5099,7 @@ For terms of use, see http://www.unicode.org/copyright.html ouguiya Maouritania a ouguiyaoù Maouritania ouguiya Maouritania + MRO lira Malta @@ -3104,6 +5108,7 @@ For terms of use, see http://www.unicode.org/copyright.html lira Malta a liraoù Malta lira Malta + MTL lur Malta @@ -3112,6 +5117,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Malta a lurioù Malta lur Malta + MTP roupi Moris @@ -3120,6 +5126,8 @@ For terms of use, see http://www.unicode.org/copyright.html roupi Moris a roupioù Moris roupi Moris + MUR + Rs roupi Maldivez @@ -3136,6 +5144,7 @@ For terms of use, see http://www.unicode.org/copyright.html rufiyaa Maldivez a rufiyaaoù Maldivez rufiyaa Maldivez + MVR kwacha Malawi @@ -3144,6 +5153,7 @@ For terms of use, see http://www.unicode.org/copyright.html kwacha Malawi a gwachaoù Malawi kwacha Malawi + MWK peso Mecʼhiko @@ -3152,6 +5162,7 @@ For terms of use, see http://www.unicode.org/copyright.html feso Mecʼhiko a besoioù Mecʼhiko peso Mecʼhiko + MX$ peso arcʼhant Mecʼhiko (1861–1992) @@ -3160,6 +5171,10 @@ For terms of use, see http://www.unicode.org/copyright.html feso arcʼhant Mecʼhiko (1861–1992) a besoioù arcʼhant Mecʼhiko (1861–1992) peso arcʼhant Mecʼhiko (1861–1992) + MXP + + + MXV ringgit Malaysia @@ -3168,6 +5183,8 @@ For terms of use, see http://www.unicode.org/copyright.html ringgit Malaysia a ringgitoù Malaysia ringgit Malaysia + MYR + RM escudo Mozambik @@ -3176,6 +5193,7 @@ For terms of use, see http://www.unicode.org/copyright.html escudo Mozambik a escudoioù Mozambik escudo Mozambik + MZE metical Mozambik (1980–2006) @@ -3184,6 +5202,7 @@ For terms of use, see http://www.unicode.org/copyright.html metical Mozambik (1980–2006) a veticaloù Mozambik (1980–2006) metical Mozambik (1980–2006) + MZM metical Mozambik @@ -3192,6 +5211,7 @@ For terms of use, see http://www.unicode.org/copyright.html metical Mozambik a veticaloù Mozambik metical Mozambik + MZN dollar Namibia @@ -3200,6 +5220,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Namibia a zollaroù Namibia dollar Namibia + NAD $ @@ -3209,6 +5230,7 @@ For terms of use, see http://www.unicode.org/copyright.html naira Nigeria a nairaoù Nigeria naira Nigeria + NGN @@ -3218,6 +5240,7 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhordoba Nicaragua (1988–1991) a gordobaoù Nicaragua (1988–1991) cordoba Nicaragua (1988–1991) + NIC cordoba Nicaragua @@ -3226,6 +5249,7 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhordoba Nicaragua a gordobaoù Nicaragua cordoba Nicaragua + NIO florin an Izelvroioù @@ -3234,6 +5258,7 @@ For terms of use, see http://www.unicode.org/copyright.html florin an Izelvroioù a florinoù an Izelvroioù florin an Izelvroioù + NLG kurunenn Norvegia @@ -3242,6 +5267,8 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhurunenn Norvegia a gurunennoù Norvegia kurunenn Norvegia + NOK + kr roupi Nepal @@ -3250,6 +5277,8 @@ For terms of use, see http://www.unicode.org/copyright.html roupi Nepal a roupioù Nepal roupi Nepal + NPR + Rs dollar Zeland-Nevez @@ -3268,6 +5297,7 @@ For terms of use, see http://www.unicode.org/copyright.html rial Oman a rialoù Oman rial Oman + OMR balboa Panamá @@ -3276,6 +5306,10 @@ For terms of use, see http://www.unicode.org/copyright.html balboa Panamá a valboaoù Panamá balboa Panamá + PAB + + + PEI nuevo sol Perou @@ -3284,6 +5318,7 @@ For terms of use, see http://www.unicode.org/copyright.html nuevo sol Perou nuevo sol Perou nuevo sol Perou + PEN sol Perou (1863–1965) @@ -3292,6 +5327,7 @@ For terms of use, see http://www.unicode.org/copyright.html sol Perou (1863–1965) a solioù Perou (1863–1965) sol Perou (1863–1965) + PES kina Papoua Ginea-Nevez @@ -3300,6 +5336,7 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhina Papoua Ginea-Nevez a ginaoù Papoua Ginea-Nevez kina Papoua Ginea-Nevez + PGK peso Filipinez @@ -3308,6 +5345,7 @@ For terms of use, see http://www.unicode.org/copyright.html feso Filipinez a besoioù Filipinez peso Filipinez + PHP @@ -3317,6 +5355,8 @@ For terms of use, see http://www.unicode.org/copyright.html roupi Pakistan a roupioù Pakistan roupi Pakistan + PKR + Rs zloty Polonia @@ -3325,6 +5365,8 @@ For terms of use, see http://www.unicode.org/copyright.html zloty Polonia a zlotyoù Polonia zloty Polonia + PLN + zloty Polonia (1950–1995) @@ -3333,6 +5375,7 @@ For terms of use, see http://www.unicode.org/copyright.html zloty Polonia (1950–1995) a zlotyoù Polonia (1950–1995) zloty Polonia (1950–1995) + PLZ escudo Portugal @@ -3341,6 +5384,7 @@ For terms of use, see http://www.unicode.org/copyright.html escudo Portugal a escudoioù Portugal escudo Portugal + PTE guarani Paraguay @@ -3349,6 +5393,7 @@ For terms of use, see http://www.unicode.org/copyright.html guarani Paraguay a uaranioù Paraguay guarani Paraguay + PYG @@ -3358,6 +5403,7 @@ For terms of use, see http://www.unicode.org/copyright.html rial Qatar a rialoù Qatar rial Qatar + QAR dollar Rodezia @@ -3366,6 +5412,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Rodezia a zollaroù Rodezia dollar Rodezia + RHD leu Roumania (1952–2006) @@ -3374,6 +5421,7 @@ For terms of use, see http://www.unicode.org/copyright.html leu Roumania (1952–2006) leu Roumania (1952–2006) leu Roumania (1952–2006) + ROL leu Roumania @@ -3382,6 +5430,7 @@ For terms of use, see http://www.unicode.org/copyright.html leu Roumania leu Roumania leu Roumania + RON dinar Serbia @@ -3390,6 +5439,7 @@ For terms of use, see http://www.unicode.org/copyright.html dinar Serbia a zinaroù Serbia dinar Serbia + RSD roubl Rusia @@ -3398,6 +5448,8 @@ For terms of use, see http://www.unicode.org/copyright.html roubl Rusia a roubloù Rusia roubl Rusia + RUB + roubl Rusia (1991–1998) @@ -3406,6 +5458,8 @@ For terms of use, see http://www.unicode.org/copyright.html roubl Rusia (1991–1998) a roubloù Rusia (1991–1998) roubl Rusia (1991–1998) + RUR + р. lur Rwanda @@ -3414,6 +5468,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Rwanda a lurioù Rwanda lur Rwanda + RWF riyal Arabia Saoudat @@ -3422,6 +5477,7 @@ For terms of use, see http://www.unicode.org/copyright.html riyal Arabia Saoudat a riyaloù Arabia Saoudat riyal Arabia Saoudat + SAR dollar Inizi Salomon @@ -3430,6 +5486,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Inizi Salomon a zollaroù Inizi Salomon dollar Inizi Salomon + SBD $ @@ -3439,6 +5496,7 @@ For terms of use, see http://www.unicode.org/copyright.html roupi Sechelez a roupioù Sechelez roupi Sechelez + SCR dinar Soudan (1992–2007) @@ -3447,6 +5505,7 @@ For terms of use, see http://www.unicode.org/copyright.html dinar Soudan (1992–2007) a zinaroù Soudan (1992–2007) dinar Soudan (1992–2007) + SDD lur Soudan @@ -3455,6 +5514,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Soudan a lurioù Soudan lur Soudan + SDG lur Soudan (1957–1998) @@ -3463,6 +5523,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Soudan (1957–1998) a lurioù Soudan (1957–1998) lur Soudan (1957–1998) + SDP kurunenn Sveden @@ -3471,6 +5532,8 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhurunenn Sveden a gurunennoù Sveden kurunenn Sveden + SEK + kr dollar Singapour @@ -3479,6 +5542,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Singapour a zollaroù Singapour dollar Singapour + SGD $ @@ -3488,6 +5552,8 @@ For terms of use, see http://www.unicode.org/copyright.html lur Saint-Helena a lurioù Saint-Helena lur Saint-Helena + SHP + £ tolar Slovenia @@ -3496,6 +5562,7 @@ For terms of use, see http://www.unicode.org/copyright.html zolar Slovenia a dolaroù Slovenia tolar Slovenia + SIT kurunenn Slovakia @@ -3504,6 +5571,7 @@ For terms of use, see http://www.unicode.org/copyright.html cʼhurunenn Slovakia a gurunennoù Slovakia kurunenn Slovakia + SKK leone Sierra Leone @@ -3512,6 +5580,7 @@ For terms of use, see http://www.unicode.org/copyright.html leone Sierra Leone a leoneoù Sierra Leone leone Sierra Leone + SLL shilling Somalia @@ -3520,6 +5589,7 @@ For terms of use, see http://www.unicode.org/copyright.html shilling Somalia a shillingoù Somalia shilling Somalia + SOS dollar Surinam @@ -3528,6 +5598,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Surinam a zollaroù Surinam dollar Surinam + SRD $ @@ -3537,6 +5608,7 @@ For terms of use, see http://www.unicode.org/copyright.html florin Surinam a florinoù Surinam florin Surinam + SRG lur Susoudan @@ -3545,6 +5617,8 @@ For terms of use, see http://www.unicode.org/copyright.html lur Susoudan a lurioù Susoudan lur Susoudan + SSP + £ dobra São Tomé ha Príncipe @@ -3553,6 +5627,8 @@ For terms of use, see http://www.unicode.org/copyright.html dobra São Tomé ha Príncipe a zobraoù São Tomé ha Príncipe dobra São Tomé ha Príncipe + STD + Db roubl soviedel @@ -3561,6 +5637,7 @@ For terms of use, see http://www.unicode.org/copyright.html roubl soviedel a roubloù soviedel roubl soviedel + SUR colón Salvador @@ -3569,6 +5646,7 @@ For terms of use, see http://www.unicode.org/copyright.html cʼholón Salvador a golónoù Salvador colón Salvador + SVC lur Siria @@ -3577,6 +5655,8 @@ For terms of use, see http://www.unicode.org/copyright.html lur Siria a lurioù Siria lur Siria + SYP + £ lilangeni Swaziland @@ -3585,6 +5665,7 @@ For terms of use, see http://www.unicode.org/copyright.html lilangeni Swaziland a lilangenioù Swaziland lilangeni Swaziland + SZL baht Thailand @@ -3593,6 +5674,8 @@ For terms of use, see http://www.unicode.org/copyright.html baht Thailand a vahtoù Thailand baht Thailand + THB + ฿ roubl Tadjikistan @@ -3601,6 +5684,7 @@ For terms of use, see http://www.unicode.org/copyright.html roubl Tadjikistan a roubloù Tadjikistan roubl Tadjikistan + TJR somoni Tadjikistan @@ -3609,6 +5693,7 @@ For terms of use, see http://www.unicode.org/copyright.html somoni Tadjikistan a somonioù Tadjikistan somoni Tadjikistan + TJS manat Turkmenistan (1993–2009) @@ -3617,6 +5702,7 @@ For terms of use, see http://www.unicode.org/copyright.html manat Turkmenistan (1993–2009) a vanatoù Turkmenistan (1993–2009) manat Turkmenistan (1993–2009) + TMM manat Turkmenistan @@ -3625,6 +5711,7 @@ For terms of use, see http://www.unicode.org/copyright.html manat Turkmenistan a vanatoù Turkmenistan manat Turkmenistan + TMT dinar Tunizia @@ -3633,6 +5720,7 @@ For terms of use, see http://www.unicode.org/copyright.html dinar Tunizia a zinaroù Tunizia dinar Tunizia + TND paʻanga Tonga @@ -3641,6 +5729,8 @@ For terms of use, see http://www.unicode.org/copyright.html faʻanga Tonga a baʻangaoù Tonga paʻanga Tonga + TOP + $ T escudo Timor @@ -3649,6 +5739,7 @@ For terms of use, see http://www.unicode.org/copyright.html escudo Timor a escudoioù Timor escudo Timor + TPE lur Turkia (1922–2005) @@ -3657,6 +5748,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Turkia (1922–2005) a lurioù Turkia (1922–2005) lur Turkia (1922–2005) + TRL lur Turkia @@ -3665,6 +5757,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur Turkia a lurioù Turkia lur Turkia + TRY @@ -3674,6 +5767,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Trinidad ha Tobago a zollaroù Trinidad ha Tobago dollar Trinidad ha Tobago + TTD $ @@ -3683,6 +5777,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar nevez Taiwan a zollaroù nevez Taiwan dollar nevez Taiwan + TWD $ @@ -3692,6 +5787,7 @@ For terms of use, see http://www.unicode.org/copyright.html shilling Tanzania a shillingoù Tanzania shilling Tanzania + TZS hryvnia Ukraina @@ -3700,6 +5796,11 @@ For terms of use, see http://www.unicode.org/copyright.html hryvnia Ukraina a hryvniaoù Ukraina hryvnia Ukraina + UAH + + + + UAK shilling Ouganda (1966–1987) @@ -3708,6 +5809,7 @@ For terms of use, see http://www.unicode.org/copyright.html shilling Ouganda (1966–1987) a shillingoù Ouganda (1966–1987) shilling Ouganda (1966–1987) + UGS shilling Ouganda @@ -3716,6 +5818,7 @@ For terms of use, see http://www.unicode.org/copyright.html shilling Ouganda a shillingoù Ouganda shilling Ouganda + UGX dollar SU @@ -3727,6 +5830,15 @@ For terms of use, see http://www.unicode.org/copyright.html $ SU $ + + USN + + + USS + + + UYI + peso Uruguay (1975–1993) peso Uruguay (1975–1993) @@ -3734,6 +5846,7 @@ For terms of use, see http://www.unicode.org/copyright.html feso Uruguay (1975–1993) a besoioù Uruguay (1975–1993) peso Uruguay (1975–1993) + UYP peso Uruguay @@ -3742,6 +5855,7 @@ For terms of use, see http://www.unicode.org/copyright.html feso Uruguay a besoioù Uruguay peso Uruguay + UYU som Ouzbekistan @@ -3750,6 +5864,7 @@ For terms of use, see http://www.unicode.org/copyright.html som Ouzbekistan a somoù Ouzbekistan som Ouzbekistan + UZS bolivar Venezuela (1871–2008) @@ -3758,6 +5873,7 @@ For terms of use, see http://www.unicode.org/copyright.html bolivar Venezuela (1871–2008) a volivaroù Venezuela (1871–2008) bolivar Venezuela (1871–2008) + VEB bolivar Venezuela @@ -3766,6 +5882,8 @@ For terms of use, see http://www.unicode.org/copyright.html bolivar Venezuela a volivaroù Venezuela bolivar Venezuela + VEF + Bs dong Viêt Nam @@ -3774,6 +5892,7 @@ For terms of use, see http://www.unicode.org/copyright.html dong Viêt Nam a zongoù Viêt Nam dong Viêt Nam + VND @@ -3783,6 +5902,7 @@ For terms of use, see http://www.unicode.org/copyright.html dong Viêt Nam (1978–1985) a zongoù Viêt Nam (1978–1985) dong Viêt Nam (1978–1985) + VNN vatu Vanuatu @@ -3791,6 +5911,7 @@ For terms of use, see http://www.unicode.org/copyright.html vatu Vanuatu a vatuoù Vanuatu vatu Vanuatu + VUV tala Samoa @@ -3799,20 +5920,24 @@ For terms of use, see http://www.unicode.org/copyright.html zala Samoa a dalaoù Samoa tala Samoa + WST - lur CFA BEAC - lur CFA BEAC - lur CFA BEAC - lur CFA BEAC - a lurioù CFA BEAC - lur CFA BEAC + lur CFA Kreizafrika + lur CFA Kreizafrika + lur CFA Kreizafrika + lur CFA Kreizafrika + lur CFA Kreizafrika + lur CFA Kreizafrika + FCFA arcʼhant + XAG aour + XAU unanenn genaoz europat @@ -3821,6 +5946,7 @@ For terms of use, see http://www.unicode.org/copyright.html unanenn genaoz europat a unanennoù kenaoz europat unanenn genaoz europat + XBA unanenn voneiz europat @@ -3829,6 +5955,7 @@ For terms of use, see http://www.unicode.org/copyright.html unanenn voneiz europat a unanennoù moneiz europat unanenn voneiz europat + XBB unanenn jediñ europat (XBC) @@ -3837,6 +5964,7 @@ For terms of use, see http://www.unicode.org/copyright.html unanenn jediñ europat (XBC) a unanennoù jediñ europat (XBC) unanenn jediñ europat (XBC) + XBC unanenn jediñ europat (XBD) @@ -3845,6 +5973,7 @@ For terms of use, see http://www.unicode.org/copyright.html unanenn jediñ europat (XBD) a unanennoù jediñ europat (XBD) unanenn jediñ europat (XBD) + XBD dollar Karib ar reter @@ -3853,9 +5982,17 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Karib ar reter a zollaroù Karib ar reter dollar Karib ar reter + XCD + $ gwirioù tennañ arbennik + gwirioù tennañ arbennik + gwirioù tennañ arbennik + gwirioù tennañ arbennik + gwirioù tennañ arbennik + gwirioù tennañ arbennik + XDR unanenn jediñ europat @@ -3864,6 +6001,7 @@ For terms of use, see http://www.unicode.org/copyright.html unanenn jediñ europat a unanennoù jediñ europat unanenn jediñ europat + XEU lur aour Frañs @@ -3872,6 +6010,7 @@ For terms of use, see http://www.unicode.org/copyright.html lur aour Frañs a lurioù aour Frañs lur aour Frañs + XFO lur Unaniezh etrebroadel an hentoù-houarn @@ -3883,15 +6022,17 @@ For terms of use, see http://www.unicode.org/copyright.html XFU - lur CFA BCEAO - lur CFA BCEAO + lur CFA Afrika ar Cʼhornôg + lur CFA Afrika ar Cʼhornôg lur CFA BCEAO lur CFA BCEAO a lurioù CFA BCEAO - lur CFA BCEAO + lur CFA Afrika ar Cʼhornôg + CFA palladiom + XPD lur CFP @@ -3900,9 +6041,17 @@ For terms of use, see http://www.unicode.org/copyright.html lur CFP a lurioù CFP lur CFP + CFPF platin + XPT + + + XRE + + + XSU kod moneiz amprouiñ @@ -3911,14 +6060,16 @@ For terms of use, see http://www.unicode.org/copyright.html unanenn voneiz amprouiñ a unanennoù voneiz amprouiñ unanenn voneiz amprouiñ + XTS moneiz dianav - moneiz dianav - moneiz dianav - moneiz dianav - moneiz dianav - moneiz dianav + (moneiz dianav) + (moneiz dianav) + (moneiz dianav) + (moneiz dianav) + (moneiz dianav) + XXX dinar Yemen @@ -3927,6 +6078,7 @@ For terms of use, see http://www.unicode.org/copyright.html dinar Yemen a zinaroù Yemen dinar Yemen + YDD rial Yemen @@ -3935,6 +6087,10 @@ For terms of use, see http://www.unicode.org/copyright.html rial Yemen a rialoù Yemen rial Yemen + YER + + + YUD dinar nevez Yougoslavia (1994–2002) @@ -3943,6 +6099,7 @@ For terms of use, see http://www.unicode.org/copyright.html dinar nevez Yougoslavia (1994–2002) a zinaroù nevez Yougoslavia (1994–2002) dinar nevez Yougoslavia (1994–2002) + YUM dinar kemmadus Yougoslavia (1990–1992) @@ -3951,6 +6108,7 @@ For terms of use, see http://www.unicode.org/copyright.html dinar kemmadus Yougoslavia (1990–1992) a zinaroù kemmadus Yougoslavia (1990–1992) dinar kemmadus Yougoslavia (1990–1992) + YUN dinar adreizhet Yougoslavia (1992–1993) @@ -3959,6 +6117,10 @@ For terms of use, see http://www.unicode.org/copyright.html dinar adreizhet Yougoslavia (1992–1993) a zinaroù adreizhet Yougoslavia (1992–1993) dinar adreizhet Yougoslavia (1992–1993) + YUR + + + ZAL rand Suafrika @@ -3967,6 +6129,8 @@ For terms of use, see http://www.unicode.org/copyright.html rand Suafrika a randoù Suafrika rand Suafrika + ZAR + R kwacha Zambia (1968–2012) @@ -3975,6 +6139,7 @@ For terms of use, see http://www.unicode.org/copyright.html kwacha Zambia (1968–2012) a gwachaoù Zambia (1968–2012) kwacha Zambia (1968–2012) + ZMK kwacha Zambia @@ -3983,6 +6148,13 @@ For terms of use, see http://www.unicode.org/copyright.html kwacha Zambia a gwachaoù Zambia kwacha Zambia + ZMW + + + ZRN + + + ZRZ dollar Zimbabwe (1980–2008) @@ -3991,6 +6163,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Zimbabwe (1980–2008) a zollaroù Zimbabwe (1980–2008) dollar Zimbabwe (1980–2008) + ZWD dollar Zimbabwe (2009) @@ -3999,6 +6172,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Zimbabwe (2009) a zollaroù Zimbabwe (2009) dollar Zimbabwe (2009) + ZWL dollar Zimbabwe (2008) @@ -4007,18 +6181,22 @@ For terms of use, see http://www.unicode.org/copyright.html dollar Zimbabwe (2008) a zollaroù Zimbabwe (2008) dollar Zimbabwe (2008) + ZWR - - derezioù - {0} derez - {0} zerez - {0} derez - {0} a zerezioù - {0} derez + + {0} dre {1} + + + metroù dre eilenn garrez + {0} metr dre eilenn garrez + {0} vetr dre eilenn garrez + {0} metr dre eilenn garrez + {0} a vetroù dre eilenn garrez + {0} metr dre eilenn garrez radianoù @@ -4028,6 +6206,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a radianoù {0} radian + + derezioù + {0} derez + {0} zerez + {0} derez + {0} a zerezioù + {0} derez + + + kilometroù karrez + {0} c'hilometr karrez + {0} gilometr karrez + {0} c'hilometr karrez + {0} a gilometroù karrez + {0} kilometr karrez + hektaroù {0} hektar @@ -4036,6 +6230,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a hektaroù {0} hektar + + metroù karrez + {0} metr karrez + {0} vetr karrez + {0} metr karrez + {0} a vetroù garrez + {0} metr karrez + {0} dre vetr karrez + kentimetroù karrez {0} c'hentimetr karrez @@ -4043,6 +6246,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} c'hentimetr karrez {0} a gentimetroù karrez {0} kentimetr karrez + {0} dre gentimetr karrez + + + miltirioù karrez + {0} miltir karrez + {0} viltir karrez + {0} miltir karrez + {0} a viltirioù karrez + {0} miltir karrez + + + akroù + {0} akr + {0} akr + {0} akr + {0} a akroù + {0} akr troatadoù karrez @@ -4059,102 +6279,39 @@ For terms of use, see http://www.unicode.org/copyright.html {0} meutad karrez {0} a veutadoù karrez {0} meutad karrez + {0} dre veutad karrez - - kilometroù karrez - {0} c'hilometr karrez - {0} gilometr karrez - {0} c'hilometr karrez - {0} a gilometroù karrez - {0} kilometr karrez + + karatoù + {0} c'harat + {0} garat + {0} c'harat + {0} a garatoù + {0} karat - - metroù karrez - {0} metr karrez - {0} vetr karrez - {0} metr karrez - {0} a vetroù garrez - {0} metr karrez + + litroù dre gilometr + {0} litr dre gilometr + {0} litr dre gilometr + {0} litr dre gilometr + {0} a litroù dre gilometr + {0} litr dre gilometr - - miltirioù karrez - {0} miltir karrez - {0} viltir karrez - {0} miltir karrez - {0} a viltirioù karrez - {0} miltir karrez + + litroù dre 100 kilometr + {0} litr dre 100 kilometr + {0} litr dre 100 kilometr + {0} litr dre 100 kilometr + {0} a litroù dre 100 kilometr + {0} litr dre 100 kilometr - - bitoù - {0} bit - {0} vit - {0} bit - {0} a vitoù - {0} bit - - - oktedoù - {0} okted - {0} okted - {0} okted - {0} a oktedoù - {0} okted - - - gigabitoù - {0} gigabit - {0} c'higabit - {0} gigabit - {0} a c'higabitoù - {0} gigabit - - - gigaoktedoù - {0} gigaokted - {0} c'higaokted - {0} gigaokted - {0} a c'higaoktedoù - {0} gigaokted - - - kilobitoù - {0} c'hilobit - {0} gilobit - {0} c'hilobit - {0} a gilobitoù - {0} kilobit - - - kilooktedoù - {0} c'hilookted - {0} gilookted - {0} c'hilookted - {0} a gilooktedoù - {0} kilookted - - - megabitoù - {0} megabit - {0} vegabit - {0} megabit - {0} a vegabitoù - {0} megabit - - - megaoktedoù - {0} megaokted - {0} vegaokted - {0} megaokted - {0} a vegaoktedoù - {0} megaokted - - - terabitoù - {0} terabit - {0} derabit - {0} zerabit - {0} a derabitoù - {0} terabit + + miltirioù dre cʼhallon + {0} miltir dre c'hallon + {0} viltir dre c'hallon + {0} miltir dre c'hallon + {0} a viltirioù dre c'hallon + {0} miltir dre c'hallon teraoktedoù @@ -4164,6 +6321,113 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a deraoktedoù {0} teraokted + + terabitoù + {0} terabit + {0} derabit + {0} zerabit + {0} a derabitoù + {0} terabit + + + gigaoktedoù + {0} gigaokted + {0} c'higaokted + {0} gigaokted + {0} a c'higaoktedoù + {0} gigaokted + + + gigabitoù + {0} gigabit + {0} c'higabit + {0} gigabit + {0} a c'higabitoù + {0} gigabit + + + megaoktedoù + {0} megaokted + {0} vegaokted + {0} megaokted + {0} a vegaoktedoù + {0} megaokted + + + megabitoù + {0} megabit + {0} vegabit + {0} megabit + {0} a vegabitoù + {0} megabit + + + kilooktedoù + {0} c'hilookted + {0} gilookted + {0} c'hilookted + {0} a gilooktedoù + {0} kilookted + + + kilobitoù + {0} c'hilobit + {0} gilobit + {0} c'hilobit + {0} a gilobitoù + {0} kilobit + + + oktedoù + {0} okted + {0} okted + {0} okted + {0} a oktedoù + {0} okted + + + bitoù + {0} bit + {0} vit + {0} bit + {0} a vitoù + {0} bit + + + kantvedoù + {0} c'hantved + {0} gantved + {0} c'hantved + {0} a gantvedoù + {0} kantved + + + bloazioù + {0} bloaz + {0} vloaz + {0} bloaz + {0} a vloazioù + {0} vloaz + {0} dre vloaz + + + mizioù + {0} miz + {0} viz + {0} miz + {0} a vizioù + {0} miz + {0} dre viz + + + sizhunioù + {0} sizhun + {0} sizhun + {0} sizhun + {0} a sizhunioù + {0} sizhun + {0} dre sizhun + deizioù {0} deiz @@ -4171,6 +6435,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} deiz {0} a zeizioù {0} deiz + {0} dre zeiz eurioù @@ -4181,22 +6446,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} eur {0} dre eur - - mikroeilennoù - {0} mikroeilenn - {0} vikroeilenn - {0} mikroeilenn - {0} a vikroeilennoù - {0} mikroeilenn - - - milieilennoù - {0} milieilenn - {0} vilieilenn - {0} milieilenn - {0} a vilieilennoù - {0} milieilenn - munutoù {0} munut @@ -4204,22 +6453,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} munut {0} a vunutoù {0} munut - - - mizioù - {0} miz - {0} viz - {0} miz - {0} a vizioù - {0} miz - - - nanoeilennoù - {0} nanoeilenn - {0} nanoeilenn - {0} nanoeilenn - {0} a nanoeilennoù - {0} nanoeilenn + {0} dre vunut eilennoù @@ -4230,13 +6464,29 @@ For terms of use, see http://www.unicode.org/copyright.html {0} eilenn {0} dre eilenn - - bloazioù - {0} bloaz - {0} vloaz - {0} bloaz - {0} a vloazioù - {0} vloaz + + milieilennoù + {0} milieilenn + {0} vilieilenn + {0} milieilenn + {0} a vilieilennoù + {0} milieilenn + + + mikroeilennoù + {0} mikroeilenn + {0} vikroeilenn + {0} mikroeilenn + {0} a vikroeilennoù + {0} mikroeilenn + + + nanoeilennoù + {0} nanoeilenn + {0} nanoeilenn + {0} nanoeilenn + {0} a nanoeilennoù + {0} nanoeilenn amperoù @@ -4270,22 +6520,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a voltoù {0} volt - - kaloriennoù - {0} galorienn - {0} galorienn - {0} c'halorienn - {0} a galoriennoù - {0} kalorienn - - - jouloù - {0} joul - {0} joul - {0} joul - {0} a jouloù - {0} joul - kilokaloriennoù {0} gilokalorienn @@ -4294,6 +6528,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a gilokaloriennoù {0} kilokalorienn + + kaloriennoù + {0} galorienn + {0} galorienn + {0} c'halorienn + {0} a galoriennoù + {0} kalorienn + kilojouloù {0} c'hilojoul @@ -4302,6 +6544,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a gilojouloù {0} kilojoul + + jouloù + {0} joul + {0} joul + {0} joul + {0} a jouloù + {0} joul + kilowattoù-eurioù {0} c'hilowatt-eur @@ -4318,13 +6568,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a c'higahertzoù {0} gigahertz - - hertzoù - {0} hertz - {0} hertz - {0} hertz - {0} a hertzoù - {0} hertz + + megahertzoù + {0} megahertz + {0} vegahertz + {0} megahertz + {0} a vegahertzoù + {0} megahertz kilohertzoù @@ -4334,21 +6584,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a gilohertzoù {0} kilohertz - - megahertzoù - {0} megahertz - {0} vegahertz - {0} megahertz - {0} a vegahertzoù - {0} megahertz + + hertzoù + {0} hertz + {0} hertz + {0} hertz + {0} a hertzoù + {0} hertz - - kentimetroù - {0} c'hentimetr - {0} gentimetr - {0} c'hentimetr - {0} a gentimetroù - {0} kentimetr + + kilometroù + {0} c'hilometr + {0} gilometr + {0} c'hilometr + {0} a gilometroù + {0} kilometr + {0} dre gilometr + + + metroù + {0} metr + {0} vetr + {0} metr + {0} a vetroù + {0} metr + {0} dre vetr dekimetroù @@ -4358,61 +6618,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a zekimetroù {0} dekimetr - - gourhedadoù - {0} gourhedad - {0} c'hourhedad - {0} gourhedad - {0} a c'hourhedadoù - {0} gourhedad - - - troatadoù - {0} troatad - {0} droatad - {0} zroatad - {0} a droatadoù - {0} troatad - - - meutadoù - {0} meutad - {0} veutad - {0} meutad - {0} a veutadoù - {0} meutad - - - kilometroù - {0} c'hilometr - {0} gilometr - {0} c'hilometr - {0} a gilometroù - {0} kilometr - - - metroù - {0} metr - {0} vetr - {0} metr - {0} a vetroù - {0} metr - - - mikrometroù - {0} mikrometr - {0} vikrometr - {0} mikrometr - {0} a vikrometroù - {0} mikrometr - - - miltirioù - {0} miltir - {0} viltir - {0} miltir - {0} a viltirioù - {0} miltir + + kentimetroù + {0} c'hentimetr + {0} gentimetr + {0} c'hentimetr + {0} a gentimetroù + {0} kentimetr + {0} dre gentimetr milimetroù @@ -4422,6 +6635,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a vilimetroù {0} milimetr + + mikrometroù + {0} mikrometr + {0} vikrometr + {0} mikrometr + {0} a vikrometroù + {0} mikrometr + nanometroù {0} nanometr @@ -4430,22 +6651,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a nanometroù {0} nanometr - - milmorioù - {0} milmor - {0} vilmor - {0} milmor - {0} a vilmorioù - {0} milmor - - - parsekoù - {0} parsek - {0} barsek - {0} farsek - {0} a barsekoù - {0} parsek - pikometroù {0} pikometr @@ -4454,6 +6659,64 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a bikometroù {0} pikometr + + miltirioù + {0} miltir + {0} viltir + {0} miltir + {0} a viltirioù + {0} miltir + + + troatadoù + {0} troatad + {0} droatad + {0} zroatad + {0} a droatadoù + {0} troatad + {0} dre droatad + + + meutadoù + {0} meutad + {0} veutad + {0} meutad + {0} a veutadoù + {0} meutad + {0} dre veutad + + + parsekoù + {0} parsek + {0} barsek + {0} farsek + {0} a barsekoù + {0} parsek + + + unanennoù steredoniel + {0} unanenn steredoniel + {0} unanenn steredoniel + {0} unanenn steredoniel + {0} a unanennoù steredoniel + {0} unanenn steredoniel + + + gourhedadoù + {0} gourhedad + {0} c'hourhedad + {0} gourhedad + {0} a c'hourhedadoù + {0} gourhedad + + + milmorioù + {0} milmor + {0} vilmor + {0} milmor + {0} a vilmorioù + {0} milmor + luksoù {0} luks @@ -4462,30 +6725,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a luksoù {0} lx - - karatoù - {0} c'harat - {0} garat - {0} c'harat - {0} a garatoù - {0} karat - - - grammoù - {0} gramm - {0} c'hramm - {0} gramm - {0} a c'hrammoù - {0} gramm - - - kilogrammoù - {0} c'hilogramm - {0} gilogramm - {0} c'hilogramm - {0} a gilogrammoù - {0} kilogramm - tonennoù metrek {0} donenn vetrek @@ -4494,13 +6733,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a donennoù metrek {0} tonenn vetrek - - mikrogrammoù - {0} mikrogramm - {0} vikrogramm - {0} mikrogramm - {0} a vikrogrammoù - {0} mikrogramm + + kilogrammoù + {0} c'hilogramm + {0} gilogramm + {0} c'hilogramm + {0} a gilogrammoù + {0} kilogramm + {0} dre gilogramm + + + grammoù + {0} gramm + {0} c'hramm + {0} gramm + {0} a c'hrammoù + {0} gramm + {0} dre cʼhramm miligrammoù @@ -4510,21 +6759,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a viligrammoù {0} miligramm - - oñsoù - {0} oñs - {0} oñs - {0} oñs - {0} a oñsoù - {0} oñs - - - lurioù - {0} lur - {0} lur - {0} lur - {0} a lurioù - {0} lur + + mikrogrammoù + {0} mikrogramm + {0} vikrogramm + {0} mikrogramm + {0} a vikrogrammoù + {0} mikrogramm tonennoù @@ -4534,6 +6775,32 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a donennoù {0} tonenn + + lurioù + {0} lur + {0} lur + {0} lur + {0} a lurioù + {0} lur + {0} dre lur + + + oñsoù + {0} oñs + {0} oñs + {0} oñs + {0} a oñsoù + {0} oñs + {0} dre oñs + + + karatoù + {0} c'harat + {0} garat + {0} c'harat + {0} a garatoù + {0} karat + gigawattoù {0} gigawatt @@ -4542,14 +6809,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a c'higawattoù {0} gigawatt - - kilowattoù - {0} c'hilowatt - {0} gilowatt - {0} c'hilowatt - {0} a gilowattoù - {0} kilowatt - megawattoù {0} megawatt @@ -4558,13 +6817,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a vegawattoù {0} megawatt - - miliwattoù - {0} miliwatt - {0} viliwatt - {0} miliwatt - {0} a viliwattoù - {0} miliwatt + + kilowattoù + {0} c'hilowatt + {0} gilowatt + {0} c'hilowatt + {0} a gilowattoù + {0} kilowatt wattoù @@ -4574,6 +6833,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a wattoù {0} watt + + miliwattoù + {0} miliwatt + {0} viliwatt + {0} miliwatt + {0} a viliwattoù + {0} miliwatt + + + marcʼhadoù nerzh + {0} marc'had nerzh + {0} varc'had nerzh + {0} marc'had nerzh + {0} a varc'hadoù nerzh + {0} marc'had nerzh + hektopaskaloù {0} hektopaskal @@ -4582,6 +6857,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a hektopaskaloù {0} hektopaskal + + lurioù dre veutad karrez + {0} lur dre veutad karrez + {0} lur dre veutad karrez + {0} lur dre veutad karrez + {0} a lurioù dre veutad karrez + {0} lur dre veutad karrez + milibaroù {0} milibar @@ -4590,13 +6873,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a vilibaroù {0} milibar - - karatoù - {0} c'harat - {0} garat - {0} c'harat - {0} a garatoù - {0} karat + + kilometroù dre eur + {0} c'hilometr dre eur + {0} gilometr dre eur + {0} c'hilometr dre eur + {0} a gilometroù dre eur + {0} kilometr dre eur metroù dre eilenn @@ -4606,6 +6889,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a vetroù dre eilenn {0} metr dre eilenn + + miltirioù dre eur + {0} miltir dre eur + {0} viltir dre eur + {0} miltir dre eur + {0} a viltirioù dre eur + {0} miltir dre eur + + + skoulmoù + {0} skoulm + {0} skoulm + {0} skoulm + {0} a skoulmoù + {0} skoulm + + + derezioù + {0} derez + {0} zerez + {0} derez + {0} a zerezioù + {0} derez + derezioù Celsius {0} derez Celsius @@ -4624,22 +6931,28 @@ For terms of use, see http://www.unicode.org/copyright.html kelvinoù + {0} c'helvin + {0} gelvin + {0} c'helvin + {0} a gelvinoù + {0} kelvin - - poezelladoù - {0} poezellad - {0} boezellad - {0} foezellad - {0} a boezelladoù - {0} poezellad + + kilometroù diñs + {0} c'hilometr diñs + {0} gilometr diñs + {0} c'hilometr diñs + {0} a gilometroù diñs + {0} kilometr diñs - - kentilitroù - {0} c'hentilitr - {0} gentilitr - {0} c'hentilitr - {0} a gentilitroù - {0} kentilitr + + metroù diñs + {0} metr diñs + {0} vetr diñs + {0} metr diñs + {0} a vetroù diñs + {0} metr diñs + {0} dre vetr diñs kentimetroù diñs @@ -4648,6 +6961,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} c'hentimetr diñs {0} a gentimetroù diñs {0} kentimetr diñs + {0} dre gentimetr diñs + + + miltirioù diñs + {0} miltir diñs + {0} viltir diñs + {0} miltir diñs + {0} a viltirioù diñs + {0} miltir diñs troatadoù diñs @@ -4665,45 +6987,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a veutadoù diñs {0} meutad diñs - - kilometroù diñs - {0} c'hilometr diñs - {0} gilometr diñs - {0} c'hilometr diñs - {0} a gilometroù diñs - {0} kilometr diñs - - - metroù diñs - {0} metr diñs - {0} vetr diñs - {0} metr diñs - {0} a vetroù diñs - {0} metr diñs - - - miltirioù diñs - {0} miltir diñs - {0} viltir diñs - {0} miltir diñs - {0} a viltirioù diñs - {0} miltir diñs - - - dekilitroù - {0} dekilitr - {0} zekilitr - {0} dekilitr - {0} a zekilitroù - {0} dekilitr - - - gallonoù - {0} gallon - {0} c'hallon - {0} gallon - {0} a c'hallonoù - {0} gallon + + megalitroù + {0} megalitr + {0} vegalitr + {0} megalitr + {0} a vegalitroù + {0} megalitr hektolitroù @@ -4720,14 +7010,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litr {0} a litroù {0} litr + {0} dre litr - - megalitroù - {0} megalitr - {0} vegalitr - {0} megalitr - {0} a vegalitroù - {0} megalitr + + dekilitroù + {0} dekilitr + {0} zekilitr + {0} dekilitr + {0} a zekilitroù + {0} dekilitr + + + kentilitroù + {0} c'hentilitr + {0} gentilitr + {0} c'hentilitr + {0} a gentilitroù + {0} kentilitr mililitroù @@ -4737,6 +7036,39 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a vililitroù {0} mililitr + + pintoù metrek + {0} pint metrek + {0} bint metrek + {0} fint metrek + {0} a bintoù metrek + {0} pint metrek + + + poezelladoù + {0} poezellad + {0} boezellad + {0} foezellad + {0} a boezelladoù + {0} poezellad + + + gallonoù + {0} gallon + {0} c'hallon + {0} gallon + {0} a c'hallonoù + {0} gallon + {0} dre cʼhallon + + + kardoù + {0} c'hard + {0} gard + {0} c'hard + {0} a gardoù + {0} kard + pintoù {0} pint @@ -4745,8 +7077,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a bintoù {0} pint + + {0} Reter + {0} Norzh + {0} Su + {0} Kornôg + + + {0}/{1} + m/s² {0} m/s² @@ -4755,9 +7096,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² - - ° - rad {0} rad @@ -4766,13 +7104,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} rad {0} rad - - ac - {0} ac - {0} ac - {0} ac - {0} ac - {0} ac + + deg + {0} deg + {0} deg + {0} deg + {0} deg + {0} deg + + + km² + {0} km² + {0} km² + {0} km² + {0} km² + {0} km² ha @@ -4782,6 +7128,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha + + + {0} m² + {0} m² + {0} m² + {0} m² + {0} m² + {0}/m² + cm² {0} cm² @@ -4789,6 +7144,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cm² {0} cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + {0} mi² + {0} mi² + {0} mi² + + + ac + {0} ac + {0} ac + {0} ac + {0} ac + {0} ac ft² @@ -4805,30 +7177,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² - {0} km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - {0} m² - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - {0} mi² - {0} mi² - {0} mi² + + kt + {0} kt + {0} kt + {0} kt + {0} kt + {0} kt l/km @@ -4838,77 +7195,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l/km {0} l/km - - bit - {0} bit - {0} bit - {0} bit - {0} bit - {0} bit + + l/100km + {0} l/100km + {0} l/100km + {0} l/100km + {0} l/100km + {0} l/100km - - o - {0} o - {0} o - {0} o - {0} o - {0} o - - - Gb - {0} Gb - {0} Gb - {0} Gb - {0} Gb - {0} Gb - - - Go - {0} Go - {0} Go - {0} Go - {0} Go - {0} Go - - - kb - {0} kb - {0} kb - {0} kb - {0} kb - {0} kb - - - ko - {0} ko - {0} ko - {0} ko - {0} ko - {0} ko - - - Mb - {0} Mb - {0} Mb - {0} Mb - {0} Mb - {0} Mb - - - Mo - {0} Mo - {0} Mo - {0} Mo - {0} Mo - {0} Mo - - - Tb - {0} Tb - {0} Tb - {0} Tb - {0} Tb - {0} Tb + + mi/gal + {0} mi/gal + {0} mi/gal + {0} mi/gal + {0} mi/gal + {0} mi/gal To @@ -4918,6 +7219,95 @@ For terms of use, see http://www.unicode.org/copyright.html {0} To {0} To + + Tbit + {0} Tbit + {0} Tbit + {0} Tbit + {0} Tbit + {0} Tbit + + + Go + {0} Go + {0} Go + {0} Go + {0} Go + {0} Go + + + Gbit + {0} Gbit + {0} Gbit + {0} Gbit + {0} Gbit + {0} Gbit + + + Mo + {0} Mo + {0} Mo + {0} Mo + {0} Mo + {0} Mo + + + Mbit + {0} Mbit + {0} Mbit + {0} Mbit + {0} Mbit + {0} Mbit + + + ko + {0} ko + {0} ko + {0} ko + {0} ko + {0} ko + + + kbit + {0} kbit + {0} kbit + {0} kbit + {0} kbit + {0} kbit + + + o + {0} o + {0} o + {0} o + {0} o + {0} o + + + bit + {0} bit + {0} bit + {0} bit + {0} bit + {0} bit + + + kved + {0} kved + {0} kved + {0} kved + {0} kved + {0} kved + + + bl. + {0} bl. + {0} bl. + {0} bl. + {0} bl. + {0} bl. + {0}/bl. + d {0} d @@ -4925,6 +7315,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} d {0} d {0} d + {0}/d h @@ -4935,22 +7326,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0}/h - - μs - {0} μs - {0} μs - {0} μs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - {0} ms - {0} ms - {0} ms - min {0} min @@ -4958,14 +7333,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} min {0} min {0} min - - - ns - {0} ns - {0} ns - {0} ns - {0} ns - {0} ns + {0}/min s @@ -4976,6 +7344,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} s {0}/s + + ms + {0} ms + {0} ms + {0} ms + {0} ms + {0} ms + + + μs + {0} μs + {0} μs + {0} μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns + {0} ns + {0} ns + {0} ns + A {0} A @@ -5008,22 +7400,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V - - cal - {0} cal - {0} cal - {0} cal - {0} cal - {0} cal - - - J - {0} J - {0} J - {0} J - {0} J - {0} J - kcal {0} kcal @@ -5032,6 +7408,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kcal {0} kcal + + cal + {0} cal + {0} cal + {0} cal + {0} cal + {0} cal + kJ {0} kJ @@ -5040,6 +7424,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kJ {0} kJ + + J + {0} J + {0} J + {0} J + {0} J + {0} J + kWh {0} kWh @@ -5056,13 +7448,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz - {0} Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz + {0} MHz + {0} MHz + {0} MHz kHz @@ -5072,21 +7464,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz - {0} MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz + {0} Hz + {0} Hz + {0} Hz - - cm - {0} cm - {0} cm - {0} cm - {0} cm - {0} cm + + km + {0} km + {0} km + {0} km + {0} km + {0} km + {0}/km + + + m + {0} m + {0} m + {0} m + {0} m + {0} m + {0}/m dm @@ -5096,53 +7498,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dm {0} dm - - ft - {0} ft - {0} ft - {0} ft - {0} ft - {0} ft - - - in - {0} in - {0} in - {0} in - {0} in - {0} in - - - km - {0} km - {0} km - {0} km - {0} km - {0} km - - - m - {0} m - {0} m - {0} m - {0} m - {0} m - - - µm - {0} µm - {0} µm - {0} µm - {0} µm - {0} µm - - - mi - {0} mi - {0} mi - {0} mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0} cm + {0} cm + {0} cm + {0}/cm mm @@ -5152,6 +7515,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mm {0} mm + + µm + {0} µm + {0} µm + {0} µm + {0} µm + {0} µm + nm {0} nm @@ -5160,22 +7531,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - {0} nmi - {0} nmi - {0} nmi - - - pc - {0} pc - {0} pc - {0} pc - {0} pc - {0} pc - pm {0} pm @@ -5184,6 +7539,75 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + mi + {0} mi + {0} mi + {0} mi + {0} mi + {0} mi + + + ft + {0} ft + {0} ft + {0} ft + {0} ft + {0} ft + {0}/ft + + + in + {0} in + {0} in + {0} in + {0} in + {0} in + {0}/in + + + pc + {0} pc + {0} pc + {0} pc + {0} pc + {0} pc + + + ly + + + au + {0} au + {0} au + {0} au + {0} au + {0} au + + + fm + {0} fm + {0} fm + {0} fm + {0} fm + {0} fm + + + nmi + {0} nmi + {0} nmi + {0} nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + {0} smi + {0} smi + {0} smi + lx {0} lx @@ -5192,30 +7616,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lx {0} lx - - CD - {0} CD - {0} CD - {0} CD - {0} CD - {0} CD - - - g - {0} g - {0} g - {0} g - {0} g - {0} g - - - kg - {0} kg - {0} kg - {0} kg - {0} kg - {0} kg - t {0} t @@ -5224,13 +7624,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} t {0} t - - µg - {0} µg - {0} µg - {0} µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0} kg + {0} kg + {0} kg + {0}/kg + + + g + {0} g + {0} g + {0} g + {0} g + {0} g + {0}/g mg @@ -5240,29 +7650,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mg {0} mg - - oz - {0} oz - {0} oz - {0} oz - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - {0} oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb - {0} lb - {0} lb - {0} lb + + µg + {0} µg + {0} µg + {0} µg + {0} µg + {0} µg tn @@ -5272,6 +7666,40 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tn {0} tn + + lb + {0} lb + {0} lb + {0} lb + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0} oz + {0} oz + {0} oz + {0}/oz + + + oz t + {0} oz t + {0} oz t + {0} oz t + {0} oz t + {0} oz t + + + CD + {0} CD + {0} CD + {0} CD + {0} CD + {0} CD + GW {0} GW @@ -5280,14 +7708,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GW {0} GW - - kW - {0} kW - {0} kW - {0} kW - {0} kW - {0} kW - MW {0} MW @@ -5296,13 +7716,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} MW {0} MW - - mW - {0} mW - {0} mW - {0} mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW + {0} kW + {0} kW + {0} kW W @@ -5312,6 +7732,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + mW + {0} mW + {0} mW + {0} mW + {0} mW + {0} mW + + + hp + {0} hp + {0} hp + {0} hp + {0} hp + {0} hp + hPa {0} hPa @@ -5320,6 +7756,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hPa {0} hPa + + mmHg + {0} mmHg + {0} mmHg + {0} mmHg + {0} mmHg + {0} mmHg + + + lb/in² + {0} lb/in² + {0} lb/in² + {0} lb/in² + {0} lb/in² + {0} lb/in² + + + inHg + {0} inHg + {0} inHg + {0} inHg + {0} inHg + {0} inHg + mbar {0} mbar @@ -5328,14 +7788,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mbar {0} mbar - - kt - {0} kt - {0} kt - {0} kt - {0} kt - {0} kt - km/h {0} km/h @@ -5360,6 +7812,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + nd + {0} nd + {0} nd + {0} nd + {0} nd + {0} nd + + + ° + {0}° + {0}° + {0}° + {0}° + {0}° + °C {0}°C @@ -5384,13 +7852,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - cl - {0} cl - {0} cl - {0} cl - {0} cl - {0} cl + + km³ + {0} km³ + {0} km³ + {0} km³ + {0} km³ + {0} km³ + + + + {0} m³ + {0} m³ + {0} m³ + {0} m³ + {0} m³ + {0}/m³ cm³ @@ -5399,6 +7876,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cm³ {0} cm³ {0} cm³ + {0}/cm³ + + + mi³ + {0} mi³ + {0} mi³ + {0} mi³ + {0} mi³ + {0} mi³ ft³ @@ -5416,45 +7902,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in³ {0} in³ - - km³ - {0} km³ - {0} km³ - {0} km³ - {0} km³ - {0} km³ - - - - {0} m³ - {0} m³ - {0} m³ - {0} m³ - {0} m³ - - - mi³ - {0} mi³ - {0} mi³ - {0} mi³ - {0} mi³ - {0} mi³ - - - dl - {0} dl - {0} dl - {0} dl - {0} dl - {0} dl - - - gal - {0} gal - {0} gal - {0} gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml + {0} Ml + {0} Ml + {0} Ml hl @@ -5471,14 +7925,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml - {0} Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + {0} dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl + {0} cl + {0} cl + {0} cl ml @@ -5488,6 +7951,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ml {0} ml + + mpt + {0} mpt + {0} mpt + {0} mpt + {0} mpt + {0} mpt + + + gal + {0} gal + {0} gal + {0} gal + {0} gal + {0} gal + {0}/gal + + + qt + {0} qt + {0} qt + {0} qt + {0} qt + {0} qt + pt {0} pt @@ -5496,35 +7984,691 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pt {0} pt + + {0} R + {0} N + {0} S + {0} K + + + {0}/{1} + + + m/s² + {0} m/s² + {0} m/s² + {0} m/s² + {0} m/s² + {0} m/s² + + + rad + {0} rad + {0} rad + {0} rad + {0} rad + {0} rad + + ° {0}° {0}° {0}° {0}° {0}° + + km² + {0} km² + {0} km² + {0} km² + {0} km² + {0} km² + + + ha + {0} ha + {0} ha + {0} ha + {0} ha + {0} ha + + + + {0} m² + {0} m² + {0} m² + {0} m² + {0} m² + {0}/m² + + + cm² + {0} cm² + {0} cm² + {0} cm² + {0} cm² + {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + {0} mi² + {0} mi² + {0} mi² + + + ac + {0} ac + {0} ac + {0} ac + {0} ac + {0} ac + + + ft² + {0} ft² + {0} ft² + {0} ft² + {0} ft² + {0} ft² + + + in² + {0} in² + {0} in² + {0} in² + {0} in² + {0} in² + {0}/in² + + + kt + {0} kt + {0} kt + {0} kt + {0} kt + {0} kt + + + l/km + {0} l/km + {0} l/km + {0} l/km + {0} l/km + {0} l/km + + + l/100km + {0} l/100km + {0} l/100km + {0} l/100km + {0} l/100km + {0} l/100km + + + mi/gal + {0} mi/gal + {0} mi/gal + {0} mi/gal + {0} mi/gal + {0} mi/gal + + + To + {0} To + {0} To + {0} To + {0} To + {0} To + + + Tb + {0} Tb + {0} Tb + {0} Tb + {0} Tb + {0} Tb + + + Go + {0} Go + {0} Go + {0} Go + {0} Go + {0} Go + + + Gb + {0} Gb + {0} Gb + {0} Gb + {0} Gb + {0} Gb + + + Mo + {0} Mo + {0} Mo + {0} Mo + {0} Mo + {0} Mo + + + Mb + {0} Mb + {0} Mb + {0} Mb + {0} Mb + {0} Mb + + + ko + {0} ko + {0} ko + {0} ko + {0} ko + {0} ko + + + kb + {0} kb + {0} kb + {0} kb + {0} kb + {0} kb + + + o + {0} o + {0} o + {0} o + {0} o + {0} o + + + b + {0} b + {0} b + {0} b + {0} b + {0} b + + + b + {0} b + {0} b + {0} b + {0} b + {0} b + {0}/b + + + {0}/d + + + {0}/min + + Ω {0} Ω {0} Ω {0} Ω {0} Ω {0} Ω + + km + {0} km + {0} km + {0} km + {0} km + {0} km + {0}/km + + + m + {0} m + {0} m + {0} m + {0} m + {0} m + {0}/m + + + dm + {0} dm + {0} dm + {0} dm + {0} dm + {0} dm + + + cm + {0} cm + {0} cm + {0} cm + {0} cm + {0} cm + {0}/cm + + + mm + {0} mm + {0} mm + {0} mm + {0} mm + {0} mm + + + µm + {0} µm + {0} µm + {0} µm + {0} µm + {0} µm + + + nm + {0} nm + {0} nm + {0} nm + {0} nm + {0} nm + + + pm + {0} pm + {0} pm + {0} pm + {0} pm + {0} pm + + + mi + {0} mi + {0} mi + {0} mi + {0} mi + {0} mi + + {0}′ {0}′ {0}′ {0}′ {0}′ + {0}/′ + {0}″ {0}″ {0}″ {0}″ {0}″ + {0}/″ + + + pc + {0} pc + {0} pc + {0} pc + {0} pc + {0} pc + + + au + {0} au + {0} au + {0} au + {0} au + {0} au + + + fm + {0} fm + {0} fm + {0} fm + {0} fm + {0} fm + + + nmi + {0} nmi + {0} nmi + {0} nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + {0} smi + {0} smi + {0} smi + + + lx + {0} lx + {0} lx + {0} lx + {0} lx + {0} lx + + + t + {0} t + {0} t + {0} t + {0} t + {0} t + + + kg + {0} kg + {0} kg + {0} kg + {0} kg + {0} kg + {0}/kg + + + g + {0} g + {0} g + {0} g + {0} g + {0} g + {0}/g + + + mg + {0} mg + {0} mg + {0} mg + {0} mg + {0} mg + + + µg + {0} µg + {0} µg + {0} µg + {0} µg + {0} µg + + + tn + {0} tn + {0} tn + {0} tn + {0} tn + {0} tn + + + lb + {0} lb + {0} lb + {0} lb + {0} lb + {0} lb + {0}/lb + + + {0}/oz + + + CD + {0} CD + {0} CD + {0} CD + {0} CD + {0} CD + + + hp + {0} hp + {0} hp + {0} hp + {0} hp + {0} hp + + + hPa + {0} hPa + {0} hPa + {0} hPa + {0} hPa + {0} hPa + + + mmHg + {0} mmHg + {0} mmHg + {0} mmHg + {0} mmHg + {0} mmHg + + + lb/in² + {0} lb/in² + {0} lb/in² + {0} lb/in² + {0} lb/in² + {0} lb/in² + + + ″Hg + {0}″Hg + {0}″Hg + {0}″Hg + {0}″Hg + {0}″Hg + + + mbar + {0} mbar + {0} mbar + {0} mbar + {0} mbar + {0} mbar + + + km/h + {0} km/h + {0} km/h + {0} km/h + {0} km/h + {0} km/h + + + m/s + {0} m/s + {0} m/s + {0} m/s + {0} m/s + {0} m/s + + + mi/h + {0} mi/h + {0} mi/h + {0} mi/h + {0} mi/h + {0} mi/h + + + n + {0} n + {0} n + {0} n + {0} n + {0} n + + + ° + {0}° + {0}° + {0}° + {0}° + {0}° + + + °C + {0}°C + {0}°C + {0}°C + {0}°C + {0}°C + + + °F + {0}°F + {0}°F + {0}°F + {0}°F + {0}°F + + + K + {0} K + {0} K + {0} K + {0} K + {0} K + + + km³ + {0} km³ + {0} km³ + {0} km³ + {0} km³ + {0} km³ + + + + {0} m³ + {0} m³ + {0} m³ + {0} m³ + {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0}/cm³ + + + mi³ + {0} mi³ + {0} mi³ + {0} mi³ + {0} mi³ + {0} mi³ + + + ft³ + {0} ft³ + {0} ft³ + {0} ft³ + {0} ft³ + {0} ft³ + + + in³ + {0} in³ + {0} in³ + {0} in³ + {0} in³ + {0} in³ + + + Ml + {0} Ml + {0} Ml + {0} Ml + {0} Ml + {0} Ml + + + hl + {0} hl + {0} hl + {0} hl + {0} hl + {0} hl + + + l + {0} l + {0} l + {0} l + {0} l + {0} l + {0}/l + + + dl + {0} dl + {0} dl + {0} dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl + {0} cl + {0} cl + {0} cl + + + ml + {0} ml + {0} ml + {0} ml + {0} ml + {0} ml + + + mpt + {0} mpt + {0} mpt + {0} mpt + {0} mpt + {0} mpt + + + {0}/gal + + + qt + {0} qt + {0} qt + {0} qt + {0} qt + {0} qt + + + pt + {0} pt + {0} pt + {0} pt + {0} pt + {0} pt @@ -5537,6 +8681,32 @@ For terms of use, see http://www.unicode.org/copyright.html m:ss + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + y diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/br_FR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/br_FR.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/br_FR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/br_FR.xml index 331f979968b..aae1a1393fe 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/br_FR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/br_FR.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/brx.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/brx.xml similarity index 97% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/brx.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/brx.xml index dc7293d62ac..dfb5effb814 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/brx.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/brx.xml @@ -1,13 +1,12 @@ - - - + @@ -610,7 +609,6 @@ For terms of use, see http://www.unicode.org/copyright.html एंगीला अल्बानिया आर्मेनिया - नीदरलैंड्स एंटिलीज़ अंगोला अंटार्कटिका अर्जेण्टिना @@ -885,20 +883,20 @@ For terms of use, see http://www.unicode.org/copyright.html मुद्रा - पारम्पारिक चीनी वर्गीकरण बीग फ़ाईव - बौद्ध पंचांग - चीनी पंचांग - सरलीकृत चीनी वर्गीकरण जीबी2312 - ग्रेगरीअन पंचांग - यहुदी पंचांग - इस्लामी पंचांग - इस्लामी नागरिक पंचांग - जापानी पंचांग - दूरभाष निर्देशिका वर्गीकरण - पिनयीन वर्गीकरण - चीनी गणतंत्र पंचांग - स्ट्रोक वर्गीकरण - पारम्पारिक वर्गीकरण + बौद्ध पंचांग + चीनी पंचांग + ग्रेगरीअन पंचांग + यहुदी पंचांग + इस्लामी पंचांग + इस्लामी नागरिक पंचांग + जापानी पंचांग + चीनी गणतंत्र पंचांग + पारम्पारिक चीनी वर्गीकरण बीग फ़ाईव + सरलीकृत चीनी वर्गीकरण जीबी2312 + दूरभाष निर्देशिका वर्गीकरण + पिनयीन वर्गीकरण + स्ट्रोक वर्गीकरण + पारम्पारिक वर्गीकरण मिथार खिलमिथार @@ -948,7 +946,10 @@ For terms of use, see http://www.unicode.org/copyright.html d - EEEE,dd MMMM GGGGy + y G + MMM, y G + MMM d, y G + E, MMM d, y G h:mm a HH:mm HH:mm:ss @@ -1052,6 +1053,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + फुं + बेलासे + फुं बेलासे @@ -1111,7 +1116,10 @@ For terms of use, see http://www.unicode.org/copyright.html d - EEEE,dd MMMM GGGGy + y G + MMM, y G + MMM d, y G + E, MMM d, y G h:mm a HH:mm HH:mm:ss @@ -3286,6 +3294,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##,##0.00 + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0M + ¤ 0M + ¤ 00M + ¤ 00M + ¤ 000M + ¤ 000M + ¤ 0G + ¤ 0G + ¤ 00G + ¤ 00G + ¤ 000G + ¤ 000G + ¤ 0T + ¤ 0T + ¤ 00T + ¤ 00T + ¤ 000T + ¤ 000T + + @@ -3295,7 +3331,7 @@ For terms of use, see http://www.unicode.org/copyright.html संयुक्त अरब अमीरात का दिर्हाम - अफ़ग़ानी 1927-2002 + अफ़ग़ानी 1927–2002 अफ़ग़ानी @@ -4093,6 +4129,21 @@ For terms of use, see http://www.unicode.org/copyright.html + + साल + {0} साल + {0} साल + + + महीने + {0} महीना + {0} महीने + + + सप्ताह + {0} सप्ताह + {0} सप्ताह + सान {0} सान @@ -4108,28 +4159,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} मिन. {0} मिन. - - महीने - {0} महीना - {0} महीने - सेकं. {0} सेकं. {0} सेकं. - - सप्ताह - {0} सप्ताह - {0} सप्ताह - - - साल - {0} साल - {0} साल - + + साल + + + महीने + + + सप्ताह + सान @@ -4139,18 +4184,9 @@ For terms of use, see http://www.unicode.org/copyright.html मिन. - - महीने - सेकं. - - सप्ताह - - - साल - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/brx_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/brx_IN.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/brx_IN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/brx_IN.xml index e7bf69b258a..897824fc467 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/brx_IN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/brx_IN.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bs.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bs.xml similarity index 93% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bs.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bs.xml index 84b3e3fd0b7..287cdf1cf16 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bs.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bs.xml @@ -1,13 +1,12 @@ - - - + @@ -66,6 +65,7 @@ For terms of use, see http://www.unicode.org/copyright.html bena bafut bugarski + zapadni belučki bojpuri bislama bikol @@ -112,7 +112,7 @@ For terms of use, see http://www.unicode.org/copyright.html kašubijanski staroslovenski čuvaški - cy + velški danski dakota dargva @@ -294,6 +294,7 @@ For terms of use, see http://www.unicode.org/copyright.html laoški mongo lozi + sjeverni luri litvanski luba-katanga luba-lulua @@ -342,12 +343,14 @@ For terms of use, see http://www.unicode.org/copyright.html burmanski myene erzija + mazanderanski nauru neapolitanski nama norveški bokmal sjeverni ndebele niski nemački + niskosaksonski nepalski nevari ndonga @@ -423,6 +426,7 @@ For terms of use, see http://www.unicode.org/copyright.html sicilijanski škotski sindi + južnokurdski sjeverni sami seneca sena @@ -454,14 +458,14 @@ For terms of use, see http://www.unicode.org/copyright.html svati saho sesoto - sudanski + sundanski sukuma susu sumerski švedski svahili + kongoanski swahili komorski - kongoanski swahili klasični sirijski sirijski tamilski @@ -482,7 +486,7 @@ For terms of use, see http://www.unicode.org/copyright.html tlingit tamašek tsvana - tonga + tonganski njasa tonga tok pisin turski @@ -502,7 +506,7 @@ For terms of use, see http://www.unicode.org/copyright.html ugaritski ukrajinski umbundu - nepoznati ili nevažeći jezik + nepoznati jezik urdu uzbečki vai @@ -516,6 +520,7 @@ For terms of use, see http://www.unicode.org/copyright.html valamo varej vašo + varlpiri volof kalmik kosa @@ -589,9 +594,9 @@ For terms of use, see http://www.unicode.org/copyright.html - + - + @@ -670,7 +675,6 @@ For terms of use, see http://www.unicode.org/copyright.html - @@ -704,7 +708,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -1067,104 +1070,117 @@ For terms of use, see http://www.unicode.org/copyright.html Numeričko poredavanje Jačina poredavanja Valuta - brojevi + Satni ciklus (12 ili 24) + Stil završetka reda + Mjerni sistem + Brojevi Vremenska zona Varijanta zemlje/jezika Poredaj kao simbole Privatna upotreba - arapsko-indijske znamenke - proširene arapsko-indijske znamenke - jermenski brojevi - mali jermenski brojevi - znamenke bengalskog pisma + Budistički kalendar + Kineski kalendar + Koptski kalendar + Dangi kalendar + Etiopski kalendar + Etiopski kalendar "Amete Alem" + Gregorijanski kalendar + Hebrejski kalendar + Indijski nacionalni kalendar + Islamski kalendar + Islamski civilni kalendar + ISO-8601 kalendar + Japanski kalendar + Perzijski kalendar + Kalendar Republike Kine + Poredaj simbole + Poredaj zanemarujući simbole + Poredaj naglaske normalno + Poredaj naglaske obrnuto + Prvo poredaj mala slova + Poredaj po normalnom poretku veličine slova + Poredaj prvo velika slova + Poredaj zanemarujući veličinu + Poredaj u skladu s veličinom slova + Poredaj pismo kana zasebno + Poredaj pismo kana drugačije - Tradicionalno kinesko sortiranje - Budistički kalendar - Kineski kalendar - Koptski kalendar - Dangi kalendar - znamenke pisma devanagari - rječničko razvrstavanje - Standardno Unicode razvrstavanje - etiopski brojevi - Etiopski kalendar - Etiopski kalendar "Amete Alem" - Financijski brojevi - široki brojevi - Pojednostavljeno kinesko sortiranje - gruzijski brojevi - Gregorijanski kalendar - grčki brojevi - mali grčki brojevi - gudžaratske znamenke - znamenke pisma gurmuki - kineski decimalni brojevi - pojednostavljeni kineski brojevi - pojednostavljeni kineski finansijski brojevi - tradicionalni kineski brojevi - tradicionalni kineski finansijski brojevi - hebrejski brojevi - Hebrejski kalendar - Poredaj sve - Indijski nacionalni kalendar - Islamski kalendar - Islamski civilni kalendar - ISO-8601 kalendar - Japanski kalendar - japanski brojevi - japanski finansijski brojevi - kmerske znamenke - znamenke pisma kanada - laoske znamenke - arapski brojevi - Prvo poredaj mala slova - malajalamske znamenke - Mongolske znamenke - mijanmarske znamenke - Izvorne znamenke - Poredaj naglaske normalno - Poredaj po normalnom poretku veličine slova - Poredaj zanemarujući veličinu - Poredaj pismo kana zasebno - Poredaj bez normalizacije - Poredaj znamenke pojedinačno - Poredaj simbole - orijske znamenke - Perzijski kalendar - Sortiranje kao telefonski imenik - Fonetski poredak - Pinjin sortiranje - Poredaj samo po osnovnim slovima - Poredaj po naglascima/veličini/širini/pismu kana - reformirano razvrstavanje - Kalendar Republike Kine - rimski brojevi - mali rimski brojevi - Općenito pretraživanje - Pretraživanje po početnom suglasniku hangula - Poredaj po naglasku - Poredaj zanemarujući simbole - Standardno razvrstavanje - Sortiranje po broju crta - tamilski brojevi - tamilske znamenke - znamenke teluškog pisma - Poredaj po naglascima/veličini/širini - tajske znamenke - tibetske znamenke - Tradicionalno sortiranje - Tradicionalni brojevi - razvrstavanje prema korijenu i potezu - Poredaj prvo velika slova - Vai znamenke - Poredaj naglaske obrnuto - Poredaj u skladu s veličinom slova - Poredaj pismo kana drugačije - Poredaj unikod normalizirano - Poredaj znamenke numerički - zhuyin razvrstavanje + Tradicionalno kinesko sortiranje + rječničko razvrstavanje + Standardno Unicode razvrstavanje + Pojednostavljeno kinesko sortiranje + Sortiranje kao telefonski imenik + Fonetski poredak + Pinjin sortiranje + reformirano razvrstavanje + Općenito pretraživanje + Pretraživanje po početnom suglasniku hangula + Standardno razvrstavanje + Sortiranje po broju crta + Tradicionalno sortiranje + razvrstavanje prema korijenu i potezu + zhuyin razvrstavanje + Poredaj bez normalizacije + Poredaj unikod normalizirano + Poredaj znamenke pojedinačno + Poredaj znamenke numerički + Poredaj sve + Poredaj samo po osnovnim slovima + Poredaj po naglascima/veličini/širini/pismu kana + Poredaj po naglasku + Poredaj po naglascima/veličini/širini + 12-satni sistem (0-11) + 12-satni sistem (1-12) + 24- satni sistem (0-23) + 24-satni sistem (1-24) + Opušteni stil završetka reda + Normalni stil završetka reda + Strogi stil završetka reda + Metrički sistem + Imperijalni mjerni sistem + Američki mjerni sistem + arapsko-indijske brojke + proširene arapsko-indijske brojke + jermenski brojevi + mali jermenski brojevi + brojke bengalskog pisma + brojke pisma devanagari + etiopski brojevi + Financijski brojevi + Široki brojevi + gruzijski brojevi + grčki brojevi + mali grčki brojevi + gudžaratske brojke + brojke pisma gurmuki + kineski decimalni brojevi + pojednostavljeni kineski brojevi + pojednostavljeni kineski finansijski brojevi + tradicionalni kineski brojevi + tradicionalni kineski finansijski brojevi + hebrejski brojevi + japanski brojevi + japanski finansijski brojevi + kmerske brojke + brojke pisma kanada + laoske brojke + arapski brojevi + malajalamske brojke + Mongolske znamenke + mijanmarske brojke + Izvorne znamenke + orijske brojke + rimski brojevi + mali rimski brojevi + tamilski brojevi + tamilske brojke + brojke teluškog pisma + tajlandske brojke + tibetske brojke + Tradicionalni brojevi + Vai znamenke BGN @@ -1214,9 +1230,9 @@ For terms of use, see http://www.unicode.org/copyright.html - [a b c ć č d đ {dž} e f g h i j k l {lj} m n {nj} o p r s š t u v z ž] + [a b c č ć d {dž} đ e f g h i j k l {lj} m n {nj} o p r s š t u v z ž] [q w x y] - [A B C Ć Č D {DŽ} E F G H I J K L {LJ} M N {NJ} O P Q R S Š T U V W X Y Z Ž] + [A B C Č Ć D {DŽ} E F G H I J K L {LJ} M N {NJ} O P Q R S Š T U V W X Y Z Ž] [‐ – — , ; \: ! ? . … ' ‘ ’ " “ ” ( ) \[ \] @ * / ′ ″] {0}… … {0} @@ -1311,6 +1327,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E, dd. y. G MMM y. G @@ -1655,37 +1672,51 @@ For terms of use, see http://www.unicode.org/copyright.html - popodne - ujutro - navečer - prijepodne - noću - podne + ponoć + prijepodne + podne + popodne + jutro + poslijepodne + večer + noć - popodne + ponoć + prijepodne + podne + popodne + jutro + poslijepodne + večer + noć + + + ponoć + prije podne + podne + popodne + jutro + poslijepodne + večer + noć + + + + prijepodne - ujutro - navečer - prijepodne - noću podne popodne + u ponoć prije podne podne popodne - - - - - popodne - ujutro - navečer - prijepodne - noću - podne + jutro + poslijepodne + veče + noć @@ -1699,7 +1730,7 @@ For terms of use, see http://www.unicode.org/copyright.html p. n. e. - pr. n. e. + pr.n.e. n. e. n.e. @@ -1791,6 +1822,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm hh:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L dd.MM. E, dd.MM. @@ -2218,7 +2253,7 @@ For terms of use, see http://www.unicode.org/copyright.html dan prekjuče - juče + jučer danas sutra prekosutra @@ -2504,7 +2539,7 @@ For terms of use, see http://www.unicode.org/copyright.html in sr_Latn). Fill in the other translations from data in sr_Latn. --> - Nepoznati ili nevažeći grad + Nepoznati grad Andora @@ -4852,6 +4887,46 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 hilj'.' ¤ + 0 hilj'.' ¤ + 0 hilj'.' ¤ + 00 hilj'.' ¤ + 00 hilj'.' ¤ + 00 hilj'.' ¤ + 000 hilj'.' ¤ + 000 hilj'.' ¤ + 000 hilj'.' ¤ + 0 mil'.' ¤ + 0 mil'.' ¤ + 0 mil'.' ¤ + 00 mil'.' ¤ + 00 mil'.' ¤ + 00 mil'.' ¤ + 000 mil'.' ¤ + 000 mil'.' ¤ + 000 mil'.' ¤ + 0 mlr'.' ¤ + 0 mlr'.' ¤ + 0 mlr'.' ¤ + 00 mlr'.' ¤ + 00 mlr'.' ¤ + 00 mlr'.' ¤ + 000 mlr'.' ¤ + 000 mlr'.' ¤ + 000 mlr'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + + {0} {1} {0} {1} {0} {1} @@ -5232,7 +5307,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kanadski dolar kanadski dolar - Kanadska dolara + kanadski dolari kanadskih dolara CAD $ @@ -5624,7 +5699,7 @@ For terms of use, see http://www.unicode.org/copyright.html Hrvatska kuna hrvatska kuna - Hrvatske kune + hrvatske kune hrvatskih kuna kn @@ -5939,9 +6014,9 @@ For terms of use, see http://www.unicode.org/copyright.html Malagaski ariari - malagaski ariari + malgaški arijari malagaska ariarija - madagaskarski ariariji + malgaški arijariji MGA @@ -6026,7 +6101,7 @@ For terms of use, see http://www.unicode.org/copyright.html Malavska kvača - malavska kvača + malavijska kvača malavske kvače malavijskih kvača MWK @@ -6114,8 +6189,8 @@ For terms of use, see http://www.unicode.org/copyright.html Norveška kruna - Norveška kuna - Norveške kune + norveška kruna + norveških kruna norveških kruna NOK @@ -6382,7 +6457,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dobra Sao Toma i Principa - dobra Sao Toma i Principa + svetotomska dobra dobre Sao Toma i Principa dobri Sao Toma i Principa STD @@ -6484,7 +6559,7 @@ For terms of use, see http://www.unicode.org/copyright.html Trinidadtobaški dolar trinidadtobaški dolar trinidadtobaška dolara - trinidadtobaški dolar + trinidadtobaški dolari TTD $ @@ -6571,10 +6646,10 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Uzbekistanski som + uzbekistanski som uzbekistanski som uzbekistanska soma - uzbekistanskih soma + uzbekistanski somi UZS @@ -6619,10 +6694,10 @@ For terms of use, see http://www.unicode.org/copyright.html WST - CFA franak BEAC - CFA franak BEAC - CFA franka BEAC - CFA franaka BEAC + centralnoafrički franak CFA + centralnoafrički franak CFA + centralnoafrička franka CFA + centralnoafričkih franaka CFA FCFA @@ -6693,10 +6768,10 @@ For terms of use, see http://www.unicode.org/copyright.html francuskih UIC-franaka - CFA franak BCEAO - CFA franak BCEAO - CFA franka BCEAO - CFA franaka BCEAO + zapadnoafrički franak CFA + zapadnoafrički franak CFA + zapadnoafrički franci CFA + zapadnoafrički franci CFA CFA @@ -6852,6 +6927,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metra u sekundi za sekundu {0} metara u sekundi za sekundu + + okret + {0} okret + {0} okreta + {0} okreta + + + radijani + {0} radijan + {0} radijana + {0} radijana + + + stepeni + {0} stepen + {0} stepena + {0} stepeni + lučni minuti {0} lučni minut @@ -6864,23 +6957,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lučne sekunde {0} lučnih sekundi - - stepeni - {0} stepen - {0} stepena - {0} stepeni - - - radijani - {0} radijan - {0} radijana - {0} radijana - - - katastarskih jutara - {0} katastarsko jutro - {0} katastarska jutra - {0} katastarskih jutara + + kvadratni kilometri + {0} kvadratni kilometar + {0} kvadratna kilometra + {0} kvadratnih kilometara hektara @@ -6888,11 +6969,37 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hektra {0} hektara + + kvadratni metri + {0} kvadratni metar + {0} kvadratna metra + {0} kvadratnih metara + {0} po kvadratnom metru + kvadratni centimetri {0} kvadratni centimetar {0} kvadratna centimetra {0} kvadratnih centimetara + {0} po kvadratnom centimetru + + + kvadratne milje + {0} kvadratna milja + {0} kvadratne milje + {0} kvadratnih milja + + + katastarskih jutara + {0} katastarsko jutro + {0} katastarska jutra + {0} katastarskih jutara + + + kvadratni jard + {0} kvadratni jard + {0} kvadratna jarda + {0} kvadratnih jarda kvadratne stope @@ -6905,30 +7012,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kvadratni inč {0} kvadratna inča {0} kvadratnih inča + {0} po kvadratnom inču - - kvadratni kilometri - {0} kvadratni kilometar - {0} kvadratna kilometra - {0} kvadratnih kilometara - - - kvadratni metri - {0} kvadratni metar - {0} kvadratna metra - {0} kvadratnih metara - - - kvadratne milje - {0} kvadratna milja - {0} kvadratne milje - {0} kvadratnih milja - - - kvadratni jard - {0} kvadratni jard - {0} kvadratna jarda - {0} kvadratnih jarda + + karati + {0} karat + {0} karata + {0} karata litri po kilometru @@ -6936,77 +7026,108 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litra po kilometru {0} litara po kilometru + + litara na 100 kilometara + {0} litar na 100 kilometara + {0} litara na 100 kilometara + {0} litara na 100 kilometara + milje po galonu {0} milja po galonu {0} milje po galonu {0} milja po galonu - - biti - {0} bit - {0} bita - {0} bita - - - bajtovi - {0} bajt - {0} bajta - {0} bajtova - - - gigabiti - {0} gigabit - {0} gigabita - {0} gigabita - - - gigabajti - {0} gigabajt - {0} gigabajta - {0} gigabajta - - - kilobiti - {0} kilobit - {0} kilobita - {0} kilobita - - - kilobajti - {0} kilobajt - {0} kilobajta - {0} kilobajta - - - megabiti - {0} megabit - {0} megabita - {0} megabita - - - megabajti - {0} megabajta - {0} megabajta - {0} megabajta - - - terabiti - {0} terabit - {0} terabita - {0} terabita - terabajti {0} terabajt {0} terabajta {0} terabajta + + terabiti + {0} terabit + {0} terabita + {0} terabita + + + gigabajti + {0} gigabajt + {0} gigabajta + {0} gigabajta + + + gigabiti + {0} gigabit + {0} gigabita + {0} gigabita + + + megabajti + {0} megabajta + {0} megabajta + {0} megabajta + + + megabiti + {0} megabit + {0} megabita + {0} megabita + + + kilobajti + {0} kilobajt + {0} kilobajta + {0} kilobajta + + + kilobiti + {0} kilobit + {0} kilobita + {0} kilobita + + + bajtovi + {0} bajt + {0} bajta + {0} bajtova + + + biti + {0} bit + {0} bita + {0} bita + + + stoljeća + + + godina + {0} godina + {0} godine + {0} godina + {0} godišnje + + + mjeseci + {0} mjesec + {0} mjeseca + {0} mjeseci + {0} mjesečno + + + sedmica + {0} sedmica + {0} sedmice + {0} sedmica + {0} sedmično + dana {0} dan {0} dana {0} dana + {0} dnevno sati @@ -7015,35 +7136,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sati {0}/h - - μs - {0} μs - {0} μs - {0} μs - - - milisekundi - {0} milisekunda - {0} milisekunde - {0} milisekundi - minuta {0} minut {0} minute {0} minuta - - - mjeseci - {0} mjesec - {0} mjeseca - {0} mjeseci - - - ns - {0} ns - {0} ns - {0} ns + {0} po minuti sekundi @@ -7052,17 +7150,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sekundi {0}/s - - sedmica - {0} sedmica - {0} sedmice - {0} sedmica + + milisekundi + {0} milisekunda + {0} milisekunde + {0} milisekundi - - godina - {0} godina - {0} godine - {0} godina + + μs + {0} μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns + {0} ns amperi @@ -7088,6 +7192,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volta {0} volta + + kilokalorije + {0} kilokalorija + {0} kilokalorije + {0} kilokalorija + kalorije {0} kalorija @@ -7100,24 +7210,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kalorije {0} kalorija - - džuli - {0} džul - {0} džula - {0} džula - - - kilokalorije - {0} kilokalorija - {0} kilokalorije - {0} kilokalorija - kilodžuli {0} kilodžul {0} kilodžula {0} kilodžula + + džuli + {0} džul + {0} džula + {0} džula + kilovat-sat {0} kilovat-sat @@ -7130,11 +7234,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigaherca {0} gigaherca - - herci - {0} herc - {0} herca - {0} herca + + megaherci + {0} megaherc + {0} megaherca + {0} megaherca kiloherci @@ -7142,23 +7246,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kiloherca {0} kiloherca - - megaherci - {0} megaherc - {0} megaherca - {0} megaherca + + herci + {0} herc + {0} herca + {0} herca - - astronomske jedinice - {0} astronomska jedinica - {0} astronomske jedinice - {0} astronomskih jedinica + + kilometara + {0} kilometar + {0} kilometra + {0} kilometara + {0} po kilometru - - centimetara - {0} centimetar - {0} centimetra - {0} centimetara + + metara + {0} metar + {0} metra + {0} metara + {0} po metru decimetara @@ -7166,47 +7272,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} decimetara {0} decimetara - - stopa - {0} stopa - {0} stope - {0} stopa - - - inča - {0} inč - {0} inča - {0} inča - - - kilometara - {0} kilometar - {0} kilometra - {0} kilometara - - - svjetlosnih godina - {0} svjetlosna godina - {0} svjetlosne godine - {0} svjetlosnih godina - - - metara - {0} metar - {0} metra - {0} metara - - - mikrometara - {0} µm - {0} mikrometra - {0} mikrometara - - - milja - {0} milja - {0} milje - {0} milja + + centimetara + {0} centimetar + {0} centimetra + {0} centimetara + {0} po centimetru milimetara @@ -7214,71 +7285,105 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milimetra {0} milimetara + + mikrometara + {0} µm + {0} mikrometra + {0} mikrometara + nanometara {0} nanometar {0} nanometra {0} nanometara - - nautičke milje - {0} nautička milja - {0} nautičke milje - {0} nautičkih milja - - - parseci - {0} parsek - {0} parseka - {0} parseka - pikometara {0} pikometar {0} pikometra {0} pikometara + + milja + {0} milja + {0} milje + {0} milja + jardi {0} jard {0} jarda {0} jardi + + stopa + {0} stopa + {0} stope + {0} stopa + {0} po stopi + + + inča + {0} inč + {0} inča + {0} inča + {0} po inču + + + parseci + {0} parsek + {0} parseka + {0} parseka + + + svjetlosnih godina + {0} svjetlosna godina + {0} svjetlosne godine + {0} svjetlosnih godina + + + astronomske jedinice + {0} astronomska jedinica + {0} astronomske jedinice + {0} astronomskih jedinica + + + nautičke milje + {0} nautička milja + {0} nautičke milje + {0} nautičkih milja + + + skandinavska milja + {0} skandinavska milja + {0} skandinavske milje + {0} skandinavskih milja + luksi {0} luks {0} luksa {0} luksa - - karati - {0} karat - {0} karata - {0} karata - - - grami - {0} gram - {0} grama - {0} grama - - - kilogrami - {0} kilogram - {0} kilograma - {0} kilograma - metričke tone {0} metrička tona {0} metričke tone {0} metričkih tona - - mikrogrami - {0} mikrogram - {0} mikrograma - {0} mikrograma + + kilogrami + {0} kilogram + {0} kilograma + {0} kilograma + {0} po kilogramu + + + grami + {0} gram + {0} grama + {0} grama + {0} po gramu miligrami @@ -7286,23 +7391,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} miligrama {0} miligrama - - unce - {0} unca - {0} unce - {0} unci - - - fine unce - {0} fina unca - {0} fine unce - {0} finih unci - - - funte - {0} funta - {0} funte - {0} funti + + mikrogrami + {0} mikrogram + {0} mikrograma + {0} mikrograma tone @@ -7310,35 +7403,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tone {0} tona + + funte + {0} funta + {0} funte + {0} funti + {0} po funti + + + unce + {0} unca + {0} unce + {0} unci + {0} po unci + + + fine unce + {0} fina unca + {0} fine unce + {0} finih unci + + + karati + {0} karat + {0} karata + {0} karata + gigavati {0} gigavat {0} gigavata {0} gigavata - - konjske snage - {0} konjska snaga - {0} konjske snage - {0} konjskih snaga - - - kilovati - {0} kilovat - {0} kilovata - {0} kilovata - megavati {0} megavat {0} megavata {0} megavata - - milivati - {0} milivat - {0} milivata - {0} milivata + + kilovati + {0} kilovat + {0} kilovata + {0} kilovata vati @@ -7346,24 +7453,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} vata {0} vata + + milivati + {0} milivat + {0} milivata + {0} milivata + + + konjske snage + {0} konjska snaga + {0} konjske snage + {0} konjskih snaga + hektopaskali {0} hektopaskal {0} hektopaskala {0} hektopaskala - - inčevi žive - {0} inč žive - {0} inča žive - {0} inča žive - - - milibari - {0} milibar - {0} milibara - {0} milibara - milimetri žive {0} milimetar žive @@ -7376,11 +7483,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} funte po kvadratnom inču {0} funti po kvadratnom inču - - karati - {0} karat - {0} karata - {0} karata + + inčevi žive + {0} inč žive + {0} inča žive + {0} inča žive + + + milibari + {0} milibar + {0} milibara + {0} milibara kilometara na sat @@ -7400,6 +7513,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milje na sat {0} milja na sat + + čvor + {0} čvor + {0} čvora + {0} čvorova + + + ° + {0}° + {0}° + {0}° + Celzijusovi stepeni {0} Celzijusov stepen @@ -7418,36 +7543,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Kelvinova stepena {0} Kelvinovih stepeni - - ac ft - {0} ac ft - {0} ac ft - {0} ac ft - - - centilitri - {0} centilitar - {0} centilitra - {0} centilitara - - - kubni centimetri - {0} kubni centimetar - {0} kubna centimetra - {0} kubnih centimetara - - - kubne stope - {0} kubna stopa - {0} kubne stope - {0} kubnih stopa - - - kubni inči - {0} kubni inč - {0} kubna inča - {0} in³ - kubni kilometri {0} kubni kilometar @@ -7459,6 +7554,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubni metar {0} kubna metra {0} kubnih metara + {0} po kubnom metru + + + kubni centimetri + {0} kubni centimetar + {0} kubna centimetra + {0} kubnih centimetara + {0} po kubnom centimetru kubne milje @@ -7472,29 +7575,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubna jarda {0} kubnih jarda - - čaša - {0} čaša - {0} čaše - {0} čaša + + kubne stope + {0} kubna stopa + {0} kubne stope + {0} kubnih stopa - - decilitri - {0} decilitar - {0} decilitra - {0} decilitara + + kubni inči + {0} kubni inč + {0} kubna inča + {0} in³ - - tečne unce - {0} tečna unca - {0} tečne unce - {0} tečnih unci - - - galoni - {0} galon - {0} galona - {0} galona + + megalitri + {0} megalitar + {0} megalitra + {0} megalitara hektolitri @@ -7507,12 +7604,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litar {0} litra {0} litara + {0} po litru - - megalitri - {0} megalitar - {0} megalitra - {0} megalitara + + decilitri + {0} decilitar + {0} decilitra + {0} decilitara + + + centilitri + {0} centilitar + {0} centilitra + {0} centilitara mililitri @@ -7520,11 +7624,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mililitra {0} mililitara - - pinte - {0} pinta - {0} pinte - {0} pinti + + metričke pinte + {0} metrička pinta + {0} metričke pinte + {0} metričkih pinti + + + metričke šolje + {0} metrička šolja + {0} metričke šolje + {0} metričkih šolja + + + ac ft + {0} ac ft + {0} ac ft + {0} ac ft + + + galoni + {0} galon + {0} galona + {0} galona + {0} po galonu kvarti @@ -7532,6 +7655,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kvarta {0} kvarti + + pinte + {0} pinta + {0} pinte + {0} pinti + + + čaša + {0} čaša + {0} čaše + {0} čaša + + + tečne unce + {0} tečna unca + {0} tečne unce + {0} tečnih unci + kašike {0} kašika @@ -7544,6 +7685,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kašičice {0} kašičica + + {0} istok + {0} sjever + {0} jug + {0}Z + @@ -7561,6 +7708,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + okret + {0} okr. + {0} okr. + {0} okr. + + + rad + {0} rad + {0} rad + {0} rad + + + stepeni + {0}° + {0}° + {0}° + lučni minut {0}′ @@ -7573,23 +7738,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - stepeni - {0}° - {0}° - {0}° - - - rad - {0} rad - {0} rad - {0} rad - - - katastarskih jutara - {0} kj - {0} kj - {0} kj + + km² + {0} km² + {0} km² + {0} km² hektara @@ -7597,11 +7750,37 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha + + + {0} m² + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² {0} cm² + {0} po cm² + + + mi² + {0} mi² + {0} mi² + {0} mi² + + + katastarskih jutara + {0} kj + {0} kj + {0} kj + + + yd² + {0} yd² + {0} yd² + {0} yd² ft² @@ -7614,30 +7793,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt + {0} kt L/km @@ -7645,77 +7807,111 @@ For terms of use, see http://www.unicode.org/copyright.html {0} L/km {0} L/km + + L/100km + {0} L/100km + {0} L/100km + {0} L/100km + mpg {0} mpg {0} mpg {0} mpg - - bit - {0} bit - {0} bit - {0} bit - - - bajt - {0} bajt - {0} bajt - {0} bajt - - - Gb - {0} Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + {0} kb + + + bajt + {0} bajt + {0} bajt + {0} bajt + + + bit + {0} bit + {0} bit + {0} bit + + + st. + {0} st. + {0} st. + {0} st. + + + godina + {0} god + {0} god + {0} god + {0} god. + + + mjeseci + {0} mj + {0} mj + {0} mj + {0} mjes. + + + sedmica + {0} sedm + {0} sedm + {0} sedm + {0} sedm. + dana {0} dan {0} dana {0} dan + {0} dn. sati @@ -7724,35 +7920,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sat {0}/h - - μs - {0} μs - {0} μs - {0} μs - - - milisekundi - {0} ms - {0} ms - {0} ms - minuta {0} min {0} min {0} min - - - mjeseci - {0} mj - {0} mj - {0} mj - - - ns - {0} ns - {0} ns - {0} ns + {0}/min sekundi @@ -7761,17 +7934,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sek {0}/s - - sedmica - {0} sedm - {0} sedm - {0} sedm + + milisekundi + {0} ms + {0} ms + {0} ms - - godina - {0} god - {0} god - {0} god + + μs + {0} μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns + {0} ns amp @@ -7797,6 +7976,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + {0} kcal + kal. {0} kal. @@ -7809,24 +7994,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kal. {0} kal. - - džuli - {0} J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - {0} kcal - kilodžul {0} kJ {0} kJ {0} kJ + + džuli + {0} J + {0} J + {0} J + kW-sat {0} kWh @@ -7839,11 +8018,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz + {0} MHz kHz @@ -7851,23 +8030,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz + {0} Hz - - aj - {0} aj - {0} aj - {0} aj + + kilometara + {0} km + {0} km + {0} km + {0}/km - - centimetara - {0} cm - {0} cm - {0} cm + + metara + {0} m + {0} m + {0} m + {0}/m dm @@ -7875,47 +8056,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dm {0} dm - - stopa - {0} ft - {0} ft - {0} ft - - - inča - {0} in - {0} in - {0} in - - - kilometara - {0} km - {0} km - {0} km - - - svjetlosnih godina - {0} gs - {0} gs - {0} gs - - - metara - {0} m - {0} m - {0} m - - - µm - {0} µm - {0} µm - {0} µm - - - milja - {0} mi - {0} mi - {0} mi + + centimetara + {0} cm + {0} cm + {0} cm + {0}/cm mm @@ -7923,71 +8069,105 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mm {0} mm + + µm + {0} µm + {0} µm + {0} µm + nm {0} nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - {0} nmi - - - parseka - {0} pc - {0} pc - {0} pc - pm {0} pm {0} pm {0} pm + + milja + {0} mi + {0} mi + {0} mi + jardi {0} yd {0} yd {0} yd + + stopa + {0} ft + {0} ft + {0} ft + {0}/ft + + + inča + {0} in + {0} in + {0} in + {0}/in + + + parseka + {0} pc + {0} pc + {0} pc + + + svjetlosnih godina + {0} gs + {0} gs + {0} gs + + + aj + {0} aj + {0} aj + {0} aj + + + nmi + {0} nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + {0} smi + lx {0} lx {0} lx {0} lx - - karati - {0} CD - {0} CD - {0} CD - - - grami - {0} g - {0} g - {0} g - - - kg - {0} kg - {0} kg - {0} kg - t {0} t {0} t {0} t - - µg - {0} µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0} kg + {0}/kg + + + grami + {0} g + {0} g + {0} g + {0}/g mg @@ -7995,23 +8175,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mg {0} mg - - oz - {0} oz - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb - {0} lb + + µg + {0} µg + {0} µg + {0} µg tone @@ -8019,35 +8187,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tn {0} tn + + lb + {0} lb + {0} lb + {0} lbs + {0}/lb + + + oz + {0} oz + {0} oz + {0} oz + {0}/oz + + + oz t + {0} oz t + {0} oz t + {0} oz t + + + karati + {0} CD + {0} CD + {0} CD + GW {0} GW {0} GW {0} GW - - ks - {0} ks - {0} ks - {0} ks - - - kW - {0} kW - {0} kW - {0} kW - MW {0} MW {0} MW {0} MW - - mW - {0} mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW + {0} kW vati @@ -8055,24 +8237,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + mW + {0} mW + {0} mW + {0} mW + + + ks + {0} ks + {0} ks + {0} ks + hPa {0} hPa {0} hPa {0} hPa - - in Hg - {0} inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -8085,11 +8267,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kt - {0} kt - {0} kt - {0} kt + + in Hg + {0} inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar + {0} mbar km/h @@ -8109,6 +8297,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + čv + {0} čv + {0} čv + {0} čv + + + ° + {0}° + {0}° + {0}° + °C {0}°C @@ -8127,36 +8327,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}°K {0}°K - - ac ft - {0} ac ft - {0} ac ft - {0} ac ft - - - cL - {0} cL - {0} cL - {0} cL - - - cm³ - {0} cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -8168,6 +8338,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -8181,29 +8359,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - čaša - {0} čaša - {0} čaše - {0} čaša + + ft³ + {0} ft³ + {0} ft³ + {0} ft³ - - dL - {0} dL - {0} dL - {0} dL + + in³ + {0} in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML + {0} ML hL @@ -8216,12 +8388,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l {0} l + {0}/l - - ML - {0} ML - {0} ML - {0} ML + + dL + {0} dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL + {0} cL mL @@ -8229,11 +8408,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mL {0} mL - - pinte - {0} pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + {0} mc + + + ac ft + {0} ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0} gal + {0}/gal qt @@ -8241,6 +8439,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} qt {0} qt + + pinte + {0} pt + {0} pt + {0} pt + + + čaša + {0} čaša + {0} čaše + {0} čaša + + + fl oz + {0} fl oz + {0} fl oz + {0} fl oz + tbsp {0} tbsp @@ -8253,6 +8469,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0} ist. + {0} sj. + {0} j. + {0}Z + @@ -8263,6 +8485,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}° + {0}′ {0}′ @@ -8273,31 +8500,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - {0}° - - - {0} kj - {0} kj - {0} kj + + {0} km² + {0} km² + {0} km² {0} ha {0} ha {0} ha - - {0} ft² - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} km² - {0} m² {0} m² @@ -8308,6 +8520,40 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} kj + {0} kj + {0} kj + + + {0} ft² + {0} ft² + {0} ft² + + + L/100km + {0}l/100km + {0}l/100km + {0}l/100km + + + godina + {0} god + {0} god + {0} god + + + mjesec + {0} mj. + {0} mj. + {0} mj. + + + sedm. + {0} sedm + {0} sedm + {0} sedm + dan {0} dan @@ -8320,57 +8566,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sat {0} sat - - milisekundi - {0} ms - {0} ms - {0} ms - minuta {0} min {0} min {0} min - - mjesec - {0} mj. - {0} mj. - {0} mj. - sekundi {0} sek {0} sek {0} sek - - sedm. - {0} sedm - {0} sedm - {0} sedm - - - godina - {0} god - {0} god - {0} god - - - cm - {0} cm - {0} cm - {0} cm - - - {0}′ - {0}′ - {0}′ - - - {0}″ - {0}″ - {0}″ + + milisekundi + {0} ms + {0} ms + {0} ms kilometara @@ -8378,21 +8590,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} km {0} km - - {0} ly - {0} ly - {0} ly - metara {0} m {0} m {0} m - - {0} mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0} cm mm @@ -8405,16 +8613,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} mi + {0} mi + {0} mi + {0} yd {0} yd {0} yd - - gram - {0}g - {0}g - {0}g + + {0}′ + {0}′ + {0}′ + + + {0}″ + {0}″ + {0}″ + + + {0} ly + {0} ly + {0} ly kg @@ -8422,20 +8644,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0}kg {0}kg - - {0} oz - {0} oz - {0} oz + + gram + {0}g + {0}g + {0}g {0} lb {0} lb {0} lb - - {0} KS - {0} KS - {0} KS + + {0} oz + {0} oz + {0} oz {0} kW @@ -8447,6 +8670,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} KS + {0} KS + {0} KS + {0} hPa {0} hPa @@ -8505,6 +8733,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}l {0}l + + {0}I + {0}S + {0}J + {0}Z + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bs_Cyrl.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bs_Cyrl.xml similarity index 93% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bs_Cyrl.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bs_Cyrl.xml index 90eb7950743..468a6f86b1a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bs_Cyrl.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bs_Cyrl.xml @@ -1,13 +1,12 @@ - - - + - @@ -631,11 +629,10 @@ For terms of use, see http://www.unicode.org/copyright.html Андора Уједињени Арапски Емирати Авганистан - Антигве и Барбуда + Антигва и Барбуда Ангвила Албанија Арменија - Холандски Антили Ангола Антарктик Аргентина @@ -930,65 +927,65 @@ For terms of use, see http://www.unicode.org/copyright.html Приватна употреба - арапско-индијске цифре - продужене арапско-индијске цифре - јерменски бројеви - мали јерменски бројеви - бенгалске цифре - Традиционално кинеско сортирање - Будистички календар - Кинески календар - коптски календар - девангари цифре - Редослед сортирања у речнику - Подразумевани Unicode редослед сортирања - етиопски бројеви - етиопски календар - етиопски амет алем календар - цифре пуне ширине - Поједностављено кинеско сортирање - грузијски бројеви - Грегоријански календар - грчки бројеви - мали грчки бројеви - гуџаратске цифре - гурмуки цифре - кинески децимални бројеви - поједностављени кинески бројеви - поједностављени кинески финансијски бројеви - традиционални кинески бројеви - традиционални кинески финансијски бројеви - хебрејски бројеви - Хебрејски календар - Индијски национални календар - Исламски календар - Исламски цивилни календар - Јапански календар - јапански бројеви - јапански финансијски бројеви - кмерске цифре - канада цифре - лаошке цифре - западне цифре - малајалам цифре - монголске цифре - мијанмарске цифре - орија цифре - персијски календар - Сортирање као телефонски именик - Пињин сортирање - Реформисани редослед сортирања - Календар Републике Кине - римски бројеви - мали римски бројеви - Опште намењена претрага - Сортирање по броју црта - тамилски бројеви - телугу цифре - тајске цифре - тибетанске цифре - Традиционално сортирање - Редослед сортирања радикалним цртицама + Будистички календар + Кинески календар + коптски календар + етиопски календар + етиопски амет алем календар + Грегоријански календар + Хебрејски календар + Индијски национални календар + Исламски календар + Исламски цивилни календар + Јапански календар + персијски календар + Календар Републике Кине + Традиционално кинеско сортирање + Редослед сортирања у речнику + Подразумевани Unicode редослед сортирања + Поједностављено кинеско сортирање + Сортирање као телефонски именик + Пињин сортирање + Реформисани редослед сортирања + Опште намењена претрага + Сортирање по броју црта + Традиционално сортирање + Редослед сортирања радикалним цртицама + арапско-индијске цифре + продужене арапско-индијске цифре + јерменски бројеви + мали јерменски бројеви + бенгалске цифре + девангари цифре + етиопски бројеви + цифре пуне ширине + грузијски бројеви + грчки бројеви + мали грчки бројеви + гуџаратске цифре + гурмуки цифре + кинески децимални бројеви + поједностављени кинески бројеви + поједностављени кинески финансијски бројеви + традиционални кинески бројеви + традиционални кинески финансијски бројеви + хебрејски бројеви + јапански бројеви + јапански финансијски бројеви + кмерске цифре + канада цифре + лаошке цифре + западне цифре + малајалам цифре + монголске цифре + мијанмарске цифре + орија цифре + римски бројеви + мали римски бројеви + тамилски бројеви + телугу цифре + тајске цифре + тибетанске цифре БГН (BGN) @@ -1342,6 +1339,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + пре подне + поподне + пре подне поподне @@ -1587,7 +1588,7 @@ For terms of use, see http://www.unicode.org/copyright.html Мух. Саф. Реб. 1 - Реб 2 + Реб. 2 Џум. 1 Џум. 2 Реџ. @@ -1686,238 +1687,238 @@ For terms of use, see http://www.unicode.org/copyright.html - Таика (645-650) - Хакучи (650-671) - Хакухо (672-686) - Шучо (686-701) - Таихо (701-704) - Кеиун (704-708) - Вадо (708-715) - Реики (715-717) - Јоро (717-724) - Јинки (724-729) - Темпио (729-749) + Таика (645–650) + Хакучи (650–671) + Хакухо (672–686) + Шучо (686–701) + Таихо (701–704) + Кеиун (704–708) + Вадо (708–715) + Реики (715–717) + Јоро (717–724) + Јинки (724–729) + Темпио (729–749) Темпио-кампо (749-749) Темпио-шохо (749-757) Темпио-хођи (757-765) Темпо-ђинго (765-767) Ђинго-кеиун (767-770) - Хоки (770-780) + Хоки (770–780) Тен-о (781-782) - Енрјаку (782-806) - Даидо (806-810) - Конин (810-824) - Тенчо (824-834) - Шова (834-848) - Кајо (848-851) - Нињу (851-854) - Саико (854-857) - Тенан (857-859) - Јоган (859-877) - Генкеи (877-885) - Ниња (885-889) - Кампјо (889-898) - Шотаи (898-901) - Енђи (901-923) - Енчо (923-931) - Шохеи (931-938) - Тенгјо (938-947) - Тенриаку (947-957) - Тентоку (957-961) - Ова (961-964) - Кохо (964-968) - Ана (968-970) - Тенроку (970-973) + Енрјаку (782–806) + Даидо (806–810) + Конин (810–824) + Тенчо (824–834) + Шова (834–848) + Кајо (848–851) + Нињу (851–854) + Саико (854–857) + Тенан (857–859) + Јоган (859–877) + Генкеи (877–885) + Ниња (885–889) + Кампјо (889–898) + Шотаи (898–901) + Енђи (901–923) + Енчо (923–931) + Шохеи (931–938) + Тенгјо (938–947) + Тенриаку (947–957) + Тентоку (957–961) + Ова (961–964) + Кохо (964–968) + Ана (968–970) + Тенроку (970–973) Тен-ен (973-976) - Јоген (976-978) - Тенген (978-983) - Еикан (983-985) - Кана (985-987) + Јоген (976–978) + Тенген (978–983) + Еикан (983–985) + Кана (985–987) Еи-ен (987-989) - Еисо (989-990) - Шорјаку (990-995) - Чотоку (995-999) - Чохо (999-1004) - Канко (1004-1012) - Чова (1012-1017) - Канин (1017-1021) - Ђиан (1021-1024) - Мању (1024-1028) - Чоген (1028-1037) - Чорјаку (1037-1040) - Чокју (1040-1044) - Кантоку (1044-1046) - Еишо (1046-1053) - Тенђи (1053-1058) - Кохеи (1058-1065) - Ђирјаку (1065-1069) - Енкју (1069-1074) - Шохо (1074-1077) - Шорјаку (1077-1081) - Еишо (1081-1084) - Отоку (1084-1087) - Канђи (1087-1094) - Кахо (1094-1096) - Еичо (1096-1097) - Шотоку (1097-1099) - Кова (1099-1104) - Чођи (1104-1106) - Кашо (1106-1108) - Тенин (1108-1110) + Еисо (989–990) + Шорјаку (990–995) + Чотоку (995–999) + Чохо (999–1004) + Канко (1004–1012) + Чова (1012–1017) + Канин (1017–1021) + Ђиан (1021–1024) + Мању (1024–1028) + Чоген (1028–1037) + Чорјаку (1037–1040) + Чокју (1040–1044) + Кантоку (1044–1046) + Еишо (1046–1053) + Тенђи (1053–1058) + Кохеи (1058–1065) + Ђирјаку (1065–1069) + Енкју (1069–1074) + Шохо (1074–1077) + Шорјаку (1077–1081) + Еишо (1081–1084) + Отоку (1084–1087) + Канђи (1087–1094) + Кахо (1094–1096) + Еичо (1096–1097) + Шотоку (1097–1099) + Кова (1099–1104) + Чођи (1104–1106) + Кашо (1106–1108) + Тенин (1108–1110) Тен-еи (1110-1113) - Еикју (1113-1118) + Еикју (1113–1118) Ђен-еи (1118-1120) - Хоан (1120-1124) - Тенђи (1124-1126) - Даиђи (1126-1131) - Теншо (1131-1132) - Чошао (1132-1135) - Хоен (1135-1141) - Еиђи (1141-1142) - Кођи (1142-1144) - Тењо (1144-1145) - Кјуан (1145-1151) - Нинпеи (1151-1154) - Кјују (1154-1156) - Хоген (1156-1159) - Хеиђи (1159-1160) - Еирјаку (1160-1161) - Охо (1161-1163) - Чокан (1163-1165) - Еиман (1165-1166) + Хоан (1120–1124) + Тенђи (1124–1126) + Даиђи (1126–1131) + Теншо (1131–1132) + Чошао (1132–1135) + Хоен (1135–1141) + Еиђи (1141–1142) + Кођи (1142–1144) + Тењо (1144–1145) + Кјуан (1145–1151) + Нинпеи (1151–1154) + Кјују (1154–1156) + Хоген (1156–1159) + Хеиђи (1159–1160) + Еирјаку (1160–1161) + Охо (1161–1163) + Чокан (1163–1165) + Еиман (1165–1166) Нин-ан (1166-1169) - Као (1169-1171) - Шоан (1171-1175) - Анген (1175-1177) - Ђишо (1177-1181) - Јова (1181-1182) - Ђуеи (1182-1184) - Генрјуку (1184-1185) - Бунђи (1185-1190) - Кенкју (1190-1199) - Шођи (1199-1201) - Кенин (1201-1204) - Генкју (1204-1206) + Као (1169–1171) + Шоан (1171–1175) + Анген (1175–1177) + Ђишо (1177–1181) + Јова (1181–1182) + Ђуеи (1182–1184) + Генрјуку (1184–1185) + Бунђи (1185–1190) + Кенкју (1190–1199) + Шођи (1199–1201) + Кенин (1201–1204) + Генкју (1204–1206) Кен-еи (1206-1207) - Шоген (1207-1211) - Кенрјаку (1211-1213) - Кенпо (1213-1219) - Шокју (1219-1222) - Ђу (1222-1224) - Ђенин (1224-1225) - Кароку (1225-1227) - Антеи (1227-1229) - Канки (1229-1232) - Ђоеи (1232-1233) - Темпуку (1233-1234) - Бунрјаку (1234-1235) - Катеи (1235-1238) - Рјакунин (1238-1239) + Шоген (1207–1211) + Кенрјаку (1211–1213) + Кенпо (1213–1219) + Шокју (1219–1222) + Ђу (1222–1224) + Ђенин (1224–1225) + Кароку (1225–1227) + Антеи (1227–1229) + Канки (1229–1232) + Ђоеи (1232–1233) + Темпуку (1233–1234) + Бунрјаку (1234–1235) + Катеи (1235–1238) + Рјакунин (1238–1239) Ен-о (1239-1240) - Нињи (1240-1243) - Канген (1243-1247) - Хођи (1247-1249) - Кенчо (1249-1256) - Коген (1256-1257) - Шока (1257-1259) - Шоген (1259-1260) + Нињи (1240–1243) + Канген (1243–1247) + Хођи (1247–1249) + Кенчо (1249–1256) + Коген (1256–1257) + Шока (1257–1259) + Шоген (1259–1260) Бун-о (1260-1261) - Кочо (1261-1264) + Кочо (1261–1264) Бун-еи (1264-1275) - Кенђи (1275-1278) - Коан (1278-1288) - Шу (1288-1293) - Еинин (1293-1299) - Шоан (1299-1302) - Кенген (1302-1303) - Каген (1303-1306) - Токуђи (1306-1308) - Енкеи (1308-1311) - Очо (1311-1312) - Шова (1312-1317) - Бунпо (1317-1319) - Ђено (1319-1321) - Ђенкјо (1321-1324) - Шочу (1324-1326) - Кареки (1326-1329) - Гентоку (1329-1331) - Генко (1331-1334) - Кему (1334-1336) - Енген (1336-1340) - Кококу (1340-1346) - Шохеи (1346-1370) - Кентоку (1370-1372) - Бучу (1372-1375) - Тењу (1375-1379) - Корјаку (1379-1381) - Кова (1381-1384) - Генчу (1384-1392) - Меитоку (1384-1387) - Какеи (1387-1389) - Ку (1389-1390) - Меитоку (1390-1394) - Оеи (1394-1428) - Шочо (1428-1429) - Еикјо (1429-1441) - Какитсу (1441-1444) + Кенђи (1275–1278) + Коан (1278–1288) + Шу (1288–1293) + Еинин (1293–1299) + Шоан (1299–1302) + Кенген (1302–1303) + Каген (1303–1306) + Токуђи (1306–1308) + Енкеи (1308–1311) + Очо (1311–1312) + Шова (1312–1317) + Бунпо (1317–1319) + Ђено (1319–1321) + Ђенкјо (1321–1324) + Шочу (1324–1326) + Кареки (1326–1329) + Гентоку (1329–1331) + Генко (1331–1334) + Кему (1334–1336) + Енген (1336–1340) + Кококу (1340–1346) + Шохеи (1346–1370) + Кентоку (1370–1372) + Бучу (1372–1375) + Тењу (1375–1379) + Корјаку (1379–1381) + Кова (1381–1384) + Генчу (1384–1392) + Меитоку (1384–1387) + Какеи (1387–1389) + Ку (1389–1390) + Меитоку (1390–1394) + Оеи (1394–1428) + Шочо (1428–1429) + Еикјо (1429–1441) + Какитсу (1441–1444) Бун-ан (1444-1449) - Хотоку (1449-1452) - Кјотоку (1452-1455) - Кошо (1455-1457) - Чороку (1457-1460) - Каншо (1460-1466) - Буншо (1466-1467) - Онин (1467-1469) - Бунмеи (1469-1487) - Чокјо (1487-1489) - Ентоку (1489-1492) - Меио (1492-1501) - Бунки (1501-1504) - Еишо (1504-1521) - Таиеи (1521-1528) - Кјороку (1528-1532) - Тенмон (1532-1555) - Кођи (1555-1558) - Еироку (1558-1570) - Генки (1570-1573) - Теншо (1573-1592) - Бунроку (1592-1596) - Кеичо (1596-1615) - Генва (1615-1624) + Хотоку (1449–1452) + Кјотоку (1452–1455) + Кошо (1455–1457) + Чороку (1457–1460) + Каншо (1460–1466) + Буншо (1466–1467) + Онин (1467–1469) + Бунмеи (1469–1487) + Чокјо (1487–1489) + Ентоку (1489–1492) + Меио (1492–1501) + Бунки (1501–1504) + Еишо (1504–1521) + Таиеи (1521–1528) + Кјороку (1528–1532) + Тенмон (1532–1555) + Кођи (1555–1558) + Еироку (1558–1570) + Генки (1570–1573) + Теншо (1573–1592) + Бунроку (1592–1596) + Кеичо (1596–1615) + Генва (1615–1624) Кан-еи (1624-1644) - Шохо (1644-1648) - Кеиан (1648-1652) - Шу (1652-1655) - Меирјаку (1655-1658) - Мањи (1658-1661) - Канбун (1661-1673) - Енпо (1673-1681) - Тенва (1681-1684) - Јокјо (1684-1688) - Генроку (1688-1704) - Хоеи (1704-1711) - Шотоку (1711-1716) - Кјохо (1716-1736) - Генбун (1736-1741) - Канпо (1741-1744) - Енкјо (1744-1748) + Шохо (1644–1648) + Кеиан (1648–1652) + Шу (1652–1655) + Меирјаку (1655–1658) + Мањи (1658–1661) + Канбун (1661–1673) + Енпо (1673–1681) + Тенва (1681–1684) + Јокјо (1684–1688) + Генроку (1688–1704) + Хоеи (1704–1711) + Шотоку (1711–1716) + Кјохо (1716–1736) + Генбун (1736–1741) + Канпо (1741–1744) + Енкјо (1744–1748) Кан-ен (1748-1751) - Хорјаку (1751-1764) - Меива (1764-1772) + Хорјаку (1751–1764) + Меива (1764–1772) Ан-еи (1772-1781) - Тенмеи (1781-1789) - Кансеи (1789-1801) - Кјова (1801-1804) - Бунка (1804-1818) - Бунсеи (1818-1830) - Тенпо (1830-1844) - Кока (1844-1848) - Каеи (1848-1854) - Ансеи (1854-1860) + Тенмеи (1781–1789) + Кансеи (1789–1801) + Кјова (1801–1804) + Бунка (1804–1818) + Бунсеи (1818–1830) + Тенпо (1830–1844) + Кока (1844–1848) + Каеи (1848–1854) + Ансеи (1854–1860) Ман-ен (1860-1861) - Бункју (1861-1864) - Генђи (1864-1865) - Кеико (1865-1868) + Бункју (1861–1864) + Генђи (1864–1865) + Кеико (1865–1868) Меиђи Таишо Шова @@ -4344,6 +4345,46 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 ¤ + 0 ¤ + 0 ¤ + 00 хиљ ¤ + 00 хиљ ¤ + 00 хиљ ¤ + 000 хиљ ¤ + 000 хиљ ¤ + 000 хиљ ¤ + 0 мил ¤ + 0 мил ¤ + 0 мил ¤ + 00 мил ¤ + 00 мил ¤ + 00 мил ¤ + 000 мил ¤ + 000 мил ¤ + 000 мил ¤ + 0 млрд ¤ + 0 млрд ¤ + 0 млрд ¤ + 00 млрд ¤ + 00 млрд ¤ + 00 млрд ¤ + 000 млрд ¤ + 000 млрд ¤ + 000 млрд ¤ + 0 бил ¤ + 0 бил ¤ + 0 бил ¤ + 00 бил ¤ + 00 бил ¤ + 00 бил ¤ + 000 бил ¤ + 000 бил ¤ + 000 бил ¤ + + {0} {1} {0} {1} {0} {1} @@ -6097,6 +6138,24 @@ For terms of use, see http://www.unicode.org/copyright.html + + година + {0} година + {0} године + {0} година + + + месец + {0} месец + {0} месеца + {0} месец + + + недеља + {0} недеља + {0} недеље + {0} недеља + дан {0} дан @@ -6115,32 +6174,32 @@ For terms of use, see http://www.unicode.org/copyright.html {0} минута {0} минут - - месец - {0} месец - {0} месеца - {0} месец - секунда {0} секунда {0} секунде {0} секунда - - недеља - {0} недеља - {0} недеље - {0} недеља - - - година - {0} година - {0} године - {0} година - + + година + {0} год + {0} год + {0} год + + + месец + {0} мес + {0} мес + {0} мес + + + недеља + {0} нед + {0} нед + {0} нед + дан {0} дан @@ -6159,30 +6218,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мин {0} мин - - месец - {0} мес - {0} мес - {0} мес - секунда {0} сек {0} сек {0} сек - - недеља - {0} нед - {0} нед - {0} нед - - - година - {0} год - {0} год - {0} год - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bs_Cyrl_BA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bs_Cyrl_BA.xml similarity index 69% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bs_Cyrl_BA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bs_Cyrl_BA.xml index 72f6e067e59..830ffdbc2ed 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bs_Cyrl_BA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/bs_Cyrl_BA.xml @@ -1,15 +1,15 @@ - - - + - ordre del xinés tradicional - Big5 - calendari xinés - ordre del xinés simplificat - GB2312 - calendari japonés + calendari xinés + calendari japonés + ordre del xinés tradicional - Big5 + ordre del xinés simplificat - GB2312 diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ca_FR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ca_FR.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ca_FR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ca_FR.xml index d69610c8e22..bb167f608e6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ca_FR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ca_FR.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ca_IT.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ca_IT.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ca_IT.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ca_IT.xml index 1fa5cbb8510..72c9d13c75b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ca_IT.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ca_IT.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ce.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ce.xml new file mode 100644 index 00000000000..466ba004e30 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ce.xml @@ -0,0 +1,4672 @@ + + + + + + + + + + + {0} ({1}) + {0}, {1} + {0}: {1} + + + абхазхойн + африкаанс + агхӀем + акан + амхаройн + Ӏаьрбийн + ХӀинца болу стандартан Ӏаьрбийн + арауканхойн + ассамийн + асу + азербайджанийн + азербайджанийн + башкирийн + белорусийн + бемба + бена + болгарийн + малхбузен-белуджийн + бамбара + бенгалийн + тибетхойн + бретонийн + бодо + боснийн + каталонийн + нохчийн + чига + чероки + юккъерчу курдийн + корсиканийн + чехийн + чувашийн + валлийн + датхойн + таита + немцойн + австрин немцойн + швейцарин лакхара немцойн + зарма + сорбийн + дуала + дьола-фоньи + дзонг-кэ + эмбу + эве + грекийн + ингалсан + Австралин ингалсан + канадан ингалсан + британин ингалсан + ингалсан (Британи) + американ ингалсан + ингалсан (АЦШ) + эсперанто + испанхойн + латинан американ испанхойн + европан испанхойн + мексикан испанхойн + эстонийн + баскийн + гӀажарийн + финнийн + филиппинийн + фиджи + фарерийн + французийн + канадан французийн + швейцарин французийн + малхбузен-фризийн + ирландхойн + гагаузийн + галисийн + гуарани + швейцарин немцойн + гуджарати + гусии + мэнийн + хауса + гавайн + жугтийн + хинди + хорватийн + лакхара сербийн + гаитийн + венгрийн + эрмалойн + индонезихойн + игбо + сычуань + исландхойн + итальянийн + инуктитут + японийн + нгомба + мачаме + яванийн + гуьржийн + кабилийн + камба + маконде + кабувердьяну + койра чиини + кикуйю + казахийн + гренландхойн + календжин + кхмерийн + каннада + корейн + коми-пермякийн + конкани + кашмири + шамбала + бафиа + курдийн + корнуоллийн + гӀиргӀизойн + латинан + ланги + люксембургхойн + ганда + лакота + лингала + лаоссийн + къилбаседа лури + литвахойн + луба-катанга + луо (Кени а, Танзани а) + лухья + латышийн + масаи + меру + маврикин креолийн + малагасийн + макуа-меетто + мета + маори + македонхойн + малаялам + монголийн + мохаук + маратхи + малайн + мальтойн + мунданг + бирманийн + мазандеранхойн + нама + норвегийн букмол + къилбаседа ндебели + лахара германхойн + лахара саксонийн + непалхойн + голландхойн + фламандийн + квасио + норвегийн нюнорск + нко + нуэр + ньянколе + оромо + ори + панджаби + полякийн + пушту + португалихойн + бразилин португалихойн + европан португалихойн + кечуа + киче + романшийн + рунди + румынийн + молдавийн + ромбо + оьрсийн + киньяруанда + руанда + санскрит + самбуру + сангу + синдхи + къилбаседа саамийн + сена + койраборо сенни + санго + тахелхит + сингалхойн + словакийн + словенийн + саамийн (къилба) + луле-саамийн + инари-саамийн + скольт-саамийн + шона + сомали + албанойн + сербийн + сунданхойн + шведийн + суахили + суахили (Конго) + тамилхойн + телугу + тесо + таджикийн + тайн + тигринья + туркменийн + тонганийн + туркойн + гӀезалойн + тасавак + тамазигхтийн + уйгурийн + украинийн + боьвзуш боцу мотт + урду + узбекийн + ваи + вьетнамхойн + вунджо + варлпири + волоф + коса + сога + йоруба + мороккон стандартан тамазигхтийн + китайн + атта китайн + ламастан китайн + зулу + меттан чулацам боцуш + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Дерригдуьненан + Африка + Къилбаседа Америка + Къилба Америка + Океани + Малхбузен Африка + Юккъера Америка + Малхбален Африка + Къилбаседа Африка + Юккъера Африка + Къилба Африка + Къилбаседа а, къилба а Америка + Къилбаседа Америка – АЦШ а, Канада а + Карибаш + Юккъера Ази + Къилба Ази + Къилба-малхбален Ази + Къилба Европа + Австралази + Меланези + Микронези + Полинези + Ази + Юккъера Малхбале + Юккъера а, Гергара а Малхбале + Европа + Малхбален Европа + Къилбаседа Европа + Малхбузен Европа + Латинан Америка + Айъадаларан гӀайре + Андорра + Ӏарбийн Цхьанатоьхна Эмираташ + ОвхӀан-пачхьалкх + Антигуа а, Барбуда а + Ангилья + Албани + Эрмалойчоь + Ангола + Антарктида + Аргентина + Американ Самоа + Австри + Австрали + Аруба + Аландан гӀайренаш + Азербайджан + Босни а, Герцеговина а + Барбадос + Бангладеш + Бельги + Буркина- Фасо + Болгари + Бахрейн + Бурунди + Бенин + Сен-Бартельми + Бермудан гӀайренаш + Бруней-Даруссалам + Боливи + Бонэйр, Синт-Эстатиус а, Саба а + Бразили + Багаман гӀайренаш + Бутан + Бувен гӀайре + Ботсвана + Белорусси + Белиз + Канада + Кокосийн гӀайренаш + Демократин Республика Конго + Конго (ДРК) + Юккъерчу Африкин Республика + Республика Конго + Швейцари + Кот-Д’ивуар + Кукан гӀайренаш + Чили + Камерун + Китай + Колумби + Клиппертон + Коста-Рика + Куба + Кабо-Верде + Кюрасао + ГӀайре ӏиса пайхӏамар вина де + Кипр + Чехи + Германи + Диего-Гарси + Джибути + Дани + Доминика + Доминикан Республика + Алжир + Сеута а, Мелилья а + Эквадор + Эстони + Мисар + Малхбузен Саьхьара + Эритрей + Испани + Эфиопи + Евробарт + Финлянди + Фиджи + Фолклендан гӀайренаш + Фолклендан гӀайренаш (Мальвинаш) + Микронезин Федеративни штаташ + Фарерийн гӀайренаш + Франци + Габон + Йоккха Британи + Йоккха Британи + Гренада + Гуьржийчоь + Французийн Гвиана + Гернси + Гана + Гибралтар + Гренланди + Гамби + Гвиней + Гваделупа + Экваторан Гвиней + Греци + Къилба Джорджи а, Къилба Гавайн гӀайренаш а + Гватемала + Гуам + Гвиней-Бисау + Гайана + Гонконг (ша-къаьстина кӀошт) + Гонконг + Херд гӀайре а, Макдональд гӀайренаш а + Гондурас + Хорвати + Гаити + Венгри + Канаран гӀайренаш + Индонези + Ирланди + Израиль + Мэн гӀайре + Инди + Британин латта Индин океанехь + Ӏиракъ + ГӀажарийчоь + Исланди + Итали + Джерси + Ямайка + Урдан + Япони + Кени + Киргизи + Камбоджа + Кирибати + Комораш + Сент-Китс а, Невис а + Къилбаседа Корей + Къилба Корей + Кувейт + Кайман гӀайренаш + Казахстан + Лаос + Ливан + Сент-Люси + Лихтенштейн + Шри-Ланка + Либери + Лесото + Литва + Люксембург + Латви + Ливи + Марокко + Монако + Молдави + Ӏаьржаламанхойчоь + Сен-Мартен + Мадагаскар + Маршаллан гӀайренаш + Македони + Мали + Мьянма (Бирма) + Монголи + Макао (ша-къаьстина кӀошт) + Макао + Къилбаседа Марианан гӀайренаш + Мартиника + Мавритани + Монтсеррат + Мальта + Маврики + Мальдиваш + Малави + Мексика + Малайзи + Мозамбик + Намиби + Керла Каледони + Нигер + Норфолк гӀайре + Нигери + Никарагуа + Нидерландаш + Норвеги + Непал + Науру + Ниуэ + Керла Зеланди + Оман + Панама + Перу + Французийн Полинези + Папуа — Керла Гвиней + Филиппинаш + Пакистан + Польша + Сен-Пьер а, Микелон а + Питкэрн гӀайренаш + Пуэрто-Рико + Палестинан латтанаш + Палестина + Португали + Палау + Парагвай + Катар + Арахьара Океани + Реюньон + Румыни + Серби + Росси + Руанда + СаӀудийн Арави + Соломонан гӀайренаш + Сейшелан гӀайренаш + Судан + Швеци + Сингапур + Сийлахьчу Еленин гӀайре + Словени + Шпицберген а, Ян-Майен а + Словаки + Сьерра- Леоне + Сан-Марино + Сенегал + Сомали + Суринам + Къилба Судан + Сан-Томе а, Принсипи а + Сальвадор + Синт-Мартен + Шема + Свазиленд + Тристан-да- Кунья + Тёркс а, Кайкос а гӀайренаш + Чад + Французийн къилба латтанаш + Того + Таиланд + Таджикистан + Токелау + Малхбален Тимор + Туркмени + Тунис + Тонга + Туркойчоь + Тринидад а, Тобаго а + Тувалу + Тайвань + Танзани + Украина + Уганда + АЦШн арахьара кегийн гӀайренаш + Цхьанатоьхна Штаташ + АЦШ + Уругвай + Узбекистан + Ватикан + Сент-Винсент а, Гренадинаш а + Венесуэла + Виргинийн гӀайренаш (Британи) + Виргинийн гӀайренаш (АЦШ) + Вьетнам + Вануату + Уоллис а, Футуна а + Самоа + Косово + Йемен + Майотта + Къилба-Африкин Республика + Замби + Зимбабве + Йоьвзуш йоцу регион + + + Календарь + ахча + + + григорианан + исламан + японийн + гӀажарийн + + + Метрикин + Ингалсан + Инг-американ + + + Мотт: {0} + Скрипт: {0} + Регион: {0} + + + + + left-to-right + top-to-bottom + + + + [а {аь} б в г {гӏ} д е ё ж з и {ий} й к {кк} {ккх} {кх} {кь} {кӏ} л м н о {ов} {оь} п {пп} {пӏ} р {рхӏ} с {сс} т {тт} {тӏ} у {ув} {уь} {уьй} ф х {хь} {хӏ} ц {цӏ} ч {чӏ} ш щ ъ ы ь э ю {юь} я {яь}] + [А Б В Г Д Е Ё Ж З И К Л М Н О П Р С Т У Ф Х Ц Ч Ш Щ Ъ Ы Ь Э Ю Я] + [\- ‐ – — , ; \: ! ? . … ' ‘ ‚ " “ „ « » ( ) \[ \] \{ \} § @ * / \& #] + + + + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + d + + + + + + + + янв + фев + мар + апр + май + июн + июл + авг + сен + окт + ноя + дек + + + январь + февраль + март + апрель + май + июнь + июль + август + сентябрь + октябрь + ноябрь + декабрь + + + + + январь + февраль + март + апрель + май + июнь + июль + август + сентябрь + октябрь + ноябрь + декабрь + + + + + + + кӀиранан де + оршотан де + шинарин де + кхаарин де + еарин де + пӀераскан де + шот де + + + + + + + 1-гӀа квартал + 2-гӀа квартал + 3-гӀа квартал + 4-гӀа квартал + + + + + + + + мур + + + шо + даханчу шарахь + карарчу шарахь + рогӀерчу шарахь + + {0} шо даьлча + {0} шо даьлча + + + {0} шо хьалха + {0} шо хьалха + + + + ш. + + {0} ш. даьлча + {0} ш. даьлча + + + {0} ш. хьалха + {0} ш. хьалха + + + + ш. + + {0} ш. даьлча + {0} ш. даьлча + + + {0} ш. хьалха + {0} ш. хьалха + + + + Квартал + + {0} квартал яьлча + {0} квартал яьлча + + + {0} квартал хьалха + {0} квартал хьалха + + + + кв. + + {0} кв. яьлча + {0} кв. яьлча + + + {0} кв. хьалха + {0} кв. хьалха + + + + кв. + + {0} кв. яьлча + {0} кв. яьлча + + + {0} кв. хьалха + {0} кв. хьалха + + + + бутт + баханчу баттахь + карарчу баттахь + рогӀерчу баттахь + + {0} бутт баьлча + {0} бутт баьлча + + + {0} бутт хьалха + {0} бутт хьалха + + + + бут. + + {0} б. баьлча + {0} б. баьлча + + + {0} б. хьалха + {0} б. хьалха + + + + бут. + + {0} б. баьлча + {0} б. баьлча + + + {0} б. хьалха + {0} б. хьалха + + + + кӀира + даханчу кӀирнахь + карарчу кӀирнахь + рогӀерчу кӀирнахь + + {0} кӀира даьлча + {0} кӀира даьлча + + + {0} кӀира хьалха + {0} кӀира хьалха + + + + кӀир. + + {0} кӀир. даьлча + {0} кӀир. даьлча + + + {0} кӀир. хьалха + {0} кӀир. хьалха + + + + кӀир. + + {0} кӀир. даьлча + {0} кӀир. даьлча + + + {0} кӀир. хьалха + {0} кӀир. хьалха + + + + де + селхана + тахана + кхана + + {0} де даьлча + {0} де даьлча + + + {0} де хьалха + {0} де хьалха + + + + де + + {0} д. даьлча + {0} д. даьлча + + + {0} д. хьалха + {0} де хьалха + + + + де + + {0} д. даьлча + {0} д. даьлча + + + де хьалха + {0} де хьалха + + + + кӀиран де + + + даханчу кӀиранан дийнахь + карарчу кӀиранан дийнахь + рогӀерчу кӀиранан дийнахь + + + даханчу кӀиранан д. + карарчу кӀиранан д. + рогӀерчу кӀиранан д. + + + даханчу кӀиранан д. + карарчу кӀиранан д. + рогӀерчу кӀиранан д + + + даханчу оршотан дийнахь + карарчу оршотан дийнахь + рогӀерчу оршотан дийнахь + + + даханчу оршотан д. + карара оршотан д. + рогӀерчу оршотан д. + + + даханчу оршотан д. + карара оршотан д. + рогӀерчу оршотан д. + + + даханчу шинарин дийнахь + карарчу шинарин дийнахь + рогӀерчу шинарин дийнахь + + + даханчу шинарин д. + карарчу шинарин д. + рогӀерчу шинарин д. + + + даханчу шинарин д. + карарчу шинарин д. + рогӀерчу шинарин д. + + + даханчу кхаарин дийнахь + карарчу кхаарин дийнахь + рогӀерчу кхаарин дийнахь + + + даханчу кхаарин д. + карарчу кхаарин д. + рогӀерчу кхаарин д. + + + даханчу кхаарин д. + карарчу кхаарин д. + рогӀерчу кхаарин д. + + + даханчу еарин дийнахь + карарчу еарин дийнахь + рогӀерчу еарин дийнахь + + + даханчу еарин д. + карарчу еарин д. + рогӀерчу еарин д. + + + даханчу еарин д. + карарчу еарин д. + рогӀерчу еарин д. + + + даханчу пӀераскан дийнахь + карарчу пӀераскан дийнахь + рогӀерчу пӀераскан дийнахь + + + даханчу пӀераскан д. + карарчу пӀераскан д. + рогӀерчу пӀераскан д. + + + даханчу пӀераскан д. + карарчу пӀераскан д. + рогӀерчу пӀераскан д. + + + даханчу шотдийнахь + карарчу шотдийнахь + рогӀерчу шотдийнахь + + + даханчу шотд. + карарчу даханчу шотд. + рогӀерчу даханчу шотд. + + + даханчу шотд. + карарчу даханчу шотд. + рогӀерчу даханчу шотд. + + + делкъал тӀехьа + + + сахьт + + {0} сахьт даьлча + {0} сахьт даьлча + + + {0} сахьт хьалха + {0} сахьт хьалха + + + + сахь. + + {0} сахь. даьлча + {0} сахь. даьлча + + + {0} сахь. хьалха + {0} сахь. хьалха + + + + сахь. + + {0} сахь. даьлча + {0} сахь. даьлча + + + {0} сахь. хьалха + {0} сахь. хьалха + + + + минот + + {0} минот яьлча + {0} минот яьлча + + + {0} минот хьалха + {0} минот хьалха + + + + мин. + + {0} мин. яьлча + {0} мин. яьлча + + + {0} мин. хьалха + {0} мин. хьалха + + + + мин. + + {0} мин. яьлча + {0} мин. яьлча + + + {0} мин. хьалха + {0} мин. хьалха + + + + секунд + + {0} секунд яьлча + {0} секунд яьлча + + + {0} секунд хьалха + {0} секунд хьалха + + + + сек. + + {0} сек. яьлча + {0} сек. яьлча + + + {0} сек. хьалха + {0} сек. хьалха + + + + сек. + + {0} сек. яьлча + {0} сек. яьлча + + + {0} сек. хьалха + {0} сек. хьалха + + + + сахьтан аса + + + + +HH:mm;-HH:mm + GMT{0} + GMT + {0} + {0} (+1) + {0} (+0) + {1} ({0}) + + Йоьвзуш йоцу гӀала + + + Андорра + + + Дубай + + + Кабул + + + Антигуа + + + Ангилья + + + Тирана + + + Ереван + + + Луанда + + + Ротера + + + Палмер + + + Тролль + + + Сёва + + + Моусон + + + Дейвис + + + Восток + + + Кейси + + + Дюмон-д’Юрвиль + + + Мак-Мердо + + + Рио-Гальегос + + + Мендоса + + + Сан-Хуан + + + Ушуая + + + Ла-Риоха + + + Сан-Луис + + + Катамарка + + + Сальта + + + Жужуй + + + Тукуман + + + Кордова + + + Буэнос-Айрес + + + Паго-Паго + + + Вена + + + Перт + + + Юкла + + + Дарвин + + + Аделаида + + + Брокен-Хилл + + + Керри + + + Мельбурн + + + Хобарт + + + Линдеман + + + Сидней + + + Брисбен + + + Маккуори + + + Лорд-Хау, гӀ-е + + + Аруба + + + Мариехамн + + + Бакох + + + Сараево + + + Барбадос + + + Дакка + + + Брюссель + + + Уагадугу + + + Софи + + + Бахрейн + + + Бужумбура + + + Порто-Ново + + + Сен-Бартельми + + + Бермудаш + + + Бруней + + + Ла-Пас + + + Кралендейк + + + Эйрунепе + + + Риу-Бранку + + + Порту-Велью + + + Боа-Виста + + + Манаус + + + Куяба + + + Сантарен + + + Кампу-Гранди + + + Белен + + + Арагуаина + + + Сан-Паулу + + + Баи + + + Форталеза + + + Масейо + + + Ресифи + + + Норонха + + + Нассау + + + Тимпу + + + Габороне + + + Минск + + + Белиз + + + Доусон + + + Уайтхорс + + + Инувик + + + Ванкувер + + + Доусон-Крик + + + Крестон + + + Йеллоунайф + + + Эдмонтон + + + Свифт-Карент + + + Кеймбридж-Бей + + + Реджайна + + + Виннипег + + + Резолют + + + Рейни-Ривер + + + Ранкин-Инлет + + + Корал-Харбор + + + Тандер-Бей + + + Нипигон + + + Торонто + + + Икалуит + + + Пангниртанг + + + Монктон + + + Галифакс + + + Гус-Бей + + + Глейс-Бей + + + Бланк-Саблон + + + Сент-Джонс + + + Кокосийн, гӀ-наш + + + Киншаса + + + Лубумбаши + + + Банги + + + Браззавиль + + + Цюрих + + + Абиджан + + + Раротонга + + + Мархин гӀайренаш + + + Сантьяго + + + Дуала + + + Урумчи + + + Шанхай + + + Богота + + + Коста-Рика + + + Гавана + + + Кабо-Верде + + + Кюрасао + + + Ӏийса пайхамар винчу ден гӀайре + + + Никоси + + + Прага + + + Бюзинген-ам-Хохрайн + + + Берлин + + + Джибути + + + Копенгаген + + + Доминика + + + Санто-Доминго + + + Алжир + + + Галапагосан гӀайренаш + + + Гуаякиль + + + Таллин + + + КъахӀира + + + Эль-Аюн + + + Асмера + + + Канаран гӀайренаш + + + Сеута + + + Мадрид + + + Аддис-Абеба + + + Хельсинки + + + Фиджи + + + Стэнли + + + Трук, гӀ-наш + + + Понапе, гӀ-наш + + + Косрае + + + Фарерийн гӀайренаш + + + Париж + + + Либревиль + + + + Британин, аьхкенан хан + + Лондон + + + Гренада + + + Тбилиси + + + Кайенна + + + Гернси + + + Аккра + + + Гибралтар + + + Туле + + + Готхоб + + + Скорсбисунн + + + Денмарксхавн + + + Банжул + + + Конакри + + + Гваделупа + + + Малабо + + + Афина + + + Къилба Джорджи + + + Гватемала + + + Гуам + + + Бисау + + + Гайана + + + Гонконг + + + Тегусигальпа + + + Загреб + + + Порт-о-Пренс + + + Будапешт + + + Джакарта + + + Понтианак + + + Макасар + + + Джайпур + + + + Ирланди, аьхкенан хан + + Дублин + + + Къудс-ГӀала + + + Мэн, гӀ-е + + + Калькутта + + + Чагос + + + БагӀдад + + + ТехӀран + + + Рейкьявик + + + Рим + + + Джерси + + + Ямайка + + + Ӏамман + + + Токио + + + Найроби + + + Бишкек + + + Пномпень + + + Эндерберин, гӀ-е + + + Киритимати + + + Тарава + + + Коморийн гӀайренаш + + + Сент-Китс + + + Пхеньян + + + Сеул + + + Кувейт + + + Кайман + + + Актау + + + Орал + + + Актобе + + + Кызылорда + + + Алма-Ата + + + Вьентьян + + + Бейрут + + + Сент-Люси + + + Вадуц + + + Коломбо + + + Монрови + + + Масеру + + + Вильнюс + + + Люксембург + + + Рига + + + Триполи + + + Касабланка + + + Монако + + + Кишинев + + + Подгорица + + + Мариго + + + Антананариву + + + Кваджалейн + + + Маджуро + + + Скопье + + + Бамако + + + Рангун + + + Ховд + + + Улан-Батор + + + Чойбалсан + + + Макао + + + Сайпан + + + Мартиника + + + Нуакшот + + + Монсеррат + + + Мальта + + + Маврики + + + Мальдиваш + + + Блантайр + + + Тихуана + + + Санта-Изабел + + + Эрмосильо + + + Масатлан + + + Чиуауа + + + Баия-де-Бандерас + + + Охинага + + + Монтеррей + + + Мехико + + + Матаморос + + + Мерида + + + Канкун + + + Куала-Лумпур + + + Кучинг + + + Мапуту + + + Виндхук + + + Нумеа + + + Ниамей + + + Норфолк + + + Лагос + + + Манагуа + + + Амстердам + + + Осло + + + Катманду + + + Науру + + + Ниуэ + + + Чатем, гӀ-е + + + Окленд + + + Маскат + + + Панама + + + Лима + + + Таити, гӀ-наш + + + Маркизан, гӀ-наш + + + Гамбьен, гӀ-наш + + + Порт-Морсби + + + Бугенвиль, гӀ-е + + + Манила + + + Карачи + + + Варшава + + + Микелон + + + Питкерн + + + Пуэрто-Рико + + + Газа + + + Хеврон + + + Азоран гӀайренаш + + + Мадейра, гӀ-е + + + Лиссабон + + + Палау + + + Асунсьон + + + Катар + + + Реюньон + + + Бухарест + + + Белград + + + Калининград + + + Симферополь + + + Москва + + + Волгоград + + + Самара + + + Екатеринбург + + + Омск + + + Новосибирск + + + Новокузнецк + + + Красноярск + + + Иркутск + + + Чита + + + Якутск + + + Владивосток + + + Хандыга + + + Сахалин гӀ-е + + + Усть-Нера + + + Магадан + + + Среднеколымск + + + Петропавловск-Камчатски + + + Анадырь + + + Кигали + + + Эр-Рияд + + + Гвадалканал + + + Маэ + + + Хартум + + + Стокгольм + + + Сингапур + + + Езачу Еленин гӀайре + + + Любляна + + + Лонгйир + + + Братислава + + + Фритаун + + + Сан-Марино + + + Дакар + + + Могадишо + + + Парамарибо + + + Джуба + + + Сан-Томе + + + Сальвадор + + + Лоуэр-Принсес-Куортер + + + Димашкъ + + + Мбабане + + + Гранд Турк + + + Нджамена + + + Кергелен + + + Ломе + + + Бангкок + + + Душанбе + + + Факаофо + + + Дили + + + Ашхабад + + + Тунис + + + Тонгатапу + + + Стамбул + + + Порт-оф-Спейн + + + Фунафути + + + Тайбэй + + + Дар-эс-Салам + + + Ужгород + + + Киев + + + Запорожье + + + Кампала + + + Мидуэй, гӀ-наш + + + Джонстон + + + Уэйк, гӀ-е + + + Адак + + + Ном + + + Гонолулу + + + Анкоридж + + + Якутат + + + Ситка + + + Джуно + + + Метлакатла + + + Лос-Анджелес + + + Бойсе + + + Финикс + + + Денвер + + + Бойла, Къилбаседа Дакота + + + Нью-Салем + + + Юкъ, Къилбаседа Дакота + + + Чикаго + + + Меномини + + + Винсенс + + + Петерсбург + + + Телл-Сити + + + Нокс + + + Винамак + + + Маренго + + + Индианаполис + + + Луисвилл + + + Вивэй + + + Монтиселло + + + Детройт + + + Нью-Йорк + + + Монтевидео + + + Самарканд + + + Ташкент + + + Ватикан + + + Сент-Винсент + + + Каракас + + + Тортола + + + Сент-Томас + + + Хошимин + + + Эфате + + + Уоллис + + + Апи + + + Аден + + + Майорка + + + Йоханнесбург + + + Лусака + + + Хараре + + + + ОвхӀан-пачхьалкх + + + + + Юккъера Африка + + + + + Малхбален Африка + + + + + Къилба Африка + + + + + Малхбузен Африка + Малхбузен Африка, стандартан хан + Малхбузен Африка, аьхкенан хан + + + + + Аляска + Аляска, стандартан хан + Аляска, аьхкенан хан + + + + + Амазонка + Амазонка, стандартан хан + Амазонка, аьхкенан хан + + + + + Юккъера Америка + Юккъера Америка, стандартан хан + Юккъера Америка, аьхкенан хан + + + + + Малхбален Америка + Малхбален Америка, стандартан хан + Малхбален Америка, аьхкенан хан + + + + + Лаьмнийн хан (АЦШ) + Лаьмнийн стандартан хан (АЦШ) + Лаьмнийн аьхкенан хан (АЦШ) + + + + + Тийна океанан хан + Тийна океанан стандартан хан + Тийна океанан аьхкенан хан + + + + + хан Апиа, Самоа + стандартан хан Апиа, Самоа + аьхкенан хан Апиа, Самоа + + + + + СаӀудийн Арави + СаӀудийн Арави, стандартан хан + СаӀудийн Арави, аьхкенан хан + + + + + Аргентина + Аргентина, стандартан хан + Аргентина, аьхкенан хан + + + + + Малхбузен Аргентина + Малхбузен Аргентина, стандартан хан + Малхбузен Аргентина, аьхкенан хан + + + + + Эрмалойчоь + Эрмалойчоь, стандартан хан + Эрмалойчоь, аьхкенан хан + + + + + Атлантикан хан + Атлантикан стандартан хан + Атлантикан аьхкенан хан + + + + + Юккъера Австрали + Юккъера Австрали, стандартан хан + Юккъера Австрали, аьхкенан хан + + + + + Юккъера Австрали, малхбузен хан + Юккъера Австрали, малхбузен стандартан хан + Юккъера Австрали, малхбузен аьхкенан хан + + + + + Малхбален Австрали + Малхбален Австрали, стандартан хан + Малхбален Австрали, аьхкенан хан + + + + + Малхбузен Австрали + Малхбузен Австрали, стандартан хан + Малхбузен Австрали, аьхкенан хан + + + + + Азербайджан + Азербайджан, стандартан хан + Азербайджан, аьхкенан хан + + + + + Азоран гӀайренаш + Азоран гӀайренаш, стандартан хан + Азоран гӀайренаш, аьхкенан хан + + + + + Бангладеш + Бангладеш, стандартан хан + Бангладеш, аьхкенан хан + + + + + Бутан + + + + + Боливи + + + + + Бразили + Бразили, стандартан хан + Бразили, аьхкенан хан + + + + + Бруней-Даруссалам + + + + + Кабо-Верде + Кабо-Верде, стандартан хан + Кабо-Верде, аьхкенан хан + + + + + Чаморро + + + + + Чатем + Чатем, стандартан хан + Чатем, аьхкенан хан + + + + + Чили + Чили, стандартан хан + Чили, аьхкенан хан + + + + + Китай + Китай, стандартан хан + Китай, аьхкенан хан + + + + + Чойбалсан + Чойбалсан, стандартан хан + Чойбалсан, аьхкенан хан + + + + + Ӏийса пайхамар винчу ден гӀайре + + + + + Кокосийн, гӀ-наш + + + + + Колумби + Колумби, стандартан хан + Колумби, аьхкенан хан + + + + + Кукан, гӀ-наш + Кукан, гӀ-наш, стандартан хан + Кукан, гӀ-наш, аьхкенан хан + + + + + Куба + Куба, стандартан хан + Куба, аьхкенан хан + + + + + Дейвис + + + + + Дюмон-д’Юрвиль + + + + + Малхбален Тимор + + + + + Мархин гӀайре + Мархин гӀайре, стандартан хан + Мархин гӀайре, аьхкенан хан + + + + + Эквадор + + + + + Юккъера Европа + Юккъера Европа, стандартан хан + Юккъера Европа, аьхкенан хан + + + + + Малхбален Европа + Малхбален Европа, стандартан хан + Малхбален Европа, аьхкенан хан + + + + + Калининградера а, Минскера а хан + + + + + Малхбузен Европа + Малхбузен Европа, стандартан хан + Малхбузен Европа, аьхкенан хан + + + + + Фолклендан гӀайренаш + Фолклендан гӀайренаш, стандартан хан + Фолклендан гӀайренаш, аьхкенан хан + + + + + Фиджи + Фиджи, стандартан хан + Фиджи, аьхкенан хан + + + + + Французийн Гвиана + + + + + Французийн къилба а, Антарктидан а хан + + + + + Галапагосан гӀайренаш + + + + + Гамбье + + + + + Гуьржийчоь + Гуьржийчоь, стандартан хан + Гуьржийчоь, аьхкенан хан + + + + + Гилбертан, гӀ-наш + + + + + Гринвичица юкъара хан + + + + + Малхбален Гренланди + Малхбален Гренланди, стандартан хан + Малхбален Гренланди, аьхкенан хан + + + + + Малхбузен Гренланди + Малхбузен Гренланди, стандартан хан + Малхбузен Гренланди, аьхкенан хан + + + + + ГӀажарийн айма + + + + + Гайана + + + + + Гавайн-алеутийн хан + Гавайн-алеутийн стандартан хан + Гавайн-алеутийн аьхкенан хан + + + + + Гонконг + Гонконг, стандартан хан + Гонконг, аьхкенан хан + + + + + Ховд + Ховд, стандартан хан + Ховд, аьхкенан хан + + + + + Инди + + + + + Индин океан + + + + + Индокитай + + + + + Юккъера Индонези + + + + + Малхбален Индонези + + + + + Малхбузен Индонези + + + + + ГӀажарийчоь + ГӀажарийчоь, стандартан хан + ГӀажарийчоь, аьхкенан хан + + + + + Иркутск + Иркутск, стандартан хан + Иркутск, аьхкенан хан + + + + + Израиль + Израиль, стандартан хан + Израиль, аьхкенан хан + + + + + Япони + Япони, стандартан хан + Япони, аьхкенан хан + + + + + Малхбален Казахстан + + + + + Малхбузен Казахстан + + + + + Корей + Корей, стандартан хан + Корей, аьхкенан хан + + + + + Косраэ + + + + + Красноярск + Красноярск, стандартан хан + Красноярск, аьхкенан хан + + + + + Киргизи + + + + + Лайн, гӀ-наш + + + + + Лорд-Хау + Лорд-Хау, стандартан хан + Лорд-Хау, аьхкенан хан + + + + + Маккуори + + + + + Магадан + Магадан, стандартан хан + Магадан, аьхкенан хан + + + + + Малайзи + + + + + Мальдиваш + + + + + Маркизан, гӀ-наш + + + + + Маршалан , гӀ-наш + + + + + Маврики + Маврики, стандартан хан + Маврики, аьхкенан хан + + + + + Моусон + + + + + Къилбаседа Американ Мексикан хан + Къилбаседа Американ Мексикан стандартан хан + Къилбаседа Американ Мексикан аьхкенан хан + + + + + Тийна океанан Мексикан хан + Тийна океанан Мексикан стандартан хан + Тийна океанан Мексикан аьхкенан хан + + + + + Улан-Батор + Улан-Батор, стандартан хан + Улан-Батор, аьхкенан хан + + + + + Москва + Москва, стандартан хан + Москва, аьхкенан хан + + + + + Мьянма + + + + + Науру + + + + + Непал + + + + + Керла Каледони + Керла Каледони, стандартан хан + Керла Каледони, аьхкенан хан + + + + + Керла Зеланди + Керла Зеланди, стандартан хан + Керла Зеланди, аьхкенан хан + + + + + Ньюфаундленд + Ньюфаундленд, стандартан хан + Ньюфаундленд, аьхкенан хан + + + + + Ниуэ + + + + + Норфолк + + + + + Фернанду-ди-Норонья + Фернанду-ди-Норонья, стандартан хан + Фернанду-ди-Норонья, аьхкенан хан + + + + + Новосибирск + Новосибирск, стандартан хан + Новосибирск, аьхкенан хан + + + + + Омск + Омск, стандартан хан + Омск, аьхкенан хан + + + + + Пакистан + Пакистан, стандартан хан + Пакистан, аьхкенан хан + + + + + Палау + + + + + Папуа – Керла Гвиней + + + + + Парагвай + Парагвай, стандартан хан + Парагвай, аьхкенан хан + + + + + Перу + Перу, стандартан хан + Перу, аьхкенан хан + + + + + Филиппинаш + Филиппинаш, стандартан хан + Филиппинаш, аьхкенан хан + + + + + Феникс, гӀ-наш + + + + + Сен-Пьер а, Микелон а + Сен-Пьер а, Микелон а, стандартан хан + Сен-Пьер а, Микелон а, аьхкенан хан + + + + + Питкэрн + + + + + Понапе, гӀ-наш + + + + + Реюньон + + + + + Ротера + + + + + Сахалин + Сахалин, стандартан хан + Сахалин, аьхкенан хан + + + + + Самоа + Самоа, стандартан хан + Самоа, аьхкенан хан + + + + + Сейшелан гӀайренаш + + + + + Сингапур + + + + + Соломонан, гӀ-наш + + + + + Къилба Георги + + + + + Суринам + + + + + Сёва + + + + + Таити, гӀ-наш + + + + + Тайвань + Тайвань, стандартан хан + Тайвань, аьхкенан хан + + + + + Таджикистан + + + + + Токелау + + + + + Тонга + Тонга, стандартан хан + Тонга, аьхкенан хан + + + + + Чуук + + + + + Туркмени + Туркменин стандартан хан + Туркменин аьхкенан хан + + + + + Тувалу + + + + + Уругвай + Уругвай, стандартан хан + Уругвай, аьхкенан хан + + + + + Узбекистан + Узбекистанан стандартан хан + Узбекистанан аьхкенан хан + + + + + Вануату + Вануату, стандартан хан + Вануату, аьхкенан хан + + + + + Венесуэла + + + + + Владивосток + Владивосток, стандартан хан + Владивосток, аьхкенан хан + + + + + Волгоград + Волгоград, стандартан хан + Волгоград, аьхкенан хан + + + + + Восток + + + + + Уэйк, гӀ-е + + + + + Уоллис а, Футуна а + + + + + Якутск + Якутск, стандартан хан + Якутск, аьхкенан хан + + + + + Екатеринбург + Екатеринбург, стандартан хан + Екатеринбург, аьхкенан хан + + + + + + 1 + + . + , + % + + + - + E + × + + Терхьаш дац + : + + + + + #,##0.### + + + + + 0 эзар + 0 эзар + 00 эзар + 00 эзар + 000 эзар + 000 эзар + 0 миллион + 0 миллион + 00 миллион + 00 миллион + 000 миллион + 000 миллион + 0 миллиард + 0 миллиард + 00 миллиард + 00 миллиард + 000 миллиард + 000 миллиард + 0 триллион + 0 триллион + 00 триллион + 00 триллион + 000 триллион + 000 триллион + + + + + 0 эзар + 0 эзар + 00 эзар + 00 эзар + 000 эзар + 000 эзар + 0 млн + 0 млн + 00 млн + 00 млн + 000 млн + 000 млн + 0 млрд + 0 млрд + 00 млрд + 00 млрд + 000 млрд + 000 млрд + 0 трлн + 0 трлн + 00 трлн + 00 трлн + 000 трлн + 000 трлн + + + + + + + #E0 + + + + + + + #,##0 % + + + + + + + #,##0.00 ¤ + + + #,##0.00 ¤ + + + + + 0 эзар ¤ + 0 эзар ¤ + 00 эзар ¤ + 00 эзар ¤ + 000 эзар ¤ + 000 эзар ¤ + 0 млн ¤ + 0 млн ¤ + 00 млн ¤ + 00 млн ¤ + 000 млн ¤ + 000 млн ¤ + 0 млрд ¤ + 0 млрд ¤ + 00 млрд ¤ + 00 млрд ¤ + 000 млрд ¤ + 000 млрд ¤ + 0 трлн ¤ + 0 трлн ¤ + 00 трлн ¤ + 00 трлн ¤ + 000 трлн ¤ + 000 трлн ¤ + + + {0} {1} + {0} {1} + + + + Дирхам ӀЦЭ + Дирхам ӀЦЭ + Дирхамаш ӀЦЭ + AED + + + ОвхӀан-пачхьалкхан афгани + ОвхӀан-пачхьалкхан афгани + ОвхӀан-пачхьалкхан афганиш + AFN + + + Албанин лек + Албанин лек + Албанин лекаш + ALL + + + Эрмалойчоьнан драм + Эрмалойчоьнан драм + Эрмалойчоьнан драмаш + AMD + + + Нидерландин Антилин гульден + Нидерландин Антилин гульден + Нидерландин Антилин гульденш + ANG + + + Анголан кванза + Анголан кванза + Анголан кванзаш + AOA + Kz + + + Аргентинан песо + Аргентинан песо + Аргентинан песош + ARS + $ + + + Австралин доллар + Австралин доллар + Австралин долларш + A$ + $ + + + Арубан флорин + Арубан флорин + Арубан флоринаш + AWG + + + Азербайджанан манат + Азербайджанан манат + Азербайджанан манаташ + AZN + + + Боснин а, Герцеговинан а хийцалун марка + Боснин а, Герцеговинан а хийцалун марка + Боснин а, Герцеговинан а хийцалун маркаш + BAM + KM + + + Барбадосан доллар + Барбадосан доллар + Барбадосан долларш + BBD + $ + + + Бангладешан така + Бангладешан така + Бангладешан такаш + BDT + + + + Болгарин лев + Болгарин лев + Болгарин левш + BGN + + + Бахрейнан динар + Бахрейнан динар + Бахрейнан динараш + BHD + + + Бурундин франк + Бурундин франк + Бурундин франкаш + BIF + + + Бермудан доллар + Бермудан доллар + Бермудан долларш + BMD + $ + + + Брунейн доллар + Брунейн доллар + Брунейн долларш + BND + $ + + + Боливин боливиано + Боливин боливиано + Боливин боливианош + BOB + Bs + + + Бразилин реал + Бразилин реал + Бразилин реалш + R$ + R$ + + + Багаман доллар + Багаман доллар + Багаман долларш + BSD + $ + + + Бутанан нгултрум + Бутанан нгултрум + Бутанан нгултрумаш + BTN + + + Ботсванан пула + Ботсванан пула + Ботсванан пулаш + BWP + P + + + Белоруссин сом + Белоруссин сом + Белоруссин соьмаш + BYR + р. + + + Белизин доллар + Белизин доллар + Белизин долларш + BZD + $ + + + Канадан доллар + Канадан доллар + Канадан долларш + CA$ + $ + + + Конголезин франк + Конголезин франк + Конголезин франкаш + CDF + + + Швейцарин франк + Швейцарин франк + Швейцарин франкаш + CHF + + + Чилин песо + Чилин песо + Чилин песош + CLP + $ + + + Китайн юань + Китайн юань + Китайн юанаш + CN¥ + ¥ + + + Колумбин песо + Колумбин песо + Колумбин песо + COP + $ + + + Костарикан колон + Костарикан колон + Костарикан колонш + CRC + + + + Кубан хийцалун песо + Кубан хийцалун песо + Кубан хийцалун песош + CUC + $ + + + Кубан песо + Кубан песо + Кубан песош + CUP + $ + + + Кабо-Верден эскудо + Кабо-Верден эскудо + Кабо-Верден эскудош + CVE + + + Чехин крона + Чехин крона + Чехин кронаш + CZK + + + + Джибутин франк + Джибутин франк + Джибутин франкаш + DJF + + + Данин крона + Данин крона + Данин кронаш + DKK + kr + + + Доминикан песо + Доминикан песо + Доминикан песош + DOP + $ + + + Алжиран динар + Алжиран динар + Алжиран динараш + DZD + + + Мисаран фунт + Мисаран фунт + Мисаран фунташ + EGP + + + + Эритрейн накфа + Эритрейн накфа + Эритрейн накфаш + ERN + + + Эфиопин быр + Эфиопин быр + Эфиопин быраш + ETB + + + Евро + евро + Еврош + + + + + Фиджин доллар + Фиджин доллар + Фиджин долларш + FJD + $ + + + Фолклендан гӀайренийн фунт + Фолклендан гӀайренийн фунт + Фолклендан гӀайренийн фунташ + FKP + £ + + + Англин фунт + Англин фунт + Англин фунташ + £ + £ + + + Гуьржийчоьнан лари + Гуьржийчоьнан лари + Гуьржийчоьнан лариш + GEL + + + + Ганан седи + Ганан седи + Ганан седиш + GHS + + + Гибралтаран фунт + Гибралтаран фунт + Гибралтаран фунташ + GIP + £ + + + Гамбин даласи + Гамбин даласи + Гамбин даласиш + GMD + + + Гвинейн франк + Гвинейн франк + Гвинейн франкаш + GNF + FG + + + Гватемалан кетсаль + Гватемалан кетсаль + Гватемалан кетсалш + GTQ + Q + + + Гайанан доллар + Гайанан доллар + Гайанан долларш + GYD + $ + + + Гонконган доллар + Гонконган доллар + Гонконган долларш + HK$ + $ + + + Гондурасан лемпира + Гондурасан лемпира + Гондурасан лемпираш + HNL + L + + + Хорватин куна + Хорватин куна + Хорватин кунаш + HRK + kn + + + Гаитин гурд + Гаитин гурд + Гаитин гурдаш + HTG + + + Венгрин форинт + Венгрин форинт + Венгрин форинташ + HUF + Ft + + + Индонезин рупи + Индонезин рупи + Индонезин рупиш + IDR + Rp + + + Израилан керла шекель + Израилан керла шекель + Израилан керла шекелш + + + + + Индин рупи + Индин рупи + Индин рупиш + + + + + Ӏиракъан динар + Ӏиракъан динар + Ӏиракъан динарш + IQD + + + ГӀажарийчоьнан риал + ГӀажарийчоьнан риал + ГӀажарийчоьнан риалш + IRR + + + Исландин крона + Исландин крона + Исландин кронаш + ISK + kr + + + Ямайн доллар + Ямайн доллар + Ямайн долларш + JMD + $ + + + Урданан динар + Урданан динар + Урданан динарш + JOD + + + Японин иена + Японин иена + Японин иенаш + JP¥ + ¥ + + + Кенин шиллинг + Кенин шиллинг + Кенин шиллингаш + KES + + + Киргизин сом + Киргизин сом + Киргизин соьмаш + KGS + + + Камбоджан риель + Камбоджан риель + Камбоджан риелш + KHR + + + + Коморийн гӀайренийн франк + Коморийн гӀайренийн франк + Коморийн гӀайренийн франкаш + KMF + CF + + + Къилбаседа Корейн вона + Къилбаседа Корейн вона + Къилбаседа Корейн вонаш + KPW + + + + Къилба Корейн вона + Къилба Корейн вона + Къилба Корейн вонаш + + + + + Кувейтан динар + Кувейтан динар + Кувейтан динарш + KWD + + + Кайманийн гӀайренийн доллар + Кайманийн гӀайренийн доллар + Кайманийн гӀайренийн долларш + KYD + $ + + + Казахстанан тенге + Казахстанан тенге + Казахстанан тенгеш + KZT + + + + Лаосан кип + Лаосан кип + Лаосан кипаш + LAK + + + + Ливанан фунт + Ливанан фунт + Ливанан фунташ + LBP + + + + Шри-Ланкан рупи + Шри-Ланкан рупи + Шри-Ланкан рупиш + LKR + Rs + + + Либерин доллар + Либерин доллар + Либерин долларш + LRD + $ + + + Ливин динар + Ливийский динар + Ливийский динараш + LYD + + + Мароккон дирхам + Мароккон дирхам + Мароккон дирхамаш + MAD + + + Молдавин лей + Молдавин лей + Молдавин лейш + MDL + + + Малагасийн ариари + Малагасийн ариари + Малагасийн ариариш + MGA + Ar + + + Македонин динар + Македонин динар + Македонин динараш + MKD + + + Мьянман кьят + Мьянман кьят + Мьянман кьяташ + MMK + K + + + Монголин тугрик + Монголин тугрик + Монголин тугрикаш + MNT + + + + Макаон патака + Макаон патака + Макаон патакаш + MOP + + + Мавританин уги + Мавританин уги + Мавританин угиш + MRO + + + Маврикин рупи + Маврикин рупи + Маврикин рупиш + MUR + Rs + + + Мальдивийн руфи + Мальдивийн руфи + Мальдивийн руфиш + MVR + + + Малавин квача + Малавин квача + Малавин квачаш + MWK + + + Мексикан песо + Мексикан песо + Мексикан песош + MX$ + $ + + + Малайзин ринггит + Малайзин ринггит + Малайзин ринггиташ + MYR + RM + + + Мозамбикан метикал + Мозамбикан метикал + Мозамбикан метикалш + MZN + + + Намибин доллар + Намибин доллар + Намибин долларш + NAD + $ + + + Нигерин найра + Нигерин найра + Нигерин найраш + NGN + + + + Никарагуан кордоба + Никарагуан кордоба + Никарагуан кордобаш + NIO + C$ + + + Норвегин крона + Норвегин крона + Норвегин кронаш + NOK + kr + + + Непалан рупи + Непалан рупи + Непалан рупиш + NPR + Rs + + + Керла Зеландин доллар + Керла Зеландин доллар + Керла Зеландин долларш + NZ$ + $ + + + Оманан риал + Оманан риал + Оманан риалш + OMR + + + Панаман бальбоа + Панаман бальбоа + Панаман бальбоаш + PAB + + + Перун керла соль + Перун керла соль + Перун керла солаш + PEN + + + Папуа — Керла Гвинейн кина + Папуа — Керла Гвинейн кина + Папуа — Керла Гвинейн кинаш + PGK + + + Филиппинийн песо + Филиппинийн песо + Филиппинийн песош + PHP + + + + Пакистанан рупи + Пакистанан рупи + Пакистанан рупиш + PKR + Rs + + + Польшан злотый + Польшан злотый + Польшан злотыйш + PLN + + + + Парагвайн гуарани + Парагвайн гуарани + Парагвайн гуараниш + PYG + + + + Катаран риал + Катаран риал + Катаран риалш + QAR + + + Румынин лей + Румынин лей + Румынин лейш + RON + + + Сербин динар + Сербин динар + Сербин динараш + RSD + + + Российн сом + Российн сом + Российн соьмаш + + + + Руандан франк + Руандан франк + Руандан франкаш + RWF + RF + + + СаӀудийн Аравин риал + СаӀудийн Аравин риал + СаӀудийн Аравин риалш + SAR + + + Соломонан гӀайренийн доллар + Соломонан гӀайренийн доллар + Соломонан гӀайренийн долларш + SBD + $ + + + Сейшелан рупи + Сейшелан рупи + Сейшелан рупиш + SCR + + + Суданан фунт + Суданан фунт + Суданан фунташ + SDG + + + Швецин крона + Швецин крона + Швецин кронаш + SEK + kr + + + Сингапуран доллар + Сингапуран доллар + Сингапуран долларш + SGD + $ + + + Сийлахьчу Еленин гӀайрен фунт + Сийлахьчу Еленин гӀайрен фунт + Сийлахьчу Еленин гӀайрен фунташ + SHP + £ + + + Леоне + леоне + леонеш + SLL + + + Сомалин шиллинг + Сомалин шиллинг + Сомалин шиллингаш + SOS + + + Суринаман доллар + Суринаман доллар + Суринаман долларш + SRD + $ + + + Къилба Суданан фунт + Къилба Суданан фунт + Къилба Суданан фунташ + SSP + £ + + + Сан-Томен а, Принсипин а добра + Сан-Томен а, Принсипин а добра + Сан-Томен а, Принсипин а добраш + STD + Db + + + Шеман фунт + Шеман фунт + Шеман фунташ + SYP + £ + + + Свазилендан лилангени + Свазилендан лилангени + Свазилендан лилангениш + SZL + + + Таиландан бат + Таиландан бат + Таиландан баташ + THB + ฿ + + + Таджикистанан сомони + Таджикистанан сомони + Таджикистанан сомониш + TJS + + + Туркменин керла манат + Туркменин керла манат + Туркменин керла манаташ + TMT + + + Тунисан динар + Тунисан динар + Тунисан динараш + TND + + + Тонганан паанга + Тонганан паанга + Тонганан паангаш + TOP + T$ + + + Туркойчоьнан лира + Туркойчоьнан керла лира + Туркойчоьнан лираш + TRY + + TL + + + Тринидадан а, Тобагон а доллар + Тринидадан а, Тобагон а доллар + Тринидадан а, Тобагон а долларш + TTD + $ + + + Тайванан керла доллар + Тайванан керла доллар + Тайванан керла долларш + NT$ + $ + + + Танзанин шиллинг + Танзанин шиллинг + Танзанин шиллингаш + TZS + + + Украинан гривна + Украинан гривна + Украинан гривнаш + UAH + + + + Угандан шиллинг + Угандан шиллинг + Угандан шиллингаш + UGX + + + АЦШн доллар + АЦШн доллар + АЦШн долларш + US$ + $ + + + Уругвайн песо + Уругвайн песо + Уругвайн песош + UYU + $ + + + Узбекистанан сум + Узбекистанан сум + Узбекистанан сумаш + UZS + + + Венесуэлан боливар + Венесуэлан боливар + Венесуэлан боливарш + VEF + Bs + + + Вьетнаман донг + Вьетнаман донг + Вьетнаман донгаш + + + + + Вануатун вату + Вануатун вату + Вануатун ватуш + VUV + + + Самоанан тала + Самоанан тала + Самоанан талаш + WST + + + Юккъерчу Африкан КФА франк + Юккъерчу Африкан КФА франк + Юккъерчу Африкан КФА франкаш + FCFA + + + Малхбален Карибийн доллар + Малхбален Карибийн доллар + Малхбален Карибийн долларш + EC$ + $ + + + Малхбузен Африкан КФА франк + Малхбузен Африкан КФА франк + Малхбузен Африкан КФА франк + CFA + + + Французийн Тийна океанан франк + Французийн Тийна океанан франк + Французийн Тийна океанан франк + CFPF + + + девзаш доцу я лелаш доцу ахча + девзаш доцу я лелаш доцу ахча + девзаш доцу я лелаш доцу ахча + + + Йеменан риал + Йеменан риал + Йеменан риалш + YER + + + Къилба-Африкин рэнд + Къилба-Африкин рэнд + Къилба-Африкин рэндаш + ZAR + R + + + Замбин квача + Замбин квача + Замбин квачаш + ZMW + ZK + + + + {0}–{1} + + + + + + c + {0} c + {0} c + + + шераш + {0} шо + {0} шо + {0} шарахь + + + беттанаш + {0} бутт + {0} бутт + {0} баттахь + + + кӀиранаш + {0} кӀира + {0} кӀира + {0} кӀиранахь + + + денош + {0} де + {0} де + {0} дийнахь + + + сахьташ + {0} сахьт + {0} сахьт + {0} сахьтехь + + + миноташ + {0} минот + {0} минот + {0} минотехь + + + секундаш + {0} секунд + {0} секунд + {0} секундехь + + + миллисекундаш + {0} миллисекунд + {0} миллисекунд + + + микросекундаш + {0} микросекунд + {0} микросекунд + + + наносекундаш + {0} наносекунд + {0} наносекунд + + + километраш + {0} километр + {0} километр + + + дециметраш + {0} дециметр + {0} дециметр + + + сантиметраш + {0} сантиметр + {0} сантиметр + {0} сантиметрехь + + + футаш + {0} фут + {0} фут + + + дюймаш + {0} дюйм + {0} дюйм + + + астрономин дакъош + {0} астрономин дакъа + {0} астрономин дакъа + + + + + c + {0} c + {0} c + + + ш. + {0} ш. + {0} ш. + {0} ш. + + + бут + {0} бут. + {0} бут. + + + кӀир + {0} кӀир. + {0} кӀир. + + + денош + д. + {0} д. + + + сахь + {0} сахь. + {0} сахь. + {0} сахь. + + + мин + {0} мин + {0} мин + + + сек + {0} сек + {0} сек + + + мс + {0} мс + {0} мс + + + мкс + {0} мкс + {0} мкс + + + нс + {0} нс + {0} нс + + + км + {0} км + {0} км + + + дм + {0} дм + {0} дм + + + см + {0} см + {0} см + + + футаш + {0} фут + {0} фут + + + дюйм + {0} дюйм. + {0} дюйм. + + + а. д. + {0} а. д. + {0} а. д. + + + + + ш. + {0} ш. + {0} ш. + + + бут + {0} б. + {0} б. + + + кӀир + {0} кӀ. + {0} кӀ. + + + д. + {0} д. + {0} д. + + + сахь + {0} сахь. + {0} сахь. + + + мин + {0} мин + {0} мин + + + с + {0} с + {0} с + + + мс + {0} мс + {0} мс + + + км + {0} км + {0} км + + + см + {0} см + {0} cm + + + + h:mm + + + h:mm:ss + + + m:ss + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_RU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ce_RU.xml similarity index 71% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_RU.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ce_RU.xml index f5840bf6665..adbb2ac7dcd 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_RU.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ce_RU.xml @@ -6,9 +6,8 @@ For terms of use, see http://www.unicode.org/copyright.html --> - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/cgg.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/cgg.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/cgg.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/cgg.xml index 057fa934e37..c7d232b976b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/cgg.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/cgg.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angwira Arubania Arimeniya - Antiri za Hoorandi Angora Arigentina Samowa ya Ameerika @@ -480,22 +478,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -571,6 +569,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00 + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/cgg_UG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/cgg_UG.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/cgg_UG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/cgg_UG.xml index 05885384bd3..879d4ab9e38 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/cgg_UG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/cgg_UG.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/chr.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/chr.xml similarity index 89% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/chr.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/chr.xml index 4a26ae96a5b..ae45c3cdd01 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/chr.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/chr.xml @@ -1,13 +1,12 @@ - - - + @@ -57,7 +56,7 @@ For terms of use, see http://www.unicode.org/copyright.html ᎠᏍᏟᏯ ᎡᎳᏗᏜ ᎠᎷᏆ - ᎣᎴᏅᏓ ᏚᎦᏚᏛ + ᎣᎴᏅᏓ ᏚᎦᏚᏛᎢ ᎠᏏᎵᏆᏌᏂ ᏉᏏᏂᎠ ᎠᎴ ᎲᏤᎪᏫ ᏆᏇᏙᏍ @@ -75,7 +74,7 @@ For terms of use, see http://www.unicode.org/copyright.html ᏆᏏᎵᎢ ᎾᏍᎩ ᏆᎭᎹᏍ ᏊᏔᏂ - ᏊᏪ ᎤᎦᏚᏛ + ᏊᏪ ᎤᎦᏚᏛᎢ ᏆᏣᏩᎾ ᏇᎳᎷᏍ ᏇᎵᏍ @@ -95,7 +94,7 @@ For terms of use, see http://www.unicode.org/copyright.html ᎫᏆ ᎢᎬᎾᏕᎾ ᎢᏤᏳᏍᏗ ᏂᎦᏓ ᎤᏂᎲ ᎾᎿ ᎫᎳᎨᎣ - ᏓᏂᏍᏓᏲᎯᎲ ᎤᎦᏚᏛ + ᏓᏂᏍᏓᏲᎯᎲ ᎤᎦᏚᏛᎢ ᏌᎢᏆᏍ ᏤᎩ ᏍᎦᏚᎩ ᎠᏂᏛᏥ @@ -111,10 +110,10 @@ For terms of use, see http://www.unicode.org/copyright.html ᎠᏂᏍᏆᏂᏱ ᏫᏂᎦᏙᎯ ᏫᏥ - ᏩᎩ ᎤᎦᏚᏛ + ᏩᎩ ᏚᎦᏚᏛᎢ ᏩᎩ ᎤᎦᏚᏛ (ᎢᏍᎳᏍ ᎹᎸᏫᎾᏍ) ᎠᏰᏟ ᏧᎾᎵᎪᎯ ᎾᎿ ᎹᎢᏉᏂᏏᏯ - ᏪᎶ ᏚᎦᏚᏛ + ᏪᎶ ᏚᎦᏚᏛᎢ ᎦᎸᏥᏱ ᎦᏉᏂ ᎩᎵᏏᏲ @@ -136,14 +135,14 @@ For terms of use, see http://www.unicode.org/copyright.html ᎫᏇ-ᏈᏌᎤᏫ ᎦᏯᎾ ᎰᏂᎩ ᎪᏂᎩ - ᎲᏗ ᎤᎦᏚᏛ ᎠᎴ ᎺᎩᏓᎾᎵᏗ ᏚᎦᏚᏛ + ᎲᏗ ᎤᎦᏚᏛᎢ ᎠᎴ ᎺᎩᏓᎾᎵᏗ ᏚᎦᏚᏛᎢ ᎧᎶᎡᏏᎠ ᎮᎢᏘ ᎲᏂᎦᎵ ᎢᏂᏙᏂᏍᏯ ᎠᎢᎴᏂᏗ ᎢᏏᎵᏱ - ᎤᏍᏗ ᎤᎦᏚᏛ ᎾᎿ ᎠᏍᎦᏯ + ᎤᏍᏗ ᎤᎦᏚᏛᎢ ᎾᎿ ᎠᏍᎦᏯ ᎢᏅᏗᎾ ᏈᏗᏏ ᏴᏫᏯ ᎠᎺᏉ ᎢᎬᎾᏕᏅ ᎢᎳᎩ @@ -201,7 +200,7 @@ For terms of use, see http://www.unicode.org/copyright.html ᎼᏎᎻᏇᎩ ᎾᎻᏈᎢᏯ ᎢᏤ ᎧᎵᏙᏂᎠᏂ - ᏃᎵᏬᎵᎩ ᎤᎦᏚᏛ + ᏃᎵᏬᎵᎩ ᎤᎦᏚᏛᎢ ᏂᏥᎵᏯ ᏂᎧᎳᏆ ᏁᏛᎳᏂ @@ -231,7 +230,7 @@ For terms of use, see http://www.unicode.org/copyright.html ᏲᏂᎢ ᎶᏩᏂᏓ ᏌᎤᏗ ᎡᎴᏈᎠ - ᏐᎶᎹᏂ ᏚᎦᏚᏛ + ᏐᎶᎹᏂ ᏚᎦᏚᏛᎢ ᏏᎡᏥᎵᏍ ᏑᏕᏂ ᏍᏫᏕᏂ @@ -248,7 +247,7 @@ For terms of use, see http://www.unicode.org/copyright.html ᎠᏕᎳ - ᏅᏙ ᏗᏎᏗ + ᏅᏙ ᏗᏎᏗ ᎺᏘᎩ @@ -256,7 +255,7 @@ For terms of use, see http://www.unicode.org/copyright.html - [Ꭰ Ꭱ Ꭲ Ꭳ Ꭴ Ꭵ Ꭶ Ꭷ Ꭸ Ꭹ Ꭺ Ꭻ Ꭼ Ꭽ Ꭾ Ꭿ Ꮀ Ꮁ Ꮂ Ꮃ Ꮄ Ꮅ Ꮆ Ꮇ Ꮈ Ꮉ Ꮊ Ꮋ Ꮌ Ꮍ Ꮎ Ꮏ Ꮐ Ꮑ Ꮒ Ꮓ Ꮔ Ꮕ Ꮖ Ꮗ Ꮘ Ꮙ Ꮚ Ꮛ Ꮜ Ꮝ Ꮞ Ꮟ Ꮠ Ꮡ Ꮢ Ꮣ Ꮤ Ꮥ Ꮦ Ꮧ Ꮨ Ꮩ Ꮪ Ꮫ Ꮬ Ꮭ Ꮮ Ꮯ Ꮰ Ꮱ Ꮲ Ꮳ Ꮴ Ꮵ Ꮶ Ꮷ Ꮸ Ꮹ Ꮺ Ꮻ Ꮼ Ꮽ Ꮾ Ꮿ Ᏸ Ᏹ Ᏺ Ᏻ Ᏼ] + [ꭰ ꭱ ꭲ ꭳ ꭴ ꭵ ꭶ ꭷ ꭸ ꭹ ꭺ ꭻ ꭼ ꭽ ꭾ ꭿ ꮀ ꮁ ꮂ ꮃ ꮄ ꮅ ꮆ ꮇ ꮈ ꮉ ꮊ ꮋ ꮌ ꮍ ꮎ ꮏ ꮐ ꮑ ꮒ ꮓ ꮔ ꮕ ꮖ ꮗ ꮘ ꮙ ꮚ ꮛ ꮜ ꮝ ꮞ ꮟ ꮠ ꮡ ꮢ ꮣ ꮤ ꮥ ꮦ ꮧ ꮨ ꮩ ꮪ ꮫ ꮬ ꮭ ꮮ ꮯ ꮰ ꮱ ꮲ ꮳ ꮴ ꮵ ꮶ ꮷ ꮸ ꮹ ꮺ ꮻ ꮼ ꮽ ꮾ ꮿ ᏸ ᏹ ᏺ ᏻ ᏼ] [] [Ꭰ Ꭶ Ꭽ Ꮃ Ꮉ Ꮎ Ꮖ Ꮜ Ꮣ Ꮬ Ꮳ Ꮹ Ꮿ] @@ -452,10 +451,28 @@ For terms of use, see http://www.unicode.org/copyright.html + + ᏌᎾᎴ + ᎢᎦ + ᏒᎯᏱᎢᏗᏢ + ᏌᎾᎴ + ᏒᎯᏱᎢᏗᏢ + ᏌᎾᎴ ᎢᎦ ᏒᎯᏱᎢᏗᏢ + ᏌᎾᎴ + ᏒᎯᏱᎢᏗᏢ + + + + + ᏌᎾᎴ + ᎢᎦ + ᏒᎯᏱᎢᏗᏢ + ᏌᎾᎴ + ᏒᎯᏱᎢᏗᏢ @@ -755,6 +772,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + {0} {1} {0} {1} @@ -796,6 +841,21 @@ For terms of use, see http://www.unicode.org/copyright.html + + ᏧᏕᏘᏴᏓ + {0} ᏑᏕᏘᏴᏓ + {0} ᏧᏕᏘᏴᏓ + + + ᎢᏯᏅᏓ + {0} ᏏᏅᏓ + {0} ᎢᏯᏅᏓ + + + ᎢᏳᎾᏙᏓᏆᏍᏗ + {0} ᏒᎾᏙᏓᏆᏍᏗ + {0} ᎢᏳᎾᏙᏓᏆᏍᏗ + ᏧᏒᎯᏓ {0} ᏏᎦ @@ -811,28 +871,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ᎢᏯᏔᏬᏍᏔᏅ {0} ᎢᏧᏔᏬᏍᏔᏅ - - ᎢᏯᏅᏓ - {0} ᏏᏅᏓ - {0} ᎢᏯᏅᏓ - ᏗᏎᏢ {0} ᎠᏎᏢ {0} ᏗᏎᏢ - - ᎢᏳᎾᏙᏓᏆᏍᏗ - {0} ᏒᎾᏙᏓᏆᏍᏗ - {0} ᎢᏳᎾᏙᏓᏆᏍᏗ - - - ᏧᏕᏘᏴᏓ - {0} ᏑᏕᏘᏴᏓ - {0} ᏧᏕᏘᏴᏓ - + + ᏧᏕᏘᏴᏓ + + + ᎢᏯᏅᏓ + + + ᎢᏳᎾᏙᏓᏆᏍᏗ + ᏧᏒᎯᏓ @@ -842,18 +896,9 @@ For terms of use, see http://www.unicode.org/copyright.html ᎢᏧᏔᏬᏍᏔᏅ - - ᎢᏯᏅᏓ - ᏗᏎᏢ - - ᎢᏳᎾᏙᏓᏆᏍᏗ - - - ᏧᏕᏘᏴᏓ - @@ -873,3 +918,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/chr_US.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/chr_US.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/chr_US.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/chr_US.xml index 277ecc8738b..d1dbacb5788 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/chr_US.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/chr_US.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ckb.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ckb.xml new file mode 100644 index 00000000000..7d67cddb60e --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ckb.xml @@ -0,0 +1,983 @@ + + + + + + + + + + + ئه‌فریكای + ئەمهەرینجی + عەرەبی + ئاسامی + ئازەربایجانی + ئازەربایجانی + ئازەربایجانی باشووری + بێلاڕووسی + بۆلگاری + بەنگلادێشی + برێتونی + بۆسنی + كاتالۆنی + کوردیی ناوەندی + چەكی + وێلزی + دانماركی + ئاڵمانی + یۆنانی + ئینگلیزی + ئینگلیزیی ئۆسترالیایی + ئینگلیزیی کەنەدایی + ئینگلیزیی بریتانیایی + ئینگلیزیی ئەمەریکایی + ئینگلیزیی ئەمەریکایی + ئێسپیرانتۆ + ئیسپانی + ئیستۆنی + باسکی + فارسی + فینلەندی + تاگالۆگی + فه‌رئۆیی + فەرانسی + فریسیی ڕۆژاوا + ئیرلەندی + گه‌لیكی سكۆتله‌ندی + گالیسی + گووارانی + گوجاراتی + هیبرێ + هیندی + كرواتی + هەنگاری (مەجاری) + ئەرمەنی + ئینترلینگوی + ئێەندونیزی + ئینتەرلیگ + ئیسلەندی + ئیتالی + ژاپۆنی + جاڤانی + گۆرجستانی + کازاخی + کامبۆجی (زوبان) + كه‌نه‌دایی + كۆری + کوردی + كرگیزی + لاتینی + لينگالا + لاوی + لیتوانی + لێتۆنی + ماكێدۆنی + مالایلام + مەنگۆلی + ماراتی + مالیزی + ماڵتایی + مازەندەرانی + نیپالی + هۆڵەندی + نۆروێژی + ئۆسیتانی + ئۆرییا + پەنجابی + پۆڵۆنیایی (لەهستانی) + پەشتوو + پورتوگالی + پورتوگاڵی برازیل + پورتوگاڵی (پورتوگاڵ) + ڕۆمانی + ڕووسی + سانسکريت + سيندی + کوردیی باشووری + سێربۆكرواتی + سینهەلی + سلۆڤاكی + سلۆڤێنی + سامی باشووری + سۆمالی + ئاڵبانی + سەربی + سێسۆتۆ + سودانی + سویدی + سواهیلی + تامیلی + تەلۆگوی + تاجیکی + تایلەندی + تیگرینیای + تورکمانی + كلینگۆن + تورکی + توی + ئويخووری + ئۆكراینی + زمانی نەناسراو + ئۆردوو + ئوزبەکی + ڤیەتنامی + سسوسا + یوددی + چینی + زولو + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ئەفریقا + ئەمەریکای باکوور + ئەمەریکای باشوور + ئۆقیانووسیا + ڕۆژاوای ئەفریقا + ئەمریکای ناوەڕاست + ڕۆژھەڵاتی ئەفریقا + باشووری ئەفریقا + ئەمریکاکان + ئەمریکای باکوور + ئاسیای ڕۆژھەڵات + باشووری ئاسیا + باشووری ڕۆژھەڵاتی ئاسیا + ئەورووپای باشووری + ناوچەی مایکرۆنیزیا + ئاسیا + ئاسیای ناوەندی + ئاسیای ڕۆژاوا + ئەورووپا + ئەورووپای ڕۆژھەڵات + ئەورووپای باکوور + ڕۆژاوای ئەورووپا + ئەمەریکای لاتین + ئاندۆرا + میرنشینە یەکگرتووە عەرەبییەکان + ئەفغانستان + ئانتیگوا و باربودا + ئەڵبانیا + ئەرمەنستان + ئەنگۆلا + ئانتارکتیکا + ئارجەنتینا + ساموای ئەمەریکایی + نەمسا + ئۆسترالیا + ئارووبا + ئازەربایجان + بۆسنیا و ھەرزەگۆڤینا + باربادۆس + بەنگلادیش + بەلژیک + بورکینافاسۆ + بولگاریا + بەحرەین + بوروندی + بنین + بروونای + بۆلیڤیا + برازیل + بەھاما + بووتان + بۆتسوانا + بیلاڕووس + بەلیز + کانەدا + کۆنگۆ کینشاسا + کۆماری دیموکراتیکی کۆنگۆ + کۆماری ئەفریقای ناوەڕاست + کۆنگۆ برازاڤیل + کۆماری کۆنگۆ + سویسرا + کۆتدیڤوار + شیلی + کامیروون + چین + کۆلۆمبیا + کۆستاریکا + کووبا + کەیپڤەرد + قیبرس + کۆماری چیک + ئەڵمانیا + جیبووتی + دانمارک + دۆمینیکا + ئەلجەزایر + ئیکوادۆر + میسر + ڕۆژاوای سەحرا + ئەریتریا + ئیسپانیا + ئەتیۆپیا + یەکێتیی ئەورووپا + فینلاند + فیجی + مایکرۆنیزیا + فەڕەنسا + گابۆن + شانشینی یەکگرتوو + گرینادا + گورجستان + غەنا + گرینلاند + گامبیا + گینێ + یۆنان + گواتیمالا + گوام + گینێ بیساو + گویانا + ھۆندووراس + کرۆواتیا + ھایتی + مەجارستان + ئیندۆنیزیا + ئیرلەند + ئیسرائیل + ھیندستان + عێراق + ئێران + ئایسلەند + ئیتاڵی + جامایکا + ئوردن + ژاپۆن + قرغیزستان + کەمبۆدیا + کیریباس + دوورگەکانی قەمەر + سەینت کیتس و نیڤیس + کۆریای باکوور + کۆریای باشوور + کوەیت + کازاخستان + لاوس + لوبنان + سەینت لووسیا + لیختنشتاین + سریلانکا + لیبەریا + لەسۆتۆ + لیتوانایا + لوکسەمبورگ + لاتڤیا + لیبیا + مەغریب + مۆناکۆ + مۆلدۆڤا + مۆنتینیگرۆ + ماداگاسکار + دوورگەکانی مارشاڵ + مالی + میانمار + مەنگۆلیا + ماکاو + مۆریتانیا + ماڵتا + مالدیڤ + مالاوی + مەکسیک + مالیزیا + مۆزامبیک + نامیبیا + نیجەر + نیکاراگوا + ھۆڵەندا + نۆرویژ + نیپال + نائوروو + نیوزیلاند + عومان + پاناما + پیروو + پاپوا گینێی نوێ + فلیپین + پاکستان + پۆڵەندا + فەلەستین + پورتوگال + پالاو + پاراگوای + قەتەر + ڕۆمانیا + سربیا + ڕووسیا + ڕواندا + عەرەبستانی سەعوودی + دوورگەکانی سلێمان + سیشێل + سوودان + سوید + سینگاپور + سلۆڤێنیا + سلۆڤاکیا + سیەرالیۆن + سان مارینۆ + سینیگال + سۆمالیا + سورینام + ساوتۆمێ و پرینسیپی + ئێلسالڤادۆر + سووریا + سوازیلاند + چاد + تۆگۆ + تایلەند + تاجیکستان + تیمۆری ڕۆژھەڵات + تورکمانستان + توونس + تۆنگا + تورکیا + ترینیداد و تۆباگو + تووڤالوو + تایوان + تانزانیا + ئۆکرانیا + ئوگاندا + وڵاتە یەکگرتووەکان + ئوروگوای + ئوزبەکستان + ڤاتیکان + سەینت ڤینسەنت و گرینادینز + ڤیەتنام + ڤانوواتوو + ساموا + یەمەن + ئەفریقای باشوور + زامبیا + زیمبابوی + نەناسراو + + + ڕۆژژمێر + ڕیزبەندی + دراو + ژمارەکان + + + ڕۆژژمێری چینی + ڕۆژژمێری گورجی + ڕۆژژمێری عیبری + ڕۆژژمێری نەتەوەیی ھیندی + ڕۆژژمێری کۆچیی مانگی + ڕۆژژمێری کۆچیی ھەتاوی + ژمارە عەربی-ھیندییەکان + ژمارە گوجەراتییەکان + ژمارە خمێرییەکان + ژمارە ڕۆژاوایییەکان + ژمارە میانمارییەکان + + + مەتریک + بریتانی + ئەمەریکی + + + زمان: {0} + خەت: {0} + ناوچە: {0} + + + + + right-to-left + + + + [ئ ا ب پ ت ج چ ح خ د ر ز ڕ ژ س ش ع غ ف ڤ ق ک گ ل ڵ م ن ھ ە و ۆ ی ێ] + [\u200E\u200F \u064B \u064C \u064D \u064E \u064F \u0650 \u0651 \u0652 ء آ أ ؤ إ ة ث ذ ص ض ط ظ ك ه ى ي] + [ئ ا ب پ ت ج چ ح خ د ر ز ڕ ژ س ش ع غ ف ڤ ق ک گ ل ڵ م ن ھ ە و ۆ ی ێ] + + + + + + + + یەکشەممە + دووشەممە + سێشەممە + چوارشەممە + پێنجشەممە + ھەینی + شەممە + + + ی + د + س + چ + پ + ھ + ش + + + یەکشەممە + دووشەممە + سێشەممە + چوارشەممە + پێنجشەممە + ھەینی + شەممە + + + + + یەکشەممە + دووشەممە + سێشەممە + چوارشەممە + پێنجشەممە + ھەینی + شەممە + + + ی + د + س + چ + پ + ھ + ش + + + یەکشەممە + دووشەممە + سێشەممە + چوارشەممە + پێنجشەممە + ھەینی + شەممە + + + + + + + چارەکی یەکەم + چارەکی دووەم + چارەکی سێەم + چارەکی چوارەم + + + + + چارەکی یەکەم + چارەکی دووەم + چارەکی سێەم + چارەکی چوارەم + + + + + + + ب.ن + د.ن + + + ب.ن + د.ن + + + + + + + dی MMMMی y G + + + + + + E dەھەم + hی a + E، M/d + dی MMM + E، dی MMM + M/y + d/M/y + E، d/M/y + MMMی y + dی MMMی y + E، dی MMMی y + + + + E، M/d – E، M/d + E، M/d – E، M/d + + + MMM–MMM + + + d–dی MMM + + + E، dی MMM – E، dی MMM + + + d/M/y – d/M/y + + + E، d/M/y – E، d/M/y + E، d/M/y – E، d/M/y + E، d/M/y – E، d/M/y + + + MMM–MMMی y + MMMی y – MMMی y + + + d–dی MMMی y + dی MMM – dی MMMی y + dی MMMMی y – dی MMMMی y + + + + + + + + + کانوونی دووەم + شوبات + ئازار + نیسان + ئایار + حوزەیران + تەمووز + ئاب + ئەیلوول + تشرینی یەکەم + تشرینی دووەم + کانونی یەکەم + + + کانوونی دووەم + شوبات + ئازار + نیسان + ئایار + حوزەیران + تەمووز + ئاب + ئەیلوول + تشرینی یەکەم + تشرینی دووەم + کانونی یەکەم + + + + + کانوونی دووەم + شوبات + ئازار + نیسان + ئایار + حوزەیران + تەمووز + ئاب + ئەیلوول + تشرینی یەکەم + تشرینی دووەم + کانونی یەکەم + + + کانوونی دووەم + شوبات + ئازار + نیسان + ئایار + حوزەیران + تەمووز + ئاب + ئەیلوول + تشرینی یەکەم + تشرینی دووەم + کانونی یەکەم + + + + + + + یەکشەممە + دووشەممە + سێشەممە + چوارشەممە + پێنجشەممە + ھەینی + شەممە + + + ی + د + س + چ + پ + ھ + ش + + + یەکشەممە + دووشەممە + سێشەممە + چوارشەممە + پێنجشەممە + ھەینی + شەممە + + + + + یەکشەممە + دووشەممە + سێشەممە + چوارشەممە + پێنجشەممە + ھەینی + شەممە + + + ی + د + س + چ + پ + ھ + ش + + + یەکشەممە + دووشەممە + سێشەممە + چوارشەممە + پێنجشەممە + ھەینی + شەممە + + + + + + + چارەکی یەکەم + چارەکی دووەم + چارەکی سێەم + چارەکی چوارەم + + + + + چارەکی یەکەم + چارەکی دووەم + چارەکی سێەم + چارەکی چوارەم + + + + + + + ب.ن + د.ن + + + + + + پێش زایین + زایینی + + + پ.ن + ز + + + پ.ن + ز + + + + + + dی MMMMی y + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + E dەھەم + hی a + E، M/d + dی MMM + E، dی MMM + M/y + d/M/y + E، d/M/y + MMMی y + dی MMMی y + E، dی MMMی y + + + + E، M/d – E، M/d + E، M/d – E، M/d + + + MMM–MMM + + + d–dی MMM + + + E، dی MMM – E، dی MMM + + + d/M/y – d/M/y + + + E، d/M/y – E، d/M/y + E، d/M/y – E، d/M/y + E، d/M/y – E، d/M/y + + + MMM–MMMی y + MMMی y – MMMی y + + + d–dی MMMی y + dی MMM – dی MMMی y + dی MMMMی y – dی MMMMی y + + + + + + + + + خاکەلێوە + بانەمەڕ + جۆزەردان + پووشپەڕ + گەلاوێژ + خەرمانان + ڕەزبەر + خەزەڵوەر + سەرماوەز + بەفرانبار + ڕێبەندان + رەشەمێ + + + خاکەلێوە + بانەمەڕ + جۆزەردان + پووشپەڕ + گەلاوێژ + خەرمانان + ڕەزبەر + خەزەڵوەر + سەرماوەز + بەفرانبار + ڕێبەندان + رەشەمێ + + + + + خاکەلێوە + بانەمەڕ + جۆزەردان + پووشپەڕ + گەلاوێژ + خەرمانان + ڕەزبەر + خەزەڵوەر + سەرماوەز + بەفرانبار + ڕێبەندان + رەشەمێ + + + خاکەلێوە + بانەمەڕ + جۆزەردان + پووشپەڕ + گەلاوێژ + خەرمانان + ڕەزبەر + خەزەڵوەر + سەرماوەز + بەفرانبار + ڕێبەندان + رەشەمێ + + + + + + + + ساڵ + + + مانگ + + + ھەفتە + + + ڕۆژ + yesterday + ئەمڕۆ + سبەی + + + ڕۆژی ھەفتە + + + کاتژمێر + + + خولەک + + + چرکە + + + + + arab + + arab + + + ٪ + ‎+ + ‎- + + + {0} {1} + {0} {1} + + + + ئەفغانیی ئەفغانستان + + + دیناری بەحرەینی + + + دۆلاری بەلیزی + + + دیناری جەزائیری + + + یورۆ + + + دیناری عێراقی + + + ڕیاڵی ئێرانی + + + دیناری ئوردنی + + + دیناری کووەیتی + + + ڕیاڵی عومانی + + + ڕیاڵی قەتەری + + + ڕیاڵی سەعوودی + + + دیناری توونس + + + لیرەی تورکیا + + + دۆلاری ترینیداد و تۆباگۆ + + + زێڕ + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bm_Latn.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ckb_IQ.xml similarity index 67% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bm_Latn.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ckb_IQ.xml index 887a5d17c6f..55caa81ad62 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/bm_Latn.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ckb_IQ.xml @@ -6,9 +6,8 @@ For terms of use, see http://www.unicode.org/copyright.html --> - - - - + + + + + + + + + + + + А҆ѵстралі́ѧ + бразі́лїа + бѣ́лаѧ рꙋ́сь + Кана́да + хи́нскаѧ страна̀ + герма́нїа + Дані́ѧ + га́ллїа + Вели́каѧ брїта́нїа + і҆́ндїа + і҆та́лїа + ꙗ҆пѡ́нїа + кирги́зїа + казахста́нъ + Ме́ѯїко + рѡссі́а + ᲂу҆краи́на + а҆мерїка̑нскїѧ соедине̑нныѧ держа̑вы + невѣ́домаѧ страна̀ + + + григорїа́нскїй мѣсѧцесло́въ + канѡни́ческое ᲂу҆порѧ́доченїе + а҆раві́йстїи числові́и зна́цы + + + метрі́ческаѧ + а҆нглі́йскаѧ + а҆мерїка́нскаѧ + + + + + left-to-right + top-to-bottom + + + + [\u0487 \u0483 \u2DE0 \u2DE1 \u2DE2 \u2DE3 \u2DE4 \u2DE5 \u2DE6 \u2DE7 \u2DE8 \u2DE9 \u2DEA \u2DEC \u2DED \u2DEF \u2DF1 ⸯ \uA67D ꙿ \u2DF4 ҂ а б в г д е є ж ѕ з ꙁ и і ї й к л м н ѻ о ѡ ꙍ ѽ ѿ п р с т ꙋ у ф х ц ч ш щ ъ ы ь ѣ ю ꙗ ѧ ѫ ѯ ѱ ѳ ѵ ѷ] + [\u200C\u200D\uFE2F \u2DF6 \u2DF7 \uA674 \uA675 \uA676 \uA67B \u2DEB \u2DF5 \u2DEE \u2DF9 \uA677 \u2DF0 \u2DF2 \u2DF3 \uA678 \uA679 \uA67A \u2DFA \u2DFB \u2DFC \u2DFD \u2DFE \u2DFF \u0488\u0489\uA670\uA671\uA672 \u0484 \uFE2E \uA66F ꙣ ꙃ ꙅ ꙇ ꙉ \u2DF8 ꙥ ꙧ ҥ ꙩꙫꙭꙮꚙꚛ ҁ \uA69E ꙡ џ ꙏ ꙑ ꙓ ꙕ ѥ \uA69F ꙙ ꙛ ѩ ꙝ ѭ ꙟ] + [А Б В Г Д Є Ж Ѕ З И І К Л М Н Ѻ О Ѡ Ѿ П Р С Т Ꙋ Ф Х Ц Ч Ш Щ Ъ Ы Ь Ѣ Ю Ꙗ Ѧ Ѫ Ѯ Ѱ Ѳ Ѵ] + [꙾ , \- . \: ; _ – — ꙳ ‐ ! ? ( ) /] + + + « + » + + + + + + + + + + G y MMMM d, EEEE + + + + + G y MMMM d + + + + + G y MMM d + + + + + GGGGG y-MM-dd + + + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + {0} – {1} + + + + + + + + і҆аⷩ҇ + феⷡ҇ + маⷬ҇ + а҆пⷬ҇ + маꙵ + і҆ꙋⷩ҇ + і҆ꙋⷧ҇ + а҆́ѵⷢ҇ + сеⷫ҇ + ѻ҆кⷮ + ноеⷨ + деⷦ҇ + + + І҆ + Ф + М + А҆ + М + І҆ + І҆ + А҆ + С + Ѻ҆ + Н + Д + + + і҆аннꙋа́рїа + феврꙋа́рїа + ма́рта + а҆прі́ллїа + ма́їа + і҆ꙋ́нїа + і҆ꙋ́лїа + а҆́ѵгꙋста + септе́мврїа + ѻ҆ктѡ́врїа + ное́мврїа + деке́мврїа + + + + + і҆аⷩ҇ + феⷡ҇ + маⷬ҇ + а҆пⷬ҇ + маꙵ + і҆ꙋⷩ҇ + і҆ꙋⷧ҇ + а҆́ѵⷢ҇ + сеⷫ҇ + ѻ҆кⷮ + ноеⷨ + деⷦ҇ + + + І҆ + Ф + М + А҆ + М + І҆ + І҆ + А҆ + С + Ѻ҆ + Н + Д + + + і҆аннꙋа́рїй + феврꙋа́рїй + ма́ртъ + а҆прі́ллїй + ма́їй + і҆ꙋ́нїй + і҆ꙋ́лїй + а҆́ѵгꙋстъ + септе́мврїй + ѻ҆ктѡ́врїй + ное́мврїй + деке́мврїй + + + + + + + ндⷧ҇ѧ + пнⷣе + втоⷬ҇ + срⷣе + чеⷦ҇ + пѧⷦ҇ + сꙋⷠ҇ + + + Н + П + В + С + Ч + П + С + + + ндⷧ҇ѧ + пнⷣе + втоⷬ҇ + срⷣе + чеⷦ҇ + пѧⷦ҇ + сꙋⷠ҇ + + + недѣ́лѧ + понедѣ́льникъ + вто́рникъ + среда̀ + четверто́къ + пѧто́къ + сꙋббѡ́та + + + + + ндⷧ҇ѧ + пнⷣе + втоⷬ҇ + срⷣе + чеⷦ҇ + пѧⷦ҇ + сꙋⷠ҇ + + + Н + П + В + С + Ч + П + С + + + ндⷧ҇ѧ + пнⷣе + втоⷬ҇ + срⷣе + чеⷦ҇ + пѧⷦ҇ + сꙋⷠ҇ + + + недѣ́лѧ + понедѣ́льникъ + вто́рникъ + среда̀ + четверто́къ + пѧто́къ + сꙋббѡ́та + + + + + + + а҃-ѧ чеⷡ҇ + в҃-ѧ чеⷡ҇ + г҃-ѧ чеⷡ҇ + д҃-ѧ чеⷡ҇ + + + а҃ + в҃ + г҃ + д҃ + + + а҃-ѧ че́тверть + в҃-ѧ че́тверть + г҃-ѧ че́тверть + д҃-ѧ че́тверть + + + + + а҃ + в҃ + г҃ + д҃ + + + а҃ + в҃ + г҃ + д҃ + + + а҃-ѧ че́тверть + в҃-ѧ че́тверть + г҃-ѧ че́тверть + д҃-ѧ че́тверть + + + + + + + ДП + ПП + + + ДП + ПП + + + + + ДП + ПП + + + ДП + ПП + + + ДП + ПП + + + + + + пре́дъ р. х. + по р. х. + + + пре́дъ р. х. + по р. х. + + + + + + EEEE, d MMMM 'л'. y. + + + + + y MMMM d + + + + + y MMM d + + + + + y.MM.dd + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + {0} – {1} + + + + + + + вѣ́къ + + + лѣ́то + + + л. + + + л. + + + че́тверть + + + чеⷡ҇ + + + чеⷡ҇ + + + мѣ́сѧцъ + + + мцⷭ҇ъ + + + мцⷭ҇ъ + + + седми́ца + + + сеⷣ + + + сеⷣ + + + де́нь + вчера̀ + дне́сь + наꙋ́трїе + + + деⷩ҇ + + + деⷩ҇ + + + де́нь седми́цы + + + ДП/ПП + + + ча́съ + + + чаⷭ҇ + + + чаⷭ҇ + + + минꙋ́та + + + миⷩ҇ + + + миⷩ҇ + + + секꙋ́нда + + + сеⷦ҇ + + + сеⷦ҇ + + + по́ѧсъ часовѡ́мъ + + + + +HH:mm;-HH:mm + GMT{0} + GMT + {0} (вре́мѧ) + {0} (лѣ́тнее вре́мѧ) + {0} (зи́мнее вре́мѧ) + {1} ({0}) + + невѣ́домый гра́дъ + + + ми́нскъ + + + бишке́къ + + + а҆кта́ꙋ + + + ᲂу҆ра́льскъ + + + а҆ктю́бинскъ + + + кызылѻрда̀ + + + а҆лматы̀ + + + калинингра́дъ + + + сѷмферꙋ́поль + + + москва̀ + + + волгогра́дъ + + + сама́ра + + + є҆катерїнбꙋ́ргъ + + + ѻ҆́мскъ + + + новосиби́рскъ + + + новокꙋзне́цкъ + + + красноѧ́рскъ + + + и҆ркꙋ́тскъ + + + чита̀ + + + ꙗ҆кꙋ́тскъ + + + владивосто́къ + + + ха́ндыга + + + сахали́нъ + + + ᲂу҆́сть_не́ра + + + магада́нъ + + + среднеколы́мскъ + + + петропа́ѵловскъ_камча́тскїй + + + а҆на́дырь + + + ᲂу҆́жградъ + + + кі́евъ + + + запра́жїе + + + + среднеамерїка́нское вре́мѧ + среднеамерїка́нское зи́мнее вре́мѧ + среднеамерїка́нское лѣ́тнее вре́мѧ + + + + + восточноамерїка́нское вре́мѧ + восточноамерїка́нское зи́мнее вре́мѧ + восточноамерїка́нское лѣ́тнее вре́мѧ + + + + + а҆мерїка́нское наго́рнее вре́мѧ + а҆мерїка́нское наго́рнее зи́мнее вре́мѧ + а҆мерїка́нское наго́рнее лѣ́тнее вре́мѧ + + + + + тихоѻкеа́нское вре́мѧ + тихоѻкеа́нское зи́мнее вре́мѧ + тихоѻкеа́нское лѣ́тнее вре́мѧ + + + + + а҆тланті́ческое вре́мѧ + а҆тланті́ческое зи́мнее вре́мѧ + а҆тланті́ческое лѣ́тнее вре́мѧ + + + + + среднеєѵрѡпе́йское вре́мѧ + среднеєѵрѡпе́йское зи́мнее вре́мѧ + среднеєѵрѡпе́йское лѣ́тнее вре́мѧ + + + + + восточноєѵрѡпе́йское вре́мѧ + восточноєѵрѡпе́йское зи́мнее вре́мѧ + восточноєѵрѡпе́йское лѣ́тнее вре́мѧ + + + + + вре́мѧ въ калинингра́дѣ и҆ ми́нскѣ + + + + + западноєѵрѡпе́йское вре́мѧ + западноєѵрѡпе́йское зи́мнее вре́мѧ + западноєѵрѡпе́йское лѣ́тнее вре́мѧ + + + + + сре́днее вре́мѧ по грі́нꙋичꙋ + + + + + и҆ркꙋ́тское вре́мѧ + и҆ркꙋ́тское зи́мнее вре́мѧ + и҆ркꙋ́тское лѣ́тнее вре́мѧ + + + + + восто́чный казахста́нъ + + + + + за́падный казахста́нъ + + + + + красноѧ́рское вре́мѧ + красноѧ́рское зи́мнее вре́мѧ + красноѧ́рское лѣ́тнее вре́мѧ + + + + + кирги́зїа + + + + + магада́нское вре́мѧ + магада́нское зи́мнее вре́мѧ + магада́нское лѣ́тнее вре́мѧ + + + + + моско́вское вре́мѧ + моско́вское зи́мнее вре́мѧ + моско́вское лѣ́тнее вре́мѧ + + + + + новосиби́рское вре́мѧ + новосиби́рское зи́мнее вре́мѧ + новосиби́рское лѣ́тнее вре́мѧ + + + + + ѻ҆́мское вре́мѧ + ѻ҆́мское зи́мнее вре́мѧ + ѻ҆́мское лѣ́тнее вре́мѧ + + + + + вре́мѧ на сахали́нѣ + зи́мнее вре́мѧ на сахали́нѣ + лѣ́тнее вре́мѧ на сахали́нѣ + + + + + владивосто́цкое вре́мѧ + владивосто́цкое зи́мнее вре́мѧ + владивосто́цкое лѣ́тнее вре́мѧ + + + + + волгогра́дское вре́мѧ + волгогра́дское зи́мнее вре́мѧ + волгогра́дское лѣ́тнее вре́мѧ + + + + + ꙗ҆кꙋ́тское вре́мѧ + ꙗ҆кꙋ́тское зи́мнее вре́мѧ + ꙗ҆кꙋ́тское лѣ́тнее вре́мѧ + + + + + є҆катерїнбꙋ́ржское вре́мѧ + є҆катерїнбꙋ́ржское зи́мнее вре́мѧ + є҆катерїнбꙋ́ржское лѣ́тнее вре́мѧ + + + + + + latn + + cyrl + + + , +   + % + + + - + + + + + + #,##0.### + + + + + + + #E0 + + + + + + + #,##0 % + + + + + + + #,##0.00 ¤ + + + {0} {1} + + + + бразі́льскїй реа́лъ + бразі́льскагѡ реа́ла + R$ + R$ + + + бѣлорꙋ́сскїй рꙋ́бль + бѣлорꙋ́сскагѡ рꙋблѧ̀ + BYR + р. + + + хи́нскїй ю҆а́нь + хи́нскагѡ ю҆а́нѧ + CN¥ + ¥ + + + є҆́ѵрѡ + є҆́ѵра + + + + + а҆нглі́йскїй фꙋ́нтъ сте́рлингѡвъ + а҆нглі́йскагѡ фꙋ́нта сте́рлингѡвъ + £ + £ + + + і҆нді́йскаѧ рꙋ́пїѧ + і҆нді́йскїѧ рꙋ́пїи + + + + + ꙗ҆пѡ́нскаѧ і҆е́на + ꙗ҆пѡ́нскїѧ і҆е́ны + JP¥ + ¥ + + + кирги́зскїй сꙋ́мъ + кирги́зскагѡ сꙋ́ма + KGS + + + каза́хскаѧ деньга̀ + каза́хскїѧ деньгѝ + + + + + рѡссі́йскїй рꙋ́бль + рѡссі́йскагѡ рꙋблѧ̀ + + + + + ᲂу҆краи́нскаѧ гри́вна + ᲂу҆краи́нскїѧ гри́вны + + + + + а҆мерїка́нскїй до́лларъ + а҆мерїка́нскагѡ до́ллара + $ + $ + + + невѣ́домое пла́тное сре́дство + невѣ́домагѡ пла́тнагѡ сре́дства + + + + + + h:mm + + + h:mm:ss + + + m:ss + + + + + {0}, {1} + {0}, {1} + {0} и҆ {1} + {0} и҆ {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + + + є҆́й:є + нѝ:н + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sah_RU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/cu_RU.xml similarity index 71% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sah_RU.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/cu_RU.xml index 08a452fc198..6191277c7ac 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sah_RU.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/cu_RU.xml @@ -6,9 +6,8 @@ For terms of use, see http://www.unicode.org/copyright.html --> - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/cy.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/cy.xml new file mode 100644 index 00000000000..7978404cadf --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/cy.xml @@ -0,0 +1,10558 @@ + + + + + + + + + + + {0} ({1}) + {0}, {1} + {0}: {1} + + + Affareg + Abchaseg + Acehneg + Acoli + Adangmeg + Circaseg Gorllewinol + Afestaneg + Arabeg Tunisia + Affricâneg + Affrihili + Aghemeg + Ainŵeg + Acaneg + Acadeg + Alabamäeg + Alewteg + Ghegeg Albania + Altäeg Deheuol + Amhareg + Aragoneg + Hen Saesneg + Angika + Arabeg + Arabeg Modern Safonol + Aramaeg + Arawcaneg + Araonaeg + Arapaho + Arabeg Algeria + Arawaceg + Arabeg Moroco + Arabeg yr Aifft + Asameg + Asw + Iaith Arwyddion America + Astwrianeg + Afareg + Awadhi + Aymareg + Aserbaijaneg + Aseri + Aserbaijaneg Deheuol + Bashcorteg + Balwtsi + Balïeg + Basâeg + Bamwmeg + Belarwseg + Bejäeg + Bembeg + Bena + Baffwteg + Badaga + Bwlgareg + Balochi Gorllewinol + Bislama + Comeg + Siksika + Bambareg + Bengaleg + Tibeteg + Llydaweg + Brahui + Bodo + Bosnieg + Acwseg + Bwriateg + Bwlw + Catalaneg + Cado + Caribeg + Atsameg + Tsietsieneg + Tsiga + Tsiamorro + Marieg + Siocto + Tsierocî + Cheyenne + Cwrdeg Sorani + Corseg + Copteg + Cri + Tyrceg y Crimea + Tsieceg + Hen Slafoneg + Tshwfasheg + Cymraeg + Daneg + Dacotaeg + Dargwa + Taita + Almaeneg + Almaeneg Awstria + Almaeneg Safonol y Swistir + Dinca + Zarmaeg + Dogri + Sorbeg Isaf + Diwaleg + Iseldireg Canol + Difehi + Jola-Fonyi + Dzongkha + Embw + Ewe + Hen Eiffteg + Groeg + Elameg + Saesneg + Saesneg Awstralia + Saesneg Canada + Saesneg Prydain + Saesneg (DU) + Saesneg America + Saesneg (UDA) + Saesneg Canol + Esperanto + Sbaeneg + Sbaeneg America Ladin + Sbaeneg Ewrop + Sbaeneg Mecsico + Estoneg + Basgeg + Ewondo + Extremadureg + Perseg + Ffanti + Ffwla + Ffinneg + Ffilipineg + Ffinneg Tornedal + Ffijïeg + Ffaröeg + Ffrangeg + Ffrangeg Canada + Ffrangeg y Swistir + Ffrangeg Cajwn + Ffrangeg Canol + Hen Ffrangeg + Arpitaneg + Ffriseg y Gogledd + Ffriseg y Dwyrain + Ffriwleg + Ffriseg y Gorllewin + Gwyddeleg + Gagauz + Gaio + Gbaia + Dareg y Zoroastriaid + Gaeleg yr Alban + Gilberteg + Galisieg + Uchel Almaeneg Canol + Guaraní + Hen Uchel Almaeneg + Gotheg + Hen Roeg + Almaeneg y Swistir + Gwjarati + Gusii + Manaweg + Hawsa + Haida + Hawäieg + Hebraeg + Hindi + Hetheg + Hmongeg + Croateg + Sorbeg Uchaf + Creol Haiti + Hwngareg + Armeneg + Herero + Interlingua + Ibaneg + Ibibio + Indoneseg + Interlingue + Igbo + Nwosw + Inwpiaceg + Ilocaneg + Ingwsieg + Islandeg + Eidaleg + Inwctitwt + Japaneeg + Ngomba + Matsiame + Iddew-Bersieg + Iddew-Arabeg + Jafanaeg + Georgeg + Cara-Calpaceg + Cabileg + Camba + Circaseg Dwyreiniol + Tyapeg + Macondeg + Caboferdianeg + Congo + Càseg + Koyra Chiini + Chowareg + Kikuyu + Casacheg + Kalaallisut + Kalenjin + Chmereg + Kannada + Coreeg + Komi-Permyak + Concani + Canwri + Careleg + Cashmireg + Shambala + Baffia + Cwleneg + Cwrdeg + Cwmiceg + Comi + Cernyweg + Cirgiseg + Lladin + Iddew-Sbaeneg + Langi + Lahnda + Lamba + Lwcsembwrgeg + Lezgheg + Ganda + Limbwrgeg + Lakota + Lombardeg + Lingala + Laoeg + Mongo + Lozi + Luri Gogleddol + Lithwaneg + Latgaleg + Luba-Katanga + Lwnda + Lŵo + Lwshaieg + Lwyia + Latfieg + Madwreg + Magahi + Maithili + Macasareg + Mandingo + Masai + Mocsia + Mandareg + Mendeg + Mêrw + Morisyen + Malagaseg + Gwyddeleg Canol + Makhuwa-Meetto + Meta + Marsialeg + Maori + Micmaceg + Macedoneg + Malayalam + Mongoleg + Manshw + Manipwri + Mohoceg + Mosi + Marathi + Mari Gorllewinol + Maleieg + Malteg + Mundang + mwy nag un iaith + Mirandeg + Marwari + Byrmaneg + Masanderani + Nawrŵeg + Naplieg + Nama + Norwyeg Bokmål + Ndebele Gogleddol + Isel Almaeneg + Sacsoneg Isel + Nepaleg + Newaeg + Ndonga + Ao Naga + Iseldireg + Fflemeg + Kwasio + Norwyeg Nynorsk + Norwyeg + Hen Norseg + N’Ko + Ndebele Deheuol + Sotho Gogleddol + Nŵereg + Nafaho + Hen Newari + Nianja + Niamwezi + Niancole + Nioro + Nzimeg + Ocsitaneg + Ojibwa + Oromo + Oriya + Oseteg + Osageg + Tyrceg Otoman + Pwnjabeg + Pangasineg + Pahlafi + Pampanga + Picardeg + Almaeneg Pensylfania + Hen Bersieg + Almaeneg Palatin + Phoeniceg + Pali + Pwyleg + Piedmonteg + Ponteg + Pohnpeianeg + Prwseg + Hen Brofensaleg + Pashto + Portiwgeeg + Portiwgeeg Brasil + Portiwgeeg Ewrop + Quechua + K’iche’ + Rajasthaneg + Rapanŵi + Raratongeg + Románsh + Rwndi + Rwmaneg + Moldofeg + Rombo + Romani + y Gwraidd + Rotumaneg + Rwseg + Aromaneg + Ciniarŵandeg + Rwa + Sansgrit + Sandäweg + Iacwteg + Aramaeg Samaria + Sambŵrw + Sasaceg + Santali + Ngambeieg + Sangw + Sardeg + Sisileg + Sgoteg + Sindhi + Sasareseg Sardinia + Cwrdeg Deheuol + Sami Gogleddol + Seneca + Sena + Seri + Selcypeg + Koyraboro Senni + Sango + Hen Wyddeleg + Samogiteg + Serbo-Croateg + Tachelhit + Arabeg Chad + Sinhaleg + Sidamo + Slofaceg + Slofeneg + Is-silesieg + Samöeg + Sami Deheuol + Sami Lwle + Sami Inari + Sami Scolt + Shona + Soninceg + Somaleg + Sogdeg + Albaneg + Serbeg + Serereg + Swati + Sesotheg + Ffriseg Saterland + Swndaneg + Swcwma + Swsŵeg + Swmereg + Swedeg + Swahili + Swahili’r Congo + Comoreg + Hen Syrieg + Syrieg + Silesieg + Tamileg + Tulu + Telugu + Timneg + Teso + Terena + Tetumeg + Tajiceg + Thai + Tigrinya + Tigreg + Tifeg + Twrcmeneg + Tocelaweg + Tsakhureg + Tagalog + Klingon + Llingit + Talysheg + Tamasheceg + Tswana + Tongeg + Tok Pisin + Tyrceg + Taroko + Tsongaeg + Tsaconeg + Tatareg + Twmbwca + Twfalweg + Twi + Tasawaq + Tahitïeg + Tamaseit Canolbarth Moroco + Fotiaceg + Uighur + Wgariteg + Wcreineg + Umbundu + Iaith Anhysbys + Wrdw + Wsbeceg + Faieg + Fendeg + Feniseg + Feps + Fietnameg + Fflemeg Gorllewinol + Foteg + Funjo + Walwneg + Walsereg + Walamo + Winarayeg + Washo + Warlpiri + Woloff + Calmyceg + Xhosa + Soga + Iembaeg + Iddew-Almaeneg + Iorwba + Cantoneeg + Zapoteceg + Blisssymbols + Zêlandeg + Tamaseit Safonol + Tsieineeg + Tsieineeg Symledig + Tsieineeg Traddodiadol + Swlw + Zuni + Dim cynnwys ieithyddol + Zazäeg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Y Byd + Affrica + Gogledd America + De America + Oceania + Gorllewin Affrica + Canolbarth America + Dwyrain Affrica + Gogledd Affrica + Canol Affrica + Deheudir Affrica + Yr Amerig + America i’r Gogledd o Fecsico + Y Caribî + Dwyrain Asia + De Asia + De-Ddwyrain Asia + De Ewrop + Awstralasia + Melanesia + Rhanbarth Micronesia + Polynesia + Asia + Canol Asia + Gorllewin Asia + Ewrop + Dwyrain Ewrop + Gogledd Ewrop + Gorllewin Ewrop + America Ladin + Ynys Ascension + Andorra + Emiradau Arabaidd Unedig + Afghanistan + Antigua a Barbuda + Anguilla + Albania + Armenia + Angola + Antarctica + Yr Ariannin + Samoa America + Awstria + Awstralia + Aruba + Ynysoedd Åland + Azerbaijan + Bosnia a Hercegovina + Barbados + Bangladesh + Gwlad Belg + Burkina Faso + Bwlgaria + Bahrain + Burundi + Benin + Saint Barthélemy + Bermuda + Brunei + Bolifia + Antilles yr Iseldiroedd + Brasil + Y Bahamas + Bhutan + Ynys Bouvet + Botswana + Belarws + Belize + Canada + Ynysoedd Cocos (Keeling) + Y Congo - Kinshasa + y Congo (G.Dd.C.) + Gweriniaeth Canolbarth Affrica + Y Congo - Brazzaville + Y Congo (Gweriniaeth) + Y Swistir + Côte d’Ivoire + Arfordir Ifori + Ynysoedd Cook + Chile + Camerŵn + Tsieina + Colombia + Ynys Clipperton + Costa Rica + Ciwba + Cabo Verde + Curaçao + Ynys y Nadolig + Cyprus + Gweriniaeth Tsiec + Yr Almaen + Diego Garcia + Djibouti + Denmarc + Dominica + Gweriniaeth Dominica + Algeria + Ceuta a Melilla + Ecuador + Estonia + Yr Aifft + Gorllewin Sahara + Eritrea + Sbaen + Ethiopia + Yr Undeb Ewropeaidd + Y Ffindir + Fiji + Ynysoedd y Falkland/Malvinas + Ynysoedd y Falkland (Ynysoedd y Malfinas) + Micronesia + Ynysoedd Ffaro + Ffrainc + Gabon + Y Deyrnas Unedig + DU + Grenada + Georgia + Guyane Ffrengig + Ynys y Garn + Ghana + Gibraltar + Yr Ynys Las + Gambia + Guinée + Guadeloupe + Guinea Gyhydeddol + Gwlad Groeg + De Georgia ac Ynysoedd Sandwich y De + Guatemala + Guam + Guiné-Bissau + Guyana + Hong Kong RhGA Tsieina + Hong Kong + Ynys Heard ac Ynysoedd McDonald + Honduras + Croatia + Haiti + Hwngari + Yr Ynysoedd Dedwydd + Indonesia + Iwerddon + Israel + Ynys Manaw + India + Tiriogaeth Brydeinig Cefnfor India + Irac + Iran + Gwlad yr Iâ + Yr Eidal + Jersey + Jamaica + Gwlad Iorddonen + Japan + Kenya + Kyrgyzstan + Cambodia + Kiribati + Comoros + Saint Kitts a Nevis + Gogledd Korea + De Korea + Kuwait + Ynysoedd Cayman + Kazakstan + Laos + Libanus + Saint Lucia + Liechtenstein + Sri Lanka + Liberia + Lesotho + Lithuania + Lwcsembwrg + Latfia + Libya + Moroco + Monaco + Moldofa + Montenegro + Saint Martin + Madagascar + Ynysoedd Marshall + Macedonia + Macedonia (CWIM) + Mali + Myanmar (Burma) + Mongolia + Macau RhGA Tsieina + Macau + Ynysoedd Gogledd Mariana + Martinique + Mauritania + Montserrat + Malta + Mauritius + Y Maldives + Malawi + Mecsico + Malaysia + Mozambique + Namibia + Caledonia Newydd + Niger + Ynys Norfolk + Nigeria + Nicaragua + Yr Iseldiroedd + Norwy + Nepal + Nauru + Niue + Seland Newydd + Oman + Panama + Periw + Polynesia Ffrengig + Papua Guinea Newydd + Y Philipinau + Pakistan + Gwlad Pwyl + Saint-Pierre-et-Miquelon + Ynysoedd Pitcairn + Puerto Rico + Tiriogaethau Palesteinaidd + Palesteina + Portiwgal + Palau + Paraguay + Qatar + Oceania Bellennig + Réunion + Rwmania + Serbia + Rwsia + Rwanda + Saudi Arabia + Ynysoedd Solomon + Seychelles + Swdan + Sweden + Singapore + Saint Helena + Slofenia + Svalbard a Jan Mayen + Slofacia + Sierra Leone + San Marino + Senegal + Somalia + Suriname + De Swdan + São Tomé a Príncipe + El Salvador + Sint Maarten + Syria + Gwlad Swazi + Tristan da Cunha + Ynysoedd Turks a Caicos + Tchad + Tiroedd Deheuol ac Antarctig Ffrainc + Togo + Gwlad Thai + Tajikistan + Tokelau + Timor-Leste + Dwyrain Timor + Turkmenistan + Tunisia + Tonga + Twrci + Trinidad a Tobago + Tuvalu + Taiwan + Tanzania + Wcráin + Uganda + Ynysoedd Pellennig UDA + Yr Unol Daleithiau + UDA + Uruguay + Uzbekistan + Y Fatican + Saint Vincent a’r Grenadines + Venezuela + Ynysoedd Gwyryf Prydain + Ynysoedd Gwyryf yr Unol Daleithiau + Fietnam + Vanuatu + Wallis a Futuna + Samoa + Kosovo + Yemen + Mayotte + De Affrica + Zambia + Zimbabwe + Rhanbarth Anhysbys + + + orgraff draddodiadol yr Almaeneg + Ffrangeg Canol Diweddar hyd at 1606 + Ffrangeg Modern Cynnar + Academig + tafodiaith Aluku + Armeneg Dwyreiniol + Armeneg Gorllewinol + BAUDDHA + BISCAYAN + Gwyddor Bohorič + gwyddor Dajnko + Saesneg Modern Cynnar + Seineg IPA + Seineg UPA + FONXSAMP + HOGNORSK + ITIHASA + JAUER + JYUTPING + yr Orgraff Gyffredin + KOCIEWIE + yr Orgraff Safonol + LAUKIKA + LUNA1918 + gwyddor Metelko + tafodiaith Ndyuka + tafodiaith Natisone + tafodiaith Gniva/Njiva + tafodiaith Oseacco/Osojane + tafodiaith Pamaka + Cyfrifiadur + Saesneg Safonol yr Alban + SURMIRAN + SURSILV + SUTSILV + VAIDIKA + VALLADER + + + Calendr + Trefn + Arian Breiniol + Cylched Awr (12 vs 24) + Arddull Torriad Llinell + System Fesur + Rhifau + + + Calendr y Bwdiaid + Calendr Tseina + Calendr y Coptiaid + Calendr Dangi + Calendr Ethiopia + Calendr Amete Alem Ethiopia + Calendr Gregori + Calendr yr Hebraed + Calendr Cenedlaethol India + Calendr Islam + Calendr Islam (Umm al-Qura) + Calendr ISO-8601 + Calendr Japan + Calendr Persia + Calendr Gweriniaeth Tseina + Trefn Traddodiadol Tsieina - Big5 + Trefn Geiriadur + Trefn Rhagosodedig Unicode + Rheolau trefnu Ewropeaidd + Trefn Symledig Tsieina - GB2312 + Trefn Llyfr Ffôn + Trefn Pinyin + Trefn Diwygiedig + Chwilio at Ddibenion Cyffredinol + Trefn Safonol + Trefn Traddodiadol + Trefn Zhuyin + System 12 Awr (0–11) + System 12 Awr (1–12) + System 24 Awr (0–23) + System 24 Awr (1–24) + Arddull Torriad Llinell Rhydd + Arddull Torriad Llinell Arferol + Arddull Torriad Llinell Caeth + System Fetrig + System Fesur Imperialaidd + System Fesur UDA + Digidau Arabig-Indig + Digidau Arabig-Indig Estynedig + Rhifolion Armenaidd + Rhifolion Armenaidd mewn Llythrennau Bychain + Digidau Bengalaidd + Digidau Devanagarig + Rhifolion Ethiopig + Digidau Lled Llawn + Rhifolion Georgaidd + Rhifolion Groegaidd + Rhifolion Groegaidd mewn Llythrennau Bychain + Digidau Gwjarataidd + Digidau Gwrmwcaidd + Rhifolion Degol Tsieineaidd + Rhifolion Tsieineaidd Symledig + Rhifolion Ariannol Tsieineaidd Symledig + Rhifolion Tsieineaidd Traddodiadol + Rhifolion Ariannol Tsieineaidd Traddodiadol + Rhifolion Hebreig + Rhifolion Japaneaidd + Rhifolion Ariannol Japaneaidd + Digidau Chmeraidd + Digidau Kannaraidd + Digidau Laoaidd + Digidau Gorllewinol + Digidau Malayalamaidd + Digidau Mongolia + Digidau Myanmar + Digidau Orïaidd + Rhifolion Rhufeinig + Rhifolion Rhufeinig mewn Llythrennau Bychain + Digidau Takri + Rhifolion Tamilaidd Traddodiadol + Digidau Tamilaidd + Digidau Telugu + Digidau Thai + Digidau Tibetaidd + + + Metrig + DU + UDA + + + Iaith: {0} + Sgript: {0} + Rhanbarth: {0} + + + + [a á à â ä b c {ch} d {dd} e é è ê ë f {ff} g {ng} h i í ì î ï j l {ll} m n o ó ò ô ö p {ph} r {rh} s t {th} u ú ù û ü w ẃ ẁ ŵ ẅ y ý ỳ ŷ ÿ] + [ă å ã ā æ ç ĕ ē ĭ ī k ñ ŏ ø ō œ q ŭ ū v x z] + [A B C {CH} D {DD} E F {FF} G {NG} H I J K L {LL} M N O P {PH} Q R {RH} S T {TH} U V W X Y Z] + [\- ‐ – — , ; \: ! ? . … ' ‘ ’ " “ ” ( ) \[ \] § @ * / \& # † ‡ ′ ″] + {0}… + …{0} + {0}…{1} + {0} … + … {0} + {0} … {1} + ? + + + + + + + + + + + + + + EEEE, d MMMM y G + + + + + d MMMM y G + + + + + d MMM y G + + + + + dd/MM/y GGGGG + + + + + + + {1} am {0} + + + + + {1} am {0} + + + + + {1}, {0} + + + + + {1}, {0} + + + + d + ccc + E, d + y G + MMM y G + d MMM y G + E, d MMM y G + h a + HH + h:mm a + HH:mm + h:mm:ss a + HH:mm:ss + L + d/M + E, d/M + LLL + d MMM + E, d MMM + MMMM d + mm:ss + y + y G + M/y G + d/M/y G + E, d/M/y G + MMM y G + d MMM y G + E, d MMM y G + G y MMMM + QQQ y G + QQQQ y G + + + {0} – {1} + + d – d + + + h a – h a + h – h a + + + HH – HH + + + h:mm a – h:mm a + h:mm – h:mm a + h:mm – h:mm a + + + HH:mm – HH:mm + HH:mm – HH:mm + + + h:mm a – h:mm a v + h:mm – h:mm a v + h:mm – h:mm a v + + + HH:mm – HH:mm v + HH:mm – HH:mm v + + + h a – h a v + h – h a v + + + HH – HH v + + + M – M + + + d/M – d/M + d/M – d/M + + + E, d/M – E, d/M + E, d/M – E, d/M + + + MMM–MMM + + + d – d MMM + d MMM – d MMM + + + E, d MMM – E, d MMM + E, d MMM – E, d MMM + + + LLLL–LLLL + + + y–y G + + + M/y – M/y GGGGG + M/y – M/y GGGGG + + + d/M/y – d/M/y GGGGG + d/M/y – d/M/y GGGGG + d/M/y – d/M/y GGGGG + + + E, d/M/y – E, d/M/y GGGGG + E, d/M/y – E, d/M/y GGGGG + E, d/M/y – E, d/M/y GGGGG + + + MMM – MMM y G + MMM y – MMM y G + + + d–d MMM y G + d MMM – d MMM y G + d MMM y – d MMM y G + + + E, d MMM – E, d MMM y G + E, d MMM – E, d MMM y G + E, d MMM, y – E, d MMM y G + + + MMMM–MMMM y G + MMMM y – MMMM y G + + + + + + + + + Ion + Chwef + Maw + Ebrill + Mai + Meh + Gorff + Awst + Medi + Hyd + Tach + Rhag + + + I + Ch + M + E + M + M + G + A + M + H + T + Rh + + + Ionawr + Chwefror + Mawrth + Ebrill + Mai + Mehefin + Gorffennaf + Awst + Medi + Hydref + Tachwedd + Rhagfyr + + + + + Ion + Chw + Maw + Ebr + Mai + Meh + Gor + Awst + Medi + Hyd + Tach + Rhag + + + I + Ch + M + E + M + M + G + A + M + H + T + Rh + + + Ionawr + Chwefror + Mawrth + Ebrill + Mai + Mehefin + Gorffennaf + Awst + Medi + Hydref + Tachwedd + Rhagfyr + + + + + + + Sul + Llun + Maw + Mer + Iau + Gwen + Sad + + + S + Ll + M + M + I + G + S + + + Su + Ll + Ma + Me + Ia + Gw + Sa + + + Dydd Sul + Dydd Llun + Dydd Mawrth + Dydd Mercher + Dydd Iau + Dydd Gwener + Dydd Sadwrn + + + + + Sul + Llun + Maw + Mer + Iau + Gwe + Sad + + + S + Ll + M + M + I + G + S + + + Su + Ll + Ma + Me + Ia + Gw + Sa + + + Dydd Sul + Dydd Llun + Dydd Mawrth + Dydd Mercher + Dydd Iau + Dydd Gwener + Dydd Sadwrn + + + + + + + Ch1 + Ch2 + Ch3 + Ch4 + + + 1 + 2 + 3 + 4 + + + chwarter 1af + 2il chwarter + 3ydd chwarter + 4ydd chwarter + + + + + Ch1 + Ch2 + Ch3 + Ch4 + + + 1 + 2 + 3 + 4 + + + chwarter 1af + 2il chwarter + 3ydd chwarter + 4ydd chwarter + + + + + + + AM + PM + + + AM + PM + + + AM + PM + + + + + + Cyn Crist + Cyn Cyfnod Cyffredin + Oed Crist + Cyfnod Cyffredin + + + CC + BCE + OC + CE + + + C + O + + + + + + EEEE, d MMMM y + + + + + d MMMM y + + + + + d MMM y + + + + + dd/MM/yy + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + {1} 'am' {0} + + + + + {1} 'am' {0} + + + + + {1} {0} + + + + + {1} {0} + + + + d + ccc + E, d + E, h:mm a + E, HH:mm + E, h:mm:ss a + E, HH:mm:ss + y G + MMM y G + d MMM y G + E, d MMM y G + h a + HH + h:mm a + HH:mm + h:mm:ss a + HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v + L + d/M + E, d/M + LLL + d MMM + E, d MMM + MMMM d + mm:ss + y + M/y + d/M/y + E, d/M/y + MMM y + d MMM y + E, d MMM y + MMMM y + Q y + QQQ y + QQQQ y + + + {0} {1} + + + {0} – {1} + + d–d + + + h a – h a + h–h a + + + HH–HH + + + h:mm a – h:mm a + h:mm h:mm a + h:mm – h:mm a + + + HH:mm–HH:mm + HH:mm–HH:mm + + + h:mm a – h:mm a v + h:mm – h:mm a v + h:mm–h:mm a v + + + HH:mm–HH:mm v + HH:mm–HH:mm v + + + h a – h a v + h–h a v + + + HH–HH v + + + M–M + + + d/M – d/M + d/M – d/M + + + E, d/M – E, d/M + E, d/M – E, d/M + + + MMM–MMM + + + d–d MMM + d MMM – d MMM + + + E, d MMM – E, d MMM + E, d MMM – E, d MMM + + + LLLL–LLLL + + + y–y + + + M/y – M/y + M/y – M/y + + + d/M/y – d/M/y + d/M/y – d/M/y + d/M/y – d/M/y + + + E, d/M/y – E, d/M/y + E, d/M/y – E, d/M/y + E, d/M/y – E, d/M/y + + + MMM – MMM y + MMM y – MMM y + + + d–d MMM y + d MMM – d MMM y + d MMM, y – d MMM y + + + E, d MMM – E, d MMM y + E, d MMM – E, d MMM y + E, d MMM y – E, d MMM y + + + MMMM–MMMM y + MMMM y – MMMM y + + + + + + + + Oes + + + blwyddyn + llynedd + eleni + blwyddyn nesaf + + ymhen {0} mlynedd + ymhen blwyddyn + ymhen {0} flynedd + ymhen {0} blynedd + ymhen {0} blynedd + ymhen {0} mlynedd + + + {0} o flynyddoedd yn ôl + blwyddyn yn ôl + {0} flynedd yn ôl + {0} blynedd yn ôl + {0} blynedd yn ôl + {0} o flynyddoedd yn ôl + + + + bl. + + ymhen {0} mlynedd + ymhen blwyddyn + ymhen {0} flynedd + ymhen {0} blynedd + ymhen {0} blynedd + ymhen {0} mlynedd + + + {0} o flynyddoedd yn ôl + blwyddyn yn ôl + {0} flynedd yn ôl + {0} blynedd yn ôl + {0} blynedd yn ôl + {0} o flynyddoedd yn ôl + + + + bl. + + ymhen {0} mlynedd + ymhen blwyddyn + ymhen {0} flynedd + ymhen {0} blynedd + ymhen {0} blynedd + ymhen {0} mlynedd + + + {0} o flynyddoedd yn ôl + blwyddyn yn ôl + {0} flynedd yn ôl + {0} blynedd yn ôl + {0} blynedd yn ôl + {0} o flynyddoedd yn ôl + + + + chwarter + + ymhen {0} o chwarteri + ymhen {0} chwarter + ymhen {0} chwarter + ymhen {0} chwarter + ymhen {0} chwarter + ymhen {0} chwarter + + + {0} o chwarteri yn ôl + {0} chwarter yn ôl + {0} chwarter yn ôl + {0} chwarter yn ôl + {0} chwarter yn ôl + {0} o chwarteri yn ôl + + + + chwarter + + ymhen {0} o chwarteri + ymhen {0} o chwarteri + ymhen {0} o chwarteri + ymhen {0} o chwarteri + ymhen {0} o chwarteri + ymhen {0} o chwarteri + + + {0} o chwarteri yn ôl + {0} chwarter yn ôl + {0} chwarter yn ôl + {0} chwarter yn ôl + {0} chwarter yn ôl + {0} o chwarteri yn ôl + + + + chwarter + + ymhen {0} o chwarteri + ymhen {0} chwarter + ymhen {0} chwarter + ymhen {0} chwarter + ymhen {0} chwarter + ymhen {0} o chwarteri + + + {0} o chwarteri yn ôl + {0} chwarter yn ôl + {0} chwarter yn ôl + {0} chwarter yn ôl + {0} chwarter yn ôl + {0} o chwarteri yn ôl + + + + mis + mis diwethaf + y mis hwn + mis nesaf + + ymhen {0} mis + ymhen mis + ymhen deufis + ymhen {0} mis + ymhen {0} mis + ymhen {0} mis + + + {0} mis yn ôl + {0} mis yn ôl + {0} fis yn ôl + {0} mis yn ôl + {0} mis yn ôl + {0} mis yn ôl + + + + mis + + ymhen {0} mis + ymhen mis + ymhen deufis + ymhen {0} mis + ymhen {0} mis + ymhen {0} mis + + + {0} mis yn ôl + {0} mis yn ôl + {0} mis yn ôl + {0} mis yn ôl + {0} mis yn ôl + {0} mis yn ôl + + + + mis + + ymhen {0} mis + ymhen mis + ymhen deufis + ymhen {0} mis + ymhen {0} mis + ymhen {0} mis + + + {0} mis yn ôl + {0} mis yn ôl + {0} fis yn ôl + {0} mis yn ôl + {0} mis yn ôl + {0} mis yn ôl + + + + wythnos + wythnos ddiwethaf + yr wythnos hon + wythnos nesaf + + ymhen {0} wythnos + ymhen wythnos + ymhen pythefnos + ymhen {0} wythnos + ymhen {0} wythnos + ymhen {0} wythnos + + + {0} wythnos yn ôl + {0} wythnos yn ôl + {0} wythnos yn ôl + {0} wythnos yn ôl + {0} wythnos yn ôl + {0} wythnos yn ôl + + + + wythnos + + ymhen {0} wythnos + ymhen wythnos + ymhen pythefnos + ymhen {0} wythnos + ymhen {0} wythnos + ymhen {0} wythnos + + + {0} wythnos yn ôl + {0} wythnos yn ôl + pythefnos yn ôl + {0} wythnos yn ôl + {0} wythnos yn ôl + {0} wythnos yn ôl + + + + wythnos + + ymhen {0} wythnos + ymhen wythnos + ymhen pythefnos + ymhen {0} wythnos + ymhen {0} wythnos + ymhen {0} wythnos + + + {0} wythnos yn ôl + {0} wythnos yn ôl + pythefnos yn ôl + {0} wythnos yn ôl + {0} wythnos yn ôl + {0} wythnos yn ôl + + + + dydd + echdoe + ddoe + heddiw + yfory + drennydd + + ymhen {0} diwrnod + ymhen diwrnod + ymhen deuddydd + ymhen tridiau + ymhen {0} diwrnod + ymhen {0} diwrnod + + + {0} diwrnod yn ôl + {0} diwrnod yn ôl + {0} ddiwrnod yn ôl + {0} diwrnod yn ôl + {0} diwrnod yn ôl + {0} diwrnod yn ôl + + + + dydd + echdoe + ddoe + heddiw + yfory + drennydd + + ymhen {0} diwrnod + ymhen diwrnod + ymhen deuddydd + ymhen tridiau + ymhen {0} diwrnod + ymhen {0} diwrnod + + + {0} diwrnod yn ôl + {0} diwrnod yn ôl + {0} ddiwrnod yn ôl + {0} diwrnod yn ôl + {0} diwrnod yn ôl + {0} diwrnod yn ôl + + + + dydd + + ymhen {0} diwrnod + ymhen diwrnod + ymhen deuddydd + ymhen tridiau + ymhen {0} diwrnod + ymhen {0} diwrnod + + + {0} diwrnod yn ôl + {0} diwrnod yn ôl + {0} ddiwrnod yn ôl + {0} diwrnod yn ôl + {0} diwrnod yn ôl + {0} diwrnod yn ôl + + + + dydd o’r wythnos + + + dydd Sul diwethaf + dydd Sul yma + dydd Sul nesaf + + + Sul diwethaf + Sul yma + Sul nesaf + + + Sul diwethaf + Sul yma + Sul nesaf + + + dydd Llun diwethaf + dydd Llun yma + dydd Llun nesaf + + + Llun diwethaf + Llun yma + Llun nesaf + + + Llun diwethaf + Llun yma + Llun nesaf + + + dydd Mawrth diwethaf + dydd Mawrth yma + dydd Mawrth nesaf + + + Mawrth diwethaf + Mawrth yma + Mawrth nesaf + + + Maw. diwethaf + Maw. yma + Maw. nesaf + + + dydd Mercher diwethaf + dydd Mercher yma + dydd Mercher nesaf + + + Mercher diwethaf + Mercher yma + Mercher nesaf + + + Merch. diwethaf + Merch. yma + Merch. nesaf + + + dydd Iau diwethaf + dydd Iau yma + dydd Iau nesaf + + + Iau diwethaf + Iau yma + Iau nesaf + + + Iau diwethaf + Iau yma + Iau nesaf + + + dydd Gwener diwethaf + dydd Gwener yma + dydd Gwener nesaf + + + Gwener diwethaf + Gwener yma + Gwener nesaf + + + Gwen. diwethaf + Gwen. yma + Gwen. nesaf + + + dydd Sadwrn diwethaf + dydd Sadwrn yma + dydd Sadwrn nesaf + + + Sadwrn diwethaf + Sadwrn yma + Sadwrn nesaf + + + Sad. diwethaf + Sad. yma + Sad. nesaf + + + AM/PM + + + awr + + ymhen {0} awr + ymhen awr + ymhen {0} awr + ymhen {0} awr + ymhen {0} awr + ymhen {0} awr + + + {0} awr yn ôl + awr yn ôl + {0} awr yn ôl + {0} awr yn ôl + {0} awr yn ôl + {0} awr yn ôl + + + + awr + + ymhen {0} awr + ymhen awr + ymhen {0} awr + ymhen {0} awr + ymhen {0} awr + ymhen {0} awr + + + {0} awr yn ôl + awr yn ôl + {0} awr yn ôl + {0} awr yn ôl + {0} awr yn ôl + {0} awr yn ôl + + + + awr + + ymhen {0} awr + ymhen awr + ymhen {0} awr + ymhen {0} awr + ymhen {0} awr + ymhen {0} awr + + + {0} awr yn ôl + {0} awr yn ôl + {0} awr yn ôl + {0} awr yn ôl + {0} awr yn ôl + {0} awr yn ôl + + + + munud + + ymhen {0} munud + ymhen munud + ymhen {0} funud + ymhen {0} munud + ymhen {0} munud + ymhen {0} munud + + + {0} munud yn ôl + {0} munud yn ôl + {0} funud yn ôl + {0} munud yn ôl + {0} munud yn ôl + {0} munud yn ôl + + + + mun. + + ymhen {0} mun. + ymhen {0} mun. + ymhen {0} fun. + ymhen {0} mun. + ymhen {0} mun. + ymhen {0} mun. + + + {0} mun. yn ôl + {0} mun. yn ôl + {0} fun. yn ôl + {0} mun. yn ôl + {0} mun. yn ôl + {0} mun. yn ôl + + + + mun. + + ymhen {0} mun. + ymhen {0} mun. + ymhen {0} fun. + ymhen {0} mun. + ymhen {0} mun. + ymhen {0} mun. + + + {0} mun. yn ôl + {0} mun. yn ôl + {0} fun. yn ôl + {0} mun. yn ôl + {0} mun. yn ôl + {0} mun. yn ôl + + + + eiliad + nawr + + ymhen {0} eiliad + ymhen eiliad + ymhen {0} eiliad + ymhen {0} eiliad + ymhen {0} eiliad + ymhen {0} eiliad + + + {0} eiliad yn ôl + eiliad yn ôl + {0} eiliad yn ôl + {0} eiliad yn ôl + {0} eiliad yn ôl + {0} eiliad yn ôl + + + + eiliad + + ymhen {0} eiliad + ymhen eiliad + ymhen {0} eiliad + ymhen {0} eiliad + ymhen {0} eiliad + ymhen {0} eiliad + + + {0} eiliad yn ôl + {0} eiliad yn ôl + {0} eiliad yn ôl + {0} eiliad yn ôl + {0} eiliad yn ôl + {0} eiliad yn ôl + + + + eiliad + + ymhen {0} eiliad + ymhen eiliad + ymhen {0} eiliad + ymhen {0} eiliad + ymhen {0} eiliad + ymhen {0} eiliad + + + {0} eiliad yn ôl + {0} eiliad yn ôl + {0} eiliad yn ôl + {0} eiliad yn ôl + {0} eiliad yn ôl + {0} eiliad yn ôl + + + + Cylchfa Amser + + + + +HH:mm;-HH:mm + GMT{0} + GMT + Amser {0} + Amser Haf {0} + Amser Safonol {0} + {1} ({0}) + + Dinas Anhysbys + + + Andorra + + + Dubai + + + Kabul + + + Antigua + + + Anguilla + + + Tirane + + + Yerevan + + + Luanda + + + Rothera + + + Palmer + + + Troll + + + Syowa + + + Mawson + + + Davis + + + Vostok + + + Casey + + + Dumont d’Urville + + + McMurdo + + + Rio Gallegos + + + Mendoza + + + San Juan + + + Ushuaia + + + La Rioja + + + San Luis + + + Catamarca + + + Salta + + + Jujuy + + + Tucumán + + + Cordoba + + + Buenos Aires + + + Pago Pago + + + Fienna + + + Perth + + + Eucla + + + Darwin + + + Adelaide + + + Broken Hill + + + Currie + + + Melbourne + + + Hobart + + + Lindeman + + + Sydney + + + Brisbane + + + Macquarie + + + Lord Howe + + + Aruba + + + Mariehamn + + + Baku + + + Sarajevo + + + Barbados + + + Dhaka + + + Brwsel + + + Ouagadougou + + + Sofia + + + Bahrain + + + Bujumbura + + + Porto-Novo + + + St. Barthelemy + + + Bermuda + + + Brunei + + + La Paz + + + Kralendijk + + + Eirunepé + + + Rio Branco + + + Porto Velho + + + Boa Vista + + + Manaus + + + Cuiabá + + + Santarem + + + Campo Grande + + + Belém + + + Araguaina + + + São Paulo + + + Bahia + + + Fortaleza + + + Maceió + + + Recife + + + Noronha + + + Nassau + + + Thimphu + + + Gaborone + + + Minsk + + + Belize + + + Dawson + + + Whitehorse + + + Inuvik + + + Vancouver + + + Dawson Creek + + + Creston + + + Yellowknife + + + Edmonton + + + Swift Current + + + Cambridge Bay + + + Regina + + + Winnipeg + + + Resolute + + + Rainy River + + + Rankin Inlet + + + Atikokan + + + Thunder Bay + + + Nipigon + + + Toronto + + + Iqaluit + + + Pangnirtung + + + Moncton + + + Halifax + + + Goose Bay + + + Glace Bay + + + Blanc-Sablon + + + St. John’s + + + Cocos + + + Kinshasa + + + Lubumbashi + + + Bangui + + + Brazzaville + + + Zurich + + + Abidjan + + + Rarotonga + + + Ynys y Pasg + + + Santiago + + + Douala + + + Urumqi + + + Shanghai + + + Bogotá + + + Costa Rica + + + Havana + + + Cabo Verde + + + Curaçao + + + Ynys y Nadolig + + + Nicosia + + + Prag + + + Busingen + + + Berlin + + + Djibouti + + + Copenhagen + + + Dominica + + + Santo Domingo + + + Alger + + + Galapagos + + + Guayaquil + + + Tallinn + + + Cairo + + + El Aaiún + + + Asmera + + + yr Ynysoedd Dedwydd + + + Ceuta + + + Madrid + + + Addis Ababa + + + Helsinki + + + Fiji + + + Stanley + + + Chuuk + + + Pohnpei + + + Kosrae + + + Ffaro + + + Paris + + + Libreville + + + + Amser Haf Prydain + + Llundain + + + Grenada + + + Tiflis + + + Cayenne + + + Ynys y Garn + + + Accra + + + Gibraltar + + + Thule + + + Nuuk + + + Ittoqqortoormiit + + + Danmarkshavn + + + Banjul + + + Conakry + + + Guadeloupe + + + Malabo + + + Athen + + + De Georgia + + + Guatemala + + + Guam + + + Bissau + + + Guyana + + + Hong Kong + + + Tegucigalpa + + + Zagreb + + + Port-au-Prince + + + Budapest + + + Jakarta + + + Pontianak + + + Makassar + + + Jayapura + + + + Amser Haf Iwerddon + + Dulyn + + + Jerwsalem + + + Ynys Manaw + + + Kolkata + + + Chagos + + + Baghdad + + + Tehran + + + Reykjavík + + + Rhufain + + + Jersey + + + Jamaica + + + Amman + + + Tokyo + + + Nairobi + + + Bishkek + + + Phnom Penh + + + Enderbury + + + Kiritimati + + + Tarawa + + + Comoro + + + Saint Kitts + + + Pyongyang + + + Seoul + + + Kuwait + + + Cayman + + + Aqtau + + + Oral + + + Aqtobe + + + Qyzylorda + + + Almaty + + + Vientiane + + + Beirut + + + Saint Lucia + + + Vaduz + + + Colombo + + + Monrovia + + + Maseru + + + Vilnius + + + Lwcsembwrg + + + Riga + + + Tripoli + + + Casablanca + + + Monaco + + + Chisinau + + + Podgorica + + + Marigot + + + Antananarivo + + + Kwajalein + + + Majuro + + + Skopje + + + Bamako + + + Yangon + + + Hovd + + + Ulan Bator + + + Choibalsan + + + Macau + + + Saipan + + + Martinique + + + Nouakchott + + + Montserrat + + + Malta + + + Mauritius + + + Maldives + + + Blantyre + + + Tijuana + + + Santa Isabel + + + Hermosillo + + + Mazatlán + + + Chihuahua + + + Bae Banderas + + + Ojinaga + + + Monterrey + + + Dinas Mecsico + + + Matamoros + + + Merida + + + Cancún + + + Kuala Lumpur + + + Kuching + + + Maputo + + + Windhoek + + + Noumea + + + Niamey + + + Norfolk + + + Lagos + + + Managua + + + Amsterdam + + + Oslo + + + Kathmandu + + + Nauru + + + Niue + + + Chatham + + + Auckland + + + Muscat + + + Panamá + + + Lima + + + Tahiti + + + Marquesas + + + Gambier + + + Port Moresby + + + Bougainville + + + Manila + + + Karachi + + + Warsaw + + + Miquelon + + + Pitcairn + + + Puerto Rico + + + Gasa + + + Hebron + + + Azores + + + Madeira + + + Lisbon + + + Palau + + + Asunción + + + Qatar + + + Réunion + + + Bwcarést + + + Beograd + + + Kaliningrad + + + Simferopol + + + Moscfa + + + Volgograd + + + Samara + + + Yekaterinburg + + + Omsk + + + Novosibirsk + + + Novokuznetsk + + + Krasnoyarsk + + + Irkutsk + + + Chita + + + Yakutsk + + + Vladivostok + + + Khandyga + + + Sakhalin + + + Ust-Nera + + + Magadan + + + Srednekolymsk + + + Kamchatka + + + Anadyr + + + Kigali + + + Riyadh + + + Guadalcanal + + + Mahé + + + Khartoum + + + Stockholm + + + Singapore + + + Saint Helena + + + Ljubljana + + + Longyearbyen + + + Bratislava + + + Freetown + + + San Marino + + + Dakar + + + Mogadishu + + + Paramaribo + + + Juba + + + São Tomé + + + El Salvador + + + Lower Prince’s Quarter + + + Damascus + + + Mbabane + + + Grand Turk + + + N’Djamena + + + Kerguelen + + + Lomé + + + Bangkok + + + Dushanbe + + + Fakaofo + + + Dili + + + Ashgabat + + + Tunis + + + Tongatapu + + + Caergystennin + + + Port of Spain + + + Funafuti + + + Taipei + + + Dar es Salaam + + + Uzhhorod + + + Kiev + + + Zaporizhzhya + + + Kampala + + + Midway + + + Johnston + + + Wake + + + Adak + + + Nome + + + Honolulu + + + Anchorage + + + Yakutat + + + Sitka + + + Juneau + + + Metlakatla + + + Los Angeles + + + Boise + + + Phoenix + + + Denver + + + Beulah, Gogledd Dakota + + + New Salem, Gogledd Dakota + + + Center, Gogledd Dakota + + + Chicago + + + Menominee + + + Vincennes, Indiana + + + Petersburg, Indiana + + + Dinas Tell, Indiana + + + Knox, Indiana + + + Winamac, Indiana + + + Marengo, Indiana + + + Indianapolis + + + Louisville + + + Vevay, Indiana + + + Monticello, Kentucky + + + Detroit + + + Efrog Newydd + + + Montevideo + + + Samarkand + + + Tashkent + + + y Fatican + + + Saint Vincent + + + Caracas + + + Tortola + + + Saint Thomas + + + Dinas Hô Chi Minh + + + Efate + + + Wallis + + + Apia + + + Aden + + + Mayotte + + + Johannesburg + + + Lusaka + + + Harare + + + + Amser Afghanistan + + + + + Amser Canolbarth Affrica + + + + + Amser Dwyrain Affrica + + + + + Amser Safonol De Affrica + + + + + Amser Gorllewin Affrica + Amser Safonol Gorllewin Affrica + Amser Haf Gorllewin Affrica + + + + + Amser Alaska + Amser Safonol Alaska + Amser Haf Alaska + + + + + Amser Amazonas + Amser Safonol Amazonas + Amser Haf Amazonas + + + + + Amser Canolbarth Gogledd America + Amser Safonol Canolbarth Gogledd America + Amser Haf Canolbarth Gogledd America + + + + + Amser Dwyrain Gogledd America + Amser Safonol Dwyrain Gogledd America + Amser Haf Dwyrain Gogledd America + + + + + Amser Mynyddoedd Gogledd America + Amser Safonol Mynyddoedd Gogledd America + Amser Haf Mynyddoedd Gogledd America + + + + + Amser Cefnfor Tawel Gogledd America + Amser Safonol Cefnfor Tawel Gogledd America + Amser Haf Cefnfor Tawel Gogledd America + + + + + Amser Apia + Amser Safonol Apia + Amser Haf Apia + + + + + Amser Arabaidd + Amser Safonol Arabaidd + Amser Haf Arabaidd + + + + + Amser yr Ariannin + Amser Safonol Ariannin + Amser Haf Ariannin + + + + + Amser Gorllewin Ariannin + Amser Safonol Gorllewin Ariannin + Amser Haf Gorllewin Ariannin + + + + + Amser Armenia + Amser Safonol Armenia + Amser Haf Armenia + + + + + Amser Cefnfor yr Iwerydd + Amser Safonol Cefnfor yr Iwerydd + Amser Haf Cefnfor yr Iwerydd + + + + + Amser Canolbarth Awstralia + Amser Safonol Canolbarth Awstralia + Amser Haf Canolbarth Awstralia + + + + + Amser Canolbarth Gorllewin Awstralia + Amser Safonol Canolbarth Gorllewin Awstralia + Amser Haf Canolbarth Gorllewin Awstralia + + + + + Amser Dwyrain Awstralia + Amser Safonol Dwyrain Awstralia + Amser Haf Dwyrain Awstralia + + + + + Amser Gorllewin Awstralia + Amser Safonol Gorllewin Awstralia + Amser Haf Gorllewin Awstralia + + + + + Amser Aserbaijan + Amser Safonol Aserbaijan + Amser Haf Aserbaijan + + + + + Amser yr Azores + Amser Safonol yr Azores + Amser Haf yr Azores + + + + + Amser Bangladesh + Amser Safonol Bangladesh + Amser Haf Bangladesh + + + + + Amser Bhutan + + + + + Amser Bolivia + + + + + Amser Brasília + Amser Safonol Brasília + Amser Haf Brasília + + + + + Amser Brunei Darussalam + + + + + Amser Cabo Verde + Amser Safonol Cabo Verde + Amser Haf Cabo Verde + + + + + Amser Chamorro + + + + + Amser Chatham + Amser Safonol Chatham + Amser Haf Chatham + + + + + Amser Chile + Amser Safonol Chile + Amser Haf Chile + + + + + Amser Tsieina + Amser Safonol Tsieina + Amser Haf Tsieina + + + + + Amser Choibalsan + Amser Safonol Choibalsan + Amser Haf Choibalsan + + + + + Amser Ynys Y Nadolig + + + + + Amser Ynysoedd Cocos + + + + + Amser Colombia + Amser Safonol Colombia + Amser Haf Colombia + + + + + Amser Ynysoedd Cook + Amser Safonol Ynysoedd Cook + Amser Hanner Haf Ynysoedd Cook + + + + + Amser Cuba + Amser Safonol Cuba + Amser Haf Cuba + + + + + Amser Davis + + + + + Amser Dumont-d’Urville + + + + + Amser Dwyrain Timor + + + + + Amser Ynys y Pasg + Amser Safonol Ynys y Pasg + Amser Haf Ynys y Pasg + + + + + Amser Ecuador + + + + + Amser Canolbarth Ewrop + Amser Safonol Canolbarth Ewrop + Amser Haf Canolbarth Ewrop + + + CET + CET + CEST + + + + + Amser Dwyrain Ewrop + Amser Safonol Dwyrain Ewrop + Amser Haf Dwyrain Ewrop + + + EET + EET + EEST + + + + + Amser Dwyrain Pell Ewrop + + + + + Amser Gorllewin Ewrop + Amser Safonol Gorllewin Ewrop + Amser Haf Gorllewin Ewrop + + + WET + WET + WEST + + + + + Amser Ynysoedd Falklands/Malvinas + Amser Safonol Ynysoedd Falklands/Malvinas + Amser Haf Ynysoedd Falklands/Malvinas + + + + + Amser Fiji + Amser Safonol Fiji + Amser Haf Fiji + + + + + Amser Guyane Ffrengig + + + + + Amser Deheuol ac Antarctig Frengig + + + + + Amser Galapagos + + + + + Amser Gambier + + + + + Amser Georgia + Amser Safonol Georgia + Amser Haf Georgia + + + + + Amser Ynysoedd Gilbert + + + + + Amser Safonol Greenwich + + + GMT + + + + + Amser Dwyrain yr Ynys Las + Amser Safonol Dwyrain yr Ynys Las + Amser Haf Dwyrain yr Ynys Las + + + + + Amser Gorllewin yr Ynys Las + Amser Safonol Gorllewin yr Ynys Las + Amser Haf Gorllewin yr Ynys Las + + + + + Amser Safonol y Gwlff + + + + + Amser Guyana + + + + + Amser Hawaii-Aleutian + Amser Safonol Hawaii-Aleutian + Amser Haf Hawaii-Aleutian + + + + + Amser Hong Kong + Amser Safonol Hong Kong + Amser Haf Hong Kong + + + + + Amser Hovd + Amser Safonol Hovd + Amser Haf Hovd + + + + + Amser India + + + + + Amser Cefnfor India + + + + + Amser Indo-Tsieina + + + + + Amser Canolbarth Indonesia + + + + + Amser Dwyrain Indonesia + + + + + Amser Gorllewin Indonesia + + + + + Amser Iran + Amser Safonol Iran + Amser Haf Iran + + + + + Amser Irkutsk + Amser Safonol Irkutsk + Amser Haf Irkutsk + + + + + Amser Israel + Amser Safonol Israel + Amser Haf Israel + + + + + Amser Siapan + Amser Safonol Siapan + Amser Haf Siapan + + + + + Amser Dwyrain Casachstan + + + + + Amser Gorllewin Casachstan + + + + + Amser Corea + Amser Safonol Corea + Amser Haf Corea + + + + + Amser Kosrae + + + + + Amser Krasnoyarsk + Amser Safonol Krasnoyarsk + Amser Haf Krasnoyarsk + + + + + Amser Casachstan + + + + + Amser Ynysoedd Line + + + + + Amser yr Arglwydd Howe + Amser Safonol yr Arglwydd Howe + Amser Haf yr Arglwydd Howe + + + + + Amser Ynys Macquarie + + + + + Amser Magadan + Amser Safonol Magadan + Amser Haf Magadan + + + + + Amser Malaysia + + + + + Amser Y Maldives + + + + + Amser Marquises + + + + + Amser Ynysoedd Marshall + + + + + Amser Mauritius + Amser Safonol Mauritius + Amser Haf Mauritius + + + + + Amser Mawson + + + + + Amser Gogledd Orllewin Mecsico + Amser Safonol Gogledd Orllewin Mecsico + Amser Haf Gogledd Orllewin Mecsico + + + + + Amser Pasiffig Mecsico + Amser Safonol Pasiffig Mecsico + Amser Haf Pasiffig Mecsico + + + + + Amser Ulan Bator + Amser Safonol Ulan Bator + Amser Haf Ulan Bator + + + + + Amser Moscfa + Amser Safonol Moscfa + Amser Haf Moscfa + + + + + Amser Myanmar + + + + + Amser Nauru + + + + + Amser Nepal + + + + + Amser Caledonia Newydd + Amser Safonol Caledonia Newydd + Amser Haf Caledonia Newydd + + + + + Amser Seland Newydd + Amser Safonol Seland Newydd + Amser Haf Seland Newydd + + + + + Amser Newfoundland + Amser Safonol Newfoundland + Amser Haf Newfoundland + + + + + Amser Niue + + + + + Amser Ynys Norfolk + + + + + Amser Fernando de Noronha + Amser Safonol Fernando de Noronha + Amser Haf Fernando de Noronha + + + + + Amser Novosibirsk + Amser Safonol Novosibirsk + Amser Haf Novosibirsk + + + + + Amser Omsk + Amser Safonol Omsk + Amser Haf Omsk + + + + + Amser Pakistan + Amser Safonol Pakistan + Amser Haf Pakistan + + + + + Amser Palau + + + + + Amser Papua Guinea Newydd + + + + + Amser Paraguay + Amser Safonol Paraguay + Amser Haf Paraguay + + + + + Amser Periw + Amser Safonol Periw + Amser Haf Periw + + + + + Amser Pilipinas + Amser Safonol Pilipinas + Amser Haf Pilipinas + + + + + Amser Ynysoedd Phoenix + + + + + Amser Saint-Pierre-et-Miquelon + Amser Safonol Saint-Pierre-et-Miquelon + Amser Haf Saint-Pierre-et-Miquelon + + + + + Amser Pitcairn + + + + + Amser Pohnpei + + + + + Amser Réunion + + + + + Amser Rothera + + + + + Amser Sakhalin + Amser Safonol Sakhalin + Amser Haf Sakhalin + + + + + Amser Samoa + Amser Safonol Samoa + Amser Haf Samoa + + + + + Amser Seychelles + + + + + Amser Singapore + + + + + Amser Ynysoedd Solomon + + + + + Amser De Georgia + + + + + Amser Suriname + + + + + Amser Syowa + + + + + Amser Tahiti + + + + + Amser Taipei + Amser Safonol Taipei + Amser Haf Taipei + + + + + Amser Tajicistan + + + + + Amser Tokelau + + + + + Amser Tonga + Amser Safonol Tonga + Amser Haf Tonga + + + + + Amser Chuuk + + + + + Amser Tyrcmenistan + Amser Safonol Tyrcmenistan + Amser Haf Tyrcmenistan + + + + + Amser Tuvalu + + + + + Amser Uruguay + Amser Safonol Uruguay + Amser Haf Uruguay + + + + + Amser Wsbecistan + Amser Safonol Wsbecistan + Amser Haf Wsbecistan + + + + + Amser Vanuatu + Amser Safonol Vanuatu + Amser Haf Vanuatu + + + + + Amser Venezuela + + + + + Amser Vladivostok + Amser Safonol Vladivostok + Amser Haf Vladivostok + + + + + Amser Volgograd + Amser Safonol Volgograd + Amser Haf Volgograd + + + + + Amser Vostok + + + + + Amser Ynys Wake + + + + + Amser Wallis a Futuna + + + + + Amser Yakutsk + Amser Safonol Yakutsk + Amser Haf Yakutsk + + + + + Amser Yekaterinburg + Amser Safonol Yekaterinburg + Amser Haf Yekaterinburg + + + + + + latn + + latn + + 1 + + : + + + . + , + ; + % + + + - + E + x + + + NaN + : + + + + + #,##0.### + + + + + 0 mil + 0 mil + 0 fil + 0 mil + 0 mil + 0 mil + 00 mil + 00 mil + 00 mil + 00 mil + 00 mil + 00 mil + 000 mil + 000 mil + 000 mil + 000 mil + 000 mil + 000 mil + 0 miliwn + 0 miliwn + 0 filiwn + 0 miliwn + 0 miliwn + 0 miliwn + 00 miliwn + 00 miliwn + 00 miliwn + 00 miliwn + 00 miliwn + 00 miliwn + 000 miliwn + 000 miliwn + 000 miliwn + 000 miliwn + 000 miliwn + 000 miliwn + 0 biliwn + 0 biliwn + 0 biliwn + 0 biliwn + 0 biliwn + 0 biliwn + 00 biliwn + 00 biliwn + 00 biliwn + 00 biliwn + 00 biliwn + 00 biliwn + 000 biliwn + 000 biliwn + 000 biliwn + 000 biliwn + 000 biliwn + 000 biliwn + 0 triliwn + 0 triliwn + 0 driliwn + 0 thriliwn + 0 thriliwn + 0 triliwn + 00 triliwn + 00 triliwn + 00 triliwn + 00 triliwn + 00 triliwn + 00 triliwn + 000 triliwn + 000 triliwn + 000 triliwn + 000 triliwn + 000 triliwn + 000 triliwn + + + + + 0K + 0K + 0K + 0K + 0K + 0K + 00K + 00K + 00K + 00K + 00K + 00K + 000K + 000K + 000K + 000K + 000K + 000K + 0M + 0M + 0M + 0M + 0M + 0M + 00M + 00M + 00M + 00M + 00M + 00M + 000M + 000M + 000M + 000M + 000M + 000M + 0B + 0B + 0B + 0B + 0B + 0B + 00B + 00B + 00B + 00B + 00B + 00B + 000B + 000B + 000B + 000B + 000B + 000B + 0T + 0T + 0T + 0T + 0T + 0T + 00T + 00T + 00T + 00T + 00T + 00T + 000T + 000T + 000T + 000T + 000T + 000T + + + + + + + #E0 + + + + + + + #,##0% + + + + + + + ¤#,##0.00 + + + ¤#,##0.00;(¤#,##0.00) + + + + + ¤0 mil + ¤0K + ¤0K + ¤0K + ¤0K + ¤0K + ¤00K + ¤00K + ¤00K + ¤00K + ¤00K + ¤00K + ¤000K + ¤000K + ¤000K + ¤000K + ¤000K + ¤000K + ¤0M + ¤0M + ¤0M + ¤0M + ¤0M + ¤0M + ¤00M + ¤00M + ¤00M + ¤00M + ¤00M + ¤00M + ¤000M + ¤000M + ¤000M + ¤000M + ¤000M + ¤000M + ¤0B + ¤0B + ¤0B + ¤0B + ¤0B + ¤0B + ¤00B + ¤00B + ¤00B + ¤00B + ¤00B + ¤00B + ¤000B + ¤000B + ¤000B + ¤000B + ¤000B + ¤000B + ¤0T + ¤0T + ¤0T + ¤0T + ¤0T + ¤0T + ¤00T + ¤00T + ¤00T + ¤00T + ¤00T + ¤00T + ¤000T + ¤000T + ¤000T + ¤000T + ¤000T + ¤000T + + + {0} {1} + {0} {1} + {0} {1} + {0} {1} + {0} {1} + {0} {1} + + + + Dirham Yr Emiradau Arabaidd Unedig + dirham yr Emiradau Arabaidd Unedig + dirham yr Emiradau Arabaidd Unedig + dirham yr Emiradau Arabaidd Unedig + dirham yr Emiradau Arabaidd Unedig + dirham yr Emiradau Arabaidd Unedig + dirham yr Emiradau Arabaidd Unedig + AED + + + Afghani Afghanistan (1927–2002) + afghani Afghanistan (1927–2002) + afghani Afghanistan (1927–2002) + afghani Afghanistan (1927–2002) + afghani Afghanistan (1927–2002) + afghani Afghanistan (1927–2002) + afghani Afghanistan (1927–2002) + AFA + + + Afghani Afghanistan + Afghani Afghanistan + Afghani Afghanistan + Afghani Afghanistan + Afghani Afghanistan + Afghani Afghanistan + Afghani Afghanistan + AFN + + + Lek Albania + lek Albania + lek Albania + lek Albania + lek Albania + lek Albania + lek Albania + ALL + + + Dram Armenia + dram Armenia + dram Armenia + dram Armenia + dram Armenia + dram Armenia + dram Armenia + AMD + + + Guilder Antilles yr Iseldiroedd + guilder Antilles yr Iseldiroedd + guilder Antilles yr Iseldiroedd + guilder Antilles yr Iseldiroedd + guilder Antilles yr Iseldiroedd + guilder Antilles yr Iseldiroedd + guilder Antilles yr Iseldiroedd + ANG + + + Kwanza Angola + kwanza Angola + kwanza Angola + kwanza Angola + kwanza Angola + kwanza Angola + kwanza Angola + AOA + Kz + + + Kwanza Angola (1977–1991) + Kwanza Angola (1977–1991) + Kwanza Angola (1977–1991) + Kwanza Angola (1977–1991) + Kwanza Angola (1977–1991) + Kwanza Angola (1977–1991) + Kwanza Angola (1977–1991) + AOK + + + Kwanza Newydd Angola (1990–2000) + Kwanza Newydd Angola (1990–2000) + Kwanza Newydd Angola (1990–2000) + Kwanza Newydd Angola (1990–2000) + Kwanza Newydd Angola (1990–2000) + Kwanza Newydd Angola (1990–2000) + Kwanza Newydd Angola (1990–2000) + AON + + + Kwanza Ailgymhwysedig Angola (1995–1999) + Kwanza Ailgymhwysedig Angola (1995–1999) + Kwanza Ailgymhwysedig Angola (1995–1999) + Kwanza Ailgymhwysedig Angola (1995–1999) + Kwanza Ailgymhwysedig Angola (1995–1999) + Kwanza Ailgymhwysedig Angola (1995–1999) + Kwanza Ailgymhwysedig Angola (1995–1999) + AOR + + + Austral yr Ariannin + austral yr Ariannin + austral yr Ariannin + austral yr Ariannin + austral yr Ariannin + austral yr Ariannin + austral yr Ariannin + ARA + + + Peso Ley yr Ariannin (1970–1983) + peso ley yr Ariannin (1970–1983) + peso ley yr Ariannin (1970–1983) + peso ley yr Ariannin (1970–1983) + peso ley yr Ariannin (1970–1983) + peso ley yr Ariannin (1970–1983) + peso ley yr Ariannin (1970–1983) + ARL + + + Peso yr Ariannin (1881–1970) + peso yr Ariannin (1881–1970) + peso yr Ariannin (1881–1970) + peso yr Ariannin (1881–1970) + peso yr Ariannin (1881–1970) + peso yr Ariannin (1881–1970) + peso yr Ariannin (1881–1970) + ARM + + + Peso yr Ariannin (1983–1985) + peso yr Ariannin (1983–1985) + peso yr Ariannin (1983–1985) + peso yr Ariannin (1983–1985) + peso yr Ariannin (1983–1985) + peso yr Ariannin (1983–1985) + peso yr Ariannin (1983–1985) + ARP + + + Peso yr Ariannin + peso yr Ariannin + peso yr Ariannin + peso yr Ariannin + peso yr Ariannin + peso yr Ariannin + peso yr Ariannin + ARS + $ + + + Swllt Awstria + swllt Awstria + swllt Awstria + swllt Awstria + swllt Awstria + swllt Awstria + swllt Awstria + ATS + + + Doler Awstralia + Doler Awstralia + Doler Awstralia + Doler Awstralia + Doler Awstralia + Doler Awstralia + Doler Awstralia + A$ + $ + + + Fflorin Aruba + fflorin Aruba + fflorin Aruba + fflorin Aruba + fflorin Aruba + fflorin Aruba + fflorin Aruba + AWG + + + Manat Azerbaijan (1993–2006) + manat Azerbaijan (1993–2006) + manat Azerbaijan (1993–2006) + manat Azerbaijan (1993–2006) + manat Azerbaijan (1993–2006) + manat Azerbaijan (1993–2006) + manat Azerbaijan (1993–2006) + AZM + + + Manat Azerbaijan + manat Azerbaijan + manat Azerbaijan + manat Azerbaijan + manat Azerbaijan + manat Azerbaijan + Manat Azerbaijan + AZN + + + Marc Trosadwy Bosnia a Hercegovina + marc trosadwy Bosnia a Hercegovina + marc trosadwy Bosnia a Hercegovina + marc trosadwy Bosnia a Hercegovina + marc trosadwy Bosnia a Hercegovina + marc trosadwy Bosnia a Hercegovina + marc trosadwy Bosnia a Hercegovina + BAM + KM + + + Doler Barbados + doler Barbados + ddoler Barbados + ddoler Barbados + doler Barbados + doler Barbados + doler Barbados + BBD + $ + + + Taka Bangladesh + Taka Bangladesh + Taka Bangladesh + Taka Bangladesh + Taka Bangladesh + Taka Bangladesh + Taka Bangladesh + BDT + TK + + + BEC + + + BEF + + + BEL + + + Lev Sosialaidd Bwlgaria + lev sosialaidd Bwlgaria + lev sosialaidd Bwlgaria + lev sosialaidd Bwlgaria + lev sosialaidd Bwlgaria + lev sosialaidd Bwlgaria + lev sosialaidd Bwlgaria + BGM + + + Lev Bwlgaria + lev Bwlgaria + lev Bwlgaria + lev Bwlgaria + lev Bwlgaria + lev Bwlgaria + lev Bwlgaria + BGN + + + Lev Bwlgaria (1879–1952) + Lev Bwlgaria (1879–1952) + Lev Bwlgaria (1879–1952) + Lev Bwlgaria (1879–1952) + Lev Bwlgaria (1879–1952) + Lev Bwlgaria (1879–1952) + Lev Bwlgaria (1879–1952) + BGO + + + Dinar Bahrain + dinar Bahrain + dinar Bahrain + dinar Bahrain + dinar Bahrain + dinar Bahrain + dinar Bahrain + BHD + + + Ffranc Burundi + ffranc Burundi + ffranc Burundi + ffranc Burundi + ffranc Burundi + ffranc Burundi + ffranc Burundi + BIF + + + Doler Bermuda + doler Bermuda + ddoler Bermuda + ddoler Bermuda + doler Bermuda + doler Bermuda + doler Bermuda + BMD + $ + + + Doler Brunei + Doler Brunei + Doler Brunei + Doler Brunei + Doler Brunei + Doler Brunei + Doler Brunei + BND + $ + + + Boliviano Bolifia + boliviano Bolifia + boliviano Bolifia + boliviano Bolifia + boliviano Bolifia + boliviano Bolifia + boliviano Bolifia + BOB + Bs + + + Boliviano Bolifia (1863–1963) + boliviano Bolifia (1863–1963) + boliviano Bolifia (1863–1963) + boliviano Bolifia (1863–1963) + boliviano Bolifia (1863–1963) + boliviano Bolifia (1863–1963) + boliviano Bolifia (1863–1963) + BOL + + + Peso Bolifia + peso Bolifia + peso Bolifia + peso Bolifia + peso Bolifia + peso Bolifia + peso Bolifia + BOP + + + Mvdol Bolifia + mvdol Bolifia + mvdol Bolifia + mvdol Bolifia + mvdol Bolifia + mvdol Bolifia + mvdol Bolifia + BOV + + + Cruzeiro Newydd Brasil (1967–1986) + cruzeiro newydd Brasil (1967–1986) + cruzeiro newydd Brasil (1967–1986) + cruzeiro newydd Brasil (1967–1986) + cruzeiro newydd Brasil (1967–1986) + cruzeiro newydd Brasil (1967–1986) + cruzeiro newydd Brasil (1967–1986) + BRB + + + Cruzado Brasil (1986–1989) + cruzado Brasil (1986–1989) + cruzado Brasil (1986–1989) + cruzado Brasil (1986–1989) + cruzado Brasil (1986–1989) + cruzado Brasil (1986–1989) + cruzado Brasil (1986–1989) + BRC + + + Cruzeiro Brasil (1990–1993) + cruzeiro Brasil (1990–1993) + cruzeiro Brasil (1990–1993) + cruzeiro Brasil (1990–1993) + cruzeiro Brasil (1990–1993) + cruzeiro Brasil (1990–1993) + cruzeiro Brasil (1990–1993) + BRE + + + Real Brasil + real Brasil + real Brasil + real Brasil + real Brasil + real Brasil + real Brasil + R$ + R$ + + + Cruzado Newydd Brasil (1989–1990) + cruzado newydd Brasil (1989–1990) + cruzado newydd Brasil (1989–1990) + cruzado newydd Brasil (1989–1990) + cruzado newydd Brasil (1989–1990) + cruzado newydd Brasil (1989–1990) + cruzado newydd Brasil (1989–1990) + BRN + + + Cruzeiro Brasil (1993–1994) + cruzeiro Brasil (1993–1994) + cruzeiro Brasil (1993–1994) + cruzeiro Brasil (1993–1994) + cruzeiro Brasil (1993–1994) + cruzeiro Brasil (1993–1994) + cruzeiro Brasil (1993–1994) + BRR + + + Cruzeiro Brasil (1942–1967) + cruzeiro Brasil (1942–1967) + cruzeiro Brasil (1942–1967) + cruzeiro Brasil (1942–1967) + cruzeiro Brasil (1942–1967) + cruzeiro Brasil (1942–1967) + cruzeiro Brasil (1942–1967) + BRZ + + + Doler y Bahamas + doler y Bahamas + doler y Bahamas + doler y Bahamas + doler y Bahamas + doler y Bahamas + doler y Bahamas + BSD + $ + + + Ngultrum Bhutan + Ngultrum Bhutan + Ngultrum Bhutan + Ngultrum Bhutan + Ngultrum Bhutan + Ngultrum Bhutan + Ngultrum Bhutan + BTN + + + Kyat Byrma + kyat Byrma + kyat Byrma + kyat Byrma + kyat Byrma + kyat Byrma + kyat Byrma + BUK + + + Pula Botswana + pula Botswana + pula Botswana + pula Botswana + pula Botswana + pula Botswana + pula Botswana + BWP + BWP + + + Rwbl Belarws + rwbl Belarws + rwbl Belarws + rwbl Belarws + rwbl Belarws + rwbl Belarws + rwbl Belarws + BYR + р. + + + Doler Belize + doler Belize + ddoler Belize + ddoler Belize + doler Belize + doler Belize + doler Belize + BZD + $ + + + Doler Canada + doler Canada + ddoler Canada + ddoler Canada + doler Canada + doler Canada + doler Canada + CA$ + $ + + + Ffranc Congo + ffranc Congo + ffranc Congo + ffranc Congo + ffranc Congo + ffranc Congo + ffranc Congo + CDF + + + CHE + + + Ffranc y Swistir + ffranc y Swistir + ffranc y Swistir + ffranc y Swistir + ffranc y Swistir + ffranc y Swistir + ffranc y Swistir + CHF + + + CHW + + + Escudo Chile + escudo Chile + escudo Chile + escudo Chile + escudo Chile + escudo Chile + escudo Chile + CLE + + + Uned Cyfrifo Chile (UF) + uned cyfrifo Chile (UF) + uned cyfrifo Chile (UF) + uned cyfrifo Chile (UF) + uned cyfrifo Chile (UF) + uned cyfrifo Chile (UF) + uned cyfrifo Chile (UF) + CLF + + + Peso Chile + peso Chile + peso Chile + peso Chile + peso Chile + peso Chile + peso Chile + CLP + $ + + + Doler Banc Pobl Tsieina + doler Banc Pobl Tsieina + ddoler Banc Pobl Tsieina + ddoler Banc Pobl Tsieina + doler Banc Pobl Tsieina + doler Banc Pobl Tsieina + doler Banc Pobl Tsieina + + + Yuan Tsieina + yuan Tsieina + yuan Tsieina + yuan Tsieina + yuan Tsieina + yuan Tsieina + yuan Tsieina + CN¥ + ¥ + + + Peso Colombia + peso Colombia + peso Colombia + peso Colombia + peso Colombia + peso Colombia + peso Colombia + COP + $ + + + COU + + + Colón Costa Rica + colón Costa Rica + colón Costa Rica + colón Costa Rica + colón Costa Rica + colón Costa Rica + colón Costa Rica + CRC + + + + CSD + + + Peso Trosadwy Ciwba + peso trosadwy Ciwba + peso trosadwy Ciwba + peso trosadwy Ciwba + peso trosadwy Ciwba + peso trosadwy Ciwba + peso trosadwy Ciwba + CUC + $ + + + Peso Ciwba + peso Ciwba + peso Ciwba + peso Ciwba + peso Ciwba + peso Ciwba + peso Ciwba + CUP + $ + + + Esgwdo Cabo Verde + esgwdo Cabo Verde + esgwdo Cabo Verde + esgwdo Cabo Verde + esgwdo Cabo Verde + esgwdo Cabo Verde + esgwdo Cabo Verde + CVE + + + Punt Cyprus + punt Cyprus + bunt Cyprus + bunt Cyprus + punt Cyprus + punt Cyprus + punt Cyprus + CYP + + + Koruna Tsiec + koruna’r Weriniaeth Tsiec + koruna’r Weriniaeth Tsiec + koruna’r Weriniaeth Tsiec + koruna’r Weriniaeth Tsiec + koruna’r Weriniaeth Tsiec + koruna’r Weriniaeth Tsiec + CZK + + + + DDM + + + DEM + + + Ffranc Djibouti + ffranc Djibouti + ffranc Djibouti + ffranc Djibouti + ffranc Djibouti + ffranc Djibouti + ffranc Djibouti + DJF + + + Krone Denmarc + krone Denmarc + krone Denmarc + krone Denmarc + krone Denmarc + krone Denmarc + krone Denmarc + DKK + kr + + + Peso Gweriniaeth Dominica + peso Gweriniaeth Dominica + peso Gweriniaeth Dominica + peso Gweriniaeth Dominica + peso Gweriniaeth Dominica + peso Gweriniaeth Dominica + peso Gweriniaeth Dominica + DOP + $ + + + Dinar Algeria + dinar Algeria + dinar Algeria + dinar Algeria + dinar Algeria + dinar Algeria + dinar Algeria + DZD + + + Sucre Ecuador + sucre Ecuador + sucre Ecuador + sucre Ecuador + sucre Ecuador + sucre Ecuador + sucre Ecuador + ECS + + + Punt Yr Aifft + punt yr Aifft + bunt yr Aifft + bunt yr Aifft + punt yr Aifft + phunt yr Aifft + punt yr Aifft + EGP + + + + Nakfa Eritrea + nakfa Eritrea + nakfa Eritrea + nakfa Eritrea + nakfa Eritrea + nakfa Eritrea + nakfa Eritrea + ERN + + + ESP + + + Birr Ethiopia + birr Ethiopia + birr Ethiopia + birr Ethiopia + birr Ethiopia + birr Ethiopia + birr Ethiopia + ETB + + + Ewro + Ewro + Ewro + Ewro + Ewro + Ewro + Ewro + + + + + FIM + + + Doler Ffiji + Doler Ffiji + Doler Ffiji + Doler Ffiji + Doler Ffiji + Doler Ffiji + Doler Ffiji + FJD + $ + + + Punt Ynysoedd Falkland/Malvinas + punt Ynysoedd Falkland/Malvinas + bunt Ynysoedd Falkland/Malvinas + bunt Ynysoedd Falkland/Malvinas + punt Ynysoedd Falkland/Malvinas + phunt Ynysoedd Falkland/Malvinas + punt Ynysoedd Falkland/Malvinas + FKP + £ + + + FRF + + + Punt Prydain + punt Prydain + bunt Prydain + bunt Prydain + punt Prydain + phunt Prydain + punt Prydain + £ + £ + + + Kupon Larit Georgia + kupon larit Georgia + kupon larit Georgia + kupon larit Georgia + kupon larit Georgia + kupon larit Georgia + kupon larit Georgia + GEK + + + Lari Georgia + lari Georgia + lari Georgia + lari Georgia + lari Georgia + lari Georgia + lari Georgia + GEL + + + + Cedi Ghana (1979–2007) + cedi Ghana (1979–2007) + cedi Ghana (1979–2007) + cedi Ghana (1979–2007) + cedi Ghana (1979–2007) + cedi Ghana (1979–2007) + cedi Ghana (1979–2007) + GHC + + + Cedi Ghana + cedi Ghana + cedi Ghana + cedi Ghana + cedi Ghana + cedi Ghana + cedi Ghana + GHS + + + Punt Gibraltar + punt Gibraltar + bunt Gibraltar + bunt Gibraltar + punt Gibraltar + phunt Gibraltar + punt Gibraltar + GIP + £ + + + Dalasi Gambia + dalasi Gambia + dalasi Gambia + dalasi Gambia + dalasi Gambia + dalasi Gambia + dalasi Gambia + GMD + + + Ffranc Guinée + ffranc Guinée + ffranc Guinée + ffranc Guinée + ffranc Guinée + ffranc Guinée + ffranc Guinée + GNF + FG + + + Syli Guinée + syli Guinée + syli Guinée + syli Guinée + syli Guinée + syli Guinée + syli Guinée + GNS + + + Ekwele Guinea Gyhydeddol + Ekwele Guinea Gyhydeddol + Ekwele Guinea Gyhydeddol + Ekwele Guinea Gyhydeddol + Ekwele Guinea Gyhydeddol + Ekwele Guinea Gyhydeddol + Ekwele Guinea Gyhydeddol + GQE + + + GRD + + + Quetzal Guatemala + quetzal Guatemala + quetzal Guatemala + quetzal Guatemala + quetzal Guatemala + quetzal Guatemala + quetzal Guatemala + GTQ + Q + + + GWE + + + Peso Guiné-Bissau + peso Guiné-Bissau + peso Guiné-Bissau + peso Guiné-Bissau + peso Guiné-Bissau + peso Guiné-Bissau + peso Guiné-Bissau + GWP + + + Doler Guyana + doler Guyana + ddoler Guyana + ddoler Guyana + doler Guyana + doler Guyana + doler Guyana + GYD + $ + + + Doler Hong Kong + doler Hong Kong + ddoler Hong Kong + ddoler Hong Kong + doler Hong Kong + doler Hong Kong + doler Hong Kong + HK$ + HK$ + + + Lempira Honduras + lempira Honduras + lempira Honduras + lempira Honduras + lempira Honduras + lempira Honduras + lempira Honduras + HNL + L + + + HRD + + + Kuna Croatia + kuna Croatia + kuna Croatia + kuna Croatia + kuna Croatia + kuna Croatia + kuna Croatia + HRK + kn + + + Gourde Haiti + gourde Haiti + gourde Haiti + gourde Haiti + gourde Haiti + gourde Haiti + gourde Haiti + HTG + + + Fforint Hwngari + fforint Hwngari + fforint Hwngari + fforint Hwngari + fforint Hwngari + fforint Hwngari + fforint Hwngari + HUF + Ft + + + Rupiah Indonesia + Rupiah Indonesia + Rupiah Indonesia + Rupiah Indonesia + Rupiah Indonesia + Rupiah Indonesia + Rupiah Indonesia + IDR + Rp + + + Punt Iwerddon + punt Iwerddon + bunt Iwerddon + bunt Iwerddon + punt Iwerddon + phunt Iwerddon + punt Iwerddon + IEP + + + Punt Israel + punt Israel + bunt Israel + bunt Israel + punt Israel + phunt Israel + punt Israel + ILP + + + Shegel Israel (1980–1985) + shegel Israel (1980–1985) + shegel Israel (1980–1985) + shegel Israel (1980–1985) + shegel Israel (1980–1985) + shegel Israel (1980–1985) + shegel Israel (1980–1985) + + + Shegel Newydd Israel + shegel newydd Israel + shegel newydd Israel + shegel newydd Israel + shegel newydd Israel + shegel newydd Israel + shegel newydd Israel + + + + + Rwpî India + Rwpî India + Rwpî India + Rwpî India + Rwpî India + Rwpî India + Rwpî India + + + + + Dinar Irac + dinar Irac + dinar Irac + dinar Irac + dinar Irac + dinar Irac + dinar Irac + IQD + + + Rial Iran + Rial Iran + Rial Iran + Rial Iran + Rial Iran + Rial Iran + Rial Iran + IRR + + + Króna Gwlad yr Iâ + króna Gwlad yr Iâ + króna Gwlad yr Iâ + króna Gwlad yr Iâ + króna Gwlad yr Iâ + króna Gwlad yr Iâ + króna Gwlad yr Iâ + ISK + kr + + + ITL + + + Doler Jamaica + doler Jamaica + ddoler Jamaica + ddoler Jamaica + doler Jamaica + doler Jamaica + doler Jamaica + JMD + $ + + + Dinar Gwlad yr Iorddonen + dinar Gwlad yr Iorddonen + dinar Gwlad yr Iorddonen + dinar Gwlad yr Iorddonen + dinar Gwlad yr Iorddonen + dinar Gwlad yr Iorddonen + dinar Gwlad yr Iorddonen + JOD + + + Yen Japan + yen Japan + yen Japan + yen Japan + yen Japan + yen Japan + yen Japan + JP¥ + ¥ + + + Swllt Kenya + swllt Kenya + swllt Kenya + swllt Kenya + swllt Kenya + swllt Kenya + swllt Kenya + KES + + + Som Kyrgyzstan + Som Kyrgyzstan + Som Kyrgyzstan + Som Kyrgyzstan + Som Kyrgyzstan + Som Kyrgyzstan + Som Kyrgyzstan + KGS + + + Riel Cambodia + Riel Cambodia + Riel Cambodia + Riel Cambodia + Riel Cambodia + Riel Cambodia + Riel Cambodia + KHR + + + + Ffranc Comoros + ffranc Comoros + ffranc Comoros + ffranc Comoros + ffranc Comoros + ffranc Comoros + ffranc Comoros + KMF + CF + + + Won Gogledd Corea + won Gogledd Corea + won Gogledd Corea + won Gogledd Corea + won Gogledd Corea + won Gogledd Corea + won Gogledd Corea + KPW + + + + Hwan De Corea (1953–1962) + hwan De Corea (1953–1962) + hwan De Corea (1953–1962) + hwan De Corea (1953–1962) + hwan De Corea (1953–1962) + hwan De Corea (1953–1962) + hwan De Corea (1953–1962) + KRH + + + Won De Corea (1945–1953) + won De Corea (1945–1953) + won De Corea (1945–1953) + won De Corea (1945–1953) + won De Corea (1945–1953) + won De Corea (1945–1953) + won De Corea (1945–1953) + KRO + + + Won De Corea + won De Corea + won De Corea + won De Corea + won De Corea + won De Corea + won De Corea + KRW + + + + Dinar Kuwait + dinar Kuwait + dinar Kuwait + dinar Kuwait + dinar Kuwait + dinar Kuwait + dinar Kuwait + KWD + + + Doler Ynysoedd Cayman + doler Ynysoedd Cayman + ddoler Ynysoedd Cayman + ddoler Ynysoedd Cayman + doler Ynysoedd Cayman + doler Ynysoedd Cayman + doler Ynysoedd Cayman + KYD + $ + + + Tenge Kazakstan + Tenge Kazakstan + Tenge Kazakstan + Tenge Kazakstan + Tenge Kazakstan + Tenge Kazakstan + Tenge Kazakstan + KZT + + + + Kip Laos + Kip Laos + Kip Laos + Kip Laos + Kip Laos + Kip Laos + Kip Laos + LAK + + + + Punt Libanus + punt Libanus + bunt Libanus + bunt Libanus + punt Libanus + phunt Libanus + punt Libanus + LBP + + + + Rwpî Sri Lanka + Rwpî Sri Lanka + Rwpî Sri Lanka + Rwpî Sri Lanka + Rwpî Sri Lanka + Rwpî Sri Lanka + Rwpî Sri Lanka + LKR + Rs + + + Doler Liberia + doler Liberia + ddoler Liberia + ddoler Liberia + doler Liberia + doler Liberia + doler Liberia + LRD + $ + + + Loti Lesotho + loti Lesotho + loti Lesotho + loti Lesotho + loti Lesotho + loti Lesotho + loti Lesotho + LSL + + + Litas Lithwania + Litas Lithwania + Litas Lithwania + Litas Lithwania + Litas Lithwania + Litas Lithwania + Litas Lithwania + LTL + + + Talonas Lithwania + talonas Lithwania + talonas Lithwania + talonas Lithwania + talonas Lithwania + talonas Lithwania + talonas Lithwania + LTT + + + LUC + + + LUF + + + LUL + + + Lats Latfia + Lats Latfia + Lats Latfia + Lats Latfia + Lats Latfia + Lats Latfia + Lats Latfia + LVL + + + LVR + + + Dinar Libya + dinar Libya + dinar Libya + dinar Libya + dinar Libya + dinar Libya + dinar Libya + LYD + + + Dirham Moroco + dirham Moroco + dirham Moroco + dirham Moroco + dirham Moroco + dirham Moroco + dirham Moroco + MAD + + + Ffranc Moroco + ffranc Moroco + ffranc Moroco + ffranc Moroco + ffranc Moroco + ffranc Moroco + ffranc Moroco + MAF + + + Ffranc Monaco + ffranc Monaco + ffranc Monaco + ffranc Monaco + ffranc Monaco + ffranc Monaco + ffranc Monaco + MCF + + + Leu Moldofa + leu Moldofa + leu Moldofa + leu Moldofa + leu Moldofa + leu Moldofa + leu Moldofa + MDL + + + Ariary Madagascar + ariary Madagascar + ariary Madagascar + ariary Madagascar + ariary Madagascar + ariary Madagascar + ariary Madagascar + MGA + Ar + + + Ffranc Madagascar + ffranc Madagascar + ffranc Madagascar + ffranc Madagascar + ffranc Madagascar + ffranc Madagascar + ffranc Madagascar + MGF + + + Denar Macedonia + denar Macedonia + denar Macedonia + denar Macedonia + denar Macedonia + denar Macedonia + denar Macedonia + MKD + + + MKN + + + Ffranc Mali + ffranc Mali + ffranc Mali + ffranc Mali + ffranc Mali + ffranc Mali + ffranc Mali + MLF + + + Kyat Myanmar + Kyat Myanmar + Kyat Myanmar + Kyat Myanmar + Kyat Myanmar + Kyat Myanmar + Kyat Myanmar + MMK + K + + + Tugrik Mongolia + tugrik Mongolia + tugrik Mongolia + tugrik Mongolia + tugrik Mongolia + tugrik Mongolia + tugrik Mongolia + MNT + + + + Pataca Macau + pataca Macau + pataca Macau + pataca Macau + pataca Macau + pataca Macau + pataca Macau + MOP + + + Ouguiya Mauritania + ouguiya Mauritania + ouguiya Mauritania + ouguiya Mauritania + ouguiya Mauritania + ouguiya Mauritania + ouguiya Mauritania + MRO + + + MTL + + + MTP + + + Rwpî Mauritius + rwpî Mauritius + rwpî Mauritius + rwpî Mauritius + rwpî Mauritius + rwpî Mauritius + rwpî Mauritius + MUR + Rs + + + Rwpî’r Maldives (1947–1981) + rwpî’r Maldives (1947–1981) + rwpî’r Maldives (1947–1981) + rwpî’r Maldives (1947–1981) + rwpî’r Maldives (1947–1981) + rwpî’r Maldives (1947–1981) + rwpî’r Maldives (1947–1981) + + + Rufiyaa’r Maldives + Rufiyaa’r Maldives + Rufiyaa’r Maldives + Rufiyaa’r Maldives + Rufiyaa’r Maldives + Rufiyaa’r Maldives + Rufiyaa’r Maldives + MVR + + + Kwacha Malawi + kwacha Malawi + kwacha Malawi + kwacha Malawi + kwacha Malawi + kwacha Malawi + kwacha Malawi + MWK + + + Peso Mecsico + peso Mecsico + peso Mecsico + peso Mecsico + peso Mecsico + peso Mecsico + peso Mecsico + MX$ + $ + + + Peso Arian México (1861–1992) + peso arian México (1861–1992) + peso arian México (1861–1992) + peso arian México (1861–1992) + peso arian México (1861–1992) + peso arian México (1861–1992) + peso arian México (1861–1992) + MXP + + + Uned Fuddsoddi México + uned fuddsoddi México + uned fuddsoddi México + uned fuddsoddi México + uned fuddsoddi México + uned fuddsoddi México + uned fuddsoddi México + MXV + + + Ringgit Malaysia + Ringgit Malaysia + Ringgit Malaysia + Ringgit Malaysia + Ringgit Malaysia + Ringgit Malaysia + Ringgit Malaysia + MYR + RM + + + Escudo Mozambique + escudo Mozambique + escudo Mozambique + escudo Mozambique + escudo Mozambique + escudo Mozambique + escudo Mozambique + MZE + + + Metical Mozambique (1980–2006) + metical Mozambique (1980–2006) + metical Mozambique (1980–2006) + metical Mozambique (1980–2006) + metical Mozambique (1980–2006) + metical Mozambique (1980–2006) + metical Mozambique (1980–2006) + MZM + + + Metical Mozambique + metical Mozambique + metical Mozambique + metical Mozambique + metical Mozambique + metical Mozambique + metical Mozambique + MZN + + + Doler Namibia + doler Namibia + ddoler Namibia + ddoler Namibia + doler Namibia + doler Namibia + doler Namibia + NAD + $ + + + Naira Nigeria + naira Nigeria + naira Nigeria + naira Nigeria + naira Nigeria + naira Nigeria + naira Nigeria + NGN + + + + Córdoba Nicaragua (1988–1991) + córdoba Nicaragua (1988–1991) + córdoba Nicaragua (1988–1991) + córdoba Nicaragua (1988–1991) + córdoba Nicaragua (1988–1991) + córdoba Nicaragua (1988–1991) + córdoba Nicaragua (1988–1991) + NIC + + + Cordoba Nicaragwa + Cordoba Nicaragwa + Cordoba Nicaragwa + Cordoba Nicaragwa + Cordoba Nicaragwa + Cordoba Nicaragwa + Cordoba Nicaragwa + NIO + C$ + + + Guilder yr Iseldiroedd + guilder yr Iseldiroedd + guilder yr Iseldiroedd + guilder yr Iseldiroedd + guilder yr Iseldiroedd + guilder yr Iseldiroedd + guilder yr Iseldiroedd + NLG + + + Krone Norwy + krone Norwy + krone Norwy + krone Norwy + krone Norwy + krone Norwy + krone Norwy + NOK + kr + + + Rwpî Nepal + Rwpî Nepal + Rwpî Nepal + Rwpî Nepal + Rwpî Nepal + Rwpî Nepal + Rwpî Nepal + NPR + Rs + + + Doler Seland Newydd + Doler Seland Newydd + Doler Seland Newydd + Doler Seland Newydd + Doler Seland Newydd + Doler Seland Newydd + Doler Seland Newydd + NZ$ + $ + + + Rial Oman + rial Oman + rial Oman + rial Oman + rial Oman + rial Oman + rial Oman + OMR + + + Balboa Panama + balboa Panama + balboa Panama + balboa Panama + balboa Panama + balboa Panama + balboa Panama + PAB + + + Inti Periw + inti Periw + inti Periw + inti Periw + inti Periw + inti Periw + inti Periw + PEI + + + Nuevo Sol Periw + nuevo sol Periw + nuevo sol Periw + nuevo sol Periw + nuevo sol Periw + nuevo sol Periw + nuevo sol Periw + PEN + + + Sol Periw (1863–1965) + sol Periw (1863–1965) + sol Periw (1863–1965) + sol Periw (1863–1965) + sol Periw (1863–1965) + sol Periw (1863–1965) + sol Periw (1863–1965) + PES + + + Kina Papua Guinea Newydd + Kina Papua Guinea Newydd + Kina Papua Guinea Newydd + Kina Papua Guinea Newydd + Kina Papua Guinea Newydd + Kina Papua Guinea Newydd + Kina Papua Guinea Newydd + PGK + + + Peso’r Philipinau + Peso Pilipinas + Peso Pilipinas + Peso Pilipinas + Peso Pilipinas + Peso Pilipinas + Peso Pilipinas + PHP + + + + Rwpî Pacistan + Rwpî Pacistan + Rwpî Pacistan + Rwpî Pacistan + Rwpî Pacistan + Rwpî Pacistan + Rwpî Pacistan + PKR + Rs + + + Zloty Gwlad Pwyl + zloty Gwlad Pwyl + zloty Gwlad Pwyl + zloty Gwlad Pwyl + zloty Gwlad Pwyl + zloty Gwlad Pwyl + zloty Gwlad Pwyl + PLN + + + + PTE + + + Guarani Paraguay + guarani Paraguay + guarani Paraguay + guarani Paraguay + guarani Paraguay + guarani Paraguay + guarani Paraguay + PYG + + + + Rial Qatar + rial Qatar + rial Qatar + rial Qatar + rial Qatar + rial Qatar + rial Qatar + QAR + + + Doler Rhodesia + doler Rhodesia + ddoler Rhodesia + ddoler Rhodesia + doler Rhodesia + doler Rhodesia + doler Rhodesia + RHD + + + Leu Rwmania + leu Rwmania + leu Rwmania + leu Rwmania + leu Rwmania + leu Rwmania + leu Rwmania + RON + + + Dinar Serbia + dinar Serbia + dinar Serbia + dinar Serbia + dinar Serbia + dinar Serbia + dinar Serbia + RSD + + + Rwbl Rwsia + rwbl Rwsia + rwbl Rwsia + rwbl Rwsia + rwbl Rwsia + rwbl Rwsia + rwbl Rwsia + RUB + + + + Ffranc Rwanda + ffranc Rwanda + ffranc Rwanda + ffranc Rwanda + ffranc Rwanda + ffranc Rwanda + ffranc Rwanda + RWF + RF + + + Riyal Saudi Arabia + riyal Saudi Arabia + Riyal Saudi Arabia + riyal Saudi Arabia + riyal Saudi Arabia + riyal Saudi Arabia + riyal Saudi Arabia + SAR + + + Doler Ynysoedd Solomon + Doler Ynysoedd Solomon + Doler Ynysoedd Solomon + Doler Ynysoedd Solomon + Doler Ynysoedd Solomon + Doler Ynysoedd Solomon + Doler Ynysoedd Solomon + SBD + $ + + + Rwpî Seychelles + rwpî Seychelles + rwpî Seychelles + rwpî Seychelles + rwpî Seychelles + rwpî Seychelles + rwpî Seychelles + SCR + + + Dinar Sudan (1992–2007) + dinar Sudan (1992–2007) + dinar Sudan (1992–2007) + dinar Sudan (1992–2007) + dinar Sudan (1992–2007) + dinar Sudan (1992–2007) + dinar Sudan (1992–2007) + SDD + + + Punt Sudan + punt Sudan + bunt Sudan + bunt Sudan + punt Sudan + phunt Sudan + punt Sudan + SDG + + + Punt Sudan (1957–1998) + punt Sudan (1957–1998) + bunt Sudan (1957–1998) + bunt Sudan (1957–1998) + punt Sudan (1957–1998) + phunt Sudan (1957–1998) + punt Sudan (1957–1998) + SDP + + + Krona Sweden + krona Sweden + krona Sweden + krona Sweden + krona Sweden + krona Sweden + krona Sweden + SEK + kr + + + Doler Singapore + Doler Singapore + Doler Singapore + Doler Singapore + Doler Singapore + Doler Singapore + Doler Singapore + SGD + $ + + + Punt Saint Helena + punt St. Helena + bunt St. Helena + bunt St. Helena + punt St. Helena + phunt St. Helena + punt St. Helena + SHP + £ + + + SIT + + + Leone Sierra Leone + leone Sierra Leone + leone Sierra Leone + leone Sierra Leone + leone Sierra Leone + leone Sierra Leone + leone Sierra Leone + SLL + + + Swllt Somalia + swllt Somalia + swllt Somalia + swllt Somalia + swllt Somalia + swllt Somalia + swllt Somalia + SOS + + + Doler Surinam + doler Surinam + ddoler Surinam + ddoler Surinam + doler Surinam + doler Surinam + doler Surinam + SRD + $ + + + Guilder Surinam + guilder Surinam + guilder Surinam + guilder Surinam + guilder Surinam + guilder Surinam + guilder Surinam + SRG + + + Punt De Sudan + punt De Sudan + bunt De Sudan + bunt De Sudan + punt De Sudan + phunt De Sudan + punt De Sudan + SSP + £ + + + Dobra São Tomé a Príncipe + Dobra São Tomé a Príncipe + Dobra São Tomé a Príncipe + Dobra São Tomé a Príncipe + Dobra São Tomé a Príncipe + Dobra São Tomé a Príncipe + Dobra São Tomé a Príncipe + STD + Db + + + Colón El Salvador + colón El Salvador + colón El Salvador + colón El Salvador + colón El Salvador + colón El Salvador + colón El Salvador + SVC + + + Punt Syria + Punt Syria + Punt Syria + Punt Syria + Punt Syria + Punt Syria + Punt Syria + SYP + £ + + + Lilangeni Gwlad Swazi + lilangeni Gwlad Swazi + lilangeni Gwlad Swazi + lilangeni Gwlad Swazi + lilangeni Gwlad Swazi + lilangeni Gwlad Swazi + lilangeni Gwlad Swazi + SZL + + + Baht Gwlad Thai + Baht Gwlad Thai + Baht Gwlad Thai + Baht Gwlad Thai + Baht Gwlad Thai + Baht Gwlad Thai + Baht Gwlad Thai + ฿ + ฿ + + + Rwbl Tajikistan + rwbl Tajikistan + rwbl Tajikistan + rwbl Tajikistan + rwbl Tajikistan + rwbl Tajikistan + rwbl Tajikistan + TJR + + + Somoni Tajikistan + Somoni Tajikistan + Somoni Tajikistan + Somoni Tajikistan + Somoni Tajikistan + Somoni Tajikistan + Somoni Tajikistan + TJS + + + Manat Turkmenistan (1993–2009) + manat Turkmenistan (1993–2009) + manat Turkmenistan (1993–2009) + manat Turkmenistan (1993–2009) + manat Turkmenistan (1993–2009) + manat Turkmenistan (1993–2009) + manat Turkmenistan (1993–2009) + TMM + + + Manat Turkmenistan + Manat Turkmenistan + Manat Turkmenistan + Manat Turkmenistan + Manat Turkmenistan + Manat Turkmenistan + Manat Turkmenistan + TMT + + + Dinar Tunisia + dinar Tunisia + dinar Tunisia + dinar Tunisia + dinar Tunisia + dinar Tunisia + dinar Tunisia + TND + + + Paʻanga Tonga + Paʻanga Tonga + Paʻanga Tonga + Paʻanga Tonga + Paʻanga Tonga + Paʻanga Tonga + Paʻanga Tonga + TOP + T$ + + + Escudo Timor + escudo Timor + escudo Timor + escudo Timor + escudo Timor + escudo Timor + escudo Timor + TPE + + + Lira Twrci (1922–2005) + lira Twrci (1922–2005) + lira Twrci (1922–2005) + lira Twrci (1922–2005) + lira Twrci (1922–2005) + lira Twrci (1922–2005) + lira Twrci (1922–2005) + TRL + + + Lira Twrci + Lira Twrci + Lira Twrci + Lira Twrci + Lira Twrci + Lira Twrci + Lira Twrci + TRY + + TL + + + Doler Trinidad a Tobago + doler Trinidad a Tobago + ddoler Trinidad a Tobago + ddoler Trinidad a Tobago + doler Trinidad a Tobago + doler Trinidad a Tobago + doler Trinidad a Tobago + TTD + $ + + + Doler Newydd Taiwan + doler newydd Taiwan + ddoler newydd Taiwan + ddoler newydd Taiwan + doler newydd Taiwan + doler newydd Taiwan + doler newydd Taiwan + NT$ + NT$ + + + Swllt Tanzania + swllt Tanzania + swllt Tanzania + swllt Tanzania + swllt Tanzania + swllt Tanzania + swllt Tanzania + TZS + + + Hryvnia Wcráin + hryvnia Wcráin + hryvnia Wcráin + hryvnia Wcráin + hryvnia Wcráin + hryvnia Wcráin + hryvnia Wcráin + UAH + + + + Swllt Uganda (1966–1987) + swllt Uganda (1966–1987) + swllt Uganda (1966–1987) + swllt Uganda (1966–1987) + swllt Uganda (1966–1987) + swllt Uganda (1966–1987) + swllt Uganda (1966–1987) + UGS + + + Swllt Uganda + swllt Uganda + swllt Uganda + swllt Uganda + swllt Uganda + swllt Uganda + swllt Uganda + UGX + + + Doler UDA + doler UDA + ddoler UDA + ddoler UDA + doler UDA + doler UDA + doler UDA + US$ + $ + + + Doler UDA (y diwrnod nesaf) + doler UDA (y diwrnod nesaf) + doler UDA (y diwrnod nesaf) + doler UDA (y diwrnod nesaf) + doler UDA (y diwrnod nesaf) + doler UDA (y diwrnod nesaf) + doler UDA (y diwrnod nesaf) + USN + + + Doler UDA (yr un diwrnod) + doler UDA (yr un diwrnod) + doler UDA (yr un diwrnod) + doler UDA (yr un diwrnod) + doler UDA (yr un diwrnod) + doler UDA (yr un diwrnod) + doler UDA (yr un diwrnod) + USS + + + UYI + + + Peso Uruguay (1975–1993) + peso Uruguay (1975–1993) + peso Uruguay (1975–1993) + peso Uruguay (1975–1993) + peso Uruguay (1975–1993) + peso Uruguay (1975–1993) + peso Uruguay (1975–1993) + UYP + + + Peso Uruguay + peso Uruguay + peso Uruguay + peso Uruguay + peso Uruguay + peso Uruguay + peso Uruguay + UYU + $ + + + Som Uzbekistan + Som Uzbekistan + Som Uzbekistan + Som Uzbekistan + Som Uzbekistan + Som Uzbekistan + Som Uzbekistan + UZS + + + Bolívar Venezuela (1871–2008) + bolívar Venezuela (1871–2008) + bolívar Venezuela (1871–2008) + bolívar Venezuela (1871–2008) + bolívar Venezuela (1871–2008) + bolívar Venezuela (1871–2008) + bolívar Venezuela (1871–2008) + VEB + + + Bolívar Venezuela + Bolívar Venezuela + Bolívar Venezuela + Bolívar Venezuela + Bolívar Venezuela + bolivar Venezuela + bolivar Venezuela + VEF + Bs + + + Dong Fietnam + Dong Fietnam + Dong Fietnam + Dong Fietnam + Dong Fietnam + Dong Fietnam + Dong Fietnam + + + + + Dong Fietnam (1978–1985) + dong Fietnam (1978–1985) + dong Fietnam (1978–1985) + dong Fietnam (1978–1985) + dong Fietnam (1978–1985) + dong Fietnam (1978–1985) + dong Fietnam (1978–1985) + VNN + + + Vatu Vanuatu + Vatu Vanuatu + Vatu Vanuatu + Vatu Vanuatu + Vatu Vanuatu + Vatu Vanuatu + Vatu Vanuatu + VUV + + + Tala Samoa + Tala Samoa + Tala Samoa + Tala Samoa + Tala Samoa + Tala Samoa + Tala Samoa + WST + + + Ffranc CFA Canol Affrica + ffranc CFA Canol Affrica + ffranc CFA Canol Affrica + ffranc CFA Canol Affrica + ffranc CFA Canol Affrica + ffranc CFA Canol Affrica + ffranc CFA Canol Affrica + FCFA + + + Doler Dwyrain y Caribî + doler Dwyrain y Caribî + ddoler Dwyrain y Caribî + ddoler Dwyrain y Caribî + doler Dwyrain y Caribî + doler Dwyrain y Caribî + doler Dwyrain y Caribî + EC$ + $ + + + XEU + + + Ffranc CFA Gorllewin Affrica + ffranc CFA Gorllewin Affrica + ffranc CFA Gorllewin Affrica + ffranc CFA Gorllewin Affrica + ffranc CFA Gorllewin Affrica + ffranc CFA Gorllewin Affrica + ffranc CFA Gorllewin Affrica + CFA + + + Ffranc CFP + Ffranc CPF + Ffranc CPF + Ffranc CPF + Ffranc CPF + Ffranc CPF + Ffranc CPF + CFPF + + + Arian Cyfred Anhysbys + (arian cyfred anhysbys) + (arian cyfred anhysbys) + (arian cyfred anhysbys) + (arian cyfred anhysbys) + (arian cyfred anhysbys) + (arian cyfred anhysbys) + XXX + + + Dinar Yemen + dinar Yemen + dinar Yemen + dinar Yemen + dinar Yemen + dinar Yemen + dinar Yemen + YDD + + + Rial Yemen + Rial Yemen + Rial Yemen + Rial Yemen + Rial Yemen + Rial Yemen + Rial Yemen + YER + + + YUD + + + YUM + + + YUN + + + YUR + + + Rand (ariannol) De Affrica + rand (ariannol) De Affrica + rand (ariannol) De Affrica + rand (ariannol) De Affrica + rand (ariannol) De Affrica + rand (ariannol) De Affrica + rand (ariannol) De Affrica + ZAL + + + Rand De Affrica + rand De Affrica + rand De Affrica + rand De Affrica + rand De Affrica + rand De Affrica + rand De Affrica + ZAR + ZAR + + + Kwacha Zambia (1968–2012) + kwacha Zambia (1968–2012) + kwacha Zambia (1968–2012) + kwacha Zambia (1968–2012) + kwacha Zambia (1968–2012) + kwacha Zambia (1968–2012) + kwacha Zambia (1968–2012) + ZMK + + + Kwacha Zambia + kwacha Zambia + kwacha Zambia + kwacha Zambia + kwacha Zambia + kwacha Zambia + kwacha Zambia + ZMW + ZMW + + + Zaire Newydd Zaire (1993–1998) + Zaire Newydd Zaire (1993–1998) + Zaire Newydd Zaire (1993–1998) + Zaire Newydd Zaire (1993–1998) + Zaire Newydd Zaire (1993–1998) + Zaire Newydd Zaire (1993–1998) + Zaire Newydd Zaire (1993–1998) + ZRN + + + Zaire Zaire (1971–1993) + Zaire Zaire (1971–1993) + Zaire Zaire (1971–1993) + Zaire Zaire (1971–1993) + Zaire Zaire (1971–1993) + Zaire Zaire (1971–1993) + Zaire Zaire (1971–1993) + ZRZ + + + Doler Zimbabwe (1980–2008) + doler Zimbabwe (1980–2008) + ddoler Zimbabwe (1980–2008) + ddoler Zimbabwe (1980–2008) + doler Zimbabwe (1980–2008) + doler Zimbabwe (1980–2008) + doler Zimbabwe (1980–2008) + ZWD + + + Doler Zimbabwe (2009) + doler Zimbabwe (2009) + ddoler Zimbabwe (2009) + ddoler Zimbabwe (2009) + doler Zimbabwe (2009) + doler Zimbabwe (2009) + doler Zimbabwe (2009) + ZWL + + + Doler Zimbabwe (2008) + doler Zimbabwe (2008) + ddoler Zimbabwe (2008) + ddoler Zimbabwe (2008) + doler Zimbabwe (2008) + doler Zimbabwe (2008) + doler Zimbabwe (2008) + ZWR + + + + {0}+ + {0}–{1} + + + + + + {0}/{1} + + + grym disgyrchedd + {0} grym disgyrchedd + {0} grym disgyrchedd + {0} rym disgyrchedd + {0} grym disgyrchedd + {0} grym disgyrchedd + {0} grym disgyrchedd + + + metrau yr eiliad sgwâr + {0} metr yr eiliad sgwâr + {0} metr yr eiliad sgwâr + {0} fetr yr eiliad sgwâr + {0} metr yr eiliad sgwâr + {0} metr yr eiliad sgwâr + {0} metr yr eiliad sgwâr + + + cylchdroeon + {0} cylchdro + {0} cylchdro + {0} gylchdro + {0} cylchdro + {0} cylchdro + {0} cylchdro + + + radianau + {0} radian + {0} radian + {0} radian + {0} radian + {0} radian + {0} radian + + + graddau + {0} gradd + {0} radd + {0} radd + {0} gradd + {0} gradd + {0} gradd + + + arcfunudau + {0} arcfunud + {0} arcfunud + {0} arcfunud + {0} arcfunud + {0} arcfunud + {0} arcfunud + + + arceiliadau + {0} arceiliad + {0} arceiliad + {0} arceiliad + {0} arceiliad + {0} arceiliad + {0} arceiliad + + + cilometrau sgwâr + {0} cilometr sgwâr + {0} cilometr sgwâr + {0} gilometr sgwâr + {0} chilometr sgwâr + {0} chilometr sgwâr + {0} cilometr sgwâr + + + hectarau + {0} hectar + {0} hectar + {0} hectar + {0} hectar + {0} hectar + {0} hectar + + + metrau sgwâr + {0} metr sgwâr + {0} metr sgwâr + {0} fetr sgwâr + {0} metr sgwâr + {0} metr sgwâr + {0} metr sgwâr + {0} y metr sgwâr + + + centimetrau sgwâr + {0} centimetr sgwâr + {0} centimetr sgwâr + {0} gentimetr sgwâr + {0} chentimetr sgwâr + {0} chentimetr sgwâr + {0} centimetr sgwâr + {0} y centimetr sgwâr + + + milltiroedd sgwâr + {0} milltir sgwâr + {0} filltir sgwâr + {0} filltir sgwâr + {0} milltir sgwâr + {0} milltir sgwâr + {0} milltir sgwâr + + + erw + {0} erw + {0} erw + {0} erw + {0} erw + {0} erw + {0} erw + + + llathenni sgwâr + {0} llath sgwâr + {0} llath sgwâr + {0} lath sgwâr + {0} llath sgwâr + {0} llath sgwâr + {0} llath sgwâr + + + troedfeddi sgwâr + {0} troedfedd sgwâr + {0} droedfedd sgwâr + {0} droedfedd sgwâr + {0} troedfedd sgwâr + {0} throedfedd sgwâr + {0} troedfedd sgwâr + + + modfeddi sgwâr + {0} modfedd sgwâr + {0} modfedd sgwâr + {0} fodfedd sgwâr + {0} modfedd sgwâr + {0} modfedd sgwâr + {0} modfedd sgwâr + {0} y modfedd sgwâr + + + karatau + {0} karat + {0} karat + {0} karat + {0} karat + {0} karat + {0} karat + + + litrau y cilometr + {0} litr y cilometr + {0} litr y cilometr + {0} litr y cilometr + {0} litr y cilometr + {0} litr y cilometr + {0} litr y cilometr + + + litrau wrth y 100 cilometr + {0} litr wrth y 100 cilometr + {0} litr wrth y 100 cilometr + {0} litr wrth y 100 cilometr + {0} litr wrth y 100 cilometr + {0} litr wrth y 100 cilometr + {0} litr wrth y 100 cilometr + + + milltiroedd y galwyn + {0} milltir y galwyn + {0} filltir y galwyn + {0} filltir y galwyn + {0} milltir y galwyn + {0} milltir y galwyn + {0} milltir y galwyn + + + terabeitiau + {0} terabeit + {0} terabeit + {0} derabeit + {0} terabeit + {0} terabeit + {0} terabeit + + + teradidau + {0} teradid + {0} teradid + {0} deradid + {0} teradid + {0} teradid + {0} teradid + + + gigabeitiau + {0} gigabeit + {0} gigabeit + {0} gigabeit + {0} gigabeit + {0} gigabeit + {0} gigabeit + + + gigadidau + {0} gigadid + {0} gigadid + {0} gigadid + {0} gigadid + {0} gigadid + {0} gigadid + + + megabeitiau + {0} megabeit + {0} megabeit + {0} fegabeit + {0} megabeit + {0} megabeit + {0} megabeit + + + megadidau + {0} megadid + {0} megadid + {0} fegadid + {0} megadid + {0} megadid + {0} megadid + + + cilobeitiau + {0} cilobeit + {0} cilobeit + {0} gilobeit + {0} cilobeit + {0} cilobeit + {0} cilobeit + + + cilodidau + {0} cilodid + {0} cilodid + {0} cilodid + {0} cilodid + {0} cilodid + {0} cilodid + + + beitiau + {0} beit + {0} beit + {0} feit + {0} beit + {0} beit + {0} beit + + + didau + {0} did + {0} did + {0} ddid + {0} did + {0} did + {0} did + + + canrifoedd + {0} canrif + {0} canrif + {0} ganrif + {0} canrif + {0} canrif + {0} canrif + + + blynyddoedd + {0} mlynedd + {0} flwyddyn + {0} flynedd + {0} blynedd + {0} blynedd + {0} mlynedd + {0} y flwyddyn + + + misoedd + {0} mis + {0} mis + {0} fis + {0} mis + {0} mis + {0} mis + {0} y mis + + + wythnosau + {0} wythnos + {0} wythnos + {0} wythnos + {0} wythnos + {0} wythnos + {0} wythnos + {0} yr wythnos + + + diwrnodau + {0} diwrnod + {0} diwrnod + {0} ddiwrnod + {0} diwrnod + {0} diwrnod + {0} diwrnod + {0} y diwrnod + + + oriau + {0} awr + {0} awr + {0} awr + {0} awr + {0} awr + {0} awr + {0} yr awr + + + munudau + {0} munud + {0} munud + {0} funud + {0} munud + {0} munud + {0} munud + {0} y munud + + + eiliadau + {0} eiliad + {0} eiliad + {0} eiliad + {0} eiliad + {0} eiliad + {0} eiliad + {0} yr eiliad + + + milieiliadau + {0} milieiliad + {0} milieiliad + {0} filieiliad + {0} milieiliad + {0} milieiliad + {0} milieiliad + + + microeiliadau + {0} microeiliadau + {0} microeiliadau + {0} microeiliadau + {0} microeiliadau + {0} microeiliadau + {0} microeiliadau + + + nanoeiliadau + {0} nanoeiliadau + {0} nanoeiliadau + {0} nanoeiliadau + {0} nanoeiliadau + {0} nanoeiliadau + {0} nanoeiliadau + + + amperau + {0} amper + {0} amper + {0} amper + {0} amper + {0} amper + {0} amper + + + miliamperau + {0} miliamper + {0} miliamper + {0} filiamper + {0} miliamper + {0} miliamper + {0} miliamper + + + ohmau + {0} ohm + {0} ohm + {0} ohm + {0} ohm + {0} ohm + {0} ohm + + + foltiau + {0} folt + {0} folt + {0} folt + {0} folt + {0} folt + {0} folt + + + cilocalorïau + {0} cilocalori + {0} cilocalori + {0} gilocalori + {0} chilocalori + {0} chilocalori + {0} cilocalori + + + calorïau + {0} calori + {0} calori + {0} galori + {0} chalori + {0} chalori + {0} calori + + + Calorïau + {0} Calori + {0} Calori + {0} Galori + {0} Chalori + {0} Chalori + {0} Calori + + + cilojouleau + {0} cilojoule + {0} cilojoule + {0} gilojoule + {0} chilojoule + {0} chilojoule + {0} cilojoule + + + jouleau + {0} joule + {0} joule + {0} joule + {0} joule + {0} joule + {0} joule + + + cilowat oriau + {0} cilowat awr + {0} cilowat awr + {0} gilowat awr + {0} chilowat awr + {0} chilowat awr + {0} cilowat awr + + + gigaherts + {0} gigaherts + {0} gigaherts + {0} gigaherts + {0} gigaherts + {0} gigaherts + {0} gigaherts + + + megaherts + {0} megaherts + {0} megaherts + {0} fegaherts + {0} megaherts + {0} megaherts + {0} megaherts + + + ciloherts + {0} ciloherts + {0} ciloherts + {0} ciloherts + {0} ciloherts + {0} ciloherts + {0} ciloherts + + + herts + {0} herts + {0} herts + {0} herts + {0} herts + {0} herts + {0} herts + + + cilometrau + {0} cilometr + {0} cilometr + {0} gilometr + {0} chilometr + {0} chilometr + {0} cilometr + {0} y cilometr + + + metrau + {0} metr + {0} metr + {0} fetr + {0} metr + {0} metr + {0} metr + {0} y metr + + + decimetrau + {0} decimetr + {0} decimetr + {0} decimetr + {0} decimetr + {0} decimetr + {0} decimetr + + + centimetrau + {0} centimetr + {0} centimetr + {0} gentimetr + {0} chentimetr + {0} chentimetr + {0} centimetr + {0} y centimetr + + + milimetrau + {0} milimetr + {0} milimetr + {0} filimetr + {0} milimetr + {0} milimetr + {0} milimetr + + + micrometrau + {0} micrometr + {0} micrometr + {0} ficrometr + {0} micrometr + {0} micrometr + {0} micrometr + + + nanometrau + {0} nanometr + {0} nanometr + {0} nanometr + {0} nanometr + {0} nanometr + {0} nanometr + + + picometrau + {0} picometr + {0} picometr + {0} bicometr + {0} phicometr + {0} phicometr + {0} picometr + + + milltiroedd + {0} milltir + {0} filltir + {0} filltir + {0} milltir + {0} milltir + {0} milltir + + + llathenni + {0} llath + {0} llath + {0} lath + {0} llath + {0} llath + {0} llath + + + troedfeddi + {0} troedfedd + {0} droedfedd + {0} droedfedd + {0} troedfedd + {0} throedfedd + {0} troedfedd + {0} y droedfedd + + + modfeddi + {0} modfedd + {0} fodfedd + {0} fodfedd + {0} modfedd + {0} modfedd + {0} modfedd + {0} y fodfedd + + + parsecau + {0} parsec + {0} parsec + {0} barsec + {0} pharsec + {0} pharsec + {0} parsec + + + blynyddoedd golau + {0} blwyddyn golau + {0} flwyddyn golau + {0} flwyddyn golau + {0} blwyddyn golau + {0} blwyddyn golau + {0} blwyddyn golau + + + unedau seryddol + {0} uned seryddol + {0} uned seryddol + {0} uned seryddol + {0} uned seryddol + {0} uned seryddol + {0} uned seryddol + + + ystadenni + {0} ystaden + {0} ystaden + {0} ystaden + {0} ystaden + {0} ystaden + {0} ystaden + + + gwrhydau + {0} gwryd + {0} gwryd + {0} wryd + {0} gwryd + {0} gwryd + {0} gwryd + + + milltiroedd môr + {0} milltir fôr + {0} filltir fôr + {0} filltir fôr + {0} milltir fôr + {0} milltir fôr + {0} milltir fôr + + + milltir Sgandinafia + {0} milltir Sgandinafia + {0} filltir Sgandinafia + {0} filltir Sgandinafia + {0} milltir Sgandinafia + {0} milltir Sgandinafia + {0} milltir Sgandinafia + + + lycsau + {0} lwcs + {0} lwcs + {0} lwcs + {0} lwcs + {0} lwcs + {0} lwcs + + + tunelli metrig + {0} tunnell fetrig + {0} dunnell fetrig + {0} dunnell fetrig + {0} tunnell fetrig + {0} tunnell fetrig + {0} tunnell fetrig + + + cilogramau + {0} cilogram + {0} cilogram + {0} gilogram + {0} chilogram + {0} chilogram + {0} cilogram + {0} y cilogram + + + gramau + {0} gram + {0} gram + {0} gram + {0} gram + {0} gram + {0} gram + {0} y gram + + + miligramau + {0} miligram + {0} miligram + {0} filigram + {0} miligram + {0} miligram + {0} miligram + + + microgramau + {0} microgram + {0} microgram + {0} ficrogram + {0} microgram + {0} microgram + {0} microgram + + + tunelli + {0} tunnell + {0} dunnell + {0} dunnell + {0} tunnell + {0} tunnell + {0} tunnell + + + stonau + {0} stôn + {0} stôn + {0} stôn + {0} stôn + {0} stôn + {0} stôn + + + pwysi + {0} pwys + {0} pwys + {0} bwys + {0} phwys + {0} phwys + {0} pwys + {0} y pwys + + + ownsys + {0} owns + {0} owns + {0} owns + {0} owns + {0} owns + {0} owns + {0} yr owns + + + ownsiau pwysau aur + {0} owns pwysau aur + {0} owns pwysau aur + {0} owns pwysau aur + {0} owns pwysau aur + {0} owns pwysau aur + {0} owns pwysau aur + + + caratau + {0} carat + {0} carat + {0} garat + {0} charat + {0} charat + {0} carat + + + gigawatiau + {0} gigawat + {0} gigawat + {0} gigawat + {0} gigawat + {0} gigawat + {0} gigawat + + + megawatiau + {0} megawat + {0} megawat + {0} fegawat + {0} megawat + {0} megawat + {0} megawat + + + cilawatiau + {0} cilowat + {0} cilowat + {0} gilowat + {0} chilowat + {0} chilowat + {0} cilowat + + + watiau + {0} wat + {0} wat + {0} wat + {0} wat + {0} wat + {0} wat + + + miliwatiau + {0} miliwat + {0} miliwat + {0} filiwat + {0} miliwat + {0} miliwat + {0} miliwat + + + marchnerth + {0} marchnerth + {0} marchnerth + {0} farchnerth + {0} marchnerth + {0} marchnerth + {0} marchnerth + + + hectopascalau + {0} hectopascal + {0} hectopascal + {0} hectopascal + {0} hectopascal + {0} hectopascal + {0} hectopascal + + + milimetrau o fercwri + {0} milimetr o fercwri + {0} milimetr o fercwri + {0} filimetr o fercwri + {0} milimetr o fercwri + {0} milimetr o fercwri + {0} milimetr o fercwri + + + pwysau y fodfedd sgwar + {0} pwys y fodfedd sgwar + {0} pwys y fodfedd sgwar + {0} bwys y fodfedd sgwar + {0} pwys y fodfedd sgwar + {0} pwys y fodfedd sgwar + {0} pwys y fodfedd sgwar + + + modfeddi o fercwri + {0} modfedd o fercwri + {0} fodfedd o fercwri + {0} fodfedd o fercwri + {0} modfedd o fercwri + {0} modfedd o fercwri + {0} modfedd o fercwri + + + milibarrau + {0} milibar + {0} milibar + {0} filibar + {0} milibar + {0} milibar + {0} milibar + + + cilometrau yr awr + {0} cilometr yr awr + {0} cilometr yr awr + {0} gilometr yr awr + {0} chilometr yr awr + {0} chilometr yr awr + {0} cilometr yr awr + + + metrau yr eiliad + {0} metr yr eiliad + {0} metr yr eiliad + {0} fetr yr eiliad + {0} metr yr eiliad + {0} metr yr eiliad + {0} metr yr eiliad + + + milltiroedd yr awr + {0} milltir yr awr + {0} filltir yr awr + {0} filltir yr awr + {0} milltir yr awr + {0} milltir yr awr + {0} milltir yr awr + + + notiau + {0} not + {0} not + {0} not + {0} not + {0} not + {0} not + + + ° + {0}° + {0}° + {0}° + {0}° + {0}° + {0}° + + + graddau Celsius + {0} gradd Celsius + {0} radd Celsius + {0} radd Celsius + {0} gradd Celsius + {0} gradd Celsius + {0} gradd Celsius + + + gradd Fahrenheit + {0} gradd Fahrenheit + {0} radd Fahrenheit + {0} radd Fahrenheit + {0} gradd Fahrenheit + {0} gradd Fahrenheit + {0} gradd Fahrenheit + + + celfinau + {0} celfin + {0} celfin + {0} gelfin + {0} chelfin + {0} celfin + {0} celfin + + + cilometrau ciwbig + {0} cilometr ciwbig + {0} cilometr ciwbig + {0} gilometr ciwbig + {0} chilometr ciwbig + {0} chilometr ciwbig + {0} cilometr ciwbig + + + metrau ciwbig + {0} metr ciwbig + {0} metr ciwbig + {0} fetr ciwbig + {0} metr ciwbig + {0} metr ciwbig + {0} metr ciwbig + {0} y metr ciwbig + + + centimetrau ciwbig + {0} centimetr ciwbig + {0} centimetr ciwbig + {0} gentimetr ciwbig + {0} chentimetr ciwbig + {0} centimetr ciwbig + {0} chentimetr ciwbig + {0} y centimetr ciwbig + + + milltiroedd ciwbig + {0} milltir giwbig + {0} filltir giwbig + {0} filltir giwbig + {0} milltir giwbig + {0} milltir giwbig + {0} milltir giwbig + + + llathenni ciwbig + {0} llath giwbig + {0} llathen giwbig + {0} lath giwbig + {0} llath giwbig + {0} llath giwbig + {0} llath giwbig + + + troedfeddi ciwbig + {0} troedfedd giwbig + {0} droedfedd giwbig + {0} droedfedd giwbig + {0} troedfedd giwbig + {0} troedfedd giwbig + {0} troedfedd giwbig + + + modfeddi ciwbig + {0} modfedd giwbig + {0} fodfedd giwbig + {0} fodfedd giwbig + {0} modfedd giwbig + {0} modfedd giwbig + {0} modfedd giwbig + + + megalitrau + {0} megalitr + {0} megalitr + {0} fegalitr + {0} megalitr + {0} megalitr + {0} megalitr + + + hectolitrau + {0} hectolitr + {0} hectolitr + {0} hectolitr + {0} hectolitr + {0} hectolitr + {0} hectolitr + + + litrau + {0} litr + {0} litr + {0} litr + {0} litr + {0} litr + {0} litr + {0} y litr + + + decilitrau + {0} decilitr + {0} decilitr + {0} decilitr + {0} decilitr + {0} decilitr + {0} decilitr + + + centilitrau + {0} centilitr + {0} centilitr + {0} gentilitr + {0} chentilitr + {0} chentilitr + {0} centilitr + + + mililitrau + {0} mililitr + {0} mililitr + {0} mililitr + {0} mililitr + {0} mililitr + {0} mililitr + + + peintiau metrig + {0} peint metrig + {0} peint metrig + {0} peint metrig + {0} peint metrig + {0} peint metrig + {0} peint metrig + + + cwpaneidiau metrig + {0} cwpanaid metrig + {0} cwpanaid metrig + {0} gwpanaid metrig + {0} cwpanaid metrig + {0} cwpanaid metrig + {0} cwpanaid metrig + + + erw-droedfeddi + {0} erw-droedfedd + {0} erw-droedfedd + {0} erw-droedfedd + {0} erw-droedfedd + {0} erw-droedfedd + {0} erw-droedfedd + + + bwsielau + {0} bwsiel + {0} bwsiel + {0} bwsiel + {0} bwsiel + {0} bwsiel + {0} bwsiel + + + galwyni + {0} galwyn + {0} galwyn + {0} alwyn + {0} galwyn + {0} galwyn + {0} galwyn + {0} y galwyn + + + chwartiau + {0} chwart + {0} chwart + {0} gwart + {0} chwart + {0} chwart + {0} chwart + + + peintiau + {0} peint + {0} peint + {0} beint + {0} pheint + {0} pheint + {0} peint + + + cwpaneidiau + {0} cwpanaid + {0} cwpanaid + {0} gwpanaid + {0} cwpanaid + {0} cwpanaid + {0} cwpanaid + + + ownsiau hylifol + {0} owns hylifol + {0} owns hylifol + {0} owns hylifol + {0} owns hylifol + {0} owns hylifol + {0} owns hylifol + + + llond llwy fwrdd + {0} llond llwy fwrdd + {0} llond llwy fwrdd + {0} lond llwy fwrdd + {0} llond llwy fwrdd + {0} llond llwy fwrdd + {0} llond llwy fwrdd + + + llond llwy de + {0} llond llwy de + {0} llond llwy de + {0} lond llwy de + {0} llond llwy de + {0} llond llwy de + {0} llond llwy de + + + {0} i’r dwyrain + {0} i’r gogledd + {0} i’r de + {0} i’r gorllewin + + + + + {0}/{1} + + + grym disgyrchedd + {0} G + {0} G + {0} G + {0} G + {0} G + {0} G + + + metrau/eil² + {0} m/eil² + {0} m/eil² + {0} m/eil² + {0} m/eil² + {0} m/eil² + {0} m/eil² + + + cylchdro + {0} cylchdro + {0} cylchdro + {0} gylchdro + {0} chylchdro + {0} cylchdro + {0} cylchdro + + + radianau + {0} rad + {0} rad + {0} rad + {0} rad + {0} rad + {0} rad + + + gradd + {0}° + {0}° + {0}° + {0}° + {0}° + {0}° + + + arcfunudau + {0}′ + {0}′ + {0}′ + {0}′ + {0}′ + {0}′ + + + arceiliadau + {0}″ + {0}″ + {0}″ + {0}″ + {0}″ + {0}″ + + + km² + {0} km² + {0} km² + {0} km² + {0} km² + {0} km² + {0} km² + + + hectarau + {0} ha + {0} ha + {0} ha + {0} ha + {0} ha + {0} ha + + + meterau² + {0} m² + {0} m² + {0} m² + {0} m² + {0} m² + {0} m² + {0} y m² + + + cm² + {0} cm² + {0} cm² + {0} cm² + {0} cm² + {0} cm² + {0} cm² + {0} y cm² + + + mi² + {0} mi² + {0} mi² + {0} mi² + {0} mi² + {0} mi² + {0} mi² + + + erw + {0} erw + {0} erw + {0} erw + {0} erw + {0} erw + {0} erw + + + llath² + {0} llath² + {0} llath² + {0} llath² + {0} llath² + {0} llath² + {0} llath² + + + troedfedd² + {0} tr² + {0} tr² + {0} tr² + {0} tr² + {0} tr² + {0} tr² + + + modfedd² + {0} mod² + {0} mod² + {0} mod² + {0} mod² + {0} mod² + {0} mod² + {0} y mod² + + + karatau + {0} kt + {0} kt + {0} kt + {0} kt + {0} kt + {0} kt + + + litrau/km + {0} L/km + {0} L/km + {0} L/km + {0} L/km + {0} L/km + {0} L/km + + + L/100km + {0} L/100km + {0} L/100km + {0} L/100km + {0} L/100km + {0} L/100km + {0} L/100km + + + mpg + {0} mpg + {0} mpg + {0} mpg + {0} mpg + {0} mpg + {0} mpg + + + TBeit + {0} TB + {0} TB + {0} TB + {0} TB + {0} TB + {0} TB + + + Tb + {0} Tb + {0} Tb + {0} Tb + {0} Tb + {0} Tb + {0} Tb + + + GBeit + {0} GB + {0} GB + {0} GB + {0} GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + {0} Gb + {0} Gb + {0} Gb + {0} Gb + + + MBeit + {0} MB + {0} MB + {0} MB + {0} MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + {0} Mb + {0} Mb + {0} Mb + {0} Mb + + + kBeit + {0} kB + {0} kB + {0} kB + {0} kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + {0} kb + {0} kb + {0} kb + {0} kb + + + beit + {0} beit + {0} beit + {0} feit + {0} beit + {0} beit + {0} beit + + + did + {0} did + {0} did + {0} ddid + {0} did + {0} did + {0} did + + + c + {0} c + {0} c + {0} c + {0} c + {0} c + {0} c + + + blynyddoedd + {0} bl + {0} bl + {0} bl + {0} bl + {0} bl + {0} bl + {0}/bl + + + misoedd + {0} mis + {0} mis + {0} fis + {0} mis + {0} mis + {0} mis + {0}/mis + + + wythnosau + {0} wythnos + {0} wythnos + {0} wythnos + {0} wythnos + {0} wythnos + {0} wythnos + {0}/wythnos + + + diwrnodau + {0} diwrnod + {0} diwrnod + {0} ddiwrnod + {0} diwrnod + {0} diwrnod + {0} diwrnod + {0}/d + + + oriau + {0} awr + {0} awr + {0} awr + {0} awr + {0} awr + {0} awr + {0} ya + + + mun + {0} mun + {0} mun + {0} mun + {0} mun + {0} mun + {0} mun + {0}/mun + + + eiliadau + {0} eil + {0} eil + {0} eil + {0} eil + {0} eil + {0} eil + {0}/eil + + + milieiliadau + {0} milieil + {0} ms + {0} ms + {0} ms + {0} ms + {0} ms + + + μs + {0} μs + {0} μs + {0} μs + {0} μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns + {0} ns + {0} ns + {0} ns + {0} ns + + + ampau + {0} A + {0} A + {0} A + {0} A + {0} A + {0} A + + + miliampau + {0} mA + {0} mA + {0} mA + {0} mA + {0} mA + {0} mA + + + ohmau + {0} Ω + {0} Ω + {0} Ω + {0} Ω + {0} Ω + {0} Ω + + + foltiau + {0} V + {0} V + {0} V + {0} V + {0} V + {0} V + + + kcal + {0} kcal + {0} kcal + {0} kcal + {0} kcal + {0} kcal + {0} kcal + + + cal + {0} cal + {0} cal + {0} cal + {0} cal + {0} cal + {0} cal + + + Cal + {0} Cal + {0} Cal + {0} Cal + {0} Cal + {0} Cal + {0} Cal + + + cilojouleau + {0} kJ + {0} kJ + {0} kJ + {0} kJ + {0} kJ + {0} kJ + + + jouleau + {0} J + {0} J + {0} J + {0} J + {0} J + {0} J + + + kW-awr + {0} kW-awr + {0} kW-awr + {0} kW-awr + {0} kW-awr + {0} kW-awr + {0} kW-awr + + + GHz + {0} GHz + {0} GHz + {0} GHz + {0} GHz + {0} GHz + {0} GHz + + + MHz + {0} MHz + {0} MHz + {0} MHz + {0} MHz + {0} MHz + {0} MHz + + + kHz + {0} kHz + {0} kHz + {0} kHz + {0} kHz + {0} kHz + {0} kHz + + + Hz + {0} Hz + {0} Hz + {0} Hz + {0} Hz + {0} Hz + {0} Hz + + + km + {0} km + {0} km + {0} km + {0} km + {0} km + {0} km + {0}/km + + + metrau + {0} m + {0} m + {0} m + {0} m + {0} m + {0} m + {0} y metr + + + dm + {0} dm + {0} dm + {0} dm + {0} dm + {0} dm + {0} dm + + + cm + {0} cm + {0} cm + {0} cm + {0} cm + {0} cm + {0} cm + {0}/cm + + + mm + {0} mm + {0} mm + {0} mm + {0} mm + {0} mm + {0} mm + + + µmetrau + {0} µm + {0} µm + {0} µm + {0} µm + {0} µm + {0} µm + + + nm + {0} nm + {0} nm + {0} nm + {0} nm + {0} nm + {0} nm + + + pm + {0} pm + {0} pm + {0} pm + {0} pm + {0} pm + {0} pm + + + milltiroedd + {0} mi + {0} mi + {0} mi + {0} mi + {0} mi + {0} mi + + + llathenni + {0} llath + {0} llath + {0} lath + {0} llath + {0} llath + {0} llath + + + troedfeddi + {0}′ + {0}′ + {0}′ + {0}′ + {0}′ + {0}′ + {0}/troedfedd + + + modfeddi + {0} modfedd + {0} fodfedd + {0} fodfedd + {0} modfedd + {0} modfedd + {0} modfedd + {0}/fodfedd + + + parsecau + {0} pc + {0} pc + {0} pc + {0} pc + {0} pc + {0} pc + + + bl golau + {0} blwyddyn golau + {0} flwyddyn golau + {0} flwyddyn golau + {0} blwyddyn golau + {0} blwyddyn golau + {0} blwyddyn golau + + + u.s. + {0} u.s. + {0} u.s. + {0} u.s. + {0} u.s. + {0} u.s. + {0} u.s. + + + ystadenni + + + gwrhydau + {0} gwryd + {0} gwryd + {0} wryd + {0} gwryd + {0} gwryd + {0} gwryd + + + mi fôr + {0} mi fôr + {0} mi fôr + {0} mi fôr + {0} mi fôr + {0} mi fôr + {0} mi fôr + + + mi Sgand. + {0} mi Sgand. + {0} mi Sgand. + {0} mi Sgand. + {0} mi Sgand. + {0} mi Sgand. + {0} mi Sgand. + + + lycsau + {0} lx + {0} lx + {0} lx + {0} lx + {0} lx + {0} lx + + + t + {0} t + {0} t + {0} t + {0} t + {0} t + {0} t + + + kg + {0} kg + {0} kg + {0} kg + {0} kg + {0} kg + {0} kg + {0}/kg + + + gramau + {0} g + {0} g + {0} g + {0} g + {0} g + {0} g + {0}/g + + + mg + {0} mg + {0} mg + {0} mg + {0} mg + {0} mg + {0} mg + + + µg + {0} µg + {0} µg + {0} µg + {0} µg + {0} µg + {0} µg + + + tn + {0} tn + {0} tn + {0} tn + {0} tn + {0} tn + {0} tn + + + stonau + {0} st + {0} st + {0} st + {0} st + {0} st + {0} st + + + pwysi + {0} pwys + {0} pwys + {0} bwys + {0} phwys + {0} phwys + {0} pwys + {0}/pwys + + + owns + {0} owns + {0} owns + {0} owns + {0} owns + {0} owns + {0} owns + {0}/owns + + + oz t + {0} oz t + {0} oz t + {0} oz t + {0} oz t + {0} oz t + {0} oz t + + + caratau + {0} CD + {0} CD + {0} CD + {0} CD + {0} CD + {0} CD + + + GW + {0} GW + {0} GW + {0} GW + {0} GW + {0} GW + {0} GW + + + MW + {0} MW + {0} MW + {0} MW + {0} MW + {0} MW + {0} MW + + + kW + {0} kW + {0} kW + {0} kW + {0} kW + {0} kW + {0} kW + + + watiau + {0} W + {0} W + {0} W + {0} W + {0} W + {0} W + + + mW + {0} mW + {0} mW + {0} mW + {0} mW + {0} mW + {0} mW + + + hp + {0} hp + {0} hp + {0} hp + {0} hp + {0} hp + {0} hp + + + hPa + {0} hPa + {0} hPa + {0} hPa + {0} hPa + {0} hPa + {0} hPa + + + mm Hg + {0} mm Hg + {0} mm Hg + {0} mm Hg + {0} mm Hg + {0} mm Hg + {0} mm Hg + + + psi + {0} psi + {0} psi + {0} psi + {0} psi + {0} psi + {0} psi + + + modfeddi o fercwri + {0} ″ Hg + {0} ″ Hg + {0} ″ Hg + {0} ″ Hg + {0} ″ Hg + {0} ″ Hg + + + mbar + {0} mbar + {0} mbar + {0} mbar + {0} mbar + {0} mbar + {0} mbar + + + km/h + {0} km/h + {0} km/h + {0} km/h + {0} km/h + {0} km/h + {0} km/h + + + metrau/eil + {0} m/s + {0} m/s + {0} m/s + {0} m/s + {0} m/s + {0} m/s + + + milltir/awr + {0} m.y.a. + {0} m.y.a. + {0} m.y.a. + {0} m.y.a. + {0} m.y.a. + {0} m.y.a. + + + notiau + {0} not + {0} not + {0} not + {0} not + {0} not + {0} not + + + ° + {0}° + {0}° + {0}° + {0}° + {0}° + {0}° + + + gradd C + {0}°C + {0}°C + {0}°C + {0}°C + {0}°C + {0}°C + + + gradd F + {0}°F + {0}°F + {0}°F + {0}°F + {0}°F + {0}°F + + + K + {0} K + {0} K + {0} K + {0} K + {0} K + {0} K + + + cilometrau ciwbig + {0} km³ + {0} km³ + {0} km³ + {0} km³ + {0} km³ + {0} km³ + + + + {0} m³ + {0} m³ + {0} m³ + {0} m³ + {0} m³ + {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0}/cm³ + + + mi³ + {0} mi³ + {0} mi³ + {0} mi³ + {0} mi³ + {0} mi³ + {0} mi³ + + + llathenni³ + {0} llath³ + {0} llathen³ + {0} lath³ + {0} llath³ + {0} llath³ + {0} llath³ + + + troedfedd³ + {0} troedfedd³ + {0} troedfedd³ + {0} droedfedd³ + {0} troedfedd³ + {0} troedfedd³ + {0} troedfedd³ + + + modfeddi³ + {0} modfedd³ + {0} modfedd³ + {0} fodfedd³ + {0} modfedd³ + {0} modfedd³ + {0} modfedd³ + + + ML + {0} ML + {0} ML + {0} ML + {0} ML + {0} ML + {0} ML + + + hL + {0} hL + {0} hL + {0} hL + {0} hL + {0} hL + {0} hL + + + litrau + {0} L + {0} L + {0} L + {0} L + {0} L + {0} L + {0}/L + + + dL + {0} dL + {0} dL + {0} dL + {0} dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL + {0} cL + {0} cL + {0} cL + {0} cL + + + mL + {0} mL + {0} mL + {0} mL + {0} mL + {0} mL + {0} mL + + + mpt + {0} mpt + {0} mpt + {0} mpt + {0} mpt + {0} mpt + {0} mpt + + + cwpanaid metrig + {0} mc + {0} mc + {0} mc + {0} mc + {0} mc + {0} mc + + + erw tr + {0} erw tr + {0} erw tr + {0} erw tr + {0} erw tr + {0} erw tr + {0} erw tr + + + bwsielau + {0} bwsiel + {0} bwsiel + {0} bwsiel + {0} bwsiel + {0} bwsiel + {0} bwsiel + + + gal + {0} gal + {0} gal + {0} gal + {0} gal + {0} gal + {0} gal + {0}/gal + + + qt + {0} qt + {0} qt + {0} qt + {0} qt + {0} qt + {0} qt + + + peintiau + {0} pt + {0} pt + {0} pt + {0} pt + {0} pt + {0} pt + + + cwpaneidiau + {0} c + {0} c + {0} c + {0} c + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + {0} fl oz + {0} fl oz + {0} fl oz + {0} fl oz + + + tbsp + {0} tbsp + {0} tbsp + {0} tbsp + {0} tbsp + {0} tbsp + {0} tbsp + + + tsp + {0} tsp + {0} tsp + {0} tsp + {0} tsp + {0} tsp + {0} tsp + + + {0}dn + {0}g + {0}d + {0}gn + + + + + {0}/{1} + + + {0}G + {0}G + {0}G + {0}G + {0}G + {0}G + + + rad + {0}rad + {0}rad + {0}rad + {0}rad + {0}rad + {0}rad + + + gradd + {0}° + {0}° + {0}° + {0}° + {0}° + {0}° + + + {0}′ + {0}′ + {0}′ + {0}′ + {0}′ + {0}′ + + + {0}″ + {0}″ + {0}″ + {0}″ + {0}″ + {0}″ + + + km² + {0}km² + {0}km² + {0}km² + {0}km² + {0}km² + {0}km² + + + hectar + {0}ha + {0}ha + {0}ha + {0}ha + {0}ha + {0}ha + + + metrau² + {0}m² + {0}m² + {0}m² + {0}m² + {0}m² + {0}m² + {0}/m² + + + cm² + {0}cm² + {0}cm² + {0}cm² + {0}cm² + {0}cm² + {0}cm² + {0}/cm² + + + mi² + {0}mi² + {0}mi² + {0}mi² + {0}mi² + {0}mi² + {0}mi² + + + erw + {0}erw + {0}erw + {0}erw + {0}erw + {0}erw + {0}erw + + + {0}ft² + {0}ft² + {0}ft² + {0}ft² + {0}ft² + {0}ft² + + + L/km + {0}L/km + {0}L/km + {0}L/km + {0}L/km + {0}L/km + {0}L/km + + + L/100km + {0}L/100km + {0}L/100km + {0}L/100km + {0}L/100km + {0}L/100km + {0}L/100km + + + TBeit + {0}TB + {0}TB + {0}TB + {0}TB + {0}TB + {0}TB + + + GBeit + {0}GB + {0}GB + {0}GB + {0}GB + {0}GB + {0}GB + + + Gb + {0}Gb + {0}Gb + {0}Gb + {0}Gb + {0}Gb + {0}Gb + + + MBeit + {0}MB + {0}MB + {0}MB + {0}MB + {0}MB + {0}MB + + + kBeit + {0}kB + {0}kB + {0}kB + {0}kB + {0}kB + {0}kB + + + beit + {0}beit + {0}beit + {0}feit + {0}beit + {0}beit + {0}beit + + + did + {0}did + {0}did + {0}ddid + {0}did + {0}did + {0}did + + + c + {0}c + {0}c + {0}c + {0}c + {0}c + {0}c + + + bl + {0}bl + {0}bl + {0}bl + {0}bl + {0}bl + {0}bl + {0}/bl + + + mis + {0}m + {0}m + {0}m + {0}m + {0}m + {0}m + {0}/m + + + w + {0}w + {0}w + {0}w + {0}w + {0}w + {0}w + {0}/w + + + d + {0}d + {0}d + {0}d + {0}d + {0}d + {0}d + {0}/d + + + awr + {0} awr + {0} awr + {0} awr + {0} awr + {0} awr + {0} awr + {0}/a + + + mun + {0}mun + {0}mun + {0}mun + {0}mun + {0}mun + {0}mun + {0}/mun + + + eil + {0} eil + {0} eil + {0} eil + {0} eil + {0} eil + {0} eil + {0}/e + + + milieiliad + {0}ms + {0}ms + {0}ms + {0}ms + {0}ms + {0}ms + + + amp + {0}A + {0}A + {0}A + {0}A + {0}A + {0}A + + + mA + {0}mA + {0}mA + {0}mA + {0}mA + {0}mA + {0}mA + + + ohm + {0}Ω + {0}Ω + {0}Ω + {0}Ω + {0}Ω + {0}Ω + + + folt + {0}V + {0}V + {0}V + {0}V + {0}V + {0}V + + + kcal + {0}kcal + {0}kcal + {0}kcal + {0}kcal + {0}kcal + {0}kcal + + + cal + {0}cal + {0}cal + {0}cal + {0}cal + {0}cal + {0}cal + + + Cal + {0}Cal + {0}Cal + {0}Cal + {0}Cal + {0}Cal + {0}Cal + + + kJ + {0}kj + {0}kj + {0}kj + {0}kj + {0}kj + {0}kj + + + joule + {0}J + {0}J + {0}J + {0}J + {0}J + {0}J + + + GHz + {0}GHz + {0}GHz + {0}GHz + {0}GHz + {0}GHz + {0}GHz + + + MHz + {0}MHz + {0}MHz + {0}MHz + {0}MHz + {0}MHz + {0}MHz + + + kHz + {0}kHz + {0}kHz + {0}kHz + {0}kHz + {0}kHz + {0}kHz + + + Hz + {0}Hz + {0}Hz + {0}Hz + {0}Hz + {0}Hz + {0}Hz + + + km + {0}km + {0}km + {0}km + {0}km + {0}km + {0}km + {0}/km + + + metr + {0}m + {0}m + {0}m + {0}m + {0}m + {0}m + {0}/m + + + dm + {0}dm + {0}dm + {0}dm + {0}dm + {0}dm + {0}dm + + + cm + {0}cm + {0}cm + {0}cm + {0}cm + {0}cm + {0}cm + {0}/cm + + + mm + {0}mm + {0}mm + {0}mm + {0}mm + {0}mm + {0}mm + + + µm + {0}µm + {0}µm + {0}µm + {0}µm + {0}µm + {0}µm + + + nm + {0}nm + {0}nm + {0}nm + {0}nm + {0}nm + {0}nm + + + pm + {0}pm + {0}pm + {0}pm + {0}pm + {0}pm + {0}pm + + + mi + {0}mi + {0}mi + {0}mi + {0}mi + {0}mi + {0}mi + + + llath + {0}llath + {0}llath + {0}lath + {0}llath + {0}llath + {0}llath + + + troedfedd + {0}′ + {0}′ + {0}′ + {0}′ + {0}′ + {0}′ + {0}/ft + + + modfedd + {0}″ + {0}″ + {0}″ + {0}″ + {0}″ + {0}″ + {0}/mod + + + pc + {0}pc + {0}pc + {0}pc + {0}pc + {0}pc + {0}pc + + + ly + {0}ly + {0}ly + {0}ly + {0}ly + {0}ly + {0}ly + + + u.s. + {0}u.s. + {0}u.s. + {0}u.s. + {0}u.s. + {0}u.s. + {0}u.s. + + + gwrhydau + {0}fm + {0}fm + {0}fm + {0}fm + {0}fm + {0}fm + + + mi fôr + + + lwcs + {0}lx + {0}lx + {0}lx + {0}lx + {0}lx + {0}lx + + + t + {0}t + {0}t + {0}t + {0}t + {0}t + {0}t + + + kg + {0}kg + {0}kg + {0}kg + {0}kg + {0}kg + {0}kg + {0}/kg + + + gram + {0}g + {0}g + {0}g + {0}g + {0}g + {0}g + {0}/g + + + mg + {0}mg + {0}mg + {0}mg + {0}mg + {0}mg + {0}mg + + + µg + {0}µg + {0}µg + {0}µg + {0}µg + {0}µg + {0}µg + + + stôn + {0}st + {0}st + {0}st + {0}st + {0}st + {0}st + + + pwys + {0}pwys + {0}pwys + {0}bwys + {0}phwys + {0}phwys + {0}pwys + {0}/pwys + + + owns + {0}owns + {0}owns + {0}owns + {0}owns + {0}owns + {0}owns + {0}/owns + + + carat + {0}CD + {0}CD + {0}CD + {0}CD + {0}CD + {0}CD + + + GW + {0}GW + {0}GW + {0}GW + {0}GW + {0}GW + {0}GW + + + MW + {0}MW + {0}MW + {0}MW + {0}MW + {0}MW + {0}MW + + + kW + {0}kW + {0}kW + {0}kW + {0}kW + {0}kW + {0}kW + + + wat + {0}W + {0}W + {0}W + {0}W + {0}W + {0}W + + + mW + {0}mW + {0}mW + {0}mW + {0}mW + {0}mW + {0}mW + + + hp + {0}hp + {0}hp + {0}hp + {0}hp + {0}hp + {0}hp + + + hPa + {0}hPa + {0}hPa + {0}hPa + {0}hPa + {0}hPa + {0}hPa + + + mm Hg + {0}mm Hg + {0}mm Hg + {0}mm Hg + {0}mm Hg + {0}mm Hg + {0}mm Hg + + + psi + {0}psi + {0}psi + {0}psi + {0}psi + {0}psi + {0}psi + + + ″ Hg + {0}" Hg + {0}" Hg + {0}" Hg + {0}" Hg + {0}" Hg + {0}" Hg + + + mbar + {0}mb + {0}mb + {0}mb + {0}mb + {0}mb + {0}mb + + + km/h + {0}km/h + {0}km/h + {0}km/h + {0}km/h + {0}km/h + {0}km/h + + + m/s + {0}m/s + {0}m/s + {0}m/s + {0}m/s + {0}m/s + {0}m/s + + + m.y.a. + {0}m.y.a. + {0}m.y.a. + {0}m.y.a. + {0}m.y.a. + {0}m.y.a. + {0}m.y.a. + + + not + {0}not + {0}not + {0}not + {0}not + {0}not + {0}not + + + ° + {0}° + {0}° + {0}° + {0}° + {0}° + {0}° + + + °C + {0}° + {0}° + {0}° + {0}° + {0}° + {0}° + + + °F + {0}°F + {0}°F + {0}°F + {0}°F + {0}°F + {0}°F + + + K + {0}K + {0}K + {0}K + {0}K + {0}K + {0}K + + + km³ + {0}km³ + {0}km³ + {0}km³ + {0}km³ + {0}km³ + {0}km³ + + + + {0}m³ + {0}m³ + {0}m³ + {0}m³ + {0}m³ + {0}m³ + {0}/m³ + + + cm³ + {0}cm³ + {0}cm³ + {0}cm³ + {0}cm³ + {0}cm³ + {0}cm³ + {0}/cm³ + + + mi³ + {0}mi³ + {0}mi³ + {0}mi³ + {0}mi³ + {0}mi³ + {0}mi³ + + + ML + {0}ML + {0}ML + {0}ML + {0}ML + {0}ML + {0}ML + + + hL + {0}hL + {0}hL + {0}hL + {0}hL + {0}hL + {0}hL + + + litr + {0} L + {0} L + {0} L + {0} L + {0} L + {0} L + + + dL + {0}dL + {0}dL + {0}dL + {0}dL + {0}dL + {0}dL + + + cL + {0}cL + {0}cL + {0}cL + {0}cL + {0}cL + {0}cL + + + mL + {0}mL + {0}mL + {0}mL + {0}mL + {0}mL + {0}mL + + + gal + {0}gal + {0}gal + {0}gal + {0}gal + {0}gal + {0}gal + {0}/gal + + + pt + {0}pt + {0}pt + {0}pt + {0}pt + {0}pt + {0}pt + + + {0}dn + {0}g + {0}d + {0}gn + + + + h:mm + + + h:mm:ss + + + m:ss + + + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + + + ie:i + na:n + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/cy_GB.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/cy_GB.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/cy_GB.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/cy_GB.xml index b5d1e4cd3e9..f73a8b86770 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/cy_GB.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/cy_GB.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/da.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/da.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/da.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/da.xml index 01b01fee380..febf84cafde 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/da.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/da.xml @@ -1,13 +1,12 @@ - - - + @@ -39,7 +38,7 @@ For terms of use, see http://www.unicode.org/copyright.html arabisk moderne standardarabisk aramæisk - araukansk + mapuche arapaho arawak assamesisk @@ -50,6 +49,7 @@ For terms of use, see http://www.unicode.org/copyright.html aymara aserbajdsjansk azeri + sydaserbajdsjansk bashkir baluchi balinesisk @@ -62,6 +62,7 @@ For terms of use, see http://www.unicode.org/copyright.html bena bafut bulgarsk + vestbaluchi bhojpuri bislama bikol @@ -288,6 +289,7 @@ For terms of use, see http://www.unicode.org/copyright.html lao mongo lozi + nordluri litauisk luba-Katanga luba-Lulua @@ -326,7 +328,7 @@ For terms of use, see http://www.unicode.org/copyright.html mohawk mossi marathisk - malay + malajisk maltesisk mundang flere sprog @@ -336,6 +338,7 @@ For terms of use, see http://www.unicode.org/copyright.html burmesisk myene erzya + mazenisk nauru neapolitansk nama @@ -419,6 +422,7 @@ For terms of use, see http://www.unicode.org/copyright.html siciliansk skotsk sindhi + sydkurdisk nordsamisk seneca sena @@ -456,8 +460,8 @@ For terms of use, see http://www.unicode.org/copyright.html sumerisk svensk swahili + congolesisk swahili shimaore - congolesisk swahili klassisk syrisk syrisk tamilsk @@ -467,7 +471,7 @@ For terms of use, see http://www.unicode.org/copyright.html tereno tetum tajik - thailandsk + thai tigrinya tigre tivi @@ -513,6 +517,7 @@ For terms of use, see http://www.unicode.org/copyright.html walamo waray washo + walbiri wolof kalmyk xhosa @@ -733,13 +738,12 @@ For terms of use, see http://www.unicode.org/copyright.html Latinamerika Ascensionøen Andorra - Forenede Arabiske Emirater + De Forenede Arabiske Emirater Afghanistan Antigua og Barbuda Anguilla Albanien Armenien - Hollandske Antiller Angola Antarktis Argentina @@ -762,7 +766,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bermuda Brunei Bolivia - Nederlandske antiller + De Nederlandske Antiller Brasilien Bahamas Bhutan @@ -774,7 +778,7 @@ For terms of use, see http://www.unicode.org/copyright.html Cocosøerne Congo-Kinshasa Den Demokratiske Republik Congo - Centralafrikanske Republik + Den Centralafrikanske Republik Congo-Brazzaville Republikken Congo Schweiz @@ -887,7 +891,7 @@ For terms of use, see http://www.unicode.org/copyright.html Madagaskar Marshalløerne Makedonien - Makedonien (Den Tidligere Jugoslaviske Republik Makedonien) + Den tidligere jugoslaviske republik Makedonien Mali Myanmar (Burma) Mongoliet @@ -955,7 +959,7 @@ For terms of use, see http://www.unicode.org/copyright.html Somalia Surinam Sydsudan - Sao Tome og Principe + São Tomé og Príncipe El Salvador Sint Maarten Syrien @@ -1074,6 +1078,9 @@ For terms of use, see http://www.unicode.org/copyright.html Numerisk sortering Sorteringsstyrke valuta + timeur (12 vs. 24) + linjeskift + målesystem tal Tidszone Sprogvariant @@ -1081,121 +1088,131 @@ For terms of use, see http://www.unicode.org/copyright.html Privatbrug - hindu-arabiske tal - udvidede hindu-arabiske tal - armenske tal - armenske tal i små bogstaver - Balinesiske tal - bengali tal - sorteringsrækkefølge uforkortet kinesisk - Big5 - Brahmi-tal - buddhistisk kalender - Chakma-tal - Cham-tal - kinesisk kalender - koptisk kalender - dangi-kalender - devanagariske tal - sorteringsrækkefølge for ordbog - Unicode-standardsortering - europæisk sorteringsrækkefølge - etiopiske tal - etiopisk kalender - etiopisk amete-alem-kalender - Finansielle tal - tal i fuld bredde - sorteringsrækkefølge forkortet kinesisk - GB2312 - georgiske tal - gregoriansk kalender - græske tal - græske tal i små bogstaver - gujarati tal - gurmukhi tal - kinesiske decimaltal - forenklede kinesiske tal - forenklede kinesiske financielle tal - traditionelle kinesiske tal - traditionelle kinesiske finansielle tal - hebræiske tal - jødisk kalender - Sortér alt - indisk nationalkalender - islamisk kalender - verdslig islamisk kalender - islamisk kalender (Saudi-Arabien, observation) - islamisk kalender (tabellarisk, astronomisk epoke) - islamisk kalender (Umm al-Qura) - ISO-8601-kalender - japansk kalender - Javanesiske tal - japanske tal - japanske financielle tal - Kayah Li-tal - khmer tal - kannada tal - Tai Tham Hora-tal - Tai Tham Tahm-tal - laotiske tal - arabertal - Lepcha-tal - Limbu-tal - Sortér med små bogstaver først - Malayalamske tal - Mongolske tal - Meetei Mayek-tal - Myanmar tal - Myanmar Shan-tal - Nationale cifre - N’Ko-tal - Sortér efter accenter i normal rækkefølge - Sortér efter store og små bogstaver i almindelig rækkefølge - Sortér uden forskel på store og små bogstaver - Sortér kana separat - Sortér uden normalisering - Sortér efter individuelle cifre - Sortér efter symboler - Ol Chiki-tal - Oriya tal - Osmanya-tal - persisk kalender - sorteringsrækkefølge i telefonbøger - fonetisk sorteringsrækkefølge - pinyin-baseret sorteringsrækkefølge - Sortér kun efter basisbogstaver - Sortér efter accenter/små og store bogstaver/bredde/kana - ny sorteringsrækkefølge - kalender for Republikken Kina - romertal - romertal i små bogstaver - Saurashtra-tal - generel søgning - sortér efter den første konsonant i hangul - Sortér efter accenter - Sortér, og ignorer symboler - Sharada-tal - Sora Sompeng-tal - standardsorteringsrækkefølge - stregbaseret sorteringsrækkefølge - Sundanesiske tal - Takri-tal - Nye Tai Lue-tal - traditionelle tamilske tal - tamilske tal - Telugu tal - Sortér efter accenter/store og små bogstaver/bredde - thailandske tal - tibetanske tal - traditionel sorteringsrækkefølge - Traditionelle tal - sortering efter streger i rodtegn - Sortér med store bogstaver først - Vai-tal - Sortér efter accenter i omvendt rækkefølge - Sortér med skelnen mellem store og små bogstaver - Sortér kana med forskel på varianter - Sortér Unicode efter første normalisering - Sortér tal numerisk - zhuyin-sorteringsrækkefølge + buddhistisk kalender + kinesisk kalender + koptisk kalender + dangi-kalender + etiopisk kalender + etiopisk amete-alem-kalender + gregoriansk kalender + jødisk kalender + indisk nationalkalender + islamisk kalender + verdslig islamisk kalender + islamisk kalender (Saudi-Arabien, observation) + islamisk kalender (tabellarisk, astronomisk epoke) + islamisk kalender (Umm al-Qura) + ISO-8601-kalender + japansk kalender + persisk kalender + kalender for Republikken Kina + Sortér efter symboler + Sortér, og ignorer symboler + Sortér efter accenter i normal rækkefølge + Sortér efter accenter i omvendt rækkefølge + Sortér med små bogstaver først + Sortér efter store og små bogstaver i almindelig rækkefølge + Sortér med store bogstaver først + Sortér uden forskel på store og små bogstaver + Sortér med skelnen mellem store og små bogstaver + Sortér kana separat + Sortér kana med forskel på varianter + sorteringsrækkefølge uforkortet kinesisk - Big5 + sorteringsrækkefølge for ordbog + Unicode-standardsortering + europæisk sorteringsrækkefølge + sorteringsrækkefølge forkortet kinesisk - GB2312 + sorteringsrækkefølge i telefonbøger + fonetisk sorteringsrækkefølge + pinyin-baseret sorteringsrækkefølge + ny sorteringsrækkefølge + generel søgning + sortér efter den første konsonant i hangul + standardsorteringsrækkefølge + stregbaseret sorteringsrækkefølge + traditionel sorteringsrækkefølge + sortering efter streger i rodtegn + zhuyin-sorteringsrækkefølge + Sortér uden normalisering + Sortér Unicode efter første normalisering + Sortér efter individuelle cifre + Sortér tal numerisk + Sortér alt + Sortér kun efter basisbogstaver + Sortér efter accenter/små og store bogstaver/bredde/kana + Sortér efter accenter + Sortér efter accenter/store og små bogstaver/bredde + 12-timersur (0-11) + 12-timersur (1-12) + 24-timersur (0-23) + 24-timersur (1-24) + løst linjeskift + normalt linjeskift + hårdt linjeskift + metersystem + britisk målesystem + amerikansk målesystem + hindu-arabiske tal + udvidede hindu-arabiske tal + armenske tal + armenske tal i små bogstaver + Balinesiske tal + bengali tal + Brahmi-tal + Chakma-tal + Cham-tal + devanagariske tal + etiopiske tal + Finansielle tal + tal i fuld bredde + georgiske tal + græske tal + græske tal i små bogstaver + gujarati tal + gurmukhi tal + kinesiske decimaltal + forenklede kinesiske tal + forenklede kinesiske financielle tal + traditionelle kinesiske tal + traditionelle kinesiske finansielle tal + hebræiske tal + Javanesiske tal + japanske tal + japanske financielle tal + Kayah Li-tal + khmer tal + kannada tal + Tai Tham Hora-tal + Tai Tham Tahm-tal + laotiske tal + arabertal + Lepcha-tal + Limbu-tal + Malayalamske tal + Mongolske tal + Meetei Mayek-tal + Myanmar tal + Myanmar Shan-tal + Nationale cifre + N’Ko-tal + Ol Chiki-tal + Oriya tal + Osmanya-tal + romertal + romertal i små bogstaver + Saurashtra-tal + Sharada-tal + Sora Sompeng-tal + Sundanesiske tal + Takri-tal + Nye Tai Lue-tal + traditionelle tamilske tal + tamilske tal + Telugu tal + thailandske tal + tibetanske tal + Traditionelle tal + Vai-tal BGN @@ -1216,7 +1233,7 @@ For terms of use, see http://www.unicode.org/copyright.html Sprog: {0} - Instruks: {0} + Skrift: {0} Område: {0} @@ -1299,6 +1316,7 @@ For terms of use, see http://www.unicode.org/copyright.html d. + ccc E 'd'. d. y G MMM y G @@ -1316,6 +1334,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM d. MMM E d. MMM + d MMMM E d. MMMM mm.ss y G @@ -1326,6 +1345,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y G d. MMM y G E d. MMM y G + MMMM y G QQQ y G QQQQ y G @@ -1640,23 +1660,66 @@ For terms of use, see http://www.unicode.org/copyright.html - middag + midnat + AM + PM + om morgenen + om formiddagen + om eftermiddagen + om aftenen + om natten + midnat a - middag p + om morgenen + om formiddagen + om eftermiddagen + om aftenen + om natten + midnat AM - middag PM + om morgenen + om formiddagen + om eftermiddagen + om aftenen + om natten + + midnat + AM + PM + morgen + formiddag + eftermiddag + aften + nat + + + midnat + AM + PM + morgen + formiddag + eftermiddag + aften + nat + - formiddag - eftermiddag + midnat + AM + PM + morgen + formiddag + eftermiddag + aften + nat @@ -1727,12 +1790,12 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} 'kl.' {0} + {1} 'kl'. {0} - {1} 'kl.' {0} + {1} 'kl'. {0} @@ -1774,6 +1837,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM d. MMM E d. MMM + d. MMMM E d. MMMM mm.ss y @@ -1784,6 +1848,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y d. MMM y E d. MMM y + MMMM y QQQ y QQQQ y @@ -1902,9 +1967,6 @@ For terms of use, see http://www.unicode.org/copyright.html - @@ -1939,10 +2001,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Æra + æra - År + år sidste år i år næste år @@ -1957,6 +2019,9 @@ For terms of use, see http://www.unicode.org/copyright.html år + sidste år + i år + næste år om {0} år om {0} år @@ -1968,6 +2033,9 @@ For terms of use, see http://www.unicode.org/copyright.html år + sidste år + i år + næste år om {0} år om {0} år @@ -1978,7 +2046,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Kvartal + kvartal + sidste kvartal + dette kvartal + næste kvartal om {0} kvartal om {0} kvartaler @@ -1990,6 +2061,9 @@ For terms of use, see http://www.unicode.org/copyright.html kvt. + sidste kvt. + dette kvt. + næste kvt. om {0} kvt. om {0} kvt. @@ -2001,6 +2075,9 @@ For terms of use, see http://www.unicode.org/copyright.html kvt. + sidste kvt. + dette kvt. + næste kvt. om {0} kvt. om {0} kvt. @@ -2011,7 +2088,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Måned + måned sidste måned denne måned næste måned @@ -2026,6 +2103,9 @@ For terms of use, see http://www.unicode.org/copyright.html md. + sidste md. + denne md. + næste md. om {0} md. om {0} md. @@ -2037,6 +2117,9 @@ For terms of use, see http://www.unicode.org/copyright.html md. + sidste md. + denne md. + næste md. om {0} md. om {0} md. @@ -2047,7 +2130,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Uge + uge sidste uge denne uge næste uge @@ -2062,6 +2145,9 @@ For terms of use, see http://www.unicode.org/copyright.html uge + sidste uge + denne uge + næste uge om {0} uge om {0} uger @@ -2073,6 +2159,9 @@ For terms of use, see http://www.unicode.org/copyright.html uge + sidste uge + denne uge + næste uge om {0} uge om {0} uger @@ -2083,7 +2172,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Dag + dag i forgårs i går i dag @@ -2100,6 +2189,11 @@ For terms of use, see http://www.unicode.org/copyright.html dag + i forgårs + i går + i dag + i morgen + i overmorgen om {0} dag om {0} dage @@ -2111,6 +2205,11 @@ For terms of use, see http://www.unicode.org/copyright.html dag + i forgårs + i går + i dag + i morgen + i overmorgen om {0} dag om {0} dage @@ -2121,7 +2220,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Ugedag + ugedag sidste søndag @@ -2191,12 +2290,12 @@ For terms of use, see http://www.unicode.org/copyright.html sidste tor. denne tor. - næste tor. + næste tor. - sidste to. - denne to. - næste to. + sidste to. + denne to. + næste to. sidste fredag @@ -2232,7 +2331,7 @@ For terms of use, see http://www.unicode.org/copyright.html AM/PM - Time + time om {0} time om {0} timer @@ -2265,7 +2364,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Minut + minut om {0} minut om {0} minutter @@ -2298,7 +2397,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Sekund + sekund nu om {0} sekund @@ -2332,14 +2431,14 @@ For terms of use, see http://www.unicode.org/copyright.html - Tidszone + tidszone +HH.mm;-HH.mm GMT{0} GMT - Tidszone for {0} + {0} {0} (+1) {0} (+0) {1} ({0}) @@ -3210,6 +3309,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -3294,6 +3396,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Chita + Jakutsk @@ -3312,6 +3417,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolymsk + Kamchatka @@ -3565,7 +3673,7 @@ For terms of use, see http://www.unicode.org/copyright.html St. Thomas - Ho Chi Minh-byen + Ho Chi Minh City Efate @@ -4286,7 +4394,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Norfolkøen-tid + Norfolk Island-tid @@ -4474,7 +4582,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Truk-tid + Chuuk-tid @@ -4578,7 +4686,7 @@ For terms of use, see http://www.unicode.org/copyright.html NaN - . + . @@ -4634,12 +4742,12 @@ For terms of use, see http://www.unicode.org/copyright.html 00 mia 000 mia 000 mia - 0 bill - 0 bill - 00 bill - 00 bill - 000 bill - 000 bill + 0 bio + 0 bio + 00 bio + 00 bio + 000 bio + 000 bio @@ -4666,6 +4774,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 td ¤ + 0 td ¤ + 00 td ¤ + 00 td ¤ + 000 td ¤ + 000 td ¤ + 0 mio ¤ + 0 mio ¤ + 00 mio ¤ + 00 mio ¤ + 000 mio ¤ + 000 mio ¤ + 0 mia ¤ + 0 mia ¤ + 00 mia ¤ + 00 mia ¤ + 000 mia ¤ + 000 mia ¤ + 0 bio ¤ + 0 bio ¤ + 00 bio ¤ + 00 bio ¤ + 000 bio ¤ + 000 bio ¤ + + {0} {1} {0} {1} @@ -4706,7 +4842,7 @@ For terms of use, see http://www.unicode.org/copyright.html Nederlandske Antiller-gylden - Nederlandske Antiller-gylden + Nederlandsk Antiller-gylden Nederlandske Antiller-gylden ANG @@ -4715,6 +4851,7 @@ For terms of use, see http://www.unicode.org/copyright.html Angolansk kwanza Angolanske kwanza AOA + Kz Angolansk kwanza (1977–1990) @@ -4787,6 +4924,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bosnien-Hercegovinsk konvertibel mark Bosnien-Hercegovinske konvertible mark BAM + KM Barbadisk dollar @@ -4859,6 +4997,7 @@ For terms of use, see http://www.unicode.org/copyright.html Boliviansk boliviano Bolivianske boliviano BOB + Bs Boliviansk peso @@ -4925,6 +5064,7 @@ For terms of use, see http://www.unicode.org/copyright.html Botswansk pula Botswanske pula BWP + P Hviderussisk rubel (1994–1999) @@ -4964,9 +5104,9 @@ For terms of use, see http://www.unicode.org/copyright.html WIR euro - Schweizisk franc - Schweizisk franc - Schweiziske franc + Schweizerfranc + Schweizerfranc + Schweizerfranc CHF @@ -5017,6 +5157,7 @@ For terms of use, see http://www.unicode.org/copyright.html Cubansk konvertible pesos Cubanske konvertible pesos CUC + $ Cubansk peso @@ -5041,6 +5182,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tjekkisk koruna Tjekkiske koruna CZK + Østtysk mark @@ -5063,6 +5205,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dansk krone Danske kroner kr. + kr. Dominikansk peso @@ -5092,6 +5235,7 @@ For terms of use, see http://www.unicode.org/copyright.html Egyptisk pund Egyptiske pund EGP + Eritreisk nakfa @@ -5144,6 +5288,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pund fra Falklandsøerne Pund fra Falklandsøerne FKP + £ Fransk franc @@ -5167,6 +5312,7 @@ For terms of use, see http://www.unicode.org/copyright.html Georgisk lari Georgiske lari GEL + Ghanesisk cedi (1979–2007) @@ -5197,6 +5343,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guineansk franc Guineanske franc GNF + FG Guineansk syli @@ -5218,6 +5365,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guatemalansk quetzal Guatemalanske quetzal GTQ + Q Portugisisk guinea escudo @@ -5248,6 +5396,7 @@ For terms of use, see http://www.unicode.org/copyright.html Honduransk lempira Honduranske lempira HNL + L Kroatisk dinar @@ -5259,6 +5408,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kroatisk kuna Kroatiske kuna HRK + kn Haitisk gourde @@ -5271,12 +5421,14 @@ For terms of use, see http://www.unicode.org/copyright.html Ungarsk forint Ungarske forint HUF + Ft Indonesisk rupiah Indonesisk rupiah Indonesiske rupiah IDR + Rp Irsk pund @@ -5319,6 +5471,7 @@ For terms of use, see http://www.unicode.org/copyright.html Islandsk krone Islandske kroner ISK + kr. Italiensk lire @@ -5369,12 +5522,14 @@ For terms of use, see http://www.unicode.org/copyright.html Comorisk franc Comoriske franc KMF + CF Nordkoreansk won Nordkoreansk won Nordkoreanske won KPW + Sydkoreansk won @@ -5415,12 +5570,14 @@ For terms of use, see http://www.unicode.org/copyright.html Libanesisk pund Libanesiske pund LBP + Srilankansk rupee Srilankansk rupee Srilankanske rupees LKR + Rs Liberisk dollar @@ -5499,6 +5656,7 @@ For terms of use, see http://www.unicode.org/copyright.html Madagaskisk ariary Madagaskiske ariary MGA + Ar Madagaskisk franc @@ -5521,6 +5679,7 @@ For terms of use, see http://www.unicode.org/copyright.html Myanmarsk kyat Myanmarske kyat MMK + K Mongolsk tugrik @@ -5556,6 +5715,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mauritisk rupee Mauritiske rupees MUR + Rs Maldivisk rufiyaa @@ -5586,6 +5746,7 @@ For terms of use, see http://www.unicode.org/copyright.html Malaysisk ringgit Malaysiske ringgit MYR + RM Mozambiquisk escudo @@ -5627,6 +5788,7 @@ For terms of use, see http://www.unicode.org/copyright.html Nicaraguansk cordoba Nicaraguanske cordoba NIO + C$ Hollandsk guilder @@ -5638,12 +5800,14 @@ For terms of use, see http://www.unicode.org/copyright.html Norsk krone Norske kroner NOK + kr. Nepalesisk rupee Nepalesisk rupee Nepalesiske rupees NPR + Rs New Zealandsk dollar @@ -5698,12 +5862,14 @@ For terms of use, see http://www.unicode.org/copyright.html Pakistansk rupee Pakistanske rupees PKR + Rs Polsk zloty Polsk zloty Polske zloty PLN + Polsk zloty (1950–1995) @@ -5750,6 +5916,7 @@ For terms of use, see http://www.unicode.org/copyright.html Russisk rubel Russiske rubler RUB + Russisk rubel (1991–1998) @@ -5761,6 +5928,7 @@ For terms of use, see http://www.unicode.org/copyright.html Rwandisk franc Rwandiske franc RWF + RF Saudiarabisk riyal @@ -5802,6 +5970,7 @@ For terms of use, see http://www.unicode.org/copyright.html Svensk krone Svenske kroner SEK + kr. Singaporeansk dollar @@ -5815,6 +5984,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pund fra Saint Helena Pund fra Saint Helena SHP + £ Slovensk tolar @@ -5862,6 +6032,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dobra fra Sao Tome og Principe Dobra fra Sao Tome og Principe STD + Db Sovjetisk rubel @@ -5878,6 +6049,7 @@ For terms of use, see http://www.unicode.org/copyright.html Syrisk pund Syriske pund SYP + £ Swazilandsk lilangeni @@ -5890,6 +6062,7 @@ For terms of use, see http://www.unicode.org/copyright.html Thailandsk baht Thailandske baht ฿ + ฿ Tadsjikisk rubel @@ -5924,6 +6097,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tongansk paʻanga Tonganske paʻanga TOP + T$ Escudo fra Timor @@ -5941,6 +6115,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tyrkiske lira TRY + TL Dollar fra Trinidad og Tobago @@ -5952,7 +6127,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ny taiwansk dollar Ny taiwansk dollar - Ny taiwanske dollar + Nye taiwanske dollar NT$ NT$ @@ -6030,6 +6205,7 @@ For terms of use, see http://www.unicode.org/copyright.html Venezuelansk bolivar Venezuelanske bolivar VEF + Bs Vietnamesisk dong @@ -6073,6 +6249,7 @@ For terms of use, see http://www.unicode.org/copyright.html Østkaribisk dollar Østkaribiske dollar EC$ + $ SDR @@ -6157,6 +6334,7 @@ For terms of use, see http://www.unicode.org/copyright.html Sydafrikansk rand Sydafrikanske rand ZAR + R Zambisk kwacha (1968–2012) @@ -6168,6 +6346,7 @@ For terms of use, see http://www.unicode.org/copyright.html Zambisk kwacha Zambiske kwacha ZMW + ZK Ny zairisk zaire (1993–1998) @@ -6196,7 +6375,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0} eller derover + {0}+ {0}-{1} @@ -6215,6 +6394,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} meter pr. sekund² {0} meter pr. sekund² + + omdrejning + {0} omdrejning + {0} omdrejninger + + + radian + {0} radian + {0} radianer + + + grader + {0} grad + {0} grader + bueminutter {0} bueminut @@ -6225,30 +6419,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} buesekund {0} buesekunder - - grader - {0} grad - {0} grader - - - radian - {0} radian - {0} radianer - - - acre - {0} acre - {0} acres + + kvadratkilometer + {0} kvadratkilometer + {0} kvadratkilometer hektar {0} hektar {0} hektar + + kvadratmeter + {0} kvadratmeter + {0} kvadratmeter + {0}/m² + kvadratcentimeter {0} kvadratcentimeter {0} kvadratcentimeter + {0}/cm² + + + kvadrat-engelske mil + {0} kvadrat-engelsk mil + {0} kvadrat-engelske mil + + + acre + {0} acre + {0} acres + + + kvadrat-engelske yard + {0} kvadrat engelske yard + {0} kvadrat engelske yard kvadratfod @@ -6259,91 +6465,106 @@ For terms of use, see http://www.unicode.org/copyright.html kvadrattommer {0} kvadrattomme {0} kvadrattommer + {0}/in² - - kvadratkilometer - {0} kvadratkilometer - {0} kvadratkilometer - - - kvadratmeter - {0} kvadratmeter - {0} kvadratmeter - - - kvadrat-engelske mil - {0} kvadrat-engelsk mil - {0} kvadrat-engelske mil - - - kvadrat-engelske yard - {0} kvadrat engelske yard - {0} kvadrat engelske yard + + karat + {0} karat + {0} karat liter pr. kilometer {0} liter pr. kilometer {0} liter pr. kilometer + + liter pr. 100 kilometer + {0} liter pr. 100 kilometer + {0} liter pr. 100 kilometer + mil pr. gallon mil pr. gallon {0} mil pr. gallon - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - gigabit - {0} gigabit - {0} gigabit - - - gigabyte - {0} gigabyte - {0} GB - - - kilobit - {0} kilobit - {0} kilobit - - - kilobyte - {0} kilobyte - {0} kilobyte - - - megabit - {0} megabit - {0} megabit - - - megabyte - {0} megabyte - {0} megabyte - - - terabit - {0} terabit - {0} terabit - terabyte {0} terabyte {0} terabyte + + terabit + {0} terabit + {0} terabit + + + gigabyte + {0} gigabyte + {0} GB + + + gigabit + {0} gigabit + {0} gigabit + + + megabyte + {0} megabyte + {0} megabyte + + + megabit + {0} megabit + {0} megabit + + + kilobyte + {0} kilobyte + {0} kilobyte + + + kilobit + {0} kilobit + {0} kilobit + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + århundreder + {0} århundrede + {0} århundreder + + + år + {0} år + {0} år + {0} om året + + + måneder + {0} måned + {0} måneder + {0} pr. måned + + + uger + {0} uge + {0} uger + {0} pr. uge + dage {0} dag {0} dage + {0} pr. dag timer @@ -6351,30 +6572,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} timer {0} pr. time - - mikrosekunder - {0} mikrosekund - {0} mikrosekunder - - - millisekunder - {0} millisekund - {0} millisekunder - minutter {0} minut {0} minutter - - - måneder - {0} måned - {0} måneder - - - nanosekunder - {0} nanosekund - {0} nanosekunder + {0} pr. min. sekunder @@ -6382,15 +6584,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sekunder {0} pr. sekund - - uger - {0} uge - {0} uger + + millisekunder + {0} millisekund + {0} millisekunder - - år - {0} år - {0} år + + mikrosekunder + {0} mikrosekund + {0} mikrosekunder + + + nanosekunder + {0} nanosekund + {0} nanosekunder ampere @@ -6412,6 +6619,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volt + + kilokalorier + {0} kilokalorie + {0} kilokalorier + kalorier {0} kalorie @@ -6422,21 +6634,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kalorie {0} kalorier - - joule - {0} joule - {0} joule - - - kilokalorier - {0} kilokalorie - {0} kilokalorier - kilojoule {0} kilojoule {0} kilojoule + + joule + {0} joule + {0} joule + kilowatt-timer kilowatt-time @@ -6447,201 +6654,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigahertz {0} gigahertz - - hertz - {0} hertz - {0} hertz + + megahertz + {0} megahertz + {0} megahertz kilohertz {0} kilohertz {0} kilohertz - - megahertz - {0} megahertz - {0} megahertz + + hertz + {0} hertz + {0} hertz - - astronomiske enheder - {0} astronomisk enhed - {0} astronomiske enheder + + kilometer + {0} kilometer + {0} kilometer + {0} pr. kilometer - - centimeter - {0} centimeter - {0} centimeter + + meter + {0} meter + {0} meter + {0} pr. meter decimeter {0} decimeter {0} decimeter - - fod - {0} fod - {0} fod - - - tommer - {0} tomme - {0} tommer - - - kilometer - {0} kilometer - {0} kilometer - - - lysår - {0} lysår - {0} lysår - - - meter - {0} meter - {0} meter - - - mikrometer - {0} mikrometer - {0} mikrometer - - - engelske mil - {0} engelsk mil - {0} engelske mil + + centimeter + {0} centimeter + {0} centimeter + {0} pr. centimeter millimeter {0} millimeter {0} millimeter + + mikrometer + {0} mikrometer + {0} mikrometer + nanometer {0} nanometer {0} nanometer - - sømil - {0} sømil - {0} sømil - - - parsec - {0} parsec - {0} parsec - pikometer {0} pikometer {0} pikometer + + engelske mil + {0} engelsk mil + {0} engelske mil + engelske yard {0} engelsk yard {0} engelske yard + + fod + {0} fod + {0} fod + {0} pr. fod + + + tommer + {0} tomme + {0} tommer + {0} pr. tomme + + + parsec + {0} parsec + {0} parsec + + + lysår + {0} lysår + {0} lysår + + + astronomiske enheder + {0} astronomisk enhed + {0} astronomiske enheder + + + sømil + {0} sømil + {0} sømil + + + svensk mil + {0} svensk mil + {0} svenske mil + lux {0} lux {0} lux - - karat - {0} karat - {0} karat - - - gram - {0} gram - {0} gram - - - kilogram - {0} kilogram - {0} kilogram - tons {0} ton {0} tons - - mikrogram - {0} mikrogram - {0} mikrogram + + kilogram + {0} kilogram + {0} kilogram + {0} pr. kg + + + gram + {0} gram + {0} gram + {0} pr. gram milligram {0} milligram {0} milligram - - ounces - {0} ounce - {0} ounces - - - troy ounces - {0} troy ounce - {0} troy ounces - - - pund - {0} pund - {0} pund + + mikrogram + {0} mikrogram + {0} mikrogram short ton {0} short ton {0} short ton + + pund + {0} pund + {0} pund + {0} pr. pund + + + ounces + {0} ounce + {0} ounces + {0} pr. ounce + + + troy ounces + {0} troy ounce + {0} troy ounces + + + karat + {0} karat + {0} karat + gigawatt {0} gigawatt {0} gigawatt - - hestekræfter - {0} hestekraft - {0} hestekræfter - - - kilowatt - {0} kilowatt - {0} kilowatt - megawatt {0} megawatt {0} megawatt - - milliwatt - {0} milliwatt - {0} milliwatt + + kilowatt + {0} kilowatt + {0} kilowatt watt {0} watt {0} watt + + milliwatt + {0} milliwatt + {0} milliwatt + + + hestekræfter + {0} hestekraft + {0} hestekræfter + hektopascal {0} hektopascal {0} hektopascal - - tommer kviksølv - {0} tomme kviksølv - {0} tommer kviksølv - - - millibar - {0} millibar - {0} millibar - millimeter kviksølv {0} millimeter kviksølv @@ -6652,10 +6863,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pounds pr. kvadrattomme {0} pounds pr. kvadrattommer - - karat - {0} karat - {0} karat + + tommer kviksølv + {0} tomme kviksølv + {0} tommer kviksølv + + + millibar + {0} millibar + {0} millibar kilometer i timen @@ -6672,46 +6888,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} engelsk mil i timen {0} engelske mil i timen + + knob + {0} knob + {0} knob + + + ° + {0}° + {0}° + - grader celsius - {0} grad Celsius - {0} grader Celsius + grader celsius + {0} grad celsius + {0} grader celsius - grader Fahrenheit - {0} grad Fahrenheit - {0} grader Fahrenheit + grader fahrenheit + {0} grad fahrenheit + {0} grader fahrenheit kelvin {0} kelvin {0} kelvin - - acre-fod - {0} acre-fod - {0} acre-fod - - - centiliter - {0} centiliter - {0} centiliter - - - kubikcentimeter - {0} kubikcentimeter - {0} kubikcentimeter - - - kubikfod - {0} kubikfod - {0} kubikfod - - - kubiktommer - {0} kubiktomme - {0} kubiktommer - kubikkilometer {0} kubikkilometer @@ -6721,6 +6922,13 @@ For terms of use, see http://www.unicode.org/copyright.html kubikmeter {0} kubikmeter {0} kubikmeter + {0}/m³ + + + kubikcentimeter + {0} kubikcentimeter + {0} kubikcentimeter + {0}/cm³ kubik-engelske mil @@ -6732,25 +6940,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubik-engelske yard {0} kubik-engelske yard - - engelske kopper - engelsk kop - {0} engelske kopper + + kubikfod + {0} kubikfod + {0} kubikfod - - deciliter - {0} deciliter - {0} deciliter + + kubiktommer + {0} kubiktomme + {0} kubiktommer - - engelske fluid ounces - {0} engelsk fluid ounce - {0} engelske fluid ounces - - - gallons - {0} gallon - {0} gallons + + megaliter + {0} megaliter + {0} megaliter hektoliter @@ -6761,27 +6964,64 @@ For terms of use, see http://www.unicode.org/copyright.html liter {0} liter {0} liter + {0}/l - - megaliter - {0} megaliter - {0} megaliter + + deciliter + {0} deciliter + {0} deciliter + + + centiliter + {0} centiliter + {0} centiliter milliliter {0} milliliter {0} milliliter - - pints - {0} pint - {0} pints + + metrisk pint + {0} metrisk pint + {0} metriske pints + + + metrisk kop + {0} metrisk kop + {0} metriske kopper + + + acre-fod + {0} acre-fod + {0} acre-fod + + + gallons + {0} gallon + {0} gallons + {0}/gal engelske quarts {0} engelsk quart {0} engelske quarts + + pints + {0} pint + {0} pints + + + cups + cup + {0} cups + + + engelske fluid ounces + {0} engelsk fluid ounce + {0} engelske fluid ounces + spiseske {0} spiseske @@ -6792,6 +7032,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} teske {0} teskeer + + {0}Ø + {0}N + {0}S + {0}V + @@ -6807,6 +7053,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + omdrejning + {0} omdrejning + {0} omdrejninger + + + radian + {0} radian + {0} radian + + + grader + {0}° + {0}° + bueminutter {0}′ @@ -6817,30 +7078,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - grader - {0}° - {0}° - - - radian - {0} radian - {0} radian - - - acre - {0} ac - {0} ac + + km² + {0} km² + {0} km² hektar {0} ha {0} ha + + + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + + + acre + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² kvadratfod @@ -6851,91 +7124,106 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² + + karat + {0} kt + {0} kt l/km {0} l/km {0} l/km + + l/100 km + {0} l/100 km + {0} l/100 km + mpg {0} mpg {0} mpg - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - Gbit - {0} Gbit - {0} Gbit - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gbit + {0} Gbit + {0} Gbit + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + årh. + {0} årh. + {0} årh. + + + år + {0} år + {0} år + {0}/år + + + måneder + {0} md. + {0} mdr. + {0}/md. + + + uger + {0} uge + {0} uger + {0}/uge + dage {0} dag {0} dage + {0}/dag timer @@ -6943,47 +7231,33 @@ For terms of use, see http://www.unicode.org/copyright.html {0} t {0} /t - - μs - {0} μs - {0} μs + + minutter + {0} min. + {0} min. + {0}/min. + + + sekunder + {0} sek. + {0} sek. + {0}/sek. milisek. {0} ms {0} ms - - minutter - {0} min - {0} min - - - måneder - {0} md. - {0} mdr. + + μs + {0} μs + {0} μs ns {0} ns {0} ns - - sekunder - {0} sek - {0} sek - {0} /sek - - - uger - {0} uge - {0} uger - - - år - {0} år - {0} år - A {0} A @@ -7004,6 +7278,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -7014,21 +7293,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - joule - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + joule + {0} J + {0} J + kWh {0} kWh @@ -7039,201 +7313,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - ae - {0} ae - {0} ae + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + meter + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - fod - {0} fod - {0} fod - - - tommer - {0} tomme - {0} tommer - - - km - {0} km - {0} km - - - lysår - {0} ly - {0} ly - - - meter - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - engelske mil - {0} mil - {0} mil + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - sømil - {0} sm - {0} sm - - - pc - {0} pc - {0} pc - pm {0} pm {0} pm + + engelske mil + {0} mil + {0} mil + engelske yard {0} yard {0} yard + + fod + {0} fod + {0} fod + {0}/ft + + + tommer + {0} tomme + {0} tommer + {0}/tomme + + + pc + {0} pc + {0} pc + + + lysår + {0} ly + {0} ly + + + ae + {0} ae + {0} ae + + + sømil + {0} sm + {0} sm + + + smi + {0} smi + {0} smi + lx {0} lx {0} lx - - kt. - {0} kt. - {0} kt. - - - gram - {0} g - {0} g - - - kilogram - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kilogram + {0} kg + {0} kg + {0}/kg + + + gram + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - oz - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - - - pund - {0} lb - {0} lb + + µg + {0} µg + {0} µg tn {0} tn {0} tn + + pund + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0}/oz + + + oz t + {0} oz t + {0} oz t + + + kt. + {0} kt. + {0} kt. + GW {0} GW {0} GW - - hk - {0} hk - {0} hk - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW W {0} W {0} W + + mW + {0} mW + {0} mW + + + hk + {0} hk + {0} hk + hPa {0} hPa {0} hPa - - # Hg - {0} # Hg - {0} # Hg - - - mbar - {0} mbar - {0} mbar - mmHg {0} mmHg @@ -7244,10 +7522,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - karat - {0} kt - {0} kt + + # Hg + {0} # Hg + {0} # Hg + + + mbar + {0} mbar + {0} mbar km/t @@ -7264,6 +7547,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mph {0} mph + + knob + {0} knob + {0} knob + + + ° + {0}° + {0}° + °C {0}°C @@ -7279,31 +7572,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - - - cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -7313,6 +7581,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -7324,25 +7599,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - engelsk kop - {0} c - {0} c + + ft³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl + + in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML hl @@ -7353,27 +7623,64 @@ For terms of use, see http://www.unicode.org/copyright.html liter {0} l {0} l + {0}/l - - ML - {0} ML - {0} ML + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl ml {0} ml {0} ml - - pt - {0} pt - {0} pt + + mpt + mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0}/gal qt {0} qt {0} qt + + pt + {0} pt + {0} pt + + + cups + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + spsk. {0} spsk. @@ -7384,6 +7691,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsk. {0} tsk. + + {0}Ø + {0}N + {0}S + {0}V + @@ -7397,6 +7710,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}m/s² {0}m/s² + + {0}° + {0}° + {0}′ {0}′ @@ -7405,26 +7722,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0}ac - {0}ac + + {0}km² + {0}km² {0}ha {0}ha - - {0} ft² - {0} ft² - - - {0}km² - {0}km² - {0}m² {0}m² @@ -7433,66 +7738,120 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² - - dag - {0} d - {0} d + + {0}ac + {0}ac - - time - {0} t - {0} t + + {0} ft² + {0} ft² - - {0}μs - {0}μs + + l/100 km + {0} l/100 km + {0} l/100 km - - ms - {0} ms - {0} ms + + årh. + {0} årh. + {0} årh. - - min - {0} m - {0} min + + år + {0} år + {0} år + {0}/år måned {0} m {0} m - - {0}ns - {0}ns + + uge + {0} u + {0} u + {0}/u + + + dag + {0} d + {0} d + {0}/d + + + time + {0} t + {0} t + + + min + {0} m + {0} min + {0}/min sek {0} s {0} s - - uge - {0} u - {0} u + + ms + {0} ms + {0} ms - - år - {0} år - {0} år + + {0}μs + {0}μs - - {0} ae - {0} ae + + {0}ns + {0}ns + + + km + {0} km + {0} km + + + meter + {0} m + {0} m + {0}/m + + + {0}dm + {0}dm cm {0} cm {0} cm - - {0}dm - {0}dm + + mm + {0} mm + {0} mm + + + {0}μm + {0}μm + + + {0}nm + {0}nm + + + {0}pm + {0}pm + + + {0} mil + {0} mil + + + {0} yard + {0} yard {0} fod @@ -7502,86 +7861,56 @@ For terms of use, see http://www.unicode.org/copyright.html {0}" {0}" - - km - {0} km - {0} km + + {0} pc + {0} pc {0} lysår {0} lysår - - m - {0} m - {0} m - - - {0}μm - {0}μm - - - {0} mil - {0} mil - - - mm - {0} mm - {0} mm - - - {0}nm - {0}nm + + {0} ae + {0} ae {0} sømil {0} sømil - - {0} pc - {0} pc + + sv. mil + {0}sv.mil + {0}sv.mil - - {0}pm - {0}pm - - - {0} yard - {0} yard - - - g - {0} g - {0} g + + {0}t + {0}t kg {0} kg {0} kg - - {0}t - {0}t + + g + {0} g + {0} g {0}mg {0}mg - - {0} unse - {0} unser + + {0} tn + {0} tn {0} pund {0} pund - - {0} tn - {0} tn - - - {0}hk - {0}hk + + {0} unse + {0} unser {0}kW @@ -7591,10 +7920,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0}W {0}W + + {0}hk + {0}hk + {0}hPa {0}hPa + + {0}mm Hg + {0}mm Hg + {0}" Hg {0}" Hg @@ -7603,10 +7940,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mbar {0}mbar - - {0}mm Hg - {0}mm Hg - km/t {0} km/t @@ -7620,6 +7953,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mph {0} mph + + ° + {0}° + {0}° + °C {0}°C @@ -7633,10 +7971,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0}K {0}K + + {0}km³ + {0}km³ + + + {0}m³ + {0}m³ + {0}cm³ {0}cm³ + + {0} mi³ + {0} mi³ + {0} fod³ {0} fod³ @@ -7645,21 +7995,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in³ {0} in³ - - {0}km³ - {0}km³ - - - {0}m³ - {0}m³ - - - {0} mi³ - {0} mi³ - - - {0}dL - {0}dL + + {0}ML + {0}ML {0}hL @@ -7670,9 +8008,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l - - {0}ML - {0}ML + + {0}dL + {0}dL {0}mL @@ -7686,6 +8024,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsk {0} tsk + + {0}Ø + {0}N + {0}S + {0}V + h.mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/da_DK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/da_DK.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/da_DK.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/da_DK.xml index 1ba0a43d198..55aa2728045 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/da_DK.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/da_DK.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/da_GL.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/da_GL.xml new file mode 100644 index 00000000000..01443f47439 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/da_GL.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + h.mm.ss a zzzz + + + + + h.mm.ss a z + + + + + h.mm.ss a + + + + + h.mm a + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dav.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dav.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dav.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dav.xml index 5553c12dfd0..c88be1918a3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dav.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dav.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antili za Uholanzi Angola Ajentina Samoa ya Marekani @@ -450,6 +448,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Luma lwa K + luma lwa p + Luma lwa K luma lwa p @@ -491,22 +493,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -585,6 +587,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤00K + ¤000K + ¤0M + ¤00M + ¤000M + ¤0G + ¤00G + ¤000G + ¤0T + ¤00T + ¤000T + + @@ -762,3 +780,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dav_KE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dav_KE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dav_KE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dav_KE.xml index 0a5b3e8c756..7d8dee68c11 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dav_KE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dav_KE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de.xml index ca114b2786e..7ab857d9e83 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de.xml @@ -1,13 +1,12 @@ - - - + @@ -31,7 +30,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ainu-Sprache Akan Akkadisch - Alabama + Alabama Aleutisch Gegisch Süd-Altaisch @@ -42,16 +41,16 @@ For terms of use, see http://www.unicode.org/copyright.html Arabisch Modernes Hocharabisch Aramäisch - Araukanisch - Araona + Mapudungun + Araona Arapaho-Sprache - Algerisches Arabisch + Algerisches Arabisch Arawak-Sprache Marokkanisches Arabisch Ägyptisches Arabisch Assamesisch Pare - Amerikanische Gebärdensprache + Amerikanische Gebärdensprache Asturianisch Awarisch Kotava @@ -59,50 +58,50 @@ For terms of use, see http://www.unicode.org/copyright.html Aymara Aserbaidschanisch Aserbaidschanisch - Südaserbaidschanisch Baschkirisch Belutschisch Balinesisch - Bairisch + Bairisch Basaa-Sprache - Bamun - Batak Toba + Bamun + Batak Toba Ghomala Weißrussisch Bedauye - Bemba-Sprache - Betawi + Bemba + Betawi Bena - Bafut - Badaga + Bafut + Badaga Bulgarisch + Westliches Belutschi Bhodschpuri Bislama Bikol-Sprache Bini-Sprache - Banjaresisch + Banjaresisch Kom Blackfoot-Sprache - Bambara-Sprache + Bambara Bengalisch Tibetisch - Bishnupriya - Bachtiarisch + Bishnupriya + Bachtiarisch Bretonisch Braj-Bhakha - Brahui + Brahui Bodo Bosnisch - Akoose + Akoose Burjatisch Buginesisch - Bulu + Bulu Blin Medumba Katalanisch Caddo Karibisch - Cayuga + Cayuga Atsam Tschetschenisch Cebuano @@ -117,10 +116,10 @@ For terms of use, see http://www.unicode.org/copyright.html Chipewyan Cherokee Cheyenne - Sorani + Zentralkurdisch Korsisch Koptisch - Capiznon + Capiznon Cree Krimtatarisch Tschechisch @@ -142,14 +141,14 @@ For terms of use, see http://www.unicode.org/copyright.html Zarma Dogri Niedersorbisch - Zentral-Dusun + Zentral-Dusun Duala Mittelniederländisch Maledivisch Diola Dyula-Sprache - Bhutanisch - Dazaga + Dzongkha + Dazaga Embu Ewe Efik @@ -171,7 +170,7 @@ For terms of use, see http://www.unicode.org/copyright.html Lateinamerikanisches Spanisch Europäisches Spanisch Mexikanisches Spanisch - Zentral-Alaska-Yupik + Zentral-Alaska-Yupik Estnisch Baskisch Ewondo @@ -189,10 +188,10 @@ For terms of use, see http://www.unicode.org/copyright.html Französisch Kanadisches Französisch Schweizer Französisch - Cajun + Cajun Mittelfranzösisch Altfranzösisch - Frankoprovenzalisch + Frankoprovenzalisch Nordfriesisch Ostfriesisch Friulisch @@ -225,7 +224,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gusii Manx Kutchin-Sprache - Hausa + Haussa Haida-Sprache Hakka Hawaiisch @@ -239,7 +238,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kroatisch Obersorbisch Xiang - Haitianisch + Haiti-Kreolisch Ungarisch Hupa Armenisch @@ -266,7 +265,7 @@ For terms of use, see http://www.unicode.org/copyright.html Machame Jüdisch-Persisch Jüdisch-Arabisch - Jütisch + Jütisch Javanisch Georgisch Karakalpakisch @@ -295,7 +294,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kako Grönländisch Kalenjin - Kambodschanisch + Khmer Kimbundu-Sprache Kannada Koreanisch @@ -309,10 +308,10 @@ For terms of use, see http://www.unicode.org/copyright.html Kinaray-a Karelisch Oraon-Sprache - Kaschmirisch + Kaschmiri Shambala Bafia - Kölsch + Kölsch Kurdisch Kumükisch Kutenai-Sprache @@ -337,6 +336,7 @@ For terms of use, see http://www.unicode.org/copyright.html Laotisch Mongo Rotse-Sprache + Nördliches Luri Litauisch Lettgallisch Luba-Katanga @@ -350,13 +350,13 @@ For terms of use, see http://www.unicode.org/copyright.html Klassisches Chinesisch Lasisch Maduresisch - Mafa + Mafa Khotta Maithili Makassarisch Manding-Sprache - Massai-Sprache - Maba + Massai + Maba Moksha Mandaresisch Mende-Sprache @@ -390,20 +390,21 @@ For terms of use, see http://www.unicode.org/copyright.html Birmanisch Myene Ersja-Mordwinisch - Masanderanisch + Masanderanisch Nauruisch Min Nan Neapolitanisch Nama Norwegisch Bokmål - Nord-Ndebele-Sprache + Nord-Ndebele Niederdeutsch + Niedersächsisch Nepalesisch Newari Ndonga Nias-Sprache Niue-Sprache - Ao-Naga + Ao-Naga Niederländisch Flämisch Kwasio @@ -431,7 +432,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ossetisch Osage-Sprache Osmanisch - Panjabi + Punjabi Pangasinan-Sprache Mittelpersisch Pampanggan-Sprache @@ -455,15 +456,15 @@ For terms of use, see http://www.unicode.org/copyright.html Brasilianisches Portugiesisch Europäisches Portugiesisch Quechua - K’iche’ - Chimborazo Hochland-Quechua + K’iche’ + Chimborazo Hochland-Quechua Rajasthani Osterinsel-Sprache Rarotonganisch Romagnol Tarifit Rätoromanisch - Rundi-Sprache + Rundi Rumänisch Moldauisch Rombo @@ -474,7 +475,7 @@ For terms of use, see http://www.unicode.org/copyright.html Russinisch Roviana Aromunisch - Ruandisch + Kinyarwanda Rwa Sanskrit Sandawe-Sprache @@ -491,7 +492,8 @@ For terms of use, see http://www.unicode.org/copyright.html Schottisch Sindhi Sassarisch - Nord-Samisch + Südkurdisch + Nordsamisch Seneca Sena Seri @@ -503,7 +505,7 @@ For terms of use, see http://www.unicode.org/copyright.html Serbo-Kroatisch Taschelhit Schan-Sprache - Tschadisch-Arabisch + Tschadisch-Arabisch Singhalesisch Sidamo Slowakisch @@ -511,10 +513,10 @@ For terms of use, see http://www.unicode.org/copyright.html Schlesisch Selayar Samoanisch - Süd-Samisch - Lule-Lappisch - Inari-Lappisch - Skolt-Lappisch + Südsamisch + Lule-Samisch + Inari-Samisch + Skolt-Samisch Shona Soninke-Sprache Somali @@ -533,12 +535,12 @@ For terms of use, see http://www.unicode.org/copyright.html Sumerisch Schwedisch Suaheli + Kongo-Suaheli Komorisch - Kongo-Suaheli Altsyrisch Syrisch Schlesisch (Polen) - Tamilisch + Tamil Tulu Telugu Temne @@ -547,7 +549,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tetum-Sprache Tadschikisch Thailändisch - Tigrinja + Tigrinya Tigre Tiv-Sprache Turkmenisch @@ -591,7 +593,7 @@ For terms of use, see http://www.unicode.org/copyright.html Wepsisch Vietnamesisch Westflämisch - Mainfränkisch + Mainfränkisch Volapük Wotisch Võro @@ -601,6 +603,7 @@ For terms of use, see http://www.unicode.org/copyright.html Walamo-Sprache Waray Washo-Sprache + Warlpiri Wolof Wu Kalmückisch @@ -837,7 +840,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albanien Armenien - Niederländische Antillen Angola Antarktis Argentinien @@ -916,7 +918,7 @@ For terms of use, see http://www.unicode.org/copyright.html Frankreich Gabun Vereinigtes Königreich - UK + GB Grenada Georgien Französisch-Guayana @@ -936,7 +938,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guyana Sonderverwaltungszone Hongkong Hongkong - Heard- und McDonald-Inseln + Heard und McDonaldinseln Honduras Kroatien Haiti @@ -1079,7 +1081,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tansania Ukraine Uganda - Amerikanisch-Ozeanien + Amerikanische Überseeinseln Vereinigte Staaten USA Uruguay @@ -1148,6 +1150,9 @@ For terms of use, see http://www.unicode.org/copyright.html Sortierung nach Zahlen Sortierstärke Währung + Stundenzählung (12 vs. 24) + Zeilenumbruchstil + Maßsystem Zahlen Zeitzone Lokale Variante @@ -1155,120 +1160,130 @@ For terms of use, see http://www.unicode.org/copyright.html Privatnutzung - Arabisch-indische Ziffern - Erweiterte arabisch-indische Ziffern - Armenische Ziffern - Armenische Ziffern in Kleinschrift - Balinesische Ziffern - Bengalische Ziffern - Traditionelles Chinesisch - Big5 - Brahmi-Ziffern - Buddhistischer Kalender - Chakma-Ziffern - Cham-Ziffern - Chinesischer Kalender - Koptischer Kalender - Dangi Kalender - Devanagari-Ziffern - Lexikographische Sortierreihenfolge - Unicode-Sortierung - Europäische Sortierregeln - Äthiopische Ziffern - Äthiopischer Kalender - Äthiopischer Kalender "Amete Alem" - Finanzzahlen - Vollbreite Ziffern - Vereinfachtes Chinesisch - GB2312 - Georgische Ziffern - Gregorianischer Kalender - Griechische Ziffern - Griechische Ziffern in Kleinschrift - Gujarati-Ziffern - Gurmukhi-Ziffern - Chinesische Dezimalzahlen - Vereinfacht-chinesische Ziffern - Vereinfacht-chinesische Finanzziffern - Traditionell-chinesische Ziffern - Traditionell-chinesische Finanzziffern - Hebräische Ziffern - Hebräischer Kalender - Alle sortieren - Indischer Nationalkalender - Islamischer Kalender - Bürgerlicher islamischer Kalender - Islamischer Kalender (Saudi-Arabien, Beobachtung) - Islamischer Kalender (tabellarisch, astronomische Epoche) - Islamischer Kalender (Umm al-Qura - ISO-8601-Kalender - Japanischer Kalender - Javanesische Ziffern - Japanische Ziffern - Japanische Finanzziffern - Kayah-Li-Ziffern - Khmer-Ziffern - Kannada-Ziffern - Lanna-Ziffern (säkular) - Lanna-Ziffern (sakral) - Laotische Ziffern - Westliche Ziffern - Lepcha-Ziffern - Limbu-Ziffern - Kleinbuchstaben zuerst aufführen - Malayalam-Ziffern - Mongolische Ziffern - Meitei-Mayek-Ziffern - Myanmar-Ziffern - Myanmarische Shan-Ziffern - Native Ziffern - N’Ko-Ziffern - Akzente normal sortieren - Normal sortieren - Ohne Groß-/Kleinschreibung sortieren - Kana separat sortieren - Ohne Normierung sortieren - Ziffern einzeln sortieren - Symbole sortieren - Ol-Chiki-Ziffern - Oriya-Ziffern - Persischer Kalender - Telefonbuch-Sortierung - Sortierung nach Phonetik - Pinyin-Sortierregeln - Nur Basisbuchstaben sortieren - Akzente/Fall/Breite/Kana sortieren - Reformierte Sortierreihenfolge - Kalender der Republik China - Römische Ziffern - Römische Ziffern in Kleinschrift - Saurashtra-Ziffern - Allgemeine Suche - Suche nach Anfangsbuchstaben des koreanischen Alphabets - Akzente sortieren - Symbole sortieren ignorieren - Sharada-Ziffern - Sora-Sompeng-Ziffern - Standard-Sortierung - Strichfolge - Sundanesische Ziffern - Takri-Ziffern - Neue Tai-Lü-Ziffern - Tamilische Ziffern - Tamil-Ziffern - Telugu-Ziffern - Akzente/Fall/Breite sortieren - Thai-Ziffern - Tibetische Ziffern - Traditionelle Sortierregeln - Traditionelle Zahlen - Radikal-Strich-Sortierregeln - Großbuchstaben zuerst aufführen - Vai-Ziffern - Akzente umgekehrt sortieren - Nach Groß-/Kleinschreibung sortieren - Kana anders sortieren - Nach Unicode sortieren - Ziffern numerisch sortieren - Zhuyin-Sortierregeln + Buddhistischer Kalender + Chinesischer Kalender + Koptischer Kalender + Dangi Kalender + Äthiopischer Kalender + Äthiopischer Kalender "Amete Alem" + Gregorianischer Kalender + Hebräischer Kalender + Indischer Nationalkalender + Islamischer Kalender + Bürgerlicher islamischer Kalender + Islamischer Kalender (Saudi-Arabien, Beobachtung) + Islamischer Kalender (tabellarisch, astronomische Epoche) + Islamischer Kalender (Umm al-Qura + ISO-8601-Kalender + Japanischer Kalender + Persischer Kalender + Kalender der Republik China + Symbole sortieren + Symbole sortieren ignorieren + Akzente normal sortieren + Akzente umgekehrt sortieren + Kleinbuchstaben zuerst aufführen + Normal sortieren + Großbuchstaben zuerst aufführen + Ohne Groß-/Kleinschreibung sortieren + Nach Groß-/Kleinschreibung sortieren + Kana separat sortieren + Kana anders sortieren + Traditionelles Chinesisch - Big5 + Lexikographische Sortierreihenfolge + Unicode-Sortierung + Europäische Sortierregeln + Vereinfachtes Chinesisch - GB2312 + Telefonbuch-Sortierung + Sortierung nach Phonetik + Pinyin-Sortierregeln + Reformierte Sortierreihenfolge + Allgemeine Suche + Suche nach Anfangsbuchstaben des koreanischen Alphabets + Standard-Sortierung + Strichfolge + Traditionelle Sortierregeln + Radikal-Strich-Sortierregeln + Zhuyin-Sortierregeln + Ohne Normierung sortieren + Nach Unicode sortieren + Ziffern einzeln sortieren + Ziffern numerisch sortieren + Alle sortieren + Nur Basisbuchstaben sortieren + Akzente/Fall/Breite/Kana sortieren + Akzente sortieren + Akzente/Fall/Breite sortieren + 12-Stunden-Zählung (0-11) + 12-Stunden-Zählung (1-12) + 24-Stunden-Zählung (0-23) + 24-Stunden-System (1-24) + lockerer Zeilenumbruch + normaler Zeilenumbruch + fester Zeilenumbruch + metrisches System + britisches Maßsystem + US-Maßsystem + Arabisch-indische Ziffern + Erweiterte arabisch-indische Ziffern + Armenische Ziffern + Armenische Ziffern in Kleinschrift + Balinesische Ziffern + Bengalische Ziffern + Brahmi-Ziffern + Chakma-Ziffern + Cham-Ziffern + Devanagari-Ziffern + Äthiopische Ziffern + Finanzzahlen + Vollbreite Ziffern + Georgische Ziffern + Griechische Ziffern + Griechische Ziffern in Kleinschrift + Gujarati-Ziffern + Gurmukhi-Ziffern + Chinesische Dezimalzahlen + Vereinfacht-chinesische Ziffern + Vereinfacht-chinesische Finanzziffern + Traditionell-chinesische Ziffern + Traditionell-chinesische Finanzziffern + Hebräische Ziffern + Javanesische Ziffern + Japanische Ziffern + Japanische Finanzziffern + Kayah-Li-Ziffern + Khmer-Ziffern + Kannada-Ziffern + Lanna-Ziffern (säkular) + Lanna-Ziffern (sakral) + Laotische Ziffern + Westliche Ziffern + Lepcha-Ziffern + Limbu-Ziffern + Malayalam-Ziffern + Mongolische Ziffern + Meitei-Mayek-Ziffern + Myanmar-Ziffern + Myanmarische Shan-Ziffern + Native Ziffern + N’Ko-Ziffern + Ol-Chiki-Ziffern + Oriya-Ziffern + Römische Ziffern + Römische Ziffern in Kleinschrift + Saurashtra-Ziffern + Sharada-Ziffern + Sora-Sompeng-Ziffern + Sundanesische Ziffern + Takri-Ziffern + Neue Tai-Lü-Ziffern + Tamilische Ziffern + Tamil-Ziffern + Telugu-Ziffern + Thai-Ziffern + Tibetische Ziffern + Traditionelle Zahlen + Vai-Ziffern BGN @@ -1384,6 +1399,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d. MMM E, d. MMM + d. MMMM mm:ss U U @@ -1445,6 +1461,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E, d. y G MMM y G @@ -1462,6 +1479,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d. MMM E, d. MMM + d. MMMM mm:ss y G y G @@ -1788,30 +1806,73 @@ For terms of use, see http://www.unicode.org/copyright.html + + Mitternacht + vorm. + nachm. + morgens + vormittags + mittags + nachmittags + abends + nachts + + Mitternacht vm. - m. nm. + morgens + vormittags + mittags + nachmittags + abends + nachts - nachmittags + Mitternacht vorm. - morgens - abends - vormittags - nachts - mittags nachm. + morgens + vormittags + mittags + nachmittags + abends + nachts + + Mitternacht + vorm. + nachm. + Morgen + Vormittag + Mittag + Nachmittag + Abend + Nacht + + + Mitternacht + vorm. + nachm. + Morgen + Vormittag + Mittag + Nachmittag + Abend + Nacht + - Nachmittag - Morgen - Abend - Vormittag - Nacht - Mittag + Mitternacht + vorm. + nachm. + Morgen + Vormittag + Mittag + Nachmittag + Abend + Nacht @@ -1930,6 +1991,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d. MMM E, d. MMM + d. MMMM E, d. MMMM mm:ss y @@ -1966,8 +2028,8 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm–h:mm a - HH:mm–HH:mm - HH:mm–HH:mm + HH:mm–HH:mm 'Uhr' + HH:mm–HH:mm 'Uhr' h:mm a – h:mm a v @@ -1975,8 +2037,8 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm–h:mm a v - HH:mm–HH:mm v - HH:mm–HH:mm v + HH:mm–HH:mm 'Uhr' v + HH:mm–HH:mm 'Uhr' v h a – h a v @@ -2065,12 +2127,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Taika (645-650) + Taika (645–650) - @@ -2123,6 +2182,9 @@ For terms of use, see http://www.unicode.org/copyright.html Jahr + letztes Jahr + dieses Jahr + nächstes Jahr in {0} Jahr in {0} Jahren @@ -2134,6 +2196,9 @@ For terms of use, see http://www.unicode.org/copyright.html J + letztes Jahr + dieses Jahr + nächstes Jahr in {0} Jahr in {0} Jahren @@ -2192,6 +2257,9 @@ For terms of use, see http://www.unicode.org/copyright.html Monat + letzten Monat + diesen Monat + nächsten Monat in {0} Monat in {0} Monaten @@ -2203,6 +2271,9 @@ For terms of use, see http://www.unicode.org/copyright.html M + letzten Monat + diesen Monat + nächsten Monat in {0} Monat in {0} Monaten @@ -2228,6 +2299,9 @@ For terms of use, see http://www.unicode.org/copyright.html Woche + letzte Woche + diese Woche + nächste Woche in {0} Woche in {0} Wochen @@ -2239,6 +2313,9 @@ For terms of use, see http://www.unicode.org/copyright.html W + letzte Woche + diese Woche + nächste Woche in {0} Wo. in {0} Wo. @@ -2266,6 +2343,11 @@ For terms of use, see http://www.unicode.org/copyright.html Tag + vorgestern + gestern + heute + morgen + übermorgen in {0} Tag in {0} Tagen @@ -2277,6 +2359,11 @@ For terms of use, see http://www.unicode.org/copyright.html Tag + vorgestern + gestern + heute + morgen + übermorgen in {0} Tag in {0} Tagen @@ -3191,7 +3278,7 @@ For terms of use, see http://www.unicode.org/copyright.html Maseru - Wilna + Vilnius Luxemburg @@ -3376,6 +3463,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -3460,6 +3550,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Tschita + Jakutsk @@ -3478,6 +3571,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolymsk + Kamtschatka @@ -3849,9 +3945,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Zeit in Apia - Normalzeit in Apia - Sommerzeit in Apia + Apia-Zeit + Apia-Normalzeit + Apia-Sommerzeit @@ -4103,7 +4199,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Kaliningrader Zeit + Kaliningrader Zeit @@ -4837,6 +4933,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 Tsd'.' ¤ + 0 Tsd'.' ¤ + 00 Tsd'.' ¤ + 00 Tsd'.' ¤ + 000 Tsd'.' ¤ + 000 Tsd'.' ¤ + 0 Mio'.' ¤ + 0 Mio'.' ¤ + 00 Mio'.' ¤ + 00 Mio'.' ¤ + 000 Mio'.' ¤ + 000 Mio'.' ¤ + 0 Mrd'.' ¤ + 0 Mrd'.' ¤ + 00 Mrd'.' ¤ + 00 Mrd'.' ¤ + 000 Mrd'.' ¤ + 000 Mrd'.' ¤ + 0 Bio'.' ¤ + 0 Bio'.' ¤ + 00 Bio'.' ¤ + 00 Bio'.' ¤ + 000 Bio'.' ¤ + 000 Bio'.' ¤ + + {0} {1} {0} {1} @@ -4893,6 +5017,7 @@ For terms of use, see http://www.unicode.org/copyright.html Angolanischer Kwanza Angolanische Kwanza AOA + Kz Angolanischer Kwanza (1977–1990) @@ -4985,6 +5110,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bosnien und Herzegowina Konvertierbare Mark Bosnien und Herzegowina Konvertierbare Mark BAM + KM Bosnien und Herzegowina Neuer Dinar (1994–1997) @@ -5078,6 +5204,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bolivanischer Boliviano Bolivianische Bolivianos BOB + Bs Bolivianischer Boliviano (1863–1963) @@ -5163,6 +5290,7 @@ For terms of use, see http://www.unicode.org/copyright.html Botswanischer Pula Botswanische Pula BWP + P Belarus-Rubel (1994–1999) @@ -5284,6 +5412,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kubanischer Peso (konvertibel) Kubanische Pesos (konvertibel) CUC + Cub$ Kubanischer Peso @@ -5309,6 +5438,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tschechische Krone Tschechische Kronen CZK + Mark der DDR @@ -5333,6 +5463,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dänische Krone Dänische Kronen DKK + kr Dominikanischer Peso @@ -5370,6 +5501,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ägyptisches Pfund Ägyptische Pfund EGP + Eritreischer Nakfa @@ -5427,6 +5559,7 @@ For terms of use, see http://www.unicode.org/copyright.html Falkland-Pfund Falkland-Pfund FKP + Fl£ Französischer Franc @@ -5451,6 +5584,7 @@ For terms of use, see http://www.unicode.org/copyright.html Georgischer Lari Georgische Lari GEL + Ghanaischer Cedi (1979–2007) @@ -5482,6 +5616,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guinea-Franc Guinea-Franc GNF + F.G. Guineischer Syli @@ -5506,6 +5641,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guatemaltekischer Quetzal Guatemaltekische Quetzales GTQ + Q Portugiesisch Guinea Escudo @@ -5537,6 +5673,7 @@ For terms of use, see http://www.unicode.org/copyright.html Honduras-Lempira Honduras-Lempira HNL + L Kroatischer Dinar @@ -5549,6 +5686,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kroatischer Kuna Kroatische Kuna HRK + kn Haitianische Gourde @@ -5561,12 +5699,14 @@ For terms of use, see http://www.unicode.org/copyright.html Ungarischer Forint Ungarische Forint HUF + Ft Indonesische Rupiah Indonesische Rupiah Indonesische Rupiah IDR + Rp Irisches Pfund @@ -5621,6 +5761,7 @@ For terms of use, see http://www.unicode.org/copyright.html Isländische Krone Isländische Kronen ISK + kr Italienische Lira @@ -5672,12 +5813,14 @@ For terms of use, see http://www.unicode.org/copyright.html Komoren-Franc Komoren-Francs KMF + FC Nordkoreanischer Won Nordkoreanischer Won Nordkoreanische Won KPW + Südkoreanischer Hwan (1953–1962) @@ -5730,12 +5873,14 @@ For terms of use, see http://www.unicode.org/copyright.html Libanesisches Pfund Libanesische Pfund LBP + Sri-Lanka-Rupie Sri-Lanka-Rupie Sri-Lanka-Rupien LKR + Rs Liberianischer Dollar @@ -5833,6 +5978,7 @@ For terms of use, see http://www.unicode.org/copyright.html Madagaskar-Ariary Madagaskar-Ariary MGA + Ar Madagaskar-Franc @@ -5863,6 +6009,7 @@ For terms of use, see http://www.unicode.org/copyright.html Myanmarischer Kyat Myanmarische Kyat MMK + K Mongolischer Tögrög @@ -5900,6 +6047,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mauritius-Rupie Mauritius-Rupien MUR + Rs Malediven-Rupie (alt) @@ -5942,6 +6090,7 @@ For terms of use, see http://www.unicode.org/copyright.html Malaysischer Ringgit Malaysische Ringgit MYR + RM Mosambikanischer Escudo @@ -5985,6 +6134,7 @@ For terms of use, see http://www.unicode.org/copyright.html Nicaragua-Córdoba Nicaragua-Córdobas NIO + C$ Niederländischer Gulden @@ -5997,12 +6147,14 @@ For terms of use, see http://www.unicode.org/copyright.html Norwegische Krone Norwegische Kronen NOK + kr Nepalesische Rupie Nepalesische Rupie Nepalesische Rupien NPR + Rs Neuseeland-Dollar @@ -6059,12 +6211,14 @@ For terms of use, see http://www.unicode.org/copyright.html Pakistanische Rupie Pakistanische Rupien PKR + Rs Polnischer Złoty Polnischer Złoty Polnische Złoty PLN + Polnischer Zloty (1950–1995) @@ -6119,6 +6273,7 @@ For terms of use, see http://www.unicode.org/copyright.html Russischer Rubel Russische Rubel RUB + Russischer Rubel (1991–1998) @@ -6132,6 +6287,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ruanda-Franc Ruanda-Francs RWF + F.Rw Saudi-Rial @@ -6175,6 +6331,7 @@ For terms of use, see http://www.unicode.org/copyright.html Schwedische Krone Schwedische Kronen SEK + kr Singapur-Dollar @@ -6188,6 +6345,7 @@ For terms of use, see http://www.unicode.org/copyright.html St. Helena-Pfund St. Helena-Pfund SHP + £ Slowenischer Tolar @@ -6238,6 +6396,7 @@ For terms of use, see http://www.unicode.org/copyright.html São-toméischer Dobra São-toméische Dobra STD + Db Sowjetischer Rubel @@ -6256,6 +6415,7 @@ For terms of use, see http://www.unicode.org/copyright.html Syrisches Pfund Syrische Pfund SYP + SYP Swasiländischer Lilangeni @@ -6268,6 +6428,7 @@ For terms of use, see http://www.unicode.org/copyright.html Thailändischer Baht Thailändische Baht ฿ + ฿ Tadschikistan Rubel @@ -6304,6 +6465,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tongaischer Paʻanga Tongaische Paʻanga TOP + T$ Timor-Escudo @@ -6323,6 +6485,7 @@ For terms of use, see http://www.unicode.org/copyright.html Türkische Lira TRY + TL Trinidad und Tobago-Dollar @@ -6424,6 +6587,7 @@ For terms of use, see http://www.unicode.org/copyright.html Venezolanischer Bolívar Venezolanische Bolívares VEF + Bs Vietnamesischer Dong @@ -6497,6 +6661,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ostkaribischer Dollar Ostkaribische Dollar EC$ + $ Sonderziehungsrechte @@ -6623,6 +6788,7 @@ For terms of use, see http://www.unicode.org/copyright.html Südafrikanischer Rand Südafrikanische Rand ZAR + R Kwacha (1968–2012) @@ -6635,6 +6801,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kwacha Kwacha ZMW + K Zaire-Neuer Zaïre (1993–1998) @@ -6687,6 +6854,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + Umdrehung + {0} Umdrehung + {0} Umdrehungen + + + Radianten + {0} Radiant + {0} Radianten + + + Grad + {0} Grad + {0} Grad + Winkelminuten {0} Winkelminute @@ -6697,30 +6879,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Winkelsekunde {0} Winkelsekunden - - Grad - {0} Grad - {0} Grad - - - Radianten - {0} Radiant - {0} Radianten - - - Acres - {0} Acre - {0} Acres + + Quadratkilometer + {0} Quadratkilometer + {0} Quadratkilometer Hektar {0} Hektar {0} Hektar + + Quadratmeter + {0} Quadratmeter + {0} Quadratmeter + {0} pro Quadratmeter + Quadratzentimeter {0} Quadratzentimeter {0} Quadratzentimeter + {0} pro Quadratzentimeter + + + Quadratmeilen + {0} Quadratmeile + {0} Quadratmeilen + + + Acres + {0} Acre + {0} Acres + + + Quadratyards + {0} Quadratyard + {0} Quadratyards Quadratfuß @@ -6731,91 +6925,106 @@ For terms of use, see http://www.unicode.org/copyright.html Quadratzoll {0} Quadratzoll {0} Quadratzoll + {0} pro Quadratzoll - - Quadratkilometer - {0} Quadratkilometer - {0} Quadratkilometer - - - Quadratmeter - {0} Quadratmeter - {0} Quadratmeter - - - Quadratmeilen - {0} Quadratmeile - {0} Quadratmeilen - - - Quadratyards - {0} Quadratyard - {0} Quadratyards + + Karat + {0} Karat + {0} Karat Liter pro Kilometer {0} Liter pro Kilometer {0} Liter pro Kilometer + + Liter auf 100 Kilometer + {0} Liter auf 100 Kilometer + {0} Liter auf 100 Kilometer + Meilen pro Gallone {0} Meile pro Gallone {0} Meilen pro Gallone - - Bits - {0} Bit - {0} Bits - - - Bytes - {0} Byte - {0} Bytes - - - Gigabits - {0} Gigabit - {0} Gigabits - - - Gigabytes - {0} Gigabyte - {0} Gigabytes - - - Kilobits - {0} Kilobit - {0} Kilobits - - - Kilobytes - {0} Kilobyte - {0} Kilobytes - - - Megabits - {0} Megabit - {0} Megabits - - - Megabytes - {0} Megabyte - {0} Megabytes - - - Terabits - {0} Terabit - {0} Terabits - Terabytes {0} Terabyte {0} Terabytes + + Terabits + {0} Terabit + {0} Terabits + + + Gigabytes + {0} Gigabyte + {0} Gigabytes + + + Gigabits + {0} Gigabit + {0} Gigabits + + + Megabytes + {0} Megabyte + {0} Megabytes + + + Megabits + {0} Megabit + {0} Megabits + + + Kilobytes + {0} Kilobyte + {0} Kilobytes + + + Kilobits + {0} Kilobit + {0} Kilobits + + + Bytes + {0} Byte + {0} Bytes + + + Bits + {0} Bit + {0} Bits + + + Jahrhunderte + {0} Jahrhundert + {0} Jahrhunderte + + + Jahre + {0} Jahr + {0} Jahre + {0} pro Jahr + + + Monate + {0} Monat + {0} Monate + {0} pro Monat + + + Wochen + {0} Woche + {0} Wochen + {0} pro Woche + Tage {0} Tag {0} Tage + {0} pro Tag Stunden @@ -6823,30 +7032,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Stunden {0} pro Stunde - - Mikrosekunden - {0} Mikrosekunde - {0} Mikrosekunden - - - Millisekunden - {0} Millisekunde - {0} Millisekunden - Minuten {0} Minute {0} Minuten - - - Monate - {0} Monat - {0} Monate - - - Nanosekunden - {0} Nanosekunde - {0} Nanosekunden + {0} pro Minute Sekunden @@ -6854,15 +7044,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Sekunden {0} pro Sekunde - - Wochen - {0} Woche - {0} Wochen + + Millisekunden + {0} Millisekunde + {0} Millisekunden - - Jahre - {0} Jahr - {0} Jahre + + Mikrosekunden + {0} Mikrosekunde + {0} Mikrosekunden + + + Nanosekunden + {0} Nanosekunde + {0} Nanosekunden Ampere @@ -6884,6 +7079,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Volt {0} Volt + + Kilokalorien + {0} Kilokalorie + {0} Kilokalorien + Kalorien {0} Kalorie @@ -6891,17 +7091,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kilokalorien - {0} Cal - {0} Kilokalorien - - - Joule - {0} Joule - {0} Joule - - - Kilokalorien - {0} Kilokalorie + {0} Kilokalorien {0} Kilokalorien @@ -6909,6 +7099,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Kilojoule {0} Kilojoule + + Joule + {0} Joule + {0} Joule + Kilowattstunden {0} Kilowattstunde @@ -6919,216 +7114,220 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Gigahertz {0} Gigahertz - - Hertz - {0} Hertz - {0} Hertz + + Megahertz + {0} Megahertz + {0} Megahertz Kilohertz {0} Kilohertz {0} Kilohertz - - Megahertz - {0} Megahertz - {0} Megahertz + + Hertz + {0} Hertz + {0} Hertz - - Astronomische Einheiten - {0} AE - {0} AE + + Kilometer + {0} Kilometer + {0} Kilometer + {0} pro Kilometer - - Zentimeter - {0} Zentimeter - {0} Zentimeter + + Meter + {0} Meter + {0} Meter + {0} pro Meter Dezimeter {0} Dezimeter {0} Dezimeter - - Nautischer Faden - {0} Faden - {0} Faden - - - Fuß - {0} Fuß - {0} Fuß - - - Furlong - {0} Furlong - {0} Furlong - - - Zoll - {0} Zoll - {0} Zoll - - - Kilometer - {0} Kilometer - {0} Kilometer - - - Lichtjahre - {0} Lichtjahr - {0} Lichtjahre - - - Meter - {0} Meter - {0} Meter - - - Mikrometer - {0} Mikrometer - {0} Mikrometer - - - Meilen - {0} Meile - {0} Meilen + + Zentimeter + {0} Zentimeter + {0} Zentimeter + {0} pro Zentimeter Millimeter {0} Millimeter {0} Millimeter + + Mikrometer + {0} Mikrometer + {0} Mikrometer + Nanometer {0} Nanometer {0} Nanometer - - Seemeilen - {0} Seemeile - {0} Seemeilen - - - Parsec - {0} Parsec - {0} Parsec - Pikometer {0} Pikometer {0} Pikometer + + Meilen + {0} Meile + {0} Meilen + Yards {0} Yard {0} Yards + + Fuß + {0} Fuß + {0} Fuß + {0} pro Fuß + + + Zoll + {0} Zoll + {0} Zoll + {0} pro Zoll + + + Parsec + {0} Parsec + {0} Parsec + + + Lichtjahre + {0} Lichtjahr + {0} Lichtjahre + + + Astronomische Einheiten + {0} AE + {0} AE + + + Furlong + {0} Furlong + {0} Furlong + + + Nautischer Faden + {0} Faden + {0} Faden + + + Seemeilen + {0} Seemeile + {0} Seemeilen + + + skandinavische Meilen + {0} skandinavische Meile + {0} skandinavische Meilen + Lux {0} Lux {0} Lux - - Karat - {0} Karat - {0} Karat - - - Gramm - {0} Gramm - {0} Gramm - - - Kilogramm - {0} Kilogramm - {0} Kilogramm - Tonnen {0} Tonne {0} Tonnen - - Mikrogramm - {0} Mikrogramm - {0} Mikrogramm + + Kilogramm + {0} Kilogramm + {0} Kilogramm + {0} pro Kilogramm + + + Gramm + {0} Gramm + {0} Gramm + {0} pro Gramm Milligramm {0} Milligramm {0} Milligramm - - Unzen - {0} Unze - {0} Unzen - - - Feinunzen - {0} Feinunze - {0} Feinunzen - - - Pfund - {0} Pfund - {0} Pfund - - - Stones - {0} Stone - {0} Stones + + Mikrogramm + {0} Mikrogramm + {0} Mikrogramm Short Tons {0} Short Ton {0} Short Tons + + Stones + {0} Stone + {0} Stones + + + Pfund + {0} Pfund + {0} Pfund + {0} pro Pfund + + + Unzen + {0} Unze + {0} Unzen + {0} pro Unze + + + Feinunzen + {0} Feinunze + {0} Feinunzen + + + Karat + {0} Karat + {0} Karat + Gigawatt {0} Gigawatt {0} Gigawatt - - Pferdestärken - {0} Pferdestärke - {0} Pferdestärken - - - Kilowatt - {0} Kilowatt - {0} Kilowatt - Megawatt {0} Megawatt {0} Megawatt - - Milliwatt - {0} Milliwatt - {0} Milliwatt + + Kilowatt + {0} Kilowatt + {0} Kilowatt Watt {0} Watt {0} Watt + + Milliwatt + {0} Milliwatt + {0} Milliwatt + + + Pferdestärken + {0} Pferdestärke + {0} Pferdestärken + Hektopascal {0} Hektopascal {0} Hektopascal - - Zoll Quecksilbersäule - {0} Zoll Quecksilbersäule - {0} Zoll Quecksilbersäule - - - Millibar - {0} Millibar - {0} Millibar - Millimeter Quecksilbersäule {0} Millimeter Quecksilbersäule @@ -7139,10 +7338,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Pfund pro Quadratzoll {0} Pfund pro Quadratzoll - - Karat - {0} Karat - {0} Karat + + Zoll Quecksilbersäule + {0} Zoll Quecksilbersäule + {0} Zoll Quecksilbersäule + + + Millibar + {0} Millibar + {0} Millibar Kilometer pro Stunde @@ -7159,6 +7363,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Meile pro Stunde {0} Meilen pro Stunde + + Knoten + {0} Knoten + {0} Knoten + + + ° + {0}° + {0}° + Grad Celsius {0} Grad Celsius @@ -7174,36 +7388,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Kelvin {0} Kelvin - - Acre-Feet - {0} Acre-Foot - {0} Acre-Feet - - - Bushel - {0} Bushel - {0} Bushel - - - Zentiliter - {0} Zentiliter - {0} Zentiliter - - - Kubikzentimeter - {0} Kubikzentimeter - {0} Kubikzentimeter - - - Kubikfuß - {0} Kubikfuß - {0} Kubikfuß - - - Kubikzoll - {0} Kubikzoll - {0} Kubikzoll - Kubikkilometer {0} Kubikkilometer @@ -7213,6 +7397,13 @@ For terms of use, see http://www.unicode.org/copyright.html Kubikmeter {0} Kubikmeter {0} Kubikmeter + {0} pro Kubikmeter + + + Kubikzentimeter + {0} Kubikzentimeter + {0} Kubikzentimeter + {0} pro Kubikzentimeter Kubikmeilen @@ -7224,25 +7415,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Kubikyard {0} Kubikyards - - Cups - {0} Cup - {0} Cups + + Kubikfuß + {0} Kubikfuß + {0} Kubikfuß - - Deziliter - {0} Deziliter - {0} Deziliter + + Kubikzoll + {0} Kubikzoll + {0} Kubikzoll - - Flüssigunzen - {0} Flüssigunze - {0} Flüssigunzen - - - Gallonen - {0} Gallone - {0} Gallonen + + Megaliter + {0} Megaliter + {0} Megaliter Hektoliter @@ -7253,27 +7439,69 @@ For terms of use, see http://www.unicode.org/copyright.html Liter {0} Liter {0} Liter + {0} pro Liter - - Megaliter - {0} Megaliter - {0} Megaliter + + Deziliter + {0} Deziliter + {0} Deziliter + + + Zentiliter + {0} Zentiliter + {0} Zentiliter Milliliter {0} Milliliter {0} Milliliter - - Pints - {0} Pint - {0} Pints + + metrische Pints + {0} metrisches Pint + {0} metrische Pints + + + Tasse + {0} Tasse + {0} Tassen + + + Acre-Feet + {0} Acre-Foot + {0} Acre-Feet + + + Bushel + {0} Bushel + {0} Bushel + + + Gallonen + {0} Gallone + {0} Gallonen + {0} pro Gallone Quart {0} Quart {0} Quart + + Pints + {0} Pint + {0} Pints + + + Cups + {0} Cup + {0} Cups + + + Flüssigunzen + {0} Flüssigunze + {0} Flüssigunzen + Esslöffel {0} Esslöffel @@ -7284,6 +7512,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Teelöffel {0} Teelöffel + + {0} Ost + {0} Nord + {0} Süd + {0} West + @@ -7299,6 +7533,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + Umdr. + {0} Umdr. + {0} Umdr. + + + rad + {0} rad + {0} rad + + + Grad + {0}° + {0}° + Winkelminuten {0}′ @@ -7309,30 +7558,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - Grad - {0}° - {0}° - - - rad - {0} rad - {0} rad - - - Acres - {0} ac - {0} ac + + km² + {0} km² + {0} km² Hektar {0} ha {0} ha + + + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + + + Acres + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² ft² @@ -7343,122 +7604,118 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² + + Karat + {0} kt + {0} kt l/km {0} l/km {0} l/km + + L/100 km + {0} L/100 km + {0} L/100 km + mpg {0} mpg {0} mpg - - Bit - {0} Bit - {0} Bits - - - Byte - {0} Byte - {0} Bytes - - - Gigabit - {0} Gb - {0} Gb - - - Gigabyte - {0} GB - {0} GB - - - kbit - {0} kb - {0} kb - - - kbyte - {0} kB - {0} kB - - - Mbit - {0} Mb - {0} Mb - - - Mbyte - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + Gigabyte + {0} GB + {0} GB + + + Gigabit + {0} Gb + {0} Gb + + + Mbyte + {0} MB + {0} MB + + + Mbit + {0} Mb + {0} Mb + + + kbyte + {0} kB + {0} kB + + + kbit + {0} kb + {0} kb + + + Byte + {0} Byte + {0} Bytes + + + Bit + {0} Bit + {0} Bits + + + Jh. + {0} Jh. + {0} Jh. + + + J + {0} J + {0} J + {0}/J + + + Mon. + {0} Mon. + {0} Mon. + {0}/M + + + Wo. + {0} Wo. + {0} Wo. + {0}/W + - Tage - {0} T - {0} T + Tg. + {0} Tg. + {0} Tg. + {0}/T - Stunden + Std. {0} Std. {0} Std. {0}/h - - μs - {0} μs - {0} μs - - - Millisekunden - {0} ms - {0} ms - Min. {0} Min. {0} Min. - - - Monate - {0} Mon - {0} Mon - - - Nanosekunden - {0} ns - {0} ns + {0}/min Sek. @@ -7466,15 +7723,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Sek. {0}/s - - Wochen - {0} W - {0} W + + ms + {0} ms + {0} ms - - Jahre - {0} J - {0} J + + μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns Ampere @@ -7496,6 +7758,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -7506,21 +7773,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kcal {0} kcal - - Joule - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - Kilojoule {0} kJ {0} kJ + + Joule + {0} J + {0} J + kWh {0} kWh @@ -7531,216 +7793,220 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - AE - {0} AE - {0} AE + + Kilometer + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + Meter + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - Faden - {0} fm - {0} fm - - - Fuß - {0} ft - {0} ft - - - Furlong - {0} fur - {0} fur - - - Zoll - {0} in - {0} in - - - Kilometer - {0} km - {0} km - - - Lichtjahre - {0} Lj - {0} Lj - - - Meter - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - Meilen - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0}/cm Millimeter {0} mm {0} mm + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - sm - {0} sm - {0} sm - - - Parsec - {0} pc - {0} pc - Pikometer {0} pm {0} pm + + Meilen + {0} mi + {0} mi + Yards {0} yd {0} yd + + Fuß + {0} ft + {0} ft + {0}/ft + + + Zoll + {0} in + {0} in + {0}/in + + + Parsec + {0} pc + {0} pc + + + Lichtjahre + {0} Lj + {0} Lj + + + AE + {0} AE + {0} AE + + + Furlong + {0} fur + {0} fur + + + Faden + {0} fm + {0} fm + + + sm + {0} sm + {0} sm + + + smi + {0} smi + {0} smi + Lux {0} lx {0} lx - - Karat - {0} Kt - {0} Kt - - - Gramm - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + Gramm + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - Unzen - {0} oz - {0} oz - - - oz.tr. - {0} oz.tr. - {0} oz.tr. - - - Pfund - {0} lb - {0} lb - - - Stones - {0} st - {0} st + + µg + {0} µg + {0} µg Tons {0} tn {0} tn + + Stones + {0} st + {0} st + + + Pfund + {0} lb + {0} lb + {0}/lb + + + Unzen + {0} oz + {0} oz + {0}/oz + + + oz.tr. + {0} oz.tr. + {0} oz.tr. + + + Karat + {0} Kt + {0} Kt + GW {0} GW {0} GW - - Pferdestärken - {0} PS - {0} PS - - - Kilowatt - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + Kilowatt + {0} kW + {0} kW Watt {0} W {0} W + + mW + {0} mW + {0} mW + + + Pferdestärken + {0} PS + {0} PS + hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - - - Millibar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -7751,10 +8017,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - Karat - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + + + Millibar + {0} mbar + {0} mbar km/h @@ -7771,6 +8042,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + °C {0} °C @@ -7786,36 +8067,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - Acre-Feet - {0} ac ft - {0} ac ft - - - Bushel - {0} bu - {0} bu - - - cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -7825,6 +8076,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -7836,25 +8094,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - Cups - {0} Cup - {0} Cups + + ft³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl + + in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml hl @@ -7865,27 +8118,69 @@ For terms of use, see http://www.unicode.org/copyright.html Liter {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl ml {0} ml {0} ml - - Pints - {0} pt - {0} pt + + metr. Pints + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + Acre-Feet + {0} ac ft + {0} ac ft + + + Bushel + {0} bu + {0} bu + + + gal + {0} gal + {0} gal + {0}/gal Quart {0} qt {0} qt + + Pints + {0} pt + {0} pt + + + Cups + {0} Cup + {0} Cups + + + fl oz + {0} fl oz + {0} fl oz + EL {0} EL @@ -7896,6 +8191,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} TL {0} TL + + {0} O + {0} N + {0} S + {0} W + @@ -7909,6 +8210,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rad + {0} rad + {0} rad + + + {0}° + {0}° + {0}′ {0}′ @@ -7917,27 +8227,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - rad - {0} rad - {0} rad - - - {0} ac - {0} ac + + {0} km² + {0} km² {0} ha {0} ha + + {0} m² + {0} m² + {0} cm² {0} cm² + + {0} mi² + {0} mi² + + + {0} ac + {0} ac + + + {0} yd² + {0} yd² + {0} ft² {0} ft² @@ -7946,72 +8263,86 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² - - {0} km² - {0} km² - - - {0} m² - {0} m² - - - {0} mi² - {0} mi² - - - {0} yd² - {0} yd² + + {0} kt + {0} kt {0} l/km {0} l/km + + L/100 km + {0} L/100 km + {0} L/100 km + {0} mpg {0} mpg - - {0} Bit - {0} Bits - - - {0} Byte - {0} Bytes - - - {0} Gb - {0} Gb - - - {0} GB - {0} GB - - - {0} kb - {0} kb - - - {0} kB - {0} kB - - - {0} Mb - {0} Mb - - - {0} MB - {0} MB - - - {0} Tb - {0} Tb - {0} TB {0} TB + + {0} Tb + {0} Tb + + + {0} GB + {0} GB + + + {0} Gb + {0} Gb + + + {0} MB + {0} MB + + + {0} Mb + {0} Mb + + + {0} kB + {0} kB + + + {0} kb + {0} kb + + + {0} Byte + {0} Bytes + + + {0} Bit + {0} Bits + + + Jahrh. + {0} Jahrh. + {0} Jahrh. + + + J + {0} J + {0} J + {0}/Jahr + + + M + {0} M + {0} M + + + W + {0} W + {0} W + - Tag + T {0} T {0} T @@ -8020,43 +8351,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Std. {0} Std. - - {0} μs - {0} μs - - - Millisekunden - {0} ms - {0} ms - Min. {0} Min. {0} Min. - - Monat - {0} M - {0} M - - - {0} ns - {0} ns - Sek. {0} s {0} s - - Woche - {0} W - {0} W + + ms + {0} ms + {0} ms - - J - {0} J - {0} J + + {0} μs + {0} μs + + + {0} ns + {0} ns {0} A @@ -8074,6 +8390,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + {0} kcal + {0} kcal + {0} cal {0} cal @@ -8082,18 +8402,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kcal {0} kcal - - {0} J - {0} J - - - {0} kcal - {0} kcal - {0} kJ {0} kJ + + {0} J + {0} J + {0} kWh {0} kWh @@ -8102,125 +8418,141 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - {0} Hz - {0} Hz + + {0} MHz + {0} MHz {0} kHz {0} kHz - - {0} MHz - {0} MHz + + {0} Hz + {0} Hz - - {0} AE - {0} AE + + km + {0} km + {0} km + {0}/km + + + Meter + {0} m + {0} m + {0}/m + + + {0} dm + {0} dm cm {0} cm {0} cm - - {0} dm - {0} dm + + mm + {0} mm + {0} mm - - Faden - {0} fm - {0} fm + + {0} µm + {0} µm + + + {0} nm + {0} nm + + + {0} pm + {0} pm + + + {0} mi + {0} mi + + + {0} yd + {0} yd {0} ft {0} ft + + {0} in + {0} in + + + {0} pc + {0} pc + + + {0} ly + {0} ly + + + {0} AE + {0} AE + Furlong {0} fur {0} fur - - {0} in - {0} in - - - km - {0} km - {0} km - - - {0} ly - {0} ly - - - Meter - {0} m - {0} m - - - {0} µm - {0} µm - - - {0} mi - {0} mi - - - mm - {0} mm - {0} mm - - - {0} nm - {0} nm + + Faden + {0} fm + {0} fm {0} sm {0} sm - - {0} pc - {0} pc - - - {0} pm - {0} pm - - - {0} yd - {0} yd + + smi + {0} smi + {0} smi {0} lx {0} lx - - {0} Kt - {0} Kt - - - Gramm - {0} g - {0} g + + {0} t + {0} t kg {0} kg {0} kg - - {0} t - {0} t + + Gramm + {0} g + {0} g + + + {0} mg + {0} mg {0} µg {0} µg - - {0} mg - {0} mg + + {0} tn + {0} tn + + + Stones + {0} st + {0} st + + + {0} lb + {0} lb {0} oz @@ -8230,55 +8562,38 @@ For terms of use, see http://www.unicode.org/copyright.html {0} oz.tr. {0} oz.tr. - - {0} lb - {0} lb - - - Stones - {0} st - {0} st - - - {0} tn - {0} tn + + {0} Kt + {0} Kt {0} GW {0} GW - - {0} PS - {0} PS + + {0} MW + {0} MW {0} kW {0} kW - - {0} MW - {0} MW + + {0} W + {0} W {0} mW {0} mW - - {0} W - {0} W + + {0} PS + {0} PS {0} hPa {0} hPa - - {0} inHg - {0} inHg - - - {0} mbar - {0} mbar - {0} mm Hg {0} mm Hg @@ -8287,9 +8602,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - {0} kt - {0} kt + + {0} inHg + {0} inHg + + + {0} mbar + {0} mbar km/h @@ -8317,31 +8636,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - {0} ac ft - {0} ac ft - - - Bushel - {0} bu - {0} bu - - - {0} cl - {0} cl - - - {0} cm³ - {0} cm³ - - - {0} ft³ - {0} ft³ - - - {0} in³ - {0} in³ - {0} km³ {0} km³ @@ -8350,6 +8644,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + + {0} cm³ + {0} cm³ + {0}/cm³ + {0} mi³ {0} mi³ @@ -8358,21 +8657,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - {0} Cup - {0} Cups + + {0} ft³ + {0} ft³ - - {0} dl - {0} dl + + {0} in³ + {0} in³ - - {0} fl oz - {0} fl oz - - - {0} gal - {0} gal + + {0} Ml + {0} Ml {0} hl @@ -8383,22 +8678,47 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l - - {0} Ml - {0} Ml + + {0} dl + {0} dl + + + {0} cl + {0} cl {0} ml {0} ml - - {0} pt - {0} pt + + {0} ac ft + {0} ac ft + + + Bushel + {0} bu + {0} bu + + + {0} gal + {0} gal {0} qt {0} qt + + {0} pt + {0} pt + + + {0} Cup + {0} Cups + + + {0} fl oz + {0} fl oz + {0} EL {0} EL @@ -8407,6 +8727,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} TL {0} TL + + {0}O + {0} N + {0} S + {0} W + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_AT.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_AT.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_AT.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_AT.xml index 1b716756e44..ef3d9499f5a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_AT.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_AT.xml @@ -1,13 +1,12 @@ - - - + @@ -90,6 +89,9 @@ For terms of use, see http://www.unicode.org/copyright.html + +   + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_BE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_BE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_BE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_BE.xml index 1777f59f5f4..a88e702ed56 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_BE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_BE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_CH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_CH.xml similarity index 80% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_CH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_CH.xml index 44cd70e0953..88fac336ba3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_CH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_CH.xml @@ -1,13 +1,12 @@ - - - + @@ -34,11 +33,14 @@ For terms of use, see http://www.unicode.org/copyright.html Sortierung nach Gross- bzw. Kleinbuchstaben Sortierung nach Gross- oder Kleinschreibung + Mass-System - Ohne Gross-/Kleinschreibung sortieren - Grossbuchstaben zuerst aufführen - Nach Gross-/Kleinschreibung sortieren + Grossbuchstaben zuerst aufführen + Ohne Gross-/Kleinschreibung sortieren + Nach Gross-/Kleinschreibung sortieren + britisches Mass-System + US Mass-System @@ -50,6 +52,13 @@ For terms of use, see http://www.unicode.org/copyright.html . ' + + + + #,##0% + + + @@ -63,8 +72,9 @@ For terms of use, see http://www.unicode.org/copyright.html Weissrussischer Rubel Weissrussische Rubel - - CHF + + EUR + EUR @@ -79,6 +89,7 @@ For terms of use, see http://www.unicode.org/copyright.html Fuss {0} Fuss {0} Fuss + {0} pro Fuss Kubikfuss diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_DE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_DE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_DE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_DE.xml index e4abfe23d6d..83304f4c5e3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_DE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_DE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_LI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_LI.xml new file mode 100644 index 00000000000..6474425f1eb --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_LI.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + vm. + nm. + + + + + + + + + . + ' + + + + + #,##0% + + + + + + + ¤ #,##0.00 + + + + + + EUR + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_LU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_LU.xml similarity index 76% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_LU.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_LU.xml index 51a28b4881b..8c5cb5073d1 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_LU.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/de_LU.xml @@ -1,13 +1,12 @@ - - - + @@ -21,3 +20,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dje.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dje.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dje.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dje.xml index b8af8b82441..d4afe62f87a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dje.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dje.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angiiya Albaani Armeeni - Hollandu Antiiyey Laboo Angoola Argentine Ameriki Samoa @@ -448,6 +446,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Subbaahi + Zaarikay b + Subbaahi Zaarikay b @@ -597,6 +599,22 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤ + + + 0K¤ + 00K¤ + 000K¤ + 0M¤ + 00M¤ + 000M¤ + 0G¤ + 00G¤ + 000G¤ + 0T¤ + 00T¤ + 000T¤ + + @@ -776,3 +794,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dje_NE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dje_NE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dje_NE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dje_NE.xml index 172f8e2cbf3..790e12e0f0e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dje_NE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dje_NE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dsb.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dsb.xml similarity index 97% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dsb.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dsb.xml index 0d9e5e3680d..7cc43e53010 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dsb.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dsb.xml @@ -1,13 +1,12 @@ - - - + @@ -243,7 +242,7 @@ terms of use, see http://www.unicode.org/copyright.html sundanšćina šwedšćina swahilišćina - kongojska swahilišćina + kongojska swahilišćina tamilšćina telugšćina teso @@ -636,55 +635,55 @@ terms of use, see http://www.unicode.org/copyright.html licby - arabisko-indiske cyfry - rozšyrjone arabisko-indiske cyfry - armeńske cyfry - armeńske cyfry małopisane - bengalske cyfry - buddhistiski kalender - chinski kalender - dangi kalender - devanagari-cyfry - sortěrowański slěd pó Unicoźe - etiopiske cyfry - etiopiski kalender - połnošyroke cyfry - georgiske cyfry - gregoriański kalender - grichiske cyfry - grichiske cyfry małopisane - gujarati-cyfry - gurmukhi-cyfry - chinske decimalne licby - zjadnorjone chinske cyfry - zjadnorjone chinske financne cyfry - tradicionalne chinske cyfry - tradicionalne chinske financne cyfry - hebrejske cyfry - žydojski kalender - islamski kalender - iso-8601-kalender - japański kalender - japańske cyfry - japańske financne cyfry - khmerske cyfry - kannada-cyfry - laotiske cyfry - arabiske cyfry - malayalamske cyfry - burmaske cyfry - oriya-cyfry - persiski kalender - kalender republiki China - romske cyfry - romske cyfry małopisane - powšykne pytanje - standardny sortěrowański slěd - tradicionalne tamilske cyfry - tamilske cyfry - telugu-cyfry - thaiske cyfry - tibetske cyfry + buddhistiski kalender + chinski kalender + dangi kalender + etiopiski kalender + gregoriański kalender + žydojski kalender + islamski kalender + iso-8601-kalender + japański kalender + persiski kalender + kalender republiki China + sortěrowański slěd pó Unicoźe + powšykne pytanje + standardny sortěrowański slěd + arabisko-indiske cyfry + rozšyrjone arabisko-indiske cyfry + armeńske cyfry + armeńske cyfry małopisane + bengalske cyfry + devanagari-cyfry + etiopiske cyfry + połnošyroke cyfry + georgiske cyfry + grichiske cyfry + grichiske cyfry małopisane + gujarati-cyfry + gurmukhi-cyfry + chinske decimalne licby + zjadnorjone chinske cyfry + zjadnorjone chinske financne cyfry + tradicionalne chinske cyfry + tradicionalne chinske financne cyfry + hebrejske cyfry + japańske cyfry + japańske financne cyfry + khmerske cyfry + kannada-cyfry + laotiske cyfry + arabiske cyfry + malayalamske cyfry + burmaske cyfry + oriya-cyfry + romske cyfry + romske cyfry małopisane + tradicionalne tamilske cyfry + tamilske cyfry + telugu-cyfry + thaiske cyfry + tibetske cyfry metriski @@ -1063,14 +1062,16 @@ terms of use, see http://www.unicode.org/copyright.html + + dopołdnja + wótpołdnja + dop. - połd. wótp. dopołdnja - połdnjo wótpołdnja @@ -3193,6 +3194,58 @@ terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 tys'.' ¤ + 0 tys'.' ¤ + 0 tys'.' ¤ + 0 tys'.' ¤ + 00 tys'.' ¤ + 00 tys'.' ¤ + 00 tys'.' ¤ + 00 tys'.' ¤ + 000 tys'.' ¤ + 000 tys'.' ¤ + 000 tys'.' ¤ + 000 tys'.' ¤ + 0 mio'.' ¤ + 0 mio'.' ¤ + 0 mio'.' ¤ + 0 mio'.' ¤ + 00 mio'.' ¤ + 00 mio'.' ¤ + 00 mio'.' ¤ + 00 mio'.' ¤ + 000 mio'.' ¤ + 000 mio'.' ¤ + 000 mio'.' ¤ + 000 mio'.' ¤ + 0 mrd'.' ¤ + 0 mrd'.' ¤ + 0 mrd'.' ¤ + 0 mrd'.' ¤ + 00 mrd'.' ¤ + 00 mrd'.' ¤ + 00 mrd'.' ¤ + 00 mrd'.' ¤ + 000 mrd'.' ¤ + 000 mrd'.' ¤ + 000 mrd'.' ¤ + 000 mrd'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + + {0} {1} {0} {1} {0} {1} @@ -4526,6 +4579,20 @@ terms of use, see http://www.unicode.org/copyright.html {0} metry na kwadratnu sekundu {0} metrow kwadratnu sekundu + + radianty + {0} radiant + {0} radianta + {0} radianty + {0} radiantow + + + wobłukowe stopnje + {0} stopjeń + {0} stopjenja + {0} stopnje + {0} stopnjow + wobłukowe minuty {0} wobłukowa minuta @@ -4540,26 +4607,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} wobłukowe sekundy {0} wobłukowych sekundow - - wobłukowe stopnje - {0} stopjeń - {0} stopjenja - {0} stopnje - {0} stopnjow - - - radianty - {0} radiant - {0} radianta - {0} radianty - {0} radiantow - - - akry - {0} aker - {0} akra - {0} akry - {0} akrow + + kwadratne kilometry + {0} kwadratny kilometer + {0} kwadratnej kilometra + {0} kwadratne kilometry + {0} kwadratnych kilometrow hektary @@ -4568,6 +4621,13 @@ terms of use, see http://www.unicode.org/copyright.html {0} hektary {0} hektarow + + kwadratne metry + {0} kwadratny meter + {0} kwadratnej metra + {0} kwadratne metry + {0} kwadratnych metrow + kwadratne centimetry {0} kwadratny centimeter @@ -4575,6 +4635,27 @@ terms of use, see http://www.unicode.org/copyright.html {0} kwadratne centimetry {0} kwadratnych centimetrow + + kwadratne mile + {0} kwadratna mila + {0} kwadratnej mili + {0} kwadratne mile + {0} kwadratnych milow + + + akry + {0} aker + {0} akra + {0} akry + {0} akrow + + + kwadratne yardy + {0} kwadratny yard + {0} kwadratnej yarda + {0} kwadratne yardy + {0} kwadratnych yardow + kwadratne stopy {0} kwadratna stopa @@ -4589,33 +4670,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} kwadratne cole {0} kwadratnych colow - - kwadratne kilometry - {0} kwadratny kilometer - {0} kwadratnej kilometra - {0} kwadratne kilometry - {0} kwadratnych kilometrow - - - kwadratne metry - {0} kwadratny meter - {0} kwadratnej metra - {0} kwadratne metry - {0} kwadratnych metrow - - - kwadratne mile - {0} kwadratna mila - {0} kwadratnej mili - {0} kwadratne mile - {0} kwadratnych milow - - - kwadratne yardy - {0} kwadratny yard - {0} kwadratnej yarda - {0} kwadratne yardy - {0} kwadratnych yardow + + karaty + {0} karat + {0} karata + {0} karaty + {0} karatow litry na kilometer @@ -4631,61 +4691,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} mile na gallonu {0} milow na gallonu - - bit - {0} bit - {0} bita - {0} bity - {0} bitow - - - byte - {0} byte - {0} bytea - {0} bytey - {0} byteow - - - gigabit - {0} gigabit - {0} gigabita - {0} gigabity - {0} gigabitow - - - gigabyte - {0} gigabyte - {0} gigabytea - {0} gigabytey - {0} gigabyteow - - - kilobit - {0} kilobit - {0} kilobita - {0} kilobity - {0} kilobitow - - - kilobyte - {0} kilobyte - {0} kilobytea - {0} kilobytey - {0} kilobyteow - - - megabit - {0} megabit - {0} megabita - {0} megabity - {0} megabitow - - - megabyte - {0} megabyte - {0} megabytea - {0} megabytey - {0} megabyteow + + terabyte + {0} terabyte + {0} terabytea + {0} terabytey + {0} terabyteow terabit @@ -4694,12 +4705,82 @@ terms of use, see http://www.unicode.org/copyright.html {0} terabity {0} terabitow - - terabyte - {0} terabyte - {0} terabytea - {0} terabytey - {0} terabyteow + + gigabyte + {0} gigabyte + {0} gigabytea + {0} gigabytey + {0} gigabyteow + + + gigabit + {0} gigabit + {0} gigabita + {0} gigabity + {0} gigabitow + + + megabyte + {0} megabyte + {0} megabytea + {0} megabytey + {0} megabyteow + + + megabit + {0} megabit + {0} megabita + {0} megabity + {0} megabitow + + + kilobyte + {0} kilobyte + {0} kilobytea + {0} kilobytey + {0} kilobyteow + + + kilobit + {0} kilobit + {0} kilobita + {0} kilobity + {0} kilobitow + + + byte + {0} byte + {0} bytea + {0} bytey + {0} byteow + + + bit + {0} bit + {0} bita + {0} bity + {0} bitow + + + lěta + {0} lěto + {0} lěśe + {0} lěta + {0} lět + + + mjasecy + {0} mjasec + {0} mjaseca + {0} mjasecy + {0} mjasecow + + + tyźenje + {0} tyźeń + {0} tyźenja + {0} tyźenje + {0} tyźenjow dny @@ -4714,21 +4795,7 @@ terms of use, see http://www.unicode.org/copyright.html {0} góźinje {0} góźiny {0} góźinow - na góźinu - - - mikrosekundy - {0} mikrosekunda - {0} mikrosekunźe - {0} mikrosekundy - {0} mikrosekundow - - - milisekundy - {0} milisekunda - {0} milisekunźe - {0} milisekundy - {0} milisekundow + {0} na góźinu minuty @@ -4737,12 +4804,27 @@ terms of use, see http://www.unicode.org/copyright.html {0} minuty {0} minutow - - mjasecy - {0} mjasec - {0} mjaseca - {0} mjasecy - {0} mjasecow + + sekundy + {0} sekunda + {0} sekunźe + {0} sekundy + {0} sekundow + {0} na sekundu + + + milisekundy + {0} milisekunda + {0} milisekunźe + {0} milisekundy + {0} milisekundow + + + mikrosekundy + {0} mikrosekunda + {0} mikrosekunźe + {0} mikrosekundy + {0} mikrosekundow nanosekundy @@ -4751,28 +4833,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} nanosekundy {0} nanosekundow - - sekundy - {0} sekunda - {0} sekunźe - {0} sekundy - {0} sekundow - na sekundu - - - tyźenje - {0} tyźeń - {0} tyźenja - {0} tyźenje - {0} tyźenjow - - - lěta - {0} lěto - {0} lěśe - {0} lěta - {0} lět - ampery {0} ampere @@ -4801,6 +4861,13 @@ terms of use, see http://www.unicode.org/copyright.html {0} volty {0} voltow + + kilokalorije + {0} kilokalorija + {0} kilokaloriji + {0} kilokalorije + {0} kilokalorijow + kalorije {0} kalorija @@ -4815,20 +4882,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} kilokalorije {0} kilokalorijow - - joule - {0} joule - {0} joule - {0} joule - {0} joule - - - kilokalorije - {0} kilokalorija - {0} kilokaloriji - {0} kilokalorije - {0} kilokalorijow - kilojoule {0} kilojoule @@ -4836,6 +4889,13 @@ terms of use, see http://www.unicode.org/copyright.html {0} kilojoule {0} kilojoule + + joule + {0} joule + {0} joule + {0} joule + {0} joule + kilowattowe góźiny {0} kilowattowa góźina @@ -4850,12 +4910,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} gigahertzy {0} gigahertzow - - hertzy - {0} hertz - {0} hertza - {0} hertzy - {0} hertzow + + megahertzy + {0} megahertz + {0} megahertza + {0} megahertzy + {0} megahertzow kilohertzy @@ -4864,19 +4924,33 @@ terms of use, see http://www.unicode.org/copyright.html {0} kilohertzy {0} kilohertzow - - megahertzy - {0} megahertz - {0} megahertza - {0} megahertzy - {0} megahertzow + + hertzy + {0} hertz + {0} hertza + {0} hertzy + {0} hertzow - - astronomiske jadnotki - {0} astronomiska jadnotka - {0} astronomiskej jadnotce - {0} astronomiske jadnotki - {0} astronomiskich jadnotkow + + kilometry + {0} kilometer + {0} kilometra + {0} kilometry + {0} kilometrow + + + metry + {0} meter + {0} metra + {0} metry + {0} metrow + + + decimetry + {0} decimeter + {0} decimetra + {0} decimetry + {0} decimetrow centimetry @@ -4885,12 +4959,47 @@ terms of use, see http://www.unicode.org/copyright.html {0} centimetry {0} centimetrow - - decimetry - {0} decimeter - {0} decimetra - {0} decimetry - {0} decimetrow + + milimetry + {0} milimeter + {0} milimetra + {0} milimetry + {0} milimetrow + + + mikrometry + {0} mikrometer + {0} mikrometra + {0} mikrometry + {0} mikrometrow + + + nanometry + {0} nanometer + {0} nanometra + {0} nanometry + {0} nanometrow + + + pikometry + {0} pikometer + {0} pikometra + {0} pikometry + {0} pikometrow + + + mile + {0} mila + {0} mili + {0} mile + {0} milow + + + yardy + {0} yard + {0} yarda + {0} yardy + {0} yardow stopy @@ -4906,12 +5015,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} cole {0} colow - - kilometry - {0} kilometer - {0} kilometra - {0} kilometry - {0} kilometrow + + parsec + {0} parsec + {0} parsec + {0} parsec + {0} parsec swětłowe lěta @@ -4920,40 +5029,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} swětłowe lěta {0} swětłowych lět - - metry - {0} meter - {0} metra - {0} metry - {0} metrow - - - mikrometry - {0} mikrometer - {0} mikrometra - {0} mikrometry - {0} mikrometrow - - - mile - {0} mila - {0} mili - {0} mile - {0} milow - - - milimetry - {0} milimeter - {0} milimetra - {0} milimetry - {0} milimetrow - - - nanometry - {0} nanometer - {0} nanometra - {0} nanometry - {0} nanometrow + + astronomiske jadnotki + {0} astronomiska jadnotka + {0} astronomiskej jadnotce + {0} astronomiske jadnotki + {0} astronomiskich jadnotkow nawtiske mile @@ -4962,27 +5043,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} nawtiske mile {0} nawtiskich milow - - parsec - {0} parsec - {0} parsec - {0} parsec - {0} parsec - - - pikometry - {0} pikometer - {0} pikometra - {0} pikometry - {0} pikometrow - - - yardy - {0} yard - {0} yarda - {0} yardy - {0} yardow - lux {0} lux @@ -4990,27 +5050,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} lux {0} lux - - karaty - {0} karat - {0} karata - {0} karaty - {0} karatow - - - gramy - {0} gram - {0} grama - {0} gramy - {0} gramow - - - kilogramy - {0} kilogram - {0} kilograma - {0} kilogramy - {0} kilogramow - tony {0} tona @@ -5018,12 +5057,19 @@ terms of use, see http://www.unicode.org/copyright.html {0} tony {0} tonow - - mikrogramy - {0} mikrogram - {0} mikrograma - {0} mikrogramy - {0} mikrogramow + + kilogramy + {0} kilogram + {0} kilograma + {0} kilogramy + {0} kilogramow + + + gramy + {0} gram + {0} grama + {0} gramy + {0} gramow miligramy @@ -5032,6 +5078,27 @@ terms of use, see http://www.unicode.org/copyright.html {0} miligramy {0} miligramow + + mikrogramy + {0} mikrogram + {0} mikrograma + {0} mikrogramy + {0} mikrogramow + + + ameriske tony + {0} ameriska tona + {0} ameriskej tonje + {0} ameriske tony + {0} ameriskich tonow + + + punty + {0} punt + {0} punta + {0} punty + {0} puntow + unce {0} unca @@ -5046,19 +5113,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} troyske unce {0} troyskich uncow - - punty - {0} punt - {0} punta - {0} punty - {0} puntow - - - ameriske tony - {0} ameriska tona - {0} ameriskej tonje - {0} ameriske tony - {0} ameriskich tonow + + karaty + {0} karat + {0} karata + {0} karaty + {0} karatow gigawatty @@ -5067,12 +5127,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} gigawatty {0} gigawattow - - kónjece mócy - {0} kónjeca móc - {0} kónjecej mócy - {0} kónjece mócy - {0} kónjecych mócow + + megawatty + {0} megawatt + {0} megawatta + {0} megawatty + {0} megawattow kilowatty @@ -5081,12 +5141,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} kilowatty {0} kilowattow - - megawatty - {0} megawatt - {0} megawatta - {0} megawatty - {0} megawattow + + watty + {0} watt + {0} watta + {0} watty + {0} wattow miliwatty @@ -5095,12 +5155,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} miliwatty {0} miliwattow - - watty - {0} watt - {0} watta - {0} watty - {0} wattow + + kónjece mócy + {0} kónjeca móc + {0} kónjecej mócy + {0} kónjece mócy + {0} kónjecych mócow hektopascale @@ -5109,20 +5169,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} hektopascale {0} hektopascalow - - cole žywoslobrowego słupika - {0} col słupika žywego slobra - {0} cola słupika žywego slobra - {0} cole słupika žywego slobra - {0} colow słupika žywego slobra - - - milibary - {0} milibar - {0} milibara - {0} milibary - {0} milibarow - milimetry słupika žywego slobra {0} milimeter słupika žywego slobra @@ -5137,12 +5183,19 @@ terms of use, see http://www.unicode.org/copyright.html {0} punty na kwadratny col {0} puntow na kwadratny col - - karaty - {0} karat - {0} karata - {0} karaty - {0} karatow + + cole žywoslobrowego słupika + {0} col słupika žywego slobra + {0} cola słupika žywego slobra + {0} cole słupika žywego slobra + {0} colow słupika žywego slobra + + + milibary + {0} milibar + {0} milibara + {0} milibary + {0} milibarow kilometry na góźinu @@ -5186,41 +5239,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} stopnje Kelvina {0} stopnjow Kelvina - - aker-crjeje - {0} aker-crjej - {0} aker-crjeja - {0} aker-crjeje - {0} aker-crjej - - - centilitry - {0} centiliter - {0} centilitra - {0} centilitry - {0} centilitrow - - - kubikne centimetry - {0} kubikny centimeter - {0} kubiknej centimetra - {0} kubikne centimetry - {0} kubiknych centimetrow - - - kubikne crjeje - {0} kubikny crjej - {0} kubiknej crjeja - {0} kubikne crjeje - {0} kubiknych crjejow - - - kubikne cole - {0} kubikny col - {0} kubiknej cola - {0} kubikne cole - {0} kubiknych colow - kubikne kilometry {0} kubikny kilometer @@ -5235,6 +5253,13 @@ terms of use, see http://www.unicode.org/copyright.html {0} kubikne metry {0} kubiknych metrow + + kubikne centimetry + {0} kubikny centimeter + {0} kubiknej centimetra + {0} kubikne centimetry + {0} kubiknych centimetrow + kubikne mile {0} kubikna mila @@ -5249,33 +5274,26 @@ terms of use, see http://www.unicode.org/copyright.html {0} kubikne yardy {0} kubiknych yardow - - taski - {0} taska - {0} tasce - {0} taski - {0} taskow + + kubikne crjeje + {0} kubikny crjej + {0} kubiknej crjeja + {0} kubikne crjeje + {0} kubiknych crjejow - - decilitry - {0} deciliter - {0} decilitra - {0} decilitry - {0} decilitrow + + kubikne cole + {0} kubikny col + {0} kubiknej cola + {0} kubikne cole + {0} kubiknych colow - - žydke unce - {0} žydka unca - {0} žydkej uncy - {0} žydke unce - {0} žydkych uncow - - - gallony - {0} gallona - {0} gallonje - {0} gallony - {0} gallonow + + megalitry + {0} megaliter + {0} megalitra + {0} megalitry + {0} megalitrow hektolitry @@ -5291,12 +5309,19 @@ terms of use, see http://www.unicode.org/copyright.html {0} litry {0} litrow - - megalitry - {0} megaliter - {0} megalitra - {0} megalitry - {0} megalitrow + + decilitry + {0} deciliter + {0} decilitra + {0} decilitry + {0} decilitrow + + + centilitry + {0} centiliter + {0} centilitra + {0} centilitry + {0} centilitrow mililitry @@ -5305,12 +5330,19 @@ terms of use, see http://www.unicode.org/copyright.html {0} mililitry {0} mililitrow - - pinty - {0} pint - {0} pinta - {0} pinty - {0} pintow + + aker-crjeje + {0} aker-crjej + {0} aker-crjeja + {0} aker-crjeje + {0} aker-crjej + + + gallony + {0} gallona + {0} gallonje + {0} gallony + {0} gallonow quarty @@ -5319,6 +5351,27 @@ terms of use, see http://www.unicode.org/copyright.html {0} quarty {0} quartow + + pinty + {0} pint + {0} pinta + {0} pinty + {0} pintow + + + taski + {0} taska + {0} tasce + {0} taski + {0} taskow + + + žydke unce + {0} žydka unca + {0} žydkej uncy + {0} žydke unce + {0} žydkych uncow + łžyce {0} łžyca @@ -5349,6 +5402,20 @@ terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rad + {0} rad + {0} rad + {0} rad + {0} rad + + + ° + {0} ° + {0} ° + {0} ° + {0} ° + {0} ′ @@ -5363,26 +5430,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} ″ {0} ″ - - ° - {0} ° - {0} ° - {0} ° - {0} ° - - - rad - {0} rad - {0} rad - {0} rad - {0} rad - - - ac - {0} ac - {0} ac - {0} ac - {0} ac + + km² + {0} km² + {0} km² + {0} km² + {0} km² ha @@ -5391,6 +5444,13 @@ terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha + + + {0} m² + {0} m² + {0} m² + {0} m² + cm² {0} cm² @@ -5398,6 +5458,27 @@ terms of use, see http://www.unicode.org/copyright.html {0} cm² {0} cm² + + mi² + {0} mi² + {0} mi² + {0} mi² + {0} mi² + + + ac + {0} ac + {0} ac + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² + {0} yd² + {0} yd² + ft² {0} ft² @@ -5412,33 +5493,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² - - km² - {0} km² - {0} km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt + {0} kt + {0} kt l/km @@ -5454,61 +5514,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} mpg {0} mpg - - bit - {0} bit - {0} bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - {0} byte - {0} byte - - - Gb - {0} Gb - {0} Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - {0} MB - {0} MB + + TB + {0} TB + {0} TB + {0} TB + {0} TB Tb @@ -5517,12 +5528,82 @@ terms of use, see http://www.unicode.org/copyright.html {0} Tb {0} Tb - - TB - {0} TB - {0} TB - {0} TB - {0} TB + + GB + {0} GB + {0} GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + {0} kb + {0} kb + + + byte + {0} byte + {0} byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + {0} bit + {0} bit + + + l. + {0} l. + {0} l. + {0} l. + {0} l. + + + mjas. + {0} mjas. + {0} mjas. + {0} mjas. + {0} mjas. + + + tyź. + {0} tyź. + {0} tyź. + {0} tyź. + {0} tyź. dny @@ -5539,20 +5620,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} góź. {0}/h - - μs - {0} μs - {0} μs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - {0} ms - {0} ms - min. {0} min. @@ -5560,20 +5627,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} min. {0} min. - - mjas. - {0} mjas. - {0} mjas. - {0} mjas. - {0} mjas. - - - ns - {0} ns - {0} ns - {0} ns - {0} ns - sek. {0} sek. @@ -5582,19 +5635,26 @@ terms of use, see http://www.unicode.org/copyright.html {0} sek. {0}/s - - tyź. - {0} tyź. - {0} tyź. - {0} tyź. - {0} tyź. + + ms + {0} ms + {0} ms + {0} ms + {0} ms - - l. - {0} l. - {0} l. - {0} l. - {0} l. + + μs + {0} μs + {0} μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns + {0} ns + {0} ns A @@ -5624,6 +5684,13 @@ terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + {0} kcal + {0} kcal + cal {0} cal @@ -5638,20 +5705,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} kcal {0} kcal - - J - {0} J - {0} J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - {0} kcal - {0} kcal - kJ {0} kJ @@ -5659,6 +5712,13 @@ terms of use, see http://www.unicode.org/copyright.html {0} kJ {0} kJ + + J + {0} J + {0} J + {0} J + {0} J + kWh {0} kWh @@ -5673,12 +5733,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz + {0} MHz + {0} MHz kHz @@ -5687,19 +5747,33 @@ terms of use, see http://www.unicode.org/copyright.html {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au - {0} au - {0} au + + km + {0} km + {0} km + {0} km + {0} km + + + m + {0} m + {0} m + {0} m + {0} m + + + dm + {0} dm + {0} dm + {0} dm + {0} dm cm @@ -5708,12 +5782,47 @@ terms of use, see http://www.unicode.org/copyright.html {0} cm {0} cm - - dm - {0} dm - {0} dm - {0} dm - {0} dm + + mm + {0} mm + {0} mm + {0} mm + {0} mm + + + μm + {0} μm + {0} μm + {0} μm + {0} μm + + + nm + {0} nm + {0} nm + {0} nm + {0} nm + + + pm + {0} pm + {0} pm + {0} pm + {0} pm + + + mi + {0} mi + {0} mi + {0} mi + {0} mi + + + yd + {0} yd + {0} yd + {0} yd + {0} yd ft @@ -5729,12 +5838,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} in {0} in - - km - {0} km - {0} km - {0} km - {0} km + + pc + {0} pc + {0} pc + {0} pc + {0} pc ly @@ -5743,40 +5852,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} ly {0} ly - - m - {0} m - {0} m - {0} m - {0} m - - - μm - {0} μm - {0} μm - {0} μm - {0} μm - - - mi - {0} mi - {0} mi - {0} mi - {0} mi - - - mm - {0} mm - {0} mm - {0} mm - {0} mm - - - nm - {0} nm - {0} nm - {0} nm - {0} nm + + au + {0} au + {0} au + {0} au + {0} au nmi @@ -5785,27 +5866,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} nmi {0} nmi - - pc - {0} pc - {0} pc - {0} pc - {0} pc - - - pm - {0} pm - {0} pm - {0} pm - {0} pm - - - yd - {0} yd - {0} yd - {0} yd - {0} yd - lx {0} lx @@ -5813,27 +5873,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} lx {0} lx - - Kt - {0} Kt - {0} Kt - {0} Kt - {0} Kt - - - g - {0} g - {0} g - {0} g - {0} g - - - kg - {0} kg - {0} kg - {0} kg - {0} kg - t {0} t @@ -5841,12 +5880,19 @@ terms of use, see http://www.unicode.org/copyright.html {0} t {0} t - - µg - {0} µg - {0} µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0} kg + {0} kg + + + g + {0} g + {0} g + {0} g + {0} g mg @@ -5855,6 +5901,27 @@ terms of use, see http://www.unicode.org/copyright.html {0} mg {0} mg + + µg + {0} µg + {0} µg + {0} µg + {0} µg + + + am.tony + {0} tn + {0} tn + {0} tn + {0} tn + + + lb + {0} lb + {0} lb + {0} lb + {0} lb + oz {0} oz @@ -5869,19 +5936,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} oz. tr. {0} oz. tr. - - lb - {0} lb - {0} lb - {0} lb - {0} lb - - - am.tony - {0} tn - {0} tn - {0} tn - {0} tn + + Kt + {0} Kt + {0} Kt + {0} Kt + {0} Kt GW @@ -5890,12 +5950,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} GW {0} GW - - PS - {0} PS - {0} PS - {0} PS - {0} PS + + MW + {0} MW + {0} MW + {0} MW + {0} MW kW @@ -5904,12 +5964,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} kW {0} kW - - MW - {0} MW - {0} MW - {0} MW - {0} MW + + W + {0} W + {0} W + {0} W + {0} W mW @@ -5918,12 +5978,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} mW {0} mW - - W - {0} W - {0} W - {0} W - {0} W + + PS + {0} PS + {0} PS + {0} PS + {0} PS hPa @@ -5932,20 +5992,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -5960,12 +6006,19 @@ terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kt - {0} kt - {0} kt - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar + {0} mbar + {0} mbar km/h @@ -6009,41 +6062,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - {0} ac ft - {0} ac ft - - - cl - {0} cl - {0} cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -6058,6 +6076,13 @@ terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + + cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0} cm³ + mi³ {0} mi³ @@ -6072,33 +6097,26 @@ terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - c - {0} c - {0} c - {0} c - {0} c + + ft³ + {0} ft³ + {0} ft³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl - {0} dl - {0} dl + + in³ + {0} in³ + {0} in³ + {0} in³ + {0} in³ - - fl. oz. - {0} fl. oz. - {0} fl. oz. - {0} fl. oz. - {0} fl. oz. - - - gal - {0} gal - {0} gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml + {0} Ml + {0} Ml hl @@ -6114,12 +6132,19 @@ terms of use, see http://www.unicode.org/copyright.html {0} l {0} l - - Ml - {0} Ml - {0} Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl + {0} cl + {0} cl ml @@ -6128,12 +6153,19 @@ terms of use, see http://www.unicode.org/copyright.html {0} ml {0} ml - - pt - {0} pt - {0} pt - {0} pt - {0} pt + + ac ft + {0} ac ft + {0} ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0} gal + {0} gal qt @@ -6142,6 +6174,27 @@ terms of use, see http://www.unicode.org/copyright.html {0} qt {0} qt + + pt + {0} pt + {0} pt + {0} pt + {0} pt + + + c + {0} c + {0} c + {0} c + {0} c + + + fl. oz. + {0} fl. oz. + {0} fl. oz. + {0} fl. oz. + {0} fl. oz. + łž. {0} łž. @@ -6164,6 +6217,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}° + {0}° + {0}′ {0}′ @@ -6176,17 +6235,11 @@ terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - {0}° - {0}° - - - {0} ac - {0} ac - {0} ac - {0} ac + + {0} km² + {0} km² + {0} km² + {0} km² {0} ha @@ -6194,18 +6247,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha - - {0} ft² - {0} ft² - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} km² - {0} km² - {0} m² {0} m² @@ -6218,6 +6259,39 @@ terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} ac + {0} ac + {0} ac + {0} ac + + + {0} ft² + {0} ft² + {0} ft² + {0} ft² + + + l. + {0} l. + {0} l. + {0} l. + {0} l. + + + mjas. + {0} mjas. + {0} mjas. + {0} mjas. + {0} mjas. + + + tyź. + {0} tyź. + {0} tyź. + {0} tyź. + {0} tyź. + d {0} ź @@ -6232,13 +6306,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} g {0} g - - ms - {0} ms - {0} ms - {0} ms - {0} ms - min {0} min @@ -6246,13 +6313,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} min {0} min - - mjas. - {0} mjas. - {0} mjas. - {0} mjas. - {0} mjas. - s {0} s @@ -6260,38 +6320,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} s {0} s - - tyź. - {0} tyź. - {0} tyź. - {0} tyź. - {0} tyź. - - - l. - {0} l. - {0} l. - {0} l. - {0} l. - - - cm - {0} cm - {0} cm - {0} cm - {0} cm - - - {0} ft - {0} ft - {0} ft - {0} ft - - - {0} in - {0} in - {0} in - {0} in + + ms + {0} ms + {0} ms + {0} ms + {0} ms km @@ -6300,12 +6334,6 @@ terms of use, see http://www.unicode.org/copyright.html {0} km {0} km - - {0} ly - {0} ly - {0} ly - {0} ly - m {0} m @@ -6313,11 +6341,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} m {0} m - - {0} mi - {0} mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0} cm + {0} cm mm @@ -6332,18 +6361,35 @@ terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} mi + {0} mi + {0} mi + {0} mi + {0} yd {0} yd {0} yd {0} yd - - g - {0} g - {0} g - {0} g - {0} g + + {0} ft + {0} ft + {0} ft + {0} ft + + + {0} in + {0} in + {0} in + {0} in + + + {0} ly + {0} ly + {0} ly + {0} ly kg @@ -6352,11 +6398,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} kg {0} kg - - {0} oz - {0} oz - {0} oz - {0} oz + + g + {0} g + {0} g + {0} g + {0} g {0} lb @@ -6364,11 +6411,11 @@ terms of use, see http://www.unicode.org/copyright.html {0} lb {0} lb - - {0} PS - {0} PS - {0} PS - {0} PS + + {0} oz + {0} oz + {0} oz + {0} oz {0} kW @@ -6382,6 +6429,12 @@ terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} PS + {0} PS + {0} PS + {0} PS + {0} hPa {0} hPa diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dsb_DE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dsb_DE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dsb_DE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dsb_DE.xml index 35ac80a82f7..aa3eda694f8 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dsb_DE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dsb_DE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dua.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dua.xml similarity index 88% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dua.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dua.xml index 3a24d957935..093be601b3d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dua.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dua.xml @@ -1,13 +1,12 @@ - - - + @@ -181,6 +180,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + idiɓa + ebyámu + idiɓa ebyámu @@ -330,6 +333,22 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0K ¤ + 00K ¤ + 000K ¤ + 0M ¤ + 00M ¤ + 000M ¤ + 0G ¤ + 00G ¤ + 000G ¤ + 0T ¤ + 00T ¤ + 000T ¤ + + @@ -339,3 +358,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dua_CM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dua_CM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dua_CM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dua_CM.xml index 46168e1e279..61f7f33244e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dua_CM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dua_CM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dyo.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dyo.xml similarity index 93% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dyo.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dyo.xml index f0b8dd9f8ad..d1d2aa8ea20 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dyo.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dyo.xml @@ -1,13 +1,12 @@ - - - + @@ -445,6 +444,22 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0K ¤ + 00K ¤ + 000K ¤ + 0M ¤ + 00M ¤ + 000M ¤ + 0G ¤ + 00G ¤ + 000G ¤ + 0T ¤ + 00T ¤ + 000T ¤ + + @@ -543,3 +558,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dyo_SN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dyo_SN.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dyo_SN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dyo_SN.xml index 6cd1d499ef9..cfcdb08b1e4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dyo_SN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dyo_SN.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dz.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dz.xml similarity index 97% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dz.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dz.xml index c8e0355061d..3187edc0adf 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dz.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dz.xml @@ -1,13 +1,12 @@ - - - + @@ -510,45 +509,45 @@ For terms of use, see http://www.unicode.org/copyright.html ཨང་ཡིག - ཨེ་ར་བིཀ་-ཨིན་ཌིཀ་ཨང - ཨེ་ར་བིཀ་-ཨིན་ཌིཀ་རྒྱ་སྐྱེད་ཨང - ཨར་མི་ནི་ཡཱན་ཨང - ཨར་མི་ནི་ཡཱན་གྱི་མགྱོགས་ཡིག་ཨང་རྟགས - བངྒ་ལི་ཨང - དེ་ཝ་ན་ག་རི་ཨང - སྔ་སྒྲིག་ཡུ་ནི་ཀོཊ་གི་གོ་རིམ - ཨི་ཐི་ཡོ་པིཀ་ཨང་རྟགཨ - རྒྱ་ཚད་གང་བའི་ཨང - ཇཽར་ཇཱི་ཡཱན་ཨང་རྟགས - གྲེག་གོ་རི་ཡཱན་ཟླ་ཐོ - གྲིཀ་ཨང་རྟགས - གྲིཀ་གི་མགྱོགས་ཡིག་ཨང་རྟགས - གུ་ཇ་ར་ཏི་ཨང - གུ་རུ་མུ་ཁི་ཨང - རྒྱ་མིའི་ཚག་ཅན་མའི་ཨང་རྟགས - འཇམ་སངམ་རྒྱ་མིའི་ཨང་རྟགས - འཇམ་སངམ་རྒྱ་མི་གི་དངུལ་འབྲེལ་ཨང་རྟགས - སྔ་དུས་རྒྱ་མིའི་ཨང་རྟགས - སྔ་དུས་རྒྱ་མིའི་གི་དངུལ་འབྲེལ་ཨང་རྟགས - ཧེ་བྲུ་ཨང་རྟགས - ཇཱ་པཱན་ནིས་ཨང་རྟགས - ཇཱ་པཱན་ནིས་དངུལ་འབྲེལ་ཨང་རྟགས - ཁེ་མར་ཨང - ཀ་ན་ཌ་ཨང - ལཱ་འོས་ཨང་ - ཕྱི་གླིང་པའི་ཨང - མ་ལ་ཡ་ལམ་ཨང་ - མི་ཡཱན་མར་ཨང་ - ཨོ་རི་ཡ་ཨང་ - རོ་མཱན་ཨང་རྟགས - རོ་མཱན་གྱི་མགྱོགས་ཡིག་ཨང་རྟགས - སྤྱི་དོན་འཚོལ་བ - སྔ་དུས་ཊ་མིལ་ཨང་རྟགས - ཊ་མིལ་ཨང - ཏེ་ལུ་གུ་ཨང - ཐཱའི་ཨང - ང་བཅས་ཀྱི་ཨང་ཡིག - ལུགས་སྲོལ + གྲེག་གོ་རི་ཡཱན་ཟླ་ཐོ + སྔ་སྒྲིག་ཡུ་ནི་ཀོཊ་གི་གོ་རིམ + སྤྱི་དོན་འཚོལ་བ + ལུགས་སྲོལ + ཨེ་ར་བིཀ་-ཨིན་ཌིཀ་ཨང + ཨེ་ར་བིཀ་-ཨིན་ཌིཀ་རྒྱ་སྐྱེད་ཨང + ཨར་མི་ནི་ཡཱན་ཨང + ཨར་མི་ནི་ཡཱན་གྱི་མགྱོགས་ཡིག་ཨང་རྟགས + བངྒ་ལི་ཨང + དེ་ཝ་ན་ག་རི་ཨང + ཨི་ཐི་ཡོ་པིཀ་ཨང་རྟགཨ + རྒྱ་ཚད་གང་བའི་ཨང + ཇཽར་ཇཱི་ཡཱན་ཨང་རྟགས + གྲིཀ་ཨང་རྟགས + གྲིཀ་གི་མགྱོགས་ཡིག་ཨང་རྟགས + གུ་ཇ་ར་ཏི་ཨང + གུ་རུ་མུ་ཁི་ཨང + རྒྱ་མིའི་ཚག་ཅན་མའི་ཨང་རྟགས + འཇམ་སངམ་རྒྱ་མིའི་ཨང་རྟགས + འཇམ་སངམ་རྒྱ་མི་གི་དངུལ་འབྲེལ་ཨང་རྟགས + སྔ་དུས་རྒྱ་མིའི་ཨང་རྟགས + སྔ་དུས་རྒྱ་མིའི་གི་དངུལ་འབྲེལ་ཨང་རྟགས + ཧེ་བྲུ་ཨང་རྟགས + ཇཱ་པཱན་ནིས་ཨང་རྟགས + ཇཱ་པཱན་ནིས་དངུལ་འབྲེལ་ཨང་རྟགས + ཁེ་མར་ཨང + ཀ་ན་ཌ་ཨང + ལཱ་འོས་ཨང་ + ཕྱི་གླིང་པའི་ཨང + མ་ལ་ཡ་ལམ་ཨང་ + མི་ཡཱན་མར་ཨང་ + ཨོ་རི་ཡ་ཨང་ + རོ་མཱན་ཨང་རྟགས + རོ་མཱན་གྱི་མགྱོགས་ཡིག་ཨང་རྟགས + སྔ་དུས་ཊ་མིལ་ཨང་རྟགས + ཊ་མིལ་ཨང + ཏེ་ལུ་གུ་ཨང + ཐཱའི་ཨང + ང་བཅས་ཀྱི་ཨང་ཡིག མེ་ཊྲིཀ་བརྩི་ལུགས @@ -964,6 +963,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + སྔ་ཆ་ + ཕྱི་ཆ་ + སྔ་ཆ་ ཕྱི་ཆ་ @@ -2361,6 +2364,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##,##0.00 + + + ¤0K + ¤00K + ¤000K + ¤0M + ¤00M + ¤000M + ¤0G + ¤00G + ¤000G + ¤0T + ¤00T + ¤000T + + {0} {1} @@ -2610,6 +2629,18 @@ For terms of use, see http://www.unicode.org/copyright.html + + ལོ་འཁོར་ + ལོ་འཁོར་ {0} + + + ཟླཝ་ + ཟླཝ་ {0} + + + བངུན་ཕྲག་ + བངུན་ཕྲག་ {0} + ཉིན་ཞག་ ཉིན་ཞག་ {0} @@ -2622,24 +2653,21 @@ For terms of use, see http://www.unicode.org/copyright.html སྐར་མ་ སྐར་མ་ {0} - - ཟླཝ་ - ཟླཝ་ {0} - སྐར་ཆ་ སྐར་ཆ་ {0} - - བངུན་ཕྲག་ - བངུན་ཕྲག་ {0} - - - ལོ་འཁོར་ - ལོ་འཁོར་ {0} - + + ལོ་འཁོར་ + + + ཟླཝ་ + + + བངུན་ཕྲག་ + ཉིན་ཞག་ @@ -2649,18 +2677,9 @@ For terms of use, see http://www.unicode.org/copyright.html སྐར་མ་ - - ཟླཝ་ - སྐར་ཆ་ - - བངུན་ཕྲག་ - - - ལོ་འཁོར་ - @@ -2678,3 +2697,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dz_BT.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dz_BT.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dz_BT.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dz_BT.xml index bbc8b1a5b91..da54051a2b1 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/dz_BT.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/dz_BT.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ebu.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ebu.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ebu.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ebu.xml index e8b07bbfedb..3f5a3bd604b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ebu.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ebu.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antili za Uholanzi Angola Ajentina Samoa ya Marekani @@ -449,6 +447,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + KI + UT + KI UT @@ -490,22 +492,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -584,6 +586,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤00K + ¤000K + ¤0M + ¤00M + ¤000M + ¤0G + ¤00G + ¤000G + ¤0T + ¤00T + ¤000T + + @@ -761,3 +779,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ebu_KE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ebu_KE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ebu_KE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ebu_KE.xml index b16c007828d..b91a98eacba 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ebu_KE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ebu_KE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ee.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ee.xml similarity index 89% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ee.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ee.xml index 42710a49a38..c4d7f3f9b81 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ee.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ee.xml @@ -1,13 +1,12 @@ - - - + @@ -20,10 +19,10 @@ For terms of use, see http://www.unicode.org/copyright.html abkhaziagbe adyghegbe afrikaangbe - aghemgbe + aghemgbe blugbe amhariagbe - arabiagbe + Arabiagbe assamegbe asagbe asturiagbe @@ -42,7 +41,7 @@ For terms of use, see http://www.unicode.org/copyright.html bislamagbe komgbe bambaragbe - bengalgbe + Bengaligbe tibetagbe bretongbe bodogbe @@ -58,27 +57,30 @@ For terms of use, see http://www.unicode.org/copyright.html tsɛkgbe walesgbe denmarkgbe - germaniagbe - austriatɔwo ƒe germaniagbe - swizerlanɖ germaniagbe kɔkɔtɔ + Germaniagbe + Germaniagbe (Austria) + Germaniagbe (Switzerland) zamagbe dualagbe divehgbe dzola-fonyigbe dzongkhagbe embugbe - eʋegbe + Eʋegbe efigbe grisigbe - yevugbe - australiatɔwo ƒe yevugbe - kanadatɔwo ƒe yevugbe - britaintɔwo ƒe yevugbe - u.s.dukɔmetɔwo ƒe yevugbe + Yevugbe + Yevugbe (Australia) + Yevugbe (Canada) + Yevugbe (Britain) + Yevugbe (GB) + Yevugbe (America) + Yevugbe (US) esperantogbe - spaniagbe - latin amerikatɔwo ƒe spaniagbe - iberiatɔwo ƒe spaniagbe + Spanishgbe + Spanishgbe (Latin America) + Spanishgbe (Europe) + Spanishgbe (Mexico) estoniagbe basqugbe ewondogbe @@ -89,9 +91,9 @@ For terms of use, see http://www.unicode.org/copyright.html filipingbe fidzigbe faroegbe - fransegbe - kanadatɔwo ƒe fransegbe - swizerlanɖtɔwo ƒe fransegbe + Fransegbe + Fransegbe (Canada) + Fransegbe (Switzerland) ɣetoɖoƒe frisiagbe irelanɖgbe gɛgbe @@ -104,7 +106,7 @@ For terms of use, see http://www.unicode.org/copyright.html hausagbe hawaigbe hebrigbe - hindigbe + Hindigbe hiligenɔgbe hiri motugbe kroatiagbe @@ -112,13 +114,13 @@ For terms of use, see http://www.unicode.org/copyright.html hungarigbe armeniagbe ibibiogbe - indonesiagbe + Indonesiagbe igbogbe ilikogbe ingusigbe icelanɖgbe - italiagbe - dzapangbe + Italiagbe + Japangbe dzavangbe gɔgiagbe kabardiagbe @@ -131,7 +133,7 @@ For terms of use, see http://www.unicode.org/copyright.html kalaalisugbe khmergbe kannadagbe - koreagbe + Koreagbe konkaniagbe kosraeagbe kanuriagbe @@ -175,8 +177,8 @@ For terms of use, see http://www.unicode.org/copyright.html dziehe ndebelegbe nepalgbe niuegbe - hɔlandgbe - flemiagbe + Hollandgbe + Flemishgbe kwasiogbe nɔweigbe ninɔsk ngiemboongbe @@ -191,18 +193,18 @@ For terms of use, see http://www.unicode.org/copyright.html pangsinagbe papiamentogbe paluagbe - polandgbe + Polishgbe ponpeiagbe pashtogbe - pɔtugalgbe - braziltɔwo ƒe portugalgbe - iberiatɔwo ƒe portugalgbe + Portuguesegbe + Portuguesegbe (Brazil) + Portuguesegbe (Europe) kwetsuagbe romanshgbe rundigbe romaniagbe rombogbe - rɔtsiagbe + Russiagbe ruwandagbe rwagbe sanskrigbe @@ -223,7 +225,6 @@ For terms of use, see http://www.unicode.org/copyright.html serbiagbe swatgbe anyiehe sothogbe - sudangbe swedengbe swahili komorogbe @@ -231,7 +232,7 @@ For terms of use, see http://www.unicode.org/copyright.html telegugbe tetumgbe tadzikistangbe - tailandgbe + Thailandgbe tigrinyagbe tɛkmengbe tokelaugbe @@ -239,7 +240,7 @@ For terms of use, see http://www.unicode.org/copyright.html tswanagbe tongagbe tok pisigbe - tɛkigbe + Turkishgbe tsongagbe tatargbe tuvalugbe @@ -265,14 +266,14 @@ For terms of use, see http://www.unicode.org/copyright.html yorubagbe cantongbe zhuangbe - kinagbe + Chinagbe tsainagbe blema tsainagbe zulugbe gbegbɔgblɔ manɔmee - + @@ -293,7 +294,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -312,8 +313,10 @@ For terms of use, see http://www.unicode.org/copyright.html - - + + + + @@ -322,20 +325,20 @@ For terms of use, see http://www.unicode.org/copyright.html - + - + - + @@ -450,7 +453,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla nutome Albania nutome Armenia nutome - Nedalands Antilis nutome Angola nutome Antartica nutome Argentina nutome @@ -481,7 +483,7 @@ For terms of use, see http://www.unicode.org/copyright.html Botswana nutome Belarus nutome Belize nutome - Kanada nutome + Canada nutome Kokos (Kiling) fudomekpo nutome Kongo Kinshasa nutome Kongo demokratik repɔblik nutome @@ -517,7 +519,7 @@ For terms of use, see http://www.unicode.org/copyright.html Egypte nutome Ɣetoɖoƒe Sahara nutome Eritrea nutome - Spania nutome + Spain nutome Etiopia nutome Europa Wɔɖeka nutome Finland nutome @@ -526,7 +528,7 @@ For terms of use, see http://www.unicode.org/copyright.html Falkland ƒudomekpowo (Islas Malvinas) nutome Mikronesia nutome Faroe ƒudomekpowo nutome - Frans nutome + France nutome Gabɔn nutome United Kingdom nutome Grenada nutome @@ -540,7 +542,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guini nutome Guadelupe nutome Ekuatorial Guini nutome - Grisi nutome + Greece nutome Anyiehe Georgia kple Anyiehe Sandwich ƒudomekpowo nutome Guatemala nutome Guam nutome @@ -612,7 +614,7 @@ For terms of use, see http://www.unicode.org/copyright.html mauritiusdukɔ maldivesdukɔ Malawi nutome - Meksico nutome + Mexico nutome Malaysia nutome Mozambiki nutome Namibia nutome @@ -621,7 +623,7 @@ For terms of use, see http://www.unicode.org/copyright.html Norfolk ƒudomekpo nutome Nigeria nutome Nicaraguadukɔ - Nedalands nutome + Netherlands nutome Norway nutome Nepal nutome Nauru nutome @@ -675,7 +677,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tsad nutome Anyiehe Franseme nutome Togo nutome - Tailand nutome + Thailand nutome Tajikistan nutome Tokelau nutome Timor-Leste nutome @@ -705,7 +707,7 @@ For terms of use, see http://www.unicode.org/copyright.html Samoa nutome Yemen nutome Mayotte nutome - Anyiehe Afrika nutome + Anyiehe Africa nutome Zambia nutome Zimbabwe nutome nutome manya @@ -721,83 +723,84 @@ For terms of use, see http://www.unicode.org/copyright.html nɔmbawo - india ƒe arabia digitwo - india ƒe arabia digitwo dzi yiyi - armeniatɔwo ƒe numeralwo - armeniatɔwo ƒe numeral suetɔwo - balina digitwo - bengalitɔwo ƒe digitwo - blema chinatɔwo ƒe ɖoɖomɔ nu - buddha subɔlawo ƒe kalenda - tsam digitwo - chinatɔwo ƒe kalenda - coptia kalenda - devanagari digitwo - nuɖoɖo ɖe nyagɔmeɖegbalẽ ƒe ɖoɖomɔ nu - nuɖoɖo ɖe unicode ƒe ɖoɖo nu - ethiopia numeralwo - ethiopiatɔwo ƒe kalenda - ethiopia amate alemtɔwo ƒe kalenda - digit kekeme blibotɔwo - chinagbe yeye ƒe ɖoɖomɔ nu - georgiatɔwo ƒe numeralwo - gregoria kalenda - greecetɔwo ƒe nemeralwo - greecetɔwo ƒe numeral suetɔwo - gujarati digitwo - gurmukhi digitwo - chinatɔwo ƒe nɔmba madeblibowo - chinatɔwo ƒe numeralwo - chinatɔwo ƒe gadzikpɔ numeralwo - blema chinatɔwo ƒe numeralwo - blema chinatɔwo ƒe gadzikpɔ numeralwo - hebritɔwo ƒe numeralwo - hebritɔwo ƒe kalenda - india dukɔ ƒe kalenda - islam subɔlawo ƒe kalenda - islam subɔlawo ƒe sivil kalenda - japantɔwo ƒe kalenda - dzava digitwo - japantɔwo ƒe numeralwo - japantɔwo ƒe gadzikpɔnumeralwo - kali digitwo - khmertɔwo ƒe nɔmbawo - kannadatɔwo ƒe digitwo - lana digitwo - lanatham digitwo - laotɔwo ƒe digitwo - nɔmbawo le latingbe ƒe ɖoɖo nu - leptsa digitwo - limbu digitwo - malaya digitwo - mongolia digitwo - meetei mayek digitwo - myanmar digitwo - myanmar shan digitwo - n’ko digitwo - ol tsiki digitwo - oriya digitwo - persiatɔwo ƒe kalenda - fonegbalẽ me ɖoɖomɔ nu - pinyin ɖoɖomɔ nu - nugbugbɔtoɖo ƒe ɖoɖomɔ nu - china repɔbliktɔwo ƒe kalenda tso 1912 - romatɔwo ƒe numeralwo - romatɔwo ƒe numeral suetɔwo - saurashtra digitwo - nudidi hena zazã gbadza - nudidi le hangul ƒe ɖoɖo gbãtɔ nu - stroke ɖoɖomɔ nu - sundana digitwo - tai lue digit yeye wo - tamil numeralwo - tamil digitwo - telegu digitwo - thai digitwo - tibet digitwo - blema ɖoɖomɔ nu - ɖoɖomɔnutɔxɛ manɔŋu stroke ƒe ɖoɖo nu - vaii digitwo + buddha subɔlawo ƒe kalenda + chinatɔwo ƒe kalenda + coptia kalenda + ethiopiatɔwo ƒe kalenda + ethiopia amate alemtɔwo ƒe kalenda + Gregorian kalenda + hebritɔwo ƒe kalenda + india dukɔ ƒe kalenda + islam subɔlawo ƒe kalenda + islam subɔlawo ƒe sivil kalenda + japantɔwo ƒe kalenda + persiatɔwo ƒe kalenda + china repɔbliktɔwo ƒe kalenda tso 1912 + blema chinatɔwo ƒe ɖoɖomɔ nu + nuɖoɖo ɖe nyagɔmeɖegbalẽ ƒe ɖoɖomɔ nu + nuɖoɖo ɖe unicode ƒe ɖoɖo nu + chinagbe yeye ƒe ɖoɖomɔ nu + fonegbalẽ me ɖoɖomɔ nu + pinyin ɖoɖomɔ nu + nugbugbɔtoɖo ƒe ɖoɖomɔ nu + nudidi hena zazã gbadza + nudidi le hangul ƒe ɖoɖo gbãtɔ nu + standard + stroke ɖoɖomɔ nu + blema ɖoɖomɔ nu + ɖoɖomɔnutɔxɛ manɔŋu stroke ƒe ɖoɖo nu + india ƒe arabia digitwo + india ƒe arabia digitwo dzi yiyi + armeniatɔwo ƒe numeralwo + armeniatɔwo ƒe numeral suetɔwo + balina digitwo + bengalitɔwo ƒe digitwo + tsam digitwo + devanagari digitwo + ethiopia numeralwo + digit kekeme blibotɔwo + georgiatɔwo ƒe numeralwo + greecetɔwo ƒe nemeralwo + greecetɔwo ƒe numeral suetɔwo + gujarati digitwo + gurmukhi digitwo + chinatɔwo ƒe nɔmba madeblibowo + chinatɔwo ƒe numeralwo + chinatɔwo ƒe gadzikpɔ numeralwo + blema chinatɔwo ƒe numeralwo + blema chinatɔwo ƒe gadzikpɔ numeralwo + hebritɔwo ƒe numeralwo + dzava digitwo + japantɔwo ƒe numeralwo + japantɔwo ƒe gadzikpɔnumeralwo + kali digitwo + khmertɔwo ƒe nɔmbawo + kannadatɔwo ƒe digitwo + lana digitwo + lanatham digitwo + laotɔwo ƒe digitwo + Nɔmbawo le Latingbe ƒe ɖoɖo nu + leptsa digitwo + limbu digitwo + malaya digitwo + mongolia digitwo + meetei mayek digitwo + myanmar digitwo + myanmar shan digitwo + n’ko digitwo + ol tsiki digitwo + oriya digitwo + romatɔwo ƒe numeralwo + romatɔwo ƒe numeral suetɔwo + saurashtra digitwo + sundana digitwo + tai lue digit yeye wo + tamil numeralwo + tamil digitwo + telegu digitwo + thai digitwo + tibet digitwo + vaii digitwo metric @@ -1193,7 +1196,7 @@ For terms of use, see http://www.unicode.org/copyright.html E, MMM d 'lia' – E, MMM d 'lia' - G y–y + G y–y M/y – M/y G @@ -1437,19 +1440,39 @@ For terms of use, see http://www.unicode.org/copyright.html + + ŋdi + ɣetrɔ + fɔŋli + ŋdi + ŋdɔ + ɣetrɔ + fiẽ + + - ŋ - ɣ + ŋ + ɣ - ɣetrɔ ŋdi - ŋdɔ - fɔŋli - fiẽ - ŋdi - ɣetrɔ + fɔŋli + ŋdi + ŋdɔ + ɣetrɔ + fiẽ + + + + + + ŋ + ɣ + + + ŋdi + ɣetrɔ @@ -1460,7 +1483,9 @@ For terms of use, see http://www.unicode.org/copyright.html hY + + hY @@ -1492,7 +1517,7 @@ For terms of use, see http://www.unicode.org/copyright.html - a h:mm:ss zzzz + a 'ga' h:mm:ss zzzz @@ -1535,9 +1560,9 @@ For terms of use, see http://www.unicode.org/copyright.html d E d - E a 'ga' h:mm + E a 'ga' h:mm E HH:mm - E a 'ga' h:mm:ss + E a 'ga' h:mm:ss E HH:mm:ss y G MMM y G @@ -1694,7 +1719,7 @@ For terms of use, see http://www.unicode.org/copyright.html masa siamlɔm siamlɔm - dasiamime + deasiamime anyɔnyɔ kele adeɛmekpɔxe @@ -2016,15 +2041,67 @@ For terms of use, see http://www.unicode.org/copyright.html ƒe si gbɔ na le ƒe {0} me - le ƒe {0} wo me + le ƒe {0} me ƒe {0} si va yi ƒe {0} si wo va yi + + ƒe + + le ƒe {0} me + le ƒe {0} me + + + le ƒe {0} si va yi me + le ƒe {0} si va yi me + + + + ƒe + + le ƒe {0} si gbɔna me + le ƒe {0} si gbɔna me + + + ƒe {0} si va yi me + ƒe {0} si va yi me + + - kɔta + kɔta + + le kɔta {0} si gbɔ na me + le kɔta {0} si gbɔ na me + + + kɔta {0} si va yi me + kɔta {0} si va yi me + + + + kɔta + + le kɔta {0} si gbɔ na me + le kɔta {0} si gbɔ na me + + + kɔta {0} si va yi me + kɔta {0} si va yi me + + + + kɔta + + le kɔta {0} si gbɔna me + le kɔta {0} si gbɔ na me + + + kɔta {0} si va yi me + kɔta {0} si va yi me + ɣleti @@ -2040,6 +2117,12 @@ For terms of use, see http://www.unicode.org/copyright.html ɣleti {0} si wo va yi + + ɣleti + + + ɣleti + kɔsiɖa ɖeka kɔsiɖa si va yi @@ -2150,8 +2233,13 @@ For terms of use, see http://www.unicode.org/copyright.html - +HH:mm;-HH:mm - {0} gaƒoƒo + +HH:mm;-HH:mm + GMT{0} + GMT + {0} + {0} + {0} + {1} ({0}) du manya @@ -3360,7 +3448,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Ɣedzeƒe Afrika gaƒoƒome + Ɣedzeƒe Africa gaƒoƒome EAT @@ -3368,7 +3456,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Anyiehe Afrika gaƒoƒome + Anyiehe Africa gaƒoƒome SAST @@ -3376,9 +3464,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Ɣetoɖoƒe Afrika gaƒoƒome + Ɣetoɖoƒe Africa gaƒoƒome Ɣetoɖoƒe Afrika gaƒoƒoɖoanyime - Ɣetoɖoƒe Afrika dzomeŋɔli gaƒoƒome + Ɣetoɖoƒe Africa ŋkekeme gaƒoƒome WAT @@ -3409,30 +3497,30 @@ For terms of use, see http://www.unicode.org/copyright.html - Titina Amerika gaƒoƒome - Titina Amerika gaƒoƒoɖoanyime - Titina Amerika ŋkekeme gaƒoƒome + Titina America gaƒoƒome + Titina America gaƒoƒoɖoanyime + Titina America ŋkekeme gaƒoƒome - Ɣedzeƒe Amerika gaƒoƒome - Ɣedzeƒe Amerika gaƒoƒoɖoanyime - Ɣedzeƒe Amerika ŋkekeme gaƒoƒome + Ɣedzeƒe America gaƒoƒome + Ɣedzeƒe America gaƒoƒoɖoanyime + Ɣedzeƒe America ŋkekeme gaƒoƒome - Amerika Todzidukɔwo ƒe gaƒoƒome - Amerika Todzidukɔwo ƒe gaƒoƒoɖoanyime - Amerika Todzidukɔwo ƒe ŋkekme gaƒoƒome + America Todzidukɔwo ƒe gaƒoƒome + America Todzidukɔwo ƒe gaƒoƒoɖoanyime + America Todzidukɔwo ƒe ŋkekme gaƒoƒome - Amerika Pasifik gaƒoƒome - Amerika Pasifik gaƒoƒoɖoanyime - Amerika Pasifik ŋkekeme gaƒoƒome + Pacific gaƒoƒome + Pacific gaƒoƒoɖoanyime + Pacific ŋkekme gaƒoƒome @@ -3458,9 +3546,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Arabia gaƒoƒome - Arabia gaƒoƒoɖoanyime - Arabia ŋkekeme gaƒoƒome + Arabia gaƒoƒome + Arabia gaƒoƒoɖoanyime + Arabia ŋkekeme gaƒoƒome @@ -3491,6 +3579,34 @@ For terms of use, see http://www.unicode.org/copyright.html Atlantic ŋkekeme gaƒoƒome + + + Titina Australia gaƒoƒome + Titina Australia gaƒoƒoɖoanyime + Titina Australia ŋkekeme gaƒoƒome + + + + + Australia ɣetoɖofe gaƒoƒome + Australia ɣetoɖofe gaƒoƒoɖoanyime + Australia ɣetoɖofe ŋkekeme gaƒoƒome + + + + + Ɣedzeƒe Australia gaƒoƒome + Ɣedzeƒe Australia gaƒoƒoɖoanyime + Ɣedzeƒe Australia ŋkekeme gaƒoƒome + + + + + Ɣetoɖoƒe Australia gaƒoƒome + Ɣetoɖoƒe Australia gaƒoƒoɖoanyime + Ɣetoɖoƒe Australia ŋkekeme gaƒoƒome + + Azerbaidzan gaƒoƒome @@ -3533,9 +3649,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Tsaina gaƒoƒome - Tsaina gaƒoƒoɖoanyime - Tsaina ŋkekeme gaƒoƒome + China gaƒoƒome + China gaƒoƒoɖoanyime + China ŋkekeme gaƒoƒome @@ -3573,23 +3689,23 @@ For terms of use, see http://www.unicode.org/copyright.html - Titina Yuropa gaƒoƒome - Titina Yuropa gaƒoƒoɖoanyime - Titina Yuropa dzomeŋɔli gaƒoƒome + Titina Europe gaƒoƒome + Titina Europe gaƒoƒoɖoanyime + Titina Europe ŋkekeme gaƒoƒome - Ɣedzeƒe Yuropa gaƒoƒo me - Ɣedzeƒe Yuropa gaƒoƒoɖoanyime - Ɣedzeƒe Yuropa dzomeŋɔli gaƒoƒome + Ɣedzeƒe Europe gaƒoƒome + Ɣedzeƒe Europe gaƒoƒoɖoanyime + Ɣedzeƒe Europe ŋkekeme gaƒoƒome - Ɣetoɖoƒe Yuropa gaƒoƒome - Ɣetoɖoƒe Yuropa gaƒoƒoɖoanyime - Ɣetoɖoƒe Yuropa dzomeŋɔli gaƒoƒome + Ɣetoɖoƒe Europe gaƒoƒome + Ɣetoɖoƒe Europe gaƒoƒoɖoanyime + Ɣetoɖoƒe Europe ŋkekeme gaƒoƒome @@ -3618,7 +3734,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Grinwish gaƒoƒome + Greenwich gaƒoƒome @@ -3675,16 +3791,16 @@ For terms of use, see http://www.unicode.org/copyright.html - Israel gaƒoƒome - Israel gaƒoƒoɖoanyime - Israel ŋkekeme gaƒoƒome + Israel gaƒoƒome + Israel gaƒoƒoɖoanyime + Israel ŋkekeme gaƒoƒome - Dzapan gaƒoƒome - Dzapan gaƒoƒoɖanyime - Dzapan ŋkekeme gaƒoƒome + Japan gaƒoƒome + Japan gaƒoƒoɖanyime + Japan ŋkekeme gaƒoƒome @@ -3706,9 +3822,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Korea gaƒoƒome - Korea gaƒoƒoɖoanyime - Korea ŋkekeme gaƒoƒome + Korea gaƒoƒome + Korea gaƒoƒoɖoanyime + Korea ŋkekeme gaƒoƒome @@ -3753,9 +3869,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Mɔskowgaƒoƒome - Mɔskow gaƒoƒoɖoanyime - Mɔskow dzomeŋɔli gaƒoƒome + Moscow gaƒoƒome + Moscow gaƒoƒoɖoanyime + Moscow ŋkekeme gaƒoƒome @@ -3982,6 +4098,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0000M + ¤0000M + ¤00000M + ¤00000M + ¤000000M + ¤000000M + ¤0B + ¤0B + ¤00B + ¤00B + ¤000B + ¤000B + + {1} {0} {1} {0} @@ -4077,10 +4221,11 @@ For terms of use, see http://www.unicode.org/copyright.html ɔstriaga schilling - australiaga dollar - ɔstraliaga dollar - ɔstraliaga dollar - AU$ + Australiaga dollar + Australiaga dollar + Australiaga dollar + AU$ + $ arubaga lorin @@ -4213,10 +4358,11 @@ For terms of use, see http://www.unicode.org/copyright.html braziliaga cruzeiro xoxotɔ gbãtɔwo (1990–1993) - brazilga real - braziliaga real - braziliaga real - R$ + Braziliaga real + Brazilga real + Braziliaga real + R$ + R$ brazilia cruzado xoxotɔ (1989–1990) @@ -4269,10 +4415,11 @@ For terms of use, see http://www.unicode.org/copyright.html belizega dollar - kanadaga dollar - kanadaga dollar - kanadaga dollar - CA$ + Canadaga dollar + Canadaga dollar + Canadaga dollar + CA$ + $ kongoga franc @@ -4285,9 +4432,10 @@ For terms of use, see http://www.unicode.org/copyright.html WIR eurowo CHE - swissga franc - swissga franc - swissga franc + Swissga franc + Swissga franc + Swissga franc + CHF WIR euro CHW @@ -4315,10 +4463,11 @@ For terms of use, see http://www.unicode.org/copyright.html tsainatɔwo ƒe gadzraɖoƒe dollarwo - tsainaga yuan - tsainaga yuan - tsainaga yuan - CN¥ + Chinesega yuan + Chinesega yuan + Chinesega yuan + CN¥ + ¥ kolombiaga peso @@ -4386,9 +4535,11 @@ For terms of use, see http://www.unicode.org/copyright.html dzibutiga franc - danemarkga krone - denmarkga krone - denmarkga krone + Denmarkga krone + Denmarkga krone + Denmarkga krone + DKK + kr dominicaga peso @@ -4446,10 +4597,11 @@ For terms of use, see http://www.unicode.org/copyright.html ethiopiaga birr - euro + EUR euro euro - + + finlandga markka @@ -4472,10 +4624,11 @@ For terms of use, see http://www.unicode.org/copyright.html frentsiga franc - britainga pound - britainga pound - britainga pound - £ + Britishga pound + Britishga pound + Britishga pound + £ + £ dzɔdziaga kupon larit @@ -4549,10 +4702,11 @@ For terms of use, see http://www.unicode.org/copyright.html guyanaga dollar - hong kongga dollar - hong kongga dollar - hong kongga dollar - HK$ + Hong Kongga dollar + Hong Kongga dollar + Hong Kongga dollar + HK$ + $ honduraga lempira @@ -4580,9 +4734,11 @@ For terms of use, see http://www.unicode.org/copyright.html hungariaga forint - indinesiaga rupiah - indinesiaga rupiah - indinesiaga rupiah + Indonesiaga rupiah + Indonesiaga rupiah + Indonesiaga rupiah + IDR + Rp ireland pound @@ -4606,10 +4762,11 @@ For terms of use, see http://www.unicode.org/copyright.html - indiaga rupee - indiaga rupee - indiaga rupee - + Indiaga rupee + Indiaga rupee + Indiaga rupee + + irakga dinar @@ -4647,10 +4804,11 @@ For terms of use, see http://www.unicode.org/copyright.html yɔdanga dinar - dzapanga yen - dzapanga yen - dzapanga yen - JP¥ + Japanesega yen + Japanesega yen + Japanesega yen + JP¥ + ¥ kenyaga shilling @@ -4688,10 +4846,11 @@ For terms of use, see http://www.unicode.org/copyright.html anyiehe koreaga won (1945–1953) - anyiehe koreaga won - anyiehe koreaga won - anyiehe koreaga won - + South Koreaga won + South Koreaga won + South Koreaga won + + kuwaitga dinar @@ -4869,10 +5028,11 @@ For terms of use, see http://www.unicode.org/copyright.html malawiga kwacha - meksikoga peso - meksikoga peso - meksikoga peso - MX$ + Mexicoga peso + Mexicoga peso + Mexicoga peso + MX$ + $ malaysiaga ringit @@ -4908,9 +5068,11 @@ For terms of use, see http://www.unicode.org/copyright.html hollandga guilder - norwayga krone - nɔweiga krone - nɔweiga krone + Norwayga krone + Norwayga krone + Norwayga krone + NOK + kr nepalga rupee @@ -5009,9 +5171,11 @@ For terms of use, see http://www.unicode.org/copyright.html serbiaga dinar - rɔtsiaga ruble - rɔtsiaga ruble - rɔtsiaga ruble + Russiaga ruble + Russiaga ruble + Russiaga ruble + RUB + rɔtsiaga ruble (1991–1998) @@ -5024,9 +5188,10 @@ For terms of use, see http://www.unicode.org/copyright.html rwandaga franc - saudiga riyal - saudiga riyal - saudiga riyal + Saudi Arabiaga riyal + Saudi Arabiaga riyal + Saudi Arabiaga riyal + SAR solomon ƒudomekpo dukɔwo ƒe ga dollar @@ -5054,9 +5219,11 @@ For terms of use, see http://www.unicode.org/copyright.html sudanga pound (1957–1998) - swedenga krona - swedenga krona - swedenga krona + Swedishga krone + Swedishga krone + Swedishga krone + SEK + kr singapɔga dollar @@ -5129,10 +5296,11 @@ For terms of use, see http://www.unicode.org/copyright.html swaziga lilangeni - thaiga baht - thaiga baht - thaiga baht - ฿ + Thailandga baht + Thailandga baht + Thailandga baht + ฿ + ฿ tajikistanga ruble @@ -5175,9 +5343,12 @@ For terms of use, see http://www.unicode.org/copyright.html tɛkiiga lira (1922–2005) - tɛkiiga lira - tɛkiiga lira - tɛkiiga lira + Turkishga lira + Turkishga lira + Turkishga lira + TRY + + TL trinidad kple tobagoga dollar @@ -5185,10 +5356,11 @@ For terms of use, see http://www.unicode.org/copyright.html trinidad kple tobagoga dollar - taiwanga yeye dollar - taiwanga yeye dollar - taiwanga yeye dollar - NT$ + Taiwanga dollar + Taiwanga dollar + Taiwanga dollar + NT$ + $ Tanzaniatɔwofɛgadudu @@ -5216,10 +5388,11 @@ For terms of use, see http://www.unicode.org/copyright.html ugandaga shilling - us ga dollar - us ga dollar - us ga dollar - US$ + US ga dollar + US ga dollar + US ga dollar + US$ + $ us ga dollar (ŋkeke si gbɔna tɔ) @@ -5414,9 +5587,11 @@ For terms of use, see http://www.unicode.org/copyright.html anyiehe afrikaga rand (gadzikpɔtɔ) - anyiehe afrikaga rand - anyiehe afrikaga rand - anyiehe afrikaga rand + South Africaga rand + South Africaga rand + South Africaga rand + ZAR + R zambiaga kwacha (1968–2012) @@ -5457,41 +5632,41 @@ For terms of use, see http://www.unicode.org/copyright.html - - ŋkeke - ŋkeke {0} wo - ŋkeke {0} wo - - - gaƒoƒo - gaƒoƒo {0} wo - gaƒoƒo {0} wo - - - aɖabaƒoƒo - aɖabaƒoƒo {0} wo - aɖabaƒoƒo {0} wo + + ƒewo + ƒe {0} + ƒe {0} - ɣleti - ɣleti {0} wo - ɣleti {0} wo + ɣletiwo + ɣleti {0} + ɣleti {0} + + + kɔsiɖawo + kɔsiɖa {0} + kɔsiɖa {0} + + + ŋkekewo + ŋkeke {0} + ŋkeke {0} + + + gaƒoƒowo + gaƒoƒo {0} + gaƒoƒo {0} + + + aɖabaƒoƒowo + aɖabaƒoƒo {0} + aɖabaƒoƒo {0} sekend sekend {0} wo sekend {0} wo - - kɔsiɖa - kɔsiɖa {0} wo - kɔsiɖa {0} wo - - - ƒe - ƒe {0} wo - ƒe {0} wo - agbadroƒe agbadroƒe {0} @@ -5504,41 +5679,69 @@ For terms of use, see http://www.unicode.org/copyright.html + + ƒewo + ƒe {0} + ƒe {0} + + + ɣletiwo + ɣleti {0} + ɣleti {0} + + + kɔsiɖawo + kɔsiɖa {0} + kɔsiɖa {0} + + ŋkekewo ŋkeke {0} ŋkeke {0} + gaƒoƒowo gaƒoƒo {0} gaƒoƒo {0} + aɖabaƒoƒowo aɖabaƒoƒo {0} aɖabaƒoƒo {0} - - ɣleti {0} - ɣleti {0} - sekend {0} sekend {0} - - kɔsiɖa {0} - kɔsiɖa {0} - + + + ƒe ƒe {0} ƒe {0} - - + + ɣletiwo + ɣleti {0} + ɣleti {0} + + + kɔsiɖa + kɔsiɖa {0} + kɔsiɖa {0} + + + ŋkeke + ŋkeke {0} + ŋkeke {0} + - g {0} - g {0} + gaƒoƒo + gaƒoƒo {0} + gaƒoƒo {0} + aɖabaƒoƒo a {0} a {0} @@ -5559,8 +5762,26 @@ For terms of use, see http://www.unicode.org/copyright.html - {0}, {1} - {0}, {1} + {0}, {1} + {0}, {1} + {0}, kple {1} + {0} kple {1} + + + {0}, {1} + {0}, {1} + {0}, kple {1} + {0} kple {1} + + + {0}, {1} + {0}, {1} + {0}, kple {1} + {0} kple {1} + + + {0}, {1} + {0}, {1} {0}, kple {1} {0} kple {1} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ee_GH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ee_GH.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ee_GH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ee_GH.xml index 2c0616ad1c1..7cfc3b6b1bf 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ee_GH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ee_GH.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ee_TG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ee_TG.xml new file mode 100644 index 00000000000..1f558a756e3 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ee_TG.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/el.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/el.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/el.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/el.xml index 2ac750e6d85..a3138758d86 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/el.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/el.xml @@ -1,13 +1,12 @@ - - - + @@ -62,6 +61,7 @@ For terms of use, see http://www.unicode.org/copyright.html Μπένα Μπαφούτ Βουλγαρικά + Δυτικά Μπαλοχικά Μποζπούρι Μπισλάμα Μπικόλ @@ -86,7 +86,7 @@ For terms of use, see http://www.unicode.org/copyright.html Καρίμπ Καγιούγκα Ατσάμ - Τσέτσνιαν + Τσετσενικά Κεμπουάνο Τσίγκα Καμόρρο @@ -107,7 +107,7 @@ For terms of use, see http://www.unicode.org/copyright.html Τσεχικά Κασούμπιαν Εκκλησιαστικά Σλαβικά - Χουβάς + Τσουβασικά Ουαλικά Δανικά Ντακότα @@ -115,7 +115,7 @@ For terms of use, see http://www.unicode.org/copyright.html Τάιτα Γερμανικά Γερμανικά Αυστρίας - Γερμανικά Ελβετίας + Άνω Γερμανικά Ελβετίας Ντέλαγουερ Σλαβικά Ντόγκριμπ @@ -188,7 +188,7 @@ For terms of use, see http://www.unicode.org/copyright.html Γοτθικά Γκρίμπο Αρχαία Ελληνικά - Ελβετικά Γερμανικά + Γερμανικά Ελβετίας Γκουγιαράτι Γκούσι Μανξ @@ -289,6 +289,7 @@ For terms of use, see http://www.unicode.org/copyright.html Λαοθιανά Μόνγκο Λόζι + Βόρεια Λούρι Λιθουανικά Λούμπα-Κατάνγκα Λούμπα-Λουλούα @@ -337,12 +338,14 @@ For terms of use, see http://www.unicode.org/copyright.html Βιρμανικά Μιένε Έρζυα + Μαζαντεράνι Ναούρου Ναπολιτανικά Νάμα Νορβηγικά Μποκμάλ Ντεμπέλε Βορρά Κάτω Γερμανικά + Κάτω Γερμανικά Ολλανδίας Νεπάλι Νεγουάρι Ντόνγκα @@ -419,6 +422,7 @@ For terms of use, see http://www.unicode.org/copyright.html Σικελιανά Σκωτικά Σίντι + Νότια Κουρδικά Βόρεια Σάμι Σένεκα Σένα @@ -450,14 +454,14 @@ For terms of use, see http://www.unicode.org/copyright.html Σουάτι Σάχο Νότια Σόθο - Σουδανικά + Σουνδανικά Σουκούμα Σούσου Σουμερικά Σουηδικά Σουαχίλι + Κονγκό Σουαχίλι Κομόρρια - Κονγκό Σουαχίλι Κλασικά Συριακά Συριακά Ταμίλ @@ -513,6 +517,7 @@ For terms of use, see http://www.unicode.org/copyright.html Γουάλαμο Γουάρει Γουασό + Γουαρλπίρι Γουόλοφ Καλμίκ Ζόσα @@ -641,7 +646,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -711,7 +716,6 @@ For terms of use, see http://www.unicode.org/copyright.html Ανγκουίλα Αλβανία Αρμενία - Ολλανδικές Αντίλλες Ανγκόλα Ανταρκτική Αργεντινή @@ -789,7 +793,7 @@ For terms of use, see http://www.unicode.org/copyright.html Γαλλία Γκαμπόν Ηνωμένο Βασίλειο - Η.Β. + ΗΒ Γρενάδα Γεωργία Γαλλική Γουιάνα @@ -858,7 +862,7 @@ For terms of use, see http://www.unicode.org/copyright.html Άγιος Μαρτίνος (Γαλλικό τμήμα) Μαδαγασκάρη Νήσοι Μάρσαλ - ΠΓΔΜ + Πρώην Γιουγκοσλαβική Δημοκρατία της Μακεδονίας Πρώην Γιουγκοσλαβική Δημοκρατία της Μακεδονίας (ΠΓΔΜ) Μάλι Μιανμάρ/Βιρμανία @@ -935,7 +939,7 @@ For terms of use, see http://www.unicode.org/copyright.html Τριστάν ντα Κούνια Νήσοι Τερκ και Κάικος Τσαντ - Γαλλικά Νότια Εδάφη + Γαλλικές περιοχές του νοτίου ημισφαιρίου Τόγκο Ταϊλάνδη Τατζικιστάν @@ -952,7 +956,7 @@ For terms of use, see http://www.unicode.org/copyright.html Τανζανία Ουκρανία Ουγκάντα - Απομακρυσμένες Νησίδες Η.Π.Α. + Απομακρυσμένες Νησίδες ΗΠΑ Ηνωμένες Πολιτείες ΗΠΑ Ουρουγουάη @@ -1021,6 +1025,9 @@ For terms of use, see http://www.unicode.org/copyright.html Αριθμητική ταξινόμηση Ισχύς ταξινόμησης Νόμισμα + Κύκλος ωρών (12 ή 24) + Στιλ αλλαγής γραμμών + Σύστημα μέτρησης Αριθμοί Ζώνη ώρας Παραλλαγή τοπικών ρυθμίσεων @@ -1028,97 +1035,107 @@ For terms of use, see http://www.unicode.org/copyright.html Προσωπική χρήση - Αραβικό-Ινδικά ψηφία - Εκτεταμένα αραβικό-ινδικά ψηφία - Αρμενικά αριθμητικά - Πεζά αρμενικά αριθμητικά - Βεγγαλικά ψηφία - Σειρά ταξινόμησης Παραδοσιακών Κινεζικών - Big5 - Βουδιστικό ημερολόγιο - Κινεζικό ημερολόγιο - Κοπτικό ημερολόγιο - Κορεατικό ημερολόγιο ντάνγκι - Ψηφία Ντεβαναγκάρι - Σειρά ταξινόμησης ημερολογίου - Προεπιλεγμένη σειρά ταξινόμησης Unicode - Αιθιοπικά αριθμητικά - Αιθιοπικό ημερολόγιο - Αιθιοπικό ημερολόγιο Άμετ Άλεμ - Οικονομικά αριθμητικά - Ψηφία πλήρους πλάτους - Σειρά ταξινόμησης Απλουστευμένων Κινεζικών - GB2312 - Γεωργιανά αριθμητικά - Γρηγοριανό ημερολόγιο - Ελληνικά αριθμητικά - Ελληνικά αριθμητικά με πεζά γράμματα - Γκουτζαρατικά ψηφία - Ψηφία Γκουρμούκι - Κινεζικά δεκαδικά αριθμητικά - Απλοποιημένα κινεζικά αριθμητικά - Απλοποιημένα κινεζικά οικονομικά αριθμητικά - Παραδοσιακά κινεζικά αριθμητικά - Παραδοσιακά κινεζικά οικονομικά αριθμητικά - Εβραϊκά αριθμητικά - Εβραϊκό ημερολόγιο - Ταξινόμηση όλων - Ινδικό εθνικό ημερολόγιο - Ισλαμικό ημερολόγιο - Ισλαμικό αστικό ημερολόγιο - Ισλαμικό ημερολόγιο (Σαουδική Αραβία, θέαση) - Ισλαμικό ημερολόγιο (δομημένο, αστρονομική εποχή) - Ημερολόγιο ISO-8601 - Ιαπωνικό ημερολόγιο - Ιαπωνικά αριθμητικά - Ιαπωνικά οικονομικά αριθμητικά - Ψηφία Χμερ - Ψηφία Κανάντα - Λαοϊκά ψηφία - Ψηφία της Δύσης - Ταξινόμηση πεζών χαρακτήρων πρώτα - Μαλαγιαλαμικά ψηφία - Μογγολικά ψηφία - Ψηφία Μιανμάρ - Εγγενή ψηφία - Κανονικά ταξινόμηση τόνων - Κανονική ταξινόμηση χαρακτήρων - Ταξινόμηση με διάκριση χαρακτήρων - Ξεχωριστή ταξινόμηση χαρακτήρων Κάνα - Ταξινόμηση χωρίς κανονικοποίηση - Μεμονωμένη ταξινόμηση ψηφίων - Ταξινόμηση συμβόλων - Οριγικά ψηφία - Περσικό ημερολόγιο - Σειρά ταξινόμησης τηλεφωνικού καταλόγου - Φωνητική σειρά ταξινόμησης - Σειρά ταξινόμησης Πινγίν - Ταξινόμηση μόνο βασικών χαρακτήρων - Ταξινόμηση τόνων/χαρακτήρων διάκρισης/χαρακτήρων μεγάλου μεγέθους/χαρακτήρων Κάνα - Ανασχηματισμένη σειρά ταξινόμησης - Ημερολόγιο της Δημοκρατίας της Κίνας - Λατινικοί αριθμοί - Πεζοί λατινικοί αριθμοί - Αναζήτηση γενικού τύπου - Αναζήτηση κατά αρχικό σύμφωνο Χανγκούλ - Ταξινόμηση τόνων - Ταξινόμηση με αγνόηση συμβόλων - Τυπική σειρά ταξινόμησης - Σειρά ταξινόμησης κινήσεων - Ταμιλικά αριθμητικά - Ταμιλικά ψηφία - Τελουγκουϊκά ψηφία - Ταξινόμηση τόνων/χαρακτήρων διάκρισης/χαρακτήρων μεγάλου μεγέθους - Ταϊλανδικά ψηφία - Θιβετανικά ψηφία - Παραδοσιακή σειρά ταξινόμησης - Παραδοσιακά αριθμητικά - Σειρά ταξινόμησης ριζικής αρίθμησης - Ταξινόμηση κεφαλαίων χαρακτήρων πρώτα - Ψηφία Βάι - Αντίστροφη ταξινόμηση τόνων - Ταξινόμηση χαρακτήρων διάκρισης - Διαφορετική ταξινόμηση Κάνα - Κανονικοποιημένη ταξινόμηση Unicode - Αριθμητική ταξινόμηση ψηφίων + Βουδιστικό ημερολόγιο + Κινεζικό ημερολόγιο + Κοπτικό ημερολόγιο + Κορεατικό ημερολόγιο ντάνγκι + Αιθιοπικό ημερολόγιο + Αιθιοπικό ημερολόγιο Άμετ Άλεμ + Γρηγοριανό ημερολόγιο + Εβραϊκό ημερολόγιο + Ινδικό εθνικό ημερολόγιο + Ισλαμικό ημερολόγιο + Ισλαμικό αστικό ημερολόγιο + Ισλαμικό ημερολόγιο (Σαουδική Αραβία, θέαση) + Ισλαμικό ημερολόγιο (δομημένο, αστρονομική εποχή) + Ημερολόγιο ISO-8601 + Ιαπωνικό ημερολόγιο + Περσικό ημερολόγιο + Ημερολόγιο της Δημοκρατίας της Κίνας + Ταξινόμηση συμβόλων + Ταξινόμηση με αγνόηση συμβόλων + Κανονικά ταξινόμηση τόνων + Αντίστροφη ταξινόμηση τόνων + Ταξινόμηση πεζών χαρακτήρων πρώτα + Κανονική ταξινόμηση χαρακτήρων + Ταξινόμηση κεφαλαίων χαρακτήρων πρώτα + Ταξινόμηση με διάκριση χαρακτήρων + Ταξινόμηση χαρακτήρων διάκρισης + Ξεχωριστή ταξινόμηση χαρακτήρων Κάνα + Διαφορετική ταξινόμηση Κάνα + Σειρά ταξινόμησης Παραδοσιακών Κινεζικών - Big5 + Σειρά ταξινόμησης ημερολογίου + Προεπιλεγμένη σειρά ταξινόμησης Unicode + Σειρά ταξινόμησης Απλουστευμένων Κινεζικών - GB2312 + Σειρά ταξινόμησης τηλεφωνικού καταλόγου + Φωνητική σειρά ταξινόμησης + Σειρά ταξινόμησης Πινγίν + Ανασχηματισμένη σειρά ταξινόμησης + Αναζήτηση γενικού τύπου + Αναζήτηση κατά αρχικό σύμφωνο Χανγκούλ + Τυπική σειρά ταξινόμησης + Σειρά ταξινόμησης κινήσεων + Παραδοσιακή σειρά ταξινόμησης + Σειρά ταξινόμησης ριζικής αρίθμησης + Ταξινόμηση χωρίς κανονικοποίηση + Κανονικοποιημένη ταξινόμηση Unicode + Μεμονωμένη ταξινόμηση ψηφίων + Αριθμητική ταξινόμηση ψηφίων + Ταξινόμηση όλων + Ταξινόμηση μόνο βασικών χαρακτήρων + Ταξινόμηση τόνων/χαρακτήρων διάκρισης/χαρακτήρων μεγάλου μεγέθους/χαρακτήρων Κάνα + Ταξινόμηση τόνων + Ταξινόμηση τόνων/χαρακτήρων διάκρισης/χαρακτήρων μεγάλου μεγέθους + 12ωρο σύστημα (0–11) + 12ωρο σύστημα (1–12) + 24ωρο σύστημα (0–23) + 24ωρο σύστημα (1–24) + Χαλαρό στιλ αλλαγής γραμμών + Κανονικό στιλ αλλαγής γραμμών + Στενό στιλ αλλαγής γραμμών + Μετρικό σύστημα + Βρετανικό σύστημα μέτρησης + Αγγλοσαξωνικό σύστημα μέτρησης + Αραβικό-Ινδικά ψηφία + Εκτεταμένα αραβικό-ινδικά ψηφία + Αρμενικά αριθμητικά + Πεζά αρμενικά αριθμητικά + Βεγγαλικά ψηφία + Ψηφία Ντεβαναγκάρι + Αιθιοπικά αριθμητικά + Οικονομικά αριθμητικά + Ψηφία πλήρους πλάτους + Γεωργιανά αριθμητικά + Ελληνικά αριθμητικά + Ελληνικά αριθμητικά με πεζά γράμματα + Γκουτζαρατικά ψηφία + Ψηφία Γκουρμούκι + Κινεζικά δεκαδικά αριθμητικά + Απλοποιημένα κινεζικά αριθμητικά + Απλοποιημένα κινεζικά οικονομικά αριθμητικά + Παραδοσιακά κινεζικά αριθμητικά + Παραδοσιακά κινεζικά οικονομικά αριθμητικά + Εβραϊκά αριθμητικά + Ιαπωνικά αριθμητικά + Ιαπωνικά οικονομικά αριθμητικά + Ψηφία Χμερ + Ψηφία Κανάντα + Λαοϊκά ψηφία + Ψηφία της Δύσης + Μαλαγιαλαμικά ψηφία + Μογγολικά ψηφία + Ψηφία Μιανμάρ + Εγγενή ψηφία + Οριγικά ψηφία + Λατινικοί αριθμοί + Πεζοί λατινικοί αριθμοί + Ταμιλικά αριθμητικά + Ταμιλικά ψηφία + Τελουγκουϊκά ψηφία + Ταϊλανδικά ψηφία + Θιβετανικά ψηφία + Παραδοσιακά αριθμητικά + Ψηφία Βάι BGN @@ -1165,8 +1182,8 @@ For terms of use, see http://www.unicode.org/copyright.html « » - " - " + + @@ -1213,16 +1230,17 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} - {0} + {1}, {0} - {1} - {0} + {1}, {0} d + ccc E d y G MMM y G @@ -1230,8 +1248,6 @@ For terms of use, see http://www.unicode.org/copyright.html E, d MMM y G h a HH - HH:mm - HH:mm:ss h:mm a HH:mm h:mm:ss a @@ -1567,15 +1583,55 @@ For terms of use, see http://www.unicode.org/copyright.html + + π.μ. + μ.μ. + πρωί + μεσημ. + απόγ. + βράδυ + - π - μεσ. - μ + πμ + μμ + πρωί + μεσημ. + απόγ. + βράδυ π.μ. - μεσημέρι μ.μ. + πρωί + μεσημέρι + απόγευμα + βράδυ + + + + + π.μ. + μ.μ. + πρωί + μεσημ. + απόγ. + βράδυ + + + π.μ. + μ.μ. + πρωί + μεσημέρι + απόγευμα + βράδυ + + + π.μ. + μ.μ. + πρωί + μεσημέρι + απόγευμα + βράδυ @@ -1672,12 +1728,14 @@ For terms of use, see http://www.unicode.org/copyright.html E, d MMM y G h a HH - HH:mm - HH:mm:ss h:mm a HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d/M E, d/M @@ -1792,8 +1850,8 @@ For terms of use, see http://www.unicode.org/copyright.html E, dd MMM y – E, dd MMM y - MMMM–MMMM y - MMMM y – MMMM y + LLLL–LLLL y + LLLL y – LLLL y @@ -1862,11 +1920,11 @@ For terms of use, see http://www.unicode.org/copyright.html - Περίοδος + περίοδος - Έτος - προηγούμενο έτος + έτος + πέρσι φέτος επόμενο έτος @@ -1880,6 +1938,9 @@ For terms of use, see http://www.unicode.org/copyright.html έτ. + πέρσι + φέτος + επόμενο έτος σε {0} έτος σε {0} έτη @@ -1891,17 +1952,23 @@ For terms of use, see http://www.unicode.org/copyright.html έτ. + πέρσι + φέτος + επόμενο έτος - +{0} έτος - +{0} έτη + σε {0} έτος + σε {0} έτη - -{0} έτος - -{0} έτη + {0} έτος πριν + {0} έτη πριν - Τρίμηνο + τρίμηνο + προηγούμενο τρίμηνο + τρέχον τρίμηνο + επόμενο τρίμηνο σε {0} τρίμηνο σε {0} τρίμηνα @@ -1913,6 +1980,9 @@ For terms of use, see http://www.unicode.org/copyright.html τρίμ. + προηγ. τρίμ. + τρέχον τρίμ. + επόμ. τρίμ. σε {0} τρίμ. σε {0} τρίμ. @@ -1924,17 +1994,20 @@ For terms of use, see http://www.unicode.org/copyright.html τρίμ. + προηγ. τρίμ. + τρέχον τρίμ. + επόμ. τρίμ. - +{0} Τ - +{0} Τ + σε {0} τρίμ. + σε {0} τρίμ. - -{0} Τ - -{0} Τ + {0} τρίμ. πριν + {0} τρίμ. πριν - Μήνας + μήνας προηγούμενος μήνας τρέχων μήνας επόμενος μήνας @@ -1950,27 +2023,27 @@ For terms of use, see http://www.unicode.org/copyright.html μήν. - σε {0} μήν. - σε {0} μήν. + σε {0} μήνα + σε {0} μήνες - πριν από {0} μήν. - πριν από {0} μήν. + πριν από {0} μήνα + πριν από {0} μήνες μήν. - +{0} μήν. - +{0} μήν. + σε {0} μ. + σε {0} μ. - -{0} μήν. - -{0} μήν. + {0} μ. πριν + {0} μ. πριν - Εβδομάδα + εβδομάδα προηγούμενη εβδομάδα αυτήν την εβδομάδα επόμενη εβδομάδα @@ -1997,16 +2070,16 @@ For terms of use, see http://www.unicode.org/copyright.html εβδ. - +{0} εβδ. - +{0} εβδ. + σε {0} εβδ. + σε {0} εβδ. - -{0} εβδ. - -{0} εβδ. + {0} εβδ. πριν + {0} εβδ. πριν - Ημέρα + ημέρα προχθές χθες σήμερα @@ -2035,16 +2108,16 @@ For terms of use, see http://www.unicode.org/copyright.html ημέρα - σε {0} ημέρα - σε {0} ημέρες + σε {0} ημ. + σε {0} ημ. - πριν από {0} ημέρα - πριν από {0} ημέρες + {0} ημ. πριν + {0} ημ. πριν - Ημέρα εβδομάδας + καθημερινή προηγούμενη Κυριακή @@ -2107,7 +2180,7 @@ For terms of use, see http://www.unicode.org/copyright.html επόμ. Τε - επόμενη Πέμπτη + προηγούμενη Πέμπτη αυτήν την Πέμπτη επόμενη Πέμπτη @@ -2155,7 +2228,7 @@ For terms of use, see http://www.unicode.org/copyright.html π.μ./μ.μ. - Ώρα + ώρα σε {0} ώρα σε {0} ώρες @@ -2179,16 +2252,16 @@ For terms of use, see http://www.unicode.org/copyright.html ώ - +{0} ώ - +{0} ώ + σε {0} ώ. + σε {0} ώ. - -{0} ώ - -{0} ώ + {0} ώ. πριν + {0} ώ. πριν - Λεπτό + λεπτό σε {0} λεπτό σε {0} λεπτά @@ -2212,16 +2285,16 @@ For terms of use, see http://www.unicode.org/copyright.html λ - +{0} λ - +{0} λ + σε {0} λ. + σε {0} λ. - -{0} λ - -{0} λ + {0} λ. πριν + {0} λ. πριν - Δευτερόλεπτο + δευτερόλεπτο τώρα σε {0} δευτερόλεπτο @@ -2246,16 +2319,16 @@ For terms of use, see http://www.unicode.org/copyright.html δ - +{0} δ - +{0} δ + σε {0} δ. + σε {0} δ. - -{0} δ - -{0} δ + {0} δ. πριν + {0} δ. πριν - Ζώνη ώρας + ζώνη ώρας @@ -3133,6 +3206,9 @@ For terms of use, see http://www.unicode.org/copyright.html Πορτ Μόρεσμπυ + + Μπουγκενβίλ + Μανίλα @@ -3217,6 +3293,9 @@ For terms of use, see http://www.unicode.org/copyright.html Ιρκούτσκ + + Τσίτα + Γιάκουτσκ @@ -3235,6 +3314,9 @@ For terms of use, see http://www.unicode.org/copyright.html Μαγκαντάν + + Σρεντνεκόλιμσκ + Καμτσάτκα @@ -3299,7 +3381,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ελ Σαλβαδόρ - Lower Prince’s Quarter (Άγιος Μαρτίνος Ολλανδίας) + Άγιος Μαρτίνος Ολλανδίας Δαμασκός @@ -4547,7 +4629,35 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ - ¤#,##0.00;(¤#,##0.00) + #,##0.00 ¤;(#,##0.00 ¤) + + + + + 0 χιλ'.' ¤ + 0 χιλ'.' ¤ + 00 χιλ'.' ¤ + 00 χιλ'.' ¤ + 000 χιλ'.' ¤ + 000 χιλ'.' ¤ + 0 εκ'.' ¤ + 0 εκ'.' ¤ + 00 εκ'.' ¤ + 00 εκ'.' ¤ + 000 εκ'.' ¤ + 000 εκ'.' ¤ + 0 δισ'.' ¤ + 0 δισ'.' ¤ + 00 δισ'.' ¤ + 00 δισ'.' ¤ + 000 δισ'.' ¤ + 000 δισ'.' ¤ + 0 τρισ'.' ¤ + 0 τρισ'.' ¤ + 00 τρισ'.' ¤ + 00 τρισ'.' ¤ + 000 τρισ'.' ¤ + 000 τρισ'.' ¤ {0} {1} @@ -4603,6 +4713,7 @@ For terms of use, see http://www.unicode.org/copyright.html κουάνζα Ανγκόλας κουάνζες Ανγκόλας AOA + Kz Κουάνζα Ανγκόλας (1977–1990) @@ -4674,6 +4785,7 @@ For terms of use, see http://www.unicode.org/copyright.html μετατρέψιμο μάρκο Βοσνίας-Ερζεγοβίνης μετατρέψιμα μάρκα Βοσνίας-Ερζεγοβίνης BAM + KM Νέο δινάριο Βοσνίας-Ερζεγοβίνης @@ -4758,6 +4870,7 @@ For terms of use, see http://www.unicode.org/copyright.html μπολιβιάνο Βολιβίας μπολιβιάνο Βολιβίας BOB + Bs Παλαιό βολιβιάνο Βολιβίας @@ -4832,6 +4945,7 @@ For terms of use, see http://www.unicode.org/copyright.html πούλα Μποτσουάνας πούλα Μποτσουάνας BWP + P Νέο Ρούβλι Λευκορωσίας (1994–1999) @@ -4938,6 +5052,7 @@ For terms of use, see http://www.unicode.org/copyright.html μετατρέψιμο πέσο Κούβας μετατρέψιμα πέσο Κούβας CUC + $ Πέσο Κούβας @@ -4962,6 +5077,7 @@ For terms of use, see http://www.unicode.org/copyright.html κορόνα Τσεχίας κορόνες Τσεχίας CZK + Οστμάρκ Ανατολικής Γερμανίας @@ -4984,6 +5100,7 @@ For terms of use, see http://www.unicode.org/copyright.html κορόνα Δανίας κορόνες Δανίας DKK + kr Πέσο Δομινικανής Δημοκρατίας @@ -5013,6 +5130,7 @@ For terms of use, see http://www.unicode.org/copyright.html λίρα Αιγύπτου λίρες Αιγύπτου EGP + Νάκφα Ερυθραίας @@ -5065,6 +5183,7 @@ For terms of use, see http://www.unicode.org/copyright.html λίρα Νησιών Φώκλαντ λίρες Νησιών Φώκλαντ FKP + £ Φράγκο Γαλλίας @@ -5072,9 +5191,9 @@ For terms of use, see http://www.unicode.org/copyright.html φράγκα Γαλλίας - Λίρα Βρετανίας - λίρα Βρετανίας - λίρες Βρετανίας + Λίρα Στερλίνα Βρετανίας + λίρα στερλίνα Βρετανίας + λίρες στερλίνες Βρετανίας £ £ @@ -5088,6 +5207,7 @@ For terms of use, see http://www.unicode.org/copyright.html λάρι Γεωργίας λάρι Γεωργίας GEL + Σέντι Γκάνας (1979–2007) @@ -5118,6 +5238,7 @@ For terms of use, see http://www.unicode.org/copyright.html φράγκο Γουινέας φράγκα Γουινέας GNF + FG Συλί Γουινέας @@ -5143,6 +5264,7 @@ For terms of use, see http://www.unicode.org/copyright.html κουετσάλ Γουατεμάλας κουετσάλ Γουατεμάλας GTQ + Q Γκινέα Εσκούδο Πορτογαλίας @@ -5173,6 +5295,7 @@ For terms of use, see http://www.unicode.org/copyright.html λεμπίρα Ονδούρας λεμπίρα Ονδούρας HNL + L Δηνάριο Κροατίας @@ -5184,6 +5307,7 @@ For terms of use, see http://www.unicode.org/copyright.html κούνα Κροατίας κούνα Κροατίας HRK + kn Γκουρντ Αϊτής @@ -5196,12 +5320,14 @@ For terms of use, see http://www.unicode.org/copyright.html φιορίνι Ουγγαρίας φιορίνια Ουγγαρίας HUF + Ft Ρουπία Ινδονησίας ρουπία Ινδονησίας ρουπία Ινδονησίας IDR + Rp Λίρα Ιρλανδίας @@ -5254,6 +5380,7 @@ For terms of use, see http://www.unicode.org/copyright.html κορόνα Ισλανδίας κορόνες Ισλανδίας ISK + kr Λιρέτα Ιταλίας @@ -5304,12 +5431,14 @@ For terms of use, see http://www.unicode.org/copyright.html φράγκο Κομορών φράγκα Κομορών KMF + CF Γουόν Βόρειας Κορέας γουόν Βόρειας Κορέας γουόν Βόρειας Κορέας KPW + Παλιό γον Νότιας Κορέας @@ -5354,12 +5483,14 @@ For terms of use, see http://www.unicode.org/copyright.html λίρα Λιβάνου λίρες Λιβάνου LBP + Ρουπία Σρι Λάνκα ρουπία Σρι Λάνκα ρουπίες Σρι Λάνκα LKR + Rs Δολάριο Λιβερίας @@ -5442,6 +5573,7 @@ For terms of use, see http://www.unicode.org/copyright.html αριάρι Μαδαγασκάρης αριάρι Μαδαγασκάρης MGA + Ar Φράγκο Μαδαγασκάρης @@ -5449,9 +5581,9 @@ For terms of use, see http://www.unicode.org/copyright.html φράγκα Μαδαγασκάρης - Δηνάριο Π.Γ.Δ.Μ. - δηνάριο Π.Γ.Δ.Μ. - δηνάρια Π.Γ.Δ.Μ. + Δηνάριο ΠΓΔΜ + δηνάριο ΠΓΔΜ + δηνάρια ΠΓΔΜ MKD @@ -5468,6 +5600,7 @@ For terms of use, see http://www.unicode.org/copyright.html κυάτ Μιανμάρ κυάτ Μιανμάρ MMK + K Τουγκρίκ Μογγολίας @@ -5503,6 +5636,7 @@ For terms of use, see http://www.unicode.org/copyright.html ρουπία Μαυρικίου ρουπίες Μαυρικίου MUR + Rs Ρουφίγια Μαλδίβων @@ -5533,6 +5667,7 @@ For terms of use, see http://www.unicode.org/copyright.html ρινγκίτ Μαλαισίας ρινγκίτ Μαλαισίας MYR + RM Εσκούδο Μοζαμβίκης @@ -5574,6 +5709,7 @@ For terms of use, see http://www.unicode.org/copyright.html χρυσή κόρδοβα Νικαράγουας χρυσές κόρδοβα Νικαράγουας NIO + C$ Γκίλντα Ολλανδίας @@ -5585,12 +5721,14 @@ For terms of use, see http://www.unicode.org/copyright.html κορόνα Νορβηγίας κορόνες Νορβηγίας NOK + kr Ρουπία Νεπάλ ρουπία Νεπάλ ρουπίες Νεπάλ NPR + Rs Δολάριο Νέας Ζηλανδίας @@ -5645,12 +5783,14 @@ For terms of use, see http://www.unicode.org/copyright.html ρουπία Πακιστάν ρουπίες Πακιστάν PKR + Rs Ζλότι Πολωνίας ζλότι Πολωνίας ζλότι Πολωνίας PLN + Ζλότυ Πολωνίας (1950–1995) @@ -5702,6 +5842,7 @@ For terms of use, see http://www.unicode.org/copyright.html ρούβλι Ρωσίας ρούβλια Ρωσίας RUB + Ρούβλι Ρωσίας (1991–1998) @@ -5713,6 +5854,7 @@ For terms of use, see http://www.unicode.org/copyright.html φράγκο Ρουάντας φράγκα Ρουάντας RWF + RF Ριάλ Σαουδικής Αραβίας @@ -5754,6 +5896,7 @@ For terms of use, see http://www.unicode.org/copyright.html κορόνα Σουηδίας κορόνες Σουηδίας SEK + kr Δολάριο Σιγκαπούρης @@ -5767,6 +5910,7 @@ For terms of use, see http://www.unicode.org/copyright.html λίρα Αγίας Ελένης λίρες Αγίας Ελένης SHP + £ Τόλαρ Σλοβενίας @@ -5814,6 +5958,7 @@ For terms of use, see http://www.unicode.org/copyright.html ντόμπρα Σάο Τόμε και Πρίνσιπε ντόμπρα Σάο Τόμε και Πρίνσιπε STD + Db Σοβιετικό Ρούβλι @@ -5830,6 +5975,7 @@ For terms of use, see http://www.unicode.org/copyright.html λίρα Συρίας λίρες Συρίας SYP + £ Λιλανγκένι Σουαζιλάνδης @@ -5842,6 +5988,7 @@ For terms of use, see http://www.unicode.org/copyright.html μπατ Ταϊλάνδης μπατ Ταϊλάνδης ฿ + ฿ Ρούβλι Τατζικιστάν @@ -5876,6 +6023,7 @@ For terms of use, see http://www.unicode.org/copyright.html παάγκα νήσων Τόγκα παάγκα νήσων Τόγκα TOP + T$ Εσκούδο Τιμόρ @@ -5894,6 +6042,7 @@ For terms of use, see http://www.unicode.org/copyright.html τουρκικές λίρες TRY + TL Δολάριο Τρινιντάντ και Τομπάγκο @@ -5907,7 +6056,7 @@ For terms of use, see http://www.unicode.org/copyright.html νέο δολάριο Ταϊβάν νέα δολάρια Ταϊβάν NT$ - NT$ + $ Σελίνι Τανζανίας @@ -5983,6 +6132,7 @@ For terms of use, see http://www.unicode.org/copyright.html μπολιβάρ Βενεζουέλας μπολιβάρ Βενεζουέλας VEF + Bs Ντονγκ Βιετνάμ @@ -6038,6 +6188,7 @@ For terms of use, see http://www.unicode.org/copyright.html δολάριο Ανατολικής Καραϊβικής δολάρια Ανατολικής Καραϊβικής EC$ + $ Ειδικά Δικαιώματα Ανάληψης @@ -6120,6 +6271,7 @@ For terms of use, see http://www.unicode.org/copyright.html ραντ Νότιας Αφρικής ραντ Νότιας Αφρικής ZAR + R Κουάνζα Ζαΐρ (1968–2012) @@ -6131,6 +6283,7 @@ For terms of use, see http://www.unicode.org/copyright.html κουάτσα Ζάμπιας κουάτσα Ζάμπιας ZMW + ZK Νέο Ζαΐρ Ζαΐρ @@ -6177,6 +6330,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} μέτρο ανά τετραγωνικό δευτερόλεπτο {0} μέτρα ανά τετραγωνικό δευτερόλεπτο + + στροφή + {0} στροφή + {0} στροφές + + + ακτίνια + {0} ακτίνιο + {0} ακτίνιο + + + μοίρες + {0} μοίρα + {0} μοίρες + λεπτά του τόξου {0} λεπτό του τόξου @@ -6187,30 +6355,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} δευτερόλεπτο του τόξου {0} δευτερόλεπτα του τόξου - - μοίρες - {0} μοίρα - {0} μοίρες - - - ακτίνια - {0} ακτίνιο - {0} ακτίνιο - - - ακρ - {0} ακρ - {0} ακρ + + τετραγωνικά χιλιόμετρα + {0} τετραγωνικό χιλιόμετρο + {0} τετραγωνικά χιλιόμετρα εκτάρια {0} εκτάριο {0} εκτάρια + + τετραγωνικά μέτρα + {0} τετραγωνικό μέτρο + {0} τετραγωνικά μέτρα + {0}/m² + τετραγωνικά εκατοστά {0} τετραγωνικό εκατοστό {0} τετραγωνικά εκατοστά + {0}/cm² + + + τετραγωνικά μίλια + {0} τετραγωνικό μίλι + {0} τετραγωνικά μίλια + + + ακρ + {0} ακρ + {0} ακρ + + + τετραγωνικές γιάρδες + {0} τετραγωνική γιάρδα + {0} τετραγωνικές γιάρδες τετραγωνικά πόδια @@ -6221,91 +6401,106 @@ For terms of use, see http://www.unicode.org/copyright.html τετραγωνικές ίντσες {0} τετραγωνική ίντσα {0} τετραγωνικές ίντσες + {0}/in² - - τετραγωνικά χιλιόμετρα - {0} τετραγωνικό χιλιόμετρο - {0} τετραγωνικά χιλιόμετρα - - - τετραγωνικά μέτρα - {0} τετραγωνικό μέτρο - {0} τετραγωνικά μέτρα - - - τετραγωνικά μίλια - {0} τετραγωνικό μίλι - {0} τετραγωνικά μίλια - - - τετραγωνικές γιάρδες - {0} τετραγωνική γιάρδα - {0} τετραγωνικές γιάρδες + + καράτια + {0} καράτι + {0} καράτια λίτρα ανά χιλιόμετρο {0} λίτρο ανά χιλιόμετρο {0} λίτρα ανά χιλιόμετρο + + λίτρα ανά 100 χιλιόμετρα + {0} λίτρο ανά 100 χιλιόμετρα + {0} λίτρα ανά 100 χιλιόμετρα + μίλια ανά γαλόνι {0} μίλι ανά γαλόνι {0} μίλια ανά γαλόνι - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - gigabit - {0} gigabit - {0} gigabit - - - gigabyte - {0} gigabyte - {0} gigabyte - - - kilobit - {0} kilobit - {0} kilobit - - - kilobyte - {0} kilobyte - {0} kilobyte - - - megabit - {0} megabit - {0} megabit - - - megabyte - {0} megabyte - {0} megabyte - - - terabit - {0} terabit - {0} terabit - terabyte {0} terabyte {0} terabyte + + terabit + {0} terabit + {0} terabit + + + gigabyte + {0} gigabyte + {0} gigabyte + + + gigabit + {0} gigabit + {0} gigabit + + + megabyte + {0} megabyte + {0} megabyte + + + megabit + {0} megabit + {0} megabit + + + kilobyte + {0} kilobyte + {0} kilobyte + + + kilobit + {0} kilobit + {0} kilobit + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + αιώνες + {0} αιώνας + {0} αιώνες + + + έτη + {0} έτος + {0} έτη + {0} ανά έτος + + + μήνες + {0} μήνας + {0} μήνες + {0}/μήνα + + + εβδομάδες + {0} εβδομάδα + {0} εβδομάδες + {0} ανά εβδομάδα + ημέρες {0} ημέρα {0} ημέρες + {0} ανά ημέρα ώρες @@ -6313,30 +6508,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ώρες {0} ανά ώρα - - μικροδευτερόλεπτα - {0} μικροδευτερόλεπτο - {0} μικροδευτερόλεπτα - - - χιλιοστά του δευτερολέπτου - {0} χιλιοστό του δευτερολέπτου - {0} χιλιοστά του δευτερολέπτου - λεπτά {0} λεπτό {0} λεπτά - - - μήνες - {0} μήνας - {0} μήνες - - - νανοδευτερόλεπτα - {0} νανοδευτερόλεπτο - {0} νανοδευτερόλεπτα + {0} ανά λεπτό δευτερόλεπτα @@ -6344,15 +6520,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} δευτερόλεπτα {0} ανά δευτερόλεπτο - - εβδομάδες - {0} εβδομάδα - {0} εβδομάδες + + χιλιοστά του δευτερολέπτου + {0} χιλιοστό του δευτερολέπτου + {0} χιλιοστά του δευτερολέπτου - - έτη - {0} έτος - {0} έτη + + μικροδευτερόλεπτα + {0} μικροδευτερόλεπτο + {0} μικροδευτερόλεπτα + + + νανοδευτερόλεπτα + {0} νανοδευτερόλεπτο + {0} νανοδευτερόλεπτα αμπέρ @@ -6374,6 +6555,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} βολτ {0} βολτ + + χιλιοθερμίδες + {0} χιλιοθερμίδα + {0} χιλιοθερμίδες + θερμίδες {0} θερμίδα @@ -6384,21 +6570,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Θερμίδα {0} Θερμίδες - - τζάουλ - {0} τζάουλ - {0} τζάουλ - - - χιλιοθερμίδες - {0} χιλιοθερμίδα - {0} χιλιοθερμίδες - κιλοτζάουλ {0} κιλοτζάουλ {0} κιλοτζάουλ + + τζάουλ + {0} τζάουλ + {0} τζάουλ + κιλοβατώρες {0} κιλοβατώρα @@ -6409,201 +6590,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} γιγαχέρτζ {0} γιγαχέρτζ - - χερτζ - {0} χερτζ - {0} χερτζ + + μεγαχέρτζ + {0} μεγαχέρτζ + {0} μεγαχέρτζ κιλοχέρτζ {0} κιλοχέρτζ {0} κιλοχέρτζ - - μεγαχέρτζ - {0} μεγαχέρτζ - {0} μεγαχέρτζ + + χερτζ + {0} χερτζ + {0} χερτζ - - αστρονομικές μονάδες - {0} αστρονομική μονάδα - {0} αστρονομικές μονάδες + + χιλιόμετρα + {0} χιλιόμετρο + {0} χιλιόμετρα + {0}/χλμ. - - εκατοστά - {0} εκατοστό - {0} εκατοστά + + μέτρα + {0} μέτρο + {0} μέτρα + {0}/μ. δεκατόμετρα {0} δεκατόμετρο {0} δεκατόμετρα - - πόδια - {0} πόδι - {0} πόδια - - - ίντσες - {0} ίντσα - {0} ίντσες - - - χιλιόμετρα - {0} χιλιόμετρο - {0} χιλιόμετρα - - - έτη φωτός - {0} έτος φωτός - {0} έτη φωτός - - - μέτρα - {0} μέτρο - {0} μέτρα - - - µm - {0} μικρόμετρο - {0} μικρόμετρα - - - μίλια - {0} μίλι - {0} μίλια + + εκατοστά + {0} εκατοστό + {0} εκατοστά + {0}/εκ. χιλιοστόμετρα {0} χιλιοστόμετρο {0} χιλιοστόμετρα + + µm + {0} μικρόμετρο + {0} μικρόμετρα + νανόμετρα {0} νανόμετρο {0} νανόμετρα - - ναυτικά μίλια - {0} ναυτικό μίλι - {0} ναυτικά μίλια - - - παρσέκ - {0} παρσέκ - {0} παρσέκ - πικόμετρα {0} πικόμετρο {0} πικόμετρα + + μίλια + {0} μίλι + {0} μίλια + γιάρδες {0} γιάρδα {0} γιάρδες + + πόδια + {0} πόδι + {0} πόδια + {0}/ft + + + ίντσες + {0} ίντσα + {0} ίντσες + {0}/in + + + παρσέκ + {0} παρσέκ + {0} παρσέκ + + + έτη φωτός + {0} έτος φωτός + {0} έτη φωτός + + + αστρονομικές μονάδες + {0} αστρονομική μονάδα + {0} αστρονομικές μονάδες + + + ναυτικά μίλια + {0} ναυτικό μίλι + {0} ναυτικά μίλια + + + smi + {0} smi + {0} smi + lux {0} lux {0} lux - - καράτια - {0} καράτι - {0} καράτια - - - γραμμάρια - {0} γραμμάριο - {0} γραμμάρια - - - χιλιόγραμμα - {0} χιλιόγραμμο - {0} χιλιόγραμμα - μετρικοί τόνοι {0} μετρικός τόνος {0} μετρικοί τόνοι - - μικρογραμμάρια - {0} μικρογραμμάριο - {0} μικρογραμμάρια + + χιλιόγραμμα + {0} χιλιόγραμμο + {0} χιλιόγραμμα + {0}/κιλό + + + γραμμάρια + {0} γραμμάριο + {0} γραμμάρια + {0} ανά γραμ. χιλιοστόγραμμα {0} χιλιοστόγραμμο {0} χιλιοστόγραμμα - - ουγγιές - {0} ουγγιά - {0} ουγγιές - - - ευγενείς ουγγιές - {0} ευγενής ουγγιά - {0} ευγενείς ουγγιές - - - λίβρες - {0} λίβρα - {0} λίβρες + + μικρογραμμάρια + {0} μικρογραμμάριο + {0} μικρογραμμάρια τόνοι {0} τόνος {0} τόνοι + + λίβρες + {0} λίβρα + {0} λίβρες + {0} ανά λίβρα + + + ουγγιές + {0} ουγγιά + {0} ουγγιές + {0} ανά ουγγιά + + + ευγενείς ουγγιές + {0} ευγενής ουγγιά + {0} ευγενείς ουγγιές + + + καράτια + {0} καράτι + {0} καράτια + γιγαβάτ {0} γιγαβάτ {0} γιγαβάτ - - ίπποι - {0} ίππος - {0} ίπποι - - - κιλοβάτ - {0} κιλοβάτ - {0} κιλοβάτ - μεγαβάτ {0} μεγαβάτ {0} μεγαβάτ - - μιλιβάτ - {0} μιλιβάτ - {0} μιλιβάτ + + κιλοβάτ + {0} κιλοβάτ + {0} κιλοβάτ βατ {0} βατ {0} βατ + + μιλιβάτ + {0} μιλιβάτ + {0} μιλιβάτ + + + ίπποι + {0} ίππος + {0} ίπποι + εκτοπασκάλ {0} εκτοπασκάλ {0} εκτοπασκάλ - - ίντσες στήλης υδραργύρου - {0} ίντσα στήλης υδραργύρου - {0} ίντσες στήλης υδραργύρου - - - μιλιμπάρ - {0} μιλιμπάρ - {0} μιλιμπάρ - χιλιοστόμετρα στήλης υδραργύρου {0} χιλιοστόμετρα στήλης υδραργύρου @@ -6614,10 +6799,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} λίβρα ανά τετραγωνική ίντσα {0} λίβρες ανά τετραγωνική ίντσα - - καράτια - {0} καράτι - {0} καράτια + + ίντσες στήλης υδραργύρου + {0} ίντσα στήλης υδραργύρου + {0} ίντσες στήλης υδραργύρου + + + μιλιμπάρ + {0} μιλιμπάρ + {0} μιλιμπάρ χιλιόμετρα ανά ώρα @@ -6634,6 +6824,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} μίλι ανά ώρα {0} μίλια ανά ώρα + + κόμβος + {0} κόμβος + {0} κόμβοι + + + ° + {0}° + {0}° + βαθμοί Κελσίου {0} βαθμός Κελσίου @@ -6645,34 +6845,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0} βαθμοί Φαρενάιτ - κέλβιν - {0} κέλβιν - {0} κέλβιν - - - ακρ-πόδια - {0} ακρ-πόδι - {0} ακρ-πόδια - - - εκατοστόλιτρα - {0} εκατοστόλιτρο - {0} εκατοστόλιτρα - - - κυβικά εκατοστά - {0} κυβικό εκατοστό - {0} κυβικά εκατοστά - - - κυβικά πόδια - {0} κυβικό πόδι - {0} κυβικά πόδια - - - κυβικές ίντσες - {0} κυβική ίντσα - {0} κυβικές ίντσες + βαθμοί Κέλβιν + {0} βαθμός Κέλβιν + {0} βαθμοί Κέλβιν κυβικά χιλιόμετρα @@ -6683,6 +6858,13 @@ For terms of use, see http://www.unicode.org/copyright.html κυβικά μέτρα {0} κυβικό μέτρο {0} κυβικό μέτρο + {0} ανά κυβικό μέτρο + + + κυβικά εκατοστά + {0} κυβικό εκατοστό + {0} κυβικά εκατοστά + {0} ανά κυβικό εκατοστό κυβικά μίλια @@ -6694,25 +6876,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} κυβική γιάρδα {0} κυβικές γιάρδες - - κύπελλο - {0} κύπελλο - {0} κύπελλα + + κυβικά πόδια + {0} κυβικό πόδι + {0} κυβικά πόδια - - δεκατόλιτρα - {0} δεκατόλιτρο - {0} δεκατόλιτρα + + κυβικές ίντσες + {0} κυβική ίντσα + {0} κυβικές ίντσες - - ουγγιές υγρού - {0} ουγγιά υγρού - {0} ουγγιές υγρού - - - γαλόνια - {0} γαλόνι - {0} γαλόνια + + μεγαλίτρα + {0} μεγαλίτρο + {0} μεγαλίτρα εκτόλιτρα @@ -6723,27 +6900,64 @@ For terms of use, see http://www.unicode.org/copyright.html λίτρα {0} λίτρο {0} λίτρα + {0}/λ. - - μεγαλίτρα - {0} μεγαλίτρο - {0} μεγαλίτρα + + δεκατόλιτρα + {0} δεκατόλιτρο + {0} δεκατόλιτρα + + + εκατοστόλιτρα + {0} εκατοστόλιτρο + {0} εκατοστόλιτρα χιλιοστόλιτρο {0} χιλιοστόλιτρο {0} χιλιοστόλιτρα - - πίντες - {0} πίντα - {0} πίντες + + μετρική πίντα + {0} μετρική πίντα + {0} μετρικές πίντες + + + μετρικό κύπελλο + {0} μετρικό κύπελλο + {0} μετρικά κύπελλα + + + ακρ-πόδια + {0} ακρ-πόδι + {0} ακρ-πόδια + + + γαλόνια + {0} γαλόνι + {0} γαλόνια + {0} ανά γαλόνι τέταρτα του γαλονιού {0} τέταρτο του γαλονιού {0} τέταρτα του γαλονιού + + πίντες + {0} πίντα + {0} πίντες + + + κύπελλο + {0} κύπελλο + {0} κύπελλα + + + ουγγιές υγρού + {0} ουγγιά υγρού + {0} ουγγιές υγρού + κουταλιές της σούπας {0} κουταλιά της σούπας @@ -6754,6 +6968,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} κουταλιά του γλυκού {0} κουταλιές του γλυκού + + {0} Α + {0} Β + {0} Ν + {0} Δ + @@ -6769,40 +6989,67 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² - - λεπτά του τόξου - {0} λεπ. τόξου - {0} λεπ. τόξου - - - δευτερόλεπτα του τόξου - {0} δευτ. - {0} δευτ. - - - μοίρες - {0}° - {0}° + + rev + {0} rev + {0} rev ακτίνια {0} rad {0} rad - - ακρ - {0} ac - {0} ac + + μοίρες + {0}° + {0}° + + + λεπτά του τόξου + {0} λεπ. τόξου + {0} λεπ. τόξου + + + arcsec + {0} arcsec + {0} arcsec + + + τ. χλμ. + {0} τ. χλμ. + {0} τ. χλμ. εκτάρια {0} ha {0} ha + + τ. μέτρα + {0} τ.μ. + {0} τ.μ. + {0}/m² + τ. εκ. {0} τ. εκ. {0} τ. εκ. + {0}/cm² + + + τ. μίλια + {0} mi² + {0} mi² + + + ακρ + {0} ac + {0} ac + + + τετρ. γιάρδες + {0} yd² + {0} yd² τετρ. πόδια @@ -6813,91 +7060,106 @@ For terms of use, see http://www.unicode.org/copyright.html τετρ. ίντσες {0} in² {0} in² + {0}/in² - - τ. χλμ. - {0} τ. χλμ. - {0} τ. χλμ. - - - τ. μέτρα - {0} τ.μ. - {0} τ.μ. - - - τ. μίλια - {0} mi² - {0} mi² - - - τετρ. γιάρδες - {0} yd² - {0} yd² + + καράτια + {0} kt + {0} kt λίτρα/χλμ. {0} λίτρο/χλμ {0} λίτρα/χλμ + + λ./100 χλμ. + {0} λ./100 χλμ. + {0} λ./100 χλμ. + μίλια/γαλόνι {0} mpg {0} mpg - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + αιών. + {0} αιών. + {0} αιών. + + + έτη + {0} έτ. + {0} έτ. + {0}/έτ. + + + μήνες + {0} μήν. + {0} μήν. + {0}/μ. + + + εβδομάδες + {0} εβδ. + {0} εβδ. + {0}/εβδ. + ημέρες {0} ημέρα {0} ημέρες + {0}/ημ. ώρες @@ -6905,30 +7167,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ώρ. {0} α.ώ. - - μικροδεύτερα - {0} μs - {0} μs - - - χιλιοστά δευτ. - {0} ms - {0} ms - λεπ. {0} λεπ. {0} λεπ. - - - μήνες - {0} μήν. - {0} μήν. - - - νανοδεύτερα - {0} ns - {0} ns + {0}/λ. δευτ. @@ -6936,15 +7179,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} δευτ. {0} ανα δευτ. - - εβδομάδες - {0} εβδ. - {0} εβδ. + + χιλιοστά δευτ. + {0} ms + {0} ms - - έτη - {0} έτ. - {0} έτ. + + μικροδεύτερα + {0} μs + {0} μs + + + νανοδεύτερα + {0} ns + {0} ns αμπέρ @@ -6966,6 +7214,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -6976,21 +7229,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - τζάουλ - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - κιλοτζάουλ {0} kJ {0} kJ + + τζάουλ + {0} J + {0} J + κιλοβάτ/ώρα {0} kWh @@ -7001,201 +7249,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - χερτζ - {0} Hz - {0} Hz + + μεγαχέρτζ + {0} MHz + {0} MHz κιλοχέρτζ {0} kHz {0} kHz - - μεγαχέρτζ - {0} MHz - {0} MHz + + χερτζ + {0} Hz + {0} Hz - - α.μ. - {0} α.μ. - {0} α.μ. + + χλμ. + {0} χλμ. + {0} χλμ. + {0}/χλμ. - - εκ. - {0} εκ. - {0} εκ. + + μέτρα + {0} μ. + {0} μ. + {0}/μ. δεκ. {0} δεκ. {0} δεκ. - - πόδια - {0} ft - {0} ft - - - ίντσες - {0} in - {0} in - - - χλμ. - {0} χλμ. - {0} χλμ. - - - έτη φωτός - {0} ly - {0} ly - - - μέτρα - {0} μ. - {0} μ. - - - μικρόμετρα - {0} µm - {0} µm - - - μίλια - {0} μίλ. - {0} μίλ. + + εκ. + {0} εκ. + {0} εκ. + {0}/εκ. χιλιοστόμ. {0} χλστ. {0} χλστ. + + μικρόμετρα + {0} µm + {0} µm + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - παρσέκ - {0} pc - {0} pc - pm {0} pm {0} pm + + μίλια + {0} μίλ. + {0} μίλ. + γιάρδες {0} yd {0} yd + + πόδια + {0} ft + {0} ft + {0}/ft + + + ίντσες + {0} in + {0} in + {0}/in + + + παρσέκ + {0} pc + {0} pc + + + έτη φωτός + {0} ly + {0} ly + + + α.μ. + {0} α.μ. + {0} α.μ. + + + ν.μ. + {0} ν.μ. + {0} ν.μ. + + + smi + {0} smi + {0} smi + lux {0} lux {0} lux - - καράτια - {0} ct - {0} ct - - - γραμμάρια - {0} γρ. - {0} γρ. - - - κιλά - {0} κιλό - {0} κιλά - mt {0} mt {0} mt - - µg - {0} µg - {0} µg + + kg + {0} κιλό + {0} κιλά + {0}/κιλό + + + γραμμάρια + {0} γρ. + {0} γρ. + {0}/γρ. mg {0} mg {0} mg - - oz - {0} oz - {0} oz - - - ευγενής ουγγιά - {0} oz t - {0} oz t - - - λίβρες - {0} lb - {0} lb + + µg + {0} µg + {0} µg τόνοι {0} t {0} t + + λίβρες + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0}/oz + + + ευγενής ουγγιά + {0} oz t + {0} oz t + + + καράτια + {0} ct + {0} ct + γιγαβάτ {0} GW {0} GW - - ίπποι - {0} hp - {0} hp - - - κιλοβάτ - {0} kW - {0} kW - μεγαβάτ {0} MW {0} MW - - μιλιβάτ - {0} mW - {0} mW + + κιλοβάτ + {0} kW + {0} kW βατ {0} W {0} W + + μιλιβάτ + {0} mW + {0} mW + + + ίπποι + {0} hp + {0} hp + εκτοπασκάλ {0} hPa {0} hPa - - ίντσες στήλης υδραργύρου - {0} inHg - {0} inHg - - - μιλιμπάρ - {0} mbar - {0} mbar - χιλιοστόμετρα στήλης υδραργύρου {0} mm Hg @@ -7206,10 +7458,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - καράτια - {0} kt - {0} kt + + ίντσες στήλης υδραργύρου + {0} inHg + {0} inHg + + + μιλιμπάρ + {0} mbar + {0} mbar χλμ./ώρα @@ -7226,6 +7483,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} μίλι/ώρα {0} μίλια/ώρα + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + βαθμοί Κελσίου {0}°C @@ -7241,31 +7508,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ακρ πόδια - {0} ac ft - {0} ac ft - - - cL - {0} cL - {0} cL - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -7275,6 +7517,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -7286,25 +7535,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - κύπελλα - {0} c - {0} c + + ft³ + {0} ft³ + {0} ft³ - - dL - {0} dL - {0} dL + + in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML hL @@ -7315,27 +7559,64 @@ For terms of use, see http://www.unicode.org/copyright.html λίτρα {0} λίτ. {0} λίτ. + {0}/λ. - - ML - {0} ML - {0} ML + + dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL mL {0} mL {0} mL - - πίντες - {0} pt - {0} pt + + μετρικές πίντες + {0} μετρική πίντα + {0} μετρικές πίντες + + + μετρ. κύπελλο + {0} μετρ. κύπελλο + {0} μετρ. κύπελλα + + + ακρ πόδια + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0}/gal τέταρτα γαλονιού {0} qt {0} qt + + πίντες + {0} pt + {0} pt + + + κύπελλα + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + κ.σ. {0} κ.σ. @@ -7346,6 +7627,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} κ.γ. {0} κ.γ. + + {0} Α + {0} Β + {0} Ν + {0} Δ + @@ -7355,6 +7642,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}′ {0}′ @@ -7363,26 +7654,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} ac - {0} ac + + {0} km² + {0} km² {0} ha {0} ha - - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} m² {0} m² @@ -7391,6 +7670,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} ac + {0} ac + + + {0} ft² + {0} ft² + + + λ/100 χλμ + {0} λ/100 χλμ + {0} λ/100 χλμ + + + έτ. + {0} έ + {0} έ + + + μήνας + {0} μ + {0} μ + + + εβδ. + {0} ε + {0} ε + ημέρα {0} η @@ -7401,66 +7708,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ώ {0} ώ - - χιλ. δευτ. - {0} ms - {0} ms - λεπ. {0} λ {0} λ - - μήνας - {0} μ - {0} μ - δευτ. {0} δ {0} δ - - εβδ. - {0} ε - {0} ε - - - έτ. - {0} έ - {0} έ - - - εκ. - {0} εκ. - {0} εκ. - - - {0} ft - {0} ft - - - {0} in - {0} in + + χιλ. δευτ. + {0} ms + {0} ms χλμ. {0} χλμ. {0} χλμ. - - {0} ly - {0} ly - μέτρο {0} μ. {0} μ. - - {0} mi - {0} mi + + εκ. + {0} εκ. + {0} εκ. χλστ. @@ -7471,31 +7747,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} mi + {0} mi + {0} yd {0} yd - - γρ. - {0} γρ. - {0} γρ. + + {0} ft + {0} ft + + + {0} in + {0} in + + + {0} ly + {0} ly kg {0} kg {0} kg - - {0} oz - {0} oz + + γρ. + {0} γρ. + {0} γρ. {0} lb {0} lb - - {0} hp - {0} hp + + {0} oz + {0} oz {0} kW @@ -7505,6 +7793,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} hp + {0} hp + {0} hPa {0} hPa @@ -7554,6 +7846,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l + + {0} Α + {0} Β + {0} Ν + {0} Δ + h:mm @@ -7575,14 +7873,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}, {1} {0}, {1} - {0} και {1} - {0} και {1} + {0}, {1} + {0}, {1} - {0}, {1} - {0}, {1} - {0}, {1} - {0}, {1} + {0} {1} + {0} {1} + {0} {1} + {0} {1} {0}, {1} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/el_CY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/el_CY.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/el_CY.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/el_CY.xml index 3950a1c294e..f1c2677b55e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/el_CY.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/el_CY.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/el_GR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/el_GR.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/el_GR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/el_GR.xml index d45a708efa1..ab44a7cfd2b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/el_GR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/el_GR.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en.xml index 54003711ae9..8bc68b6fb43 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en.xml @@ -1,13 +1,12 @@ - - - + @@ -59,7 +58,6 @@ For terms of use, see http://www.unicode.org/copyright.html Aymara Azerbaijani Azeri - South Azerbaijani Bashkir Baluchi Balinese @@ -76,6 +74,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bafut Badaga Bulgarian + Western Balochi Bhojpuri Bislama Bikol @@ -177,6 +176,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ewondo Extremaduran Persian + Dari Fang Fanti Fulah @@ -239,7 +239,7 @@ For terms of use, see http://www.unicode.org/copyright.html Croatian Upper Sorbian Xiang Chinese - Haitian + Haitian Creole Hungarian Hupa Armenian @@ -338,6 +338,7 @@ For terms of use, see http://www.unicode.org/copyright.html Lao Mongo Lozi + Northern Luri Lithuanian Latgalian Luba-Katanga @@ -389,6 +390,7 @@ For terms of use, see http://www.unicode.org/copyright.html Marwari Mentawai Burmese + Myanmar Language Myene Erzya Mazanderani @@ -399,6 +401,7 @@ For terms of use, see http://www.unicode.org/copyright.html Norwegian Bokmål North Ndebele Low German + Low Saxon Nepali Newari Ndonga @@ -414,7 +417,7 @@ For terms of use, see http://www.unicode.org/copyright.html Nogai Old Norse Novial - NʼKo + N’Ko South Ndebele Northern Sotho Nuer @@ -493,6 +496,7 @@ For terms of use, see http://www.unicode.org/copyright.html Scots Sindhi Sassarese Sardinian + Southern Kurdish Northern Sami Seneca Sena @@ -535,8 +539,8 @@ For terms of use, see http://www.unicode.org/copyright.html Sumerian Swedish Swahili + Congo Swahili Comorian - Congo Swahili Classical Syriac Syriac Silesian @@ -636,6 +640,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -686,6 +691,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -732,6 +738,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -799,6 +806,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -844,7 +852,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Netherlands Antilles Angola Antarctica Argentina @@ -1117,8 +1124,10 @@ For terms of use, see http://www.unicode.org/copyright.html Late Middle French to 1606 Early Modern French Academic + Orthographic formulation of 1943 ALA-LC Romanization, 1997 edition Aluku dialect + Portuguese Language Orthographic Agreement of 1990 Eastern Armenian Western Armenian Unified Turkic Latin Alphabet @@ -1127,6 +1136,7 @@ For terms of use, see http://www.unicode.org/copyright.html San Giorgio/Bila dialect Bohorič alphabet Boontling + Portuguese-Brazilian Orthographic Convention of 1945 Dajnko alphabet Serbian with Ekavian pronunciation Early Modern English @@ -1144,6 +1154,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gniva/Njiva dialect Modern Volapük Oseacco/Osojane dialect + Oxford English Dictionary spelling Pamaka dialect Pinyin Romanization Polytonic @@ -1165,6 +1176,7 @@ For terms of use, see http://www.unicode.org/copyright.html Calendar + Currency Format Ignore Symbols Sorting Reversed Accent Sorting Uppercase/Lowercase Ordering @@ -1176,138 +1188,185 @@ For terms of use, see http://www.unicode.org/copyright.html Script/Block Reordering Sorting Strength Currency + Emoji Presentation Style + First day of week + Hour Cycle (12 vs 24) Highest Ignored Line Break Style + Line Breaks In Words Setting + Measurement System Numbers + Region For Supplemental Data + Region Subdivision + Sentence Break Suppressions Type Time Zone Locale Variant Sort As Symbols Private-Use - Arabic-Indic Digits - Extended Arabic-Indic Digits - X Arabic-Indic Digits - Armenian Numerals - Armenian Lowercase Numerals - Balinese Digits - Bengali Digits - Traditional Chinese Sort Order - Big5 - Brahmi Digits - Buddhist Calendar - Chakma Digits - Cham Digits - Chinese Calendar - Previous Sort Order, for compatibility - Coptic Calendar - Dangi Calendar - Devanagari Digits - Dictionary Sort Order - Default Unicode Sort Order - Emoji Sort Order - European Ordering Rules - Ethiopic Numerals - Ethiopic Calendar - Ethiopic Amete Alem Calendar - Financial Numerals - Full-Width Digits - Simplified Chinese Sort Order - GB2312 - Georgian Numerals - Gregorian Calendar - Greek Numerals - Greek Lowercase Numerals - Gujarati Digits - Gurmukhi Digits - Chinese Calendar Day-of-Month Numerals - Chinese Decimal Numerals - Simplified Chinese Numerals - Simplified Chinese Financial Numerals - Traditional Chinese Numerals - Traditional Chinese Financial Numerals - Hebrew Numerals - Hebrew Calendar - Sort All - Indian National Calendar - Islamic Calendar - Islamic Calendar (tabular, civil epoch) - Islamic Calendar (Saudi Arabia, sighting) - Islamic Calendar (tabular, astronomical epoch) - Islamic Calendar (Umm al-Qura) - ISO-8601 Calendar - Japanese Calendar - Javanese Digits - Japanese Numerals - Japanese Financial Numerals - Kayah Li Digits - Khmer Digits - Kannada Digits - Tai Tham Hora Digits - Tai Tham Tham Digits - Lao Digits - Western Digits - Lepcha Digits - Limbu Digits - Loose Line Break Style - Sort Lowercase First - Malayalam Digits - Mongolian Digits - Meetei Mayek Digits - Myanmar Digits - Myanmar Shan Digits - Native Digits - N’Ko Digits - Sort Accents Normally - Sort Normal Case Order - Sort Case Insensitive - Sort Kana Separately - Sort Without Normalization - Sort Digits Individually - Sort Symbols - Normal Line Break Style - Ol Chiki Digits - Oriya Digits - Osmanya Digits - Persian Calendar - Phonebook Sort Order - Phonetic Sort Order - Pinyin Sort Order - POSIX Compliant Locale - Sort Base Letters Only - Sort Accents/Case/Width/Kana - Reformed Sort Order - Minguo Calendar - Roman Numerals - Roman Lowercase Numerals - Saurashtra Digits - General-Purpose Search - Search By Hangul Initial Consonant - Sort Accents - Sort Ignoring Symbols - Sharada Digits - Sora Sompeng Digits - Standard Sort Order - Strict Line Break Style - Stroke Sort Order - Sundanese Digits - Takri Digits - New Tai Lue Digits - Traditional Tamil Numerals - Tamil Digits - Telugu Digits - Sort Accents/Case/Width - Thai Digits - Tibetan Digits - Traditional Sort Order - Traditional Numerals - Radical-Stroke Sort Order - Sort Uppercase First - Vai Digits - Sort Accents Reversed - Sort Case Sensitive - Sort Kana Differently - Sort Unicode Normalized - Sort Digits Numerically - Zhuyin Sort Order + Buddhist Calendar + Chinese Calendar + Coptic Calendar + Dangi Calendar + Ethiopic Calendar + Ethiopic Amete Alem Calendar + Gregorian Calendar + Hebrew Calendar + Indian National Calendar + Islamic Calendar + Islamic Calendar (tabular, civil epoch) + Islamic Calendar (Saudi Arabia, sighting) + Islamic Calendar (tabular, astronomical epoch) + Islamic Calendar (Umm al-Qura) + ISO-8601 Calendar + Japanese Calendar + Persian Calendar + Minguo Calendar + Accounting Currency Format + Standard Currency Format + Sort Symbols + Sort Ignoring Symbols + Sort Accents Normally + Sort Accents Reversed + Sort Lowercase First + Sort Normal Case Order + Sort Uppercase First + Sort Case Insensitive + Sort Case Sensitive + Sort Kana Separately + Sort Kana Differently + Traditional Chinese Sort Order - Big5 + Previous Sort Order, for compatibility + Dictionary Sort Order + Default Unicode Sort Order + Emoji Sort Order + European Ordering Rules + Simplified Chinese Sort Order - GB2312 + Phonebook Sort Order + Phonetic Sort Order + Pinyin Sort Order + Reformed Sort Order + General-Purpose Search + Search By Hangul Initial Consonant + Standard Sort Order + Stroke Sort Order + Traditional Sort Order + Radical-Stroke Sort Order + Zhuyin Sort Order + Sort Without Normalization + Sort Unicode Normalized + Sort Digits Individually + Sort Digits Numerically + Sort All + Sort Base Letters Only + Sort Accents/Case/Width/Kana + Sort Accents + Sort Accents/Case/Width + Use Default Presentation For Emoji Characters + Prefer Emoji Presentation For Emoji Characters + Prefer Text Presentation For Emoji Characters + First Day of Week Is Friday + First Day of Week Is Monday + First Day of Week Is Saturday + First Day of Week Is Sunday + First Day of Week Is Thursday + First Day of Week Is Tuesday + First Day of Week Is Wednesday + 12 Hour System (0–11) + 12 Hour System (1–12) + 24 Hour System (0–23) + 24 Hour System (1–24) + Loose Line Break Style + Normal Line Break Style + Strict Line Break Style + Allow Line Breaks In All Words + Prevent Line Breaks In All Words + Normal Line Breaks For Words + Metric System + Imperial Measurement System + US Measurement System + Ahom Digits + Arabic-Indic Digits + Extended Arabic-Indic Digits + X Arabic-Indic Digits + Armenian Numerals + Armenian Lowercase Numerals + Balinese Digits + Bengali Digits + Brahmi Digits + Chakma Digits + Cham Digits + Cyrillic Numerals + Devanagari Digits + Ethiopic Numerals + Financial Numerals + Full-Width Digits + Georgian Numerals + Greek Numerals + Greek Lowercase Numerals + Gujarati Digits + Gurmukhi Digits + Chinese Calendar Day-of-Month Numerals + Chinese Decimal Numerals + Simplified Chinese Numerals + Simplified Chinese Financial Numerals + Traditional Chinese Numerals + Traditional Chinese Financial Numerals + Hebrew Numerals + Pahawh Hmong Digits + Javanese Digits + Japanese Numerals + Japanese Financial Numerals + Kayah Li Digits + Khmer Digits + Kannada Digits + Tai Tham Hora Digits + Tai Tham Tham Digits + Lao Digits + Western Digits + Lepcha Digits + Limbu Digits + Mathematical Bold Digits + Mathematical Double-Struck Digits + Mathematical Monospace Digits + Mathematical Sans-Serif Bold Digits + Mathematical Sans-Serif Digits + Malayalam Digits + Modi Digits + Mongolian Digits + Mro Digits + Meetei Mayek Digits + Myanmar Digits + Myanmar Shan Digits + Myanmar Tai Laing Digits + Native Digits + N’Ko Digits + Ol Chiki Digits + Oriya Digits + Osmanya Digits + Roman Numerals + Roman Lowercase Numerals + Saurashtra Digits + Sharada Digits + Khudawadi Digits + Sinhala Lith Digits + Sora Sompeng Digits + Sundanese Digits + Takri Digits + New Tai Lue Digits + Traditional Tamil Numerals + Tamil Digits + Telugu Digits + Thai Digits + Tibetan Digits + Tirhuta Digits + Traditional Numerals + Vai Digits + Warang Citi Digits + Sentence Breaks Without Abbreviation Handling + Suppress Sentence Breaks After Standard Abbreviations + POSIX Compliant Locale BGN @@ -1389,18 +1448,18 @@ For terms of use, see http://www.unicode.org/copyright.html Mo12 - Month1 - Month2 - Month3 - Month4 - Month5 - Month6 - Month7 - Month8 - Month9 - Month10 - Month11 - Month12 + First Month + Second Month + Third Month + Fourth Month + Fifth Month + Sixth Month + Seventh Month + Eighth Month + Ninth Month + Tenth Month + Eleventh Month + Twelfth Month @@ -1491,6 +1550,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL MMM d E, MMM d + MMMM d mm:ss M/U M/d/U @@ -1505,6 +1565,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM r(U) MMM d, r E, MMM d, r(U) + MMMM r(U) QQQ r(U) QQQQ r(U) @@ -1673,6 +1734,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL MMM d E, MMM d + MMMM d mm:ss y G y G @@ -1682,6 +1744,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y G MMM d, y G E, MMM d, y G + MMMM y G QQQ y G QQQQ y G @@ -1912,17 +1975,51 @@ For terms of use, see http://www.unicode.org/copyright.html - - a - n - p - - + + midnight AM am noon PM pm + in the morning + in the afternoon + in the evening + at night + + + mi + a + n + p + in the morning + in the afternoon + in the evening + at night + + + midnight + AM + am + noon + PM + pm + in the morning + in the afternoon + in the evening + at night + + + + + midnight + AM + noon + PM + morning + afternoon + evening + night @@ -2037,6 +2134,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL MMM d E, MMM d + MMMM d mm:ss y M/y @@ -2045,6 +2143,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y MMM d, y E, MMM d, y + MMMM y QQQ y QQQQ y @@ -2198,6 +2297,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d MMM E, d MMM + d MMMM y MMM y d MMM y @@ -2205,6 +2305,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y d MMM y E, d MMM y + MMMM y QQQ y QQQQ y @@ -2314,10 +2415,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Era + era - Year + year last year this year next year @@ -2345,7 +2446,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Quarter + quarter last quarter this quarter next quarter @@ -2373,7 +2474,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Month + month last month this month next month @@ -2401,7 +2502,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Week + week last week this week next week @@ -2429,7 +2530,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Day + day yesterday today tomorrow @@ -2444,9 +2545,17 @@ For terms of use, see http://www.unicode.org/copyright.html day + + in {0} day + in {0} days + + + {0} day ago + {0} days ago + - Day of the Week + day of the week last Sunday @@ -2558,7 +2667,7 @@ For terms of use, see http://www.unicode.org/copyright.html am/pm - Hour + hour in {0} hour in {0} hours @@ -2580,7 +2689,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Minute + minute in {0} minute in {0} minutes @@ -2602,7 +2711,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Second + second now in {0} second @@ -2626,7 +2735,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Time Zone + time zone @@ -3492,6 +3601,11 @@ For terms of use, see http://www.unicode.org/copyright.html Ponape Time + + + Pyongyang Time + + Qyzylorda Time @@ -3777,6 +3891,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0B + ¤0B + ¤00B + ¤00B + ¤000B + ¤000B + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + {0} {1} {0} {1} @@ -5288,6 +5430,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} meter per second squared {0} meters per second squared + + revolution + {0} revolution + {0} revolutions + + + radians + {0} radian + {0} radians + + + degrees + {0} degree + {0} degrees + arcminutes {0} arcminute @@ -5298,30 +5455,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} arcsecond {0} arcseconds - - degrees - {0} degree - {0} degrees - - - radians - {0} radian - {0} radians - - - acres - {0} acre - {0} acres + + square kilometers + {0} square kilometer + {0} square kilometers hectares {0} hectare {0} hectares + + square meters + {0} square meter + {0} square meters + {0} per square meter + square centimeters {0} square centimeter {0} square centimeters + {0} per square centimeter + + + square miles + {0} square mile + {0} square miles + + + acres + {0} acre + {0} acres + + + square yards + {0} square yard + {0} square yards square feet @@ -5332,91 +5501,126 @@ For terms of use, see http://www.unicode.org/copyright.html square inches {0} square inch {0} square inches + {0} per square inch - - square kilometers - {0} square kilometer - {0} square kilometers + + karats + {0} karat + {0} karats - - square meters - {0} square meter - {0} square meters + + milligrams per deciliter + {0} milligram per deciliter + {0} milligrams per deciliter - - square miles - {0} square mile - {0} square miles + + millimoles per liter + {0} millimole per liter + {0} millimoles per liter - - square yards - {0} square yard - {0} square yards + + parts per million + {0} part per million + {0} parts per million liters per kilometer {0} liter per kilometer {0} liters per kilometer + + liters per 100 kilometers + {0} liter per 100 kilometers + {0} liters per 100 kilometers + miles per gallon {0} mile per gallon {0} miles per gallon - - bits - {0} bit - {0} bits - - - bytes - {0} byte - {0} bytes - - - gigabits - {0} gigabit - {0} gigabits - - - gigabytes - {0} gigabyte - {0} gigabytes - - - kilobits - {0} kilobit - {0} kilobits - - - kilobytes - {0} kilobyte - {0} kilobytes - - - megabits - {0} megabit - {0} megabits - - - megabytes - {0} megabyte - {0} megabytes - - - terabits - {0} terabit - {0} terabits + + miles per Imp. gallon + {0} mile per Imp. gallon + {0} miles per Imp. gallon terabytes {0} terabyte {0} terabytes + + terabits + {0} terabit + {0} terabits + + + gigabytes + {0} gigabyte + {0} gigabytes + + + gigabits + {0} gigabit + {0} gigabits + + + megabytes + {0} megabyte + {0} megabytes + + + megabits + {0} megabit + {0} megabits + + + kilobytes + {0} kilobyte + {0} kilobytes + + + kilobits + {0} kilobit + {0} kilobits + + + bytes + {0} byte + {0} bytes + + + bits + {0} bit + {0} bits + + + centuries + {0} century + {0} centuries + + + years + {0} year + {0} years + {0} per year + + + months + {0} month + {0} months + {0} per month + + + weeks + {0} week + {0} weeks + {0} per week + days {0} day {0} days + {0} per day hours @@ -5424,30 +5628,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hours {0} per hour - - microseconds - {0} microsecond - {0} microseconds - - - milliseconds - {0} millisecond - {0} milliseconds - minutes {0} minute {0} minutes - - - months - {0} month - {0} months - - - nanoseconds - {0} nanosecond - {0} nanoseconds + {0} per minute seconds @@ -5455,15 +5640,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} seconds {0} per second - - weeks - {0} week - {0} weeks + + milliseconds + {0} millisecond + {0} milliseconds - - years - {0} year - {0} years + + microseconds + {0} microsecond + {0} microseconds + + + nanoseconds + {0} nanosecond + {0} nanoseconds amperes @@ -5485,6 +5675,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volts + + kilocalories + {0} kilocalorie + {0} kilocalories + calories {0} calorie @@ -5495,21 +5690,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Calorie {0} Calories - - joules - {0} joule - {0} joules - - - kilocalories - {0} kilocalorie - {0} kilocalories - kilojoules {0} kilojoule {0} kilojoules + + joules + {0} joule + {0} joules + kilowatt-hours {0} kilowatt hour @@ -5520,216 +5710,220 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigahertz {0} gigahertz - - hertz - {0} hertz - {0} hertz + + megahertz + {0} megahertz + {0} megahertz kilohertz {0} kilohertz {0} kilohertz - - megahertz - {0} megahertz - {0} megahertz + + hertz + {0} hertz + {0} hertz - - astronomical units - {0} astronomical unit - {0} astronomical units + + kilometers + {0} kilometer + {0} kilometers + {0} per kilometer - - centimeters - {0} centimeter - {0} centimeters + + meters + {0} meter + {0} meters + {0} per meter decimeters {0} decimeter {0} decimeters - - fathoms - {0} fathom - {0} fathoms - - - feet - {0} foot - {0} feet - - - furlongs - {0} furlong - {0} furlongs - - - inches - {0} inch - {0} inches - - - kilometers - {0} kilometer - {0} kilometers - - - light years - {0} light year - {0} light years - - - meters - {0} meter - {0} meters - - - micrometers - {0} micrometer - {0} micrometers - - - miles - {0} mile - {0} miles + + centimeters + {0} centimeter + {0} centimeters + {0} per centimeter millimeters {0} millimeter {0} millimeters + + micrometers + {0} micrometer + {0} micrometers + nanometers {0} nanometer {0} nanometers - - nautical miles - {0} nautical mile - {0} nautical miles - - - parsecs - {0} parsec - {0} parsecs - picometers {0} picometer {0} picometers + + miles + {0} mile + {0} miles + yards {0} yard {0} yards + + feet + {0} foot + {0} feet + {0} per foot + + + inches + {0} inch + {0} inches + {0} per inch + + + parsecs + {0} parsec + {0} parsecs + + + light years + {0} light year + {0} light years + + + astronomical units + {0} astronomical unit + {0} astronomical units + + + furlongs + {0} furlong + {0} furlongs + + + fathoms + {0} fathom + {0} fathoms + + + nautical miles + {0} nautical mile + {0} nautical miles + + + mile-scandinavian + {0} mile-scandinavian + {0} miles-scandinavian + lux {0} lux {0} lux - - carats - {0} carat - {0} carats - - - grams - {0} gram - {0} grams - - - kilograms - {0} kilogram - {0} kilograms - metric tons {0} metric ton {0} metric tons - - micrograms - {0} microgram - {0} micrograms + + kilograms + {0} kilogram + {0} kilograms + {0} per kilogram + + + grams + {0} gram + {0} grams + {0} per gram milligrams {0} milligram {0} milligrams - - ounces - {0} ounce - {0} ounces - - - troy ounces - {0} troy ounce - {0} troy ounces - - - pounds - {0} pound - {0} pounds - - - stones - {0} stone - {0} stones + + micrograms + {0} microgram + {0} micrograms tons {0} ton {0} tons + + stones + {0} stone + {0} stones + + + pounds + {0} pound + {0} pounds + {0} per pound + + + ounces + {0} ounce + {0} ounces + {0} per ounce + + + troy ounces + {0} troy ounce + {0} troy ounces + + + carats + {0} carat + {0} carats + gigawatts {0} gigawatt {0} gigawatts - - horsepower - {0} horsepower - {0} horsepower - - - kilowatts - {0} kilowatt - {0} kilowatts - megawatts {0} megawatt {0} megawatts - - milliwatts - {0} milliwatt - {0} milliwatts + + kilowatts + {0} kilowatt + {0} kilowatts watts {0} watt {0} watts + + milliwatts + {0} milliwatt + {0} milliwatts + + + horsepower + {0} horsepower + {0} horsepower + hectopascals {0} hectopascal {0} hectopascals - - inches of mercury - {0} inch of mercury - {0} inches of mercury - - - millibars - {0} millibar - {0} millibars - millimeters of mercury {0} millimeter of mercury @@ -5740,10 +5934,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pound per square inch {0} pounds per square inch - - karats - {0} karat - {0} karats + + inches of mercury + {0} inch of mercury + {0} inches of mercury + + + millibars + {0} millibar + {0} millibars kilometers per hour @@ -5760,6 +5959,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mile per hour {0} miles per hour + + knots + {0} knot + {0} knots + degrees Celsius {0} degree Celsius @@ -5775,36 +5979,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvin {0} kelvins - - acre-feet - {0} acre-foot - {0} acre-feet - - - bushels - {0} bushel - {0} bushels - - - centiliters - {0} centiliter - {0} centiliters - - - cubic centimeters - {0} cubic centimeter - {0} cubic centimeters - - - cubic feet - {0} cubic foot - {0} cubic feet - - - cubic inches - {0} cubic inch - {0} cubic inches - cubic kilometers {0} cubic kilometer @@ -5814,6 +5988,13 @@ For terms of use, see http://www.unicode.org/copyright.html cubic meters {0} cubic meter {0} cubic meters + {0} per cubic meter + + + cubic centimeters + {0} cubic centimeter + {0} cubic centimeters + {0} per cubic centimeter cubic miles @@ -5825,25 +6006,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cubic yard {0} cubic yards - - cups - {0} cup - {0} cups + + cubic feet + {0} cubic foot + {0} cubic feet - - deciliters - {0} deciliter - {0} deciliters + + cubic inches + {0} cubic inch + {0} cubic inches - - fluid ounces - {0} fluid ounce - {0} fluid ounces - - - gallons - {0} gallon - {0} gallons + + megaliters + {0} megaliter + {0} megaliters hectoliters @@ -5854,27 +6030,75 @@ For terms of use, see http://www.unicode.org/copyright.html liters {0} liter {0} liters + {0} per liter - - megaliters - {0} megaliter - {0} megaliters + + deciliters + {0} deciliter + {0} deciliters + + + centiliters + {0} centiliter + {0} centiliters milliliters {0} milliliter {0} milliliters - - pints - {0} pint - {0} pints + + metric pints + {0} metric pint + {0} metric pints + + + metric cups + {0} metric cup + {0} metric cups + + + acre-feet + {0} acre-foot + {0} acre-feet + + + bushels + {0} bushel + {0} bushels + + + gallons + {0} gallon + {0} gallons + {0} per gallon + + + Imp. gallons + {0} Imp. gallon + {0} Imp. gallons + {0} per Imp. gallon quarts {0} quart {0} quarts + + pints + {0} pint + {0} pints + + + cups + {0} cup + {0} cups + + + fluid ounces + {0} fluid ounce + {0} fluid ounces + tablespoons {0} tablespoon @@ -5900,6 +6124,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rev + {0} rev + {0} rev + + + radians + {0} rad + {0} rad + + + degrees + {0} deg + {0} deg + arcmins {0} arcmin @@ -5910,30 +6149,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} arcsec {0} arcsecs - - degrees - {0} deg - {0} deg - - - radians - {0} rad - {0} rad - - - acres - {0} ac - {0} ac + + km² + {0} km² + {0} km² hectares {0} ha {0} ha + + meters² + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + sq miles + {0} sq mi + {0} sq mi + + + acres + {0} ac + {0} ac + + + yards² + {0} yd² + {0} yd² sq feet @@ -5944,139 +6195,160 @@ For terms of use, see http://www.unicode.org/copyright.html inches² {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² + + karats + {0} kt + {0} kt - - meters² - {0} m² - {0} m² + + mg/dL + {0} mg/dL + {0} mg/dL - - sq miles - {0} sq mi - {0} sq mi + + millimol/liter + {0} mmol/L + {0} mmol/L - - yards² - {0} yd² - {0} yd² + + parts/million + {0} ppm + {0} ppm liters/km {0} L/km {0} L/km + + L/100 km + {0} L/100 km + {0} L/100 km + miles/gal {0} mpg {0} mpg - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - Gbit - {0} Gb - {0} Gb - - - GByte - {0} GB - {0} GB - - - kbit - {0} kb - {0} kb - - - kByte - {0} kB - {0} kB - - - Mbit - {0} Mb - {0} Mb - - - MByte - {0} MB - {0} MB - - - Tbit - {0} Tb - {0} Tb + + miles/gal Imp. + {0} mpg Imp. + {0} mpg Imp. TByte {0} TB {0} TB + + Tbit + {0} Tb + {0} Tb + + + GByte + {0} GB + {0} GB + + + Gbit + {0} Gb + {0} Gb + + + MByte + {0} MB + {0} MB + + + Mbit + {0} Mb + {0} Mb + + + kByte + {0} kB + {0} kB + + + kbit + {0} kb + {0} kb + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + c + {0} c + {0} c + + + years + {0} yr + {0} yrs + {0}/y + + + months + {0} mth + {0} mths + {0}/m + + + weeks + {0} wk + {0} wks + {0}/w + days {0} day {0} days + {0}/d hours {0} hr {0} hr - {0}ph + {0}/h - - μsecs - {0} μs - {0} μs + + mins + {0} min + {0} min + {0}/min + + + secs + {0} sec + {0} sec + {0}/s millisecs {0} ms {0} ms - - mins - {0} min - {0} min - - - months - {0} mth - {0} mths + + μsecs + {0} μs + {0} μs nanosecs {0} ns {0} ns - - secs - {0} sec - {0} sec - {0}ps - - - weeks - {0} wk - {0} wks - - - years - {0} yr - {0} yrs - amps {0} A @@ -6097,6 +6369,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -6107,21 +6384,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - joules - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kilojoule {0} kJ {0} kJ + + joules + {0} J + {0} J + kW-hour {0} kWh @@ -6132,216 +6404,220 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + meters + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - fathoms - {0} ftm - {0} ftm - - - feet - {0} ft - {0} ft - - - furlongs - {0} fur - {0} fur - - - inches - {0} in - {0} in - - - km - {0} km - {0} km - - - light yrs - {0} ly - {0} ly - - - meters - {0} m - {0} m - - - µmeters - {0} µm - {0} µm - - - miles - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + µmeters + {0} µm + {0} µm + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - parsecs - {0} pc - {0} pc - pm {0} pm {0} pm + + miles + {0} mi + {0} mi + yards {0} yd {0} yd + + feet + {0} ft + {0} ft + {0}/ft + + + inches + {0} in + {0} in + {0}/in + + + parsecs + {0} pc + {0} pc + + + light yrs + {0} ly + {0} ly + + + au + {0} au + {0} au + + + furlongs + {0} fur + {0} fur + + + fathoms + {0} ftm + {0} ftm + + + nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + lux {0} lx {0} lx - - carats - {0} CD - {0} CD - - - grams - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + grams + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - oz - {0} oz - {0} oz - - - oz troy - {0} oz t - {0} oz t - - - pounds - {0} lb - {0} lb - - - stones - {0} st - {0} st + + µg + {0} µg + {0} µg tons {0} tn {0} tn + + stones + {0} st + {0} st + + + pounds + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0}/oz + + + oz troy + {0} oz t + {0} oz t + + + carats + {0} CD + {0} CD + GW {0} GW {0} GW - - hp - {0} hp - {0} hp - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW watts {0} W {0} W + + mW + {0} mW + {0} mW + + + hp + {0} hp + {0} hp + hPa {0} hPa {0} hPa - - in Hg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -6352,10 +6628,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - karats - {0} kt - {0} kt + + in Hg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar km/hour @@ -6372,6 +6653,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mph {0} mph + + kn + {0} kn + {0} kn + deg. C {0}°C @@ -6387,36 +6673,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - acre ft - {0} ac ft - {0} ac ft - - - bushels - {0} bu - {0} bu - - - cL - {0} cL - {0} cL - - - cm³ - {0} cm³ - {0} cm³ - - - feet³ - {0} ft³ - {0} ft³ - - - inches³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -6427,6 +6683,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + + cm³ + {0} cm³ + {0} cm³ + mi³ {0} mi³ @@ -6437,25 +6698,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - cups - {0} c - {0} c + + feet³ + {0} ft³ + {0} ft³ - - dL - {0} dL - {0} dL + + inches³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML hL @@ -6467,26 +6723,71 @@ For terms of use, see http://www.unicode.org/copyright.html {0} L {0} L - - ML - {0} ML - {0} ML + + dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL mL {0} mL {0} mL - - pints - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + acre ft + {0} ac ft + {0} ac ft + + + bushels + {0} bu + {0} bu + + + gal + {0} gal + {0} gal + + + Imp. gal + {0} gal Imp. + {0} gal Imp. qts {0} qt {0} qt + + pints + {0} pt + {0} pt + + + cups + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + tbsp {0} tbsp @@ -6509,6 +6810,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0}m/s² {0}m/s² + + rev + {0}rev + {0}rev + + + rad + {0}rad + {0}rad + + + deg + {0}° + {0}° + arcmin {0}′ @@ -6519,21 +6835,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - deg - {0}° - {0}° - - - rad - {0}rad - {0}rad - - - acre - {0}ac - {0}ac - hectare {0}ha @@ -6544,6 +6845,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0}cm² {0}cm² + + mi² + {0}mi² + {0}mi² + + + acre + {0}ac + {0}ac + + + yd² + {0}yd² + {0}yd² + ft² {0}ft² @@ -6554,75 +6870,110 @@ For terms of use, see http://www.unicode.org/copyright.html {0}in² {0}in² - - mi² - {0}mi² - {0}mi² + + karat + {0}kt + {0}kt - - yd² - {0}yd² - {0}yd² + + mg/dL + {0}mg/dL + {0}mg/dL + + + mmol/L + {0}mmol/L + {0}mmol/L + + + ppm + {0}ppm + {0}ppm L/km {0}L/km {0}L/km + + L/100km + {0}L/100km + {0}L/100km + mpg {0}mpg {0}mpg - - bit - {0}bit - {0}bit + + mpg Imp + {0}mpgIm + {0}mpgIm - - byte - {0}byte - {0}byte - - - Gbit - {0}Gb - {0}Gb - - - GByte - {0}GB - {0}GB - - - kbit - {0}kb - {0}kb - - - kByte - {0}kB - {0}kB - - - Mbit - {0}Mb - {0}Mb - - - MByte - {0}MB - {0}MB + + TByte + {0}TB + {0}TB Tbit {0}Tb {0}Tb - - TByte - {0}TB - {0}TB + + GByte + {0}GB + {0}GB + + + Gbit + {0}Gb + {0}Gb + + + MByte + {0}MB + {0}MB + + + Mbit + {0}Mb + {0}Mb + + + kByte + {0}kB + {0}kB + + + kbit + {0}kb + {0}kb + + + byte + {0}byte + {0}byte + + + bit + {0}bit + {0}bit + + + yr + {0}y + {0}y + + + month + {0}m + {0}m + + + wk + {0}w + {0}w day @@ -6633,49 +6984,32 @@ For terms of use, see http://www.unicode.org/copyright.html hour {0}h {0}h - {0}/h - - - μsec - {0}μs - {0}μs - - - msec - {0}ms - {0}ms min {0}m {0}m - - month - {0}m - {0}m + + sec + {0}s + {0}s + + + msec + {0}ms + {0}ms + + + μsec + {0}μs + {0}μs ns {0}ns {0}ns - - sec - {0}s - {0}s - {0}/s - - - wk - {0}w - {0}w - - - yr - {0}y - {0}y - amp {0}A @@ -6696,6 +7030,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}V {0}V + + kcal + {0}kcal + {0}kcal + cal {0}cal @@ -6706,21 +7045,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}Cal {0}Cal - - joule - {0}J - {0}J - - - kcal - {0}kcal - {0}kcal - kJ {0}kJ {0}kJ + + joule + {0}J + {0}J + kWh {0}kWh @@ -6731,145 +7065,160 @@ For terms of use, see http://www.unicode.org/copyright.html {0}GHz {0}GHz - - Hz - {0}Hz - {0}Hz + + MHz + {0}MHz + {0}MHz kHz {0}kHz {0}kHz - - MHz - {0}MHz - {0}MHz - - - au - {0}au - {0}au - - - cm - {0}cm - {0}cm - - - dm - {0}dm - {0}dm - - - fathom - {0}fm - {0}fm - - - ft - {0}′ - {0}′ - - - furlong - {0}fur - {0}fur - - - in - {0}″ - {0}″ + + Hz + {0}Hz + {0}Hz km {0}km {0}km - - ly - {0}ly - {0}ly - meter {0}m {0}m - - µm - {0}µm - {0}µm + + dm + {0}dm + {0}dm - - mi - {0}mi - {0}mi + + cm + {0}cm + {0}cm mm {0}mm {0}mm + + µm + {0}µm + {0}µm + nm {0}nm {0}nm - - nmi - {0}nmi - {0}nmi - - - parsec - {0}pc - {0}pc - pm {0}pm {0}pm + + mi + {0}mi + {0}mi + yd {0}yd {0}yd + + ft + {0}′ + {0}′ + + + in + {0}″ + {0}″ + + + parsec + {0}pc + {0}pc + + + ly + {0}ly + {0}ly + + + au + {0}au + {0}au + + + furlong + {0}fur + {0}fur + + + fathom + {0}fm + {0}fm + + + nmi + {0}nmi + {0}nmi + + + smi + {0}smi + {0}smi + lux {0}lx {0}lx - - carat - {0}CD - {0}CD - - - gram - {0}g - {0}g + + t + {0}t + {0}t kg {0}kg {0}kg - - t - {0}t - {0}t + + gram + {0}g + {0}g + + + mg + {0}mg + {0}mg µg {0}µg {0}µg - - mg - {0}mg - {0}mg + + ton + {0}tn + {0}tn + + + stone + {0}st + {0}st + + + lb + {0}# + {0}# oz @@ -6881,66 +7230,46 @@ For terms of use, see http://www.unicode.org/copyright.html {0}oz t {0}oz t - - lb - {0}# - {0}# - - - stone - {0}st - {0}st - - - ton - {0}tn - {0}tn + + carat + {0}CD + {0}CD GW {0}GW {0}GW - - hp - {0}hp - {0}hp + + MW + {0}MW + {0}MW kW {0}kW {0}kW - - MW - {0}MW - {0}MW + + watt + {0}W + {0}W mW {0}mW {0}mW - - watt - {0}W - {0}W + + hp + {0}hp + {0}hp hPa {0}hPa {0}hPa - - ″ Hg - {0}″ Hg - {0}″ Hg - - - mbar - {0}mb - {0}mb - mm Hg {0}mm Hg @@ -6951,10 +7280,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0}psi {0}psi - - karat - {0}kt - {0}kt + + ″ Hg + {0}″ Hg + {0}″ Hg + + + mbar + {0}mb + {0}mb km/hr @@ -6971,6 +7305,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mph {0}mph + + kn + {0}kn + {0}kn + °C {0}°C @@ -6986,36 +7325,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}K {0}K - - acre ft - {0}ac ft - {0}ac ft - - - bushel - {0}bu - {0}bu - - - cL - {0}cL - {0}cL - - - cm³ - {0}cm³ - {0}cm³ - - - ft³ - {0}ft³ - {0}ft³ - - - in³ - {0}in³ - {0}in³ - km³ {0}km³ @@ -7025,6 +7334,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0}m³ {0}m³ + {0}/m³ + + + cm³ + {0}cm³ + {0}cm³ + {0}/cm³ mi³ @@ -7036,25 +7352,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0}yd³ {0}yd³ - - cup - {0}c - {0}c + + ft³ + {0}ft³ + {0}ft³ - - dL - {0}dL - {0}dL + + in³ + {0}in³ + {0}in³ - - fl oz - {0}fl oz - {0}fl oz - - - gal - {0}gal - {0}gal + + ML + {0}ML + {0}ML hL @@ -7063,29 +7374,77 @@ For terms of use, see http://www.unicode.org/copyright.html liter - {0}l - {0}l + {0}L + {0}L + {0}/L - - ML - {0}ML - {0}ML + + dL + {0}dL + {0}dL + + + cL + {0}cL + {0}cL mL {0}mL {0}mL - + pt - {0}pt - {0}pt + {0}mpt + {0}mpt + + + mcup + {0}mc + {0}mc + + + acre ft + {0}ac ft + {0}ac ft + + + bushel + {0}bu + {0}bu + + + gal + {0}gal + {0}gal + {0}/gal + + + Imp gal + {0}galIm + {0}galIm + {0}/galIm qt {0}qt {0}qt + + pt + {0}pt + {0}pt + + + cup + {0}c + {0}c + + + fl oz + {0}fl oz + {0}fl oz + tbsp {0}tbsp diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_001.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_001.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_001.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_001.xml index 8662208354a..f60bb88f4fb 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_001.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_001.xml @@ -1,13 +1,12 @@ - - - + @@ -209,6 +208,7 @@ For terms of use, see http://www.unicode.org/copyright.html + E d d MMM y G E, d MMM y G dd/MM @@ -374,11 +374,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metre per second squared {0} metres per second squared - - square centimetres - {0} square centimetre - {0} square centimetres - square kilometres {0} square kilometre @@ -388,42 +383,77 @@ For terms of use, see http://www.unicode.org/copyright.html square metres {0} square metre {0} square metres + {0} per square metre + + + square centimetres + {0} square centimetre + {0} square centimetres + {0} per square centimetre + + + milligrams per decilitre + {0} milligram per decilitre + {0} milligrams per decilitre + + + millimoles per litre + {0} millimole per litre + {0} millimoles per litre litres per kilometre {0} litre per kilometre {0} litres per kilometre - - centimetres - {0} centimetre - {0} centimetres + + litres per 100 kilometres + {0} litre per 100 kilometres + {0} litres per 100 kilometres + + + miles per US gallon + {0} mile per US gallon + {0} miles per US gallon + + + miles per gallon + {0} mile per gallon + {0} miles per gallon + + + kilometres + {0} kilometre + {0} kilometres + {0} per kilometre + + + metres + {0} metre + {0} metres + {0} per metre decimetre {0} decimetre {0} decimetres - - kilometres - {0} kilometre - {0} kilometres - - - metres - {0} metre - {0} metres - - - micrometre - {0} micrometre - {0} micrometres + + centimetres + {0} centimetre + {0} centimetres + {0} per centimetre millimetres {0} millimetre {0} millimetres + + micrometre + {0} micrometre + {0} micrometres + nanometres {0} nanometre @@ -449,16 +479,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metre per second {0} metres per second - - centilitres - {0} centilitre - {0} centilitres - - - cubic centimetres - {0} cubic centimetre - {0} cubic centimetres - cubic kilometres {0} cubic kilometre @@ -468,11 +488,18 @@ For terms of use, see http://www.unicode.org/copyright.html cubic metres {0} cubic metre {0} cubic metres + {0} per cubic metre - - decilitres - {0} decilitre - {0} decilitres + + cubic centimetres + {0} cubic centimetre + {0} cubic centimetres + {0} per cubic centimetre + + + megalitres + {0} megalitre + {0} megalitres hectolitres @@ -483,24 +510,69 @@ For terms of use, see http://www.unicode.org/copyright.html litres {0} litre {0} litres + {0} per litre - - megalitres - {0} megalitre - {0} megalitres + + decilitres + {0} decilitre + {0} decilitres + + + centilitres + {0} centilitre + {0} centilitres millilitres {0} millilitre {0} millilitres + + US gallons + {0} US gallon + {0} US gallons + {0} per US gallon + + + gallons + {0} gallon + {0} gallons + {0} per gallon + metres/sec² + + mg/dl + {0} mg/dl + {0} mg/dl + + + millimol/litre + {0} mmol/l + {0} mmol/l + litres/km + {0} l/km + {0} l/km + + + l/100 km + {0} l/100 km + {0} l/100 km + + + miles/gal US + {0} mpg US + {0} mpg US + + + miles/gal + {0} mpg + {0} mpg {0} hr @@ -517,14 +589,84 @@ For terms of use, see http://www.unicode.org/copyright.html metres + + µmetres + metres/sec + + Ml + {0} Ml + {0} Ml + + + hl + {0} hl + {0} hl + litres + {0} l + {0} l + + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl + + + ml + {0} ml + {0} ml + + + US gal + {0} gal US + {0} gal US + + + gal + {0} gal + {0} gal + + mg/dl + {0}mg/dl + {0}mg/dl + + + mmol/l + {0}mmol/l + {0}mmol/l + + + l/km + {0}l/km + {0}l/km + + + l/100km + {0}l/100km + {0}l/100km + + + mpg US + {0}mpgUS + {0}mpgUS + + + mpg + {0}mpg + {0}mpg + {0}lb {0}lb @@ -537,9 +679,50 @@ For terms of use, see http://www.unicode.org/copyright.html {0}°F {0}°F + + Ml + {0}Ml + {0}Ml + + + hl + {0}hl + {0}hl + litre + {0}l + {0}l + {0}/l + + + dl + {0}dl + {0}dl + + + cl + {0}cl + {0}cl + + + ml + {0}ml + {0}ml + + + US gal + {0}galUS + {0}galUS + {0}/galUS + + + gal + {0}gal + {0}gal + {0}/gal + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_150.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_150.xml new file mode 100644 index 00000000000..609b39699b3 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_150.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + , + . + + + + + #,##0.00 ¤ + + + #,##0.00 ¤ + + + + + + ¤#,##0.00 + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_AG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_AG.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_AG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_AG.xml index 666bac2051a..96e2b504b22 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_AG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_AG.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_AI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_AI.xml new file mode 100644 index 00000000000..8a0dd74bd2c --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_AI.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + $ + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_AS.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_AS.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_AS.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_AS.xml index da797dcd91b..f4e022f6f35 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_AS.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_AS.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_AT.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_AT.xml new file mode 100644 index 00000000000..850be8ad53a --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_AT.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + · + + + + + #,##0 % + + + + + + + ¤ #,##0.00 + + + ¤ #,##0.00 + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_AU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_AU.xml new file mode 100644 index 00000000000..941bbc8ede0 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_AU.xml @@ -0,0 +1,760 @@ + + + + + + + + + + + + Bamum + United States English + Moldovan + + + Korean Calendar + Ethiopian Calendar + + + + + + + + dd/MM/y + E, dd/MM/y + + + + E, d/M – E, d/M + E, d/M – E, d/M + + + E, d MMM – E, d MMM + E, d MMM – E, d MMM + + + E, d MMM – E, d MMM y G + + + + + + + + + Jan. + Feb. + Mar. + Apr. + May + Jun. + Jul. + Aug. + Sep. + Oct. + Nov. + Dec. + + + + + Jan. + Feb. + Mar. + Apr. + May + Jun. + Jul. + Aug. + Sep. + Oct. + Nov. + Dec. + + + + + + + Sun. + Mon. + Tue. + Wed. + Thu. + Fri. + Sat. + + + Su. + Mon. + Tu. + Wed. + Th. + Fri. + Sat. + + + + + Su. + M. + Tu. + W. + Th. + F. + Sa. + + + + + + + midnight + am + midday + pm + morning + afternoon + evening + night + + + midnight + am + midday + pm + morning + afternoon + evening + night + + + midnight + am + midday + pm + morning + afternoon + evening + night + + + + + am + midday + pm + + + am + midday + pm + + + am + midday + pm + + + + + + + d/M/yy + + + + + + LL + + + + + + + d/M/y + E, d/M/y + + + + + + + am/pm + + + h + + + + + + Eastern Africa Time + + + + + Arabia Time + Arabia Standard Time + Arabia Daylight Time + + + + + Australian Central Time + Australian Central Standard Time + Australian Central Daylight Time + + + ACT + ACST + ACDT + + + + + ACWT + ACWST + ACWDT + + + + + Australian Eastern Time + Australian Eastern Standard Time + Australian Eastern Daylight Time + + + AET + AEST + AEDT + + + + + Australian Western Time + Australian Western Standard Time + Australian Western Daylight Time + + + AWT + AWST + AWDT + + + + + Cook Island Time + Cook Island Standard Time + Cook Island Summer Time + + + + + Japan Time + Japan Standard Time + Japan Summer Time + + + + + Korea Time + Korean Standard Time + Korean Summer Time + + + + + LHT + LHST + LHDT + + + + + Moscow Time + Moscow Standard Time + Moscow Daylight Time + + + + + NZT + NZST + NZDT + + + + + Samoa Time + Samoa Standard Time + Samoa Summer Time + + + + + Taipei Time + Taipei Standard Time + Taipei Summer Time + + + + + + + e + + + + $ + + + Aruba Guilder + Aruba guilder + Aruba guilders + + + Bosnia-Herzegovina Convertible Marka + Bosnia-Herzegovina convertible marka + Bosnia-Herzegovina convertible marka + + + Barbados Dollar + Barbados dollar + Barbados dollars + + + Tk + + + Bermuda Dollar + Bermuda dollar + Bermuda dollars + + + Boliviano + boliviano + bolivianos + $b + + + BRL + + + CAD + + + CNY + + + + + + £ + + + euro + euro + EUR + + + GBP + + + Georgian lari + Georgian lari + GEL + + + HKD + + + Israeli Shekel + Israeli shekel + Israeli sheckles + ILS + + + INR + + + Kr + + + JPY + + + KRW + + + Kazakhstani tenge + Kazakhstani tenge + + + Laotian kip + Laotian kip + + + Macedonian denar + Macedonian denar + + + MXN + + + NZD + + + Papua New Guinean kina + Papua New Guinean kinas + + + Gs + + + Qatari Riyal + Qatari riyal + Quatari riyals + + + Rs + + + Kr + + + Suriname Dollar + Suriname dollar + Suriname dollars + + + Turkish lira + Turkish lire + TRY + + + TWD + + + USD + + + Peso Uruguayo + $U + + + Uzbekistani som + Uzbekistani soms + + + Vietnamese dong + Vietnamese dongs + VND + + + Samoan tala + Samoan talas + + + XAF + + + XCD + + + XOF + + + CFP + + + + + + + kilowatt hours + {0} kilowatt hour + {0} kilowatt hours + + + kilometre + + + decimetre + {0} decimetres + + + {0} centimetre + + + micrometres + + + tonnes + tonne + {0} tonnes + + + degrees + {0} degree + {0} degrees + + + {0} east + {0} north + {0} south + {0} west + + + + + {0} deg. + {0} deg. + + + arcmin. + {0} arcmin. + {0} arcmin. + + + arcsec. + {0} arcsec. + {0} arcsec. + + + metres² + + + mg/dL + {0} mg/dL + {0} mg/dL + + + {0} mmol/L + {0} mmol/L + + + {0} L/km + {0} L/km + + + L/100 km + {0} L/100 km + {0} L/100 km + + + miles/gal. US + {0} m.p.g. US + {0} m.p.g. US + + + miles/gal. + {0} m.p.g. + {0} m.p.g. + + + C. + {0} C. + {0} C. + + + {0} m. + {0} m. + + + {0} phr + + + min. + {0} min. + {0} min. + {0}/min. + + + sec. + {0} sec. + {0} sec. + {0} ps. + + + millisec. + + + μsec. + + + nanosec. + + + kWh + + + {0} l.y. + {0} l.y. + + + AU + {0} AU + {0} AU + + + {0} fm + {0} fm + + + {0} CM + {0} CM + + + mb + {0} mb + {0} mb + + + {0} km/h + {0} km/h + + + metres/sec. + {0} m/s. + {0} m/s. + + + {0} m.p.h. + {0} m.p.h. + + + deg. + + + ML + {0} ML + {0} ML + + + hL + {0} hL + {0} hL + + + {0} L + {0} L + + + dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL + + + mL + {0} mL + {0} mL + + + {0} bus. + {0} bus. + + + + + mg/dL + {0}mg/dL + {0}mg/dL + + + mmol/L + {0}mmol/L + {0}mmol/L + + + L/km + {0}L/km + {0}L/km + + + L/100km + {0}L/100km + {0}L/100km + + + min. + {0} min. + {0} min. + + + sec. + {0} s. + {0} s. + + + msec. + {0} ms + {0} ms + + + metre + + + km/h + {0} km/h + {0} km/h + + + m.p.h. + {0} m.p.h. + {0} m.p.h. + + + {0}°C + {0}°C + + + ML + {0}ML + {0}ML + + + hL + {0}hL + {0}hL + + + dL + {0}dL + {0}dL + + + cL + {0}cL + {0}cL + + + mL + {0}mL + {0}mL + + + {0} bus. + {0} bus. + + + + + + {0} and {1} + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BB.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BB.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BB.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BB.xml index 26f62411d22..69ce3ee011d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BB.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BB.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BE.xml similarity index 86% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BE.xml index 4c52a462090..5f070741659 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BE.xml @@ -1,13 +1,12 @@ - - - + @@ -62,7 +61,22 @@ For terms of use, see http://www.unicode.org/copyright.html - HH 'h' mm 'min' ss 's' zzzz + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_AI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BI.xml similarity index 62% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_AI.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BI.xml index 61696347750..752b8dd3982 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_AI.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BI.xml @@ -1,21 +1,21 @@ - - - + - + - - $ + + FBu + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BM.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BM.xml index e9f208eadbe..6d7b4606868 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BM.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BS.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BS.xml similarity index 83% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BS.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BS.xml index 7a5a6b8beba..51cceb1d3df 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BS.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BS.xml @@ -1,13 +1,12 @@ - - - + @@ -31,3 +30,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BW.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BW.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BW.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BW.xml index 0d5111c3082..340a921f8c4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BW.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BW.xml @@ -1,13 +1,12 @@ - - - + @@ -43,7 +42,6 @@ For terms of use, see http://www.unicode.org/copyright.html E, dd/MM/y G dd MMM y G E, dd MMM y G - MMMM y G diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BZ.xml similarity index 98% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BZ.xml index cce0b3adb95..7c06d5ee4cc 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_BZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_BZ.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_CA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CA.xml similarity index 59% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_CA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CA.xml index 67271fe2330..6d766b89185 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_CA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CA.xml @@ -1,13 +1,12 @@ - - - + @@ -33,6 +32,7 @@ For terms of use, see http://www.unicode.org/copyright.html r-MM-dd + d/M/r @@ -42,27 +42,38 @@ For terms of use, see http://www.unicode.org/copyright.html MMM d, r E, MMM d, r(U) MM-dd + d/M E, MM-dd + E, d/M MMM d E, MMM d MMMM d - U-MM-dd - MMM d, U + U-MM-dd + d/M/U + MMM d, U r-MM-dd + d/M/r r-MM + M/r r-MM-dd + d/M/r E, r-MM-dd + E, d/M/r MMM d, r E, MMM d, r(U) MM-dd – MM-dd + d/M – d/M MM-dd – MM-dd + d/M – d/M E, MM-dd – E, MM-dd + E, d/M – E, d/M E, MM-dd – E, MM-dd + E, d/M – E, d/M MMM d – d @@ -74,17 +85,25 @@ For terms of use, see http://www.unicode.org/copyright.html y-MM – y-MM + M/y – M/y y-MM – y-MM + M/y – M/y y-MM-dd – y-MM-dd + d/M/y – d/M/y y-MM-dd – y-MM-dd + d/M/y – d/M/y y-MM-dd – y-MM-dd + d/M/y – d/M/y E, y-MM-dd – E, y-MM-dd + E, d/M/y – E, d/M/y E, y-MM-dd – E, y-MM-dd + E, d/M/y – E, d/M/y E, y-MM-dd – E, y-MM-dd + E, d/M/y – E, d/M/y MMM d – d, U @@ -119,6 +138,7 @@ For terms of use, see http://www.unicode.org/copyright.html GGGGG y-MM-dd + d/M/y GGGGG @@ -128,23 +148,32 @@ For terms of use, see http://www.unicode.org/copyright.html MMM d, y G E, MMM d, y G MM-dd + d/M E, MM-dd + E, d/M MMM d E, MMM d GGGGG y-MM + M/y GGGGG GGGGG y-MM-dd + d/M/y GGGGG E, GGGGG y-MM-dd + E, d/M/y GGGGG MMM d, y G E, MMM d, y G MM-dd – MM-dd + d/M – d/M MM-dd – MM-dd + d/M – d/M E, MM-dd – E, MM-dd + E, d/M – E, d/M E, MM-dd – E, MM-dd + E, d/M – E, d/M MMM d – d @@ -156,17 +185,25 @@ For terms of use, see http://www.unicode.org/copyright.html GGGGG y-MM – y-MM + M/y – M/y GGGGG GGGGG y-MM – y-MM + M/y – M/y GGGGG GGGGG y-MM-dd – y-MM-dd + d/M/y – d/M/y GGGGG GGGGG y-MM-dd – y-MM-dd + d/M/y – d/M/y GGGGG GGGGG y-MM-dd – y-MM-dd + d/M/y – d/M/y GGGGG E, y-MM-dd – E, y-MM-dd + E, d/M/y – E, d/M/y GGGGG E, y-MM-dd – E, y-MM-dd + E, d/M/y – E, d/M/y GGGGG E, y-MM-dd – E, y-MM-dd + E, d/M/y – E, d/M/y GGGGG MMM d – d, y G @@ -183,24 +220,25 @@ For terms of use, see http://www.unicode.org/copyright.html - - - EEEE, MMMM d, y - - - - - MMMM d, y - - - - - MMM d, y - - + + + EEEE, MMMM d, y + + + + + MMMM d, y + + + + + MMM d, y + + y-MM-dd + d/M/yy @@ -209,25 +247,35 @@ For terms of use, see http://www.unicode.org/copyright.html MMM d, y G E, MMM d, y G MM-dd + d/M E, MM-dd + E, d/M MM-dd + dd/MM MMM d E, MMM d MMMM d y-MM + M/y y-MM-dd + d/M/y E, y-MM-dd + E, d/M/y MMM d, y E, MMM d, y MM-dd – MM-dd + d/M – d/M MM-dd – MM-dd + d/M – d/M E, MM-dd – E, MM-dd + E, d/M – E, d/M E, MM-dd – E, MM-dd + E, d/M – E, d/M MMM d – d @@ -239,17 +287,25 @@ For terms of use, see http://www.unicode.org/copyright.html y-MM – y-MM + M/y – M/y y-MM – y-MM + M/y – M/y y-MM-dd – y-MM-dd + d/M/y – d/M/y y-MM-dd – y-MM-dd + d/M/y – d/M/y y-MM-dd – y-MM-dd + d/M/y – d/M/y E, y-MM-dd – E, y-MM-dd + E, d/M/y – E, d/M/y E, y-MM-dd – E, y-MM-dd + E, d/M/y – E, d/M/y E, y-MM-dd – E, y-MM-dd + E, d/M/y – E, d/M/y MMM d – d, y @@ -338,5 +394,108 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + mg/dL + {0} mg/dL + {0} mg/dL + + + {0} mmol/L + {0} mmol/L + + + {0} L/km + {0} L/km + + + L/100 km + {0} L/100 km + {0} L/100 km + + + ML + {0} ML + {0} ML + + + hL + {0} hL + {0} hL + + + {0} L + {0} L + + + dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL + + + mL + {0} mL + {0} mL + + + + + mg/dL + {0}mg/dL + {0}mg/dL + + + mmol/L + {0}mmol/L + {0}mmol/L + + + L/km + {0}L/km + {0}L/km + + + L/100km + {0}L/100km + {0}L/100km + + + ML + {0}ML + {0}ML + + + hL + {0}hL + {0}hL + + + {0}L + {0}L + {0}/L + + + dL + {0}dL + {0}dL + + + cL + {0}cL + {0}cL + + + mL + {0}mL + {0}mL + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CC.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CC.xml new file mode 100644 index 00000000000..c1fec120c29 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CC.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + $ + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_LI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CH.xml similarity index 60% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_LI.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CH.xml index 7096e94b8cb..f10610fa146 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/de_LI.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CH.xml @@ -1,27 +1,29 @@ - - - - - + + + - . - ' + · - ¤ #,##0.00 + ¤ #,##0.00;¤-#,##0.00 + + + ¤ #,##0.00;¤-#,##0.00 + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CK.xml new file mode 100644 index 00000000000..4f31d37b66f --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CK.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + $ + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_CM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CM.xml similarity index 54% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_CM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CM.xml index 321501288c6..1a89a40f84d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_CM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CM.xml @@ -1,17 +1,42 @@ - - - + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + @@ -38,3 +63,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CX.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CX.xml new file mode 100644 index 00000000000..c872793edc2 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CX.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + $ + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/tr_CY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CY.xml similarity index 63% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/tr_CY.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CY.xml index 88a828ffb2e..3f180f61e5e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/tr_CY.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_CY.xml @@ -1,14 +1,14 @@ - - - - + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_DE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_DE.xml new file mode 100644 index 00000000000..4b0e03ba67b --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_DE.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + · + + + + + #,##0 % + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_DG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_DG.xml new file mode 100644 index 00000000000..ad49f8e0edb --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_DG.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_DK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_DK.xml new file mode 100644 index 00000000000..f60d42321ca --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_DK.xml @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + E h.mm a + E HH.mm + E h.mm.ss a + E HH.mm.ss + h.mm a + HH.mm + h.mm.ss a + HH.mm.ss + h.mm.ss a v + HH.mm.ss v + h.mm a v + HH.mm v + mm.ss + + + + + + + + HH.mm.ss zzzz + + + + + HH.mm.ss z + + + + + HH.mm.ss + + + + + HH.mm + + + + + + E h.mm a + E HH.mm + E h.mm.ss a + E HH.mm.ss + h.mm a + HH.mm + h.mm.ss a + HH.mm.ss + h.mm.ss a v + HH.mm.ss v + h.mm a v + HH.mm v + mm.ss + + + + + + + + . + + + + + #,##0 % + + + + + + kr. + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_DM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_DM.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_DM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_DM.xml index 2dde4ee23d0..54138e15de2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_DM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_DM.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_ER.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_ER.xml similarity index 86% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_ER.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_ER.xml index 2e7758a6614..ba47a07bb58 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_ER.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_ER.xml @@ -1,13 +1,12 @@ - - - + @@ -45,3 +44,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_FI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_FI.xml new file mode 100644 index 00000000000..2be9bab30cd --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_FI.xml @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + E h.mm a + E H.mm + E h.mm.ss a + E H.mm.ss + h.mm a + H.mm + h.mm.ss a + H.mm.ss + h.mm.ss a v + H.mm.ss v + h.mm a v + H.mm v + mm.ss + + + + + + + + H.mm.ss zzzz + + + + + H.mm.ss z + + + + + H.mm.ss + + + + + H.mm + + + + + + E h.mm a + E H.mm + E h.mm.ss a + E H.mm.ss + h.mm a + H.mm + h.mm.ss a + H.mm.ss + h.mm.ss a v + H.mm.ss v + h.mm a v + H.mm v + mm.ss + + + + + + + +   + . + + + + + #,##0 % + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_FJ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_FJ.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_FJ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_FJ.xml index 23e3c806bdd..7e85bd0b29a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_FJ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_FJ.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_FK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_FK.xml new file mode 100644 index 00000000000..4859d8008da --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_FK.xml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + £ + + + GB£ + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_FM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_FM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_FM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_FM.xml index 785b9d28462..7694f4f4913 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_FM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_FM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GB.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GB.xml new file mode 100644 index 00000000000..e1e53309f12 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GB.xml @@ -0,0 +1,303 @@ + + + + + + + + + + + + West Low German + + + Normalised Sorting + + + Sort Without Normalisation + Sort Unicode Normalised + + + + + + + + + am + pm + + + am + pm + + + + + a + p + + + am + pm + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + yr + + in {0} yr + in {0} yr + + + {0} yr ago + {0} yr ago + + + + + in {0} yr + in {0} yr + + + {0} yr ago + {0} yr ago + + + + qtr + + in {0} qtr + in {0} qtr + + + {0} qtr ago + {0} qtr ago + + + + qtr + + in {0} qtr + in {0} qtr + + + {0} qtr ago + {0} qtr ago + + + + mo + + in {0} mo + in {0} mo + + + {0} mo ago + {0} mo ago + + + + mo + + in {0} mo + in {0} mo + + + {0} mo ago + {0} mo ago + + + + wk + + in {0} wk + in {0} wk + + + {0} wk ago + {0} wk ago + + + + wk + + in {0} wk + in {0} wk + + + {0} wk ago + {0} wk ago + + + + am/pm + + + hr + + in {0} hr + in {0} hr + + + {0} hr ago + {0} hr ago + + + + + in {0} hr + in {0} hr + + + {0} hr ago + {0} hr ago + + + + min + + in {0} min + in {0} min + + + {0} min ago + {0} min ago + + + + + in {0} min + in {0} min + + + {0} min ago + {0} min ago + + + + sec + + in {0} sec + in {0} sec + + + {0} sec ago + {0} sec ago + + + + + in {0} sec + in {0} sec + + + {0} sec ago + {0} sec ago + + + + + + + BST + + + + + CET + CET + CEST + + + + + EET + EET + EEST + + + + + WET + WET + WEST + + + + + + + + Israeli Shekel (1980–1985) + Israeli shekel (1980–1985) + Israeli shekels (1980–1985) + + + Israeli New Shekel + Israeli new shekel + Israeli new shekels + + + + + + + stone + {0} stone + {0} stone + + + kelvin + {0} kelvin + {0} kelvin + + + + + {0}ph + + + {0}ps + + + stone + + + + + + {0} and {1} + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GD.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GD.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GD.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GD.xml index 9354098821c..17baf1ab943 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GD.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GD.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GG.xml new file mode 100644 index 00000000000..87137b4189e --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GG.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + UK Pound + UK pound + UK pounds + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GH.xml similarity index 86% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GH.xml index f52ae0ce52e..a8b967f0140 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GH.xml @@ -1,13 +1,12 @@ - - - + @@ -45,3 +44,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GI.xml new file mode 100644 index 00000000000..a177eac3c56 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GI.xml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + GB£ + + + £ + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GM.xml similarity index 86% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GM.xml index fddd55d0a1a..a4c8c05649f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GM.xml @@ -1,13 +1,12 @@ - - - + @@ -45,3 +44,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GU.xml similarity index 75% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GU.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GU.xml index 5273a0e52e4..4a6ddf57a90 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GU.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GU.xml @@ -1,13 +1,12 @@ - - - + @@ -21,3 +20,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GY.xml similarity index 66% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GY.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GY.xml index 2e900394df8..fea5a9e5f24 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_GY.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_GY.xml @@ -1,16 +1,24 @@ - - - + + + + + + GYT + + + + @@ -19,3 +27,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_HK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_HK.xml similarity index 97% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_HK.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_HK.xml index ab6a2d85bab..8a1b585e55f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_HK.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_HK.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_IE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_IE.xml similarity index 80% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_IE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_IE.xml index 7640365588f..e1318d92cc4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_IE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_IE.xml @@ -1,13 +1,12 @@ - - - + @@ -68,6 +67,28 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + d/M @@ -99,5 +120,19 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + stone + {0} stone + {0} stone + + + + + stone + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_IL.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_IL.xml new file mode 100644 index 00000000000..8f11e2701f5 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_IL.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + E H:mm + E H:mm:ss + H + H:mm + H:mm:ss + + + + + + + + H:mm:ss zzzz + + + + + H:mm:ss z + + + + + H:mm:ss + + + + + H:mm + + + + + + E H:mm + E H:mm:ss + H + H:mm + H:mm:ss + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_IM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_IM.xml new file mode 100644 index 00000000000..2d061e1a6ab --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_IM.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + UK Pound + UK pound + UK pounds + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_IN.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_IN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_IN.xml index 9cdc906ef1b..ce3e3d95187 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_IN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_IN.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_IO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_IO.xml new file mode 100644 index 00000000000..6a89735f8fe --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_IO.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_JE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_JE.xml new file mode 100644 index 00000000000..b459fe72825 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_JE.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + UK Pound + UK pound + UK pounds + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_JM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_JM.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_JM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_JM.xml index a7c4700576a..216f33b18eb 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_JM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_JM.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_KE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_KE.xml similarity index 57% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_KE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_KE.xml index bf8fa8911cf..9799b90270d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_KE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_KE.xml @@ -1,17 +1,42 @@ - - - + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + @@ -45,3 +70,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_KI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_KI.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_KI.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_KI.xml index 36c02d4bb9e..274bdd34958 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_KI.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_KI.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_KN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_KN.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_KN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_KN.xml index 8e19f579c1d..09ac69ef087 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_KN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_KN.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_KY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_KY.xml similarity index 83% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_KY.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_KY.xml index 8645fb6d503..1ed8c01d1f9 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_KY.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_KY.xml @@ -1,13 +1,12 @@ - - - + @@ -31,3 +30,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_LC.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_LC.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_LC.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_LC.xml index ec6f72541e5..bb5b6f9640e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_LC.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_LC.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_LR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_LR.xml similarity index 86% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_LR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_LR.xml index db79f9543da..7a0ec0e68e0 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_LR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_LR.xml @@ -1,13 +1,12 @@ - - - + @@ -45,3 +44,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_LS.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_LS.xml similarity index 86% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_LS.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_LS.xml index 9dc2bafc650..05a84b83309 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_LS.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_LS.xml @@ -1,13 +1,12 @@ - - - + @@ -45,3 +44,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MG.xml similarity index 57% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MG.xml index 98f09f4b86b..f5e72591f53 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MG.xml @@ -1,17 +1,42 @@ - - - + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + @@ -45,3 +70,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MH.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MH.xml index 4549e4d8520..320e6cd21dd 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MH.xml @@ -1,13 +1,12 @@ - - - + @@ -72,3 +71,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MO.xml similarity index 83% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MO.xml index 765982e9285..e6ac26bdbe3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MO.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MP.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MP.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MP.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MP.xml index 9521283c566..8bdd7c2970f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MP.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MP.xml @@ -1,13 +1,12 @@ - - - + @@ -72,3 +71,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MS.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MS.xml new file mode 100644 index 00000000000..0611197e729 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MS.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + $ + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MT.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MT.xml similarity index 88% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MT.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MT.xml index f1f9ae9840f..688ddca0d76 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MT.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MT.xml @@ -1,13 +1,12 @@ - - - + @@ -80,6 +79,28 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + dd MMM diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MU.xml similarity index 57% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MU.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MU.xml index 23cc19daa88..3002d387dba 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MU.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MU.xml @@ -1,17 +1,42 @@ - - - + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + @@ -45,3 +70,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MW.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MW.xml similarity index 86% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MW.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MW.xml index 6b8fd4bf2eb..8d289d33193 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MW.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MW.xml @@ -1,13 +1,12 @@ - - - + @@ -45,3 +44,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MY.xml similarity index 79% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MY.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MY.xml index fea60767f54..e749f805c27 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_MY.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_MY.xml @@ -1,13 +1,12 @@ - - - + @@ -28,3 +27,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NA.xml similarity index 86% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NA.xml index 84b9f3f81af..4f336bc6b4e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NA.xml @@ -1,13 +1,12 @@ - - - + @@ -45,3 +44,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NF.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NF.xml new file mode 100644 index 00000000000..40c672070dd --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NF.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + $ + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NG.xml similarity index 86% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NG.xml index 68a72327707..03889c6d441 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NG.xml @@ -1,13 +1,12 @@ - - - + @@ -45,3 +44,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_PY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NL.xml similarity index 58% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_PY.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NL.xml index 92f26276da2..0374115999e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_PY.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NL.xml @@ -1,32 +1,26 @@ - - - - - + + + - - , - . - ¤ #,##0.00;¤ -#,##0.00 + + ¤ #,##0.00;(¤ #,##0.00) + - - - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NR.xml new file mode 100644 index 00000000000..b6593afd93b --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NR.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + $ + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NU.xml new file mode 100644 index 00000000000..fa0c1461935 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NU.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + $ + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NZ.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NZ.xml index 90fb6e9dab1..04b108552d2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_NZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_NZ.xml @@ -1,16 +1,20 @@ - - - + + + + Māori + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PG.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PG.xml index 65f23ad709e..a0eaf3951f3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PG.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PH.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PH.xml index ba4f14f82d4..b9e505c705f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PH.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PK.xml similarity index 97% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PK.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PK.xml index f7b838394f2..3d1ea88d93b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PK.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PK.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PN.xml new file mode 100644 index 00000000000..9f2c7f7619e --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PN.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + $ + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PR.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PR.xml index 9e66e0f322a..a693b9b3cd2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PR.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PW.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PW.xml similarity index 81% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PW.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PW.xml index b81aaa76034..f2c5c468d45 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_PW.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_PW.xml @@ -1,13 +1,12 @@ - - - + @@ -24,3 +23,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_RW.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_RW.xml similarity index 57% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_RW.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_RW.xml index c14ea4d79a8..9376d780e11 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_RW.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_RW.xml @@ -1,17 +1,42 @@ - - - + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + @@ -45,3 +70,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SB.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SB.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SB.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SB.xml index 53e1398e35d..786687c37f2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SB.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SB.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SC.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SC.xml new file mode 100644 index 00000000000..df22c97e555 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SC.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + SR + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SD.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SD.xml similarity index 84% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SD.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SD.xml index ab6c6b3cf2a..db0cf3e07cf 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SD.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SD.xml @@ -1,13 +1,12 @@ - - - + @@ -38,3 +37,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SE.xml new file mode 100644 index 00000000000..54ca2f7bd8f --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SE.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + G y-MM-dd + + + + + + y-MM G + y-MM-dd G + E y-MM-dd G + + + + + + + + y-MM-dd + + + + + + y-MM + y-MM-dd + E, y-MM-dd + + + + + + + +   + ×10^ + + + + + #,##0 % + + + + + + kr + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SG.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SG.xml index 27ae9dc70ba..02dc3b04272 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SG.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SH.xml new file mode 100644 index 00000000000..86c1bc80dc2 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SH.xml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + GB£ + + + £ + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_VE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SI.xml similarity index 53% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_VE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SI.xml index 15e859155d4..64ea0e802a0 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_VE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SI.xml @@ -1,32 +1,26 @@ - - - - - + + + - , - . + e - - ¤#,##0.00;¤-#,##0.00 + + #,##0.00 ¤;(#,##0.00 ¤) - - - Bs. - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SL.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SL.xml similarity index 86% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SL.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SL.xml index 4acdad75d71..9a1ada7b175 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SL.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SL.xml @@ -1,13 +1,12 @@ - - - + @@ -45,3 +44,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SS.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SS.xml similarity index 87% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SS.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SS.xml index 280ad3dfea9..943fbca600f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SS.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SS.xml @@ -1,13 +1,12 @@ - - - + @@ -48,3 +47,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SX.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SX.xml new file mode 100644 index 00000000000..52044804b41 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SX.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + NAf. + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SZ.xml similarity index 86% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SZ.xml index 66ef5636311..657ddc56cda 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_SZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_SZ.xml @@ -1,13 +1,12 @@ - - - + @@ -45,3 +44,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TC.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TC.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TC.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TC.xml index faf44fc248c..cd095d05baa 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TC.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TC.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TK.xml new file mode 100644 index 00000000000..1a875582fc8 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TK.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + $ + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TO.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TO.xml index 9b932626e74..752813d9c5b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TO.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TT.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TT.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TT.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TT.xml index 2ba7e8479a9..08be2905e55 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TT.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TT.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TV.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TV.xml new file mode 100644 index 00000000000..3154cdea8f0 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TV.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + $ + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TZ.xml similarity index 57% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TZ.xml index dffba39a3d1..7e5d5960410 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_TZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_TZ.xml @@ -1,17 +1,42 @@ - - - + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + @@ -45,3 +70,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_UG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_UG.xml similarity index 57% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_UG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_UG.xml index b2d29596498..f4142073977 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_UG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_UG.xml @@ -1,17 +1,42 @@ - - - + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + @@ -45,3 +70,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_UM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_UM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_UM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_UM.xml index b3923800eb3..ace22bf4ab4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_UM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_UM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_US.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_US.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_US.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_US.xml index 5c3dc9d66b1..0f21f3beecb 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_US.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_US.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_US_POSIX.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_US_POSIX.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_US_POSIX.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_US_POSIX.xml index f7fa9483049..512f884c5d5 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_US_POSIX.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_US_POSIX.xml @@ -1,6 +1,6 @@ - @@ -14,8 +14,7 @@ For terms of use, see http://www.unicode.org/copyright.html being used, and multi-level UCA collation was expected. --> - - + @@ -55,3 +54,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_VC.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_VC.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_VC.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_VC.xml index ada2dcafb2f..910b1aba819 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_VC.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_VC.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_VG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_VG.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_VG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_VG.xml index 4fe895bc59e..fb5612dc905 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_VG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_VG.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_VI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_VI.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_VI.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_VI.xml index d306421cd11..482bc861da6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_VI.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_VI.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_VU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_VU.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_VU.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_VU.xml index 5182f212057..f8f3f3105c4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_VU.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_VU.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_WS.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_WS.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_WS.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_WS.xml index ced05eeea49..d084012355c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_WS.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_WS.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_ZA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_ZA.xml similarity index 98% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_ZA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_ZA.xml index 3c4486a4e23..267700ae8e6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_ZA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_ZA.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_ZM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_ZM.xml similarity index 86% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_ZM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_ZM.xml index 68b3cddbf10..457402c1c23 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_ZM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_ZM.xml @@ -1,13 +1,12 @@ - - - + @@ -45,3 +44,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_ZW.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_ZW.xml similarity index 98% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_ZW.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_ZW.xml index bfc817dc028..56ae8d06f72 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/en_ZW.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/en_ZW.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/eo.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/eo.xml similarity index 97% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/eo.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/eo.xml index 0493dd7a23c..cacc8b9cb29 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/eo.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/eo.xml @@ -1,13 +1,12 @@ - - - + @@ -209,13 +208,12 @@ For terms of use, see http://www.unicode.org/copyright.html Andoro - Unuiĝintaj Arabaj Emirlandos + Unuiĝintaj Arabaj Emirlandoj Afganujo Antigvo-Barbudo Angvilo Albanujo Armenujo - Nederlandaj Antiloj Angolo Antarkto Argentino @@ -437,10 +435,10 @@ For terms of use, see http://www.unicode.org/copyright.html nekonata regiono - gregoria kalendaro - kalendaro ISO-8601 - eŭropaj ciferoj - norma ordigo + gregoria kalendaro + kalendaro ISO-8601 + norma ordigo + eŭropaj ciferoj metra @@ -721,14 +719,16 @@ For terms of use, see http://www.unicode.org/copyright.html + + atm + ptm + a - t p atm - tagmezo ptm @@ -1278,6 +1278,34 @@ For terms of use, see http://www.unicode.org/copyright.html + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0M + ¤ 0M + ¤ 00M + ¤ 00M + ¤ 000M + ¤ 000M + ¤ 0G + ¤ 0G + ¤ 00G + ¤ 00G + ¤ 000G + ¤ 000G + ¤ 0T + ¤ 0T + ¤ 00T + ¤ 00T + ¤ 000T + ¤ 000T + + {0} {1} {0} {1} @@ -1470,21 +1498,41 @@ For terms of use, see http://www.unicode.org/copyright.html - - akreoj - {0} akreo - {0} akreoj + + kvadrataj kilometroj + {0} kvadrata kilometro + {0} kvadrataj kilometroj hektaroj {0} hektaro {0} hektaroj + + kvadrataj metroj + {0} kvadrata metro + {0} kvadrataj metroj + kvadrataj centimetroj {0} kvadrata centimetro {0} kvadrataj centimetroj + + kvadrataj mejloj + {0} kvadrata mejlo + {0} kvadrataj mejloj + + + akreoj + {0} akreo + {0} akreoj + + + kvadrataj jardoj + {0} kvadrata jardo + {0} kvadrataj jardoj + kvadrataj futoj {0} kvadrata futo @@ -1495,75 +1543,70 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kvadrata colo {0} kvadrataj coloj - - kvadrataj kilometroj - {0} kvadrata kilometro - {0} kvadrataj kilometroj - - - kvadrataj metroj - {0} kvadrata metro - {0} kvadrataj metroj - - - kvadrataj mejloj - {0} kvadrata mejlo - {0} kvadrataj mejloj - - - kvadrataj jardoj - {0} kvadrata jardo - {0} kvadrataj jardoj - - - bitoj - {0} bito - {0} bitoj - - - bajtoj - {0} bajto - {0} bajtoj - - - gigabitoj - {0} gigabito - {0} gigabitoj - - - gigabajtoj - {0} gigabajto - {0} gigabajtoj - - - kilobitoj - {0} kilobito - {0} kilobitoj - - - kilobajtoj - {0} kilobajto - {0} kilobajtoj - - - megabitoj - {0} megabito - {0} megabitoj - - - megabajtoj - {0} megabajto - {0} megabajtoj + + terabajtoj + {0} terabajto + {0} terabajtoj terabitoj {0} terabito {0} terabitoj - - terabajtoj - {0} terabajto - {0} terabajtoj + + gigabajtoj + {0} gigabajto + {0} gigabajtoj + + + gigabitoj + {0} gigabito + {0} gigabitoj + + + megabajtoj + {0} megabajto + {0} megabajtoj + + + megabitoj + {0} megabito + {0} megabitoj + + + kilobajtoj + {0} kilobajto + {0} kilobajtoj + + + kilobitoj + {0} kilobito + {0} kilobitoj + + + bajtoj + {0} bajto + {0} bajtoj + + + bitoj + {0} bito + {0} bitoj + + + jaroj + {0} jaro + {0} jaroj + + + monatoj + {0} monato + {0} monatoj + + + semajnoj + {0} semajno + {0} semajnoj tagoj @@ -1576,137 +1619,122 @@ For terms of use, see http://www.unicode.org/copyright.html {0} horoj {0} por horo - - milisekundoj - {0} milisekundo - {0} milisekundoj - minutoj {0} minuto {0} minutoj - - monatoj - {0} monato - {0} monatoj - sekundoj {0} sekundo {0} sekundoj {0} por sekundo - - semajnoj - {0} semajno - {0} semajnoj - - - jaroj - {0} jaro - {0} jaroj - - - astronomiaj unuoj - {0} astronomia unuo - {0} astronomiaj unuoj - - - centimetroj - {0} centimetro - {0} centimetroj - - - decimetroj - {0} decimetro - {0} decimetroj - - - klaftoj - {0} klafto - {0} klaftoj - - - futoj - {0} futo - {0} futoj - - - stadioj - {0} stadio - {0} stadioj - - - coloj - {0} colo - {0} coloj + + milisekundoj + {0} milisekundo + {0} milisekundoj kilometroj {0} kilometro {0} kilometroj - - lumjaroj - {0} lumjaro - {0} lumjaroj - metroj {0} metro {0} metroj - - mikrometroj - {0} mikrometro - {0} mikrometroj + + decimetroj + {0} decimetro + {0} decimetroj - - mejloj - {0} mejlo - {0} mejloj + + centimetroj + {0} centimetro + {0} centimetroj milimetroj {0} milimetro {0} milimetroj + + mikrometroj + {0} mikrometro + {0} mikrometroj + nanometroj {0} nanometro {0} nanometroj - - marmejloj - {0} marmejlo - {0} marmejloj - - - parsekoj - {0} parseko - {0} parsekoj - pikometroj {0} pikometro {0} pikometroj + + mejloj + {0} mejlo + {0} mejloj + jardoj {0} jardo {0} jardoj - - gramoj - {0} gramo - {0} gramoj + + futoj + {0} futo + {0} futoj + + + coloj + {0} colo + {0} coloj + + + parsekoj + {0} parseko + {0} parsekoj + + + lumjaroj + {0} lumjaro + {0} lumjaroj + + + astronomiaj unuoj + {0} astronomia unuo + {0} astronomiaj unuoj + + + stadioj + {0} stadio + {0} stadioj + + + klaftoj + {0} klafto + {0} klaftoj + + + marmejloj + {0} marmejlo + {0} marmejloj kilogramoj {0} kilogramo {0} kilogramoj + + gramoj + {0} gramo + {0} gramoj + kilometroj en horo {0} kilometro en horo @@ -1724,25 +1752,38 @@ For terms of use, see http://www.unicode.org/copyright.html + + km² + {0} km² + {0} km² + ha {0} ha {0} ha + + + {0} m² + {0} m² + cm² {0} cm² {0} cm² - - km² - {0} km² - {0} km² + + jaro + {0} j. + {0} j. - - - {0} m² - {0} m² + + monato + {0} mon. + {0} mon. + + + semajno tago @@ -1755,100 +1796,87 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h. {0}/h. - - milisekundo - {0} ms. - {0} ms. - minuto {0} m. {0} m. - - monato - {0} mon. - {0} mon. - sekundo {0} s. {0} s. {0}/s. - - semajno - - - jaro - {0} j. - {0} j. - - - au - {0} au - {0} au - - - cm - {0} cm - {0} cm - - - dm - {0} dm - {0} dm + + milisekundo + {0} ms. + {0} ms. km {0} km {0} km - - lj - {0} lj - {0} lj - m {0} m {0} m - - µm - {0} µm - {0} µm + + dm + {0} dm + {0} dm + + + cm + {0} cm + {0} cm mm {0} mm {0} mm + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - pc - {0} pc - {0} pc - pm {0} pm {0} pm - - g - {0} g - {0} g + + pc + {0} pc + {0} pc + + + lj + {0} lj + {0} lj + + + au + {0} au + {0} au kg {0} kg {0} kg + + g + {0} g + {0} g + km/h {0} km/h @@ -1870,25 +1898,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0}° {0}° + + km² + {0}km² + {0}km² + ha {0}ha {0}ha + + + {0}m² + {0}m² + cm² {0}cm² {0}cm² - - km² - {0}km² - {0}km² - - - - {0}m² - {0}m² + + j. + {0}j. + {0}j. t. @@ -1901,11 +1934,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}h. {0}/h. - - ms. - {0}ms. - {0}ms. - m. {0}m. @@ -1917,76 +1945,76 @@ For terms of use, see http://www.unicode.org/copyright.html {0}s. {0}/s. - - j. - {0}j. - {0}j. - - - au - {0}au - {0}au - - - cm - {0}cm - {0}cm - - - dm - {0}dm - {0}dm + + ms. + {0}ms. + {0}ms. km {0}km {0}km - - lj - {0}lj - {0}lj - m {0}m {0}m - - µm - {0}µm - {0}µm + + dm + {0}dm + {0}dm + + + cm + {0}cm + {0}cm mm {0}mm {0}mm + + µm + {0}µm + {0}µm + nm {0}nm {0}nm - - pc - {0}pc - {0}pc - pm {0}pm {0}pm - - g - {0}g - {0}g + + pc + {0}pc + {0}pc + + + lj + {0}lj + {0}lj + + + au + {0}au + {0}au kg {0}kg {0}kg + + g + {0}g + {0}g + km/h {0}km/h diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/eo_001.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/eo_001.xml new file mode 100644 index 00000000000..ce369e7bce5 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/eo_001.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es.xml similarity index 90% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es.xml index 84a5235e3b2..d0d61379f47 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es.xml @@ -1,13 +1,12 @@ - - - + @@ -62,6 +61,7 @@ For terms of use, see http://www.unicode.org/copyright.html bena bafut búlgaro + baluchi occidental bhojpuri bislama bicol @@ -107,7 +107,7 @@ For terms of use, see http://www.unicode.org/copyright.html checo casubio eslavo eclesiástico - chuvash + chuvasio galés danés dakota @@ -289,6 +289,7 @@ For terms of use, see http://www.unicode.org/copyright.html laosiano mongo lozi + lorí septentrional lituano luba-katanga luba-lulua @@ -337,10 +338,11 @@ For terms of use, see http://www.unicode.org/copyright.html birmano myene erzya + mazandaraní nauruano napolitano nama - bokmal noruego + noruego bokmal ndebele septentrional bajo alemán nepalí @@ -351,7 +353,7 @@ For terms of use, see http://www.unicode.org/copyright.html neerlandés flamenco kwasio - nynorsk noruego + noruego nynorsk ngiemboon noruego nogai @@ -420,6 +422,7 @@ For terms of use, see http://www.unicode.org/copyright.html siciliano escocés sindhi + kurdo meridional sami septentrional seneca sena @@ -456,9 +459,9 @@ For terms of use, see http://www.unicode.org/copyright.html susu sumerio sueco - swahili + suajili + suajili del Congo comorense - swahili del Congo siríaco clásico siriaco tamil @@ -514,7 +517,8 @@ For terms of use, see http://www.unicode.org/copyright.html walamo waray washo - wólof + warlpiri + wolof kalmyk xhosa soga @@ -666,7 +670,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mundo África América del Norte - Suramérica + Sudamérica Oceanía África occidental Centroamérica @@ -701,7 +705,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguila Albania Armenia - Antillas Neerlandesas Angola Antártida Argentina @@ -751,7 +754,7 @@ For terms of use, see http://www.unicode.org/copyright.html Cuba Cabo Verde Curazao - Isla de Navidad (Christmas) + Isla de Navidad Chipre República Checa Alemania @@ -804,7 +807,7 @@ For terms of use, see http://www.unicode.org/copyright.html Croacia Haití Hungría - islas Canarias + Canarias Indonesia Irlanda Israel @@ -892,7 +895,7 @@ For terms of use, see http://www.unicode.org/copyright.html Territorios Palestinos Palestina Portugal - Palau + Palaos Paraguay Catar Territorios alejados de Oceanía @@ -1010,6 +1013,9 @@ For terms of use, see http://www.unicode.org/copyright.html Orden numérico Intensidad de orden moneda + ciclo horario (12 o 24 horas) + salto de línea + sistema de medición números Zona horaria Variante local @@ -1017,95 +1023,105 @@ For terms of use, see http://www.unicode.org/copyright.html Uso privado - dígitos indoarábigos - dígitos indoarábigos extendidos - números en armenio - números en minúscula en armenio - dígitos en bengalí - orden del chino tradicional - Big5 - calendario budista - calendario chino - calendario cóptico - calendario dangi - dígitos en devanagari - orden de clasificación del diccionario - orden de clasificación de Unicode predeterminado - números en etíope - calendario etíope - calendario etíope Amete Alem - Números financieros - dígitos de ancho completo - orden del chino simplificado - GB2312 - números en georgiano - calendario gregoriano - números en griego - números en griego en minúscula - dígitos en gujarati - dígitos en gurmuji - números decimales en chino - números en chino simplificado - números financieros en chino simplificado - números en chino tradicional - números financieros en chino tradicional - números en hebreo - calendario hebreo - Ordenar todo - calendario nacional hindú - calendario islámico - calendario civil islámico - calendario ISO-8601 - calendario japonés - números en japonés - números financieros en japonés - dígitos en jemer - dígitos en kannada - dígitos en lao - dígitos occidentales - Ordenar empezando por minúsculas - dígitos en malayalam - dígitos en mongol - dígitos en birmano - Dígitos nativos - Ordenar acentos normalmente - Ordenar siguiendo orden normal de mayúsculas y minúsculas - Ordenar sin distinguir entre mayúsculas y minúsculas - Ordenar caracteres kana por separado - Ordenar sin normalización - Ordenar dígitos individualmente - Ordenar símbolos - dígitos en oriya - calendario persa - orden de listín telefónico - Orden de clasificación fonético - orden pinyin - Ordenar solo letras base - Ordenar acentos/mayúsculas y minúsculas/ancho/kana - orden de clasificación reformado - calendario de la República de China - números romanos - números romanos en minúscula - búsqueda de uso general - Buscar por consonante inicial de hangul - Ordenar acentos - Ordenar ignorando símbolos - orden estándar - orden de los trazos - números en tamil tradicional - dígitos en tamil - dígitos en telugu - Ordenar acentos/mayúsculas y minúsculas/ancho - dígitos en tailandés - dígitos en tibetano - orden tradicional - Números tradicionales - orden de clasificación de trazos radicales - Ordenar empezando por mayúsculas - Dígitos vai - Ordenar acentos con inversión - Ordenar distinguiendo entre mayúsculas y minúsculas - Ordenar diferenciando caracteres kana - Ordenar con normalización Unicode - Ordenar dígitos numéricamente + calendario budista + calendario chino + calendario cóptico + calendario dangi + calendario etíope + calendario etíope Amete Alem + calendario gregoriano + calendario hebreo + calendario nacional hindú + calendario islámico + calendario civil islámico + calendario ISO-8601 + calendario japonés + calendario persa + calendario de la República de China + Ordenar símbolos + Ordenar ignorando símbolos + Ordenar acentos normalmente + Ordenar acentos con inversión + Ordenar empezando por minúsculas + Ordenar siguiendo orden normal de mayúsculas y minúsculas + Ordenar empezando por mayúsculas + Ordenar sin distinguir entre mayúsculas y minúsculas + Ordenar distinguiendo entre mayúsculas y minúsculas + Ordenar caracteres kana por separado + Ordenar diferenciando caracteres kana + orden del chino tradicional - Big5 + orden de clasificación del diccionario + orden de clasificación de Unicode predeterminado + orden del chino simplificado - GB2312 + orden de listín telefónico + Orden de clasificación fonético + orden pinyin + orden de clasificación reformado + búsqueda de uso general + Buscar por consonante inicial de hangul + orden estándar + orden de los trazos + orden tradicional + orden de clasificación de trazos radicales + Ordenar sin normalización + Ordenar con normalización Unicode + Ordenar dígitos individualmente + Ordenar dígitos numéricamente + Ordenar todo + Ordenar solo letras base + Ordenar acentos/mayúsculas y minúsculas/ancho/kana + Ordenar acentos + Ordenar acentos/mayúsculas y minúsculas/ancho + sistema de 12 horas (0–11) + sistema de 12 horas (1–12) + sistema de 24 horas (0–23) + sistema de 24 horas (1–24) + salto de línea flexible + salto de línea normal + salto de línea estricto + sistema métrico + sistema imperial + sistema estadounidense + dígitos indoarábigos + dígitos indoarábigos extendidos + números en armenio + números en minúscula en armenio + dígitos en bengalí + dígitos en devanagari + números en etíope + Números financieros + dígitos de ancho completo + números en georgiano + números en griego + números en griego en minúscula + dígitos en gujarati + dígitos en gurmuji + números decimales en chino + números en chino simplificado + números financieros en chino simplificado + números en chino tradicional + números financieros en chino tradicional + números en hebreo + números en japonés + números financieros en japonés + dígitos en jemer + dígitos en kannada + dígitos en lao + dígitos occidentales + dígitos en malayalam + dígitos en mongol + dígitos en birmano + Dígitos nativos + dígitos en oriya + números romanos + números romanos en minúscula + números en tamil tradicional + dígitos en tamil + dígitos en telugu + dígitos en tailandés + dígitos en tibetano + Números tradicionales + Dígitos vai BGN @@ -1126,7 +1142,7 @@ For terms of use, see http://www.unicode.org/copyright.html Idioma: {0} - Alfabeto: {0} + Sistema de escritura: {0} Región: {0} @@ -1153,8 +1169,8 @@ For terms of use, see http://www.unicode.org/copyright.html - [a á b c d e é f g h i í j k l m n ñ o ó p q r s t u ú ü v w x y z] - [ª à ă â å ä ã ā æ ç è ĕ ê ë ē ì ĭ î ï ī º ò ŏ ô ö ø ō œ ù ŭ û ū ÿ] + [a á b c d e é f g h i í ï j k l m n ñ o ó p q r s t u ú ü v w x y ý z] + [ª à ă â å ä ã ā æ ç è ĕ ê ë ē ì ĭ î ī º ò ŏ ô ö ø ō œ ù ŭ û ū ÿ] [A B C D E F G H I J K L M N Ñ O P Q R S T U V W X Y Z] [\- ‐ – — , ; \: ! ¡ ? ¿ . … ' ‘ ’ " “ ” « » ( ) \[ \] § @ * / \\ \& # † ‡ ′ ″] {0}… @@ -1252,12 +1268,12 @@ For terms of use, see http://www.unicode.org/copyright.html - dd/MM/y G + d/M/y G - dd/MM/yy GGGGG + d/M/yy G @@ -1284,6 +1300,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d y G MMM y G @@ -1366,19 +1383,19 @@ For terms of use, see http://www.unicode.org/copyright.html d/M–d/M - E, d/M–E, d/M - E, d/M–E, d/M + E, d/M – E, d/M + E, d/M – E, d/M MMM–MMM d–d 'de' MMM - d 'de' MMM–d 'de' MMM + d 'de' MMM – d 'de' MMM - E, d 'de' MMM–E, d 'de' MMM - E, d 'de' MMM–E, d 'de' MMM + E, d 'de' MMM – E, d 'de' MMM + E, d 'de' MMM – E, d 'de' MMM y–y G @@ -1393,27 +1410,27 @@ For terms of use, see http://www.unicode.org/copyright.html d/M/y–d/M/y G - E, d/M/y–E, d/M/y G - E, d/M/y–E, d/M/y G - E, d/M/y–E, d/M/y G + E, d/M/y – E, d/M/y G + E, d/M/y – E, d/M/y G + E, d/M/y – E, d/M/y G MMM–MMM 'de' y G - MMM 'de' y–MMM 'de' y G + MMM 'de' y – MMM 'de' y G d–d 'de' MMM 'de' y G - d 'de' MMM–d 'de' MMM y G - d 'de' MMM 'de' y–d 'de' MMM 'de' y G + d 'de' MMM – d 'de' MMM y G + d 'de' MMM 'de' y – d 'de' MMM 'de' y G - E, d 'de' MMM–E, d 'de' MMM 'de' y G - E, d 'de' MMM–E, d 'de' MMM 'de' y G - E, d 'de' MMM 'de' y–E, d 'de' MMM 'de' y G + E, d 'de' MMM – E, d 'de' MMM 'de' y G + E, d 'de' MMM – E, d 'de' MMM 'de' y G + E, d 'de' MMM 'de' y – E, d 'de' MMM 'de' y G MMMM–MMMM 'de' y G - MMMM 'de' y–MMMM 'de' y G + MMMM 'de' y – MMMM 'de' y G @@ -1466,18 +1483,18 @@ For terms of use, see http://www.unicode.org/copyright.html - Ene. - Feb. - Mar. - Abr. - May. - Jun. - Jul. - Ago. - Sept. - Oct. - Nov. - Dic. + ene. + feb. + mar. + abr. + may. + jun. + jul. + ago. + sept. + oct. + nov. + dic. E @@ -1494,18 +1511,18 @@ For terms of use, see http://www.unicode.org/copyright.html D - Enero - Febrero - Marzo - Abril - Mayo - Junio - Julio - Agosto - Septiembre - Octubre - Noviembre - Diciembre + enero + febrero + marzo + abril + mayo + junio + julio + agosto + septiembre + octubre + noviembre + diciembre @@ -1550,13 +1567,13 @@ For terms of use, see http://www.unicode.org/copyright.html - Dom. - Lun. - Mar. - Mié. - Jue. - Vie. - Sáb. + dom. + lun. + mar. + mié. + jue. + vie. + sáb. D @@ -1577,13 +1594,13 @@ For terms of use, see http://www.unicode.org/copyright.html SA - Domingo - Lunes - Martes - Miércoles - Jueves - Viernes - Sábado + domingo + lunes + martes + miércoles + jueves + viernes + sábado @@ -1595,6 +1612,12 @@ For terms of use, see http://www.unicode.org/copyright.html T3 T4 + + 1 + 2 + 3 + 4 + 1.er trimestre 2.º trimestre @@ -1603,25 +1626,83 @@ For terms of use, see http://www.unicode.org/copyright.html + + T1 + T2 + T3 + T4 + 1 2 3 4 + + 1.er trimestre + 2.º trimestre + 3.er trimestre + 4.º trimestre + + + a. m. + del mediodía + p. m. + de la madrugada + de la mañana + de la tarde + de la noche + - a.m. - m. - p.m. + a. m. + del mediodía + p. m. + de la madrugada + de la mañana + de la tarde + de la noche + + + a. m. + del mediodía + p. m. + de la madrugada + de la mañana + de la tarde + de la noche + + + + + a. m. + mediodía + p. m. + madrugada + mañana + tarde + noche + + + a. m. + mediodía + p. m. + madrugada + mañana + tarde + noche a. m. mediodía p. m. + madrugada + mañana + tarde + noche @@ -1765,7 +1846,7 @@ For terms of use, see http://www.unicode.org/copyright.html d–d - h a–h a + h a – h a h–h a @@ -1781,7 +1862,7 @@ For terms of use, see http://www.unicode.org/copyright.html H:mm–H:mm - h:mm a–h:mm a v + h:mm a – h:mm a v h:mm–h:mm a v h:mm–h:mm a v @@ -1790,7 +1871,7 @@ For terms of use, see http://www.unicode.org/copyright.html H:mm–H:mm v - h a–h a v + h a – h a v h–h a v @@ -1804,19 +1885,19 @@ For terms of use, see http://www.unicode.org/copyright.html d/M–d/M - E, d/M–E, d/M - E, d/M–E, d/M + E, d/M – E, d/M + E, d/M – E, d/M MMM–MMM d–d MMM - d MMM–d MMM + d MMM – d MMM - E, d MMM–E, d MMM - E, d MMM–E, d MMM + E, d MMM – E, d MMM + E, d MMM – E, d MMM d–d 'de' MMMM @@ -1839,27 +1920,27 @@ For terms of use, see http://www.unicode.org/copyright.html d/M/y–d/M/y - E, d/M/y–E, d/M/y - E, d/M/y–E, d/M/y - E, d/M/y–E, d/M/y + E, d/M/y – E, d/M/y + E, d/M/y – E, d/M/y + E, d/M/y – E, d/M/y MMM–MMM y - MMM y–MMM y + MMM y – MMM y d–d MMM y - d MMM–d MMM y - d MMM y–d MMM y + d MMM – d MMM y + d MMM y – d MMM y - E, d MMM–E, d MMM y - E, d MMM–E, d MMM y - E, d MMM y–E, d MMM y + E, d MMM – E, d MMM y + E, d MMM – E, d MMM y + E, d MMM y – E, d MMM y MMMM–MMMM 'de' y - MMMM 'de' y–MMMM 'de' y + MMMM 'de' y – MMMM 'de' y d–d 'de' MMMM 'de' y @@ -1925,10 +2006,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Era + era - Año + año el año pasado este año el próximo año @@ -1943,6 +2024,9 @@ For terms of use, see http://www.unicode.org/copyright.html a + el año pasado + este año + el próximo año dentro de {0} a dentro de {0} a @@ -1954,6 +2038,9 @@ For terms of use, see http://www.unicode.org/copyright.html a + el año pasado + este año + el próximo año dentro de {0} a dentro de {0} a @@ -1964,7 +2051,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Trimestre + trimestre dentro de {0} trimestre dentro de {0} trimestres @@ -1997,7 +2084,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Mes + mes el mes pasado este mes el próximo mes @@ -2012,6 +2099,9 @@ For terms of use, see http://www.unicode.org/copyright.html m + el mes pasado + este mes + el próximo mes dentro de {0} m dentro de {0} m @@ -2023,6 +2113,9 @@ For terms of use, see http://www.unicode.org/copyright.html m + el mes pasado + este mes + el próximo mes dentro de {0} m dentro de {0} m @@ -2033,7 +2126,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Semana + semana la semana pasada esta semana la próxima semana @@ -2069,7 +2162,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Día + día anteayer ayer hoy @@ -2086,6 +2179,11 @@ For terms of use, see http://www.unicode.org/copyright.html d + anteayer + ayer + hoy + mañana + pasado mañana dentro de {0} día dentro de {0} días @@ -2097,6 +2195,11 @@ For terms of use, see http://www.unicode.org/copyright.html d + anteayer + ayer + hoy + mañana + pasado mañana dentro de {0} día dentro de {0} días @@ -2107,7 +2210,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Día de la semana + día de la semana el domingo pasado @@ -2218,7 +2321,7 @@ For terms of use, see http://www.unicode.org/copyright.html a. m./p. m. - Hora + hora dentro de {0} hora dentro de {0} horas @@ -2251,7 +2354,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Minuto + minuto dentro de {0} minuto dentro de {0} minutos @@ -2284,7 +2387,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Segundo + segundo ahora dentro de {0} segundo @@ -2318,7 +2421,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Zona horaria + zona horaria @@ -2330,7 +2433,7 @@ For terms of use, see http://www.unicode.org/copyright.html horario estándar de {0} {1} ({0}) - Ciudad desconocida + ciudad desconocida Andorra @@ -3196,6 +3299,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -3280,6 +3386,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Chitá + Yakutsk @@ -3298,6 +3407,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadán + + Srednekolimsk + Kamchatka @@ -3662,9 +3774,9 @@ For terms of use, see http://www.unicode.org/copyright.html - hora de Apia - hora estándar de Apia - horario de verano de Apia + hora de Apia + hora estándar de Apia + horario de verano de Apia @@ -3829,12 +3941,12 @@ For terms of use, see http://www.unicode.org/copyright.html - hora de la isla Christmas + hora de la Isla de Navidad - hora de las islas Cocos + hora de las Islas Cocos @@ -3846,9 +3958,9 @@ For terms of use, see http://www.unicode.org/copyright.html - hora de las islas Cook - hora estándar de las islas Cook - hora de verano media de las islas Cook + hora de las Islas Cook + hora estándar de las Islas Cook + hora de verano media de las Islas Cook @@ -4547,7 +4659,7 @@ For terms of use, see http://www.unicode.org/copyright.html latn - 1 + 2 , . @@ -4648,6 +4760,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 K ¤ + 0 K ¤ + 00 K ¤ + 00 K ¤ + 000 K ¤ + 000 K ¤ + 0 M ¤ + 0 M ¤ + 00 M ¤ + 00 M ¤ + 000 M ¤ + 000 M ¤ + 0000 M ¤ + 0000 M ¤ + 00 MRD ¤ + 00 MRD ¤ + 000 MRD ¤ + 000 MRD ¤ + 0 B ¤ + 0 B ¤ + 00 B ¤ + 00 B ¤ + 000 B ¤ + 000 B ¤ + + {0} {1} {0} {1} @@ -4679,7 +4819,7 @@ For terms of use, see http://www.unicode.org/copyright.html ALL - dram armenio + dram dram drams AMD @@ -4688,13 +4828,14 @@ For terms of use, see http://www.unicode.org/copyright.html florín de las Antillas Neerlandesas florín de las Antillas Neerlandesas florines de las Antillas Neerlandesas - ANG + ANG kuanza kuanza kuanzas AOA + Kz kwanza angoleño (1977–1990) @@ -4759,6 +4900,7 @@ For terms of use, see http://www.unicode.org/copyright.html marco convertible de Bosnia-Herzegovina marcos convertibles de Bosnia-Herzegovina BAM + KM dólar barbadense @@ -4831,6 +4973,7 @@ For terms of use, see http://www.unicode.org/copyright.html boliviano bolivianos BOB + Bs peso boliviano @@ -4897,6 +5040,7 @@ For terms of use, see http://www.unicode.org/copyright.html pula pulas BWP + P nuevo rublo bielorruso (1994–1999) @@ -4999,6 +5143,7 @@ For terms of use, see http://www.unicode.org/copyright.html peso cubano convertible pesos cubanos convertibles CUC + $ peso cubano @@ -5023,6 +5168,7 @@ For terms of use, see http://www.unicode.org/copyright.html corona checa coronas checas CZK + ostmark de Alemania del Este @@ -5045,6 +5191,7 @@ For terms of use, see http://www.unicode.org/copyright.html corona danesa coronas danesas DKK + kr peso dominicano @@ -5079,9 +5226,10 @@ For terms of use, see http://www.unicode.org/copyright.html libra egipcia libras egipcias EGP + EGP - nakfa eritreo + nakfa nakfa nakfas ERN @@ -5112,6 +5260,8 @@ For terms of use, see http://www.unicode.org/copyright.html euro euro euros + + marco finlandés @@ -5130,6 +5280,7 @@ For terms of use, see http://www.unicode.org/copyright.html libra malvinense libras malvinenses FKP + £ franco francés @@ -5151,6 +5302,7 @@ For terms of use, see http://www.unicode.org/copyright.html lari laris GEL + cedi ghanés (1979–2007) @@ -5179,6 +5331,7 @@ For terms of use, see http://www.unicode.org/copyright.html franco guineano francos guineanos GNF + FG syli guineano @@ -5198,6 +5351,7 @@ For terms of use, see http://www.unicode.org/copyright.html quetzal guatemalteco quetzales guatemaltecos GTQ + Q escudo de Guinea Portuguesa @@ -5224,6 +5378,7 @@ For terms of use, see http://www.unicode.org/copyright.html lempira hondureño lempiras hondureños HNL + L dinar croata @@ -5235,11 +5390,12 @@ For terms of use, see http://www.unicode.org/copyright.html kuna kunas HRK + kn gourde haitiano - gourde haitiano - gourdes haitianos + gourde haitiano + gourdes haitianos HTG @@ -5247,12 +5403,14 @@ For terms of use, see http://www.unicode.org/copyright.html forinto húngaro forintos húngaros HUF + Ft rupia indonesia rupia indonesia rupias indonesias IDR + Rp libra irlandesa @@ -5295,6 +5453,7 @@ For terms of use, see http://www.unicode.org/copyright.html corona islandesa coronas islandesas ISK + kr lira italiana @@ -5345,12 +5504,14 @@ For terms of use, see http://www.unicode.org/copyright.html franco comorense francos comorenses KMF + CF won norcoreano won norcoreano wons norcoreanos KPW + won surcoreano @@ -5391,12 +5552,14 @@ For terms of use, see http://www.unicode.org/copyright.html libra libanesa libras libanesas LBP + rupia esrilanquesa rupia esrilanquesa rupias esrilanquesas LKR + Rs dólar liberiano @@ -5473,6 +5636,7 @@ For terms of use, see http://www.unicode.org/copyright.html ariari ariaris MGA + Ar franco malgache @@ -5491,6 +5655,7 @@ For terms of use, see http://www.unicode.org/copyright.html kiat kiats MMK + K tugrik @@ -5501,8 +5666,8 @@ For terms of use, see http://www.unicode.org/copyright.html pataca de Macao - pataca de Macao - patacas de Macao + pataca de Macao + patacas de Macao MOP @@ -5526,6 +5691,7 @@ For terms of use, see http://www.unicode.org/copyright.html rupia mauriciana rupias mauricianas MUR + Rs rufiya @@ -5561,6 +5727,7 @@ For terms of use, see http://www.unicode.org/copyright.html ringit ringits MYR + RM escudo mozambiqueño @@ -5600,6 +5767,7 @@ For terms of use, see http://www.unicode.org/copyright.html córdoba nicaragüense córdobas nicaragüenses NIO + C$ florín neerlandés @@ -5611,12 +5779,14 @@ For terms of use, see http://www.unicode.org/copyright.html corona noruega coronas noruegas NOK + kr rupia nepalí rupia nepalí rupias nepalíes NPR + Rs dólar neozelandés @@ -5671,12 +5841,14 @@ For terms of use, see http://www.unicode.org/copyright.html rupia pakistaní rupias pakistaníes PKR + Rs esloti esloti eslotis PLN + zloty polaco (1950–1995) @@ -5726,6 +5898,7 @@ For terms of use, see http://www.unicode.org/copyright.html rublo ruso rublos rusos RUB + rublo ruso (1991–1998) @@ -5737,6 +5910,7 @@ For terms of use, see http://www.unicode.org/copyright.html franco ruandés francos ruandeses RWF + RF rial saudí @@ -5778,6 +5952,7 @@ For terms of use, see http://www.unicode.org/copyright.html corona sueca coronas suecas SEK + kr dólar singapurense @@ -5791,6 +5966,7 @@ For terms of use, see http://www.unicode.org/copyright.html libra de Santa Elena libras de Santa Elena SHP + £ tólar esloveno @@ -5836,6 +6012,7 @@ For terms of use, see http://www.unicode.org/copyright.html dobra dobras STD + Db rublo soviético @@ -5852,6 +6029,7 @@ For terms of use, see http://www.unicode.org/copyright.html libra siria libras sirias SYP + £ lilangeni @@ -5864,14 +6042,15 @@ For terms of use, see http://www.unicode.org/copyright.html bat bats ฿ + ฿ rublo tayiko somoni tayiko - somoni tayiko - somonis tayikos + somoni tayiko + somonis tayikos TJS @@ -5896,6 +6075,7 @@ For terms of use, see http://www.unicode.org/copyright.html paanga paangas TOP + T$ escudo timorense @@ -5911,11 +6091,12 @@ For terms of use, see http://www.unicode.org/copyright.html liras turcas TRY + TL dólar de Trinidad y Tobago - dólar de Trinidad y Tobago - dólares de Trinidad y Tobago + dólar de Trinidad y Tobago + dólares de Trinidad y Tobago TTD $ @@ -6003,6 +6184,7 @@ For terms of use, see http://www.unicode.org/copyright.html bolívar venezolano bolívares venezolanos VEF + Bs dong @@ -6064,6 +6246,7 @@ For terms of use, see http://www.unicode.org/copyright.html dólar del Caribe Oriental dólares del Caribe Oriental XCD + $ derechos especiales de giro @@ -6113,7 +6296,7 @@ For terms of use, see http://www.unicode.org/copyright.html moneda desconocida - (unidad de moneda desconocida) + (moneda desconocida) (moneda desconocida) @@ -6144,6 +6327,7 @@ For terms of use, see http://www.unicode.org/copyright.html rand rands ZAR + R kwacha zambiano (1968–2012) @@ -6154,6 +6338,8 @@ For terms of use, see http://www.unicode.org/copyright.html kuacha zambiano kuacha zambiano kuachas zambianos + ZMW + ZK nuevo zaire zaireño @@ -6188,6 +6374,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metro por segundo al cuadrado {0} metros por segundo al cuadrado + + revoluciones + {0} revolución + {0} revoluciones + + + radianes + {0} radián + {0} radianes + + + grados + {0} grado + {0} grados + minutos de arco {0} minuto de arco @@ -6198,30 +6399,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} segundo de arco {0} segundos de arco - - grados - {0} grado - {0} grados - - - radianes - {0} radián - {0} radianes - - - acres - {0} acre - {0} acres + + kilómetros cuadrados + {0} kilómetro cuadrado + {0} kilómetros cuadrados hectáreas {0} hectárea {0} hectáreas + + metros cuadrados + {0} metro cuadrado + {0} metros cuadrados + {0} por metro cuadrado + centímetros cuadrados {0} centímetro cuadrado {0} centímetros cuadrados + {0} por centímetro cuadrado + + + millas cuadradas + {0} milla cuadrada + {0} millas cuadradas + + + acres + {0} acre + {0} acres + + + yardas cuadradas + {0} yarda cuadrada + {0} yardas cuadradas pies cuadrados @@ -6232,91 +6445,106 @@ For terms of use, see http://www.unicode.org/copyright.html pulgadas cuadradas {0} pulgada cuadrada {0} pulgadas cuadradas + {0} por pulgada cuadrada - - kilómetros cuadrados - {0} kilómetro cuadrado - {0} kilómetros cuadrados - - - metros cuadrados - {0} metro cuadrado - {0} metros cuadrados - - - millas cuadradas - {0} milla cuadrada - {0} millas cuadradas - - - yardas cuadradas - {0} yarda cuadrada - {0} yardas cuadradas + + quilates + {0} quilate + {0} quilates litros por kilómetro {0} litro por kilómetro {0} litros por kilómetro + + litros por 100 kilómetros + {0} litro por 100 kilómetros + {0} litros por 100 kilómetros + millas por galón {0} milla por galón {0} millas por galón - - bits - {0} bit - {0} bits - - - bytes - {0} byte - {0} bytes - - - gigabits - {0} gigabit - {0} gigabits - - - gigabytes - {0} gigabyte - {0} gigabytes - - - kilobits - {0} kilobit - {0} kilobits - - - kilobytes - {0} kilobyte - {0} kilobytes - - - megabits - {0} megabit - {0} megabits - - - megabytes - {0} megabyte - {0} megabytes - - - terabits - {0} terabit - {0} terabits - terabytes {0} terabyte {0} terabytes + + terabits + {0} terabit + {0} terabits + + + gigabytes + {0} gigabyte + {0} gigabytes + + + gigabits + {0} gigabit + {0} gigabits + + + megabytes + {0} megabyte + {0} megabytes + + + megabits + {0} megabit + {0} megabits + + + kilobytes + {0} kilobyte + {0} kilobytes + + + kilobits + {0} kilobit + {0} kilobits + + + bytes + {0} byte + {0} bytes + + + bits + {0} bit + {0} bits + + + siglos + {0} siglo + {0} siglos + + + años + {0} año + {0} años + {0} por año + + + meses + {0} mes + {0} meses + {0} por mes + + + semanas + {0} semana + {0} semanas + {0} por semana + días {0} día {0} días + {0} por día horas @@ -6324,30 +6552,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} horas {0} por hora - - microsegundos - {0} microsegundo - {0} microsegundos - - - milisegundos - {0} milisegundo - {0} milisegundos - minutos {0} minuto {0} minutos - - - meses - {0} mes - {0} meses - - - nanosegundos - {0} nanosegundo - {0} nanosegundos + {0} por minuto segundos @@ -6355,15 +6564,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} segundos {0} por segundo - - semanas - {0} semana - {0} semanas + + milisegundos + {0} milisegundo + {0} milisegundos - - años - {0} año - {0} años + + microsegundos + {0} microsegundo + {0} microsegundos + + + nanosegundos + {0} nanosegundo + {0} nanosegundos amperios @@ -6385,6 +6599,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} voltio {0} voltios + + kilocalorías + {0} kilocaloría + {0} kilocalorías + calorías {0} caloría @@ -6395,226 +6614,225 @@ For terms of use, see http://www.unicode.org/copyright.html {0} caloría {0} calorías - - julios - {0} julio - {0} julios - - - kilocalorías - {0} kilocaloría - {0} kilocalorías - kilojulios {0} kilojulio {0} kilojulios + + julios + {0} julio + {0} julios + - kilovatios hora - {0} kilovatio hora - {0} kilovatios hora + kilovatios-hora + {0} kilovatio-hora + {0} kilovatios-hora gigahercios {0} gigahercio {0} gigahercios - - hercios - {0} hercio - {0} hercios + + megahercios + {0} megahercio + {0} megahercios kilohercios {0} kilohercio {0} kilohercios - - megahercios - {0} megahercio - {0} megahercios + + hercios + {0} hercio + {0} hercios - - unidades astronómicas - {0} unidad astronómica - {0} unidades astronómicas + + kilómetros + {0} kilómetro + {0} kilómetros + {0} por kilómetro - - centímetros - {0} centímetro - {0} centímetros + + metros + {0} metro + {0} metros + {0} por metro decímetros {0} decímetro {0} decímetros - - pies - {0} pie - {0} pies - - - pulgadas - {0} pulgada - {0} pulgadas - - - kilómetros - {0} kilómetro - {0} kilómetros - - - años luz - {0} año luz - {0} años luz - - - metros - {0} metro - {0} metros - - - micrómetros - {0} micrómetro - {0} micrómetros - - - millas - {0} milla - {0} millas + + centímetros + {0} centímetro + {0} centímetros + {0} por centímetro milímetros {0} milímetro {0} milímetros + + micrómetros + {0} micrómetro + {0} micrómetros + nanómetros {0} nanómetro {0} nanómetros - - millas náuticas - {0} milla náutica - {0} millas náuticas - - - parsecs - {0} parsec - {0} parsecs - picómetros {0} picómetro {0} picómetros + + millas + {0} milla + {0} millas + yardas {0} yarda {0} yardas + + pies + {0} pie + {0} pies + {0} por pie + + + pulgadas + {0} pulgada + {0} pulgadas + {0} por pulgada + + + parsecs + {0} parsec + {0} parsecs + + + años luz + {0} año luz + {0} años luz + + + unidades astronómicas + {0} unidad astronómica + {0} unidades astronómicas + + + millas náuticas + {0} milla náutica + {0} millas náuticas + + + millas escandinavas + {0} milla escandinava + {0} millas escandinavas + luxes {0} lux {0} luxes - - quilates - {0} quilate - {0} quilates - - - gramos - {0} gramo - {0} gramos - - - kilogramos - {0} kilogramo - {0} kilogramos - toneladas métricas {0} tonelada métrica {0} toneladas métricas - - microgramos - {0} microgramo - {0} microgramos + + kilogramos + {0} kilogramo + {0} kilogramos + {0} por kilogramo + + + gramos + {0} gramo + {0} gramos + {0} por gramo miligramos {0} miligramo {0} miligramos - - onzas - {0} onza - {0} onzas - - - onzas troy - {0} onza troy - {0} onzas troy - - - libras - {0} libra - {0} libras + + microgramos + {0} microgramo + {0} microgramos toneladas {0} tonelada {0} toneladas + + libras + {0} libra + {0} libras + {0} por libra + + + onzas + {0} onza + {0} onzas + {0} por onza + + + onzas troy + {0} onza troy + {0} onzas troy + + + quilates + {0} quilate + {0} quilates + gigavatios {0} gigavatio {0} gigavatios - - caballos de vapor - {0} caballo de vapor - {0} caballos de vapor - - - kilovatios - {0} kilovatio - {0} kilovatios - megavatios {0} megavatio {0} megavatios - - milivatios - {0} milivatio - {0} milivatios + + kilovatios + {0} kilovatio + {0} kilovatios vatios {0} vatio {0} vatios + + milivatios + {0} milivatio + {0} milivatios + + + caballos de vapor + {0} caballo de vapor + {0} caballos de vapor + hectopascales {0} hectopascal {0} hectopascales - - pulgadas de mercurio - {0} pulgada de mercurio - {0} pulgadas de mercurio - - - milibares - {0} milibar - {0} milibares - milímetros de mercurio {0} milímetro de mercurio @@ -6625,10 +6843,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} libra por pulgada cuadrada {0} libras por pulgada cuadrada - - quilates - {0} quilate - {0} quilates + + pulgadas de mercurio + {0} pulgada de mercurio + {0} pulgadas de mercurio + + + milibares + {0} milibar + {0} milibares kilómetros por hora @@ -6645,6 +6868,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milla por hora {0} millas por hora + + nudos + {0} nudo + {0} nudos + + + ° + {0}° + {0}° + grados Celsius {0} grado Celsius @@ -6660,31 +6893,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvin {0} kelvin - - acres pies - {0} acre pie - {0} acres pies - - - centilitros - {0} centilitro - {0} centilitros - - - centímetros cúbicos - {0} centímetro cúbico - {0} centímetros cúbicos - - - pies cúbicos - {0} pie cúbico - {0} pies cúbicos - - - pulgadas cúbicas - {0} pulgada cúbica - {0} pulgadas cúbicas - kilómetros cúbicos {0} kilómetro cúbico @@ -6694,6 +6902,13 @@ For terms of use, see http://www.unicode.org/copyright.html metros cúbicos {0} metro cúbico {0} metros cúbicos + {0} por metro cúbico + + + centímetros cúbicos + {0} centímetro cúbico + {0} centímetros cúbicos + {0} por centímetro cúbico millas cúbicas @@ -6705,25 +6920,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yarda cúbica {0} yardas cúbicas - - tazas - {0} taza - {0} tazas + + pies cúbicos + {0} pie cúbico + {0} pies cúbicos - - decilitros - {0} decilitro - {0} decilitros + + pulgadas cúbicas + {0} pulgada cúbica + {0} pulgadas cúbicas - - onzas fluidas - {0} onza fluida - {0} onzas fluidas - - - galones - {0} galón - {0} galones + + megalitros + {0} megalitro + {0} megalitros hectolitros @@ -6734,27 +6944,64 @@ For terms of use, see http://www.unicode.org/copyright.html litros {0} litro {0} litros + {0} por litro - - megalitros - {0} megalitro - {0} megalitros + + decilitros + {0} decilitro + {0} decilitros + + + centilitros + {0} centilitro + {0} centilitros mililitros {0} mililitro {0} mililitros - - pintas - {0} pinta - {0} pintas + + pintas métricas + {0} pinta métrica + {0} pintas métricas + + + tazas métricas + {0} taza métrica + {0} tazas métricas + + + acres-pies + {0} acre-pie + {0} acres-pies + + + galones + {0} galón + {0} galones + {0} por galón cuartos {0} cuarto {0} cuartos + + pintas + {0} pinta + {0} pintas + + + tazas + {0} taza + {0} tazas + + + onzas fluidas + {0} onza fluida + {0} onzas fluidas + cucharadas {0} cucharada @@ -6765,6 +7012,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cucharadita {0} cucharaditas + + {0} E + {0} N + {0} S + {0} O + @@ -6780,6 +7033,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rev + {0} rev + {0} rev + + + rad + {0} rad + {0} rad + + + grad. + {0}° + {0}° + arcmin {0} arcmin @@ -6790,30 +7058,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} arcsec {0} arcsec - - grad. - {0}° - {0}° - - - rad - {0} rad - {0} rad - - - ac - {0} ac - {0} ac + + km² + {0} km² + {0} km² ha {0} ha {0} ha + + + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + + + ac + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² ft² @@ -6824,91 +7104,106 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² + + c + {0} c + {0} c l/km {0} l/km {0} l/km + + l/100 km + {0} l/100 km + {0} l/100 km + mi/gal {0} mi/gal {0} mi/gal - - b - {0} b - {0} b - - - B - {0} B - {0} B - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + B + {0} B + {0} B + + + b + {0} b + {0} b + + + sig. + {0} sig. + {0} sig. + + + a + {0} a + {0} a + {0}/a + + + m. + {0} m. + {0} m. + {0}/m. + + + sem. + {0} sem. + {0} sem. + {0}/sem. + d {0} d {0} d + {0}/d horas @@ -6916,30 +7211,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0}/h - - μs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - min {0} min {0} min - - - m - {0} m - {0} m - - - ns - {0} ns - {0} ns + {0}/min s @@ -6947,15 +7223,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} s {0}/s - - sem - {0} sem - {0} sem + + ms + {0} ms + {0} ms - - a - {0} a - {0} a + + μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns A @@ -6977,6 +7258,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -6987,21 +7273,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cal {0} cal - - J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + J + {0} J + {0} J + kWh {0} kWh @@ -7012,201 +7293,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + m + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - ft - {0} ft - {0} ft - - - in - {0} in - {0} in - - - km - {0} km - {0} km - - - a·l - {0} a. l. - {0} a. l. - - - m - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - M - {0} M - {0} M - - - parsecs - {0} pc - {0} pc - pm {0} pm {0} pm + + mi + {0} mi + {0} mi + - yardas + yd {0} yd {0} yd + + ft + {0} ft + {0} ft + {0}/ft + + + in + {0} in + {0} in + {0}/in + + + pc + {0} pc + {0} pc + + + a. l. + {0} a. l. + {0} a. l. + + + au + {0} au + {0} au + + + M + {0} M + {0} M + + + mi esc. + {0} mi esc. + {0} mi esc. + lx {0} lx {0} lx - - c - {0} c - {0} c - - - g - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + g + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - oz - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb + + µg + {0} µg + {0} µg ton {0} ton {0} ton + + lb + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0}/oz + + + oz t + {0} oz t + {0} oz t + + + c + {0} c + {0} c + GW {0} GW {0} GW - - CV - {0} CV - {0} CV - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW vatios {0} W {0} W + + mW + {0} mW + {0} mW + + + CV + {0} CV + {0} CV + hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - mmHg {0} mmHg @@ -7217,10 +7502,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - c - {0} c - {0} c + + inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar km/h @@ -7237,6 +7527,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + °C {0} °C @@ -7252,31 +7552,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - - - cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -7286,6 +7561,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -7297,25 +7579,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - tazas - {0} tza. - {0} tza. + + ft³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl + + in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml hl @@ -7326,46 +7603,93 @@ For terms of use, see http://www.unicode.org/copyright.html l {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl ml {0} ml {0} ml - - pintas - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + + + mc + {0} mc + {0} mc + + + ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0}/gal qt {0} qt {0} qt + + pt + {0} pt + {0} pt + + + tazas + {0} tza. + {0} tza. + + + fl oz + {0} fl oz + {0} fl oz + - cdas. - {0} cd. - {0} cdas. + cda + {0} cda + {0} cda - cdtas. - {0} cdta. - {0} cdtas. + cdta + {0} cdta + {0} cdta + + {0} E + {0} N + {0} S + {0} O + - {0}/{1} + {0}/{1} {0}G {0}G + + {0}° + {0}° + {0}' {0}' @@ -7374,26 +7698,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}" {0}" - - {0}° - {0}° - - - {0}ac - {0}ac + + {0}km² + {0}km² {0}ha {0}ha - - {0}ft² - {0}ft² - - - {0}km² - {0}km² - {0}m² {0}m² @@ -7402,6 +7714,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mi² {0}mi² + + {0}ac + {0}ac + + + {0}ft² + {0}ft² + + + l/100km + {0}l/100km + {0}l/100km + + + a + {0}a + {0}a + + + m + {0}m + {0}m + + + sem + {0}sem + {0}sem + d {0}d @@ -7412,66 +7752,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0}h {0}h - - ms - {0}ms - {0}ms - min {0}min {0}min - - m - {0}m - {0}m - s {0}s {0}s - - sem - {0}sem - {0}sem - - - a - {0}a - {0}a - - - cm - {0}cm - {0}cm - - - {0}ft - {0}ft - - - {0}in - {0}in + + ms + {0}ms + {0}ms km {0}km {0}km - - {0}a.l. - {0}a.l. - m {0}m {0}m - - {0}mi - {0}mi + + cm + {0}cm + {0}cm mm @@ -7482,31 +7791,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0}pm {0}pm + + {0}mi + {0}mi + {0}yd {0}yd - - g - {0}g - {0}g + + {0}ft + {0}ft + + + {0}in + {0}in + + + {0}a.l. + {0}a.l. kg {0}kg {0}kg - - {0}oz - {0}oz + + g + {0}g + {0}g {0}lb {0}lb - - {0}hp - {0}hp + + {0}oz + {0}oz {0}kW @@ -7516,6 +7837,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}W {0}W + + {0}hp + {0}hp + {0}hPa {0}hPa @@ -7563,6 +7888,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}l {0}l + + {0}E + {0}N + {0}S + {0}O + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_419.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_419.xml new file mode 100644 index 00000000000..dd8252a7698 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_419.xml @@ -0,0 +1,597 @@ + + + + + + + + + + + + inglés (R. U.) + vasco + luo + pashtún + swahili + swahili del Congo + uighur + vai + + + Asia sudoriental + R. U. + islas Canarias + Islas Ultramarinas + + + sm + + + números en kannada + números en lao + + + Alfabeto: {0} + + + + + + + + + dd/MM/yy GGGGG + + + + + + MMM 'de' y G + d 'de' MMM 'de' y G + d 'de' MMM + E, d 'de' MMM + E d/M/y G + + + + E, d/M–E, d/M + E, d/M–E, d/M + + + d 'de' MMM–d 'de' MMM + + + E, d 'de' MMM–E, d 'de' MMM + E, d 'de' MMM–E, d 'de' MMM + + + M/y – M/y GGGGG + M/y – M/y GGGGG + + + d/M/y – d/M/y GGGGG + d/M/y – d/M/y GGGGG + d/M/y – d/M/y GGGGG + + + E, d/M/y – E, d/M/y GGGGG + E, d/M/y – E, d/M/y GGGGG + E, d/M/y – E, d/M/y GGGGG + + + + + + + + + ene. + feb. + mar. + abr. + may. + jun. + jul. + ago. + sep. + oct. + nov. + dic. + + + e + f + m + a + m + j + j + a + s + o + n + d + + + + + ene. + feb. + mar. + abr. + may. + jun. + jul. + ago. + sep. + oct. + nov. + dic. + + + e + f + m + a + m + j + j + a + s + o + n + d + + + + + + + d + l + m + m + j + v + s + + + + + D + L + M + M + J + V + S + + + + + + + a.m. + p.m. + + + m. + madrugada + mañana + tarde + noche + + + a.m. + p.m. + + + + + a.m. + p.m. + + + a.m. + p.m. + + + a.m. + p.m. + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + E, HH:mm + E, HH:mm:ss + d 'de' MMM 'de' y G + HH + HH:mm + HH:mm:ss + dd-MMM + E d/M/y + MMMM 'de' y + d 'de' MMMM 'de' y + E, d 'de' MMM 'de' y + QQQ 'de' y + + + + h a–h a + + + HH – HH + + + HH:mm – HH:mm + HH:mm – HH:mm + + + h:mm a–h:mm a v + + + HH:mm – HH:mm v + HH:mm – HH:mm v + + + h a–h a v + + + HH – HH v + + + E, d/M–E, d/M + E, d/M–E, d/M + + + d – d 'de' MMM + d 'de' MMM – d 'de' MMM + + + E, d 'de' MMM – E, d 'de' MMM + E, d 'de' MMM – E, d 'de' MMM + + + E, d/M/y–E, d/M/y + E, d/M/y–E, d/M/y + E, d/M/y–E, d/M/y + + + MMM 'de' y – MMM 'de' y + + + d – d 'de' MMM 'de' y + d 'de' MMM – d 'de' MMM 'de' y + d 'de' MMM 'de' y – d 'de' MMM 'de' y + + + E, d 'de' MMM – E, d 'de' MMM 'de' y + E, d 'de' MMM – E, d 'de' MMM 'de' y + E, d 'de' MMM 'de' y – E, d 'de' MMM 'de' y + + + MMMM 'de' y–MMMM 'de' y + + + + + + + + a.m./p.m. + + + Zona horaria + + + + hora de verano de {0} + hora estándar de {0} + + Ciudad desconocida + + + San Juan de Terranova + + + San Cristóbal + + + Srednekolymsk + + + Isla Wake + + + + hora de Chamorro + + + + + hora de la isla Christmas + + + + + hora de las islas Cocos + + + + + hora de las islas Cook + hora estándar de las islas Cook + hora de verano media de las islas Cook + + + + + ∅∅∅ + ∅∅∅ + ∅∅∅ + + + + + ∅∅∅ + ∅∅∅ + ∅∅∅ + + + + + horario del lejano este de Europa + + + + + ∅∅∅ + ∅∅∅ + ∅∅∅ + + + + + ∅∅∅ + + + + + hora de Hawái-Aleutianas + hora estándar de Hawái-Aleutianas + hora de verano de Hawái-Aleutianas + + + + + hora de India + + + + + + 1 + + . + , + + + + + 0 + 0 + 00k + 00k + 000k + 000k + 0k M + 0k M + 00k M + 00k M + 000k M + 000k M + + + + + + + ¤#,##0.00 + + + ¤#,##0.00 + + + + + + dram armenio + + + lev búlgaro + leva búlgaros + + + CAD + + + + + + nafka + + + EUR + + + THB + + + USD + + + BsF + + + VND + + + (unidad de moneda desconocida) + (moneda desconocida) + + + + + + + amperes + {0} ampere + {0} amperes + + + miliamperes + {0} miliampere + {0} miliamperes + + + {0} ohm + {0} ohmios + + + {0} volt + {0} voltios + + + kilojoules + {0} kilojule + {0} kilojules + + + joules + {0} joule + {0} joules + + + kilovatios hora + {0} kilovatio hora + {0} kilovatios hora + + + caballos de fuerza + {0} caballo de vapor + {0} caballos de fuerza + + + {0} acre pie + {0} acres pies + + + + + aa. + {0} a. + {0} aa. + + + mm. + {0} m. + {0} mm. + + + sems. + {0} sem. + {0} sems. + + + dd. + {0} d. + {0} dd. + + + volts + + + yardas + + + parsecs + + + aa. l. + {0} a. l. + {0} aa. l. + + + nmi + {0} nmi + {0} nmi + + + watts + + + pintas + + + cdas. + {0} cda. + {0} cdas. + + + cdtas. + {0} cdta. + {0} cdtas. + + + + + a. + {0}a. + {0}aa. + + + m. + {0}m. + {0}mm. + + + sem. + {0}sem. + {0}sems. + + + d. + {0}d. + {0}dd. + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_AR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_AR.xml new file mode 100644 index 00000000000..babccffa2fc --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_AR.xml @@ -0,0 +1,350 @@ + + + + + + + + + + + + + + + E d-M + M-y G + + + {0} a el {1} + + h:mm–h:mm a + h:mm–h:mm a + + + HH:mm–HH:mm + HH:mm–HH:mm + + + h:mm–h:mm a v + h:mm–h:mm a v + + + HH:mm–HH:mm v + HH:mm–HH:mm v + + + dd/MM – dd/MM + dd/MM – dd/MM + + + E dd/MM – E dd/MM + E dd/MM – E dd/MM + + + d 'de' MMM 'al' d 'de' MMM + + + E d 'al' E d 'de' MMM + E d 'de' MMM 'al' E d 'de' MMM + + + MM/y – MM/y G + MM/y – MM/y G + + + dd/MM/y – dd/MM/y G + dd/MM/y – dd/MM/y G + dd/MM/y – dd/MM/y G + + + E dd/MM/y – E dd/MM/y G + E dd/MM/y – E dd/MM/y G + E dd/MM/y – E dd/MM/y G + + + MMM 'de' y 'a' MMM 'de' y G + + + d 'de' MMM 'al' d 'de' MMM 'de' y G + d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y G + + + E d 'al' E d 'de' MMM 'de' y G + E d 'de' MMM 'al' E d 'de' MMM 'de' y G + E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y G + + + + + + + + + mediodía + madrugada + mañana + tarde + noche + + + mediodía + madrugada + mañana + tarde + noche + + + + + m. + + + + + + E, d 'de' MMM 'de' y G + hh:mm:ss + HH:mm:ss v + HH:mm v + E d-M + M-y + E, d/M/y + d 'de' MMM 'de' y + + + {0} a el {1} + + h:mm–h:mm a + h:mm–h:mm a + + + HH:mm–HH:mm + HH:mm–HH:mm + + + HH:mm–HH:mm v + HH:mm–HH:mm v + + + HH–HH v + + + dd/MM – dd/MM + dd/MM – dd/MM + + + E dd/MM – E dd/MM + E dd/MM – E dd/MM + + + dd – dd 'de' MM + d 'de' MMM 'al' d 'de' MMM + + + E d 'al' E d 'de' MMM + E d 'de' MMM 'al' E d 'de' MMM + + + MM/y – MM/y + MM/y – MM/y + + + dd/MM/y – dd/MM/y + dd/MM/y – dd/MM/y + dd/MM/y – dd/MM/y + + + E, dd/MM/y – E, dd/MM/y + E, dd/MM/y – E, dd/MM/y + E, dd/MM/y – E, dd/MM/y + + + MMM 'de' y 'a' MMM 'de' y + + + d 'de' MMM 'al' d 'de' MMM 'de' y + d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y + + + E, d 'al' E, d 'de' MMM 'de' y + E, d 'de' MMM 'al' E, d 'de' MMM 'de' y + E, d 'de' MMM 'de' y 'al' E, d 'de' MMM 'de' y + + + MMMM 'al' MMMM 'de' y + MMMM 'de' y 'al' MMMM 'de' y + + + + + + + + + dentro de {0} días + dentro de {0} días + + + hace {0} días + hace {0} días + + + + + dentro de {0} días + dentro de {0} días + + + hace {0} días + hace {0} días + + + + seg. + + dentro de {0} seg. + dentro de {0} seg. + + + hace {0} seg. + hace {0} seg. + + + + seg. + + dentro de {0} seg. + dentro de {0} seg. + + + hace {0} seg. + hace {0} seg. + + + + zona horaria + + + + + + ART + ART + ARST + + + + + WART + WART + WARST + + + + + + + , + . + + + + + ¤ #,##0.00 + + + ¤ #,##0.00;(¤ #,##0.00) + + + + + + $ + + + GEL + + + US$ + + + + + + + {0}/año + + + amperios + {0} amperio + {0} amperios + + + miliamperios + {0} miliamperio + {0} miliamperios + + + {0} ohmio + {0} ohmios + + + {0} voltio + {0} voltios + + + kilojulios + {0} kilojulio + {0} kilojulios + + + julios + {0} julio + {0} julios + + + + + s + {0} s + {0} s + + + años + {0} año + {0} años + + + hs. + + + seg. + {0} seg. + {0} seg. + {0}/seg. + + + voltios + + + vatios + + + + + {0}a. + {0}a. + + + seg. + {0}seg. + {0}seg. + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_BO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_BO.xml similarity index 69% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_BO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_BO.xml index b31c83734f8..4b9e1bccaa7 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_BO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_BO.xml @@ -1,16 +1,24 @@ - - - + + + + + + BOT + + + + , @@ -23,3 +31,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_PH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_BR.xml similarity index 62% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_PH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_BR.xml index b7618b6d7fb..7928579d53d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_PH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_BR.xml @@ -1,21 +1,21 @@ - - - + - + - - + + R$ + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_CL.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_CL.xml similarity index 53% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_CL.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_CL.xml index a4b84b08075..21277fb6224 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_CL.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_CL.xml @@ -1,13 +1,12 @@ - - - + @@ -16,8 +15,6 @@ For terms of use, see http://www.unicode.org/copyright.html mapudungun - Sudamérica - Antillas Holandesas Azerbayán Bangladesh Sahara Occidental @@ -29,7 +26,7 @@ For terms of use, see http://www.unicode.org/copyright.html divisa - orden de directorio telefónico + orden de directorio telefónico @@ -56,7 +53,7 @@ For terms of use, see http://www.unicode.org/copyright.html E dd-MM-y G - {0} a el {1} + {0} a el {1} H–H @@ -80,50 +77,91 @@ For terms of use, see http://www.unicode.org/copyright.html H–H v - dd-MM – dd-MM - dd-MM – dd-MM + dd-MM – dd-MM + dd-MM – dd-MM - E dd-MM – E dd-MM - E dd-MM – E dd-MM + E dd-MM – E dd-MM + E dd-MM – E dd-MM - d 'de' MMM 'al' d 'de' MMM + d 'de' MMM 'al' d 'de' MMM - E d 'al' E d 'de' MMM - E d 'de' MMM 'al' E d 'de' MMM + E d 'al' E d 'de' MMM + E d 'de' MMM 'al' E d 'de' MMM - MM-y – MM-y G - MM-y – MM-y G + MM-y – MM-y G + MM-y – MM-y G - dd-MM-y – dd-MM-y G - dd-MM-y – dd-MM-y G - dd-MM-y – dd-MM-y G + dd-MM-y – dd-MM-y G + dd-MM-y – dd-MM-y G + dd-MM-y – dd-MM-y G - E dd-MM-y – E dd-MM-y G - E dd-MM-y – E dd-MM-y G - E dd-MM-y – E dd-MM-y G + E dd-MM-y – E dd-MM-y G + E dd-MM-y – E dd-MM-y G + E dd-MM-y – E dd-MM-y G - MMM 'de' y 'a' MMM 'de' y G + MMM 'de' y 'a' MMM 'de' y G - d 'de' MMM 'al' d 'de' MMM 'de' y G - d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y G + d 'de' MMM 'al' d 'de' MMM 'de' y G + d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y G - E d 'al' E d 'de' MMM 'de' y G - E d 'de' MMM 'al' E d 'de' MMM 'de' y G - E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y G + E d 'al' E d 'de' MMM 'de' y G + E d 'de' MMM 'al' E d 'de' MMM 'de' y G + E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y G + + + + ene. + feb. + mar. + abr. + may. + jun. + jul. + ago. + sept. + oct. + nov. + dic. + + + + + + + do + lu + ma + mi + ju + vi + + + + + + + + 1.° trimestre + 2.° trimestre + 3.° trimestre + 4.º trimestre + + + @@ -145,70 +183,79 @@ For terms of use, see http://www.unicode.org/copyright.html E dd-MM-y - {0} a el {1} + {0} a el {1} - H–H + H–H - h:mm–h:mm a - h:mm–h:mm a + h:mm–h:mm a + h:mm–h:mm a - H:mm–H:mm - H:mm–H:mm + H:mm–H:mm + H:mm–H:mm - H:mm–H:mm v - H:mm–H:mm v + H:mm–H:mm v + H:mm–H:mm v - H–H v + H–H v - dd-MM – dd-MM - dd-MM – dd-MM + dd-MM – dd-MM + dd-MM – dd-MM - E dd-MM – E dd-MM - E dd-MM – E dd-MM + E dd-MM – E dd-MM + E dd-MM – E dd-MM - d 'de' MMM 'al' d 'de' MMM + d 'de' MMM 'al' d 'de' MMM - E d 'al' E d 'de' MMM - E d 'de' MMM 'al' E d 'de' MMM + E d 'al' E d 'de' MMM + E d 'de' MMM 'al' E d 'de' MMM - MM-y – MM-y - MM-y – MM-y + MM-y – MM-y + MM-y – MM-y - dd-MM-y – dd-MM-y - dd-MM-y – dd-MM-y - dd-MM-y – dd-MM-y + dd-MM-y – dd-MM-y + dd-MM-y – dd-MM-y + dd-MM-y – dd-MM-y - E dd-MM-y – E dd-MM-y - E dd-MM-y – E dd-MM-y + E dd-MM-y – E dd-MM-y + E dd-MM-y – E dd-MM-y E dd-MM-y – E dd-MM-y - MMM 'de' y 'a' MMM 'de' y + MMM 'de' y 'a' MMM 'de' y - d 'de' MMM 'al' d 'de' MMM 'de' y - d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y + d 'de' MMM 'al' d 'de' MMM 'de' y + d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y - E d 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'al' E d 'de' MMM 'de' y - E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y + E d 'al' E d 'de' MMM 'de' y + E d 'de' MMM 'al' E d 'de' MMM 'de' y + E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y + + + + CLT + CLT + CLST + + + @@ -224,6 +271,7 @@ For terms of use, see http://www.unicode.org/copyright.html + Peso chileno $ @@ -231,5 +279,41 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + amperios + {0} amperio + {0} amperios + + + miliamperios + {0} miliamperio + {0} miliamperios + + + {0} ohmio + {0} ohmios + + + {0} voltio + {0} voltios + + + + + voltios + + + vatios + + + + hh:mm:ss + + + mm:ss + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_CO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_CO.xml new file mode 100644 index 00000000000..e50bde0f150 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_CO.xml @@ -0,0 +1,439 @@ + + + + + + + + + + + + + + + + d/MM/y G + + + + + d/MM/yy GGGGG + + + + + + + {1}, {0} + + + + + {1}, {0} + + + + E, d MMM 'de' y G + MMM 'de' y G + d 'de' MMM 'de' y G + EEE, d 'de' MMM 'de' y G + QQQ 'de' y G + + + {0} ‘al’ {1} + + d 'a' d + + + H–H + + + h:mm–h:mm a + h:mm–h:mm a + + + H:mm–H:mm + H:mm–H:mm + + + h:mm–h:mm a v + h:mm–h:mm a v + + + H:mm–H:mm v + H:mm–H:mm v + + + H–H v + + + M 'a' M + + + d/MM 'a' d/MM + d/MM 'al' d/MM + + + E d/MM 'a' E d/MM + E d/MM 'al' E d/MM + + + MMM 'a' MMM + + + d 'a' d 'de' MMM + d 'de' MMM 'al' d 'de' MMM + + + E d 'al' E d 'de' MMM + E d 'de' MMM 'al' E d 'de' MMM + + + y 'a' y G + + + M/y 'a' M/y GGGGG + M/y 'al' M/y GGGGG + + + d/M/y 'a' d/M/y GGGGG + d/M/y 'al' d/M/y GGGGG + d/M/y 'al' d/M/y GGGGG + + + E, d/M/y 'a' E, d/M/y GGGGG + E, d/M/y 'al' E, d/M/y GGGGG + E, d/M/y 'al' E, d/M/y GGGGG + + + MMM 'a' MMM 'de' y G + MMM 'de' y 'a' MMM 'de' y + + + d 'a' d 'de' MMM 'de' y G + d 'de' MMM 'al' d 'de' MMM y G + d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y G + + + E d 'de' MMM 'al' E d 'de' MMM 'de' y G + E d 'de' MMM 'al' E d 'de' MMM 'de' y G + E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y G + + + MMMM 'a' MMMM 'de' y G + MMMM 'de' y 'a' MMMM 'de' y G + + + + + + + + + ene. + feb. + mar. + abr. + may. + jun. + jul. + ago. + sept. + oct. + nov. + dic. + + + + + + + d + l + m + m + j + v + s + + + + + + + a. m. + m. + p. m. + + + + + + + d/MM/y + + + + + d/MM/yy + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + + {1}, {0} + + + + + {1}, {0} + + + + MMM 'de' y G + E, d MMM 'de' y G + d 'de' MMM + d 'de' MMM + E, d 'de' MMM + MMM 'de' y + d 'de' MMM 'de' y + + + {0} ‘al’ {1} + + d 'a' d + + + h a 'a' h a + h 'a' h a + + + HH 'a' HH + + + h:mm a 'a' h:mm a + h:mm 'a' h:mm a + h:mm 'a' h:mm a + + + HH:mm 'a' HH:mm + HH:mm 'a' HH:mm + + + h:mm a 'a' h:mm a v + h:mm 'a' h:mm a v + h:mm 'a' h:mm a v + + + HH:mm 'a' HH:mm v + HH:mm 'a' HH:mm v + + + h a 'a' h a v + h 'a' h a v + + + HH 'a' HH v + + + M 'a' M + + + d/MM 'a' d/MM + d/MM 'al' d/MM + + + E d/MM 'a' E d/MM + E d/MM 'al' E d/MM + + + MMM 'a' MMM + + + d 'a' d 'de' MMM + d 'de' MMM 'al' d 'de' MMM + + + E d 'al' E d 'de' MMM + E d 'de' MMM 'al' E d 'de' MMM + + + y 'a' y + + + MM/y 'a' MM/y + MM/y 'al' MM/y + + + d/MM/y 'a' d/MM/y + d/MM/y 'al' d/MM/y + d/MM/y 'al' d/MM/y + + + E d/MM/y 'a' E d/MM/y + E d/MM/y 'al' E d/MM/y + E d/MM/y 'al' E d/MM/y + + + MMM 'a' MMM 'de' y + MMM 'de' y 'a' MMM 'de' y + + + d 'a' d 'de' MMM 'de' y + d 'de' MMM 'al' d 'de' MMM 'de' y + d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y + + + E d 'al' E d 'de' MMM 'de' y + E d 'de' MMM 'al' E d 'de' MMM 'de' y + E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y + + + MMMM 'a' MMMM 'de' y + MMMM 'de' y 'a' MMMM 'de' y + + + + + + + + a. m./p. m. + + + + + + COT + COT + COST + + + + + + + , + . + + + + + #,##0% + + + + + + + ¤ #,##0.00 + + + + + + $ + + + US$ + + + + de {0} a {1} + + + + + + {0}/mes + + + {0}/sem. + + + + + a. + {0} a. + {0} a. + {0}/año + + + mes + {0} mes + {0} meses + {0}/mes + + + días + {0} día + {0} días + {0}/día + + + + + {0} a. + {0} a. + + + mes + {0} mes + {0} meses + + + {0} sem. + {0} sems. + + + día + {0} día + {0} días + + + {0} h + {0} h + + + {0} min + {0} min + + + {0} s + {0} s + + + {0} ms + {0} ms + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_CR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_CR.xml similarity index 70% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_CR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_CR.xml index cfd8c3e785f..36f5a3947bb 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_CR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_CR.xml @@ -1,13 +1,12 @@ - - - + @@ -15,13 +14,17 @@ For terms of use, see http://www.unicode.org/copyright.html antier + ayer + hoy + mañana + pasado mañana , - . +   diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_CU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_CU.xml similarity index 76% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_CU.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_CU.xml index ae2605b9e50..b366d053bf0 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_CU.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_CU.xml @@ -1,13 +1,12 @@ - - - + @@ -22,3 +21,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_DO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_DO.xml new file mode 100644 index 00000000000..1d8ddd32d26 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_DO.xml @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + dd/MM/y G + + + + + + + + + Q1 + Q2 + Q3 + Q4 + + + + + Q1 + Q2 + Q3 + Q4 + + + + + + + mediodía + día + mañana + tarde + noche + + + + + m. + + + + + + antes de la Era Común + Era Común + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + d MMM 'de' y + + + + + + + Era + + + Año + + + Trimestre + + + Mes + + + Semana + + + Día + + + Día de la semana + + + Minuto + + + Segundo + + + + + + + + #,##0% + + + + + + + ¤#,##0.00;(¤#,##0.00) + + + + + + RD$ + + + US$ + + + + + + + amperios + {0} amperio + {0} amperios + + + miliamperios + {0} miliamperio + {0} miliamperios + + + {0} ohmio + {0} ohmios + + + {0} voltio + {0} voltios + + + + + d. + + + seg. + {0} seg. + {0} seg. + + + voltios + + + vatios + + + + + {0}m. + {0}m. + + + {0}d. + {0}d. + + + + + + {0} y {1} + + + {0} y {1} + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_EA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_EA.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_EA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_EA.xml index 40cf9147dc6..5cadf4f7937 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_EA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_EA.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_EC.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_EC.xml similarity index 97% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_EC.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_EC.xml index 8a95f047ed8..f12b6c6b54d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_EC.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_EC.xml @@ -1,13 +1,12 @@ - - - + @@ -155,6 +154,13 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + ECT + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_ES.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_ES.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_ES.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_ES.xml index 2e550856b80..d3ee60009be 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_ES.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_ES.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_GQ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_GQ.xml similarity index 81% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_GQ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_GQ.xml index 8ab5dd86834..a710f5400a2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_GQ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_GQ.xml @@ -1,13 +1,12 @@ - - - + @@ -26,3 +25,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_GT.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_GT.xml new file mode 100644 index 00000000000..01047d8efbc --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_GT.xml @@ -0,0 +1,290 @@ + + + + + + + + + + + + + + + + d/MM/y G + + + + + d/MM/yy GGGGG + + + + + + {0} a el {1} + + h:mm–h:mm a + h:mm–h:mm a + + + HH:mm–HH:mm + HH:mm–HH:mm + + + h:mm–h:mm a v + h:mm–h:mm a v + + + HH:mm–HH:mm v + HH:mm–HH:mm v + + + d/MM – d/MM + d/MM – d/MM + + + E d/MM – E d/MM + E d/MM – E d/MM + + + d 'de' MMM 'al' d 'de' MMM + + + E d 'al' E d 'de' MMM + E d 'de' MMM 'al' E d 'de' MMM + + + MM/y – MM/y + MM/y – MM/y + + + d/MM/y – d/MM/y + d/MM/y – d/MM/y + d/MM/y – d/MM/y + + + E d/MM/y – E d/MM/y + E d/MM/y – E d/MM/y + E d/MM/y – E d/MM/y + + + MMM–MMM 'de' y + MMM 'de' y 'a' MMM 'de' y + + + d–d 'de' MMM 'de' y + d 'de' MMM 'al' d 'de' MMM 'de' y + d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y + + + E d 'al' E d 'de' MMM 'de' y + E d 'de' MMM 'al' E d 'de' MMM 'de' y + E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y + + + + + + + + + d/MM/y + + + + + d/MM/yy + + + + + + + h:mm–h:mm a + h:mm–h:mm a + + + d/MM – d/MM + d/MM – d/MM + + + E d/MM – E d/MM + E d/MM – E d/MM + + + d 'de' MMM 'al' d 'de' MMM + + + E d 'al' E d 'de' MMM + E d 'de' MMM 'al' E d 'de' MMM + + + y 'al' y + + + MM/y – MM/y + MM/y – MM/y + + + d/MM/y – d/MM/y + d/MM/y – d/MM/y + d/MM/y – d/MM/y + + + E d/MM/y – E d/MM/y + E d/MM/y – E d/MM/y + E d/MM/y – E d/MM/y + + + MMM 'de' y 'a' MMM 'de' y + + + d 'de' MMM 'al' d 'de' MMM 'de' y + d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y + + + E d 'al' E d 'de' MMM 'de' y + E d 'de' MMM 'al' E d 'de' MMM 'de' y + E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y + + + + + + + + antier + ayer + hoy + mañana + pasado mañana + + + + + + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0000M + ¤0000M + ¤00MRD  + ¤00MRD  + ¤000MRD  + ¤000MRD  + ¤0 B + ¤0 B + ¤00 B + ¤00 B + ¤000 B + ¤000 B + + + {1} {0} + {1} {0} + + + + quetzal + quetzal + quetzales + Q + + + + {0} al {1} + + + + + + {0} al año + + + {0} al mes + + + {0} al día + + + amperios + {0} amperio + {0} amperios + + + miliamperios + {0} miliamperio + {0} miliamperios + + + {0} ohmio + {0} ohmios + + + {0} voltio + {0} voltios + + + kilojulios + {0} kilojulio + {0} kilojulios + + + julios + {0} julio + {0} julios + + + milla escandinava + + + {0} caballos de fuerza + {0} caballos de fuerza + + + {0} por pie cúbico + + + + + {0} ct + {0} ct + + + voltios + + + pie + + + vatios + + + acre pie + + + + + hora + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_HN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_HN.xml similarity index 97% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_HN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_HN.xml index b33cf55d6d5..901330bd757 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_HN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_HN.xml @@ -1,13 +1,12 @@ - - - + @@ -176,6 +175,10 @@ For terms of use, see http://www.unicode.org/copyright.html antier + ayer + hoy + mañana + pasado mañana diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_IC.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_IC.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_IC.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_IC.xml index d9183a302f5..b30b3016504 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_IC.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_IC.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_MX.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_MX.xml similarity index 93% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_MX.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_MX.xml index 7d70ed82419..627be3c1a98 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_MX.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_MX.xml @@ -1,13 +1,12 @@ - - - + @@ -20,7 +19,6 @@ For terms of use, see http://www.unicode.org/copyright.html - Sudamérica África Occidental África Oriental África del Norte @@ -38,14 +36,11 @@ For terms of use, see http://www.unicode.org/copyright.html Europa Occidental Bangladesh Islas Cocos (Keeling) - Isla de Navidad RU Guernsey Región Administrativa Especial de Hong Kong de la República Popular China Islas Canarias Región Administrativa Especial de Macao de la República Popular China - Palaos - Islas Ultramarinas Tristán de Acuña Islas Ultramarinas Menores de Estados Unidos Islas Vírgenes de los Estados Unidos @@ -56,32 +51,32 @@ For terms of use, see http://www.unicode.org/copyright.html Moneda - Dígitos en arábigo-índico - Dígitos en árabigo-índico extendido - Números en armenio - Números en armenio en minúscula - Números en etíope - Números en georgiano - Calendario gregoriano - Números en griego - Números en griego en minúscula - Dígitos en gurmuji - Numeros decimales en chino - Números en chino simplificado - Números financieros en chino simplificado - Números en chino tradicional - Números financieros en chino tradicional - Números en hebreo - Números financieros en japonés - Dígitos en lao - Dígitos en malabar - calendario minguo - Orden estándar - Números en tamil - Dígitos en tamil - Dígitos en telugú - Dígitos en tibetano - Orden tradicional + Calendario gregoriano + calendario minguo + Orden estándar + Orden tradicional + Dígitos en arábigo-índico + Dígitos en árabigo-índico extendido + Números en armenio + Números en armenio en minúscula + Números en etíope + Números en georgiano + Números en griego + Números en griego en minúscula + Dígitos en gurmuji + Numeros decimales en chino + Números en chino simplificado + Números financieros en chino simplificado + Números en chino tradicional + Números financieros en chino tradicional + Números en hebreo + Números financieros en japonés + Dígitos en lao + Dígitos en malabar + Números en tamil + Dígitos en tamil + Dígitos en telugú + Dígitos en tibetano @@ -211,14 +206,6 @@ For terms of use, see http://www.unicode.org/copyright.html - - - - a.m. - p.m. - - - @@ -318,11 +305,10 @@ For terms of use, see http://www.unicode.org/copyright.html - - era - - el año próximo + el año pasado + este año + el año próximo @@ -363,7 +349,9 @@ For terms of use, see http://www.unicode.org/copyright.html - el mes próximo + el mes pasado + este mes + el mes próximo en {0} mes en {0} meses @@ -386,7 +374,9 @@ For terms of use, see http://www.unicode.org/copyright.html - la semana próxima + la semana pasada + esta semana + la semana próxima @@ -406,6 +396,10 @@ For terms of use, see http://www.unicode.org/copyright.html antier + ayer + hoy + mañana + pasado mañana @@ -424,16 +418,24 @@ For terms of use, see http://www.unicode.org/copyright.html - el domingo próximo + el domingo pasado + este domingo + el domingo próximo - el lunes próximo + el lunes pasado + este lunes + el lunes próximo - el martes próximo + el martes pasado + este martes + el martes próximo - el miércoles próximo + el miércoles pasado + este miércoles + el miércoles próximo el miér. pasado @@ -441,10 +443,14 @@ For terms of use, see http://www.unicode.org/copyright.html el próximo miér. - el jueves próximo + el jueves pasado + este jueves + el jueves próximo - el viernes próximo + el viernes pasado + este viernes + el viernes próximo el vier. pasado @@ -452,10 +458,9 @@ For terms of use, see http://www.unicode.org/copyright.html el próximo vier. - el sábado próximo - - - a.m./p.m. + el sábado pasado + este sábado + el sábado próximo @@ -519,9 +524,6 @@ For terms of use, see http://www.unicode.org/copyright.html Belém - - San Juan de Terranova - Navidad @@ -544,9 +546,6 @@ For terms of use, see http://www.unicode.org/copyright.html Hora de verano irlandesa - - San Cristóbal - Piongyang @@ -1516,9 +1515,6 @@ For terms of use, see http://www.unicode.org/copyright.html kwanzas angoleños Kz - - ARA - $a $a @@ -1539,33 +1535,6 @@ For terms of use, see http://www.unicode.org/copyright.html dólar de Brunéi dólares de Brunéi - - BOL - - - BOP - - - BOV - - - BRB - - - BRC - - - BRE - - - BRN - - - BRR - - - BRZ - ngultrum butanés ngultrum butanés @@ -1579,30 +1548,15 @@ For terms of use, see http://www.unicode.org/copyright.html Br - - CLE - - - CLF - yuan chino yuan chino yuanes chinos CN¥ - - COU - RD$ - - ECS - - - ECV - nakfa eritreo nakfas eritreos @@ -1708,9 +1662,6 @@ For terms of use, see http://www.unicode.org/copyright.html $ - - MXP - ringgit malayo ringgit malayo @@ -1726,15 +1677,6 @@ For terms of use, see http://www.unicode.org/copyright.html naira nigeriano nairas nigerianos - - NIC - - - PEI - - - PES - kina de Papúa Nueva Guinea kina de Papúa Nueva Guinea @@ -1774,17 +1716,11 @@ For terms of use, see http://www.unicode.org/copyright.html leone de Sierra Leona leones de Sierra Leona - - SRG - dobra de Santo Tomé y Príncipe dobra de Santo Tomé y Príncipe dobras de Santo Tomé y Príncipe - - SVC - lilangeni suazi lilangeni suazi @@ -1813,15 +1749,6 @@ For terms of use, see http://www.unicode.org/copyright.html grivna ucraniana grivnas ucranianas - - USN - - - USS - - - UYI - som uzbeko som uzbeko @@ -1869,12 +1796,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} segundo {0} segundos - - joules - - - kilojoules - kilowatt-hora kilowatt-hora @@ -1885,28 +1806,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} micrometro {0} micrometros - - millas naúticas - {0} milla naútica - {0} millas naúticas - pársecs {0} pársec {0} pársecs + + millas naúticas + {0} milla naútica + {0} millas naúticas + lux gigawatts - - kilowatts - megawatts + + kilowatts + miliwatts {0} miliwatt @@ -1934,6 +1855,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + º + {0} min {0} min @@ -1943,23 +1867,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} s {0} s - - º + + byte + {0} byte + {0} byte bit {0} bit {0} bit - - byte - {0} byte - {0} byte - - - días - {0} día - {0} días + + a + {0} a + {0} a meses @@ -1971,39 +1892,39 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sem {0} sem - - a - {0} a - {0} a - - - ua - {0} ua - {0} ua - - - al - {0} a. l. - {0} a. l. - - - millas + + días + {0} día + {0} días Nm {0} Nm {0} Nm - - M - {0} M - {0} M + + millas + + + yd pc - - yd + + al + {0} a. l. + {0} a. l. + + + ua + {0} ua + {0} ua + + + M + {0} M + {0} M ozt @@ -2013,24 +1934,20 @@ For terms of use, see http://www.unicode.org/copyright.html km/hora + + pt + tza. {0} tza. {0} tzas. - - pt - - - {0} cda. - {0} cdas. - - - días - {0}d - {0}d + + a + {0}a + {0}a m @@ -2042,10 +1959,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}sem {0}sem - - a - {0}a - {0}a + + días + {0}d + {0}d diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_NI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_NI.xml similarity index 69% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_NI.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_NI.xml index b77ef382f90..7506149edcc 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_NI.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_NI.xml @@ -1,13 +1,12 @@ - - - + @@ -15,6 +14,10 @@ For terms of use, see http://www.unicode.org/copyright.html antier + ayer + hoy + mañana + pasado mañana diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_PA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_PA.xml new file mode 100644 index 00000000000..a88e086849c --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_PA.xml @@ -0,0 +1,242 @@ + + + + + + + + + + + + + + + + MM/dd/y G + + + + + MM/dd/yy GGGGG + + + + + + MM/dd + E, MM/dd + MM/y + MM/dd/y + E MM/dd/y + + + {0} a el {1} + + h:mm–h:mm a + h:mm–h:mm a + + + HH:mm–HH:mm + HH:mm–HH:mm + + + h:mm–h:mm a v + h:mm–h:mm a v + + + HH:mm–HH:mm v + HH:mm–HH:mm v + + + d 'de' MMM 'al' d 'de' MMM + + + E d 'al' E d 'de' MMM + E d 'de' MMM 'al' E d 'de' MMM + + + y–y + + + MMM–MMM 'de' y + MMM 'de' y 'a' MMM 'de' y + + + d–d 'de' MMM 'de' y + d 'de' MMM 'al' d 'de' MMM 'de' y + d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y + + + E d 'al' E d 'de' MMM 'de' y + E d 'de' MMM 'al' E d 'de' MMM 'de' y + E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y + + + + + + + + + E + F + M + A + M + J + J + A + S + O + N + D + + + + + E + F + M + A + M + J + J + A + S + O + N + D + + + + + + + 1er. trimestre + 2do. trimestre + 3er. trimestre + 4.º trimestre + + + + + 1er. trimestre + 2do. trimestre + 3er. trimestre + 4.º trimestre + + + + + + + mediodía + de la madrugada + de la mañana + de la tarde + de la noche + + + mediodía + de la madrugada + de la mañana + de la tarde + de la noche + + + + + + + MM/dd/y + + + + + MM/dd/yy + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + MM/dd + E, MM/dd + MM/y + MM/dd/y + E MM/dd/y + MMM y + d MMM y + + + + d 'de' MMM 'al' d 'de' MMM + + + E d 'al' E d 'de' MMM + E d 'de' MMM 'al' E d 'de' MMM + + + MM/y – MM/y + MM/y – MM/y + + + MMM 'de' y 'a' MMM 'de' y + + + d 'de' MMM 'al' d 'de' MMM 'de' y + d 'de' MMM 'de' y 'al' d 'de' MMM 'de' y + + + E d 'al' E d 'de' MMM 'de' y + E d 'de' MMM 'al' E d 'de' MMM 'de' y + E d 'de' MMM 'de' y 'al' E d 'de' MMM 'de' y + + + + + + + + antier + ayer + hoy + mañana + pasado mañana + + + + + + + B/. + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_PE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_PE.xml similarity index 97% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_PE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_PE.xml index 2ce2a3c78a9..2cf214fde5a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_PE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_PE.xml @@ -1,13 +1,12 @@ - - - + @@ -222,6 +221,15 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + PET + PET + PEST + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_PH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_PH.xml new file mode 100644 index 00000000000..4bcbc220b55 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_PH.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_PR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_PR.xml similarity index 93% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_PR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_PR.xml index c3625288474..d73b44b813a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_PR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_PR.xml @@ -1,13 +1,12 @@ - - - + @@ -109,6 +108,28 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + MM/dd diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_PY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_PY.xml new file mode 100644 index 00000000000..cd4d1d0d88e --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_PY.xml @@ -0,0 +1,266 @@ + + + + + + + + + + + + + + + + ene. + feb. + mar. + abr. + may. + jun. + jul. + ago. + sept. + oct. + nov. + dic. + + + + + ene. + feb. + mar. + abr. + may. + jun. + jul. + ago. + sept. + oct. + nov. + dic. + + + + + + + do + lu + ma + mi + ju + vi + sa + + + + + Do + Lu + Ma + Mi + Ju + Vi + Sa + + + + + + + del mediodía + de la madrugada + de la mañana + de la tarde + de la noche + + + + + m. + + + + + + + h a 'a' h a + h 'a' h a + + + h:mm a 'a' h:mm a + h:mm 'a' h:mm a + h:mm 'a' h:mm a + + + d/M 'al' d/M + d/M 'al' d/M + + + d/M/y 'al' d/M/y + d/M/y 'al' d/M/y + d/M/y 'al' d/M/y + + + MMM 'a' MMM y + MMM 'de' y 'a' MMM 'de' y + + + d 'de' MMM 'al' d 'de' MMM 'de' y + + + MMMM 'a' MMMM 'de' y + MMMM 'de' y 'a' MMMM 'de' y + + + + + + + + antes de ayer + ayer + hoy + mañana + pasado mañana + + + el dom. pasado + este dom. + el próximo dom. + + + el lun. pasado + este lun. + el próximo lun. + + + el mar. pasado + este mar. + el próximo mar. + + + seg. + + dentro de {0} seg. + dentro de {0} seg. + + + hace {0} seg. + hace {0} seg. + + + + + dentro de {0} seg. + dentro de {0} seg. + + + hace {0} seg. + hace {0} seg. + + + + zona horaria + + + + + + , + . + + + + + ¤ #,##0.00;¤ -#,##0.00 + + + + + + Gs. + + + + + + + {0}/año + + + amperios + {0} amperio + {0} amperios + + + miliamperios + {0} miliamperio + {0} miliamperios + + + {0} ohmio + {0} ohmios + + + {0} voltio + {0} voltios + + + + + años + {0} año + {0} años + {0}/año + + + meses + {0} mes + {0} meses + {0}/mes + + + días + {0} día + {0} días + {0}/día + + + seg. + {0} seg. + {0} seg. + {0}/seg. + + + voltios + + + vatios + + + + + año + + + mes + + + día + + + + + + {0} y {1} + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_SV.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_SV.xml similarity index 69% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_SV.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_SV.xml index 6d25b49d9d7..0db308a3e18 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_SV.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_SV.xml @@ -1,13 +1,12 @@ - - - + @@ -15,6 +14,10 @@ For terms of use, see http://www.unicode.org/copyright.html antier + ayer + hoy + mañana + pasado mañana diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_US.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_US.xml similarity index 79% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_US.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_US.xml index f53847b1bb6..d0fdcf201ae 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_US.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_US.xml @@ -1,13 +1,12 @@ - - - + @@ -18,7 +17,6 @@ For terms of use, see http://www.unicode.org/copyright.html a - m p @@ -27,6 +25,28 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_UY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_UY.xml similarity index 93% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_UY.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_UY.xml index d506288a9e4..37e8dcd4621 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/es_UY.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_UY.xml @@ -1,13 +1,12 @@ - - - + @@ -78,6 +77,15 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + UYT + UYT + UYST + + + @@ -104,3 +112,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_VE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_VE.xml new file mode 100644 index 00000000000..afa85eb644b --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/es_VE.xml @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + ene. + feb. + mar. + abr. + may. + jun. + jul. + ago. + sept. + oct. + nov. + dic. + + + E + F + M + A + M + J + J + A + S + O + N + D + + + + + ene. + feb. + mar. + abr. + may. + jun. + jul. + ago. + sept. + oct. + nov. + dic. + + + + + + + Do + Lu + Ma + Mi + Ju + Vi + Sa + + + + + Do + Lu + Ma + Mi + Ju + Vi + Sa + + + + + + + 1er trimestre + 2do trimestre + 3er trimestre + 4to trimestre + + + + + 1er trimestre + 2do trimestre + 3er trimestre + 4to trimestre + + + + + + + a. m. + p. m. + + + + + m. + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + d MMM y + + + + + + + el Do pasado + este Do + el próximo Do + + + el Lu pasado + este Lu + el próximo Lu + + + el Ma pasado + este Ma + el próximo Ma + + + el Mi pasado + este Mi + el próximo Mi + + + el Ju pasado + este Ju + el próximo Ju + + + el Vi pasado + este Vi + el próximo Vi + + + el Sa pasado + este Sa + el próximo Sa + + + + + + VET + + + + + + + , + . + + + + + ¤#,##0.00;¤-#,##0.00 + + + + + + Bs. + Bs. + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/et.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/et.xml similarity index 77% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/et.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/et.xml index eb0cbfeb3e2..879c8fb1321 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/et.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/et.xml @@ -1,13 +1,12 @@ - - - + @@ -20,17 +19,20 @@ For terms of use, see http://www.unicode.org/copyright.html afari abhaasi atšehi - akoli + atšoli adangme adõgee avesta + Tuneesia araabia afrikaani afrihili aghemi ainu akani akadi + alabama aleuudi + geegi altai amhari aragoni @@ -39,11 +41,16 @@ For terms of use, see http://www.unicode.org/copyright.html araabia araabia (tänapäevane) aramea - araukaani + mapudunguni + araona arapaho + Alžeeria araabia aravaki + Maroko araabia + Egiptuse araabia assami - asa + asu + Ameerika viipekeel astuuria avaari avadhi @@ -53,26 +60,35 @@ For terms of use, see http://www.unicode.org/copyright.html baškiiri belutši bali + baieri basa bamuni + bataki ghomala valgevene bedža bemba + betavi bena bafuti + badaga bulgaaria + läänebelutši bhodžpuri bislama bikoli edo - itaŋikomi - siksika + bandžari + komi (Aafrika) + mustjalaindiaani bambara bengali tiibeti + bišnuprija + bahtiari bretooni bradži + brahui bodo bosnia akoose @@ -84,11 +100,11 @@ For terms of use, see http://www.unicode.org/copyright.html katalaani kado kariibi - cayuga + kajuka atsami tšetšeeni sebu - chiga + tšiga tšamorro tšibtša tšagatai @@ -99,9 +115,10 @@ For terms of use, see http://www.unicode.org/copyright.html tšipevai tšerokii šaieeni - sorani kurdi + sorani korsika kopti + kapisnoni krii krimmitatari tšehhi @@ -112,9 +129,10 @@ For terms of use, see http://www.unicode.org/copyright.html taani siuu dargi - taita + davida saksa - saksa (kõrgsaksa) + Austria saksa + Šveitsi ülemsaksa delavari sleivi dogribi @@ -122,43 +140,57 @@ For terms of use, see http://www.unicode.org/copyright.html zarma dogri alamsorbi + keskdusuni duala keskhollandi maldiivi - jola-fonyi + fonji djula dzongkha - dazaga + daza embu eve efiki - muinasegiptuse + emiilia + egiptuse ekadžuki kreeka eelami inglise - inglise (Briti) - inglise (USA) - inglise (USA) + Austraalia inglise + Kanada inglise + Briti inglise + Briti inglise + Ameerika inglise + USA inglise keskinglise esperanto hispaania - hispaania (Euroopa) + Ladina-Ameerika hispaania + Euroopa hispaania + Mehhiko hispaania + keskjupiki eesti baski evondo + estremenju pärsia fangi fanti - fulbe + fula soome - filipino + filipiini + meä fidži fääri foni prantsuse + Kanada prantsuse + Šveitsi prantsuse + cajun’i keskprantsuse vanaprantsuse + frankoprovansi põhjafriisi idafriisi friuuli @@ -166,12 +198,14 @@ For terms of use, see http://www.unicode.org/copyright.html iiri gaa gagauusi + kani gajo gbaja gaeli etioopia kiribati galeegi + gilaki keskülemsaksa guaranii vanaülemsaksa @@ -182,6 +216,8 @@ For terms of use, see http://www.unicode.org/copyright.html vanakreeka šveitsisaksa gudžarati + vajuu + farefare gusii mänksi gvitšini @@ -190,12 +226,14 @@ For terms of use, see http://www.unicode.org/copyright.html havai heebrea hindi + Fidži hindi hiligainoni heti hmongi - motu + hirimotu horvaadi ülemsorbi + sjangi haiti ungari hupa @@ -207,7 +245,7 @@ For terms of use, see http://www.unicode.org/copyright.html indoneesia interlingue ibo - sichuani jii + Sichuani jii injupiaki iloko inguši @@ -215,12 +253,15 @@ For terms of use, see http://www.unicode.org/copyright.html islandi itaalia inuktituti + isuri jaapani - lojbani + Jamaica kreoolkeel + ložban ngomba - machame + matšame juudipärsia juudiaraabia + jüüti jaava gruusia karakalpaki @@ -231,20 +272,23 @@ For terms of use, see http://www.unicode.org/copyright.html kaavi kabardi-tšerkessi kanembu - tyapi + tjapi makonde kabuverdianu koro kongo + kaingangi khasi - saki + saka koyra chiini + khovari kikuju - ambo + kõrmandžki + kvanjama kasahhi kako grööni - kaljenjin + kalendžini khmeeri mbundu kannada @@ -255,12 +299,14 @@ For terms of use, see http://www.unicode.org/copyright.html kpelle kanuri karatšai-balkaari + krio + kinaraia karjala - oraoni + kuruhhi kašmiiri - shambala + šambala bafia - cologniani + kölni kurdi kumõki kutenai @@ -276,23 +322,30 @@ For terms of use, see http://www.unicode.org/copyright.html lesgi ganda limburgi + liguuri + liivi lakota + lombardi lingala lao mongo lozi + põhjaluri leedu + latgali luba - luba-lulua + lulua luisenjo lunda luo lušei - luyia + luhja läti + klassikaline hiina + lazi madura mafa - magali + magahi maithili makassari malinke @@ -306,7 +359,7 @@ For terms of use, see http://www.unicode.org/copyright.html malagassi keskiiri makhuwa-meetto - meta’ + meta maršalli maoori mikmaki @@ -319,6 +372,7 @@ For terms of use, see http://www.unicode.org/copyright.html mohoogi more marathi + mäemari malai malta mundangi @@ -326,28 +380,34 @@ For terms of use, see http://www.unicode.org/copyright.html maskogi miranda marvari + mentavei birma - myene + mjene ersa + mazandaraani nauru + lõunamini napoli nama norra bokmål põhjandebele alamsaksa + Hollandi alamsaksa nepali nevari ndonga niasi niue + ao hollandi flaami kwasio - norra nynorsk + uusnorra ngiembooni norra nogai vanapõhjala + noviaal nkoo lõunandebele pedi @@ -372,63 +432,82 @@ For terms of use, see http://www.unicode.org/copyright.html pampanga papiamento belau + pikardi + Pennsylvania saksa + mennoniidisaksa vanapärsia + Pfalzi foiniikia paali poola + piemonte + pontose poonpei + preisi vanaprovansi puštu portugali - portugali (Euroopa) + Brasiilia portugali + Euroopa portugali ketšua - k’iche’ + kitše radžastani rapanui rarotonga - retoromaani + romanja + riifi + romanši rundi rumeenia moldova rombo mustlaskeel root + rotuma vene + russiini + roviana aromuuni ruanda - rwa + rvaa sanskriti sandave jakuudi - samaaria aramea + Samaaria aramea samburu sasaki santali - ngembay + sauraštra + ngambai sangu - sardiinia + sardi sitsiilia šoti sindhi + lõunakurdi põhjasaami - seneca + seneka sena + seri sölkupi koyraboro senni sango vanaiiri + žemaidi serbia-horvaadi - tachelhiti + šilha šani Tšaadi araabia singali sidamo slovaki sloveeni + alamsileesia + selajari samoa lõunasaami - lule saami - inari saami + Lule saami + Inari saami koltasaami šona soninke @@ -441,17 +520,20 @@ For terms of use, see http://www.unicode.org/copyright.html svaasi saho lõunasotho + saterfriisi sunda sukuma susu sumeri rootsi suahiili + Kongo suahiili komoori - Kongo suahiili - klassikaline süüria + vanasüüria süüria + sileesia tamili + tulu telugu temne teso @@ -464,59 +546,74 @@ For terms of use, see http://www.unicode.org/copyright.html tivi türkmeeni tokelau + tsahhi tagalogi klingoni tlingiti + talõši tamašeki tsvana tonga tšitonga uusmelaneesia türgi + turojo taroko tsonga + tsakoonia tšimši tatari + lõunataadi tumbuka tuvalu tvii taswaqi tahiti tõva - Kesk-Maroko tamazighti + tamasikti udmurdi uiguuri ugariti ukraina umbundu - määramata + määramata keel urdu usbeki vai venda + veneti + vepsa vietnami + lääneflaami + Maini frangi volapüki vadja - vunjo + võru + vundžo vallooni walseri - volamo + volaita varai vašo + varlpiri volofi + uu kalmõki koosa + megreli soga jao japi yangbeni - yemba + jemba jidiši joruba + njengatu kantoni tšuangi sapoteegi - blissümbolid + Blissi sümbolid + zeelandi zenaga tamasikti (Maroko) hiina @@ -528,117 +625,175 @@ For terms of use, see http://www.unicode.org/copyright.html zaza + + + + - + + + - + + - + + - + - + - + - + + + - + + - - + + - + - + + - + + + - + - + + + - + + + + - + - - - + + + + + + + + + + + + + + + + + + + - + + - + + - + + + + + + + - + + + + + + + - - - - - - - - + + + + + + + + + + + + + - + - + + - + + + - + + - + maailm @@ -652,16 +807,16 @@ For terms of use, see http://www.unicode.org/copyright.html Põhja-Aafrika Kesk-Aafrika Lõuna-Aafrika - Ameerika maailmajagu + Ameerika Ameerika põhjaosa - Kariibi meri + Kariibi piirkond Ida-Aasia Lõuna-Aasia Kagu-Aasia Lõuna-Euroopa Australaasia Melaneesia - Mikroneesia + Mikroneesia (piirkond) Polüneesia Aasia Kesk-Aasia @@ -679,7 +834,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albaania Armeenia - Hollandi Antillid Angola Antarktis Argentina @@ -715,8 +869,8 @@ For terms of use, see http://www.unicode.org/copyright.html Kongo DV Kongo-Kinshasa Kesk-Aafrika Vabariik - Kongo-Brazzaville - Kongo (Vabariik) + Kongo Vabariik + Kongo-Brazzaville Šveits Côte d’Ivoire Elevandiluurannik @@ -752,13 +906,13 @@ For terms of use, see http://www.unicode.org/copyright.html Soome Fidži Falklandi saared - Falklandi saared (Malviini saared) - Mikroneesia Liiduriigid + Malviini saared + Mikroneesia Fääri saared Prantsusmaa Gabon Suurbritannia - Suurbritannia + ÜK Grenada Gruusia Prantsuse Guajaana @@ -776,7 +930,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guam Guinea-Bissau Guyana - Hongkong - Hiina erihalduspiirkond + Hongkongi erihalduspiirkond Hongkong Heardi ja McDonaldi saared Honduras @@ -798,7 +952,7 @@ For terms of use, see http://www.unicode.org/copyright.html Jamaica Jordaania Jaapan - Kenya + Keenia Kõrgõzstan Kambodža Kiribati @@ -824,14 +978,15 @@ For terms of use, see http://www.unicode.org/copyright.html Monaco Moldova Montenegro - Saint Martin + Saint-Martin Madagaskar - Marshalli saared + Marshalli Saared Makedoonia + Makedoonia Vabariik Mali Myanmar (Birma) Mongoolia - Macau - Hiina erihalduspiirkond + Macau erihalduspiirkond Macau Põhja-Mariaanid Martinique @@ -909,6 +1064,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tadžikistan Tokelau Ida-Timor + Timor-Leste Türkmenistan Tuneesia Tonga @@ -943,19 +1099,24 @@ For terms of use, see http://www.unicode.org/copyright.html saksa traditsiooniline kirjaviis - standardiseeritud Resia ortograafia + normitud Resia kirjaviis saksa reformitud kirjaviis - hiline kesk-prantsuse kuni 1606 + hiliskeskprantsuse (kuni 1606) varajane moodne prantsuse akadeemiline - ida-armeenia - lääne-armeenia + ALA-LC latinisatsioon (1997) + idaarmeenia + läänearmeenia ühtlustatud türgi-ladina tähestik San Giorgio/Bila murre boontlingi + štokavi e-line murrak IPA foneetika UPA foneetika - üldlevinud ortograafia + Hepburni latinisatsioon + štokavi ije-line murrak + üldlevinud kirjaviis + normitud kirjaviis Resia Lipovaz’i murre monotoonne Natisone murre @@ -974,125 +1135,159 @@ For terms of use, see http://www.unicode.org/copyright.html ühtlustatud ortograafia ühtlustatud redigeeritud ortograafia valentsia - Wade-Giles + Wade’i-Gilesi latinisatsioon kalender - Sortimine sümboleid eirates - Vastupidine sortimine rõhumärkide alusel - Suur-/väiketähtede järjestus - Tõstutundlik sortimine - Sortimine kana kirjasüsteemi alusel - Sortimisjärjestus - Normeeritud sortimine - Sortimine numbrite alusel - Sortimisalus + sümbolite eiramine järjestuses + diakriitikute pöördjärjestus + suur- ja väiketähe järjestus + järjestuse tõstutundlikkus + kana kirja järjestus + sortimisjärjestus + normaliseeritud järjestus + numbrite järjestus + järjestuskaalud vääring - Numbrid - Ajavöönd - Lokaadi variant - Sümbolite alusel sortimine - Erakasutus + 12 või 24 tunni süsteem + reavahetuse laad + mõõdustik + numbrid + ajavöönd + lokaadi variant + sümbolite alusel järjestamine + erakasutus - Araabia-indic numbrid - Laiendatud araabia-indic numbrid - Armeenia numbrid - Armeenia numbrid väikeste tähtedega - Bengali numbrid - hiina traditsiooniline - big5 - budistlik kalender - Hiina kalender - Kopti kalender - dangi kalender - Devanagari numbrid - Sõnastiku sortimisjärjestus - Unicode’i sortimise vaikejärjestus - sortimisjärjestuse mitmekeelne Euroopa dokumendid - Etioopia numbrid - Etioopia kalender - Etioopia amete alemi kalender - Finantsarvud - Täislaiusega numbrid - hiina lihtsustatud - GB2312 - Gruusia numbrid - Gregoriuse kalender - Kreeka numbrid - Kreeka väiketähelised numbrid - Gudžarati numbrid - Gurmukhi numbrid - Hiina kümnendnumbrid - Lihtsustatud hiina keele numbrid - Lihtsustatud hiina keele finantsnumbrid - Traditsioonilise hiina keele numbrid - Traditsioonilise hiina keele finantsnumbrid - Heebrea numbrid - juudi kalender - Sordi kõik - India rahvuslik - islamikalender - islami ilmalik kalender - ISO-8601 kalender - Jaapani kalender - Jaapani numbrid - Jaapani rahandusnumeraalid - Khmeri numbrid - Kannada numbrid - Lao numbrid - Ladina numbrid - Järjestus alates väiketähtedest - Malayalami numbrid - Mongoolia numbrid - Myanmari numbrid - Kohalik numbrisüsteem - Tavajärjestuses rõhumärkide alusel - Tõstutundlikkuse alusel sortimine - Tõstutundlikkuseta sortimine - Kana-kirjasüsteemi eraldi sortimine - Normeerimata sortimine - Numbrite eraldi sortimine - Sümbolite sortimine - Oria numbrid - Pärsia kalender - telefoniraamat - Foneetiline sortimisjärjestus - hiina lihtsustatud - pinyin järjekorras - Ainult põhitähestiku alusel sortimine - Rõhumärkide/algustähe/laiuse/kana-süsteemi alusel sortimine - Reformitud sortimisjärjestus - Hiina Vabariigi kalender - Rooma numbrid - Rooma numbrid väikeste tähtedega - Üldeesmärgiline otsing - Otsing hanguli alguskonsonandi alusel - Rõhumärkide sortimine - Sordi sümboleid eirates - Standardne sortimisjärjestus - elementide kirjutamise järjekorras - Tamili numbrid - Tamili numbrid - Telugu numbrid - Rõhumärkide/algustähe/laiuse alusel sortimine - Tai numbrid - Tiibeti numbrid - traditsiooniline - Traditsiooniline numbrisüsteem - Radikaal-kriipsude sortimisjärjestus - Järjestus alates suurtähtedest - Vai numbrisüsteem - Vastupidine sortimine rõhumärkide alusel - Tõstutundlikkuse alusel sortimine - Kana-kirjasüsteemi sortimine eraldi - Normeeritud Unicode’i alusel sortimine - Numbrite alusel sortimine + budistlik kalender + Hiina kalender + kopti kalender + dangi kalender + Etioopia kalender + Etioopia amete alemi kalender + Gregoriuse kalender + juudi kalender + India rahvuslik kalender + islamikalender + islami ilmalik kalender + ISO-8601 kalender + Jaapani kalender + Pärsia kalender + Hiina Vabariigi kalender + järjesta sümbolid + eira järjestuses sümboleid + diakriitikud tavajärjestuses + diakriitikud pöördjärjestuses + väiketäht järjestuses eespool + harilik järjestus + suurtäht järjestuses eespool + tõstutundetu järjestus + tõstutundlik järjestus + järjesta kana eraldi + järjesta kana erinevalt + hiina traditsiooniline sortimisjärjestus (Big5) + varasem sortimisjärjestus (ühilduvuse jaoks) + sõnastiku sortimisjärjestus + Unicode’i sortimise vaikejärjestus + emoji sortimisjärjestus + Euroopa järjestusreeglid + hiina lihtsustatud sortimisjärjestus (GB2312) + telefoniraamatu sortimisjärjestus + foneetiline sortimisjärjestus + pinyin’i sortimisjärjestus + reformitud sortimisjärjestus + üldeesmärgiline otsing + otsing korea alguskonsonandi järgi + standardne sortimisjärjestus + kriipsude sortimisjärjestus + traditsiooniline sortimisjärjestus + võtmete-kriipsude sortimisjärjestus + zhuyin’i sortimisjärjestus + järjesta normaliseerimata + järjesta Unicode’i normaliseerimisega + järjesta numbrid eraldi + järjesta numbrid arvuliselt + järjesta kõik + järjesta ainult alustähed + järjesta diakriitikud, algustähed, laius ja kana kiri + järjesta diakriitikud + järjesta diakriitikud, algustähed ja laius + 12-tunnine süsteem (0–11) + 12-tunnine süsteem (1–12) + 24-tunnine süsteem (0–23) + 24-tunnine süsteem (1–24) + paindlik reavahetuse laad + harilik reavahetuse laad + jäik reavahetuse laad + meetermõõdustik + inglise mõõdustik + USA mõõdustik + idaaraabia numbrid + laiendatud idaaraabia numbrid + armeenia numbrid + väiketähelised armeenia numbrid + bali numbrid + bengali numbrid + braahmi numbrid + tšaakma numbrid + tšaami numbrid + devanaagari numbrid + etioopia numbrid + finantsnumbrid + täislaiusega numbrid + gruusia numbrid + kreeka numbrid + väiketähelised kreeka numbrid + gudžarati numbrid + gurmukhi numbrid + hiina kümnendnumbrid + lihtsustatud hiina keele numbrid + lihtsustatud hiina keele finantsnumbrid + traditsioonilise hiina keele numbrid + traditsioonilise hiina keele finantsnumbrid + heebrea numbrid + jaava numbrid + jaapani numbrid + jaapani finantsnumbrid + kaja-lii numbrid + khmeeri numbrid + kannada numbrid + lao numbrid + araabia numbrid + leptša numbrid + limbu numbrid + malajalami numbrid + mongoli numbrid + meitei numbrid + birma numbrid + kohalikud numbrid + nkoo numbrid + santali numbrid + oria numbrid + osmani numbrid + Rooma numbrid + väiketähelised Rooma numbrid + sauraštra numbrid + šaarada numbrid + sora numbrid + sunda numbrid + taakri numbrid + uue tai-lõõ numbrid + traditsioonilised tamili numbrid + tamili numbrid + telugu numbrid + tai numbrid + tiibeti numbrid + traditsioonilised numbrid + vai numbrid BGN Numbriline Toon UNGEGN - Aktsendid - Täislai + Diakriitikud + Täislaius Poolaius Jamo Pinyin @@ -1101,12 +1296,12 @@ For terms of use, see http://www.unicode.org/copyright.html meetermõõdustik inglise mõõdustik - inglise mõõdustik + USA mõõdustik Keel: {0} - Skript: {0} - Regioon: {0} + Kiri: {0} + Piirkond: {0} @@ -1155,12 +1350,12 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1}, 'kell' {0} - {1} {0} + {1}, 'kell' {0} @@ -1175,6 +1370,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E, d y G MMM y G @@ -1226,8 +1422,8 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm–h:mm a - HH.mm–HH.mm - HH.mm–HH.mm + HH:mm–HH:mm + HH:mm–HH:mm h:mm a – h:mm a v @@ -1235,7 +1431,7 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm–h:mm a v - HH.mm–HH.mm v + HH:mm–HH:mm v HH:mm–HH:mm v @@ -1253,19 +1449,19 @@ For terms of use, see http://www.unicode.org/copyright.html dd.MM–dd.MM - E, dd.MM–E, dd.MM - E, dd.MM–E, dd.MM + E, dd.MM – E, dd.MM + E, dd.MM – E, dd.MM MMM–MMM d.–d. MMM - d. MMM–d. MMM + d. MMM – d. MMM - E, d. MMM–E, d. MMM - E, d. MMM–E, d. MMM + E, d. MMM – E, d. MMM + E, d. MMM – E, d. MMM y–y G @@ -1280,23 +1476,23 @@ For terms of use, see http://www.unicode.org/copyright.html dd.MM.y–dd.MM.y G - E, dd.MM.y–E, dd.MM.y G - E, dd.MM.y–E, dd.MM.y G - E, dd.MM.y–E, dd.MM.y G + E, dd.MM.y – E, dd.MM.y G + E, dd.MM.y – E, dd.MM.y G + E, dd.MM.y – E, dd.MM.y G MMM–MMM y G - MMM y–MMM y G + MMM y – MMM y G d.–d. MMM y G - d. MMM–d. MMM y G - d. MMM y–d. MMM y G + d. MMM – d. MMM y G + d. MMM y – d. MMM y G - E, d. MMM–E, d. MMM y G - E, d. MMM–E, d. MMM y G - E, d. MMM y–E, d. MMM y G + E, d. MMM – E, d. MMM y G + E, d. MMM – E, d. MMM y G + E, d. MMM y – E, d. MMM y G MMMM–MMMM y G @@ -1519,39 +1715,61 @@ For terms of use, see http://www.unicode.org/copyright.html - e.k. - p.k. + AM + PM + keskööl a n p + hommikul + pärastlõunal + õhtul + öösel + keskööl AM - keskpäev + keskpäeval PM + hommikul + pärastlõunal + õhtul + öösel + + + + + kesköö + AM + keskpäev + PM + hommik + pärastlõuna + õhtu + öö - enne meie aega + enne Kristust enne meie ajaarvamist - meie aja järgi + pärast Kristust meie ajaarvamise järgi - e.m.a. - EMA - m.a.j. - MA + eKr + e.m.a + pKr + m.a.j - e.m.a. - ema - m.a.j. - maj + eKr + e.m.a + pKr + m.a.j @@ -1625,8 +1843,8 @@ For terms of use, see http://www.unicode.org/copyright.html E, d E h:mm a E HH:mm - E h:mm:ss a - E HH:mm:ss + E h:mm.ss a + E HH:mm.ss y G MMM y G d. MMM y G @@ -1637,6 +1855,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm.ss a H:mm.ss + h:mm.ss a v + HH:mm.ss v + h:mm a v + HH:mm v M d.M E, d.M @@ -1650,7 +1872,7 @@ For terms of use, see http://www.unicode.org/copyright.html y M.y d.M.y - E, d.M y + E, d.M.y MMM y d. MMM y E, d. MMMM y @@ -1679,8 +1901,8 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm–h:mm a - HH.mm–HH.mm - HH.mm–HH.mm + HH:mm–HH:mm + HH:mm–HH:mm h:mm a – h:mm a v @@ -1688,7 +1910,7 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm–h:mm a v - HH.mm–HH.mm v + HH:mm–HH:mm v HH:mm–HH:mm v @@ -1706,19 +1928,19 @@ For terms of use, see http://www.unicode.org/copyright.html dd.MM–dd.MM - E, dd.MM–E, dd.MM - E, dd.MM–E, dd.MM + E, dd.MM – E, dd.MM + E, dd.MM – E, dd.MM MMM–MMM d.–d. MMM - d. MMM–d. MMM + d. MMM – d. MMM - E, d. MMM–E, d. MMM - E, d. MMM–E, d. MMM + E, d. MMM – E, d. MMM + E, d. MMM – E, d. MMM y–y @@ -1733,23 +1955,23 @@ For terms of use, see http://www.unicode.org/copyright.html dd.MM.y–dd.MM.y - E, dd.MM.y–E, dd.MM.y - E, dd.MM.y–E, dd.MM.y - E, dd.MM.y–E, dd.MM.y + E, dd.MM.y – E, dd.MM.y + E, dd.MM.y – E, dd.MM.y + E, dd.MM.y – E, dd.MM.y MMM–MMM y - MMM y–MMM y + MMM y – MMM y d.–d. MMM y - d. MMM–d. MMM y - d. MMM y–d. MMM y + d. MMM – d. MMM y + d. MMM y – d. MMM y - E, d. MMM–E, d. MMM y - E, d. MMM–E, d. MMM y - E, d. MMM y–E, d. MMM y + E, d. MMM – E, d. MMM y + E, d. MMM – E, d. MMM y + E, d. MMM y – E, d. MMM y MMMM–MMMM y @@ -1800,7 +2022,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Kvartal + kvartal + eelmine kvartal + käesolev kvartal + järgmine kvartal {0} kvartali pärast {0} kvartali pärast @@ -1812,6 +2037,9 @@ For terms of use, see http://www.unicode.org/copyright.html kv + eelmine kv + käesolev kv + järgmine kv {0} kv pärast {0} kv pärast @@ -1823,6 +2051,9 @@ For terms of use, see http://www.unicode.org/copyright.html kv + eelmine kv + käesolev kv + järgmine kv +{0} kv +{0} kv @@ -2067,23 +2298,23 @@ For terms of use, see http://www.unicode.org/copyright.html t - {0} h pärast - {0} h pärast + {0} t pärast + {0} t pärast - {0} h tagasi - {0} h tagasi + {0} t tagasi + {0} t tagasi t - {0} h pärast - {0} h pärast + {0} t pärast + {0} t pärast - {0} h tagasi - {0} h tagasi + {0} t tagasi + {0} t tagasi @@ -2134,12 +2365,12 @@ For terms of use, see http://www.unicode.org/copyright.html sek - {0} s pärast - {0} s pärast + {0} sek pärast + {0} sek pärast - {0} s tagasi - {0} s tagasi + {0} sek tagasi + {0} sek tagasi @@ -2158,7 +2389,7 @@ For terms of use, see http://www.unicode.org/copyright.html - +HH:mm;-HH:mm + +HH:mm;−HH:mm GMT{0} GMT ({0}) @@ -2166,7 +2397,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} (+0) {1} ({0}) - määramata + määramata linn Andorra @@ -2184,7 +2415,7 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla - Tirane + Tirana Jerevan @@ -2223,7 +2454,7 @@ For terms of use, see http://www.unicode.org/copyright.html McMurdo - Rio Gallegos + Río Gallegos Mendoza @@ -2250,10 +2481,10 @@ For terms of use, see http://www.unicode.org/copyright.html Jujuy - Tucuman + Tucumán - Cordoba + Córdoba Buenos Aires @@ -2307,10 +2538,10 @@ For terms of use, see http://www.unicode.org/copyright.html Aruba - Mariehamn + Maarianhamina - Baku + Bakuu Sarajevo @@ -2331,7 +2562,7 @@ For terms of use, see http://www.unicode.org/copyright.html Sofia - Bahrain + Bahrein Bujumbura @@ -2355,7 +2586,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kralendijk - Eirunepe + Eirunepé Rio Branco @@ -2370,22 +2601,22 @@ For terms of use, see http://www.unicode.org/copyright.html Manaus - Cuiaba + Cuiabá - Santarem + Santarém Campo Grande - Belem + Belém - Araguaina + Araguaína - Sao Paulo + São Paulo Bahia @@ -2394,7 +2625,7 @@ For terms of use, see http://www.unicode.org/copyright.html Fortaleza - Maceio + Maceió Recife @@ -2496,7 +2727,7 @@ For terms of use, see http://www.unicode.org/copyright.html Blanc-Sablon - St. John’s + Saint John’s Cocos @@ -2532,13 +2763,13 @@ For terms of use, see http://www.unicode.org/copyright.html Douala - Urumqi + Ürümqi Shanghai - Bogota + Bogotá Costa Rica @@ -2556,7 +2787,7 @@ For terms of use, see http://www.unicode.org/copyright.html Jõulusaar - Nicosia + Nikosia Praha @@ -2583,7 +2814,7 @@ For terms of use, see http://www.unicode.org/copyright.html Alžiir - Galapagos + Galápagos Guayaquil @@ -2610,7 +2841,7 @@ For terms of use, see http://www.unicode.org/copyright.html Madrid - Addis Ababa + Addis Abeba Helsingi @@ -2649,7 +2880,7 @@ For terms of use, see http://www.unicode.org/copyright.html Grenada - Tbilisi + Thbilisi Cayenne @@ -2691,7 +2922,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ateena - South Georgia + Lõuna-Georgia Guatemala @@ -2706,7 +2937,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guyana - Hong Kong + Hongkong Tegucigalpa @@ -2757,7 +2988,7 @@ For terms of use, see http://www.unicode.org/copyright.html Teheran - Reykjavik + Reykjavík Rooma @@ -2796,13 +3027,13 @@ For terms of use, see http://www.unicode.org/copyright.html Comoro - St. Kitts + Saint Kitts Pyongyang - Seoul + Soul Kuveit @@ -2817,7 +3048,7 @@ For terms of use, see http://www.unicode.org/copyright.html Oral - Aqtobe + Aktöbe Kõzõlorda @@ -2832,7 +3063,7 @@ For terms of use, see http://www.unicode.org/copyright.html Beirut - St. Lucia + Saint Lucia Vaduz @@ -2865,7 +3096,7 @@ For terms of use, see http://www.unicode.org/copyright.html Monaco - Chisinau + Chișinău Podgorica @@ -2889,7 +3120,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bamako - Rangoon + Yangon Hovd @@ -2898,7 +3129,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ulaanbaatar - Choibalsan + Tšojbalsan Macau @@ -2937,7 +3168,7 @@ For terms of use, see http://www.unicode.org/copyright.html Hermosillo - Mazatlan + Mazatlán Chihuahua @@ -2952,16 +3183,16 @@ For terms of use, see http://www.unicode.org/copyright.html Monterrey - Mexico City + México Matamoros - Merida + Mérida - Cancun + Cancún Kuala Lumpur @@ -2997,7 +3228,7 @@ For terms of use, see http://www.unicode.org/copyright.html Oslo - Kathmandu + Katmandu Nauru @@ -3012,7 +3243,7 @@ For terms of use, see http://www.unicode.org/copyright.html Auckland - Muscat + Masqaţ Panama @@ -3032,6 +3263,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -3116,6 +3350,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Tšita + Jakutsk @@ -3123,7 +3360,7 @@ For terms of use, see http://www.unicode.org/copyright.html Vladivostok - Khandyga + Handõga Sahhalin @@ -3134,6 +3371,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolõmsk + Kamtšatka @@ -3144,7 +3384,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kigali - Riyadh + Ar-Riyāḑ Guadalcanal @@ -3162,7 +3402,7 @@ For terms of use, see http://www.unicode.org/copyright.html Singapur - St. Helena + Saint Helena Ljubljana @@ -3231,7 +3471,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dili - Asgabat + Aşgabat Tunis @@ -3240,7 +3480,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tongatapu - Istanbul + İstanbul Port of Spain @@ -3375,7 +3615,7 @@ For terms of use, see http://www.unicode.org/copyright.html Vatikan - St. Vincent + Saint Vincent Caracas @@ -3384,7 +3624,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tortola - St. Thomas + Saint Thomas Ho Chi Minh @@ -3422,7 +3662,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Afganistaani aeg + Afganistani aeg @@ -3454,6 +3694,13 @@ For terms of use, see http://www.unicode.org/copyright.html Alaska suveaeg + + + Almatõ aeg + Almatõ standardaeg + Almatõ suveaeg + + Amazonase aeg @@ -3503,6 +3750,20 @@ For terms of use, see http://www.unicode.org/copyright.html Apia suveaeg + + + Aktau aeg + Aktau standardaeg + Aktau suveaeg + + + + + Aktöbe aeg + Aktöbe standardaeg + Aktöbe suveaeg + + Araabia aeg @@ -3754,7 +4015,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Prantsuse Lõunaalade ja Antarktika aeg + Prantsuse Antarktiliste ja Lõunaalade aeg @@ -3894,7 +4155,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Kamtšatka aeg + Petropavlovsk-Kamtšatski aeg Kamtšatka standardaeg Kamtšatka suveaeg @@ -3964,7 +4225,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Maldiivide aeg + Maldiivi aeg @@ -3974,7 +4235,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Marshalli saarte aeg + Marshalli Saarte aeg @@ -4117,9 +4378,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Filipiinide aeg - Filipiinide standardaeg - Filipiinide suveaeg + Filipiini aeg + Filipiini standardaeg + Filipiini suveaeg @@ -4144,6 +4405,13 @@ For terms of use, see http://www.unicode.org/copyright.html Pohnpei aeg + + + Kõzõlorda aeg + Kõzõlorda standardaeg + Kõzõlorda suveaeg + + Réunioni aeg @@ -4177,7 +4445,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Seišellide aeg + Seišelli aeg @@ -4187,7 +4455,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Saalomoni saarte aeg + Saalomoni Saarte aeg @@ -4327,20 +4595,20 @@ For terms of use, see http://www.unicode.org/copyright.html latn - 3 + 2 ,   ; % + - - + ×10^ × NaN - . + : @@ -4428,12 +4696,42 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤;(#,##0.00 ¤) + + + 0 tuh ¤ + 0 tuh ¤ + 00 tuh ¤ + 00 tuh ¤ + 000 tuh ¤ + 000 tuh ¤ + 0 mln ¤ + 0 mln ¤ + 00 mln ¤ + 00 mln ¤ + 000 mln ¤ + 000 mln ¤ + 0 mld ¤ + 0 mld ¤ + 00 mld ¤ + 00 mld ¤ + 000 mld ¤ + 000 mld ¤ + 0 trl ¤ + 0 trl ¤ + 00 trl ¤ + 00 trl ¤ + 000 trl ¤ + 000 trl ¤ + + {0} {1} {0} {1} Andorra peseeta + Andorra peseeta + Andorra peseetat Araabia Ühendemiraatide dirhem @@ -4442,7 +4740,9 @@ For terms of use, see http://www.unicode.org/copyright.html AED - Afganistani afgaani, 1927-2002 + Afganistani afgaani (1927–2002) + Afganistani afgaani (1927–2002) + Afganistani afgaanit (1927–2002) Afganistani afgaani @@ -4450,6 +4750,11 @@ For terms of use, see http://www.unicode.org/copyright.html Afganistani afgaanit AFN + + Albaania lekk (1946–1965) + Albaania lekk (1946–1965) + Albaania lekki (1946–1965) + Albaania lekk Albaania lekk @@ -4475,19 +4780,30 @@ For terms of use, see http://www.unicode.org/copyright.html AOA - Angola kvanza, 1977-1990 + Angola kvanza (1977–1990) + Angola kvanza (1977–1990) + Angola kvanzat (1977–1990) - Angola kvanza, 1990-2000 + Angola kvanza (1990–2000) + Angola kvanza (1990–2000) + Angola kvanzat (1990–2000) - Angola reformitud kvanza, 1995-1999 + Angola reformitud kvanza, 1995–1999 Argentina austral + + Argentina peeso (1881–1970) + Argentina peeso (1881–1970) + Argentina peesot (1881–1970) + - Argentina peeso, 1983-1985 + Argentina peeso (1983–1985) + Argentina peeso (1983–1985) + Argentina peesot (1983–1985) Argentina peeso @@ -4498,6 +4814,8 @@ For terms of use, see http://www.unicode.org/copyright.html Austria šilling + Austria šilling + Austria šillingit Austraalia dollar @@ -4507,13 +4825,15 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Aruba guilder - Aruba guilder - Aruba guilderit + Aruba kulden + Aruba kulden + Aruba kuldnat AWG - Aserbaidžaani manat, 1993-2006 + Aserbaidžaani manat (1993–2006) + Aserbaidžaani manat (1993–2006) + Aserbaidžaani manatit (1993–2006) Aserbaidžaani manat @@ -4522,14 +4842,21 @@ For terms of use, see http://www.unicode.org/copyright.html AZN - Bosnia-Hertsegoviina dinaar + Bosnia ja Hertsegoviina dinaar (1992–1994) + Bosnia ja Hertsegoviina dinaar (1992–1994) + Bosnia ja Hertsegoviina dinaari (1992–1994) - Bosnia-Hertsegoviina mark - Bosnia-Hertsegoviina mark - Bosnia-Hertsegoviina marka + Bosnia ja Hertsegoviina konverteeritav mark + Bosnia ja Hertsegoviina konverteeritav mark + Bosnia ja Hertsegoviina konverteeritavat marka BAM + + Bosnia ja Hertsegoviina uus dinaar (1994–1997) + Bosnia ja Hertsegoviina uus dinaar (1994–1997) + Bosnia ja Hertsegoviina uut dinaari (1994–1997) + Barbadose dollar Barbadose dollar @@ -4546,9 +4873,13 @@ For terms of use, see http://www.unicode.org/copyright.html Belgia konverteeritav frank + Belgia konverteeritav frank + Belgia konverteeritavat franki Belgia frank + Belgia frank + Belgia franki Belgia arveldusfrank @@ -4562,6 +4893,11 @@ For terms of use, see http://www.unicode.org/copyright.html Bulgaaria leevi BGN + + Bulgaaria leev (1879–1952) + Bulgaaria leev (1879–1952) + Bulgaaria leevi (1879–1952) + Bahreini dinaar Bahreini dinaar @@ -4589,17 +4925,34 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Bolivia boliviaano - Bolivia boliviaano - Bolivia boliviaanot + Boliivia boliviaano + Boliivia boliviaano + Boliivia boliviaanot BOB + + Boliivia boliviaano (1863–1963) + Boliivia boliviaano (1863–1963) + Boliivia boliviaanot (1863–1963) + Boliivia peeso + Boliivia peeso + Boliivia peesot + + + Brasiilia uus kruseiro (1967–1986) + Brasiilia uus kruseiro (1967–1986) + Brasiilia uut kruseirot (1967–1986) Brasiilia krusado + + Brasiilia kruseiro (1990–1993) + Brasiilia kruseiro (1990–1993) + Brasiilia kruseirot (1990–1993) + Brasiilia reaal Brasiilia reaal @@ -4607,6 +4960,16 @@ For terms of use, see http://www.unicode.org/copyright.html R$ R$ + + Brasiilia kruseiro (1993–1994) + Brasiilia kruseiro (1993–1994) + Brasiilia kruseirot (1993–1994) + + + Brasiilia kruseiro (1942–1967) + Brasiilia kruseiro (1942–1967) + Brasiilia kruseirot (1942–1967) + Bahama dollar Bahama dollar @@ -4622,6 +4985,8 @@ For terms of use, see http://www.unicode.org/copyright.html Birma kjatt + Birma kjatt + Birma kjatti Botswana pula @@ -4630,7 +4995,9 @@ For terms of use, see http://www.unicode.org/copyright.html BWP - Valgevene uus rubla, 1994-1999 + Valgevene uus rubla (1994–1999) + Valgevene uus rubla (1994–1999) + Valgevene uut rubla (1994–1999) Valgevene rubla @@ -4640,9 +5007,9 @@ For terms of use, see http://www.unicode.org/copyright.html р. - Belize dollar - Belize dollar - Belize dollarit + Belize’i dollar + Belize’i dollar + Belize’i dollarit BZD $ @@ -4665,6 +5032,11 @@ For terms of use, see http://www.unicode.org/copyright.html Šveitsi franki CHF + + Tšiili eskuudo + Tšiili eskuudo + Tšiili eskuudot + Tšiili peeso Tšiili peeso @@ -4680,21 +5052,23 @@ For terms of use, see http://www.unicode.org/copyright.html ¥ - Kolumbia peeso - Kolumbia peeso - Kolumbia peesot + Colombia peeso + Colombia peeso + Colombia peesot COP $ - Costa Rica colón - Costa Rica colón - Costa Rica colóni + Costa Rica koloon + Costa Rica koloon + Costa Rica kolooni CRC - Serbia vana dinaar + Serbia dinaar (2002–2006) + Serbia dinaar (2002–2006) + Serbia dinaari (2002–2006) Kuuba konverteeritav peeso @@ -4710,13 +5084,15 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Roheneemesaarte eskuudo - Roheneemesaarte eskuudo - Roheneemesaarte eskuudot + Cabo Verde eskuudo + Cabo Verde eskuudo + Cabo Verde eskuudot CVE Küprose nael + Küprose nael + Küprose naela Tšehhi kroon @@ -4724,8 +5100,15 @@ For terms of use, see http://www.unicode.org/copyright.html Tšehhi krooni CZK + + Ida-Saksa mark + Ida-Saksa mark + Ida-Saksa marka + Saksa mark + Saksa mark + Saksa marka Djibouti frank @@ -4754,6 +5137,8 @@ For terms of use, see http://www.unicode.org/copyright.html Ecuadori sukre + Ecuadori sukre + Ecuadori sukret Eesti kroon @@ -4777,6 +5162,8 @@ For terms of use, see http://www.unicode.org/copyright.html Hispaania peseeta + Hispaania peseeta + Hispaania peseetat Etioopia birr @@ -4793,6 +5180,8 @@ For terms of use, see http://www.unicode.org/copyright.html Soome mark + Soome mark + Soome marka Fidži dollar @@ -4809,6 +5198,8 @@ For terms of use, see http://www.unicode.org/copyright.html Prantsuse frank + Prantsuse frank + Prantsuse franki Suurbritannia naelsterling @@ -4824,12 +5215,14 @@ For terms of use, see http://www.unicode.org/copyright.html GEL - Ghana sedi + Ghana sedi (1979–2007) + Ghana sedi (1979–2007) + Ghana sedit (1979–2007) - Ghana cedi - Ghana cedi - Ghana cedit + Ghana sedi + Ghana sedi + Ghana sedit GHS @@ -4856,15 +5249,24 @@ For terms of use, see http://www.unicode.org/copyright.html Kreeka drahm + Kreeka drahm + Kreeka drahmi - Guatemala ketsal - Guatemala ketsal - Guatemala ketsalit + Guatemala ketsaal + Guatemala ketsaal + Guatemala ketsaali GTQ + + Portugali Guinea eskuudo + Portugali Guinea eskuudo + Portugali Guinea eskuudot + Guinea-Bissau peeso + Guinea-Bissau peeso + Guinea-Bissau peesot Guyana dollar @@ -4886,10 +5288,15 @@ For terms of use, see http://www.unicode.org/copyright.html Hondurase lempiirat HNL + + Horvaatia dinaar + Horvaatia dinaar + Horvaatia dinaari + Horvaatia kuna Horvaatia kuna - Horvaatia kunat + Horvaatia kuna HRK @@ -4912,9 +5319,18 @@ For terms of use, see http://www.unicode.org/copyright.html Iiri nael + Iiri nael + Iiri naela Iisraeli nael + Iisraeli nael + Iisraeli naela + + + Iisraeli seekel (1980–1985) + Iisraeli seekel (1980–1985) + Iisraeli seekelit (1980–1985) Iisraeli uus seekel @@ -4942,6 +5358,11 @@ For terms of use, see http://www.unicode.org/copyright.html Iraani riaali IRR + + Islandi kroon (1918–1981) + Islandi kroon (1918–1981) + Islandi krooni (1918–1981) + Islandi kroon Islandi kroon @@ -4950,6 +5371,8 @@ For terms of use, see http://www.unicode.org/copyright.html Itaalia liir + Itaalia liir + Itaalia liiri Jamaica dollar @@ -4972,9 +5395,9 @@ For terms of use, see http://www.unicode.org/copyright.html ¥ - Kenya šilling - Kenya šilling - Kenya šillingit + Keenia šilling + Keenia šilling + Keenia šillingit KES @@ -4991,9 +5414,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Komooride frank - Komooride frank - Komooride franki + Komoori frank + Komoori frank + Komoori franki KMF @@ -5002,6 +5425,11 @@ For terms of use, see http://www.unicode.org/copyright.html Põhja-Korea vonni KPW + + Lõuna-Korea vonn (1945–1953) + Lõuna-Korea vonn (1945–1953) + Lõuna-Korea vonni (1945–1953) + Lõuna-Korea vonn Lõuna-Korea vonn @@ -5016,9 +5444,9 @@ For terms of use, see http://www.unicode.org/copyright.html KWD - Caymani saarte dollar - Caymani saarte dollar - Caymani saarte dollarit + Kaimanisaarte dollar + Kaimanisaarte dollar + Kaimanisaarte dollarit KYD $ @@ -5057,6 +5485,8 @@ For terms of use, see http://www.unicode.org/copyright.html Lesotho loti + Lesotho loti + Lesotho lotit Leedu litt @@ -5064,8 +5494,15 @@ For terms of use, see http://www.unicode.org/copyright.html Leedu litti LTL + + Luksemburgi konverteeritav frank + Luksemburgi konverteeritav frank + Luksemburgi konverteeritavat franki + Luksemburgi frank + Luksemburgi frank + Luksemburgi franki Läti latt @@ -5073,6 +5510,11 @@ For terms of use, see http://www.unicode.org/copyright.html Läti latti LVL + + Läti rubla + Läti rubla + Läti rubla + Liibüa dinaar Liibüa dinaar @@ -5085,6 +5527,16 @@ For terms of use, see http://www.unicode.org/copyright.html Maroko dirhemit MAD + + Maroko frank + Maroko frank + Maroko franki + + + Monaco frank + Monaco frank + Monaco franki + Moldova leu Moldova leu @@ -5092,17 +5544,32 @@ For terms of use, see http://www.unicode.org/copyright.html MDL - Madagaskari ariary - Madagaskari ariary - Madagaskari ariaryt + Madagaskari ariari + Madagaskari ariari + Madagaskari ariarit MGA + + Madagaskar frank + Madagaskar frank + Madagaskar franki + - Makedoonia denaar - Makedoonia denaar - Makedoonia denaari + Makedoonia dinaar + Makedoonia dinaar + Makedoonia dinaari MKD + + Makedoonia dinaar (1992–1993) + Makedoonia dinaar (1992–1993) + Makedoonia dinaari (1992–1993) + + + Mali frank + Mali frank + Mali franki + Myanmari kjatt Myanmari kjatt @@ -5117,9 +5584,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Macao pataka - Macao pataka - Macao patakat + Macau pataaka + Macau pataaka + Macau pataakat MOP @@ -5130,6 +5597,13 @@ For terms of use, see http://www.unicode.org/copyright.html Malta liir + Malta liir + Malta liiri + + + Malta nael + Malta nael + Malta naela Mauritiuse ruupia @@ -5137,10 +5611,15 @@ For terms of use, see http://www.unicode.org/copyright.html Mauritiuse ruupiat MUR + + Maldiivi ruupia (1947–1981) + Maldiivi ruupia (1947–1981) + Maldiivi ruupiat (1947–1981) + - Maldiivide ruupia - Maldiivide ruupia - Maldiivide ruupiat + Maldiivi ruupia + Maldiivi ruupia + Maldiivi ruupiat MVR @@ -5157,7 +5636,9 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Mehhiko peeso, 1861-1990 + Mehhiko peeso (1861–1992) + Mehhiko peeso (1861–1992) + Mehhiko peesot (1861–1992) Malaisia ringgit @@ -5165,6 +5646,16 @@ For terms of use, see http://www.unicode.org/copyright.html Malaisia ringgitit MYR + + Mosambiigi eskuudo + Mosambiigi eskuudo + Mosambiigi eskuudot + + + Mosambiigi metikal (1980–2006) + Mosambiigi metikal (1980–2006) + Mosambiigi metikali (1980–2006) + Mosambiigi metikal Mosambiigi metikal @@ -5186,16 +5677,20 @@ For terms of use, see http://www.unicode.org/copyright.html - Nicaragua kordoba + Nicaragua kordoba (1988–1991) + Nicaragua kordoba (1988–1991) + Nicaragua kordobat (1988–1991) - Nicaragua kuldkordoba - Nicaragua kuldkordoba - Nicaragua kuldkordobat + Nicaragua kordoba + Nicaragua kordoba + Nicaragua kordobad NIO Hollandi kulden + Hollandi kulden + Hollandi kuldnat Norra kroon @@ -5238,7 +5733,9 @@ For terms of use, see http://www.unicode.org/copyright.html PEN - Peruu soll + Peruu soll (1863–1965) + Peruu soll (1863–1965) + Peruu solli (1863–1965) Paapua Uus-Guinea kina @@ -5247,9 +5744,9 @@ For terms of use, see http://www.unicode.org/copyright.html PGK - Filipiinide peeso - Filipiinide peeso - Filipiinide peesot + Filipiini peeso + Filipiini peeso + Filipiini peesot PHP @@ -5266,31 +5763,42 @@ For terms of use, see http://www.unicode.org/copyright.html PLN - Poola zlott, 1950-1995 + Poola zlott (1950–1995) + Poola zlott (1950–1995) + Poola zlotti (1950–1995) Portugali eskuudo + Portugali eskuudo + Portugali eskuudot - Paraguai guaranii - Paraguai guaranii - Paraguai guaraniid + Paraguay guaranii + Paraguay guaranii + Paraguay guaraniid PYG - Quatari riaal - Quatari riaal - Quatari riaali + Katari riaal + Katari riaal + Katari riaali QAR + + Rodeesia dollar + Rodeesia dollar + Rodeesia dollarit + - Rumeenia lei, -2005 + Rumeenia leu (1952–2006) + Rumeenia leu (1952–2006) + Rumeenia leud (1952–2006) - Rumeenia lei - Rumeenia lei - Rumeenia leid + Rumeenia leu + Rumeenia leu + Rumeenia leud RON @@ -5306,7 +5814,7 @@ For terms of use, see http://www.unicode.org/copyright.html RUB - Venemaa rubla, 1991-1998 + Venemaa rubla (1991–1998) Rwanda frank @@ -5315,24 +5823,29 @@ For terms of use, see http://www.unicode.org/copyright.html RWF - Saudi-Araabia riaal - Saudi-Araabia riaal - Saudi-Araabia riaali + Saudi Araabia riaal + Saudi Araabia riaal + Saudi Araabia riaali SAR - Saalomoni saarte dollar - Saalomoni saarte dollar - Saalomoni saarte dollarit + Saalomoni Saarte dollar + Saalomoni Saarte dollar + Saalomoni Saarte dollarit SBD $ - Seišelli saarte ruupia - Seišelli saarte ruupia - Seišelli saarte ruupiat + Seišelli ruupia + Seišelli ruupia + Seišelli ruupiat SCR + + Sudaani dinaar (1992–2007) + Sudaani dinaar (1992–2007) + Sudaani dinaari (1992–2007) + Sudaani nael Sudaani nael @@ -5340,7 +5853,9 @@ For terms of use, see http://www.unicode.org/copyright.html SDG - Sudaani nael, 1957-1998 + Sudaani nael (1957–1998) + Sudaani nael (1957–1998) + Sudaani naela (1957–1998) Rootsi kroon @@ -5363,11 +5878,13 @@ For terms of use, see http://www.unicode.org/copyright.html Sloveenia tolar + Sloveenia tolar + Sloveenia tolarit - Slovakkia kroon - Slovakkia kroon - Slovakkia krooni + Slovaki kroon + Slovaki kroon + Slovaki krooni Sierra Leone leoone @@ -5382,14 +5899,16 @@ For terms of use, see http://www.unicode.org/copyright.html SOS - Surinami dollar - Surinami dollar - Surinami dollarit + Suriname dollar + Suriname dollar + Suriname dollarit SRD $ - Surinami kulden + Suriname kulden + Suriname kulden + Suriname kuldnat Lõuna-Sudaani nael @@ -5405,10 +5924,12 @@ For terms of use, see http://www.unicode.org/copyright.html STD - NSVL rubla + NSVL-i rubla - Salvadori koloon + El Salvadori koloon + El Salvadori koloon + El Salvadori kolooni Süüria nael @@ -5427,6 +5948,12 @@ For terms of use, see http://www.unicode.org/copyright.html Tai baat Tai baati ฿ + ฿ + + + Tadžikistani rubla + Tadžikistani rubla + Tadžikistani rubla Tadžikistani somoni @@ -5435,7 +5962,9 @@ For terms of use, see http://www.unicode.org/copyright.html TJS - Türkmenistani manat, 1993-2009 + Türkmenistani manat (1993–2009) + Türkmenistani manat (1993–2009) + Türkmenistani manatit (1993–2009) Türkmenistani manat @@ -5457,14 +5986,18 @@ For terms of use, see http://www.unicode.org/copyright.html Timori eskuudo + Timori eskuudo + Timori eskuudot - Türgi liir + Türgi liir (1922–2005) + Türgi liir (1922–2005) + Türgi liiri (1922–2005) - Türgi uus liir - Türgi uus liir - Türgi uut liiri + Türgi liir + Türgi liir + Türgi liiri TRY @@ -5498,6 +6031,11 @@ For terms of use, see http://www.unicode.org/copyright.html Ukraina karbovanets + + Uganda šilling (1966–1987) + Uganda šilling (1966–1987) + Uganda šillingit (1966–1987) + Uganda šilling Uganda šilling @@ -5517,10 +6055,15 @@ For terms of use, see http://www.unicode.org/copyright.html USA sama päeva dollar + + Uruguay peeso (1975–1993) + Uruguay peeso (1975–1993) + Uruguay peesot (1975–1993) + - Uruguai peeso - Uruguai peeso - Uruguai peesot + Uruguay peeso + Uruguay peeso + Uruguay peesot UYU $ @@ -5531,13 +6074,13 @@ For terms of use, see http://www.unicode.org/copyright.html UZS - Venezuela bolívar (1871–2008) - Venezuela bolívar (1871–2008) + Venezuela boliivar (1871–2008) + Venezuela boliivar (1871–2008) Venezuela boliivarit (1871–2008) - Venezuela bolívar - Venezuela bolívar + Venezuela boliivar + Venezuela boliivar Venezuela boliivarit VEF @@ -5548,6 +6091,11 @@ For terms of use, see http://www.unicode.org/copyright.html + + Vietnami dong (1978–1985) + Vietnami dong (1978–1985) + Vietnami dongi (1978–1985) + Vanuatu vatu Vanuatu vatu @@ -5555,26 +6103,26 @@ For terms of use, see http://www.unicode.org/copyright.html VUV - Lääne-Samoa tala - Lääne-Samoa tala - Lääne-Samoa tala + Samoa taala + Samoa taala + Samoa taalat WST - CFA frank BEAC - CFA frank BEAC - CFA franki BEAC + Kesk-Aafrika CFA frank + Kesk-Aafrika CFA frank + Kesk-Aafrika CFA franki FCFA hõbe - hõbe - hõbedat + troiunts hõbedat + troiuntsi hõbedat kuld - kuld - kulda + troiunts kulda + troiuntsi kulda EURCO @@ -5599,45 +6147,51 @@ For terms of use, see http://www.unicode.org/copyright.html eküü + eküü + eküüd Prantsuse kuldfrank + Prantsuse kuldfrank + Prantsuse kuldfranki Prantsuse UIC-frank - Aafrika ühisfrank BCEAO - Aafrika ühisfrank BCEAO - Aafrika ühisfranki BCEAO + Lääne-Aafrika CFA frank + Lääne-Aafrika CFA frank + Lääne-Aafrika CFA franki CFA pallaadium - pallaadium - pallaadiumit + troiunts pallaadiumit + troiuntsi pallaadiumit - Prantsuse Vaikse-Ookeani frank - Prantsuse Vaikse-Ookeani frank - Prantsuse Vaikse-Ookeani franki + CFP frank + CFP frank + CFP franki CFPF plaatina - plaatina - plaatina + troiunts plaatinat + troiuntsi plaatinat vääringute testkood määramata rahaühik - määramata rahaühik - määramata rahaühikut + (määramata rahaühik) + (määramata rahaühikut) Jeemeni dinaar + Jeemeni dinaar + Jeemeni dinaari Jeemeni riaal @@ -5646,15 +6200,19 @@ For terms of use, see http://www.unicode.org/copyright.html YER - Jugoslaavia uus dinaar + Jugoslaavia uus dinaar (1994–2002) + Jugoslaavia uus dinaar (1994–2002) + Jugoslaavia uut dinaari (1994–2002) - Jugoslaavia konverteeritav dinaar + Jugoslaavia konverteeritav dinaar (1990–1992) + Jugoslaavia konverteeritav dinaar (1990–1992) + Jugoslaavia konverteeritavat dinaari (1990–1992) Lõuna-Aafrika rand Lõuna-Aafrika rand - LAVi randi + Lõuna-Aafrika randi ZAR @@ -5672,7 +6230,19 @@ For terms of use, see http://www.unicode.org/copyright.html Sairi zaire - Zimbabwe dollar + Zimbabwe dollar (1980–2008) + Zimbabwe dollar (1980–2008) + Zimbabwe dollarit (1980–2008) + + + Zimbabwe dollar (2009) + Zimbabwe dollar (2009) + Zimbabwe dollarit (2009) + + + Zimbabwe dollar (2008) + Zimbabwe dollar (2008) + Zimbabwe dollarit (2008) @@ -5686,49 +6256,76 @@ For terms of use, see http://www.unicode.org/copyright.html {0} {1} kohta - maa gravitatsioon - {0} maa gravitatsiooni - {0} maa gravitatsiooni + Maa raskuskiirendus + {0} Maa raskuskiirendus + {0} Maa raskuskiirendust meetrid sekundi ruudu kohta {0} meeter sekundi ruudu kohta {0} meetrit sekundi ruudu kohta - - kaareminut - {0} kaareminut - {0} kaareminut - - - kaaresekund - {0} kaaresekund - {0} kaaresekund - - - kraadi - {0} kraad - {0} kraadi + + täispööre + {0} täispööre + {0} täispööret radiaanid {0} radiaan {0} radiaani - - aakrid - {0} aaker - {0} aakrit + + kraadid + {0} kraad + {0} kraadi + + + kaareminutid + {0} kaareminut + {0} kaareminutit + + + kaaresekundid + {0} kaaresekund + {0} kaaresekundit + + + ruutkilomeetrid + {0} ruutkilomeeter + {0} ruutkilomeetrit hektarid {0} hektar {0} hektarit + + ruutmeetrid + {0} ruutmeeter + {0} ruutmeetrit + {0} ruutmeetri kohta + ruutsentimeetrid {0} ruutsentimeeter {0} ruutsentimeetrit + {0} ruutsentimeetri kohta + + + ruutmiilid + {0} ruutmiil + {0} ruutmiili + + + aakrid + {0} aaker + {0} aakrit + + + ruutjardid + {0} ruutjard + {0} ruutjardi ruutjalad @@ -5739,139 +6336,140 @@ For terms of use, see http://www.unicode.org/copyright.html ruuttollid {0} ruuttoll {0} ruuttolli + {0} ruuttolli kohta - - ruutkilomeetrid - {0} ruutkilomeeter - {0} ruutkilomeetrit - - - ruutmeetrid - {0} ruutmeeter - {0} ruutmeetrit - - - ruutmiili - {0} ruutmiil - {0} ruutmiili - - - ruutjardid - {0} ruutjard - {0} ruutjardi + + karaadid + {0} karaat + {0} karaati - liitreid kilomeetri kohta + liitrid kilomeetri kohta {0} liiter kilomeetri kohta {0} liitrit kilomeetri kohta + + liitrid 100 kilomeetri kohta + liiter 100 kilomeetri kohta + {0} liitrit 100 kilomeetri kohta + - miili galloni kohta + miilid galloni kohta {0} miil galloni kohta {0} miili galloni kohta - - bitid - {0} bitt - {0} bitti - - - baidid - {0} bait - {0} baiti - - - gigabitid - {0} gigabitt - {0} gigabitti - - - gigabaidid - {0} gigabait - {0} gigabaiti - - - kilobitid - {0} kilobitt - {0} kilobitti - - - kilobaidid - {0} kilobait - {0} kilobaiti - - - megabitid - {0} megabitt - {0} megabitti - - - megabaidid - {0} megabait - {0} megabaiti - - - terabitid - {0} terabitt - {0} terabitti - terabaidid {0} terabait {0} terabaiti + + terabitid + {0} terabitt + {0} terabitti + + + gigabaidid + {0} gigabait + {0} gigabaiti + + + gigabitid + {0} gigabitt + {0} gigabitti + + + megabaidid + {0} megabait + {0} megabaiti + + + megabitid + {0} megabitt + {0} megabitti + + + kilobaidid + {0} kilobait + {0} kilobaiti + + + kilobitid + {0} kilobitt + {0} kilobitti + + + baidid + {0} bait + {0} baiti + + + bitid + {0} bitt + {0} bitti + + + sajandid + {0} sajand + {0} sajandit + + + aastad + {0} aasta + {0} aastat + {0} aastas + + + kuud + {0} kuu + {0} kuud + {0} kuus + + + nädalad + {0} nädal + {0} nädalat + {0} nädalas + - ööpäeva + ööpäevad {0} ööpäev {0} ööpäeva + {0} ööpäevas - tundi + tunnid {0} tund {0} tundi - {0}/h + {0} tunnis - - mikrosekundid - {0} mikrosekund - {0} mikrosekundit + + minutid + {0} minut + {0} minutit + {0} minutis + + + sekundid + {0} sekund + {0} sekundit + {0} sekundis millisekundid {0} millisekund {0} millisekundit - - minutid - {0} minut - {0} minutit - - - kuud - {0} kuu - {0} kuud + + mikrosekundid + {0} mikrosekund + {0} mikrosekundit nanosekundid {0} nanosekund {0} nanosekundit - - sekundid - {0} sekund - {0} sekundit - {0}/s - - - nädalad - {0} nädal - {0} nädalat - - - aastad - {0} aasta - {0} aastat - amprid {0} amper @@ -5892,250 +6490,274 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volti + + kilokalorid + {0} kilokalor + {0} kilokalorit + kalorid {0} kalor {0} kalorit - Toidukalorid + toidukalorid {0} toidukalor {0} toidukalorit - - džaulid - {0} džaul - {0} džauli - - - kilokalorid - {0} kilokalor - {0} kilokalorit - kilodžaulid {0} kilodžaul {0} kilodžauli + + džaulid + {0} džaul + {0} džauli + kilovatt-tunnid {0} kilovatt-tund {0} kilovatt-tundi - gigaherts + gigahertsid {0} gigaherts {0} gigahertsi - - herts - {0} herts - {0} hertsi - - - kiloherts - {0} kiloherts - {0} kilohertsi - - megaherts + megahertsid {0} megaherts {0} megahertsi - - astronoomilised ühikud - {0} astronoomiline ühik - {0} astronoomilist ühikut + + kilohertsid + {0} kiloherts + {0} kilohertsi - - sentimeetrid - {0} sentimeeter - {0} sentimeetrit + + hertsid + {0} herts + {0} hertsi + + + kilomeetrid + {0} kilomeeter + {0} kilomeetrit + {0} kilomeetri kohta + + + meetrid + {0} meeter + {0} meetrit + {0} meetri kohta detsimeetrid {0} detsimeeter {0} detsimeetrit - - jalg - {0} jalg - {0} jalga - - - tolli - {0} toll - {0} tolli - - - kilomeetrid - {0} kilomeeter - {0} kilomeetrit - - - valgusaastad - {0} valgusaasta - {0} valgusaastat - - - meetrid - {0} meeter - {0} meetrit - - - mikromeetrid - {0} mikromeeter - {0} mikromeetrit - - - miili - {0} miil - {0} miili + + sentimeetrid + {0} sentimeeter + {0} sentimeetrit + {0} sentimeetri kohta millimeetrid {0} millimeeter {0} millimeetrit + + mikromeetrid + {0} mikromeeter + {0} mikromeetrit + nanomeetrid {0} nanomeeter {0} nanomeetrit - - meremiilid - {0} meremiil - {0} meremiili - - - parsekid - {0} parsek - {0} parsekit - pikomeetrid {0} pikomeeter {0} pikomeetrit + + miilid + {0} miil + {0} miili + - jardi + jardid {0} jard {0} jardi + + jalad + {0} jalg + {0} jalga + {0} jala kohta + + + tollid + {0} toll + {0} tolli + {0} tolli kohta + + + parsekid + {0} parsek + {0} parsekit + + + valgusaastad + {0} valgusaasta + {0} valgusaastat + + + astronoomilised ühikud + {0} astronoomiline ühik + {0} astronoomilist ühikut + + + furlongid + {0} furlong + {0} furlongi + + + süllad + {0} süld + {0} sülda + + + meremiilid + {0} meremiil + {0} meremiili + + + Skandinaavia miilid + {0} Skandinaavia miil + {0} Skandinaavia miili + luks {0} luks {0} luksi - - karaadid - {0} karaat - {0} karaati - - - grammi - {0} gramm - {0} grammi - - - kilogrammi - {0} kilogramm - {0} kilogrammi - tonnid {0} tonn {0} tonni - - mikrogrammid - mikrogramm - {0} mikrogrammi + + kilogrammid + {0} kilogramm + {0} kilogrammi + {0} kilogrammi kohta + + + grammid + {0} gramm + {0} grammi + {0} grammi kohta milligrammid {0} milligramm {0} milligrammi - - untsi - {0} unts - {0} untsi - - - trooja untsid - {0} trooja unts - {0} trooja untsi - - - naela - {0} nael - {0} naela + + mikrogrammid + mikrogramm + {0} mikrogrammi lühikesed tonnid - {0} lühikene tonn + {0} lühike tonn {0} lühikest tonni + + kivid + {0} kivi + {0} kivi + + + naelad + {0} nael + {0} naela + {0} naela kohta + + + untsid + {0} unts + {0} untsi + {0} untsi kohta + + + troiuntsid + {0} troiunts + {0} troiuntsi + + + karaadid + {0} karaat + {0} karaati + gigavatid {0} gigavatt {0} gigavatti - - hobujõud - {0} hobujõud - {0} hobujõudu + + megavatid + {0} megavatt + {0} megavatti kilovatid {0} kilovatt {0} kilovatti - - megavatid - {0} megavatt - {0} megavatti + + vatid + {0} vatt + {0} vatti millivatid {0} millivatt {0} millivatti - - vatid - {0} vatt - {0} vatti + + hobujõud + {0} hobujõud + {0} hobujõudu hektopaskalid {0} hektopaskal {0} hektopaskalit - - tolli elavhõbedasammast - {0} toll elavhõbedasammast - {0} tolli elavhõbedasammast - - - millibaari - {0} millibaar - {0} millibaari - - millimeetrit elavhõbedasammast + millimeetrid elavhõbedasammast {0} millimeeter elavhõbedasammast {0} millimeetrit elavhõbedasammast - naela ruuttolli kohta + naelad ruuttolli kohta {0} nael ruuttolli kohta {0} naela ruuttolli kohta - - karaadid - {0} karaat - {0} karaati + + tollid elavhõbedasammast + {0} toll elavhõbedasammast + {0} tolli elavhõbedasammast + + + millibaarid + {0} millibaar + {0} millibaari kilomeetrid tunnis @@ -6148,50 +6770,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} meetrit sekundis - miili tunnis + miilid tunnis {0} miil tunnis {0} miili tunnis + + sõlm + {0} sõlm + {0} sõlme + + + ° + {0}° + {0}° + - Celsiuse kraadi + Celsiuse kraadid {0} Celsiuse kraad {0} Celsiuse kraadi - Fahrenheiti kraadi + Fahrenheiti kraadid {0} Fahrenheiti kraad {0} Fahrenheiti kraadi - kelvinit + kelvinid {0} kelvin {0} kelvinit - - aaker-jalg - {0} aaker-jalg - {0} aaker-jalga - - - sentiliitrid - {0} sentiliiter - {0} sentiliitrit - - - kuupsentimeetrid - {0} kuupsentimeeter - {0} kuupsentimeetrit - - - kuupjalg - {0} kuupjalg - {0} kuupjalga - - - kuuptollid - {0} kuuptoll - {0} kuuptolli - kuupkilomeetrid {0} kuupkilomeeter @@ -6201,9 +6808,16 @@ For terms of use, see http://www.unicode.org/copyright.html kuupmeetrid {0} kuupmeeter {0} kuupmeetrit + {0} kuupmeetri kohta + + + kuupsentimeetrid + {0} kuupsentimeeter + {0} kuupsentimeetrit + {0} kuupsentimeetri kohta - kuupmiili + kuupmiilid {0} kuupmiil {0} kuupmiili @@ -6212,25 +6826,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kuupjard {0} kuupjardi - - tassid - {0} tass - {0} tassi + + kuupjalad + {0} kuupjalg + {0} kuupjalga - - detsiliitrid - {0} detsiliiter - {0} detsiliitrit + + kuuptollid + {0} kuuptoll + {0} kuuptolli - - vedelike untsid - {0} vedelike unts - {0} vedelike untsi - - - gallonid - {0} gallon - {0} gallonit + + megaliitrid + {0} megaliiter + {0} megaliitrit hektoliitrid @@ -6241,44 +6850,82 @@ For terms of use, see http://www.unicode.org/copyright.html liitrid {0} liiter {0} liitrit + {0} liitri kohta - - megaliitrid - {0} megaliiter - {0} megaliitrit + + detsiliitrid + {0} detsiliiter + {0} detsiliitrit + + + sentiliitrid + {0} sentiliiter + {0} sentiliitrit milliliitrid {0} milliliiter {0} milliliitrit - - pindid - {0} pint - {0} pinti + + aakerjalad + {0} aakerjalg + {0} aakerjalga + + + buššelid + {0} buššel + {0} buššelit + + + gallonid + {0} gallon + {0} gallonit + {0} galloni kohta kvardid {0} kvart {0} kvarti + + pindid + {0} pint + {0} pinti + + + tassid + {0} tass + {0} tassi + + + vedelikuuntsid + {0} vedelikuunts + {0} vedelikuuntsi + - supilusikatäis - {0} supilusikatäis - {0} supilusikatäit + supilusikad + {0} supilusikas + {0} supilusikat - teelusikatäis - {0} teelusikatäis - {0} teelusikatäit + teelusikad + {0} teelusikas + {0} teelusikat + + {0} idapikkust + {0} põhjalaiust + {0} lõunalaiust + {0} läänepikkust + {0}/{1} - maa gravitatsioon + Maa raskuskiirendus {0} G {0} G @@ -6287,43 +6934,65 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + radiaanid + {0} rad + {0} rad + + + kraadid + {0}° + {0}° + kaareminut {0}′ {0}′ - kaaresekund + {0}″ {0}″ - - kraadi - {0}° - {0}° - - - radiaanid - {0} rad - {0} rad - - - aakrid - {0} aaker - {0} aakrit + + km² + {0} km² + {0} km² hektarid {0} ha {0} ha + + + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + + + aakrid + {0} aaker + {0} aakrit + + + ruutjardid + {0} yd² + {0} yd² - ruutjalga + ruutjalad {0} ft² {0} ft² @@ -6331,139 +7000,140 @@ For terms of use, see http://www.unicode.org/copyright.html ruuttollid {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - - - ruutjardid - {0} yd² - {0} yd² + + karaat + {0} ct + {0} ct - liitrit/km - {0} L/km - {0} L/km + l/km + {0} l/km + {0} l/km + + + l/100km + {0} l/100km + {0} l/100km miil/gallon {0} mpg {0} mpg - - bitt - {0} b - {0} b - - - bait - {0} bait - {0} baiti - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB + + TB + {0} TB + {0} TB Tb {0} Tb {0} Tb - - TB - {0} TB - {0} TB + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + bait + {0} bait + {0} baiti + + + bitt + {0} b + {0} b + + + saj + {0} saj + {0} saj + + + aastad + {0} a + {0} a + {0}/a + + + kuud + {0} kuu + {0} kuud + {0}/k + + + näd + {0} näd + {0} näd + {0}/näd - ööpäeva + päevad {0} päev {0} päeva + {0}/ööp - h - {0} h - {0} h - {0}/h + t + {0} t + {0} t + {0}/t + + + min + {0} min + {0} min + {0}/min + + + sek + {0} sek + {0} sek + {0}/sek + + + ms + {0} ms + {0} ms μs {0} μs {0} μs - - millisekundit - {0} ms - {0} ms - - - min - {0} min - {0} min - - - kuud - {0} kuu - {0} kuud - ns {0} ns {0} ns - - s - {0} s - {0} s - {0}/s - - - nädalad - {0} nädal - {0} nädalat - - - aastad - {0} a - {0} a - amprid {0} A @@ -6484,6 +7154,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -6494,21 +7169,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - džaulid - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + džaulid + {0} J + {0} J + kW-tund {0} kWh @@ -6519,36 +7189,74 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - - {0} aü - {0} aü + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + meetrid + {0} m + {0} m + {0}/m dm {0} dm {0} dm + + cm + {0} cm + {0} cm + {0}/cm + + + mm + {0} mm + {0} mm + + + µm + {0} µm + {0} µm + + + nm + {0} nm + {0} nm + + + pm + {0} pm + {0} pm + + + mi + {0} miil + {0} miili + + + jardid + {0} jard + {0} jardi + ft {0} jalg @@ -6559,161 +7267,129 @@ For terms of use, see http://www.unicode.org/copyright.html {0} toll {0} tolli - - km - {0} km - {0} km + + parsekid + {0} pc + {0} pc valgusaastad {0} valgusa. {0} valgusa. - - meetrid - {0} m - {0} m + + + {0} aü + {0} aü - - µm - {0} µm - {0} µm + + furlongid - - mi - {0} miil - {0} miili - - - mm - {0} mm - {0} mm - - - nm - {0} nm - {0} nm + + süllad nmi {0} nmi {0} nmi - - parsekid - {0} pc - {0} pc - - - pm - {0} pm - {0} pm - - - jardi - {0} jard - {0} jardi - lx {0} lx {0} lx - - karaat - {0} ct - {0} ct - - - grammi - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + g + {0} g + {0} g + {0}/g mg {0} mg {0} mg + + µg + {0} µg + {0} µg + + + lüh t + {0} lüh t + {0} lüh t + + + kivid + + + lb + {0} lb + {0} lb + {0}/lb + oz {0} oz {0} oz + {0}/oz oz t {0} oz t {0} oz t - - lb - {0} lb - {0} lb - - - lüh. tonnid - {0} lüh. t - {0} lüh. t + + ct + {0} ct + {0} ct GW {0} GW {0} GW - - hj - {0} hj - {0} hj + + MW + {0} MW + {0} MW kW {0} kW {0} kW - - MW - {0} MW - {0} MW + + vatid + {0} W + {0} W mW {0} mW {0} mW - - vatid - {0} W - {0} W + + hj + {0} hj + {0} hj hPa {0} hPa {0} hPa - - tolli elavhõbedasammast - {0} toll Hg - {0} tolli Hg - - - mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -6724,10 +7400,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - karaat - {0} ct - {0} ct + + in Hg + {0} in Hg + {0} in Hg + + + mbar + {0} mbar + {0} mbar km/h @@ -6744,6 +7425,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + ° + {0}° + {0}° + °C {0} °C @@ -6759,31 +7445,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - aaker ft - {0} ac ft - {0} ac ft - - - cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - kuuptollid - {0} toll³ - {0} tolli³ - km³ {0} km³ @@ -6793,9 +7454,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ - kuupmiili + kuupmiilid {0} mi³ {0} mi³ @@ -6804,25 +7472,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - tass - {0} tass - {0} tassi + + ft³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl + + kuuptollid + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml hl @@ -6833,27 +7496,57 @@ For terms of use, see http://www.unicode.org/copyright.html liitrid {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl ml {0} ml {0} ml - - pindid - {0} pt - {0} pt + + aakerjalg + {0} ac ft + {0} ac ft + + + buššelid + + + gal + {0} gal + {0} gal + {0}/gal kvart {0} qt {0} qt + + pindid + {0} pt + {0} pt + + + tass + {0} tass + {0} tassi + + + fl oz + {0} fl oz + {0} fl oz + spl {0} spl @@ -6864,6 +7557,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tl {0} tl + + {0} ip + {0} pl + {0} ll + {0} lp + @@ -6873,6 +7572,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}G {0}G + + {0}° + {0}° + {0}′ {0}′ @@ -6881,104 +7584,88 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} aaker - {0} aakrit + + {0} km² + {0} km² - {0}ha - {0}ha - - - {0} ft² - {0} ft² - - - {0}km² - {0}km² + {0} ha + {0} ha - {0}m² - {0}m² + {0} m² + {0} m² {0} mi² {0} mi² - - ööpäeva - {0} p - {0} p + + {0} aaker + {0} aakrit - - h - {0} h - {0} h + + {0} ft² + {0} ft² - - millisekundit - {0}ms - {0}ms - - - min - {0} min - {0} min - - - kuud - {0} k - {0} k - - - s - {0} s - {0} s - - - nädalad - {0} n - {0} n + + {0} l/100km + {0} l/100km a {0} a {0} a - - cm - {0} cm - {0} cm + + kuud + {0} k + {0} k - - {0} jalg - {0} jalga + + n + {0} n + {0} n - - {0} toll - {0} tolli + + päev + {0} p + {0} p + + + t + {0} t + {0} t + + + min + {0} min + {0} min + + + s + {0} s + {0} s + + + ms + {0} ms + {0} ms km {0} km {0} km - - {0} valgusa. - {0} valgusa. - m {0} m {0} m - - {0} miil - {0} miili + + cm + {0} cm + {0} cm mm @@ -6990,36 +7677,48 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} miil + {0} miili + {0} jard {0} jardi - - gramm - {0} g - {0} g + + {0} jalg + {0} jalga + + + {0} toll + {0} tolli + + + {0} valgusa. + {0} valgusa. kg {0} kg {0} kg - - {0} oz - {0} oz + + gramm + {0} g + {0} g + + + lüh t + {0} lüh t + {0} lüh t {0} lb {0} lb - - lüh. tonnid - {0} lüh. t - {0} lüh. t - - - {0} hj - {0} hj + + {0} oz + {0} oz {0}kW @@ -7029,6 +7728,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}W {0}W + + {0} hj + {0} hj + {0} hPa {0} hPa @@ -7043,12 +7746,12 @@ For terms of use, see http://www.unicode.org/copyright.html km/h - {0}km/h - {0}km/h + {0} km/h + {0} km/h - {0}m/s - {0}m/s + {0} m/s + {0} m/s {0} mi/h @@ -7056,8 +7759,8 @@ For terms of use, see http://www.unicode.org/copyright.html °C - {0} ° - {0} ° + {0} °C + {0} °C °F @@ -7077,15 +7780,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l + + {0} E + {0} N + {0} S + {0} W + h:mm - h:mm:ss + h:mm.ss - m:ss + m.ss diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/et_EE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/et_EE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/et_EE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/et_EE.xml index 1027e79e890..4eba2ec9861 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/et_EE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/et_EE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/eu.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/eu.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/eu.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/eu.xml index 9928a235869..361239586b3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/eu.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/eu.xml @@ -1,13 +1,12 @@ - - - + @@ -222,7 +221,7 @@ For terms of use, see http://www.unicode.org/copyright.html sundanera suediera swahili - Kongoko swahilia + Kongoko swahilia tamilera teluguera tesoera @@ -348,7 +347,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angila Albania Armenia - Holandarren Antillak Angola Antartika Argentina @@ -637,95 +635,95 @@ For terms of use, see http://www.unicode.org/copyright.html Erabilera pribatua - Digitu arabiar-hindikoak - Digitu arabiar-hindiko hedatuak - Zenbaki armeniarrak - Zenbaki armeniarrak minuskulaz - Digitu bengalarrak - Txinera tradizionalaren alfabetoa-Big5 - Egutegi budista - Txinatar egutegia - Egutegi coptiarra - Dangi egutegia - Digitu devanagariak - Hurrenkera alfabetikoa - Unicode hurrenkera lehenetsia - Zenbaki etiopiarrak - Egutegi etiopiarra - Amete Alem egutegi etiopiarra - Finantza-zenbakiak - Zabalera osoko digituak - Txinera sinplifikatuaren alfabetoa -GB2312 - Zenbaki georgiarrak - Egutegi gregoriarra - Zenbaki grekoak - Zenbaki grekoak minuskulaz - Digitu gujaratarrak - Digitu gurmukhiak - Zenbaki hamartar txinatarrak - Zenbaki txinatar sinplifikatuak - Finantzetarako zenbaki txinatar sinplifikatuak - Zenbaki txinatar tradizionalak - Finantzetarako zenbaki txinatar tradizionalak - Zenbaki hebrearrak - Hebrear egutegia - Ordenatu guztiak - Indiar egutegia - Islamiar egutegia - Islamiar egutegi zibila - ISO-8601 egutegia - Japoniar egutegia - Zenbaki japoniarrak - Finantzetarako zenbaki japoniarrak - Digitu khmerarrak - Digitu kannadarrak - Digitu laostarrak - Digitu mendebaldarrak - Ordenatu minuskulak lehenik - Digitu malayalamarrak - Digitu mongoliarrak - Digitu birmaniarrak - Zenbaki-sistema - Ordenatu azentuak modu normalean - Ordenatu maiuskulak modu normalean - Ordenatu maiuskulak eta minuskulak bereizi gabe - Ordenatu kanak bereizita - Ordenatu arauak kontuan hartu gabe - Ordenatu digituak banaka - Ordenatu ikurrak - Digitu oriyarrak - Egutegi persiarra - Telefonoen zerrenda - Ordenatzeko irizpide fonetikoa - Pinyin hurrenkera - Ordenatu oinarrizko hizkiak soilik - Ordenatu azentuak / maiuskula eta minuskulak / zabalera / kanak - Erreformaren araberako hurrenkera - Txinako Errepublikako egutegia - Zenbaki erromatarrak - Zenbaki erromatarrak minuskulaz - Bilaketa orokorra - Bilatu hangularen lehen kontsonantearen arabera - Ordenatu azentuak - Ordenatu ikurrei ez ikusi eginda - Ordenatzeko irizpide estandarra - Tarteen araberako hurrenkera - Zenbaki tamilar tradizionalak - Digitu tamilarrak - Digitu teluguarrak - Ordenatu azentuak / maiuskula eta minuskulak / zabalera - Digitu thailandiarrak - Digitu tibetarrak - Tradizionala - Zenbaki tradizionalak - Radical trazuen hurrenkera - Ordenatu maiuskulak lehenik - Vai digituak - Ordenatu azentuak alderantziz - Ordenatu maiuskulak eta minuskulak bereizita - Ordenatu kanak desberdin - Ordenatu Unicode arauen arabera - Ordenatu digituak zenbakien arabera + Egutegi budista + Txinatar egutegia + Egutegi coptiarra + Dangi egutegia + Egutegi etiopiarra + Amete Alem egutegi etiopiarra + Egutegi gregoriarra + Hebrear egutegia + Indiar egutegia + Islamiar egutegia + Islamiar egutegi zibila + ISO-8601 egutegia + Japoniar egutegia + Egutegi persiarra + Txinako Errepublikako egutegia + Ordenatu ikurrak + Ordenatu ikurrei ez ikusi eginda + Ordenatu azentuak modu normalean + Ordenatu azentuak alderantziz + Ordenatu minuskulak lehenik + Ordenatu maiuskulak modu normalean + Ordenatu maiuskulak lehenik + Ordenatu maiuskulak eta minuskulak bereizi gabe + Ordenatu maiuskulak eta minuskulak bereizita + Ordenatu kanak bereizita + Ordenatu kanak desberdin + Txinera tradizionalaren alfabetoa-Big5 + Hurrenkera alfabetikoa + Unicode hurrenkera lehenetsia + Txinera sinplifikatuaren alfabetoa -GB2312 + Telefonoen zerrenda + Ordenatzeko irizpide fonetikoa + Pinyin hurrenkera + Erreformaren araberako hurrenkera + Bilaketa orokorra + Bilatu hangularen lehen kontsonantearen arabera + Ordenatzeko irizpide estandarra + Tarteen araberako hurrenkera + Tradizionala + Radical trazuen hurrenkera + Ordenatu arauak kontuan hartu gabe + Ordenatu Unicode arauen arabera + Ordenatu digituak banaka + Ordenatu digituak zenbakien arabera + Ordenatu guztiak + Ordenatu oinarrizko hizkiak soilik + Ordenatu azentuak / maiuskula eta minuskulak / zabalera / kanak + Ordenatu azentuak + Ordenatu azentuak / maiuskula eta minuskulak / zabalera + Digitu arabiar-hindikoak + Digitu arabiar-hindiko hedatuak + Zenbaki armeniarrak + Zenbaki armeniarrak minuskulaz + Digitu bengalarrak + Digitu devanagariak + Zenbaki etiopiarrak + Finantza-zenbakiak + Zabalera osoko digituak + Zenbaki georgiarrak + Zenbaki grekoak + Zenbaki grekoak minuskulaz + Digitu gujaratarrak + Digitu gurmukhiak + Zenbaki hamartar txinatarrak + Zenbaki txinatar sinplifikatuak + Finantzetarako zenbaki txinatar sinplifikatuak + Zenbaki txinatar tradizionalak + Finantzetarako zenbaki txinatar tradizionalak + Zenbaki hebrearrak + Zenbaki japoniarrak + Finantzetarako zenbaki japoniarrak + Digitu khmerarrak + Digitu kannadarrak + Digitu laostarrak + Digitu mendebaldarrak + Digitu malayalamarrak + Digitu mongoliarrak + Digitu birmaniarrak + Zenbaki-sistema + Digitu oriyarrak + Zenbaki erromatarrak + Zenbaki erromatarrak minuskulaz + Zenbaki tamilar tradizionalak + Digitu tamilarrak + Digitu teluguarrak + Digitu thailandiarrak + Digitu tibetarrak + Zenbaki tradizionalak + Vai digituak BGN bihurketa @@ -763,10 +761,10 @@ For terms of use, see http://www.unicode.org/copyright.html ? - " - " - " - " + + + + @@ -950,7 +948,7 @@ For terms of use, see http://www.unicode.org/copyright.html G y('e')'ko' MMMM dd, EEEE – MMMM dd, EEEE G y('e')'ko' MMMM dd, EEEE – MMMM dd, EEEE - G y('e')'ko' MMMM dd, EEEE – MMMM dd, EEEE + G y('e')'ko' MMMM dd, EEEE – y('e')'ko' MMMM dd, EEEE G y('e')'ko' MMMM – MMMM @@ -1178,15 +1176,26 @@ For terms of use, see http://www.unicode.org/copyright.html g - e a AM - eguerdia PM + + + gauerdia + AM + PM + goizaldea + goiza + eguerdia + arratsaldea + iluntzea + gaua + + @@ -1430,6 +1439,9 @@ For terms of use, see http://www.unicode.org/copyright.html urtea + aurreko urtea + aurten + hurrengo urtea {0} urte barru {0} urte barru @@ -1441,6 +1453,9 @@ For terms of use, see http://www.unicode.org/copyright.html urtea + aurreko urtea + aurten + hurrengo urtea {0} urte barru {0} urte barru @@ -4085,6 +4100,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤;(#,##0.00 ¤) + + + 0000 ¤ + 0000 ¤ + 00000 ¤ + 00000 ¤ + 000000 ¤ + 000000 ¤ + 0 M ¤ + 0 M ¤ + 00 M ¤ + 00 M ¤ + 000 M ¤ + 000 M ¤ + 0000 M ¤ + 0000 M ¤ + 00000 M ¤ + 00000 M ¤ + 000000 M ¤ + 000000 M ¤ + 0 B ¤ + 0 B ¤ + 00 B ¤ + 00 B ¤ + 000 B ¤ + 000 B ¤ + + {0} {1} {0} {1} @@ -4933,6 +4976,7 @@ For terms of use, see http://www.unicode.org/copyright.html Thailandiako baht Thailandiako baht ฿ + ฿ Tajikistango somonia @@ -5114,6 +5158,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metro segundo karratuko {0} metro segundo karratuko + + radian + {0} radian + {0} radian + + + gradu + {0} gradu + {0} gradu + minutu {0} minutu @@ -5124,31 +5178,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0} segundo {0} segundo - - gradu - {0} gradu - {0} gradu - - - radian - {0} radian - {0} radian - - - akre - {0} akre - {0} akre + + kilometro karratu + {0} kilometro karratu + {0} kilometro karratu hektarea {0} hektarea {0} hektarea + + metro karratu + {0} metro karratu + {0} metro karratu + cm² {0} cm² {0} cm² + + milia karratu + {0} milia karratu + {0} milia karratu + + + akre + {0} akre + {0} akre + + + yarda karratu + {0} yarda karratu + {0} yarda karratu + oin karratu {0} oin karratu @@ -5159,25 +5223,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hazbete karratu {0} hazbete karratu - - kilometro karratu - {0} kilometro karratu - {0} kilometro karratu - - - metro karratu - {0} metro karratu - {0} metro karratu - - - milia karratu - {0} milia karratu - {0} milia karratu - - - yarda karratu - {0} yarda karratu - {0} yarda karratu + + kilate + {0} kilate + {0} kilate litro kilometroko @@ -5189,55 +5238,70 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milia galoiko {0} milia galoiko - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - gigabit - {0} gigabit - {0} gigabit - - - gigabyte - {0} gigabyte - {0} gigabyte - - - kilobit - {0} kilobit - {0} kilobit - - - kilobyte - {0} kilobyte - {0} kilobyte - - - megabit - {0} megabit - {0} megabit - - - megabyte - {0} megabyte - {0} megabyte + + terabyte + {0} terabyte + {0} terabyte terabit {0} terabit {0} terabit - - terabyte - {0} terabyte - {0} terabyte + + gigabyte + {0} gigabyte + {0} gigabyte + + + gigabit + {0} gigabit + {0} gigabit + + + megabyte + {0} megabyte + {0} megabyte + + + megabit + {0} megabit + {0} megabit + + + kilobyte + {0} kilobyte + {0} kilobyte + + + kilobit + {0} kilobit + {0} kilobit + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + urte + {0} urte + {0} urte + + + hilabete + {0} hilabete + {0} hilabete + + + aste + {0} aste + {0} aste egun @@ -5250,46 +5314,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ordu {0}/h - - mikrosegundo - {0} mikrosegundo - {0} mikrosegundo - - - milisegundo - {0} milisegundo - {0} milisegundo - minutu {0} minutu {0} minutu - - hilabete - {0} hilabete - {0} hilabete - - - nanosegundo - {0} nanosegundo - {0} nanosegundo - segundo {0} segundo {0} segundo {0}/s - - aste - {0} aste - {0} aste + + milisegundo + {0} milisegundo + {0} milisegundo - - urte - {0} urte - {0} urte + + mikrosegundo + {0} mikrosegundo + {0} mikrosegundo + + + nanosegundo + {0} nanosegundo + {0} nanosegundo ampere @@ -5311,6 +5360,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volt + + kilokaloria + {0} kilokaloria + {0} kilokaloria + kaloria {0} kaloria @@ -5321,21 +5375,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kaloria {0} kaloria - - joule - {0} joule - {0} joule - - - kilokaloria - {0} kilokaloria - {0} kilokaloria - kilojoule {0} kilojoule {0} kilojoule + + joule + {0} joule + {0} joule + kilowatt-ordu {0} kilowatt-ordu @@ -5346,35 +5395,70 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigahertz {0} gigahertz - - hertz - {0} hertz - {0} hertz + + megahertz + {0} megahertz + {0} megahertz kilohertz {0} kilohertz {0} kilohertz - - megahertz - {0} megahertz - {0} megahertz + + hertz + {0} hertz + {0} hertz - - unitate astronomiko - {0} unitate astronomiko - {0} unitate astronomiko + + kilometro + {0} kilometro + {0} kilometro + + + metro + {0} metro + {0} metro + + + dezimetro + {0} dezimetro + {0} dezimetro zentimetro {0} zentimetro {0} zentimetro - - dezimetro - {0} dezimetro - {0} dezimetro + + milimetro + {0} milimetro + {0} milimetro + + + mikrometro + {0} mikrometro + {0} mikrometro + + + nanometro + {0} nanometro + {0} nanometro + + + pikometro + {0} pikometro + {0} pikometro + + + milia + {0} milia + {0} milia + + + yarda + {0} yarda + {0} yarda oin @@ -5386,96 +5470,66 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hazbete {0} hazbete - - kilometro - {0} kilometro - {0} kilometro + + parsec + {0} parsec + {0} parsec argi-urte {0} argi-urte {0} argi-urte - - metro - {0} metro - {0} metro - - - mikrometro - {0} mikrometro - {0} mikrometro - - - milia - {0} milia - {0} milia - - - milimetro - {0} milimetro - {0} milimetro - - - nanometro - {0} nanometro - {0} nanometro + + unitate astronomiko + {0} unitate astronomiko + {0} unitate astronomiko milia nautiko {0} milia nautiko {0} milia nautiko - - parsec - {0} parsec - {0} parsec - - - pikometro - {0} pikometro - {0} pikometro - - - yarda - {0} yarda - {0} yarda - lux {0} lux {0} lux - - kilate - {0} kilate - {0} kilate - - - gramo - {0} gramo - {0} gramo - - - kilogramo - {0} kilogramo - {0} kilogramo - tona {0} tona {0} tona - - mikrogramo - {0} mikrogramo - {0} mikrogramo + + kilogramo + {0} kilogramo + {0} kilogramo + + + gramo + {0} gramo + {0} gramo miligramo {0} miligramo {0} miligramo + + mikrogramo + {0} mikrogramo + {0} mikrogramo + + + AEBetako tona + {0} AEBetako tona + {0} AEBetako tona + + + libra + {0} libra + {0} libra + ontza {0} ontza @@ -5486,61 +5540,46 @@ For terms of use, see http://www.unicode.org/copyright.html {0} troy ontza {0} troy ontza - - libra - {0} libra - {0} libra - - - AEBetako tona - {0} AEBetako tona - {0} AEBetako tona + + kilate + {0} kilate + {0} kilate gigawatt {0} gigawatt {0} gigawatt - - zaldi-potentzia - {0} zaldi-potentzia - {0} zaldi-potentzia + + megawatt + {0} megawatt + {0} megawatt kilowatt {0} kilowatt {0} kilowatt - - megawatt - {0} megawatt - {0} megawatt + + watt + {0} watt + {0} watt miliwatt {0} miliwatt {0} miliwatt - - watt - {0} watt - {0} watt + + zaldi-potentzia + {0} zaldi-potentzia + {0} zaldi-potentzia hektopascal {0} hektopascal {0} hektopascal - - merkurio-hazbete - {0} merkurio-hazbete - {0} merkurio-hazbete - - - milibar - {0} milibar - {0} milibar - merkurio-milimetro {0} merkurio-milimetro @@ -5551,10 +5590,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} libra hazbete karratuko {0} libra hazbete karratuko - - kilate - {0} kilate - {0} kilate + + merkurio-hazbete + {0} merkurio-hazbete + {0} merkurio-hazbete + + + milibar + {0} milibar + {0} milibar kilometro orduko @@ -5586,31 +5630,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvin gradu {0} kelvin gradu - - akre-oin - {0} akre-oin - {0} akre-oin - - - zentilitro - {0} zentilitro - {0} zentilitro - - - zentimetro kubiko - {0} zentimetro kubiko - {0} zentimetro kubiko - - - oin kubiko - {0} oin kubiko - {0} oin kubiko - - - hazbete kubiko - {0} hazbete kubiko - {0} hazbete kubiko - kilometro kubiko {0} kilometro kubiko @@ -5621,6 +5640,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metro kubiko {0} metro kubiko + + zentimetro kubiko + {0} zentimetro kubiko + {0} zentimetro kubiko + milia kubiko {0} milia kubiko @@ -5631,25 +5655,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yarda kubiko {0} yarda kubiko - - katilukada - {0} katilukada - {0} katilukada + + oin kubiko + {0} oin kubiko + {0} oin kubiko - - dezilitro - {0} dezilitro - {0} dezilitro + + hazbete kubiko + {0} hazbete kubiko + {0} hazbete kubiko - - ontza likido - {0} ontza likido - {0} ontza likido - - - galoi - {0} galoi - {0} galoi + + megalitro + {0} megalitro + {0} megalitro hektolitro @@ -5661,26 +5680,51 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litro {0} litro - - megalitro - {0} megalitro - {0} megalitro + + dezilitro + {0} dezilitro + {0} dezilitro + + + zentilitro + {0} zentilitro + {0} zentilitro mililitro {0} mililitro {0} mililitro - - pinta - {0} pinta - {0} pinta + + akre-oin + {0} akre-oin + {0} akre-oin + + + galoi + {0} galoi + {0} galoi galoi-laurden {0} galoi-laurden {0} galoi-laurden + + pinta + {0} pinta + {0} pinta + + + katilukada + {0} katilukada + {0} katilukada + + + ontza likido + {0} ontza likido + {0} ontza likido + koilarakada {0} koilarakada @@ -5706,6 +5750,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rad + {0} rad + {0} rad + + + gradu + {0}° + {0}° + minutu {0}′ @@ -5716,31 +5770,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - gradu - {0}° - {0}° - - - rad - {0} rad - {0} rad - - - akre - {0} ac - {0} ac + + km² + {0} km² + {0} km² hektarea {0} ha {0} ha + + + {0} m² + {0} m² + cm² {0} cm² {0} cm² + + mi² + {0} mi² + {0} mi² + + + akre + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² + ft² {0} ft² @@ -5751,25 +5815,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt l/km @@ -5781,55 +5830,70 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mpg {0} mpg - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB + + TB + {0} TB + {0} TB Tb {0} Tb {0} Tb - - TB - {0} TB - {0} TB + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + urte + {0} urte + {0} urte + + + hilabete + {0} hilabete + {0} hilabete + + + aste + {0} aste + {0} aste egun @@ -5842,46 +5906,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0}/h - - μs - {0} μs - {0} μs - - - miliseg. - {0} ms - {0} ms - min {0} min {0} min - - hilabete - {0} hilabete - {0} hilabete - - - ns - {0} ns - {0} ns - seg {0} s {0} s {0}/s - - aste - {0} aste - {0} aste + + miliseg. + {0} ms + {0} ms - - urte - {0} urte - {0} urte + + μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns A @@ -5903,6 +5952,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -5913,21 +5967,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + J + {0} J + {0} J + kWh {0} kWh @@ -5938,35 +5987,70 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au + + km + {0} km + {0} km + + + m + {0} m + {0} m + + + dm + {0} dm + {0} dm cm {0} cm {0} cm - - dm - {0} dm - {0} dm + + mm + {0} mm + {0} mm + + + µm + {0} µm + {0} µm + + + nm + {0} nm + {0} nm + + + pm + {0} pm + {0} pm + + + milia + {0} mi + {0} mi + + + yd + {0} yd + {0} yd oin @@ -5978,96 +6062,66 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in {0} in - - km - {0} km - {0} km + + pc + {0} pc + {0} pc argi-urte {0} ly {0} ly - - m - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - milia - {0} mi - {0} mi - - - mm - {0} mm - {0} mm - - - nm - {0} nm - {0} nm + + au + {0} au + {0} au nmi {0} nmi {0} nmi - - pc - {0} pc - {0} pc - - - pm - {0} pm - {0} pm - - - yd - {0} yd - {0} yd - lx {0} lx {0} lx - - CD - {0} CD - {0} CD - - - g - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + + + g + {0} g + {0} g mg {0} mg {0} mg + + µg + {0} µg + {0} µg + + + tn + {0} tn + {0} tn + + + lb + {0} lb + {0} lb + oz {0} oz @@ -6078,61 +6132,46 @@ For terms of use, see http://www.unicode.org/copyright.html {0} oz t {0} oz t - - lb - {0} lb - {0} lb - - - tn - {0} tn - {0} tn + + CD + {0} CD + {0} CD GW {0} GW {0} GW - - hp - {0} hp - {0} hp + + MW + {0} MW + {0} MW kW {0} kW {0} kW - - MW - {0} MW - {0} MW + + W + {0} W + {0} W mW {0} mW {0} mW - - W - {0} W - {0} W + + hp + {0} hp + {0} hp hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - - - mb - {0} mb - {0} mb - mm Hg {0} mm Hg @@ -6143,10 +6182,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kt - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + + + mb + {0} mb + {0} mb km/h @@ -6178,31 +6222,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - - - cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -6213,6 +6232,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + + cm³ + {0} cm³ + {0} cm³ + mi³ {0} mi³ @@ -6223,25 +6247,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - c - {0} c - {0} c + + ft³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl + + in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml hl @@ -6253,26 +6272,51 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l - - Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl ml {0} ml {0} ml - - pt - {0} pt - {0} pt + + ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal qt {0} qt {0} qt + + pt + {0} pt + {0} pt + + + c + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + tbsp {0} tbsp @@ -6292,6 +6336,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}′ {0}′ @@ -6300,26 +6348,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} ac - {0} ac + + {0} km² + {0} km² {0} ha {0} ha - - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} m² {0} m² @@ -6328,6 +6364,29 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} ac + {0} ac + + + {0} ft² + {0} ft² + + + urte + {0} urte + {0} urte + + + hilabete + {0} hil. + {0} hil. + + + aste + {0} aste + {0} aste + egun {0} egun @@ -6338,66 +6397,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0} h - - mseg. - {0} ms - {0} ms - min {0} min {0} min - - hilabete - {0} hil. - {0} hil. - seg {0} s {0} s - - aste - {0} aste - {0} aste - - - urte - {0} urte - {0} urte - - - cm - {0} cm - {0} cm - - - {0} ft - {0} ft - - - {0} in - {0} in + + mseg. + {0} ms + {0} ms km {0} km {0} km - - {0} ly - {0} ly - metro {0} m {0} m - - {0} mi - {0} mi + + cm + {0} cm + {0} cm mm @@ -6408,31 +6436,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} mi + {0} mi + {0} yd {0} yd - - gramo - {0} g - {0} g + + {0} ft + {0} ft + + + {0} in + {0} in + + + {0} ly + {0} ly kg {0} kg {0} kg - - {0} oz - {0} oz + + gramo + {0} g + {0} g {0} lb {0} lb - - {0} hp - {0} hp + + {0} oz + {0} oz {0} kW @@ -6442,6 +6482,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} hp + {0} hp + {0} hPa {0} hPa diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/eu_ES.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/eu_ES.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/eu_ES.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/eu_ES.xml index acf227b959e..b10b62c92ea 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/eu_ES.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/eu_ES.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ewo.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ewo.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ewo.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ewo.xml index bb9389ad8ff..02401455ef1 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ewo.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ewo.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angíyə Aləbánia Arəménia - Anətíyə Nɛdəlánia Angolá Arəhenətína Bəsamóa yá Amə́rəka @@ -449,6 +447,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + kíkíríg + ngəgógəle + kíkíríg ngəgógəle @@ -601,6 +603,22 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0K ¤ + 00K ¤ + 000K ¤ + 0M ¤ + 00M ¤ + 000M ¤ + 0G ¤ + 00G ¤ + 000G ¤ + 0T ¤ + 00T ¤ + 000T ¤ + + @@ -780,3 +798,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ewo_CM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ewo_CM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ewo_CM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ewo_CM.xml index 1f4230a398a..e675c5610d4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ewo_CM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ewo_CM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fa.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fa.xml similarity index 79% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fa.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fa.xml index af2467f4976..4f2b188d363 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fa.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fa.xml @@ -1,13 +1,12 @@ - - - + @@ -49,24 +48,25 @@ For terms of use, see http://www.unicode.org/copyright.html عربی مصری آسامی آسو - آستوری + آستوری آواری آیمارایی ترکی آذربایجانی آذری آذربایجانی - ترکی آذربایجانی ایران + ترکی آذری جنوبی باشغیری بلوچی بالیایی باواریایی باسایی بمونی - بلوروسی + بلاروسی بجایی بمبایی بنایی بلغاری + بلوچی غربی بوجپوری بیسلاما بیکولی @@ -75,7 +75,7 @@ For terms of use, see http://www.unicode.org/copyright.html بنگالی تبتی لری بختیاری - برتانیایی + برتون براج براهویی بودویی @@ -107,14 +107,14 @@ For terms of use, see http://www.unicode.org/copyright.html کاشوبی اسلاوی کلیسایی چوواشی - ویلزی + ولزی دانمارکی داکوتایی دارقینی تایتا آلمانی آلمانی اتریش - آلمانی علیای سوئیس + آلمانی معیار سوئیس دلاواری دوگریب دینکایی @@ -151,6 +151,7 @@ For terms of use, see http://www.unicode.org/copyright.html باسکی اواندو فارسی + دری فانکی فانتیایی فولایی @@ -162,7 +163,7 @@ For terms of use, see http://www.unicode.org/copyright.html فرانسوی فرانسوی کانادا فرانسوی سوئیس - فرانسوی کادین + فرانسوی کادین فرانسوی میانه فرانسوی باستان فریزی شمالی @@ -171,7 +172,7 @@ For terms of use, see http://www.unicode.org/copyright.html فریزی غربی ایرلندی گایی - گاگاوز + گاگائوزیایی گایویی گبایایی دری زرتشتی @@ -180,7 +181,7 @@ For terms of use, see http://www.unicode.org/copyright.html گیلبرتی گالیسیایی گیلکی - آلمانی علیای میانه + آلمانی معیار میانه گوارانی آلمانی علیای باستان گوندی @@ -224,7 +225,7 @@ For terms of use, see http://www.unicode.org/copyright.html ایتالیایی اینوکتیتوت ژاپنی - لوجبان + لوجبان نگومبا ماچامه‌ای فارسی یهودی @@ -248,14 +249,14 @@ For terms of use, see http://www.unicode.org/copyright.html کوجراچینی کهوار کیکویویی - زازاکی + کرمانجی کوانیاما قزاقی گرینلندی کالنجین خمری کیمبوندویی - کاناده‌ای + کانارا کره‌ای کومی پرمیاک کنکانی @@ -272,11 +273,11 @@ For terms of use, see http://www.unicode.org/copyright.html کومیایی کرنوالی قرقیزی - لاتینی + لاتین لادینو لانگی لاهندا - لامبا + لامبا لوگزامبورگی لزگی گاندایی @@ -286,10 +287,11 @@ For terms of use, see http://www.unicode.org/copyright.html لائوسی مونگویی لوزیایی + لری شمالی لیتوانیایی لوبایی‐کاتانگا لوبایی‐لولوا - لویسنو + لویسنو لوندایی لوئویی لوشه‌ای @@ -299,11 +301,11 @@ For terms of use, see http://www.unicode.org/copyright.html مادورایی ماگاهیایی مایدیلی - ماکاسار + ماکاسار ماندینگویی ماسایی مکشایی - ماندار + ماندار منده‌ای مرویی موریسین @@ -328,15 +330,17 @@ For terms of use, see http://www.unicode.org/copyright.html ماندانگی چندین زبان کریکی - مارواری + مارواری برمه‌ای ارزیایی + مازندرانی نائورویی ناپلی نامایی - بوکسمال نروژی + نروژی بوک‌مُل انده‌بله‌ای شمالی آلمانی سفلی + ساکسونی سفلی نپالی نواریایی اندونگایی @@ -345,7 +349,7 @@ For terms of use, see http://www.unicode.org/copyright.html هلندی فلمنگی کوازیو - نرس جدید نروژی + نروژی نی‌نُشک نروژی نغایی نرس باستان @@ -389,7 +393,7 @@ For terms of use, see http://www.unicode.org/copyright.html کچوایی کیچه‌ راجستانی - راپانویی + راپانویی راروتونگایی رومانش روندیایی @@ -399,25 +403,27 @@ For terms of use, see http://www.unicode.org/copyright.html رومانویی ریشه روسی + آرومانی کینیارواندایی روایی - سنسکریت + سانسکریت سانداوه‌ای یاقوتی آرامی سامری سامبورو ساساکی سانتالی - سانگو + سانگویی ساردینیایی سیسیلی اسکاتلندی سندی + کردی جنوبی سامی شمالی سنا سلکوپی کویرابورا سنی - سانگویی + سانگو ایرلندی باستان صرب و کرواتی تاچل‌هیت @@ -426,7 +432,8 @@ For terms of use, see http://www.unicode.org/copyright.html سینهالی سیدامویی اسلواکی - اسلووینیایی + اسلوونیایی + سیلزیایی سفلی ساموآیی سامی جنوبی لوله سامی @@ -448,10 +455,11 @@ For terms of use, see http://www.unicode.org/copyright.html سومری سوئدی سواحلی + سواحلی کنگویی کوموری - سواحلی کنگویی سریانی کلاسیک سریانی + سیلزیایی تامیلی تلوگویی تمنه‌ای @@ -501,7 +509,8 @@ For terms of use, see http://www.unicode.org/copyright.html والونی والامو وارایی - واشویی + واشویی + وارلپیری ولوفی قلموقی خوسایی @@ -513,7 +522,7 @@ For terms of use, see http://www.unicode.org/copyright.html کانتونی چوانگی زاپوتکی - زناگا + زناگا آمازیغی معیار مراکش چینی چینی ساده‌شده @@ -521,7 +530,7 @@ For terms of use, see http://www.unicode.org/copyright.html زولویی زونیایی بدون محتوای زبانی - زازایی + زازایی @@ -533,7 +542,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -548,8 +557,8 @@ For terms of use, see http://www.unicode.org/copyright.html - - + + @@ -579,7 +588,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -588,8 +597,8 @@ For terms of use, see http://www.unicode.org/copyright.html - - + + @@ -637,7 +646,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -687,7 +696,6 @@ For terms of use, see http://www.unicode.org/copyright.html آنگویلا آلبانی ارمنستان - آنتیل هلند آنگولا جنوبگان آرژانتین @@ -710,11 +718,11 @@ For terms of use, see http://www.unicode.org/copyright.html برمودا برونئی بولیوی - بونیر + جزایر کارائیب هلند برزیل باهاما بوتان - جزیره بووه + جزیرهٔ بووه بوتسوانا بلاروس بلیز @@ -917,7 +925,8 @@ For terms of use, see http://www.unicode.org/copyright.html تایلند تاجیکستان توکلائو - تیمور شرقی + تیمور-لسته + تیمور شرقی ترکمنستان تونس تونگا @@ -929,7 +938,7 @@ For terms of use, see http://www.unicode.org/copyright.html اوکراین اوگاندا جزایر دورافتادهٔ ایالات متحده - ایالات متحدهٔ امریکا + ایالات متحده ایالات متحده اروگوئه ازبکستان @@ -974,6 +983,9 @@ For terms of use, see http://www.unicode.org/copyright.html مرتب‌سازی عددی قدرت مرتب‌سازی واحد پول + دور ساعت (۱۲ در مقابل ۲۴) + شیوهٔ اعمال سرخط + دستگاه اندازه‌گیری اعداد منطقه زمانی متغیر محلی @@ -981,101 +993,112 @@ For terms of use, see http://www.unicode.org/copyright.html استفادهٔ خصوصی - ارقام عربی - ارقام فارسی - اعداد ارمنی - اعداد ارمنی با حروف کوچک - ارقام بالیایی - ارقام بنگالی - ترتیب چینی سنتی - Big5 - تقویم بودایی - تقویم چینی - تقویم قبطی - تقویم دانگی - ارقام دوناگری - ترتیب فرهنگ لغت - ترتیب پیش‌فرض یونی‌کد - اعداد اتیوپیایی - تقویم اتیوپیایی - تقویم اتیوپیایی عامت عالم - سیستم عددی مالی - ارقام تمام‌عرض - ترتیب چینی ساده‌شده - GB2312 - اعداد گرجی - تقویم میلادی - اعداد یونانی - اعداد یونانی با حروف کوچک - ارقام گجراتی - ارقام گورومخی - اعداد دهدهی چینی - اعداد چینی ساده‌شده - اعداد مالی چینی ساده‌شده - اعداد چینی سنتی - اعداد مالی چینی سنتی - اعداد عبری - تقویم عبری - مرتب‌سازی همه - تقویم ملی هند - تقویم هجری قمری - تقویم هجری قمری جدولی مدنی - قویم هجری قمری هلالی عربستان سعودی - تقویم هجری قمری جدولی نجومی - تقویم هجری قمری ام‌القری - تقویم ایزو ۸۶۰۱ - تقویم ژاپنی - ارقام جاوه‌ای - اعداد ژاپنی - اعداد مالی ژاپنی - ارقام خمری - ارقام کاناده‌ای - ارقام لائوسی - ارقام غربی - ابتدا مرتب‌سازی حروف کوچک - ارقام مالایالامی - ارقام مغولی - ارقام میانماری - ارقام شان میانماری - ارقام بومی - مرتب‌سازی آکسان‌ها به صورت معمولی - مرتب‌سازی به ترتیب معمولی بزرگ و کوچکی حروف - مرتب‌سازی بدون توجه به کوچک و بزرگی حروف - مرتب‌سازی بر اساس سیستم کانا به صورت جداگانه - مرتب‌سازی بدون عادی‌سازی - مرتب‌سازی ارقام بصورت مجزا - مرتب‌سازی نمادها - ارقام اوریه‌ای - تقویم هجری شمسی - ترتیب دفتر تلفن - مرتب کردن بر اساس آوایی - ترتیب پین‌یین - مرتب‌سازی فقط حروف پایه - مرتب‌سازی بر اساس آکسان/اندازه حروف/عرض/کانا - ترتیب اصلاح‌شده - تقویم جمهوری چین (تایوان) - اعداد رومی - اعداد رومی با حروف کوچک - جستجوی عمومی - جستجو با صامت اول هانگول - مرتب‌سازی آکسان‌ها - مرتب‌سازی با نادیده گرفتن نمادها - ترتیب استاندارد - ترتیب حرکتی - اعداد سنتی تامیلی - ارقام تامیلی - ارقام تلوگویی - مرتب‌سازی بر اساس آکسان/اندازه حرف/عرض - ارقام تایلندی - ارقام تبتی - ترتیب سنتی - سیستم اعداد سنتی - ترتیب رادیکالی-حرکتی - مرتب‌سازی بر اساس حرف بزرگ در ابتدا - ارقام وایی - مرتب‌سازی معکوس براساس آکسان - مرتب‌سازی با حساسیت به اندازه حروف - مرتب‌سازی کانا به صورت متفاوت - مرتب‌سازی یونیکد نرمال شده - مرتب‌سازی شماره‌ها با سیستم عددی + تقویم بودایی + تقویم چینی + تقویم قبطی + تقویم دانگی + تقویم اتیوپیایی + تقویم اتیوپیایی عامت عالم + تقویم میلادی + تقویم عبری + تقویم ملی هند + تقویم هجری قمری + تقویم هجری قمری جدولی مدنی + قویم هجری قمری هلالی عربستان سعودی + تقویم هجری قمری جدولی نجومی + تقویم هجری قمری ام‌القری + تقویم ایزو ۸۶۰۱ + تقویم ژاپنی + تقویم هجری شمسی + تقویم جمهوری چین (تایوان) + مرتب‌سازی نمادها + مرتب‌سازی با نادیده گرفتن نمادها + مرتب‌سازی آکسان‌ها به صورت معمولی + مرتب‌سازی معکوس براساس آکسان + ابتدا مرتب‌سازی حروف کوچک + مرتب‌سازی به ترتیب معمولی بزرگ و کوچکی حروف + مرتب‌سازی بر اساس حرف بزرگ در ابتدا + مرتب‌سازی بدون توجه به کوچک و بزرگی حروف + مرتب‌سازی با حساسیت به اندازه حروف + مرتب‌سازی بر اساس سیستم کانا به صورت جداگانه + مرتب‌سازی کانا به صورت متفاوت + ترتیب چینی سنتی - Big5 + ترتیب فرهنگ لغت + ترتیب پیش‌فرض یونی‌کد + ترتیب ایموجی + ترتیب چینی ساده‌شده - GB2312 + ترتیب دفتر تلفن + مرتب کردن بر اساس آوایی + ترتیب پین‌یین + ترتیب اصلاح‌شده + جستجوی عمومی + جستجو با صامت اول هانگول + ترتیب استاندارد + ترتیب حرکتی + ترتیب سنتی + ترتیب رادیکالی-حرکتی + مرتب‌سازی بدون عادی‌سازی + مرتب‌سازی یونیکد نرمال‌شده + مرتب‌سازی ارقام بصورت مجزا + مرتب‌سازی شماره‌ها با سیستم عددی + مرتب‌سازی همه + مرتب‌سازی فقط حروف پایه + مرتب‌سازی بر اساس آکسان/اندازه حروف/عرض/کانا + مرتب‌سازی آکسان‌ها + مرتب‌سازی بر اساس آکسان/اندازه حرف/عرض + سیستم ۱۲ ساعته (۰ تا ۱۱) + سیستم ۱۲ ساعته (۱ تا ۱۲) + سیستم ۲۴ ساعته (۰ تا ۲۳) + سیستم ۲۴ ساعته (۱ تا ۲۴) + شیوهٔ ضعیف اعمال سرخط + شیوهٔ عادی اعمال سرخط + شیوهٔ قوی اعمال سرخط + دستگاه متریک + دستگاه اندازه‌گیری بریتانیایی + دستگاه اندازه‌گیری امریکایی + ارقام عربی + ارقام فارسی + اعداد ارمنی + اعداد ارمنی با حروف کوچک + ارقام بالیایی + ارقام بنگالی + ارقام دوناگری + اعداد اتیوپیایی + سیستم عددی مالی + ارقام تمام‌عرض + اعداد گرجی + اعداد یونانی + اعداد یونانی با حروف کوچک + ارقام گجراتی + ارقام گورومخی + اعداد دهدهی چینی + اعداد چینی ساده‌شده + اعداد مالی چینی ساده‌شده + اعداد چینی سنتی + اعداد مالی چینی سنتی + اعداد عبری + ارقام جاوه‌ای + اعداد ژاپنی + اعداد مالی ژاپنی + ارقام خمری + ارقام کاناده‌ای + ارقام لائوسی + ارقام غربی + ارقام مالایالامی + ارقام مغولی + ارقام میانماری + ارقام شان میانماری + ارقام بومی + ارقام اوریه‌ای + اعداد رومی + اعداد رومی با حروف کوچک + اعداد سنتی تامیلی + ارقام تامیلی + ارقام تلوگویی + ارقام تایلندی + ارقام تبتی + سیستم اعداد سنتی + ارقام وایی BGN @@ -1152,7 +1175,7 @@ For terms of use, see http://www.unicode.org/copyright.html - EEEE d MMMM y G + G y MMMM d, EEEE @@ -1194,6 +1217,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d y G MMM y G @@ -1223,6 +1247,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y G d MMM y G E d MMM y G + G y MMMM QQQQ y G QQQQ y G @@ -1279,7 +1304,7 @@ For terms of use, see http://www.unicode.org/copyright.html E M/d تا E M/d - LLL تا LLL + MMM تا MMM d تا d LLL @@ -1540,42 +1565,88 @@ For terms of use, see http://www.unicode.org/copyright.html + + نیمه‌شب + ق.ظ. + ظهر + ب.ظ. + صبح + عصر + عصر + شب + + ن ق ظ ب + ص + ب + ع + ش - عصر + نیمه‌شب قبل‌ازظهر - بامداد - بعدازظهر - صبح - شب ظهر بعدازظهر - نیمه‌شب + صبح + عصر + عصر + شب + + + + + نیمه‌شب + ق.ظ. + ظ + ب.ظ. + صبح + عصر + سر شب + شب + + + نیمه‌شب + ق.ظ. + ظهر + ب.ظ. + صبح + عصر + سر شب + شب + + + نیمه‌شب + قبل‌ازظهر + ظهر + بعدازظهر + صبح + عصر + سر شب + شب قبل از میلاد - قبل از عصر حاضر + قبل از دوران مشترک میلادی - عصر حاضر + دوران مشترک ق.م. - قبل از عصر حاضر + ق.د.م م. - عصر حاضر + د.م. ق - قبل از عصر حاضر + ق.د.م م - عصر حاضر + د.م. @@ -1662,6 +1733,10 @@ For terms of use, see http://www.unicode.org/copyright.html H:mm h:mm:ss a H:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L M/d E M/d @@ -1907,18 +1982,18 @@ For terms of use, see http://www.unicode.org/copyright.html ذیحجهٔ - م - ص - ر - ر - ج - ج - ر - ش - ر - ش - ذ - ذ + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 محرم @@ -1951,18 +2026,18 @@ For terms of use, see http://www.unicode.org/copyright.html ذیحجه - م - ص - ر - ر - ج - ج - ر - ش - ر - ش - ذ - ذ + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 محرم @@ -1991,7 +2066,7 @@ For terms of use, see http://www.unicode.org/copyright.html - EEEE d MMMM y GGGG + EEEE d MMMM y G @@ -2001,18 +2076,19 @@ For terms of use, see http://www.unicode.org/copyright.html - y/M/d G + d MMM y G - yy/M/d G + y/M/d G d + ccc E d y G MMM y G @@ -2034,7 +2110,7 @@ For terms of use, see http://www.unicode.org/copyright.html d LLLL E d LLLL mm:ss - y + y G y/M E y/M/d MMM y @@ -2043,10 +2119,14 @@ For terms of use, see http://www.unicode.org/copyright.html QQQ y QQQQ y y G + y/M G + y/M/d G + E y/M/d G MMM y G d MMM y G E d MMM y G - QQQQ y G + G y MMMM + QQQ y G QQQQ y G @@ -2172,6 +2252,9 @@ For terms of use, see http://www.unicode.org/copyright.html سال + سال گذشته + امسال + سال آینده {0} سال بعد {0} سال بعد @@ -2183,6 +2266,9 @@ For terms of use, see http://www.unicode.org/copyright.html سال + سال گذشته + امسال + سال آینده {0} سال بعد {0} سال بعد @@ -2194,35 +2280,44 @@ For terms of use, see http://www.unicode.org/copyright.html سه‌ماهه + سه‌ماههٔ گذشته + سه‌ماههٔ کنونی + سه‌ماههٔ آینده - {0} سه‌ماهه بعد - {0} سه‌ماهه بعد + {0} سه‌ماههٔ بعد + {0} سه‌ماههٔ بعد - {0} سه‌ماهه پیش - {0} سه‌ماهه پیش + {0} سه‌ماههٔ پیش + {0} سه‌ماههٔ پیش سه‌ماهه + سه‌ماههٔ گذشته + سه‌ماههٔ کنونی + سه‌ماههٔ آینده - {0} سه‌ماهه بعد - {0} سه‌ماهه بعد + {0} سه‌ماههٔ بعد + {0} سه‌ماههٔ بعد - {0} سه‌ماهه پیش - {0} سه‌ماهه پیش + {0} سه‌ماههٔ پیش + {0} سه‌ماههٔ پیش سه‌ماهه + سه‌ماههٔ گذشته + سه‌ماههٔ کنونی + سه‌ماههٔ آینده - {0} سه‌ماهه بعد - {0} سه‌ماهه بعد + {0} سه‌ماههٔ بعد + {0} سه‌ماههٔ بعد - {0} سه‌ماهه پیش - {0} سه‌ماهه پیش + {0} سه‌ماههٔ پیش + {0} سه‌ماههٔ پیش @@ -2241,6 +2336,9 @@ For terms of use, see http://www.unicode.org/copyright.html ماه + ماه پیش + این ماه + ماه آینده {0} ماه بعد {0} ماه بعد @@ -2252,6 +2350,9 @@ For terms of use, see http://www.unicode.org/copyright.html ماه + ماه پیش + این ماه + ماه آینده {0} ماه بعد {0} ماه بعد @@ -2277,6 +2378,9 @@ For terms of use, see http://www.unicode.org/copyright.html هفته + هفتهٔ گذشته + این هفته + هفتهٔ آینده {0} هفته بعد {0} هفته بعد @@ -2288,6 +2392,9 @@ For terms of use, see http://www.unicode.org/copyright.html هفته + هفتهٔ گذشته + این هفته + هفتهٔ آینده {0} هفته بعد {0} هفته بعد @@ -2315,6 +2422,11 @@ For terms of use, see http://www.unicode.org/copyright.html روز + پریروز + دیروز + امروز + فردا + پس‌فردا {0} روز بعد {0} روز بعد @@ -2326,6 +2438,11 @@ For terms of use, see http://www.unicode.org/copyright.html روز + پریروز + دیروز + امروز + فردا + پس‌فردا {0} روز بعد {0} روز بعد @@ -2526,6 +2643,7 @@ For terms of use, see http://www.unicode.org/copyright.html ثانیه + اکنون {0} ثانیه بعد {0} ثانیه بعد @@ -2537,6 +2655,7 @@ For terms of use, see http://www.unicode.org/copyright.html ثانیه + اکنون {0} ثانیه بعد {0} ثانیه بعد @@ -2552,8 +2671,8 @@ For terms of use, see http://www.unicode.org/copyright.html +HH:mm;−HH:mm - GMT{0} - GMT + {0} گرینویچ + گرینویچ وقت {0} وقت تابستانی {0} وقت عادی {0} @@ -2748,7 +2867,7 @@ For terms of use, see http://www.unicode.org/copyright.html کرالندیک - ایرونپه + ایرونپه ریوبرانکو @@ -2757,7 +2876,7 @@ For terms of use, see http://www.unicode.org/copyright.html پورتوولیو - بوئاویشتا + بوئاویستا ماناوس @@ -2835,7 +2954,7 @@ For terms of use, see http://www.unicode.org/copyright.html ادمونتون - سوئیفت‌کرنت + سویفت‌کارنت کمبریج‌بی @@ -3039,7 +3158,7 @@ For terms of use, see http://www.unicode.org/copyright.html لندن - گرانادا + گرنادا تفلیس @@ -3060,13 +3179,13 @@ For terms of use, see http://www.unicode.org/copyright.html تول - گودهوب + نووک اسکورسبیسوند - دانمارک‌شاون + دانمارکس‌هاون بانجول @@ -3425,6 +3544,9 @@ For terms of use, see http://www.unicode.org/copyright.html پورت‌مورزبی + + بوگنویل + مانیل @@ -3509,6 +3631,9 @@ For terms of use, see http://www.unicode.org/copyright.html ایرکوتسک + + چیتا + یاکوتسک @@ -3527,6 +3652,9 @@ For terms of use, see http://www.unicode.org/copyright.html ماگادان + + اسردنکولیمسک + کامچاتکا @@ -3823,7 +3951,7 @@ For terms of use, see http://www.unicode.org/copyright.html - وقت جنوب افریقا + وقت عادی جنوب افریقا @@ -4011,7 +4139,7 @@ For terms of use, see http://www.unicode.org/copyright.html - وقت چامورو + وقت عادی چامورو @@ -4745,13 +4873,23 @@ For terms of use, see http://www.unicode.org/copyright.html arabext 1 + + ٫ + ٬ + ؛ + ٪ + × + ؉ + + : + ٫ ٬ ؛ ٪ - ‎+‎ - ‎− + ‎+‎ + ‎− ×۱۰^ × ؉ @@ -4764,13 +4902,13 @@ For terms of use, see http://www.unicode.org/copyright.html , ; % - ‎+ - ‎− + ‎+ + ‎− E × - NaN + ناعدد : @@ -4806,40 +4944,40 @@ For terms of use, see http://www.unicode.org/copyright.html 00 میلیارد 000 میلیارد 000 میلیارد - 0 هزار میلیارد - 0 هزار میلیارد - 00 هزار میلیارد - 00 هزار میلیارد - 000 هزار میلیارد - 000 هزار میلیارد + 0 هزارمیلیارد + 0 هزارمیلیارد + 00 هزارمیلیارد + 00 هزارمیلیارد + 000 هزارمیلیارد + 000 هزارمیلیارد - 0K - 0K - 00K - 00K - 000K - 000K - 0M - 0M - 00M - 00M - 000M - 000M - 0G - 0G - 00G - 00G - 000G - 000G - 0T - 0T - 00T - 00T - 000T - 000T + 0 هزار + 0 هزار + 00 هزار + 00 هزار + 000 هزار + 000 هزار + 0 میلیون + 0 میلیون + 00 میلیون + 00 میلیون + 000 م + 000 م + 0 م + 0 م + 00 م + 00 م + 000 میلیارد + 000 میلیارد + 0 تریلیون + 0 تریلیون + 00 ت + 00 ت + 000 ت + 000 ت @@ -4871,6 +5009,13 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + ‎¤#,##0.00 + + + @@ -4880,6 +5025,34 @@ For terms of use, see http://www.unicode.org/copyright.html ‎¤#,##0.00;‎(¤#,##0.00) + + + 0 هزار ¤ + 0 هزار ¤ + 00 هزار ¤ + 00 هزار ¤ + 000 هزار ¤ + 000 هزار ¤ + 0 میلیون ¤ + 0 میلیون ¤ + 00 میلیون ¤ + 00 میلیون ¤ + 000 میلیون ¤ + 000 میلیون ¤ + 0 میلیارد ¤ + 0 میلیارد ¤ + 00 میلیارد ¤ + 00 میلیارد ¤ + 000 میلیارد ¤ + 000 میلیارد ¤ + 0 هزارمیلیارد ¤ + 0 هزارمیلیارد ¤ + 00 هزارمیلیارد ¤ + 00 هزارمیلیارد ¤ + 000 هزارمیلیارد ¤ + 000 هزارمیلیارد ¤ + + {0} {1} {0} {1} @@ -4889,6 +5062,9 @@ For terms of use, see http://www.unicode.org/copyright.html درهم امارات متحدهٔ عربی + درهم امارات متحدهٔ عربی + درهم امارات متحدهٔ عربی + AED افغانی افغانستان (۱۹۲۷ تا ۲۰۰۲) @@ -4901,74 +5077,138 @@ For terms of use, see http://www.unicode.org/copyright.html لک آلبانی + لک آلبانی + لک آلبانی + ALL - درم ارمنستان + درام ارمنستان + درام ارمنستان + درام ارمنستان + AMD گیلدر آنتیل هلند + گیلدر آنتیل هلند + گیلدر آنتیل هلند + ANG کوانزای آنگولا + کوانزای آنگولا + کوانزای آنگولا + AOA + Kz پزوی آرژانتین (۱۹۸۳ تا ۱۹۸۵)‏ پزوی آرژانتین + پزوی آرژانتین + پزوی آرژانتین + ARS + $ شیلینگ اتریش + شیلینگ اتریش + شیلینگ اتریش دلار استرالیا + دلار استرالیا + دلار استرالیا + A$ + $ فلورین آروبا + فلورین آروبا + فلورین آروبا + AWG منات جمهوری آذربایجان (۱۹۹۳ تا ۲۰۰۶) منات جمهوری آذربایجان + منات جمهوری آذربایجان + منات جمهوری آذربایجان + AZN دینار بوسنی و هرزگوین (۱۹۹۲ تا ۱۹۹۴) مارک تبدیل‌پذیر بوسنی و هرزگوین + مارک تبدیل‌پذیر بوسنی و هرزگوین + مارک تبدیل‌پذیر بوسنی و هرزگوین + BAM + KM دلار باربادوس + دلار باربادوس + دلار باربادوس + BBD + $ تاکای بنگلادش + تاکای بنگلادش + تاکای بنگلادش + BDT + فرانک بلژیک + فرانک بلژیک + فرانک بلژیک فرانک بلژیک (مالی) + فرانک بلژیک (مالی) + فرانک بلژیک (مالی) لف بلغارستان + لف بلغارستان + لف بلغارستان + BGN دینار بحرین + دینار بحرین + دینار بحرین + BHD فرانک بوروندی + فرانک بوروندی + فرانک بوروندی + BIF دلار برمودا دلار برمودا دلار برمودا + BMD + $ دلار برونئی + دلار برونئی + دلار برونئی + BND + $ بولیویانوی بولیوی + بولیویانوی بولیوی + بولیویانوی بولیوی + BOB + Bs پزوی بولیوی @@ -4977,39 +5217,71 @@ For terms of use, see http://www.unicode.org/copyright.html رئال برزیل رئال برزیل رئال برزیل + R$ + R$ دلار باهاما + دلار باهاما + دلار باهاما + BSD + $ انگولتروم بوتان + انگولتروم بوتان + انگولتروم بوتان + BTN پولای بوتسوانا + پولای بوتسوانا + پولای بوتسوانا + BWP + P روبل جدید بیلوروسی (۱۹۹۴ تا ۱۹۹۹) روبل بیلوروسی + روبل بیلوروسی + روبل بیلوروسی + BYR + р. دلار بلیز + دلار بلیز + دلار بلیز + BZD + $ دلار کانادا دلار کانادا دلار کانادا $CA + $ فرانک کنگو + فرانک کنگو + فرانک کنگو + CDF فرانک سوئیس + فرانک سوئیس + فرانک سوئیس + CHF پزوی شیلی + پزوی شیلی + پزوی شیلی + CLP + $ یوآن چین @@ -5020,54 +5292,103 @@ For terms of use, see http://www.unicode.org/copyright.html پزوی کلمبیا + پزوی کلمبیا + پزوی کلمبیا + COP + $ کولون کاستاریکا + کولون کاستاریکا + کولون کاستاریکا + CRC + دینار صربستان (۲۰۰۲ تا ۲۰۰۶) پزوی تبدیل‌پذیر کوبا + پزوی تبدیل‌پذیر کوبا + پزوی تبدیل‌پذیر کوبا + CUC + $ پزوی کوبا + پزوی کوبا + پزوی کوبا + CUP + $ اسکودوی کیپ‌ورد + اسکودوی کیپ‌ورد + اسکودوی کیپ‌ورد + CVE پوند قبرس کورونای جمهوری چک + کورونای جمهوری چک + کورونای جمهوری چک + CZK + مارک آلمان شرقی مارک آلمان + مارک آلمان + مارک آلمان فرانک جیبوتی + فرانک جیبوتی + فرانک جیبوتی + DJF کرون دانمارک + کرون دانمارک + کرون دانمارک + DKK + kr پزوی جمهوری دومینیکن + پزوی جمهوری دومینیکن + پزوی جمهوری دومینیکن + DOP + $ دینار الجزایر + دینار الجزایر + دینار الجزایر + DZD لیرهٔ مصر + لیرهٔ مصر + لیرهٔ مصر + EGP + ناکفای اریتره + ناکفای اریتره + ناکفای اریتره + ERN بیر اتیوپی + بیر اتیوپی + بیر اتیوپی + ETB یورو @@ -5078,12 +5399,22 @@ For terms of use, see http://www.unicode.org/copyright.html دلار فیجی + دلار فیجی + دلار فیجی + FJD + $ پوند جزایر فالکلند + پوند جزایر فالکلند + پوند جزایر فالکلند + FKP + £ فرانک فرانسه + فرانک فرانسه + فرانک فرانسه پوند بریتانیا @@ -5094,59 +5425,110 @@ For terms of use, see http://www.unicode.org/copyright.html لاری گرجستان + لاری گرجستان + لاری گرجستان + GEL + سدی غنا + سدی غنا + سدی غنا + GHS پوند جبل‌الطارق + پوند جبل‌الطارق + پوند جبل‌الطارق + GIP + £ دالاسی گامبیا + دالاسی گامبیا + دالاسی گامبیا + GMD فرانک گینه + فرانک گینه + فرانک گینه + GNF + FG دراخمای یونان کتزال گواتمالا + کتزال گواتمالا + کتزال گواتمالا + GTQ + Q پزوی گینهٔ بیسائو - دلار گویان + دلار گویانا + دلار گویانا + دلار گویانا + GYD + $ دلار هنگ‌کنگ + دلار هنگ‌کنگ + دلار هنگ‌کنگ $HK + $ لمپیرای هندوراس + لمپیرای هندوراس + لمپیرای هندوراس + HNL + L دینار کرواسی کونای کرواسی + کونای کرواسی + کونای کرواسی + HRK + kn گورد هائیتی + گورد هائیتی + گورد هائیتی + HTG فورینت مجارستان + فورینت مجارستان + فورینت مجارستان + HUF + Ft روپیهٔ اندونزی + روپیهٔ اندونزی + روپیهٔ اندونزی + IDR + Rp پوند ایرلند شقل جدید اسرائیل + شقل جدید اسرائیل + شقل جدید اسرائیل + روپیهٔ هند @@ -5157,6 +5539,9 @@ For terms of use, see http://www.unicode.org/copyright.html دینار عراق + دینار عراق + دینار عراق + IQD ریال ایران @@ -5166,15 +5551,26 @@ For terms of use, see http://www.unicode.org/copyright.html کرونای ایسلند + کرونای ایسلند + کرونای ایسلند + ISK + kr لیرهٔ ایتالیا دلار جامائیکا + دلار جامائیکا + دلار جامائیکا + JMD + $ دینار اردن + دینار اردن + دینار اردن + JOD ین ژاپن @@ -5185,46 +5581,96 @@ For terms of use, see http://www.unicode.org/copyright.html شیلینگ کنیا + شیلینگ کنیا + شیلینگ کنیا + KES سوم قرقیزستان + سوم قرقیزستان + سوم قرقیزستان + KGS ری‌یل کامبوج + ری‌یل کامبوج + ری‌یل کامبوج + KHR + فرانک کومورو + فرانک کومورو + فرانک کومورو + KMF + CF وون کرهٔ شمالی + وون کرهٔ شمالی + وون کرهٔ شمالی + KPW + وون کرهٔ جنوبی + وون کرهٔ جنوبی + وون کرهٔ جنوبی + دینار کویت + دینار کویت + دینار کویت + KWD دلار جزایر کِیمن + دلار جزایر کِیمن + دلار جزایر کِیمن + KYD + $ تنگهٔ قزاقستان + تنگهٔ قزاقستان + تنگهٔ قزاقستان + KZT + کیپ لائوس + کیپ لائوس + کیپ لائوس + LAK + لیرهٔ لبنان + لیرهٔ لبنان + لیرهٔ لبنان + LBP + روپیهٔ سری‌لانکا + روپیهٔ سری‌لانکا + روپیهٔ سری‌لانکا + LKR + Rs دلار لیبریا + دلار لیبریا + دلار لیبریا + LRD + $ لوتی لسوتو + لوتی لسوتو + لوتی لسوتو لیتاس لیتوانی @@ -5234,6 +5680,8 @@ For terms of use, see http://www.unicode.org/copyright.html فرانک مالی لوگزامبورگ + فرانک مالی لوگزامبورگ + فرانک مالی لوگزامبورگ لاتس لتونی @@ -5243,39 +5691,69 @@ For terms of use, see http://www.unicode.org/copyright.html دینار لیبی + دینار لیبی + دینار لیبی + LYD درهم مراکش + درهم مراکش + درهم مراکش + MAD فرانک مراکش لئوی مولداوی + لئوی مولداوی + لئوی مولداوی + MDL آریاری مالاگاسی + آریاری مالاگاسی + آریاری مالاگاسی + MGA + Ar فرانک ماداگاسکار دینار مقدونیه + دینار مقدونیه + دینار مقدونیه + MKD فرانک مالی کیات میانمار + کیات میانمار + کیات میانمار + MMK + K توگریک مغولستان + توگریک مغولستان + توگریک مغولستان + MNT + پاتاکای ماکائو + پاتاکای ماکائو + پاتاکای ماکائو + MOP اوگوئیای موریتانی + اوگوئیای موریتانی + اوگوئیای موریتانی + MRO لیرهٔ مالت @@ -5285,94 +5763,181 @@ For terms of use, see http://www.unicode.org/copyright.html روپیهٔ موریس + روپیهٔ موریس + روپیهٔ موریس + MUR + Rs روپیهٔ مالدیو + روپیهٔ مالدیو + روپیهٔ مالدیو + MVR کواچای مالاوی + کواچای مالاوی + کواچای مالاوی + MWK پزوی مکزیک + پزوی مکزیک + پزوی مکزیک $MX + $ پزوی نقرهٔ مکزیک (۱۸۶۱ تا ۱۹۹۲) + پزوی نقرهٔ مکزیک (۱۸۶۱ تا ۱۹۹۲) + پزوی نقرهٔ مکزیک (۱۸۶۱ تا ۱۹۹۲) + MXP رینگیت مالزی + رینگیت مالزی + رینگیت مالزی + MYR + RM اسکودوی موزامبیک متیکال موزامبیک + متیکال موزامبیک + متیکال موزامبیک + MZN دلار نامیبیا + دلار نامیبیا + دلار نامیبیا + NAD + $ نایرای نیجریه + نایرای نیجریه + نایرای نیجریه + NGN + کوردوبای نیکاراگوئه + کوردوبای نیکاراگوئه + کوردوبای نیکاراگوئه + NIO + C$ گیلدر هلند + گیلدر هلند + گیلدر هلند کرون نروژ + کرون نروژ + کرون نروژ + NOK + kr روپیهٔ نپال + روپیهٔ نپال + روپیهٔ نپال + NPR + Rs دلار زلاند نو + دلار زلاند نو + دلار زلاند نو $NZ + $ ریال عمان + ریال عمان + ریال عمان + OMR بالبوای پاناما + بالبوای پاناما + بالبوای پاناما + PAB نوئووسول پرو + نوئووسول پرو + نوئووسول پرو + PEN کینای پاپوا گینهٔ نو + کینای پاپوا گینهٔ نو + کینای پاپوا گینهٔ نو + PGK پزوی فیلیپین + پزوی فیلیپین + پزوی فیلیپین + PHP + روپیهٔ پاکستان + روپیهٔ پاکستان + روپیهٔ پاکستان + PKR + Rs زواتی لهستان + زواتی لهستان + زواتی لهستان + PLN + اسکودوی پرتغال گوارانی پاراگوئه + گوارانی پاراگوئه + گوارانی پاراگوئه + PYG + ریال قطر + ریال قطر + ریال قطر + QAR دلار رودزیا لئوی رومانی + لئوی رومانی + لئوی رومانی + RON دینار صربستان + دینار صربستان + دینار صربستان + RSD روبل روسیه روبل روسیه روبل روسیه + RUB + @@ -5380,79 +5945,149 @@ For terms of use, see http://www.unicode.org/copyright.html فرانک رواندا + فرانک رواندا + فرانک رواندا + RWF + RF ریال سعودی + ریال سعودی + ریال سعودی + SAR دلار جزایر سلیمان + دلار جزایر سلیمان + دلار جزایر سلیمان + SBD + $ روپیهٔ سیشل + روپیهٔ سیشل + روپیهٔ سیشل + SCR دینار سودان (۱۹۹۲ تا ۲۰۰۷) لیرهٔ سودان + لیرهٔ سودان + لیرهٔ سودان + SDG کرون سوئد + کرون سوئد + کرون سوئد + SEK + kr دلار سنگاپور + دلار سنگاپور + دلار سنگاپور + SGD + $ پوند سنت هلن + پوند سنت هلن + پوند سنت هلن + SHP + £ لئون سیرالئون + لئون سیرالئون + لئون سیرالئون + SLL شیلینگ سومالی + شیلینگ سومالی + شیلینگ سومالی + SOS دلار سورینام + دلار سورینام + دلار سورینام + SRD + $ گیلدر سورینام پوند سودان جنوبی + پوند سودان جنوبی + پوند سودان جنوبی + SSP + £ دوبرای سائوتومه و پرنسیپ + دوبرای سائوتومه و پرنسیپ + دوبرای سائوتومه و پرنسیپ + STD + Db روبل شوروی لیرهٔ سوریه + لیرهٔ سوریه + لیرهٔ سوریه + SYP + £ لیلانگنی سوازیلند + لیلانگنی سوازیلند + لیلانگنی سوازیلند + SZL بات تایلند + بات تایلند + بات تایلند ฿ + ฿ روبل تاجیکستان سامانی تاجیکستان + سامانی تاجیکستان + سامانی تاجیکستان + TJS منات ترکمنستان (۱۹۹۳ تا ۲۰۰۹) منات ترکمنستان + منات ترکمنستان + منات ترکمنستان + TMT دینار تونس + دینار تونس + دینار تونس + TND پاآنگای تونگا + پاآنگای تونگا + پاآنگای تونگا + TOP + T$ اسکودوی تیمور @@ -5462,24 +6097,47 @@ For terms of use, see http://www.unicode.org/copyright.html لیرهٔ ترکیه + لیرهٔ ترکیه + لیرهٔ ترکیه + TRY + + TL دلار ترینیداد و توباگو + دلار ترینیداد و توباگو + دلار ترینیداد و توباگو + TTD + $ دلار جدید تایوان + دلار جدید تایوان + دلار جدید تایوان + NT$ + $ شیلینگ تانزانیا + شیلینگ تانزانیا + شیلینگ تانزانیا + TZS هریونیای اوکراین + هریونیای اوکراین + هریونیای اوکراین + UAH + شیلینگ اوگاندا (۱۹۶۶ تا ۱۹۸۷) شیلینگ اوگاندا + شیلینگ اوگاندا + شیلینگ اوگاندا + UGX دلار امریکا @@ -5490,31 +6148,62 @@ For terms of use, see http://www.unicode.org/copyright.html دلار امریکا (روز بعد) + دلار امریکا (روز بعد) + دلار امریکا (روز بعد) + USN دلار امریکا (همان روز) + دلار امریکا (همان روز) + دلار امریکا (همان روز) + USS پزوی اوروگوئه (۱۹۷۵ تا ۱۹۹۳) پزوی اوروگوئه + پزوی اوروگوئه + پزوی اوروگوئه + UYU + $ سوم ازبکستان + سوم ازبکستان + سوم ازبکستان + UZS + + + بولیوار ونزوئلا (۱۸۷۱ تا ۲۰۰۸) + بولیوار ونزوئلا (۱۸۷۱ تا ۲۰۰۸) + بولیوار ونزوئلا (۱۸۷۱ تا ۲۰۰۸) بولیوار ونزوئلا + بولیوار ونزوئلا + بولیوار ونزوئلا + VEF + Bs دانگ ویتنام + دانگ ویتنام + دانگ ویتنام + واتوی وانوواتو + واتوی وانوواتو + واتوی وانوواتو + VUV تالای ساموا + تالای ساموا + تالای ساموا + WST فرانک CFA مرکز افریقا @@ -5530,7 +6219,10 @@ For terms of use, see http://www.unicode.org/copyright.html دلار شرق کارائیب + دلار شرق کارائیب + دلار شرق کارائیب $EC + $ فرانک طلای فرانسه @@ -5545,9 +6237,9 @@ For terms of use, see http://www.unicode.org/copyright.html پالادیم - فرانک CFP - فرانک CFP - فرانک CFP + فرانک اقیانوسیه + فرانک اقیانوسیه + فرانک اقیانوسیه CFPF @@ -5555,7 +6247,7 @@ For terms of use, see http://www.unicode.org/copyright.html ارز نامشخص - (ارز نامشخص) + (واحد ارز نامشخص) (ارز نامشخص) @@ -5563,15 +6255,26 @@ For terms of use, see http://www.unicode.org/copyright.html ریال یمن + ریال یمن + ریال یمن + YER راند افریقای جنوبی + راند افریقای جنوبی + راند افریقای جنوبی + ZAR + R کواچای زامبیا (۱۹۶۸ تا ۲۰۱۲) کواچای زامبیا + کواچای زامبیا + کواچای زامبیا + ZMW + ZK دلار زیمبابوه (۱۹۸۰ تا ۲۰۰۸) @@ -5591,7 +6294,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0} بر {1} + {0} در {1} نیروی جاذبه @@ -5603,6 +6306,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} متر بر مجذور ثانیه {0} متر بر مجذور ثانیه + + دور + {0} دور + {0} دور + + + رادیان + {0} رادیان + {0} رادیان + + + درجه + {0} درجه + {0} درجه + دقیقهٔ قوسی {0} دقیقهٔ قوسی @@ -5613,30 +6331,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ثانیهٔ قوسی {0} ثانیهٔ قوسی - - درجه - {0} درجه - {0} درجه - - - رادیان - {0} رادیان - {0} رادیان - - - جریب - {0} جریب - {0} جریب + + کیلومتر مربع + {0} کیلومتر مربع + {0} کیلومتر مربع هکتار {0} هکتار {0} هکتار + + متر مربع + {0} متر مربع + {0} متر مربع + {0} در متر مربع + سانتی‌متر مربع {0} سانتی‌متر مربع {0} سانتی‌متر مربع + {0} در سانتی‌متر مربع + + + مایل مربع + {0} مایل مربع + {0} مایل مربع + + + جریب + {0} جریب + {0} جریب + + + یارد مربع + {0} یارد مربع + {0} یارد مربع فوت مربع @@ -5647,91 +6377,106 @@ For terms of use, see http://www.unicode.org/copyright.html اینچ مربع {0} اینچ مربع {0} اینچ مربع + {0} در اینچ مربع - - کیلومتر مربع - {0} کیلومتر مربع - {0} کیلومتر مربع - - - متر مربع - {0} متر مربع - {0} متر مربع - - - مایل مربع - {0} مایل مربع - {0} مایل مربع - - - یارد مربع - {0} یارد مربع - {0} یارد مربع + + عیار + {0} عیار + {0} عیار لیتر در کیلومتر {0} لیتر در کیلومتر {0} لیتر در کیلومتر + + لیتر در ۱۰۰ کیلومتر + {0} لیتر در ۱۰۰ کیلومتر + {0} لیتر در ۱۰۰ کیلومتر + مایل در گالن {0} مایل در گالن {0} مایل در گالن - - بیت - {0} بیت - {0} بیت - - - بایت - {0} بایت - {0} بایت - - - گیگابیت - {0} گیگابیت - {0} گیگابیت - - - گیگابایت - {0} گیگابایت - {0} گیگابایت - - - کیلوبیت - {0} کیلوبیت - {0} کیلوبیت - - - کیلوبایت - {0} کیلوبایت - {0} کیلوبایت - - - مگابیت - {0} مگابیت - {0} مگابیت - - - مگابایت - {0} مگابایت - {0} مگابایت - - - ترابیت - {0} ترابیت - {0} ترابیت - ترابایت {0} ترابایت {0} ترابایت + + ترابیت + {0} ترابیت + {0} ترابیت + + + گیگابایت + {0} گیگابایت + {0} گیگابایت + + + گیگابیت + {0} گیگابیت + {0} گیگابیت + + + مگابایت + {0} مگابایت + {0} مگابایت + + + مگابیت + {0} مگابیت + {0} مگابیت + + + کیلوبایت + {0} کیلوبایت + {0} کیلوبایت + + + کیلوبیت + {0} کیلوبیت + {0} کیلوبیت + + + بایت + {0} بایت + {0} بایت + + + بیت + {0} بیت + {0} بیت + + + سده + {0} سده + {0} سده + + + سال + {0} سال + {0} سال + {0} در سال + + + ماه + {0} ماه + {0} ماه + {0} در ماه + + + هفته + {0} هفته + {0} هفته + {0} در هفته + روز {0} روز {0} روز + {0} در روز ساعت @@ -5739,30 +6484,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ساعت {0} در ساعت - - میکروثانیه - {0} میکروثانیه - {0} میکروثانیه - - - میلی‌ثانیه - {0} میلی‌ثانیه - {0} میلی‌ثانیه - دقیقه {0} دقیقه {0} دقیقه - - - ماه - {0} ماه - {0} ماه - - - نانوثانیه - {0} نانوثانیه - {0} نانوثانیه + {0} در دقیقه ثانیه @@ -5770,15 +6496,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ثانیه {0} در ثانیه - - هفته - {0} هفته - {0} هفته + + میلی‌ثانیه + {0} میلی‌ثانیه + {0} میلی‌ثانیه - - سال - {0} سال - {0} سال + + میکروثانیه + {0} میکروثانیه + {0} میکروثانیه + + + نانوثانیه + {0} نانوثانیه + {0} نانوثانیه آمپر @@ -5800,6 +6531,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ولت {0} ولت + + کیلوکالری + {0} کیلوکالری + {0} کیلوکالری + کالری {0} کالری @@ -5810,21 +6546,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} کالری {0} کالری - - ژول - {0} ژول - {0} ژول - - - کیلوکالری - {0} کیلوکالری - {0} کیلوکالری - کیلوژول {0} کیلوژول {0} کیلوژول + + ژول + {0} ژول + {0} ژول + کیلووات‌ساعت {0} کیلووات‌ساعت @@ -5835,201 +6566,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} گیگاهرتز {0} گیگاهرتز - - هرتز - {0} هرتز - {0} هرتز + + مگاهرتز + {0} مگاهرتز + {0} مگاهرتز کیلوهرتز {0} کیلوهرتز {0} کیلوهرتز - - مگاهرتز - {0} مگاهرتز - {0} مگاهرتز + + هرتز + {0} هرتز + {0} هرتز - - واحد نجومی - {0} واحد نجومی - {0} واحد نجومی + + کیلومتر + {0} کیلومتر + {0} کیلومتر + {0}/کیلومتر - - سانتی‌متر - {0} سانتی‌متر - {0} سانتی‌متر + + متر + {0} متر + {0} متر + {0}/متر دسی‌متر {0} دسی‌متر {0} دسی‌متر - - فوت - {0} فوت - {0} فوت - - - اینچ - {0} اینچ - {0} اینچ - - - کیلومتر - {0} کیلومتر - {0} کیلومتر - - - سال نوری - {0} سال نوری - {0} سال نوری - - - متر - {0} متر - {0} متر - - - میکرومتر - {0} میکرومتر - {0} میکرومتر - - - مایل - {0} مایل - {0} مایل + + سانتی‌متر + {0} سانتی‌متر + {0} سانتی‌متر + {0}/سانتی‌متر میلی‌متر {0} میلی‌متر {0} میلی‌متر + + میکرومتر + {0} میکرومتر + {0} میکرومتر + نانومتر {0} نانومتر {0} نانومتر - - مایل دریایی - {0} مایل دریایی - {0} مایل دریایی - - - پارسک - {0} پارسک - {0} پارسک - پیکومتر {0} پیکومتر {0} پیکومتر + + مایل + {0} مایل + {0} مایل + یارد {0} یارد {0} یارد + + فوت + {0} فوت + {0} فوت + {0}/فوت + + + اینچ + {0} اینچ + {0} اینچ + {0}/اینچ + + + پارسک + {0} پارسک + {0} پارسک + + + سال نوری + {0} سال نوری + {0} سال نوری + + + واحد نجومی + {0} واحد نجومی + {0} واحد نجومی + + + مایل دریایی + {0} مایل دریایی + {0} مایل دریایی + + + مایل اسکاندیناوی + {0} مایل اسکاندیناوی + {0} مایل اسکاندیناوی + لوکس {0} لوکس {0} لوکس - - قیراط - {0} قیراط - {0} قیراط - - - گرم - {0} گرم - {0} گرم - - - کیلوگرم - {0} کیلوگرم - {0} کیلوگرم - تن متریک {0} تن متریک {0} تن متریک - - میکروگرم - {0} میکروگرم - {0} میکروگرم + + کیلوگرم + {0} کیلوگرم + {0} کیلوگرم + {0} در کیلوگرم + + + گرم + {0} گرم + {0} گرم + {0} در گرم میلی‌گرم {0} میلی‌گرم {0} میلی‌گرم - - اونس - {0} اونس - {0} اونس - - - اونس تروا - {0} اونس تروا - {0} اونس تروا - - - پوند - {0} پوند - {0} پوند + + میکروگرم + {0} میکروگرم + {0} میکروگرم تن {0} تن {0} تن + + پوند + {0} پوند + {0} پوند + {0} در پوند + + + اونس + {0} اونس + {0} اونس + {0} در اونس + + + اونس تروا + {0} اونس تروا + {0} اونس تروا + + + قیراط + {0} قیراط + {0} قیراط + گیگاوات {0} گیگاوات {0} گیگاوات - - اسب بخار - {0} اسب بخار - {0} اسب بخار - - - کیلووات - {0} کیلووات - {0} کیلووات - مگاوات {0} مگاوات {0} مگاوات - - میلی‌وات - {0} میلی‌وات - {0} میلی‌وات + + کیلووات + {0} کیلووات + {0} کیلووات وات {0} وات {0} وات + + میلی‌وات + {0} میلی‌وات + {0} میلی‌وات + + + اسب بخار + {0} اسب بخار + {0} اسب بخار + هکتوپاسکال {0} هکتوپاسکال {0} هکتوپاسکال - - اینچ جیوه - {0} اینچ جیوه - {0} اینچ جیوه - - - میلی‌بار - {0} میلی‌بار - {0} میلی‌بار - میلی‌متر جیوه {0} میلی‌متر جیوه @@ -6040,10 +6775,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} پوند در اینچ مربع {0} پوند در اینچ مربع - - عیار - {0} عیار - {0} عیار + + اینچ جیوه + {0} اینچ جیوه + {0} اینچ جیوه + + + میلی‌بار + {0} میلی‌بار + {0} میلی‌بار کیلومتر در ساعت @@ -6060,6 +6800,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} مایل در ساعت {0} مایل در ساعت + + گره + {0} گره + {0} گره + + + ° + {0}° + {0}° + درجهٔ سلسیوس {0} درجهٔ سلسیوس @@ -6068,38 +6818,13 @@ For terms of use, see http://www.unicode.org/copyright.html درجهٔ فارنهایت {0} درجهٔ فارنهایت - {0}°F + {0} درجهٔ فارنهایت درجهٔ کلوین {0} درجهٔ کلوین {0} درجهٔ کلوین - - جریب-فوت - {0} جریب-فوت - {0} جریب-فوت - - - سانتی‌لیتر - {0} سانتی‌لیتر - {0} سانتی‌لیتر - - - سانتی‌متر مکعب - {0} سانتی‌متر مکعب - {0} سانتی‌متر مکعب - - - فوت مکعب - {0} فوت مکعب - {0} فوت مکعب - - - اینچ مکعب - {0} اینچ مکعب - {0} اینچ مکعب - کیلومتر مکعب {0} کیلومتر مکعب @@ -6109,6 +6834,13 @@ For terms of use, see http://www.unicode.org/copyright.html متر مکعب {0} متر مکعب {0} متر مکعب + {0} در متر مکعب + + + سانتی‌متر مکعب + {0} سانتی‌متر مکعب + {0} سانتی‌متر مکعب + {0} در سانتی‌متر مکعب مایل مکعب @@ -6120,25 +6852,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} یارد مکعب {0} یارد مکعب - - پیمانه - {0} پیمانه - {0} پیمانه + + فوت مکعب + {0} فوت مکعب + {0} فوت مکعب - - دسی‌لیتر - {0} دسی‌لیتر - {0} دسی‌لیتر + + اینچ مکعب + {0} اینچ مکعب + {0} اینچ مکعب - - اونس سیال - {0} اونس سیال - {0} اونس سیال - - - گالون - {0} گالون - {0} گالون + + مگالیتر + {0} مگالیتر + {0} مگالیتر هکتولیتر @@ -6149,27 +6876,64 @@ For terms of use, see http://www.unicode.org/copyright.html لیتر {0} لیتر {0} لیتر + {0} در لیتر - - مگالیتر - {0} مگالیتر - {0} مگالیتر + + دسی‌لیتر + {0} دسی‌لیتر + {0} دسی‌لیتر + + + سانتی‌لیتر + {0} سانتی‌لیتر + {0} سانتی‌لیتر میلی‌لیتر {0} میلی‌لیتر {0} میلی‌لیتر - - پاینت - {0} پاینت - {0} پاینت + + پاینت متریک + {0} پاینت متریک + {0} پاینت متریک + + + پیمانهٔ متریک + {0} پیمانهٔ متریک + {0} پیمانهٔ متریک + + + جریب فوت + {0} جریب فوت + {0} جریب فوت + + + گالن + {0} گالن + {0} گالن + {0} در گالن کوارت {0} کوارت {0} کوارت + + پاینت + {0} پاینت + {0} پاینت + + + پیمانه + {0} پیمانه + {0} پیمانه + + + اونس سیال + {0} اونس سیال + {0} اونس سیال + قاشق غذاخوری {0} قاشق غذاخوری @@ -6180,6 +6944,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} قاشق چای‌خوری {0} قاشق چای‌خوری + + {0} شرقی + {0} شمالی + {0} جنوبی + {0} غربی + @@ -6195,40 +6965,67 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² - - دقیقهٔ قوسی - {0} دقیقهٔ قوسی - {0} دقیقهٔ قوسی - - - ثانیهٔ قوسی - {0} ثانیهٔ قوسی - {0} ثانیهٔ قوسی - - - درجه - {0} درجه - {0} درجه + + دور + {0} دور + {0} دور رادیان {0} رادیان {0} رادیان - - جریب - {0} جریب - {0} جریب + + درجه + {0} درجه + {0} درجه + + + دقیقهٔ قوسی + {0} د.قوسی + {0} د.قوسی + + + ثانیهٔ قوسی + {0} ث.قوسی + {0} ث.قوسی + + + کیلومتر مربع + {0}‎ km² + {0}‎ km² هکتار {0} هکتار {0} هکتار + + متر مربع + {0} مترمربع + {0} مترمربع + {0} در متر مربع + سانتی‌متر مربع - {0} cm² - {0} cm² + {0}‎ cm² + {0}‎ cm² + {0} در سانتی‌متر مربع + + + مایل مربع + {0} مایل مربع + {0} مایل مربع + + + جریب + {0} جریب + {0} جریب + + + یارد مربع + {0} یارد مربع + {0} یارد مربع فوت مربع @@ -6239,91 +7036,106 @@ For terms of use, see http://www.unicode.org/copyright.html اینچ مربع {0} اینچ مربع {0} اینچ مربع + {0} در اینچ مربع - - کیلومتر مربع - {0} km² - {0} km² - - - متر مربع - {0} مترمربع - {0} مترمربع - - - مایل مربع - {0} مایل مربع - {0} مایل مربع - - - یارد مربع - {0} یارد مربع - {0} یارد مربع + + عیار + {0} عیار + {0} عیار لیتر/کیلومتر - {0} L/km - {0} L/km + {0} ل./ک.م. + {0} ل./ک.م. + + + لیتر/۱۰۰ کیلومتر + {0} ل./۱۰۰ ک.م. + {0} ل./۱۰۰ ک.م. مایل/گالن {0} مایل در گالن {0} مایل در گالن - - بیت - {0} بیت - {0} بیت - - - بایت - {0} بایت - {0} بایت - - - گیگابیت - {0} گیگابیت - {0} گیگابیت - - - گیگابایت - {0} گیگابایت - {0} گیگابایت - - - کیلوبیت - {0} کیلوبیت - {0} کیلوبیت - - - کیلوبایت - {0} کیلوبایت - {0} کیلوبایت - - - مگابیت - {0} مگابیت - {0} مگابیت - - - مگابایت - {0} مگابایت - {0} مگابایت + + ترابایت + {0} ترابایت + {0} ترابایت ترابیت {0} ترابیت {0} ترابیت - - ترابایت - {0} ترابایت - {0} ترابایت + + گیگابایت + {0} گیگابایت + {0} گیگابایت + + + گیگابیت + {0} گیگابیت + {0} گیگابیت + + + مگابایت + {0} مگابایت + {0} مگابایت + + + مگابیت + {0} مگابیت + {0} مگابیت + + + کیلوبایت + {0} کیلوبایت + {0} کیلوبایت + + + کیلوبیت + {0} کیلوبیت + {0} کیلوبیت + + + بایت + {0} بایت + {0} بایت + + + بیت + {0} بیت + {0} بیت + + + سده + {0} سده + {0} سده + + + سال + {0} سال + {0} سال + {0}/سال + + + ماه + {0} ماه + {0} ماه + {0}/ماه + + + هفته + {0} هفته + {0} هفته + {0}/هفته روز {0} روز {0} روز + {0}/روز ساعت @@ -6331,47 +7143,33 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ساعت {0} در ساعت - - میکروثانیه - {0} میکروثانیه - {0} میکروثانیه + + دقیقه + {0} دقیقه + {0} دقیقه + {0}/دقیقه + + + ثانیه + {0} ثانیه + {0} ثانیه + {0} در ثانیه میلی‌ثانیه {0} میلی‌ثانیه {0} میلی‌ثانیه - - دقیقه - {0} دقیقه - {0} دقیقه - - - ماه - {0} ماه - {0} ماه + + میکروثانیه + {0} میکروثانیه + {0} میکروثانیه نانوثانیه {0} نانوثانیه {0} نانوثانیه - - ثانیه - {0} ثانیه - {0} ثانیه - {0}در ثانیه - - - هفته - {0} هفته - {0} هفته - - - سال - {0} سال - {0} سال - آمپر {0} آمپر @@ -6392,6 +7190,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ولت {0} ولت + + ک.کالری + {0} ک.کالری + {0} ک.کالری + cal {0} cal @@ -6399,218 +7202,237 @@ For terms of use, see http://www.unicode.org/copyright.html کالری - {0} Cal - {0} Cal + {0} کالری + {0} کالری + + + ک.ژول + {0} ک.ژول + {0} ک.ژول ژول {0} ژول {0} ژول - - کیلوکالری - {0} کیلوکالری - {0} کیلوکالری - - - کیلوژول - {0} کیلوژول - {0} کیلوژول - - کیلووات‌ساعت - {0} kWh - {0} kWh + ک.وات‌ساعت + {0} ک.وات‌ساعت + {0} ک.وات‌ساعت گیگاهرتز {0} گیگاهرتز {0} گیگاهرتز - - هرتز - {0} هرتز - {0} هرتز - - - کیلوهرتز - {0} کیلوهرتز - {0} کیلوهرتز - مگاهرتز {0} مگاهرتز {0} مگاهرتز - - واحد نجومی - {0} واحد نجومی - {0} واحد نجومی + + ک.هرتز + {0} ک.هرتز + {0} ک.هرتز - - سانت - {0} سانت - {0} سانت + + هرتز + {0} هرتز + {0} هرتز + + + کیلومتر + {0} کیلومتر + {0} کیلومتر + {0}/کیلومتر + + + متر + {0} متر + {0} متر + {0}/متر دسی‌متر {0} دسی‌متر {0} دسی‌متر - - فوت - {0} فوت - {0} فوت + + سانت + {0} سانت + {0} سانت + {0}/سانت - - اینچ - {0} اینچ - {0} اینچ - - - کیلومتر - {0} کیلومتر - {0} کیلومتر - - - سال نوری - {0} سال نوری - {0} سال نوری - - - متر - {0} متر - {0} متر + + م‌م + {0} م‌م + {0} م‌م میکرومتر {0} میکرومتر {0} میکرومتر - - مایل - {0} مایل - {0} مایل - - - میلی‌متر - {0} میلی‌متر - {0} میلی‌متر - نانومتر {0} نانومتر {0} نانومتر - - مایل دریایی - {0} مایل دریایی - {0} مایل دریایی - - - پارسک - {0} پارسک - {0} پارسک - پیکومتر {0} پیکومتر {0} پیکومتر + + مایل + {0} مایل + {0} مایل + یارد {0} یارد {0} یارد + + فوت + {0} فوت + {0} فوت + {0}/فوت + + + اینچ + {0} اینچ + {0} اینچ + {0}/اینچ + + + پارسک + {0} پارسک + {0} پارسک + + + سال نوری + {0} سال نوری + {0} سال نوری + + + واحد نجومی + {0} واحد نجومی + {0} واحد نجومی + + + مایل دریایی + {0} مایل دریایی + {0} مایل دریایی + + + مایل اسکاندیناوی + {0}‎ smi + {0}‎ smi + لوکس {0} لوکس {0} لوکس - - قیراط - {0} قیراط - {0} قیراط - - - گرم - {0} گرم - {0} گرم - - - کیلوگرم - {0} کیلوگرم - {0} کیلوگرم - تن متریک {0} تن متریک {0} تن متریک - - میکروگرم - {0} میکروگرم - {0} میکروگرم + + کیلوگرم + {0} کیلوگرم + {0} کیلوگرم + {0} در کیلوگرم + + + گرم + {0} گرم + {0} گرم + {0} در گرم میلی‌گرم {0} میلی‌گرم {0} میلی‌گرم - - اونس - {0} اونس - {0} اونس - - - اونس تروا - {0} اونس تروا - {0} اونس تروا - - - پوند - {0} پوند - {0} پوند + + میکروگرم + {0} میکروگرم + {0} میکروگرم تن {0} تن {0} تن + + پوند + {0} پوند + {0} پوند + {0} در پوند + + + اونس + {0} اونس + {0} اونس + {0} در اونس + + + اونس تروا + {0} اونس تروا + {0} اونس تروا + + + قیراط + {0} قیراط + {0} قیراط + گیگاوات {0} گیگاوات {0} گیگاوات - - اسب بخار - {0} اسب بخار - {0} اسب بخار - - - کیلووات - {0} کیلووات - {0} کیلووات - مگاوات {0} مگاوات {0} مگاوات - - میلی‌وات - {0} میلی‌وات - {0} میلی‌وات + + ک.وات + {0} ک.وات + {0} ک.وات وات {0} وات {0} وات + + میلی‌وات + {0} میلی‌وات + {0} میلی‌وات + + + اسب بخار + {0} اسب بخار + {0} اسب بخار + هکتوپاسکال - {0} hPa - {0} hPa + {0}‎ hPa + {0}‎ hPa + + + میلی‌متر جیوه + {0} م‌م جیوه + {0} م‌م جیوه + + + پوند در اینچ مربع + {0}‎ psi + {0}‎ psi اینچ جیوه @@ -6622,25 +7444,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} میلی‌بار {0} میلی‌بار - - میلی‌متر جیوه - {0} mm Hg - {0} mm Hg - - - پوند در اینچ مربع - {0} psi - {0} psi - - - عیار - {0} عیار - {0} عیار - کیلومتر در ساعت - {0} km/h - {0} km/h + {0}‎ km/h + {0}‎ km/h متر در ثانیه @@ -6649,8 +7456,18 @@ For terms of use, see http://www.unicode.org/copyright.html مایل در ساعت - {0} m/h - {0} m/h + {0}‎ mph + {0}‎ mph + + + گره + {0} گره + {0} گره + + + ° + {0}° + {0}° درجهٔ سلسیوس @@ -6667,40 +7484,22 @@ For terms of use, see http://www.unicode.org/copyright.html ‎{0} K ‎{0} K - - جریب فوت - {0} جریب فوت - {0} جریب فوت - - - سانتی‌لیتر - {0} سانتی‌لیتر - {0} سانتی‌لیتر - - - سانتی‌متر مکعب - {0} cm³ - {0} cm³ - - - فوت مکعب - {0} فوت مکعب - {0} فوت مکعب - - - اینچ مکعب - {0} اینچ مکعب - {0} اینچ مکعب - کیلومتر مکعب - {0} km³ - {0} km³ + {0}‎ km³ + {0}‎ km³ متر مکعب {0} متر مکعب {0} متر مکعب + {0} در متر مکعب + + + سانتی‌متر مکعب + {0}‎ cm³ + {0}‎ cm³ + {0}‎ /cm³ مایل مکعب @@ -6712,25 +7511,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} یارد مکعب {0} یارد مکعب - - پیمانه - {0} پیمانه - {0} پیمانه + + فوت مکعب + {0} فوت مکعب + {0} فوت مکعب - - دسی‌لیتر - {0} دسی‌لیتر - {0} دسی‌لیتر + + اینچ مکعب + {0} اینچ مکعب + {0} اینچ مکعب - - اونس سیال - {0}انس‌سیال - {0}انس‌سیال - - - گالون - {0} گالون - {0} گالون + + مگالیتر + {0} مگالیتر + {0} مگالیتر هکتولیتر @@ -6741,37 +7535,80 @@ For terms of use, see http://www.unicode.org/copyright.html لیتر {0} لیتر {0} لیتر + {0} در لیتر - - مگالیتر - {0} مگالیتر - {0} مگالیتر + + دسی‌لیتر + {0} دسی‌لیتر + {0} دسی‌لیتر + + + سانتی‌لیتر + {0} سانتی‌لیتر + {0} سانتی‌لیتر میلی‌لیتر {0} میلی‌لیتر {0} میلی‌لیتر - - پاینت - {0} پاینت - {0} پاینت + + پاینت متریک + {0} پاینت متریک + {0} پاینت متریک + + + پیمانهٔ متریک + {0} پیمانهٔ متریک + {0} پیمانهٔ متریک + + + جریب فوت + {0} جریب فوت + {0} جریب فوت + + + گالن + {0} گالن + {0} گالن + {0} در گالن کوارت {0} کوارت {0} کوارت + + پاینت + {0} پاینت + {0} پاینت + + + پیمانه + {0} پیمانه + {0} پیمانه + + + اونس سیال + {0}‎ fl oz + {0}‎ fl oz + - قاشق غذاخوری + قاشق غ. {0} قاشق غ. {0} قاشق غ. - قاشق چای‌خوری + قاشق چ. {0} قاشق چ. {0} قاشق چ. + + {0} شرقی + {0} شمالی + {0} جنوبی + {0} غربی + @@ -6781,6 +7618,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}G {0}G + + رادیان + + + درجه + {0}° + {0}° + {0}′ {0}′ @@ -6789,30 +7634,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - درجه - {0}° - {0}° - - - رادیان - - - {0}جریب - {0} جریب + + {0}km² + {0}km² {0}ha {0}ha - - {0}ft² - {0}ft² - - - {0}km² - {0}km² - {0}m² {0}m² @@ -6821,74 +7650,128 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² - - بیت + + {0}جریب + {0} جریب + + + یارد مربع + {0} یارد مربع + {0} یارد مربع + + + {0}ft² + {0}ft² + + + لیتر/۱۰۰ کیلومتر + {0} ل./۱۰۰ ک.م. + {0} ل./۱۰۰ ک.م. بایت + + بیت + + + سال + {0} سال + {0} سال + {0}/سال + + + ماه + {0} ماه + {0} ماه + {0}/ماه + + + هفته + {0} هفته + {0} هفته + {0}/هفته + روز {0} روز {0} روز + {0}/روز ساعت {0} ساعت {0} ساعت + {0}/ساعت - - میکروثانیه + + دقیقه + {0} دقیقه + {0} دقیقه + {0}/دقیقه + + + ثانیه + {0} ث + {0} ث + {0}/ث میلی‌ثانیه {0}ms {0}ms - - دقیقه - {0} دقیقه - {0} دقیقه - - - ماه - {0} ماه - {0} ماه - - - ثانیه - {0}ثانیه - {0}ثانیه - - - هفته - {0} هفته - {0} هفته - - - سال - {0} سال - {0} سال + + میکروثانیه - گ‌.هرتز - {0} گ.هرتز - {0} گ.هرتز - - - ک.هرتز - {0} ک.هرتز - {0} ک.هرتز + گ‌.هرتز + {0} گ.هرتز + {0} گ.هرتز - مگاهرتز - {0} مگاهرتز - {0} مگاهرتز + مگاهرتز + {0} مگاهرتز + {0} مگاهرتز + + + ک.هرتز + {0} ک.هرتز + {0} ک.هرتز + + + کیلومتر + {0}km + {0}km + + + متر + {0} متر + {0} متر + {0}/متر - cm - ‎{0}cm - ‎{0}cm + سانت + {0} سانت + {0} سانت + + + م‌م + {0} م‌م + {0} م‌م + + + {0}pm + {0}pm + + + {0}mi + {0}mi + + + یارد + {0} یارد + {0} یارد {0}ft @@ -6898,58 +7781,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0}in {0}in - - کیلومتر - {0}km - {0}km + + پارسک + {0} پارسک + {0} پارسک {0}ly {0}ly - - متر - {0} متر - {0} متر - - - {0}mi - {0}mi - - - میلی‌متر - {0}میلی‌متر - {0}میلی‌متر - - - {0}pm - {0}pm - - - {0}yd - {0}yd - - - گرم - {0} گرم - {0} گرم + + واحد نجومی کیلوگرم {0}kg {0}kg - - {0}oz - {0}oz + + گرم + {0} گرم + {0} گرم {0}lb {0}lb - - {0}hp - {0}hp + + {0}oz + {0}oz {0}kW @@ -6959,6 +7819,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}W {0}W + + {0}hp + {0}hp + {0}hPa {0}hPa @@ -6973,8 +7837,8 @@ For terms of use, see http://www.unicode.org/copyright.html کیلومتر/ساعت - {0}km/h - {0}km/h + {0}‎ km/h + {0}‎ km/h {0}m/s @@ -7012,6 +7876,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} لیتر {0} لیتر + + {0} شرقی + {0} شمالی + {0} جنوبی + {0} غربی + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fa_AF.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fa_AF.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fa_AF.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fa_AF.xml index 13ff47a139c..43e3d6c60a2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fa_AF.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fa_AF.xml @@ -1,13 +1,12 @@ - - - + @@ -125,7 +124,7 @@ For terms of use, see http://www.unicode.org/copyright.html - [\u200C \u200D \u200E\u200F \u064E \u0650 \u064F \u0652 \u0656 \u0670 إ ټ ځ څ ډ ړ ږ ښ ك ګ ڼ ى ي] + [\u200E\u200F \u064E \u0650 \u064F \u0652 \u0656 \u0670 \u200C \u200D إ ټ ځ څ ډ ړ ږ ښ ك ګ ڼ ى ي] @@ -134,8 +133,16 @@ For terms of use, see http://www.unicode.org/copyright.html جنو - مـی + فبروری + مارچ + اپریل + می + جون جول + اگست + سپتمبر + اکتوبر + نومبر دسم @@ -256,3 +263,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fa_IR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fa_IR.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fa_IR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fa_IR.xml index 934a6b3b8e3..5bf42115af3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fa_IR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fa_IR.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ff.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ff.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ff.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ff.xml index ded1a9b5c36..d3e6f83a515 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ff.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ff.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anngiyaa Albanii Armenii - Antiiye Nederlanndeeje Anngolaa Arjantiin Samowa Amerik @@ -447,6 +445,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + subaka + kikiiɗe + subaka kikiiɗe @@ -583,6 +585,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0K ¤ + 0K ¤ + 00K ¤ + 00K ¤ + 000K ¤ + 000K ¤ + 0M ¤ + 0M ¤ + 00M ¤ + 00M ¤ + 000M ¤ + 000M ¤ + 0G ¤ + 0G ¤ + 00G ¤ + 00G ¤ + 000G ¤ + 000G ¤ + 0T ¤ + 0T ¤ + 00T ¤ + 00T ¤ + 000T ¤ + 000T ¤ + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ff_CM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ff_CM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ff_CM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ff_CM.xml index 4363da94a1f..051769e970a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ff_CM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ff_CM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ff_GN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ff_GN.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ff_GN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ff_GN.xml index f94d81f9310..697fca97271 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ff_GN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ff_GN.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ff_MR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ff_MR.xml new file mode 100644 index 00000000000..6cad4e7d78c --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ff_MR.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + + + + + UM + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ff_SN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ff_SN.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ff_SN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ff_SN.xml index 991771e0cfd..e2509dea92b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ff_SN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ff_SN.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fi.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fi.xml similarity index 88% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fi.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fi.xml index 262920cb5da..3d87c4df5af 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fi.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fi.xml @@ -1,13 +1,12 @@ - - - + @@ -59,7 +58,6 @@ For terms of use, see http://www.unicode.org/copyright.html aimara azeri azeri - eteläazeri baškiiri belutši bali @@ -76,6 +74,7 @@ For terms of use, see http://www.unicode.org/copyright.html fut badaga bulgaria + länsibelutši bhodžpuri bislama bikol @@ -170,7 +169,7 @@ For terms of use, see http://www.unicode.org/copyright.html esperanto espanja amerikanespanja - espanjanespanja + euroopanespanja meksikonespanja alaskanjupik viro @@ -341,6 +340,7 @@ For terms of use, see http://www.unicode.org/copyright.html lao mongo lozi + pohjoisluri liettua latgalli katanganluba @@ -402,6 +402,7 @@ For terms of use, see http://www.unicode.org/copyright.html norjan bokmål pohjois-ndebele alasaksa + alankomaidenalasaksa nepali newari ndonga @@ -457,7 +458,7 @@ For terms of use, see http://www.unicode.org/copyright.html paštu portugali brasilianportugali - portugalinportugali + euroopanportugali ketšua kʼicheʼ chimborazonylänköketšua @@ -495,6 +496,7 @@ For terms of use, see http://www.unicode.org/copyright.html skotti sindhi sassarinsardi + eteläkurdi pohjoissaame seneca sena @@ -537,8 +539,8 @@ For terms of use, see http://www.unicode.org/copyright.html sumeri ruotsi swahili + kingwana komori - kingwana muinaissyyria syyria sleesia @@ -605,6 +607,7 @@ For terms of use, see http://www.unicode.org/copyright.html wolaitta waray washo + warlpiri wolof wu-kiina kalmukki @@ -636,6 +639,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -688,6 +692,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -735,6 +740,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -846,7 +852,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Alankomaiden Antillit Angola Antarktis Argentiina @@ -1122,10 +1127,15 @@ For terms of use, see http://www.unicode.org/copyright.html itäarmenialainen länsiarmenialainen yhtenäistetty turkkilainen latinalainen aakkosto + aniin balankalaismurre + kapverdenkreolin barlaventolainen murreryhmä sanskriitin buddhalainen sekamuoto baskin biskajalaismurre sloveenin resian San Giorgion/Bilan alamurre + sloveenin Bohorič-aakkosto englannin boontling-murre + sloveenin Dajnko-aakkosto + serbian ekavialainen ääntämys varhaisnykyenglanti kansainvälinen foneettinen aakkosto IPA uralilainen foneettinen aakkosto UPA @@ -1133,14 +1143,17 @@ For terms of use, see http://www.unicode.org/copyright.html foneettinen X-SAMPA-merkistö japanin Hepburn-latinaistus norjan högnorsk + serbian ijekavialainen ääntämiys sanskriitin eeppinen muoto retoromaanin jauer-murre kantoninkiinan jyutping-latinaistus kornin yleiskirjoitus + puolan kociewielainen murre kornin standardikirjoitus klassinen sanskriitti sloveenin resian Lipovazin/Lipovecin alamurre venäjän ortografia 1918 + sloveenin Metelko-aakkosto monotoninen kreikka ndyukan kreolimurre sloveenin natisonen murre @@ -1161,6 +1174,7 @@ For terms of use, see http://www.unicode.org/copyright.html skotlanninenglanti englannin scouse-murre sloveenin resian Stolvizzan/Solbican alamurre + kapverdenkreolin sotaventolainen murreryhmä retoromaanin surmiran-muoto retoromaanin sursilvan-muoto retoromaanin sutsilvan-muoto @@ -1168,6 +1182,7 @@ For terms of use, see http://www.unicode.org/copyright.html kornin yhtenäiskirjoitus kornin uusittu yhtenäiskirjoitus skotin ulster-murre + englannin foneeminen unifon-aakkosto sanskriitin veda-murre katalaanin valencian murre reoromaanin vallader-muoto @@ -1185,6 +1200,9 @@ For terms of use, see http://www.unicode.org/copyright.html numeroiden lajittelu lajittelun taso valuutta + tuntijärjestelmä + rivinvaihtotyyli + mittajärjestelmä numerot aikavyöhyke maavalinnan muunnelma @@ -1192,121 +1210,133 @@ For terms of use, see http://www.unicode.org/copyright.html yksityiskäyttö - arabialaiset numerot - laajennetut arabialaiset numerot - armenialaiset numerot - armenialaiset piennumerot - balilaiset numerot - bengalilaiset numerot - perinteinen kiinalainen järjestys Big5 - brahmilaiset numerot - buddhalainen kalenteri - chakmalaiset numerot - cham-numerot - kiinalainen kalenteri - koptilainen kalenteri - dangilainen kalenteri - devanagarinumerot - sanakirjajärjestys - Unicoden oletusjärjestys - yleiseurooppalainen lajittelujärjestys - etiopialaiset numerot - etiopialainen kalenteri - etiopialainen amete alem -kalenteri - talousnumerot - ideografin levyiset numerot - yksinkertaistettu kiinalainen järjestys GB2312 - georgialaiset numerot - gregoriaaninen kalenteri - kreikkalaiset numerot - kreikkalaiset piennumerot - gudžaratilaiset numerot - gurmukhilaiset numerot - kiinalaiset desimaalinumerot - yksinkertaistetut kiinalaiset numerot - yksinkertaistetut kiinalaiset talousnumerot - perinteiset kiinalaiset numerot - perinteiset kiinalaiset talousnumerot - heprealaiset numerot - juutalainen kalenteri - kaikkien merkkien lajittelu - intialainen kalenteri - islamilainen kalenteri - islamilainen siviilikalenteri, perjantai-epookki - islamilainen saudiarabialainen kalenteri - islamilainen matemaattinen kalenteri, torstai-epookki - islamilainen Umm al-Qura -kalenteri - ISO 8601 -kalenteri - japanilainen kalenteri - jaavalaiset numerot - japanilaiset numerot - japanilaiset talousnumerot - kayah li -numerot - khmeriläiset numerot - kannadalaiset numerot - taithamin hora-numerot - taithamin tham-numerot - laolaiset numerot - länsimaiset numerot - lepchanumerot - limbunumerot - pienet kirjaimet edeltävät isoja - malajalamilaiset numerot - mongolialaiset numerot - meetei mayek -numerot - burmalaiset numerot - myanmarin shan-numerot - kielen omat numerot - n’ko-numerot - painomerkkien normaali lajittelu - isojen ja pienten kirjainten normaalijärjestys - isojen ja pienten kirjainten lajittelu yhdessä - kana-merkkien lajittelu erillisinä - lajittelu ilman normalisoinrtia - numero-numerolta lajittelu - symbolit huomioiva lajittelu - ol chiki -numerot - orijalaiset numerot - osmanjalaiset numerot - persialainen kalenteri - puhelinluettelojärjestys - äänteellinen järjestys - pinyin-järjestys - vain peruskirjainten lajittelu - painomerkit ja aakkoslajit tai merkkileveydet ja kana-merkit huomioiva lajittelu - uudistettu järjestys - Kiinan tasavallan kalenteri - roomalaiset numerot - roomalaiset piennumerot - saurashtra-numerot - yleishakujärjestys - haku hangul-alkukonsonantin mukaan - painomerkit huomioiva lajittelu - symbolit ohittava lajittelu - šarida-numerot - sora sompeng -numerot - normaalijärjestys - piirtojärjestys - sundalaiset numerot - takri-numerot - uudet tai lue -numerot - perinteiset tamilinumerot - tamilinumerot - telugulaiset numerot - painomerkit ja aakkoslajit tai merkkileveydet huomioiva lajittelu - thainumerot - tiibetiläiset numerot - perinteinen järjestys - perinteiset numerot - radikaali- ja piirtojärjestys - isot kirjaimet edeltävät pieniä - vai-numerot - painomerkkien käänteinen lajittelu - isojen ja pienten kirjainten lajittelu erikseen - kana-merkkien lajittelu tyypin mukaan - lajittelu Unicode-normalisoituna - numeroden lajittelu lukuina - zhuyin-järjestys + buddhalainen kalenteri + kiinalainen kalenteri + koptilainen kalenteri + dangilainen kalenteri + etiopialainen kalenteri + etiopialainen amete alem -kalenteri + gregoriaaninen kalenteri + juutalainen kalenteri + intialainen kalenteri + islamilainen kalenteri + islamilainen siviilikalenteri, perjantai-epookki + islamilainen saudiarabialainen kalenteri + islamilainen matemaattinen kalenteri, torstai-epookki + islamilainen Umm al-Qura -kalenteri + ISO 8601 -kalenteri + japanilainen kalenteri + persialainen kalenteri + Kiinan tasavallan kalenteri + symbolit huomioiva lajittelu + symbolit ohittava lajittelu + painomerkkien normaali lajittelu + painomerkkien käänteinen lajittelu + pienet kirjaimet edeltävät isoja + isojen ja pienten kirjainten normaalijärjestys + isot kirjaimet edeltävät pieniä + isojen ja pienten kirjainten lajittelu yhdessä + isojen ja pienten kirjainten lajittelu erikseen + kana-merkkien lajittelu erillisinä + kana-merkkien lajittelu tyypin mukaan + perinteinen kiinalainen järjestys Big5 + aiempi lajittelujärjestys yhteensopivuutta varten + sanakirjajärjestys + Unicoden oletusjärjestys + emojien lajittelujärjestys + yleiseurooppalainen lajittelujärjestys + yksinkertaistettu kiinalainen järjestys GB2312 + puhelinluettelojärjestys + äänteellinen järjestys + pinyin-järjestys + uudistettu järjestys + yleishakujärjestys + haku hangul-alkukonsonantin mukaan + normaalijärjestys + piirtojärjestys + perinteinen järjestys + radikaali- ja piirtojärjestys + zhuyin-järjestys + lajittelu ilman normalisoinrtia + lajittelu Unicode-normalisoituna + numero-numerolta lajittelu + numeroden lajittelu lukuina + kaikkien merkkien lajittelu + vain peruskirjainten lajittelu + painomerkit ja aakkoslajit tai merkkileveydet ja kana-merkit huomioiva lajittelu + painomerkit huomioiva lajittelu + painomerkit ja aakkoslajit tai merkkileveydet huomioiva lajittelu + 12 tunnin järjestelmä (0–11) + 12 tunnin järjestelmä (1–12) + 24 tunnin järjestelmä (0–23) + 24 tunnin järjestelmä (1–24) + väljä rivinvaihto + normaali rivinvaihto + tarkka rivinvaihto + metrijärjestelmä + brittiläinen mittajärjestelmä + yhdysvaltalainen mittajärjestelmä + arabialaiset numerot + laajennetut arabialaiset numerot + armenialaiset numerot + armenialaiset piennumerot + balilaiset numerot + bengalilaiset numerot + brahmilaiset numerot + chakmalaiset numerot + cham-numerot + devanagarinumerot + etiopialaiset numerot + talousnumerot + ideografin levyiset numerot + georgialaiset numerot + kreikkalaiset numerot + kreikkalaiset piennumerot + gudžaratilaiset numerot + gurmukhilaiset numerot + kiinalaiset desimaalinumerot + yksinkertaistetut kiinalaiset numerot + yksinkertaistetut kiinalaiset talousnumerot + perinteiset kiinalaiset numerot + perinteiset kiinalaiset talousnumerot + heprealaiset numerot + jaavalaiset numerot + japanilaiset numerot + japanilaiset talousnumerot + kayah li -numerot + khmeriläiset numerot + kannadalaiset numerot + taithamin hora-numerot + taithamin tham-numerot + laolaiset numerot + länsimaiset numerot + lepchanumerot + limbunumerot + malajalamilaiset numerot + mongolialaiset numerot + meetei mayek -numerot + burmalaiset numerot + myanmarin shan-numerot + kielen omat numerot + n’ko-numerot + ol chiki -numerot + orijalaiset numerot + osmanjalaiset numerot + roomalaiset numerot + roomalaiset piennumerot + saurashtra-numerot + šarida-numerot + sora sompeng -numerot + sundalaiset numerot + takri-numerot + uudet tai lue -numerot + perinteiset tamilinumerot + tamilinumerot + telugulaiset numerot + thainumerot + tiibetiläiset numerot + perinteiset numerot + vai-numerot BGN-latinaistus @@ -1524,6 +1554,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d. MMM ccc d. MMM + d. MMMM mm.ss y G y G @@ -1853,24 +1884,72 @@ For terms of use, see http://www.unicode.org/copyright.html + keskiyö ap. + keskip. ip. + aamu + aamup. + iltap. + ilta + + ky. ap. kp. ip. + aamu + ap. + ip. + ilta + + keskiyöllä ap. - keskipäivä + keskipäivällä ip. + aamulla + aamupäivällä + iltapäivällä + illalla + yöllä - + + keskiyö ap. + keskip. ip. + aamu + aamup. + iltap. + ilta + + + + ky. + ap. + kp. + ip. + aamu + ap. + ip. + ilta + + + + keskiyö + ap. + keskipäivä + ip. + aamu + aamupäivä + iltapäivä + ilta + @@ -1961,7 +2040,7 @@ For terms of use, see http://www.unicode.org/copyright.html d - ccc + ccc E d. E h.mm a E H.mm @@ -1987,6 +2066,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d. MMM ccc d. MMM + d. MMMM m.ss y L.y @@ -2213,9 +2293,6 @@ For terms of use, see http://www.unicode.org/copyright.html - @@ -2268,17 +2345,23 @@ For terms of use, see http://www.unicode.org/copyright.html v + viime v + tänä v + ensi v - {0} vuoden päästä - {0} vuoden päästä + {0} v päästä + {0} v päästä - {0} vuotta sitten - {0} vuotta sitten + {0} v sitten + {0} v sitten v + viime v + tänä v + ensi v {0} v päästä {0} v päästä @@ -2290,6 +2373,9 @@ For terms of use, see http://www.unicode.org/copyright.html neljännesvuosi + viime neljännesvuonna + tänä neljännesvuonna + ensi neljännesvuonna {0} neljännesvuoden päästä {0} neljännesvuoden päästä @@ -2301,6 +2387,9 @@ For terms of use, see http://www.unicode.org/copyright.html neljännes + viime neljänneksenä + tänä neljänneksenä + ensi neljänneksenä {0} neljänneksen päästä {0} neljänneksen päästä @@ -2312,6 +2401,9 @@ For terms of use, see http://www.unicode.org/copyright.html nelj. + viime nelj. + tänä nelj. + ensi nelj. {0} nelj. päästä {0} nelj. päästä @@ -2337,6 +2429,9 @@ For terms of use, see http://www.unicode.org/copyright.html kk + viime kk + tässä kk + ensi kk {0} kk päästä {0} kk päästä @@ -2348,6 +2443,9 @@ For terms of use, see http://www.unicode.org/copyright.html kk + viime kk + tässä kk + ensi kk {0} kk päästä {0} kk päästä @@ -2373,6 +2471,9 @@ For terms of use, see http://www.unicode.org/copyright.html vk + viime vk + tällä vk + ensi vk {0} vk päästä {0} vk päästä @@ -2384,6 +2485,9 @@ For terms of use, see http://www.unicode.org/copyright.html vk + viime vk + tällä vk + ensi vk {0} vk päästä {0} vk päästä @@ -2411,6 +2515,11 @@ For terms of use, see http://www.unicode.org/copyright.html pv + toissap. + eilen + tänään + huom. + ylihuom. {0} pv päästä {0} pv päästä @@ -2422,6 +2531,11 @@ For terms of use, see http://www.unicode.org/copyright.html pv + toissap. + eilen + tänään + huom. + ylihuom. {0} pv päästä {0} pv päästä @@ -2622,6 +2736,7 @@ For terms of use, see http://www.unicode.org/copyright.html s + nyt {0} s päästä {0} s päästä @@ -2633,6 +2748,7 @@ For terms of use, see http://www.unicode.org/copyright.html s + nyt {0} s päästä {0} s päästä @@ -2658,19 +2774,19 @@ For terms of use, see http://www.unicode.org/copyright.html tuntematon - Andorra + Andorra - Dubai + Dubai - Kabul + Kabul - Antigua + Antigua - Anguilla + Anguilla Tirana @@ -2679,64 +2795,64 @@ For terms of use, see http://www.unicode.org/copyright.html Jerevan - Luanda + Luanda - Rothera + Rothera - Palmer + Palmer - Troll + Troll - Syowa + Syowa - Mawson + Mawson - Davis + Davis - Vostok + Vostok - Casey + Casey Dumont d’Urville - McMurdo + McMurdo - Rio Gallegos + Rio Gallegos - Mendoza + Mendoza - San Juan + San Juan - Ushuaia + Ushuaia - La Rioja + La Rioja - San Luis + San Luis - Catamarca + Catamarca - Salta + Salta - Jujuy + Jujuy Tucumán @@ -2745,119 +2861,119 @@ For terms of use, see http://www.unicode.org/copyright.html Córdoba - Buenos Aires + Buenos Aires - Pago Pago + Pago Pago Wien - Perth + Perth - Eucla + Eucla - Darwin + Darwin - Adelaide + Adelaide - Broken Hill + Broken Hill - Currie + Currie - Melbourne + Melbourne - Hobart + Hobart - Lindeman + Lindeman - Sydney + Sydney - Brisbane + Brisbane Macquariensaari - Lord Howe + Lord Howe - Aruba + Aruba Maarianhamina Mariehamn - Baku + Baku - Sarajevo + Sarajevo - Barbados + Barbados - Dhaka + Dhaka Bryssel - Ouagadougou + Ouagadougou - Sofia + Sofia - Bahrain + Bahrain - Bujumbura + Bujumbura - Porto-Novo + Porto-Novo Saint-Barthélemy - Bermuda + Bermuda - Brunei + Brunei - La Paz + La Paz - Kralendijk + Kralendijk Eirunepé - Rio Branco + Rio Branco - Porto Velho + Porto Velho - Boa Vista + Boa Vista - Manaus + Manaus Cuiabá @@ -2866,10 +2982,10 @@ For terms of use, see http://www.unicode.org/copyright.html Santarém - Campo Grande + Campo Grande - Belem + Belem Araguaína @@ -2878,112 +2994,112 @@ For terms of use, see http://www.unicode.org/copyright.html São Paulo - Bahia + Bahia - Fortaleza + Fortaleza Maceió - Recife + Recife - Noronha + Noronha - Nassau + Nassau - Thimphu + Thimphu - Gaborone + Gaborone - Minsk + Minsk - Belize + Belize - Dawson + Dawson - Whitehorse + Whitehorse - Inuvik + Inuvik - Vancouver + Vancouver - Dawson Creek + Dawson Creek - Creston + Creston - Yellowknife + Yellowknife - Edmonton + Edmonton - Swift Current + Swift Current - Cambridge Bay + Cambridge Bay - Regina + Regina - Winnipeg + Winnipeg - Resolute + Resolute - Rainy River + Rainy River - Rankin Inlet + Rankin Inlet Atikokan - Thunder Bay + Thunder Bay - Nipigon + Nipigon - Toronto + Toronto - Iqaluit + Iqaluit - Pangnirtung + Pangnirtung - Moncton + Moncton - Halifax + Halifax - Goose Bay + Goose Bay - Glace Bay + Glace Bay - Blanc-Sablon + Blanc-Sablon St. John’s @@ -2992,25 +3108,25 @@ For terms of use, see http://www.unicode.org/copyright.html Kookossaaret - Kinshasa + Kinshasa - Lubumbashi + Lubumbashi - Bangui + Bangui - Brazzaville + Brazzaville Zürich - Abidjan + Abidjan - Rarotonga + Rarotonga Pääsiäissaari @@ -3019,19 +3135,19 @@ For terms of use, see http://www.unicode.org/copyright.html Santiago de Chile - Douala + Douala Ürümqi - Shanghai + Shanghai Bogotá - Costa Rica + Costa Rica Havanna @@ -3052,22 +3168,22 @@ For terms of use, see http://www.unicode.org/copyright.html Praha - Busingen + Busingen Berliini - Djibouti + Djibouti Kööpenhamina - Dominica + Dominica - Santo Domingo + Santo Domingo Alger @@ -3076,7 +3192,7 @@ For terms of use, see http://www.unicode.org/copyright.html Galapagos - Guayaquil + Guayaquil Tallinna @@ -3094,22 +3210,22 @@ For terms of use, see http://www.unicode.org/copyright.html Kanariansaaret - Ceuta + Ceuta - Madrid + Madrid Addis Abeba - Helsinki + Helsinki Fidži - Stanley + Stanley Chuuk @@ -3118,7 +3234,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pohnpei - Kosrae + Kosrae Färsaaret @@ -3127,7 +3243,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pariisi - Libreville + Libreville @@ -3136,25 +3252,25 @@ For terms of use, see http://www.unicode.org/copyright.html Lontoo - Grenada + Grenada - Tbilisi + Tbilisi - Cayenne + Cayenne - Guernsey + Guernsey - Accra + Accra - Gibraltar + Gibraltar - Thule + Thule Qaanaaq @@ -3166,19 +3282,19 @@ For terms of use, see http://www.unicode.org/copyright.html Scoresbysund - Danmarkshavn + Danmarkshavn - Banjul + Banjul - Conakry + Conakry - Guadeloupe + Guadeloupe - Malabo + Malabo Ateena @@ -3187,52 +3303,52 @@ For terms of use, see http://www.unicode.org/copyright.html Etelä-Georgia - Guatemala + Guatemala - Guam + Guam - Bissau + Bissau - Guyana + Guyana Hongkong - Tegucigalpa + Tegucigalpa - Zagreb + Zagreb - Port-au-Prince + Port-au-Prince - Budapest + Budapest - Jakarta + Jakarta - Pontianak + Pontianak - Makassar + Makassar - Jayapura + Jayapura Irlannin kesäaika - Dublin + Dublin - Jerusalem + Jerusalem Mansaari @@ -3241,7 +3357,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kalkutta - Chagos + Chagos Bagdad @@ -3256,34 +3372,34 @@ For terms of use, see http://www.unicode.org/copyright.html Rooma - Jersey + Jersey Jamaika - Amman + Amman Tokio - Nairobi + Nairobi Biškek - Phnom Penh + Phnom Penh - Enderbury + Enderbury - Kiritimati + Kiritimati - Tarawa + Tarawa Komorit @@ -3298,10 +3414,10 @@ For terms of use, see http://www.unicode.org/copyright.html Soul - Kuwait + Kuwait - Cayman + Cayman Aqtaw @@ -3316,28 +3432,28 @@ For terms of use, see http://www.unicode.org/copyright.html Qızılorda - Almaty + Almaty - Vientiane + Vientiane - Beirut + Beirut Saint Lucia - Vaduz + Vaduz - Colombo + Colombo - Monrovia + Monrovia - Maseru + Maseru Vilna @@ -3349,43 +3465,43 @@ For terms of use, see http://www.unicode.org/copyright.html Riika - Tripoli + Tripoli - Casablanca + Casablanca - Monaco + Monaco Chişinău - Podgorica + Podgorica - Marigot + Marigot - Antananarivo + Antananarivo - Kwajalein + Kwajalein - Majuro + Majuro - Skopje + Skopje - Bamako + Bamako Yangon - Hovd + Hovd Ulan Bator @@ -3397,58 +3513,58 @@ For terms of use, see http://www.unicode.org/copyright.html Macao - Saipan + Saipan - Martinique + Martinique - Nouakchott + Nouakchott - Montserrat + Montserrat - Malta + Malta - Mauritius + Mauritius Malediivit - Blantyre + Blantyre - Tijuana + Tijuana - Santa Isabel + Santa Isabel - Hermosillo + Hermosillo Mazatlán - Chihuahua + Chihuahua Bahía de Banderas - Ojinaga + Ojinaga - Monterrey + Monterrey Ciudad de México - Matamoros + Matamoros Mérida @@ -3457,64 +3573,64 @@ For terms of use, see http://www.unicode.org/copyright.html Cancún - Kuala Lumpur + Kuala Lumpur - Kuching + Kuching - Maputo + Maputo - Windhoek + Windhoek Nouméa - Niamey + Niamey - Norfolk + Norfolk - Lagos + Lagos - Managua + Managua - Amsterdam + Amsterdam - Oslo + Oslo Kathmandu - Nauru + Nauru - Niue + Niue Chathamsaaret - Auckland + Auckland - Muscat + Muscat - Panama + Panama - Lima + Lima - Tahiti + Tahiti Marquesassaaret @@ -3523,49 +3639,52 @@ For terms of use, see http://www.unicode.org/copyright.html Gambiersaaret - Port Moresby + Port Moresby + + + Bougainville - Manila + Manila - Karachi + Karachi Varsova - Miquelon + Miquelon - Pitcairn + Pitcairn - Puerto Rico + Puerto Rico - Gaza + Gaza - Hebron + Hebron Azorit - Madeira + Madeira Lissabon - Palau + Palau Asunción - Qatar + Qatar Réunion @@ -3577,43 +3696,46 @@ For terms of use, see http://www.unicode.org/copyright.html Belgrad - Kaliningrad + Kaliningrad - Simferopol + Simferopol Moskova - Volgograd + Volgograd - Samara + Samara Jekaterinburg - Omsk + Omsk - Novosibirsk + Novosibirsk - Novokuznetsk + Novokuznetsk Krasnojarsk - Irkutsk + Irkutsk + + + Tšita Jakutsk - Vladivostok + Vladivostok Handyga @@ -3622,25 +3744,28 @@ For terms of use, see http://www.unicode.org/copyright.html Sahalin - Ust-Nera + Ust-Nera - Magadan + Magadan + + + Srednekolymsk Kamtšatka - Anadyr + Anadyr - Kigali + Kigali Riad - Guadalcanal + Guadalcanal Mahé @@ -3652,43 +3777,43 @@ For terms of use, see http://www.unicode.org/copyright.html Tukholma - Singapore + Singapore Saint Helena - Ljubljana + Ljubljana - Longyearbyen + Longyearbyen - Bratislava + Bratislava - Freetown + Freetown - San Marino + San Marino - Dakar + Dakar - Mogadishu + Mogadishu - Paramaribo + Paramaribo - Juba + Juba São Tomé - El Salvador + El Salvador Lower Prince’s Quarter @@ -3697,10 +3822,10 @@ For terms of use, see http://www.unicode.org/copyright.html Damaskos - Mbabane + Mbabane - Grand Turk + Grand Turk N’Djamena @@ -3712,40 +3837,40 @@ For terms of use, see http://www.unicode.org/copyright.html Lomé - Bangkok + Bangkok Dušanbe - Fakaofo + Fakaofo - Dili + Dili Ašgabat - Tunis + Tunis - Tongatapu + Tongatapu - Istanbul + Istanbul - Port of Spain + Port of Spain - Funafuti + Funafuti - Taipei + Taipei - Dar es Salaam + Dar es Salaam Užgorod @@ -3757,52 +3882,52 @@ For terms of use, see http://www.unicode.org/copyright.html Zaporižžja - Kampala + Kampala - Midway + Midway - Johnston + Johnston - Wake + Wake - Adak + Adak - Nome + Nome - Honolulu + Honolulu - Anchorage + Anchorage - Yakutat + Yakutat - Sitka + Sitka - Juneau + Juneau - Metlakatla + Metlakatla - Los Angeles + Los Angeles - Boise + Boise - Phoenix + Phoenix - Denver + Denver Beulah, Pohjois-Dakota @@ -3814,10 +3939,10 @@ For terms of use, see http://www.unicode.org/copyright.html Center, Pohjois-Dakota - Chicago + Chicago - Menominee + Menominee Vincennes, Indiana @@ -3838,10 +3963,10 @@ For terms of use, see http://www.unicode.org/copyright.html Marengo, Indiana - Indianapolis + Indianapolis - Louisville + Louisville Vevay, Indiana @@ -3850,16 +3975,16 @@ For terms of use, see http://www.unicode.org/copyright.html Monticello, Kentucky - Detroit + Detroit - New York + New York - Montevideo + Montevideo - Samarkand + Samarkand Taškent @@ -3871,10 +3996,10 @@ For terms of use, see http://www.unicode.org/copyright.html Saint Vincent - Caracas + Caracas - Tortola + Tortola Saint Thomas @@ -3883,28 +4008,28 @@ For terms of use, see http://www.unicode.org/copyright.html Hồ Chí Minhin kaupunki - Efate + Efate - Wallis + Wallis - Apia + Apia - Aden + Aden - Mayotte + Mayotte - Johannesburg + Johannesburg - Lusaka + Lusaka - Harare + Harare @@ -4242,7 +4367,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Itäisemmän Euroopan aika + Itäisemmän Euroopan aika @@ -4971,6 +5096,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 t'.' ¤ + 0 t'.' ¤ + 00 t'.' ¤ + 00 t'.' ¤ + 000 t'.' ¤ + 000 t'.' ¤ + 0 milj'.' ¤ + 0 milj'.' ¤ + 00 milj'.' ¤ + 00 milj'.' ¤ + 000 milj'.' ¤ + 000 milj'.' ¤ + 0 mrd'.' ¤ + 0 mrd'.' ¤ + 00 mrd'.' ¤ + 00 mrd'.' ¤ + 000 mrd'.' ¤ + 000 mrd'.' ¤ + 0 bilj'.' ¤ + 0 bilj'.' ¤ + 00 bilj'.' ¤ + 00 bilj'.' ¤ + 000 bilj'.' ¤ + 000 bilj'.' ¤ + + {0} {1} {0} {1} @@ -5028,6 +5181,7 @@ For terms of use, see http://www.unicode.org/copyright.html Angolan kwanza Angolan kwanzaa AOA + Kz Angolan kwanza (1977–1991) @@ -5120,6 +5274,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bosnia-Hertsegovinan vaihdettava markka Bosnia-Hertsegovinan vaihdettavaa markkaa BAM + KM Bosnia-Hertsegovinan uusi dinaari (1994–1997) @@ -5214,6 +5369,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bolivian boliviano Bolivian bolivianoa BOB + Bs Bolivian boliviano (1863–1963) @@ -5300,6 +5456,7 @@ For terms of use, see http://www.unicode.org/copyright.html Botswanan pula Botswanan pulaa BWP + P Valko-Venäjän uusi rupla (1994–1999) @@ -5421,13 +5578,14 @@ For terms of use, see http://www.unicode.org/copyright.html Kuuban vaihdettava peso Kuuban vaihdettavaa pesoa CUC + $ Kuuban peso Kuuban peso Kuuban pesoa CUP - $ + $ Kap Verden escudo @@ -5446,6 +5604,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tšekin koruna Tšekin korunaa CZK + Itä-Saksan markka @@ -5470,6 +5629,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tanskan kruunu Tanskan kruunua DKK + kr Dominikaanisen tasavallan peso @@ -5507,6 +5667,7 @@ For terms of use, see http://www.unicode.org/copyright.html Egyptin punta Egyptin puntaa EGP + Eritrean nakfa @@ -5563,6 +5724,7 @@ For terms of use, see http://www.unicode.org/copyright.html Falklandinsaarten punta Falklandinsaarten puntaa FKP + £ Ranskan frangi @@ -5588,6 +5750,7 @@ For terms of use, see http://www.unicode.org/copyright.html Georgian lari Georgian laria GEL + Ghanan cedi (1979–2007) @@ -5619,6 +5782,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guinean frangi Guinean frangia GNF + FG Guinean syli @@ -5643,6 +5807,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guatemalan quetzal Guatemalan quetzalia GTQ + Q Portugalin Guinean escudo @@ -5675,6 +5840,7 @@ For terms of use, see http://www.unicode.org/copyright.html Hondurasin lempira Hondurasin lempiraa HNL + L Kroatian dinaari @@ -5687,6 +5853,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kroatian kuna Kroatian kunaa HRK + kn Haitin gourde @@ -5699,12 +5866,14 @@ For terms of use, see http://www.unicode.org/copyright.html Unkarin forintti Unkarin forinttia HUF + Ft Indonesian rupia Indonesian rupia Indonesian rupiaa IDR + Rp Irlannin punta @@ -5761,6 +5930,7 @@ For terms of use, see http://www.unicode.org/copyright.html Islannin kruunu Islannin kruunua ISK + kr Italian liira @@ -5812,12 +5982,14 @@ For terms of use, see http://www.unicode.org/copyright.html Komorien frangi Komorien frangia KMF + CF Pohjois-Korean won Pohjois-Korean won Pohjois-Korean wonia KPW + Etelä-Korean hwan (1953–1962) @@ -5856,6 +6028,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kazakstanin tenge Kazakstanin tengeä KZT + Laosin kip @@ -5869,12 +6042,14 @@ For terms of use, see http://www.unicode.org/copyright.html Libanonin punta Libanonin puntaa LBP + Sri Lankan rupia Sri Lankan rupia Sri Lankan rupiaa LKR + Rs Liberian dollari @@ -5972,6 +6147,7 @@ For terms of use, see http://www.unicode.org/copyright.html Madagaskarin ariary Madagaskarin ariarya MGA + Ar Madagaskarin frangi @@ -6002,6 +6178,7 @@ For terms of use, see http://www.unicode.org/copyright.html Myanmarin kyat Myanmarin kyatia MMK + K Mongolian tugrik @@ -6039,6 +6216,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mauritiuksen rupia Mauritiuksen rupiaa MUR + Rs Malediivien rupia (1947–1981) @@ -6082,6 +6260,7 @@ For terms of use, see http://www.unicode.org/copyright.html Malesian ringgit Malesian ringgitiä MYR + RM Mosambikin escudo @@ -6126,6 +6305,7 @@ For terms of use, see http://www.unicode.org/copyright.html Nicaraguan cordoba Nicaraguan cordobaa NIO + C$ Alankomaiden guldeni @@ -6138,12 +6318,14 @@ For terms of use, see http://www.unicode.org/copyright.html Norjan kruunu Norjan kruunua NOK + kr Nepalin rupia Nepalin rupia Nepalin rupiaa NPR + Rs Uuden-Seelannin dollari @@ -6200,12 +6382,14 @@ For terms of use, see http://www.unicode.org/copyright.html Pakistanin rupia Pakistanin rupiaa PKR + Rs Puolan zloty Puolan zloty Puolan zlotya PLN + Puolan zloty (1950–1995) @@ -6261,6 +6445,7 @@ For terms of use, see http://www.unicode.org/copyright.html Venäjän rupla Venäjän ruplaa RUB + Venäjän rupla (1991–1998) @@ -6273,6 +6458,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ruandan frangi Ruandan frangia RWF + RF Saudi-Arabian rial @@ -6316,6 +6502,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ruotsin kruunu Ruotsin kruunua SEK + kr Singaporen dollari @@ -6329,6 +6516,7 @@ For terms of use, see http://www.unicode.org/copyright.html Saint Helenan punta Saint Helenan puntaa SHP + £ Slovenian tolar @@ -6379,6 +6567,7 @@ For terms of use, see http://www.unicode.org/copyright.html São Tomén ja Príncipen dobra São Tomén ja Príncipen dobraa STD + Db Neuvostoliiton rupla @@ -6397,6 +6586,7 @@ For terms of use, see http://www.unicode.org/copyright.html Syyrian punta Syyrian puntaa SYP + £ Swazimaan lilangeni @@ -6409,6 +6599,7 @@ For terms of use, see http://www.unicode.org/copyright.html Thaimaan baht Thaimaan bahtia THB + ฿ Tadžikistanin rupla @@ -6445,6 +6636,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tongan pa’anga Tongan pa’angaa TOP + T$ Timorin escudo @@ -6464,6 +6656,7 @@ For terms of use, see http://www.unicode.org/copyright.html Turkin liiraa TRY + TL Trinidadin ja Tobagon dollari @@ -6565,6 +6758,7 @@ For terms of use, see http://www.unicode.org/copyright.html Venezuelan bolivar Venezuelan bolivaria VEF + Bs Vietnamin dong @@ -6599,14 +6793,14 @@ For terms of use, see http://www.unicode.org/copyright.html hopea - hopeayksikkö - hopeayksikköä + troy-unssi hopeaa + troy-unssia hopeaa XAG kulta - kultayksikkö - kultayksikköä + troy-unssi kultaa + troy-unssia kultaa XAU @@ -6638,6 +6832,7 @@ For terms of use, see http://www.unicode.org/copyright.html Itä-Karibian dollari Itä-Karibian dollaria XCD + $ erityisnosto-oikeus (SDR) @@ -6655,6 +6850,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ranskan kultafrangi Ranskan kultafrangi Ranskan kultafrangia + XFO Ranskan UIC-frangi @@ -6670,8 +6866,8 @@ For terms of use, see http://www.unicode.org/copyright.html palladium - palladiumyksikkö - palladiumyksikköä + troy-unssi palladiumia + troy-unssia palladiumia XPD @@ -6682,8 +6878,8 @@ For terms of use, see http://www.unicode.org/copyright.html platina - platinayksikkö - platinayksikköä + troy-unssi platinaa + troy-unssia platinaa XPT @@ -6763,6 +6959,7 @@ For terms of use, see http://www.unicode.org/copyright.html Etelä-Afrikan randi Etelä-Afrikan randia ZAR + R Sambian kwacha (1968–2012) @@ -6775,6 +6972,7 @@ For terms of use, see http://www.unicode.org/copyright.html Sambian kwacha Sambian kwachaa ZMW + ZK Zairen uusi zaire (1993–1998) @@ -6827,6 +7025,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metri per sekunti toiseen {0} metriä per sekunti toiseen + + kierros + {0} kierros + {0} kierrosta + + + radiaanit + {0} radiaani + {0} radiaania + + + asteet + {0} aste + {0} astetta + kulmaminuutit {0} kulmaminuutti @@ -6837,30 +7050,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kulmasekunti {0} kulmasekuntia - - asteet - {0} aste - {0} astetta - - - radiaanit - {0} radiaani - {0} radiaania - - - eekkerit - {0} eekkeri - {0} eekkeriä + + neliökilometrit + {0} neliökilometri + {0} neliökilometriä hehtaarit {0} hehtaari {0} hehtaaria + + neliömetrit + {0} neliömetri + {0} neliömetriä + {0} / neliömetri + neliösenttimetrit {0} neliösenttimetri {0} neliösenttimetriä + {0} / neliösenttimetri + + + neliömailit + {0} neliömaili + {0} neliömailia + + + eekkerit + {0} eekkeri + {0} eekkeriä + + + neliöjaardit + {0} neliöjaardi + {0} neliöjaardia neliöjalat @@ -6871,91 +7096,106 @@ For terms of use, see http://www.unicode.org/copyright.html neliötuumat {0} neliötuuma {0} neliötuumaa + {0} / neliötuuma - - neliökilometrit - {0} neliökilometri - {0} neliökilometriä - - - neliömetrit - {0} neliömetri - {0} neliömetriä - - - neliömailit - {0} neliömaili - {0} neliömailia - - - neliöjaardit - {0} neliöjaardi - {0} neliöjaardia + + karaatit + {0} karaatti + {0} karaattia litrat per kilometri {0} litra per kilometri {0} litraa per kilometri + + litrat per 100 kilometriä + {0} litra per 100 km + {0} litraa per 100 km + mailit per gallona {0} maili per gallona {0} mailia per gallona - - bitit - {0} bitti - {0} bittiä - - - tavut - {0} tavu - {0} tavua - - - gigabitit - {0} gigabitti - {0} gigabittiä - - - gigatavut - {0} gigatavu - {0} gigatavua - - - kilobitit - {0} kilobitti - {0} kilobittiä - - - kilotavut - {0} kilotavu - {0} kilotavua - - - megabitit - {0} megabitti - {0} megabittiä - - - megatavut - {0} megatavu - {0} megatavua - - - terabitit - {0} terabitti - {0} terabittiä - teratavut {0} teratavu {0} teratavua + + terabitit + {0} terabitti + {0} terabittiä + + + gigatavut + {0} gigatavu + {0} gigatavua + + + gigabitit + {0} gigabitti + {0} gigabittiä + + + megatavut + {0} megatavu + {0} megatavua + + + megabitit + {0} megabitti + {0} megabittiä + + + kilotavut + {0} kilotavu + {0} kilotavua + + + kilobitit + {0} kilobitti + {0} kilobittiä + + + tavut + {0} tavu + {0} tavua + + + bitit + {0} bitti + {0} bittiä + + + vuosisadat + {0} vuosisata + {0} vuosisataa + + + vuodet + {0} vuosi + {0} vuotta + {0} vuodessa + + + kuukaudet + {0} kuukausi + {0} kuukautta + {0} kuukaudessa + + + viikot + {0} viikko + {0} viikkoa + {0} viikossa + päivät {0} päivä {0} päivää + {0} päivässä tunnit @@ -6963,30 +7203,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tuntia {0} tunnissa - - mikrosekunnit - {0} mikrosekunti - {0} mikrosekuntia - - - millisekunnit - {0} millisekunti - {0} millisekuntia - minuutit {0} minuutti {0} minuuttia - - - kuukaudet - {0} kuukausi - {0} kuukautta - - - nanosekunnit - {0} nanosekunti - {0} nanosekuntia + {0} minuutissa sekunnit @@ -6994,15 +7215,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sekuntia {0} sekunnissa - - viikot - {0} viikko - {0} viikkoa + + millisekunnit + {0} millisekunti + {0} millisekuntia - - vuodet - {0} vuosi - {0} vuotta + + mikrosekunnit + {0} mikrosekunti + {0} mikrosekuntia + + + nanosekunnit + {0} nanosekunti + {0} nanosekuntia ampeerit @@ -7024,6 +7250,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} voltti {0} volttia + + kilokalorit + {0} kilokalori + {0} kilokaloria + kalorit {0} kalori @@ -7034,21 +7265,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilokalori {0} kilokaloria - - joulet - {0} joule - {0} joulea - - - kilokalorit - {0} kilokalori - {0} kilokaloria - kilojoulet {0} kilojoule {0} kilojoulea + + joulet + {0} joule + {0} joulea + kilowattitunnit {0} kilowattitunti @@ -7059,216 +7285,220 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigahertsi {0} gigahertsiä - - hertsit - {0} hertsi - {0} hertsiä + + megahertsit + {0} megahertsi + {0} megahertsiä kilohertsit {0} kilohertsi {0} kilohertsiä - - megahertsit - {0} megahertsi - {0} megahertsiä + + hertsit + {0} hertsi + {0} hertsiä - - astronomiset yksiköt - {0} astronominen yksikkö - {0} astronomista yksikköä + + kilometrit + {0} kilometri + {0} kilometriä + {0} / kilometri - - senttimetrit - {0} senttimetri - {0} senttimetriä + + metrit + {0} metri + {0} metriä + {0} / metri desimetrit {0} desimetri {0} desimetriä - - sylet - syli - {0} syltä - - - jalat - {0} jalka - {0} jalkaa - - - furlongit - {0} furlong - {0} furlongia - - - tuumat - {0} tuuma - {0} tuumaa - - - kilometrit - {0} kilometri - {0} kilometriä - - - valovuodet - {0} valovuosi - {0} valovuotta - - - metrit - {0} metri - {0} metriä - - - mikrometrit - {0} mikrometri - {0} mikrometriä - - - mailit - {0} maili - {0} mailia + + senttimetrit + {0} senttimetri + {0} senttimetriä + {0} / senttimetri millimetrit {0} millimetri {0} millimetriä + + mikrometrit + {0} mikrometri + {0} mikrometriä + nanometrit {0} nanometri {0} nanometriä - - meripeninkulmat - {0} meripeninkulma - {0} meripeninkulmaa - - - parsekit - {0} parsek - {0} parsekia - pikometrit {0} pikometri {0} pikometriä + + mailit + {0} maili + {0} mailia + jaardit {0} jaardi {0} jaardia + + jalat + {0} jalka + {0} jalkaa + {0} / jalka + + + tuumat + {0} tuuma + {0} tuumaa + {0} / tuuma + + + parsekit + {0} parsek + {0} parsekia + + + valovuodet + {0} valovuosi + {0} valovuotta + + + astronomiset yksiköt + {0} astronominen yksikkö + {0} astronomista yksikköä + + + furlongit + {0} furlong + {0} furlongia + + + sylet + syli + {0} syltä + + + meripeninkulmat + {0} meripeninkulma + {0} meripeninkulmaa + + + peninkulmat + {0} peninkulma + {0} peninkulmaa + luksit {0} luksi {0} luksia - - karaatit - {0} karaatti - {0} karaattia - - - grammat - {0} gramma - {0} grammaa - - - kilogrammat - {0} kilogramma - {0} kilogrammaa - tonnit {0} tonni {0} tonnia - - mikrogrammat - {0} mikrogramma - {0} mikrogrammaa + + kilogrammat + {0} kilogramma + {0} kilogrammaa + {0}/kg + + + grammat + {0} gramma + {0} grammaa + {0}/g milligrammat {0} milligramma {0} milligrammaa - - unssit - {0} unssi - {0} unssia - - - troy-unssit - {0} troy-unssi - {0} troy-unssia - - - paunat - {0} pauna - {0} paunaa - - - stonet - {0} stone - {0} stonea + + mikrogrammat + {0} mikrogramma + {0} mikrogrammaa US-tonnit {0} US-tonni {0} US-tonnia + + stonet + {0} stone + {0} stonea + + + paunat + {0} pauna + {0} paunaa + {0} / pauna + + + unssit + {0} unssi + {0} unssia + {0} / unssi + + + troy-unssit + {0} troy-unssi + {0} troy-unssia + + + karaatit + {0} karaatti + {0} karaattia + gigawatit {0} gigawatti {0} gigawattia - - hevosvoimat - {0} hevosvoima - {0} hevosvoimaa - - - kilowatit - {0} kilowatti - {0} kilowattia - megawatit {0} megawatti {0} megawattia - - milliwatit - {0} milliwatti - {0} milliwattia + + kilowatit + {0} kilowatti + {0} kilowattia watit {0} watti {0} wattia + + milliwatit + {0} milliwatti + {0} milliwattia + + + hevosvoimat + {0} hevosvoima + {0} hevosvoimaa + hehtopascalit {0} hehtopascal {0} hehtopascalia - - elohopeatuumat - {0} tuuma elohopeaa - {0} tuumaa elohopeaa - - - millibaarit - {0} millibaari - {0} millibaaria - elohopeamillimetrit {0} millimetri elohopeaa @@ -7279,10 +7509,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pauna neliötuumaa kohti {0} paunaa neliötuumaa kohti - - karaatit - {0} karaatti - {0} karaattia + + elohopeatuumat + {0} tuuma elohopeaa + {0} tuumaa elohopeaa + + + millibaarit + {0} millibaari + {0} millibaaria kilometrit tunnissa @@ -7299,6 +7534,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} maili tunnissa {0} mailia tunnissa + + solmu + {0} solmu + {0} solmua + + + ° + {0}° + {0}° + celsiusasteet {0} celsiusaste @@ -7314,36 +7559,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvin {0} kelviniä - - eekkerijalat - {0} eekkerijalka - {0} eekkerijalkaa - - - bushelit - {0} busheli - {0} bushelia - - - senttilitrat - {0} senttilitra - {0} senttilitraa - - - kuutiosenttimetrit - {0} kuutiosenttimetri - {0} kuutiosenttimetriä - - - kuutiojalat - {0} kuutiojalka - {0} kuutiojalkaa - - - kuutiotuumat - {0} kuutiotuuma - {0} kuutiotuumaa - kuutiokilometrit {0} kuutiokilometri @@ -7353,6 +7568,13 @@ For terms of use, see http://www.unicode.org/copyright.html kuutiometrit {0} kuutiometri {0} kuutiometriä + {0} / kuutiometri + + + kuutiosenttimetrit + {0} kuutiosenttimetri + {0} kuutiosenttimetriä + {0} / kuutiosenttimetri kuutiomailit @@ -7364,25 +7586,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kuutiojaardi {0} kuutiojaardia - - kupit - {0} kuppi - {0} kuppia + + kuutiojalat + {0} kuutiojalka + {0} kuutiojalkaa - - desilitrat - {0} desilitra - {0} desilitraa + + kuutiotuumat + {0} kuutiotuuma + {0} kuutiotuumaa - - nesteunssit - {0} nesteunssi - {0} nesteunssia - - - gallonat - {0} gallona - {0} gallonaa + + megalitrat + {0} megalitra + {0} megalitraa hehtolitrat @@ -7393,27 +7610,69 @@ For terms of use, see http://www.unicode.org/copyright.html litrat {0} litra {0} litraa + {0} litrassa - - megalitrat - {0} megalitra - {0} megalitraa + + desilitrat + {0} desilitra + {0} desilitraa + + + senttilitrat + {0} senttilitra + {0} senttilitraa millilitrat {0} millilitra {0} millilitraa - - pintit - {0} pint - {0} pinttiä + + tuopit + {0} tuoppi + {0} tuoppia + + + teekupit + {0} teekuppi + {0} teekuppia + + + eekkerijalat + {0} eekkerijalka + {0} eekkerijalkaa + + + bushelit + {0} busheli + {0} bushelia + + + gallonat + {0} gallona + {0} gallonaa + {0} / gallona neljännesgallonat {0} neljännesgallona {0} neljännesgallonaa + + pintit + {0} pint + {0} pinttiä + + + kupit + {0} kuppi + {0} kuppia + + + nesteunssit + {0} nesteunssi + {0} nesteunssia + ruokalusikat {0} ruokalusikka @@ -7424,6 +7683,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} teelusikka {0} teelusikkaa + + {0}I + {0}P + {0}E + {0}L + @@ -7439,6 +7704,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rev + {0} rev + {0} rev + + + rad + {0} rad + {0} rad + + + ° + {0}° + {0}° + {0}′ @@ -7449,30 +7729,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - ° - {0}° - {0}° - - - rad - {0} rad - {0} rad - - - ac - {0} ac - {0} ac + + km² + {0} km² + {0} km² ha {0} ha {0} ha + + + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + + + ac + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² ft² @@ -7483,91 +7775,106 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² + + ka + {0} ka + {0} ka l/km {0} l/km {0} l/km + + l/100 km + {0} l/100 km + {0} l/100 km + mpg {0} mpg {0} mpg - - b - {0} b - {0} b - - - t - {0} t - {0} t - - - Gb - {0} Gb - {0} Gb - - - Gt - {0} Gt - {0} Gt - - - kb - {0} kb - {0} kb - - - kt - {0} kt - {0} kt - - - Mb - {0} Mb - {0} Mb - - - Mt - {0} Mt - {0} Mt - - - Tb - {0} Tb - {0} Tb - Tt {0} Tt {0} Tt + + Tb + {0} Tb + {0} Tb + + + Gt + {0} Gt + {0} Gt + + + Gb + {0} Gb + {0} Gb + + + Mt + {0} Mt + {0} Mt + + + Mb + {0} Mb + {0} Mb + + + kt + {0} kt + {0} kt + + + kb + {0} kb + {0} kb + + + t + {0} t + {0} t + + + b + {0} b + {0} b + + + vs + {0} vs + {0} vs + + + v + {0} v + {0} v + {0}/v + + + kk + {0} kk + {0} kk + {0}/kk + + + vk + {0} vk + {0} vk + {0}/vk + pv {0} pv {0} pv + {0}/pv t @@ -7575,30 +7882,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} t {0}/t - - μs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - min {0} min {0} min - - - kk - {0} kk - {0} kk - - - ns - {0} ns - {0} ns + {0}/min sek @@ -7606,15 +7894,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} s {0}/s - - vk - {0} vk - {0} vk + + ms + {0} ms + {0} ms - - v - {0} v - {0} v + + μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns A @@ -7636,6 +7929,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -7646,21 +7944,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kcal {0} kcal - - J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + J + {0} J + {0} J + kWh {0} kWh @@ -7671,216 +7964,220 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + m + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - fm - {0} fm - {0} fm - - - ft - {0} ft - {0} ft - - - fur - {0} fur - {0} fur - - - in - {0} in - {0} in - - - km - {0} km - {0} km - - - vv - {0} vv - {0} vv - - - m - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - mpk - {0} mpk - {0} mpk - - - pc - {0} pc - {0} pc - pm {0} pm {0} pm + + mi + {0} mi + {0} mi + yd {0} yd {0} yd + + ft + {0} ft + {0} ft + {0}/ft + + + in + {0} in + {0} in + {0}/in + + + pc + {0} pc + {0} pc + + + vv + {0} vv + {0} vv + + + au + {0} au + {0} au + + + fur + {0} fur + {0} fur + + + fm + {0} fm + {0} fm + + + mpk + {0} mpk + {0} mpk + + + pnk + {0} pnk + {0} pnk + lx {0} lx {0} lx - - ka - {0} ka - {0} ka - - - g - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + g + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - oz - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb - - - st - {0} st - {0} st + + µg + {0} µg + {0} µg US-tn {0} US-tn {0} US-tn + + st + {0} st + {0} st + + + lb + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0}/oz + + + oz t + {0} oz t + {0} oz t + + + ka + {0} ka + {0} ka + GW {0} GW {0} GW - - hv - {0} hv - {0} hv - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW W {0} W {0} W + + mW + {0} mW + {0} mW + + + hv + {0} hv + {0} hv + hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -7891,10 +8188,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - ka - {0} ka - {0} ka + + inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar km/h @@ -7911,6 +8213,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + °C {0} °C @@ -7926,36 +8238,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - - - bu - {0} bu - {0} bu - - - cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -7965,6 +8247,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -7976,25 +8265,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - kp - {0} kp - {0} kp + + ft³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl + + in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml hl @@ -8005,27 +8289,69 @@ For terms of use, see http://www.unicode.org/copyright.html l {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl ml {0} ml {0} ml - - pt - {0} pt - {0} pt + + tp + {0} tp + {0} tp + + + tkp + {0} tkp + {0} tkp + + + ac ft + {0} ac ft + {0} ac ft + + + bu + {0} bu + {0} bu + + + gal + {0} gal + {0} gal + {0}/gal qt {0} qt {0} qt + + pt + {0} pt + {0} pt + + + kp + {0} kp + {0} kp + + + fl oz + {0} fl oz + {0} fl oz + rkl {0} rkl @@ -8036,6 +8362,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tl {0} tl + + {0}I + {0}P + {0}E + {0}L + @@ -8051,6 +8383,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0}m/s² {0}m/s² + + rev + {0}rev + {0}rev + + + rad + {0}rad + {0}rad + + + ° + {0}° + {0}° + {0}′ @@ -8061,30 +8408,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - ° - {0}° - {0}° - - - rad - {0}rad - {0}rad - - - ac - {0}ac - {0}ac + + km² + {0}km² + {0}km² ha {0}ha {0}ha + + + {0}m² + {0}m² + {0}/m² + cm² {0}cm² {0}cm² + {0}/cm² + + + mi² + {0}mi² + {0}mi² + + + ac + {0}ac + {0}ac + + + yd² + {0}yd² + {0}yd² ft² @@ -8095,91 +8454,106 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0}in² {0}in² + {0}/in² - - km² - {0}km² - {0}km² - - - - {0}m² - {0}m² - - - mi² - {0}mi² - {0}mi² - - - yd² - {0}yd² - {0}yd² + + ka + {0}ka + {0}ka l/km {0}l/km {0}l/km + + l/100km + {0}l/100km + {0}l/100km + mpg {0}mpg {0}mpg - - b - {0}b - {0}b - - - t - {0}t - {0}t - - - Gb - {0}Gb - {0}Gb - - - Gt - {0}Gt - {0}Gt - - - kb - {0}kb - {0}kb - - - kt - {0}kt - {0}kt - - - Mb - {0}Mb - {0}Mb - - - Mt - {0}Mt - {0}Mt - - - Tb - {0}Tb - {0}Tb - Tt {0}Tt {0}Tt + + Tb + {0}Tb + {0}Tb + + + Gt + {0}Gt + {0}Gt + + + Gb + {0}Gb + {0}Gb + + + Mt + {0}Mt + {0}Mt + + + Mb + {0}Mb + {0}Mb + + + kt + {0}kt + {0}kt + + + kb + {0}kb + {0}kb + + + t + {0}t + {0}t + + + b + {0}b + {0}b + + + vs + {0} vs + {0} vs + + + v + {0}v + {0}v + {0}/v + + + kk + {0}kk + {0}kk + {0}/kk + + + vk + {0}vk + {0}vk + {0}/vk + pv {0}pv {0}pv + {0}/pv t @@ -8187,30 +8561,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}t {0}/t - - μs - {0}μs - {0}μs - - - ms - {0}ms - {0}ms - min {0}min {0}min - - - kk - {0}kk - {0}kk - - - ns - {0}ns - {0}ns + {0}/min s @@ -8218,15 +8573,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0}s {0}/s - - vk - {0}vk - {0}vk + + ms + {0}ms + {0}ms - - v - {0}v - {0}v + + μs + {0}μs + {0}μs + + + ns + {0}ns + {0}ns A @@ -8248,6 +8608,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}V {0}V + + kcal + {0}kcal + {0}kcal + cal {0}cal @@ -8258,21 +8623,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}kcal {0}kcal - - J - {0}J - {0}J - - - kcal - {0}kcal - {0}kcal - kJ {0}kJ {0}kJ + + J + {0}J + {0}J + kWh {0}kWh @@ -8283,216 +8643,220 @@ For terms of use, see http://www.unicode.org/copyright.html {0}GHz {0}GHz - - Hz - {0}Hz - {0}Hz + + MHz + {0}MHz + {0}MHz kHz {0}kHz {0}kHz - - MHz - {0}MHz - {0}MHz + + Hz + {0}Hz + {0}Hz - - au - {0}au - {0}au + + km + {0}km + {0}km + {0}/km - - cm - {0}cm - {0}cm + + m + {0}m + {0}m + {0}/m dm {0}dm {0}dm - - fm - {0}fm - {0}fm - - - ft - {0}′ - {0}′ - - - fur - {0}fur - {0}fur - - - in - {0}″ - {0}″ - - - km - {0}km - {0}km - - - vv - {0}vv - {0}vv - - - m - {0}m - {0}m - - - µm - {0}µm - {0}µm - - - mi - {0}mi - {0}mi + + cm + {0}cm + {0}cm + {0}/cm mm {0}mm {0}mm + + µm + {0}µm + {0}µm + nm {0}nm {0}nm - - mpk - {0}mpk - {0}mpk - - - pc - {0}pc - {0}pc - pm {0}pm {0}pm + + mi + {0}mi + {0}mi + yd {0}yd {0}yd + + ft + {0}′ + {0}′ + {0}/′ + + + in + {0}″ + {0}″ + {0}/″ + + + pc + {0}pc + {0}pc + + + vv + {0}vv + {0}vv + + + au + {0}au + {0}au + + + fur + {0}fur + {0}fur + + + fm + {0}fm + {0}fm + + + mpk + {0}mpk + {0}mpk + + + pnk + {0} pnk + {0} pnk + lx {0}lx {0}lx - - ka - {0}ka - {0}ka - - - g - {0}g - {0}g - - - kg - {0}kg - {0}kg - t {0}t {0}t - - µg - {0}μg - {0}μg + + kg + {0}kg + {0}kg + {0}/kg + + + g + {0}g + {0}g + {0}/g mg {0}mg {0}mg - - oz - {0}oz - {0}oz - - - oz t - {0}oz t - {0}oz t - - - lb - {0}lb - {0}lb - - - st - {0}st - {0}st + + µg + {0}μg + {0}μg US-tn {0}US-tn {0}US-tn + + st + {0}st + {0}st + + + lb + {0}lb + {0}lb + {0}/lb + + + oz + {0}oz + {0}oz + {0}/oz + + + oz t + {0}oz t + {0}oz t + + + ka + {0}ka + {0}ka + GW {0}GW {0}GW - - hv - {0}hv - {0}hv + + MW + {0}MW + {0} MW kW {0}kW {0}kW - - MW - {0}GW - {0}GW + + W + {0}W + {0}W mW {0}mW {0}mW - - W - {0}W - {0}W + + hv + {0}hv + {0}hv hPa {0}hPa {0}hPa - - inHg - {0}″ Hg - {0}″ Hg - - - mbar - {0}mbar - {0}mbar - mm Hg {0}mm Hg @@ -8503,10 +8867,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0}psi {0}psi - - ka - {0}ka - {0}ka + + inHg + {0}″ Hg + {0}″ Hg + + + mbar + {0}mbar + {0}mbar km/h @@ -8523,6 +8892,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mi/h {0}mi/h + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + °C {0}° @@ -8538,36 +8917,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}K {0}K - - ac ft - {0}ac ft - {0}ac ft - - - bu - {0}bu - {0}bu - - - cl - {0}cl - {0}cl - - - cm³ - {0}cm³ - {0}cm³ - - - ft³ - {0}ft³ - {0}ft³ - - - in³ - {0}in³ - {0}in³ - km³ {0}km³ @@ -8576,7 +8925,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}m³ - {0}m³ + {0} m³ + {0}/m³ + + + cm³ + {0}cm³ + {0}cm³ + {0}/cm³ mi³ @@ -8588,25 +8944,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0}yd³ {0}yd³ - - kp - {0}kp - {0}kp + + ft³ + {0}ft³ + {0}ft³ - - dl - {0}dl - {0}dl + + in³ + {0}in³ + {0}in³ - - fl oz - {0}fl oz - {0}fl oz - - - gal - {0}gal - {0}gal + + Ml + {0}Ml + {0}Ml hl @@ -8617,27 +8968,69 @@ For terms of use, see http://www.unicode.org/copyright.html l {0}l {0}l + {0}/l - - Ml - {0}Ml - {0}Ml + + dl + {0}dl + {0}dl + + + cl + {0}cl + {0}cl ml {0}ml {0}ml - - pt - {0}pt - {0}pt + + tp + {0} tp + {0} tp + + + tkp + {0} tkp + {0} tkp + + + ac ft + {0}ac ft + {0}ac ft + + + bu + {0}bu + {0}bu + + + gal + {0}gal + {0}gal + {0}/gal qt {0}qt {0}qt + + pt + {0}pt + {0}pt + + + kp + {0}kp + {0}kp + + + fl oz + {0}fl oz + {0}fl oz + rkl {0}rkl @@ -8648,6 +9041,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}tl {0}tl + + {0}I + {0}P + {0}E + {0}L + h.mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fi_FI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fi_FI.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fi_FI.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fi_FI.xml index a1324d8c3c1..88f01156216 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fi_FI.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fi_FI.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fil.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fil.xml similarity index 79% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fil.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fil.xml index d4cd330d16b..3fc2c90e911 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fil.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fil.xml @@ -1,13 +1,12 @@ - - - + @@ -36,6 +35,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bemba Bena Bulgarian + Kanlurang Balochi Bambara Bengali Tibetan @@ -43,15 +43,19 @@ For terms of use, see http://www.unicode.org/copyright.html Bodo Bosnian Catalan + Chechen Chiga Cherokee - Sorani Kurdish + Central Kurdish Corsican Czech + Chuvash Welsh Danish Taita German + Austrian German + Swiss High German Zarma Lower Sorbian Duala @@ -65,15 +69,15 @@ For terms of use, see http://www.unicode.org/copyright.html Ingles Ingles ng Australya Ingles sa Canada - Ingles (UK) - Ingles (U.K.) + Ingles ng British + Ingles ng UK Ingles (US) - Ingles (U.S.) + Ingles sa US Esperanto - Spanish - Latin American Spanish + Espanyol + Latin American na Espanyol European Spanish - Mexican Spanish + Espanyol ng Mehiko Estonian Basque Persian @@ -84,7 +88,7 @@ For terms of use, see http://www.unicode.org/copyright.html French Canadian French Swiss French - Western Frisian + Kanlurang Frisian Irish Ga Gagauz @@ -146,6 +150,7 @@ For terms of use, see http://www.unicode.org/copyright.html Lingala Lao Lozi + Hilagang Luri Lithuanian Luba-Katanga Luba-Lulua @@ -168,9 +173,12 @@ For terms of use, see http://www.unicode.org/copyright.html Maltese Mundang Burmese + Mazanderani Nama Norwegian Bokmal - North Ndebele + Hilagang Ndebele + Low German + Low Saxon Nepali Dutch Flemish @@ -191,7 +199,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pashto Pushto Portuges - Brazilian Portuguese + Portuges ng Brasil European Portuguese Quechua Kʼicheʼ @@ -207,7 +215,8 @@ For terms of use, see http://www.unicode.org/copyright.html Samburu Sangu Sindhi - Northern Sami + Katimugang Kurdish + Hilagang Sami Sena Koyraboro Senni Sango @@ -217,7 +226,7 @@ For terms of use, see http://www.unicode.org/copyright.html Slovak Slovenian Samoan - Southern Sami + Katimugang Sami Lule Sami Inari Sami Skolt Sami @@ -230,8 +239,8 @@ For terms of use, see http://www.unicode.org/copyright.html Sundanese Swedish Swahili + Swahili (Congo) Comorian - Swahili (Congo) Tamil Telugu Teso @@ -263,6 +272,7 @@ For terms of use, see http://www.unicode.org/copyright.html Venda Vietnamese Vunjo + Warlpiri Wolof Xhosa Soga @@ -272,6 +282,7 @@ For terms of use, see http://www.unicode.org/copyright.html Standard Moroccan Tamazight Chinese Simplified Chinese + Chinese (Traditional) Zulu Walang nilalaman na ukol sa wika @@ -291,10 +302,10 @@ For terms of use, see http://www.unicode.org/copyright.html - - - - + + + + @@ -323,7 +334,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mundo Africa Hilagang Amerika - South America + Timog Amerika Oceania Kanlurang Africa Gitnang Amerika @@ -332,7 +343,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gitnang Africa Katimugang Africa Americas - Rehiyon ng Hilagang Amerika + Northern America Carribbean Silangang Asya Katimugang Asya @@ -358,7 +369,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Netherlands Antilles Angola Antarctica Argentina @@ -395,7 +405,7 @@ For terms of use, see http://www.unicode.org/copyright.html Congo (DRC) Central African Republic Congo - Brazzaville - Congo (Republic) + Congo (Republika) Switzerland Côte d’Ivoire Ivory Coast @@ -483,8 +493,8 @@ For terms of use, see http://www.unicode.org/copyright.html Kiribati Comoros Saint Kitts and Nevis - North Korea - South Korea + Hilagang Korea + Timog Korea Kuwait Cayman Islands Kazakhstan @@ -638,6 +648,9 @@ For terms of use, see http://www.unicode.org/copyright.html Numeric na Pag-uuri-uri Lakas ng Pag-uuri-uri Pera + Siklo ng Oras (12 laban sa 24) + Estilo ng Putol ng Linya + Sistema ng Pagsukat Mga Numero Time Zone Lokal na Variant @@ -645,95 +658,105 @@ For terms of use, see http://www.unicode.org/copyright.html Pribadong Paggamit - Arabic-Indic na Mga Digit - Extendend Arabic-Indic na Mga Digit - Armenian na Mga Numeral - Armenian Lowercase Numerals - Bengali na Mga Digit - Pagkakasunod-sunod ng Pag-uuri ng Tradisyunal na Chinese - Big5 - Kalendaryo ng Buddhist - Kalendaryong Chinese - Coptic Calendar - Dangi na Kalendaryo - Devanagari na Mga Digit - Pagkakasunud-sunod ng Pag-uuri ng Diksyunaryo - Default na Pagkakasunud-sunod ng Ayos ng Unicode - Mga Numeral ng Ethiopia - Kalendaryo ng Ethiopia - Kalendaryong Ethiopic Amete Alem - Mga Pampinansyang Numeral - Full Width Digits - Pagkakasunud-sunod ng Pag-uuri ng Pinasimpleng Chinese - GB2312 - Georgian na Mga Numeral - Gregorian na Kalendaryo - Greek na Mga Numeral - Greek Lowercase Numerals - Gujarati na Mga Digit - Gurmukhi na Mga Digit - Chinese Decimal na Mga Numeral - Simplified Chinese na Mga Numeral - Simplified Chinese na Mga Numeral para sa Pananalapi - Traditional Chinese na Mga Numeral - Traditional Chinese na Mga Numeral para sa Pananalapi - Hebrew na Mga Numeral - Hebrew na Kalendaryo - Pag-uri-uriin Lahat - Pambansang Kalendaryong Indian - Kalendaryong Islamic - Kalendaryong Islamic-Civil - ISO-8601 na Kalendaryo - Kalendaryong Japanese - Japanese na Mga Numeral - Japanese na Mga Numeral para sa Pananalapi - Khmer na Mga Digit - Kannada na Mga Digit - Lao na Mga Digit - Western Digits - Lowercase Muna ang Pag-uri-uriin - Malayalam na Mga Digit - Mongolian Digits - Myanmar na Mga Digit - Mga Native na Digit - Pag-uri-uriin ang Mga Accent nang Normal - Pag-uri-uriin ang Ayos ng Normal na Case - Pag-uri-uriin ang Hindi Case Sensitive - Pag-uri-uriin ang Kana nang Hiwalay - Pag-uri-uriin nang Walang Pag-normalize - Pag-uri-uriin ang Mga Digit nang Indibidwal - Pag-uri-uriin ang Mga Simbolo - Oriya na Mga Digit - Kalendaryong Persian - Pagkakasunud-sunod ng Pag-uuri ng Phonebook - Phonetic na Ayos ng Pag-uuri-uri - Pagkakasunud-sunod ng Pag-uuri ng Pinyin - Mga Base na Titik Lang ang Pag-uri-uriin - Pag-uri-uriin ang Mga Accent/Case/Lapad/Kana - Pagkakasunud-sunod ng Pag-uuri ng Na-reform - Kalendaryong Minguo - Mga Roman Numeral - Roman Lowercase Numerals - Pangkalahatang Paghahanap - Maghanap Ayon sa Unang Katinig ng Hangul - Pag-uri-uriin ang Mga Accent - Pag-uri-uriin ang Mga Ignoring Symbol - Karaniwang Pagkakasunud-sunod ng Ayos - Pagkakasunud-sunod ng Pag-uuri ng Stroke - Tamil na Mga Numeral - Tamil na Mga Digit - Telugu na Mga Digit - Pag-uri-uriin ang Mga Accent/Case/Lapad - Thai na Mga Digit - Tibetan na Mga Digit - Tradisyunal na Pagkakasunud-sunod ng Pag-uuri - Mga Tradisyunal na Numeral - Pagkakasunud-sunod ng Pag-uuri ng Radical-Stroke - Uppercase Muna ang Pag-uri-uriin - Mga Vai na Digit - Pag-uri-uriin ang Mga Accent nang Baliktad - Pag-uri-uriin ang Case Sensitive - Pag-uri-uriin ang Kana nang Naiiba - Pag-uri-uriin ang Unicode nang Normalized - Pag-uri-uriin ang Mga Digit nang Numerical + Kalendaryo ng Buddhist + Kalendaryong Chinese + Coptic Calendar + Dangi na Kalendaryo + Kalendaryo ng Ethiopia + Kalendaryong Ethiopic Amete Alem + Gregorian na Kalendaryo + Hebrew na Kalendaryo + Pambansang Kalendaryong Indian + Kalendaryong Islamic + Kalendaryong Islamic-Civil + ISO-8601 na Kalendaryo + Kalendaryong Japanese + Kalendaryong Persian + Kalendaryong Minguo + Pag-uri-uriin ang Mga Simbolo + Pag-uri-uriin ang Mga Ignoring Symbol + Pag-uri-uriin ang Mga Accent nang Normal + Pag-uri-uriin ang Mga Accent nang Baliktad + Lowercase Muna ang Pag-uri-uriin + Pag-uri-uriin ang Ayos ng Normal na Case + Uppercase Muna ang Pag-uri-uriin + Pag-uri-uriin ang Hindi Case Sensitive + Pag-uri-uriin ang Case Sensitive + Pag-uri-uriin ang Kana nang Hiwalay + Pag-uri-uriin ang Kana nang Naiiba + Pagkakasunod-sunod ng Pag-uuri ng Tradisyunal na Chinese - Big5 + Pagkakasunud-sunod ng Pag-uuri ng Diksyunaryo + Default na Pagkakasunud-sunod ng Ayos ng Unicode + Pagkakasunud-sunod ng Pag-uuri ng Pinasimpleng Chinese - GB2312 + Pagkakasunud-sunod ng Pag-uuri ng Phonebook + Phonetic na Ayos ng Pag-uuri-uri + Pagkakasunud-sunod ng Pag-uuri ng Pinyin + Pagkakasunud-sunod ng Pag-uuri ng Na-reform + Pangkalahatang Paghahanap + Maghanap Ayon sa Unang Katinig ng Hangul + Karaniwang Pagkakasunud-sunod ng Ayos + Pagkakasunud-sunod ng Pag-uuri ng Stroke + Tradisyunal na Pagkakasunud-sunod ng Pag-uuri + Pagkakasunud-sunod ng Pag-uuri ng Radical-Stroke + Pag-uri-uriin nang Walang Pag-normalize + Pag-uri-uriin ang Unicode nang Normalized + Pag-uri-uriin ang Mga Digit nang Indibidwal + Pag-uri-uriin ang Mga Digit nang Numerical + Pag-uri-uriin Lahat + Mga Base na Titik Lang ang Pag-uri-uriin + Pag-uri-uriin ang Mga Accent/Case/Lapad/Kana + Pag-uri-uriin ang Mga Accent + Pag-uri-uriin ang Mga Accent/Case/Lapad + 12 Oras na Sistema (0–11) + 12 Oras na Sistema (1–12) + 24 na Oras na Sistema (0–23) + 24 na Oras na Sistema (1–24) + Loose na Estilo ng Putol ng Linya + Normal na Estilo ng Putol ng Linya + Mahigpit na Estilo ng Putol ng Linya + Metrikong Sistema + Sistemang Imperial na Pagsukat + Sistema ng Pagsukat sa US + Arabic-Indic na Mga Digit + Extendend Arabic-Indic na Mga Digit + Mga Armenian Numeral + Armenian Lowercase Numerals + Mga Bengali Digit + Mga Devanagari Digit + Mga Ethiopic Numeral + Mga Pampinansyang Numeral + Mga Full-Width Digit + Georgian na Mga Numeral + Greek na Mga Numeral + Greek Lowercase Numerals + Mga Gujarati Digit + Mga Gurmukhi Digit + Mga Chinese Decimal na Numeral + Simplified Chinese na Mga Numeral + Simplified Chinese na Mga Numeral para sa Pananalapi + Traditional Chinese na Mga Numeral + Traditional Chinese na Mga Numeral para sa Pananalapi + Mga Hebrew Numeral + Mga Japanese Numeral + Mga Japanese Numeral sa Pananalapi + Mga Khmer na Digit + Mga Kannada na Digit + Mga Lao na Digit + Mga Kanluraning Digit + Mga Malayalam na Digit + Mongolian Digits + Mga Myanmar na Digit + Mga Native na Digit + Mga Oriya na Digit + Mga Roman Numeral + Roman Lowercase Numerals + Tamil na Mga Numeral + Mga Tamil na Digit + Mga Telugu na Digit + Mga Thai na Digit + Mga Tibetan na Digit + Mga Tradisyunal na Numeral + Mga Vai na Digit BGN @@ -748,7 +771,7 @@ For terms of use, see http://www.unicode.org/copyright.html Publishing - Metric + Metriko UK US @@ -762,6 +785,7 @@ For terms of use, see http://www.unicode.org/copyright.html [a b c d e f g h i j k l m n ñ {ng} o p q r s t u v w x y z] [á à â é è ê í ì î ó ò ô ú ù û] [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z] + [\- ‐ – — , ; \: ! ? . … ' ‘ ’ " “ ” ( ) \[ \] § * / \& # ′ ″] {0}… …{0} {0}…{1} @@ -824,6 +848,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d E y G MMM y G @@ -972,18 +997,18 @@ For terms of use, see http://www.unicode.org/copyright.html Dis - E - P - M - A - M - H - H - A - S - O - N - D + Ene + Peb + Mar + Abr + May + Hun + Hul + Ago + Set + Okt + Nob + Dis Enero @@ -1021,13 +1046,13 @@ For terms of use, see http://www.unicode.org/copyright.html M A M - H - H - A - S - O - N - D + Hun + Hul + Ago + Set + Okt + Nob + Dis Enero @@ -1057,13 +1082,13 @@ For terms of use, see http://www.unicode.org/copyright.html Sab - L - L - M - M - H - B - S + Lin + Lun + Mar + Miy + Huw + Biy + Sab Li @@ -1095,13 +1120,13 @@ For terms of use, see http://www.unicode.org/copyright.html Sab - L - L - M - M - H - B - S + Lin + Lun + Mar + Miy + Huw + Biy + Sab Li @@ -1168,18 +1193,72 @@ For terms of use, see http://www.unicode.org/copyright.html + hatinggabi AM + tanghaling-tapat PM + nang umaga + madaling-araw + tanghali + ng hapon + ng gabi - a - tanghali - p + hatinggabi + am + tanghaling-tapat + pm + umaga + madaling-araw + tanghali + hapon + gabi + hatinggabi AM - tanghali + tanghaling-tapat PM + nang umaga + madaling-araw + ng tanghali + ng hapon + ng gabi + + + + + hatinggabi + AM + tanghaling-tapat + PM + umaga + madaling-araw + tanghali + hapon + gabi + + + hatinggabi + AM + tanghaling-tapat + PM + umaga + madaling-araw + tanghali + hapon + gabi + + + hatinggabi + AM + tanghaling-tapat + PM + umaga + madaling-araw + tanghali + hapon + gabi @@ -1271,15 +1350,19 @@ For terms of use, see http://www.unicode.org/copyright.html E h:mm:ss a E HH:mm:ss G y - G y MMM - G y MMM d - G y MMM d, E + MMM y G + MMM d, y G + E, MMM d, y G h a HH h:mm a HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L M/d E, M/d @@ -1407,7 +1490,7 @@ For terms of use, see http://www.unicode.org/copyright.html Era - Taon + taon nakaraang taon ngayong taon susunod na taon @@ -1421,7 +1504,10 @@ For terms of use, see http://www.unicode.org/copyright.html - yr. + taon + nakaraang taon + ngayong taon + susunod na taon sa {0} taon sa {0} (na) taon @@ -1432,7 +1518,10 @@ For terms of use, see http://www.unicode.org/copyright.html - yr. + taon + nakaraang taon + ngayong taon + susunod na taon sa {0} taon sa {0} (na) taon @@ -1444,6 +1533,9 @@ For terms of use, see http://www.unicode.org/copyright.html Quarter + nakaraang quarter + ngayong quarter + susunod na quarter sa {0} quarter sa {0} (na) quarter @@ -1455,6 +1547,9 @@ For terms of use, see http://www.unicode.org/copyright.html qtr. + nakaraang quarter + ngayong quarter + susunod na quarter sa {0} (na) quarter sa {0} (na) quarter @@ -1466,6 +1561,9 @@ For terms of use, see http://www.unicode.org/copyright.html qtr. + nakaraang quarter + ngayong quarter + susunod na quarter sa {0} quarter sa {0} (na) quarter @@ -1476,7 +1574,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Buwan + buwan nakaraang buwan ngayong buwan susunod na buwan @@ -1490,7 +1588,10 @@ For terms of use, see http://www.unicode.org/copyright.html - mo. + buwan + nakaraang buwan + ngayong buwan + susunod na buwan sa {0} buwan sa {0} (na) buwan @@ -1501,7 +1602,10 @@ For terms of use, see http://www.unicode.org/copyright.html - mo. + buwan + nakaraang buwan + ngayong buwan + susunod na buwan sa {0} buwan sa {0} (na) buwan @@ -1512,7 +1616,21 @@ For terms of use, see http://www.unicode.org/copyright.html - Linggo + linggo + nakalipas na linggo + sa linggong ito + susunod na linggo + + sa {0} linggo + sa {0} (na) linggo + + + {0} linggo ang nakalipas + {0} (na) linggo ang nakalipas + + + + linggo nakaraang linggo ngayong linggo susunod na linggo @@ -1525,19 +1643,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} (na) linggo ang nakalipas - - wk. - - sa {0} linggo - sa {0} (na) linggo - - - {0} linggo ang nakalipas - {0} (na) linggo ang nakalipas - - - wk. + linggo + nakaraang linggo + ngayong linggo + susunod na linggo sa {0} linggo sa {0} (na) linggo @@ -1548,7 +1658,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Araw + araw Araw bago ang kahapon kahapon ngayong araw @@ -1564,33 +1674,43 @@ For terms of use, see http://www.unicode.org/copyright.html - Araw + araw + Araw bago ang kahapon + kahapon + ngayong araw + bukas + Samakalawa - sa {0} araw + sa {0} (na) araw sa {0} (na) araw - {0} araw ang nakalipas - {0} (na) araw nakalipas + {0} (na) araw ang nakalipas + {0} (na) araw ang nakalipas - Araw + araw + Araw bago ang kahapon + kahapon + ngayong araw + bukas + Samakalawa sa {0} araw sa {0} (na) araw {0} araw ang nakalipas - {0} (na) araw nakalipas + {0} (na) araw ang nakalipas - Araw ng Linggo + araw ng linggo - nakaraang Linggo - ngayong Linggo + lumipas na Linggo + sa Linggo susunod na Linggo @@ -1697,7 +1817,7 @@ For terms of use, see http://www.unicode.org/copyright.html AM/PM - Oras + oras sa {0} oras sa {0} (na) oras @@ -1708,18 +1828,18 @@ For terms of use, see http://www.unicode.org/copyright.html - hr. + oras sa {0} oras sa {0} (na) oras - {0} oras nakalipas - {0} (na) oras nakalipas + {0} oras ang nakalipas + {0} (na) oras ang nakalipas - hr. + oras sa {0} oras sa {0} (na) oras @@ -1730,14 +1850,14 @@ For terms of use, see http://www.unicode.org/copyright.html - Minuto + minuto sa {0} minuto sa {0} (na) minuto {0} minuto ang nakalipas - sa {0} (na) minuto + {0} (na) minuto ang nakalipas @@ -1763,7 +1883,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Segundo + segundo ngayon sa {0} segundo @@ -1797,16 +1917,16 @@ For terms of use, see http://www.unicode.org/copyright.html - Time Zone + time zone +HH:mm;-HH:mm GMT{0} GMT - Oras sa {0} + {0} Daylight Time ng {0} - Standard Time ng {0} + {0} (+0) {1} ({0}) Di-kilalang Lungsod @@ -2334,7 +2454,7 @@ For terms of use, see http://www.unicode.org/copyright.html Athens - South Georgia + Timog Georgia Guatemala @@ -2377,7 +2497,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Standard Time ng Ireland + Standard na Oras sa Ireland Dublin @@ -2675,6 +2795,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Maynila @@ -2759,6 +2882,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Chita + Yakutsk @@ -2777,6 +2903,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolymsk + Kamchatka @@ -3058,71 +3187,71 @@ For terms of use, see http://www.unicode.org/copyright.html - Oras ng Afghanistan + Oras sa Afghanistan - Oras ng Gitnang Africa + Oras sa Gitnang Africa - Oras ng Silangang Afica + Oras sa Silangang Africa - Oras ng Timog Africa + Oras sa Timog Africa - Oras ng Kanlurang Africa - Standard Time ng Kanlurang Africa + Oras sa Kanlurang Africa + Standard na Oras sa Kanlurang Africa Oras sa Tag-init ng Kanlurang Africa - Oras ng Alaska - Standard Time ng Alaska - Daylight Time ng Alaska + Oras sa Alaska + Standard na Oras sa Alaska + Daylight Time sa Alaska - Oras ng Amazon - Standard Time ng Amazon + Oras sa Amazon + Standard na Oras sa Amazon Oras sa Tag-init ng Amazon - Central Time ng Hilagang Amerika - Central Standard Time ng Hilagang Amerika - Central Daylight Time ng Hilagang Amerika + Sentral na Oras + Sentral na Standard na Oras + Sentral na Daylight Time - Eastern Time ng Hilagang Amerika - Eastern Standard Time ng Hilagang Amerika - Eastern Daylight Time ng Hilagang Amerika + Eastern Time + Eastern na Standard na Oras + Eastern Daylight Time - Oras sa Bundok ng Hilagang Amerika - Standard Time sa Bundok ng Hilagang Amerika - Daylight Time sa Bundok ng Hilagang Amerika + Oras sa Bundok + Standard na Oras sa Bundok + Daylight Time sa Bundok - Pacific Time ng Hilagang Amerika - Pacific Standard Time ng Hilagang Amerika - Pacific Daylight Time ng Hilagang Amerika + Oras sa Pasipiko + Standard na Oras sa Pasipiko + Daylight Time sa Pasipiko @@ -3134,44 +3263,44 @@ For terms of use, see http://www.unicode.org/copyright.html - Apia Time + Oras sa Apia Apia Standard Time Apia Daylight Time - Oras ng Arabia - Standard Time ng Arabia - Daylight Time ng Arabia + Oras sa Arabia + Standard na Oras sa Arabia + Daylight Time sa Arabia - Oras ng Argentina - Standard Time ng Argentina + Oras sa Argentina + Standard na Oras sa Argentina Oras sa Tag-init ng Argentina - Oras ng Kanlurang Argentina - Standard Time ng Kanlurang Argentina + Oras sa Kanlurang Argentina + Standard na Oras sa Kanlurang Argentina Oras sa Tag-init ng Kanlurang Argentina - Oras ng Armenia - Standard Time ng Armenia + Oras sa Armenia + Standard na Oras sa Armenia Oras sa Tag-init ng Armenia - Oras ng Atlantic - Standard Time ng Atlantiko - Daylight Time ng Atlantiko + Oras sa Atlantiko + Standard na Oras sa Atlantiko + Daylight Time sa Atlantiko @@ -3199,44 +3328,44 @@ For terms of use, see http://www.unicode.org/copyright.html Oras ng Kanlurang Australya Standard Time ng Kanlurang Australya - Daylight Time ng Kanlurang Australya + Daylight Time sa Kanlurang Australya - Oras ng Azerbaijan - Standard Time ng Azerbaijan + Oras sa Azerbaijan + Standard na Oras sa Azerbaijan Oras sa Tag-init ng Azerbaijan - Oras ng Azores - Standard Time ng Azores + Oras sa Azores + Standard na Oras sa Azores Oras sa Tag-init ng Azores - Oras ng Bangladesh - Standard Time ng Bangladesh + Oras sa Bangladesh + Standard na Oras sa Bangladesh Oras sa Tag-init ng Bangladesh - Oras ng Bhutan + Oras sa Bhutan - Oras ng Bolivia + Oras sa Bolivia - Oras ng Brasilia - Standard Time ng Brasilia + Oras sa Brasilia + Standard na Oras sa Brasilia Oras sa Tag-init ng Brasilia @@ -3247,83 +3376,83 @@ For terms of use, see http://www.unicode.org/copyright.html - Oras ng Cape Verde - Standard Time ng Cape Verde + Oras sa Cape Verde + Standard na Oras sa Cape Verde Oras sa Tag-init ng Cape Verde - Oras ng Chamorro + Standard na Oras sa Chamorro - Oras ng Chatham - Standard Time ng Chatham - Daylight Time ng Chatham + Oras sa Chatham + Standard na Oras sa Chatham + Daylight Time sa Chatham - Oras ng Chile - Standard Time ng Chile + Oras sa Chile + Standard na Oras sa Chile Oras sa Tag-init ng Chile - Oras ng China - Standard Time ng China - Daylight Time ng China + Oras sa China + Standard na Oras sa China + Daylight Time sa China - Oras ng Choibalsan - Standard Time ng Choibalsan + Oras sa Choibalsan + Standard na Oras sa Choibalsan Oras sa Tag-init ng Choibalsan - Oras ng Christmas Island + Oras sa Christmas Island - Oras ng Cocos Islands + Oras sa Cocos Islands - Oras ng Colombia - Standard Time ng Colombia + Oras sa Colombia + Standard na Oras sa Colombia Oras sa Tag-init ng Colombia - Oras ng Cook Islands - Standard Time ng Cook Islands - Oras sa ng Cook Islands sa Kalahit ng Tag-init + Oras sa Cook Islands + Standard na Oras sa Cook Islands + Oras sa Kalahati ng Tag-init ng Cook Islands - Cuba Time - Standard Time ng Cuba - Daylight Time ng Cuba + Oras sa Cuba + Standard na Oras sa Cuba + Daylight Time sa Cuba - Oras ng Davis + Oras sa Davis - Oras ng Dumont-d’Urville + Oras sa Dumont-d’Urville @@ -3333,86 +3462,86 @@ For terms of use, see http://www.unicode.org/copyright.html - Oras ng Easter Island - Standard Time ng Easter Island + Oras sa Easter Island + Standard na Oras sa Easter Island Oras sa Tag-init ng Easter Island - Oras ng Ecuador + Oras sa Ecuador - Oras ng Gitnang Europe - Standard Time ng Gitnang Europe + Oras sa Gitnang Europe + Standard na Oras sa Gitnang Europe Oras sa Tag-init ng Gitnang Europe - Oras ng Silangang Europe - Standard Time ng Silangang Europe + Oras sa Silangang Europe + Standard na Oras sa Silangang Europe Oras sa Tag-init ng Silangang Europe - Further-eastern Europe Time + Oras sa Pinaka-silangang Europe - Oras ng Kanlurang Europe - Standard Time ng Kanlurang Europe + Oras sa Kanlurang Europe + Standard na Oras sa Kanlurang Europe Oras sa Tag-init ng Kanlurang Europe - Oras ng Falkland Islands - Standard Time ng Falkland Islands + Oras sa Falkland Islands + Standard na Oras sa Falkland Islands Oras sa Tag-init ng Falkland Islands - Oras ng Fiji - Standard Time ng Fiji + Oras sa Fiji + Standard na Oras sa Fiji Oras sa Tag-init ng Fiji - Oras ng French Guiana + Oras sa French Guiana - Oras sa Katimugan ng France at Antartiko + Oras sa Katimugang France at Antartiko - Oras ng Galapagos + Oras sa Galapagos - Oras ng Gambier + Oras sa Gambier - Oras ng Georgia - Standard Time ng Georgia + Oras sa Georgia + Standard na Oras sa Georgia Oras sa Tag-init ng Georgia - Oras ng Gilbert Islands + Oras sa Gilbert Islands @@ -3422,57 +3551,57 @@ For terms of use, see http://www.unicode.org/copyright.html - Oras ng Silangang Greenland - Standard Time ng Silangang Greenland + Oras sa Silangang Greenland + Standard na Oras sa Silangang Greenland Oras sa Tag-init ng Silangang Greenland - Oras ng Kanlurang Greenland - Standard Time ng Kanlurang Greenland + Oras sa Kanlurang Greenland + Standard na Oras sa Kanlurang Greenland Oras sa Tag-init ng Kanlurang Greenland - Oras ng Gulf + Oras sa Gulf - Oras ng Guyana + Oras sa Guyana - Oras ng Hawaii-Aleutian - Standard Time ng Hawaii-Aleutian + Oras sa Hawaii-Aleutian + Standard na Oras sa Hawaii-Aleutian Oras sa Tag-init ng Hawaii-Aleutian - Oras ng Hong Kong - Standard Time ng Hong Kong + Oras sa Hong Kong + Standard na Oras sa Hong Kong Oras sa Tag-init ng Hong Kong - Time ng Hovd - Standard TIme ng Hovd + Oras sa Hovd + Standard na Oras sa Hovd Oras sa Tag-init ng Hovd - Standard Time ng India + Standard na Oras sa Bhutan - Oras ng Indian Ocean + Oras sa Indian Ocean @@ -3497,30 +3626,30 @@ For terms of use, see http://www.unicode.org/copyright.html - Oras ng Iran - Standard Time ng Iran - Daylight Time ng Iran + Oras sa Iran + Standard na Oras sa Iran + Daylight Time sa Iran - Oras ng Irkutsk - Standard Time ng Irkutsk + Oras sa Irkutsk + Standard na Oras sa Irkutsk Oras sa Tag-init ng Irkutsk - Oras ng Israel - Standard Time ng Israel - Daylight Time ng Israel + Oras sa Israel + Standard na Oras sa Israel + Daylight Time sa Israel - Oras ng Japan - Standard Time ng Japan - Daylight Time ng Japan + Oras sa Japan + Standard na Oras sa Japan + Daylight Time sa Japan @@ -3532,59 +3661,59 @@ For terms of use, see http://www.unicode.org/copyright.html - Oras ng Silangang Kazakhstan + Oras sa Silangang Kazakhstan - Oras ng Kanlurang Kazakhstan + Oras sa Kanlurang Kazakhstan - Oras ng Korea - Standard Time ng Korea - Daylight Time ng Korea + Oras sa Korea + Standard na Oras sa Korea + Daylight Time sa Korea - Oras ng Kosrae + Oras sa Kosrae - Oras ng Krasnoyarsk - Standard Time ng Krasnoyarsk + Oras sa Krasnoyarsk + Standard na Oras sa Krasnoyarsk Oras sa Tag-init ng Krasnoyarsk - Oras ng Kyrgystan + Oras sa Kyrgystan - Oras ng Line Islands + Oras sa Line Islands - Oras ng Lord Howe - Standard Time ng Lord Howe - Daylight Time ng Lord Howe + Oras sa Lord Howe + Standard na Oras sa Lord Howe + Daylight Time sa Lorde Howe - Oras ng Macquarie Island + Oras sa Macquarie Island - Oras ng Magadan - Standard Time ng Magadan + Oras sa Magadan + Standard na Oras sa Magadan Oras sa Tag-init ng Magadan @@ -3595,56 +3724,56 @@ For terms of use, see http://www.unicode.org/copyright.html - Oras ng Maldives + Oras sa Maldives - Oras ng Marquesas + Oras sa Marquesas - Oras ng Marshall Islands + Oras sa Marshall Islands - Oras ng Mauritius - Standard Time ng Mauritius + Oras sa Mauritius + Standard na Oras sa Mauritius Oras sa Tag-init ng Mauritius - Oras ng Mawson + Oras sa Mawson - Oras ng Hilagang-kanlurang Mexico - Standard Time ng Hilagang-kanlurang Mexico - Daylight Time ng Hilagang-kanlurang Mexico + Oras sa Hilagang-kanlurang Mexico + Standard na Oras sa Hilagang-kanlurang Mexico + Daylight Time sa Hilagang-kanlurang Mexico - Pacific Time ng Mexico - Pacific Standard Time ng Mexico - Pacific Daylight Time ng Mexico + Oras sa Pasipiko ng Mexico + Standard na Oras sa Pasipiko ng Mexico + Daylight Time sa Pasipiko ng Mexico - Oras ng Ulan Bator - Standard Time ng Ulan Bator + Oras sa Ulan Bator + Standard na Oras sa Ulan Bator Oras sa Tag-init ng Ulan Bator - Oras ng Moscow - Standard Time ng Moscow + Oras sa Moscow + Standard na Oras sa Moscow Oras sa Tag-init ng Moscow @@ -3655,124 +3784,124 @@ For terms of use, see http://www.unicode.org/copyright.html - Oras ng Nauru + Oras sa Nauru - Oras ng Nepal + Oras sa Nepal - Oras ng New Caledonia - Standard Time ng New Caledonia + Oras sa New Caledonia + Standard na Oras sa New Caledonia Oras sa Tag-init ng New Caledonia - Oras ng New Zealand - Standard Time ng New Zealand - Daylight Time ng New Zealand + Oras sa New Zealand + Standard na Oras sa New Zealand + Daylight Time sa New Zealand - Oras ng Newfoundland - Standard Time ng Newfoundland - Daylight Time ng Newfoundland + Oras sa Newfoundland + Standard na Oras sa Newfoundland + Daylight Time sa Newfoundland - Oras ng Niue + Oras sa Niue - Oras ng Norfolk Island + Oras sa Norfolk Island - Oras ng Fernando de Noronha - Standard Time ng Fernando de Noronha + Oras sa Fernando de Noronha + Standard na Oras sa Fernando de Noronha Oras sa Tag-init ng Fernando de Noronha - Oras ng Novosibirsk - Standard Time ng Novosibirsk + Oras sa Novosibirsk + Standard na Oras sa Novosibirsk Oras sa Tag-init ng Novosibirsk - Oras ng Omsk - Standard Time ng Omsk + Oras sa Omsk + Standard na Oras sa Omsk Oras sa Tag-init ng Omsk - Oras ng Pakistan - Standard Time ng Pakistan + Oras sa Pakistan + Standard na Oras sa Pakistan Oras sa Tag-init ng Pakistan - Oras ng Palau + Oras sa Palau - Oras ng Papua New Guinea + Oras sa Papua New Guinea - Oras ng Paraguay - Standard Time ng Paraguay + Oras sa Paraguay + Standard na Oras sa Paraguay Oras sa Tag-init ng Paraguay - Oras ng Peru - Standard Time ng Peru + Oras sa Peru + Standard na Oras sa Peru Oras sa Tag-init ng Peru - Oras ng Pilipinas - Standard Time ng Pilipinas + Oras sa Pilipinas + Standard na Oras sa Pilipinas Oras sa Tag-init ng Pilipinas - Oras ng Phoenix Islands + Oras sa Phoenix Islands - Oras ng Saint Pierre and Miquelon - Standard Time ng Saint Pierre and Miquelon - Daylight Time ng Saint Pierre and Miquelon + Oras sa Saint Pierre and Miquelon + Standard na Oras sa Saint Pierre and Miquelon + Daylight Time sa Saint Pierre and Miquelon - Oras ng Pitcairn + Oras sa Pitcairn - Oras ng Ponape + Oras sa Ponape @@ -3782,13 +3911,13 @@ For terms of use, see http://www.unicode.org/copyright.html - Oras ng Rothera + Oras sa Rothera - Oras ng Sakhalin - Standard Time ng Sakhalin + Oras sa Sakhalin + Standard na Oras sa Sakhalin Oras sa Tag-init ng Sakhalin @@ -3801,153 +3930,153 @@ For terms of use, see http://www.unicode.org/copyright.html - Oras ng Samoa - Standard Time ng Samoa - Daylight Time ng Samoa + Oras sa Samoa + Standard na Oras sa Samoa + Daylight Time sa Samoa - Oras ng Seychelles + Oras sa Seychelles - Standard Time ng Singapore + Standard na Oras sa Singapore - Oras ng Solomon Islands + Oras sa Solomon Islands - Oras ng South Georgia + Oras sa Timog Georgia - Oras ng Suriname + Oras sa Suriname - Oras ng Syowa + Oras sa Syowa - Oras ng Tahiti + Oras sa Tahiti - Oras ng Taipei - Standard Time ng Taipei - Daylight Time ng Taipei + Oras sa Taipei + Standard na Oras sa Taipei + Daylight Time sa Taipei - Oras ng Tajikistan + Oras sa Tajikistan - Oras ng Tokelau + Oras sa Tokelau - Oras ng Tonga - Standard Time ng Tonga + Oras sa Tonga + Standard na Oras sa Tonga Oras sa Tag-init ng Tonga - Oras ng Chuuk + Oras sa Chuuk - Oras ng Turkmenistan - Standard Time ng Turkmenistan + Oras sa Turkmenistan + Standard na Oras sa Turkmenistan Oras sa Tag-init ng Turkmenistan - Oras ng Tuvalu + Oras sa Tuvalu - Oras ng Uruguay - Standard Time ng Uruguay + Oras sa Uruguay + Standard na Oras sa Uruguay Oras sa Tag-init ng Uruguay - Oras ng Uzbekistan - Standard Time ng Uzbekistan + Oras sa Uzbekistan + Standard na Oras sa Uzbekistan Oras sa Tag-init ng Uzbekistan - Oras ng Vanuatu - Standard Time ng Vanuatu + Oras sa Vanuatu + Standard na Oras sa Vanuatu Oras sa Tag-init ng Vanuatu - Oras ng Venezuela + Oras sa Venezuela - Oras ng Vladivostok - Standard Time ng Vladivostok + Oras sa Vladivostok + Standard na Oras sa Vladivostok Oras sa Tag-init ng Vladivostok - Oras ng Volgograd - Standard Time ng Volgograd + Oras sa Volgograd + Standard na Oras sa Volgograd Oras sa Tag-init ng Volgograd - Oras ng Vostok + Oras sa Vostok - Oras ng Wake Island + Oras sa Wake Island - Oras ng Wallis and Futuna + Oras sa Wallis and Futuna - Oras ng Yakutsk - Standard Time ng Yakutsk + Oras sa Yakutsk + Standard na Oras sa Yakutsk Oras sa Tag-init ng Yakutsk - Oras ng Yekaterinburg - Standard Time ng Yekaterinburg + Oras sa Yekaterinburg + Standard na Oras sa Yekaterinburg Oras sa Tag-init ng Yekaterinburg @@ -3982,29 +4111,29 @@ For terms of use, see http://www.unicode.org/copyright.html 0 libo - 0 libo + 0 na libo 00 libo - 00 libo + 00 na libo 000 libo - 000 libo + 000 na libo 0 milyon - 0 milyon + 0 na milyon 00 milyon - 00 milyon + 00 na milyon 000 milyon - 000 milyon + 000 na milyon 0 bilyon - 0 bilyon + 0 na bilyon 00 bilyon - 00 bilyon + 00 na bilyon 000 bilyon - 000 bilyon + 000 na bilyon 0 trilyon - 0 trilyon + 0 na trilyon 00 trilyon - 00 trilyon + 00 na trilyon 000 trilyon - 000 trilyon + 000 na trilyon @@ -4059,6 +4188,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0B + ¤0B + ¤00B + ¤00B + ¤000B + ¤000B + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + {0} {1} {0} {1} @@ -4067,6 +4224,7 @@ For terms of use, see http://www.unicode.org/copyright.html United Arab Emirates Dirham UAE dirham UAE dirhams + AED Afghan Afghani @@ -4084,22 +4242,25 @@ For terms of use, see http://www.unicode.org/copyright.html Armenian Dram Armenian dram Armenian drams + AMD - Netherlands Antillean Guilder - Netherlands Antillean guilder - Netherlands Antillean guilders + Antillean Guilder ng Netherlands + Antillean guilder ng Netherlands + Antillean guilders ng Netherlands ANG Angolan Kwanza Angolan kwanza Angolan kwanzas + AOA + Kz - Argentine Peso - Argentine peso - Argentine pesos + Piso ng Argentina + piso ng Argentina + piso ng Argentina ARS $ @@ -4108,23 +4269,26 @@ For terms of use, see http://www.unicode.org/copyright.html dolyar ng Australya dolyares ng Australya A$ + $ - Aruban Florin - Aruban florin - Aruban florin + Florin ng Aruba + florin ng Aruba + florin ng Aruba AWG Azerbaijani Manat Azerbaijani manat Azerbaijani manats + AZN Bosnia-Herzegovina Convertible Mark Bosnia-Herzegovina convertible mark Bosnia-Herzegovina convertible marks BAM + KM Dolyar ng Barbados @@ -4150,11 +4314,13 @@ For terms of use, see http://www.unicode.org/copyright.html Bahraini Dinar Bahraini dinar Bahraini dinars + BHD Burundian Franc Burundian franc Burundian francs + BIF Dolyar ng Bermuda @@ -4171,15 +4337,16 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Bolivian Boliviano - Bolivian boliviano - Bolivian bolivianos + Boliviano ng Bolivia + boliviano ng Bolivia + bolivianos ng Bolivia BOB + Bs - Brazilian Real - Brazilian real - Brazilian reals + Real ng Barzil + real ng Brazil + reals ng Brazil R$ R$ @@ -4200,6 +4367,8 @@ For terms of use, see http://www.unicode.org/copyright.html Botswanan Pula Botswanan pula Botswanan pulas + BWP + P Belarusian Ruble @@ -4226,6 +4395,7 @@ For terms of use, see http://www.unicode.org/copyright.html Congolese Franc Congolese franc Congolese francs + CDF Swiss Franc @@ -4255,9 +4425,9 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Costa Rican Colón - Costa Rican colón - Costa Rican colóns + Colón ng Costa Rica + colón ng Costa Rica + colóns ng Costa Rica CRC @@ -4266,6 +4436,7 @@ For terms of use, see http://www.unicode.org/copyright.html Convertible na piso ng Cuba Convertible na Piso ng Cuba CUC + $ Piso ng Cuba @@ -4278,12 +4449,14 @@ For terms of use, see http://www.unicode.org/copyright.html Cape Verdean Escudo Cape Verdean escudo Cape Verdean escudos + CVE Czech Republic Koruna Czech Republic koruna Czech Republic korunas CZK + Deutsche Marks @@ -4292,12 +4465,14 @@ For terms of use, see http://www.unicode.org/copyright.html Djiboutian Franc Djiboutian franc Djiboutian francs + DJF - Denmark Krone + Danish Krone Danish krone Danish kroner DKK + kr Piso ng Dominican @@ -4310,6 +4485,7 @@ For terms of use, see http://www.unicode.org/copyright.html Algerian Dinar Algerian dinar Algerian dinars + DZD Estonian Kroon @@ -4318,16 +4494,20 @@ For terms of use, see http://www.unicode.org/copyright.html Egyptian Pound Egyptian pound Egyptian pounds + EGP + Eritrean Nakfa Eritrean nakfa Eritrean nakfas + ERN Ethiopian Birr Ethiopian birr Ethiopian birrs + ETB Euro @@ -4340,12 +4520,15 @@ For terms of use, see http://www.unicode.org/copyright.html Dolyar ng Fiji dolyar ng Fiji dolyares ng Fiji + FJD + $ - Falkland Islands Pound - Falkland Islands pound - Falkland Islands pounds + Pound ng Falkland Islands + pound ng Falkland Islands + pounds ng Falkland Islands FKP + £ French Franc @@ -4361,11 +4544,14 @@ For terms of use, see http://www.unicode.org/copyright.html Georgian Lari Georgian lari Georgian laris + GEL + Ghanaian Cedi Ghanaian cedi - Ghanaian CediGhanaian cedis + Ghanian cedis + GHS Gibraltar Pound @@ -4378,17 +4564,21 @@ For terms of use, see http://www.unicode.org/copyright.html Gambian Dalasi Gambian dalasi Gambian dalasis + GMD Guinean Franc Guinean franc Guinean francs + GNF + FG - Guatemalan Quetzal - Guatemalan quetzal - Guatemalan quetzals + Quetzal ng Guatemala + quetzal ng Guatemala + quetzals ng Guatemala GTQ + Q Dolyar ng Guyanese @@ -4405,21 +4595,23 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Honduran Lempira - Honduran lempira - Honduran lempiras + Lempira ng Honduras + lempira ng Honduras + lempiras ng Honduras HNL + L Croatian Kuna Croatian kuna Croatian kunas HRK + kn - Haitian Gourde - Haitian gourde - Haitian gourdes + Gourde ng Haiti + gourde ng Haiti + gourdes ng Haiti HTG @@ -4427,18 +4619,21 @@ For terms of use, see http://www.unicode.org/copyright.html Hungarian forint Hungarian forints HUF + Ft Indonesian Rupiah Indonesian rupiah Indonesian rupiahs IDR + Rp Israeli New Sheqel Israeli new sheqel Israeli new sheqels + Indian Rupee @@ -4451,6 +4646,7 @@ For terms of use, see http://www.unicode.org/copyright.html Iraqi Dinar Iraqi dinar Iraqi dinars + IQD Iranian Rial @@ -4463,6 +4659,7 @@ For terms of use, see http://www.unicode.org/copyright.html Icelandic króna Icelandic krónur ISK + kr Dolyar ng Jamaica @@ -4475,6 +4672,7 @@ For terms of use, see http://www.unicode.org/copyright.html Jordanian Dinar Jordanian dinar Jordanian dinars + JOD Japanese Yen @@ -4487,11 +4685,13 @@ For terms of use, see http://www.unicode.org/copyright.html Kenyan Shilling Kenyan shilling Kenyan shillings + KES Kyrgystani Som Kyrgystani som Kyrgystani soms + KGS Cambodian Riel @@ -4504,17 +4704,20 @@ For terms of use, see http://www.unicode.org/copyright.html Comorian Franc Comorian franc Comorian francs + KMF + CF - North Korean Won - North Korean won - North Korean won + Won ng Hilagang Korea + won ng Hilagang Korea + won ng Hilagang Korea KPW + - South Korean Won - South Korean won - South Korean won + Won ng Timog Korea + won ng Timog Korea + won ng Timog Korea @@ -4522,6 +4725,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kuwaiti Dinar Kuwaiti dinar Kuwaiti dinars + KWD Dolyar ng Cayman Islands @@ -4534,6 +4738,8 @@ For terms of use, see http://www.unicode.org/copyright.html Kazakhstani Tenge Kazakhstani tenge Kazakhstani tenges + KZT + Laotian Kip @@ -4543,20 +4749,25 @@ For terms of use, see http://www.unicode.org/copyright.html - Lebanese Pound - Lebanese pound - Lebanese pounds + Pound ng Lebanon + pound ng Lebanon + pounds ng Lebanon + LBP + Sri Lankan Rupee Sri Lankan rupee Sri Lankan rupees LKR + Rs Dolyar ng Liberia dolyar ng Liberia dolyares ng Liberia + LRD + $ Lesotho Loti @@ -4577,11 +4788,13 @@ For terms of use, see http://www.unicode.org/copyright.html Libyan Dinar Libyan dinar Libyan dinars + LYD Moroccan Dirham Moroccan dirham Moroccan dirhams + MAD Moldovan Leu @@ -4593,6 +4806,8 @@ For terms of use, see http://www.unicode.org/copyright.html Malagasy Ariary Malagasy Ariary Malagasy Ariaries + MGA + Ar Macedonian Denar @@ -4605,6 +4820,7 @@ For terms of use, see http://www.unicode.org/copyright.html Myanmar kyat Myanmar kyats MMK + K Mongolian Tugrik @@ -4623,11 +4839,14 @@ For terms of use, see http://www.unicode.org/copyright.html Mauritanian Ouguiya Mauritanian ouguiya Mauritanian ouguiyas + MRO Mauritian Rupee Mauritian rupee Mauritian rupees + MUR + Rs Maldivian Rufiyaa @@ -4639,11 +4858,12 @@ For terms of use, see http://www.unicode.org/copyright.html Malawian Kwacha Malawian Kwacha Malawian Kwachas + MWK Piso ng Mexico piso ng Mexico - Piso ng Mexico + piso ng Mexico MX$ $ @@ -4652,55 +4872,66 @@ For terms of use, see http://www.unicode.org/copyright.html Malaysian ringgit Malaysian ringgits MYR + RM Mozambican Metical Mozambican metical Mozambican meticals + MZN Dolyar ng Namibia dolyar ng Namibia dolyares ng Namibia + NAD + $ Nigerian Naira Nigerian naira Nigerian nairas + NGN + - Nicaraguan Córdoba - Nicaraguan córdoba + Córdoba ng Nicaragua + córdoba ng Nicaragua Nicaraguan córdobas NIO + C$ Norwegian Krone Norwegian krone Norwegian kroner NOK + kr Nepalese Rupee Nepalese rupee Nepalese rupees NPR + Rs Dolyar ng New Zealand dolyares ng New Zealand dolyares ng New Zealand NZ$ + $ Omani Rial Omani rial Omani rials + OMR - Panamanian Balboa - Panamanian balboa - Panamanian balboas + Balboa ng Panama + balboa ng Panama + Balboas ng Panama PAB @@ -4713,6 +4944,7 @@ For terms of use, see http://www.unicode.org/copyright.html Papua New Guinean Kina Papua New Guinean kina Papua New Guinean kina + PGK Piso ng Pilipinas @@ -4726,12 +4958,14 @@ For terms of use, see http://www.unicode.org/copyright.html Pakistani rupee Pakistani rupees PKR + Rs Polish Zloty Polish zloty Polish zlotys PLN + Paraguayan Guarani @@ -4744,6 +4978,7 @@ For terms of use, see http://www.unicode.org/copyright.html Qatari Rial Qatari rial Qatari rials + QAR Romanian Leu @@ -4762,37 +4997,46 @@ For terms of use, see http://www.unicode.org/copyright.html Russian ruble Russian rubles RUB + Rwandan Franc Rwandan franc Rwandan francs + RWF + RF Saudi Riyal Saudi riyal Saudi riyals + SAR Dolyar ng Solomon Islands dolyar ng Solomon Islands dolyar ng Solomon Islands + SBD + $ Seychellois Rupee Seychellois rupee Seychellois rupees + SCR - Sudanese Pound - Sudanese pound + Pound ng Sudan + pound ng Sudan Sudanese pounds + SDG Swedish Krona Swedish krona Swedish kronor SEK + kr Dolyar ng Singapore @@ -4805,6 +5049,8 @@ For terms of use, see http://www.unicode.org/copyright.html Saint Helena Pound Saint Helena pound Saint Helena pounds + SHP + £ Slovenian Tolar @@ -4816,11 +5062,13 @@ For terms of use, see http://www.unicode.org/copyright.html Sierra Leonean Leone Sierra Leonean leone Sierra Leonean leones + SLL Somali Shilling Somali shilling Somali shillings + SOS Dolyar ng Suriname @@ -4830,55 +5078,71 @@ For terms of use, see http://www.unicode.org/copyright.html $ - South Sudanese Pound - South Sudanese pound - South Sudanese pounds + Pound ng Timog Sudan + Pound ng Timog Sudan + pounds ng Timog Sudan + SSP + £ - Sao Tome and Principe Dobra - Sao Tome and Principe dobra - Sao Tome and Principe dobras + São Tomé & Príncipe Dobra + São Tomé & Príncipe dobra + São Tomé & Príncipe dobras + STD + Db Syrian Pound Syrian pound Syrian pounds + SYP + £ Swazi Lilangeni Swazi lilangeni Swazi emalangeni + SZL Thai Baht Thai baht Thai baht ฿ + ฿ Tajikistani Somoni Tajikistani somoni Tajikistani somonis + TJS Turkmenistani Manat Turkmenistani manat Turkmenistani manat + TMT Tunisian Dinar Tunisian dinar Tunisian dinars + TND Tongan Paʻanga Tongan paʻanga Tongan paʻanga + TOP + T$ Turkish Lira Turkish lira Turkish Lira + TRY + + TL Dolyar ng Trinidad and Tobago @@ -4898,6 +5162,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tanzanian Shilling Tanzanian shilling Tanzanian shillings + TZS Ukrainian Hryvnia @@ -4910,6 +5175,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ugandan Shilling Ugandan shilling Ugandan shillings + UGX Dolyar ng US @@ -4929,15 +5195,17 @@ For terms of use, see http://www.unicode.org/copyright.html Uzbekistan Som Uzbekistan som Uzbekistan som + UZS Venezuelan Bolívar (1871–2008) - Venezuelan Bolívar - Venezuelan bolívar - Venezuelan bolívars + Bolívar ng Venezuela + bolívar ng Venezuela + bolívars ng Venezuela VEF + Bs Vietnamese Dong @@ -4950,11 +5218,13 @@ For terms of use, see http://www.unicode.org/copyright.html Vanuatu Vatu Vanuatu vatu Vanuatu vatus + VUV Samoan Tala Samoan tala Samoan tala + WST CFA Franc BEAC @@ -4967,11 +5237,12 @@ For terms of use, see http://www.unicode.org/copyright.html dolyar ng Silangang Caribbean dolyares ng Silangang Caribbean EC$ + $ - CFA Franc BCEAO - CFA franc BCEAO - CFA francs BCEAO + CFA Franc ng Kanlurang Africa + CFA franc ng Kanlurang Africa + CFA francs ng Kanlurang Africa CFA @@ -4989,11 +5260,14 @@ For terms of use, see http://www.unicode.org/copyright.html Yemeni Rial Yemeni rial Yemeni rials + YER - South African Rand - South African rand - South African rand + Rand ng Timog Africa + rand ng Timog Africa + rand ng Timog Africa + ZAR + R Zambian Kwacha (1968–2012) @@ -5002,6 +5276,8 @@ For terms of use, see http://www.unicode.org/copyright.html Zambian Kwacha Zambian kwacha Zambian kwachas + ZMW + ZK @@ -5012,7 +5288,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0} bawat {1} + {0} kada {1} g-force @@ -5022,454 +5298,491 @@ For terms of use, see http://www.unicode.org/copyright.html metro kada segundo kwadrado {0} metro kada segundo kwadrado - {0} metro kada segundo kwadrado + {0} na metro kada segundo kwadrado - - arcminutes - {0} minute - {0} minutes - - - arcseconds - {0} second - {0} seconds - - - degrees - {0} degree - {0} degrees + + pag-ikot + {0} pag-ikot + {0} na pag-ikot radians {0} radian - {0} radians + {0} na radian + + + degrees + {0} degree + {0} na degree + + + arcminutes + {0} arcminute + {0} na arcminute + + + arcseconds + {0} arcsecond + {0} na arcsecond + + + kilometro kwadrado + {0} kilometro kwadrado + {0} na kilometro kwadrado + + + hektarya + {0} hektarya + {0} na hektarya + + + metro kwadrado + {0} metro kwadrado + {0} na metro kwadrado + {0} kada metro kwadrado + + + sentimetro kwadrado + {0} sentimetro kwadrado + {0} na sentimetro kwadrado + {0} kada sentimetro kwadrado + + + milya kwadrado + {0} milya kwadrado + {0} na milya kwadrado acres {0} acre {0} acres - - hektarya - {0} ektarya - {0} ektarya - - - sentimetro kwadrado - {0} sentimetro kwadrado - {0} sentimetro kwadrado + + yardang parisukat + {0} yardang parisukat + {0} na yardang parisukat talampakan parisukat {0} talampakan parisukat - {0} talampakan parisukat + {0} na talampakan parisukat pulgada kwadrado {0} pulgada kwadrado - {0} pulgada kwadrado + {0} na pulgada kwadrado + {0} kada pulgada kwadrado - - kilometro kwadrado - {0} kilometro kwadrado - {0} square kilometer - - - metro kwadrado - {0} metro kwadrado - {0} square meter - - - milya kwadrado - {0} milya parisukat - {0} milya parisukat - - - yarda parisukat - {0} yarda parisukat - {0} yarda parisukat + + karat + {0} karat + {0} na karat litro kada kilometro - {0} litro kada kilometro + {0} litro kada kilometro {0} litro kada kilometro + + litro kada 100 kilometro + {0} litro kada 100 kilometro + {0} na litro kada 100 kilometer + milya kada galon - {0} milya kada galon - {0} milya kada galon - - - bits - {0} bit - {0} bits - - - bytes - {0} byte - {0} byte - - - gigabits - {0} gigabit - {0} gigabits - - - gigabytes - {0} gigabyte - {0} gigabytes - - - kilobits - {0} kilobit - {0} kilobits - - - kilobytes - {0} kilobyte - {0} kilobytes - - - megabits - {0} megabit - {0} megabits - - - megabytes - {0} megabyte - {0} megabytes - - - terabits - {0} terabit - {0} terabits + {0} milya kada galon + {0} na milya kada galon terabytes {0} terabyte - {0} terabytes + {0} na terabyte + + + terabits + {0} terabit + {0} na terabit + + + gigabytes + {0} gigabyte + {0} na gigabyte + + + gigabits + {0} gigabit + {0} na gigabit + + + megabytes + {0} megabyte + {0} na megabyte + + + megabits + {0} megabit + {0} na megabit + + + kilobytes + {0} kilobyte + {0} na kilobyte + + + kilobits + {0} kilobit + {0} na kilobit + + + bytes + {0} byte + {0} na byte + + + bits + {0} bit + {0} na bit + + + mga siglo + {0} siglo + {0} siglo + + + mga taon + {0} taon + {0} na taon + {0} kada taon + + + mga buwan + {0} buwan + {0} buwan + {0} kada buwan + + + mga linggo + {0} linggo + {0} na linggo + {0} kada linggo araw {0} araw - {0} araw + {0} na araw + {0} kada araw - oras + mga oras {0} oras - {0} oras + {0} na oras {0} kada oras - - mikrosegundo - {0} mikrosegundo - {0} mikrosegundo + + mga minuto + {0} minuto + {0} na minuto + {0} kada minuto + + + mga segundo + {0} segundo + {0} na segundo + {0} kada segundo milisegundo {0} milisegundo {0} milisegundo - - minuto - {0} minuto - {0} minuto - - - buwan - {0} buwan - {0} buwan + + mikrosegundo + {0} mikrosegundo + {0} mikrosegundo nanosegundo {0} nanosegundo {0} nanosegundo - - segundo - {0} segundo - {0} segundo - {0} kada segundo - - - linggo - {0} linggo - {0} linggo - - - taon - {0} taon - {0} taon - amperes {0} ampere - {0} amperes + {0} na ampere milliamperes {0} milliampere - {0} milliamperes + {0} na milliampere ohms {0} ohm - {0} ohms + {0} na ohm volts {0} volt - {0} volts - - - calories - {0} calorie - {0} calories - - - Calories - {0} Calorie - {0} Calories - - - joules - {0} joule - {0} joules + {0} na volt kilocalories {0} kilocalorie - {0} kilocalories + {0} na kilocalorie + + + calories + {0} calorie + {0} na calories + + + Calories + {0} Calorie + {0} na Calories kilojoules {0} kilojoule - {0} kilojoules + {0} na kilojoule + + + joules + {0} joule + {0} na joules kilowatt-hours {0} kilowatt hour - {0} kilowatt-hours + {0} na kilowatt-hour gigahertz {0} gigahertz - {0} gigahertz + {0} na gigahertz - - hertz - {0} hertz - {0} hertz + + megahertz + {0} na megahertz + {0} megahertz kilohertz {0} kilohertz - {0} kilohertz + {0} na kilohertz - - megahertz - {0} megahertz - {0} megahertz + + hertz + {0} hertz + {0} na hertz - - astronomical units - {0} astronomical unit - {0} astronomical units + + kilometro + {0} kilometro + {0} na kilometro + {0} kada kilometro + + + metro + {0} metro + {0} na metro + {0} kada metro + + + decimetro + {0} decimetro + {0} na decimetro sentimetro {0} sentimetro {0} sentimetro + {0} kada sentimetro - - decimetro - {0} decimetro - {0} decimetro - - - talampakan - {0} talampakan - {0} talampakan - - - pulgada - {0} pulgada - {0} pulgada - - - kilometro - {0} kilometro - {0} kilometro - - - light year - {0} light year - {0} light year - - - metro - {0} metro - {0} metro + + milimetro + {0} milimetro + {0} na milimetro micrometro {0} micrometro {0} micrometro - - milya - {0} milya - {0} milya - - - milimetro - {0} milimetro - {0} milimetro - nanometro {0} nanometro {0} nanometro - - nautical miles - {0} nautical mile - {0} nautical miles - - - parsecs - {0} parsec - {0} parsecs - picometer {0} picometer {0} picometer + + milya + {0} milya + {0} na milya + yarda {0} yarda - {0} yarda + {0} na yarda + + + talampakan + {0} talampakan + {0} na talampakan + {0} kada talampakan + + + pulgada + {0} pulgada + {0} na pulgada + {0} kada pulgada + + + parsecs + {0} parsec + {0} parsecs + + + light year + {0} light year + {0} na light year + + + astronomical units + {0} astronomical unit + {0} na astronomical units + + + nautical miles + {0} nautical mile + {0} nautical miles + + + milya-scandinavian + {0} milya-scandinavian + {0} na milya-scandinavian lux {0} lux - {0} lux + {0} na lux - - karat - {0} karat - {0} karat - - - gramo - {0} gramo - {0} gramo + + toneladang metriko + {0} toneladang metriko + {0} na toneladang metriko kilo {0} kilo {0} kilo + {0} kada kilo - - metrikong tonelada - {0} metrikong tonelada - {0} metrikong tonelada - - - micrograms - {0} microgram - {0} micrograms + + gramo + {0} gramo + {0} na gramo + {0} kada gramo milligrams {0} milligram {0} milligrams - - ounce - {0} ounce - {0} ounce - - - troy ounces - {0} troy ounce - {0} troy ounces - - - pound - {0} pound - {0} pound + + micrograms + {0} microgram + {0} micrograms tonelada {0} tonelada {0} tonelada + + libra + {0} libra + {0} na libra + {0} kada libra + + + onsa + {0} onsa + {0} na onsa + {0} kada onsa + + + troy na onsa + {0} troy na onsa + {0} na troy na onsa + + + karat + {0} karat + {0} karat + gigawatts {0} gigawatt - {0} gigawatts + {0} na gigawatt - - horsepower - {0} horsepower - {0} horsepower + + megawatts + {0} megawatt + {0} na megawatt kilowatts {0} kilowatt {0} kilowatts - - megawatts - {0} megawatt - {0} megawatts + + watts + {0} watt + {0} na watt milliwatts {0} milliwatt - {0} milliwatts + {0} na milliwatt - - watts - {0} watt - {0} watts + + horsepower + {0} horsepower + {0} horsepower - hectopascal + hectopascals {0} hectopascal - {0} hectopascal + {0} na hectopascal + + + milimetro ng asoge + {0} millimetro ng mercury + {0} na milimetro ng asoge + + + libra kada pulgadang parisukat + {0} libra kada pulgadang parisukat + {0} na libra kada pulgadang parisukat - inch of mercury + pulgada ng asoge {0} pulgada ng asoge - {0} inch of mercury + {0} na pulgada ng asoge millibar {0} millibar - {0} millibar - - - milimetro ng asoge - {0} milimetro ng asoge - {0} milimetro ng asoge - - - libra kada isang pulgadang parisukat - {0} libra bawa't isang pulgadang parisukat - {0} libra bawa't isang pulgadang parisukat - - - karat - {0} karat - {0} karat + {0} na millibar kilometro kada oras {0} kilometro kada oras - {0} kilometro kada oras + {0} na kilometro kada oras metro kada segundo @@ -5481,6 +5794,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milya kada oras {0} milya kada oras + + knot + {0} knot + {0} na knot + + + ° + {0}° + {0}° + degrees Celsius {0} degree Celsius @@ -5496,20 +5819,32 @@ For terms of use, see http://www.unicode.org/copyright.html {0} degree kelvin {0} degrees kelvin - - acre-feet - {0} acre-foot - {0} acre-feet + + kubiko kilometro + {0} kubiko kilometro + {0} kubiko kilometro - - sentilitro - {0} sentilitro - {0} sentilitro + + kubiko metro + {0} kubiko metro + {0} na metro kubiko + {0} kada metro kubiko kubiko sentimetro {0} kubiko sentimetro - {0} kubiko sentimetro + {0} na sentimetro kubiko + {0} kada sentimetro kubiko + + + kubiko milya + {0} kubiko milya + {0} kubiko milya + + + kubiko yarda + {0} kubiko yarda + {0} kubiko yarda kubiko talampakan @@ -5521,45 +5856,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubiko pulgada {0} kubiko pulgada - - kubiko kilometro - {0} kubiko kilometro - {0} kubiko kilometro - - - kubiko metro - {0} kubiko metro - {0} kubiko metro - - - kubiko milya - {0} kubiko milya - {0} kubiko milya - - - kubiko yarda - {0} kubiko yarda - {0} kubiko yarda - - - tasa - {0} tasa - {0} tasa - - - decilitro - {0} decilitro - {0} decilitro - - - fluid ounces - {0} fluid ounce - {0} fluid ounces - - - galon - {0} galon - {0} galon + + megalitro + {0} megalitro + {0} megalitro hektolitro @@ -5569,38 +5869,81 @@ For terms of use, see http://www.unicode.org/copyright.html litro {0} litro - {0} litro + {0} na litro + {0} kada litro - - megalitro - {0} megalitro - {0} megalitro + + decilitro + {0} decilitro + {0} na decilitro + + + sentilitro + {0} sentilitro + {0} sentilitro mililitro {0} mililitro {0} mililitro + + metric pints + {0} metric pint + {0} na metric pint + + + metric cups + {0} metric cup + {0} na metric cup + + + acre-feet + {0} acre-foot + {0} acre-feet + + + galon + {0} galon + {0} na galon + {0} kada galon + + + quarts + {0} quart + {0} na quarts + pints {0} pint {0} pints - - quarts - {0} quart - {0} quarts + + tasa + {0} tasa + {0} na tasa + + + fluid ounces + {0} fluid ounce + {0} na fluid ounce kutsara {0} kutsara - {0} kutsara + {0} na kutsara kutsarita {0} kutsarita - {0} kutsarita + {0} na kutsarita + + {0}S + {0}H + {0}T + {0}K + @@ -5616,40 +5959,67 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² - - arcmins - {0} min - {0} arcmins - - - arcsecs - {0} sec - {0} secs - - - degrees - {0} deg - {0} deg + + rev + {0} rev + {0} na rev radians {0} rad - {0} rad + {0} na rad - - acres - {0} ac - {0} ac + + degrees + {0} deg + {0} na deg + + + arcmins + {0} arcmin + {0} na arcmin + + + arcsecs + {0} arcsec + {0} na arcsec + + + km² + {0} km² + {0} km² hektarya {0} ha {0} ha + + metro² + {0} m² + {0} m² + {0} kada m² + cm² {0} cm² {0} cm² + {0} kada cm² + + + sq mile + {0} sq mi + {0} sq mi + + + acres + {0} ac + {0} ac + + + yarda² + {0} yd² + {0} yd² sq feet @@ -5660,122 +6030,118 @@ For terms of use, see http://www.unicode.org/copyright.html pulgada² {0} in² {0} in² + {0} kada in² - - km² - {0} km² - {0} km² - - - meter² - {0} m² - {0} m² - - - sq mile - {0} sq mi - {0} sq mi - - - yarda² - {0} yd² - {0} yd² + + karat + {0} kt + {0} kt litro/km {0} L/km {0} L/km + + L/100km + {0} na L/100km + {0} na L/100km + - milya kada galon + milya/gal {0} mpg - {0} mpg - - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - Gbit - {0} Gb - {0} Gb - - - GByte - {0} GB - {0} GB - - - kbit - {0} kb - {0} kb - - - kByte - {0} kB - {0} kB - - - Mbit - {0} Mb - {0} Mb - - - MByte - {0} MB - {0} MB - - - Tbit - {0} Tb - {0} Tb + {0} na mpg TByte {0} TB {0} TB + + Tbit + {0} Tb + {0} Tb + + + GByte + {0} GB + {0} GB + + + Gbit + {0} Gb + {0} Gb + + + MByte + {0} MB + {0} MB + + + Mbit + {0} Mb + {0} Mb + + + kByte + {0} kB + {0} kB + + + kbit + {0} kb + {0} kb + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + siglo + {0} siglo + {0} siglo + + + taon + {0} taon + {0} taon + {0}/taon + + + buwan + {0} buwan + {0} buwan + {0}/buwan + + + linggo + {0} linggo + {0} na linggo + {0}/linggo + araw {0} araw {0} araw + {0}/araw oras - {0} hr - {0} hrs - {0}/h - - - μseg - {0} μs - {0} μs - - - miliseg - {0} ms - {0} ms + {0} oras + {0} na oras + {0} kada oras min. {0} min. {0} min. - - - buwan - {0} mth - {0} mths - - - nanoseg - {0} ns - {0} ns + {0}/min seg. @@ -5783,15 +6149,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} seg. {0}/s - - linggo - {0} wk - {0} wks + + miliseg + {0} ms + {0} ms - - taon - {0} yr - {0} yrs + + μseg + {0} μs + {0} μs + + + nanoseg + {0} ns + {0} ns amp @@ -5813,6 +6184,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -5823,21 +6199,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - joules - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kilojoule {0} kJ {0} kJ + + joules + {0} J + {0} J + kW-hour {0} kWh @@ -5848,201 +6219,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + metro + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - talampakan - {0} ft - {0} ft - - - pulgada - {0} in - {0} in - - - km - {0} km - {0} km - - - light yr - {0} ly - {0} ly - - - metro - {0} m - {0} m - - - µmetro - {0} µm - {0} µm - - - milya - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + µmetro + {0} µm + {0} µm + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - parsecs - {0} pc - {0} pc - pm {0} pm - {0} pm + {0} na pm + + + milya + {0} mi + {0} mi yarda {0} yd - {0} yd + {0} na yd + + + talampakan + {0} ft + {0} ft + {0}/ft + + + pulgada + {0} in + {0} in + {0}/in + + + parsecs + {0} pc + {0} na pc + + + light yrs + {0} ly + {0} na ly + + + au + {0} au + {0} au + + + nmi + {0} nmi + {0} na nmi + + + smi + {0} smi + {0} smi lux {0} lx {0} lx - - karat - {0} KD - {0} KD - - - gramo - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + gramo + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - oz - {0} oz - {0} oz - - - oz troy - {0} oz t - {0} oz t - - - pound - {0} lb - {0} lb + + µg + {0} µg + {0} µg tonelada {0} tn {0} tn + + libra + {0} lb + {0} lbs + {0}/lb + + + oz + {0} oz + {0} oz + {0}/oz + + + oz troy + {0} oz t + {0} oz t + + + karat + {0} KD + {0} KD + GW {0} GW {0} GW - - hp - {0} hp - {0} hp - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW watts {0} W {0} W + + mW + {0} mW + {0} mW + + + hp + {0} hp + {0} hp + hPa {0} hPa {0} hPa - - in Hg - {0} inHg - {0} inHg - - - mbar - {0} mb - {0} mb - milimetro ng asoge {0} mm Hg @@ -6053,10 +6428,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - karat - {0} kt - {0} kt + + in Hg + {0} inHg + {0} inHg + + + mbar + {0} mb + {0} mb km/hr @@ -6064,7 +6444,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kph - meter/sec + metro/seg {0} m/s {0} m/s @@ -6073,6 +6453,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mph {0} mph + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + deg. C {0}°C @@ -6088,31 +6478,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}°K {0}°K - - acre ft - {0} ac ft - {0} ac ft - - - cL - {0} cL - {0} cL - - - cm³ - {0} cm³ - {0} cm³ - - - talampakan³ - {0} ft³ - {0} ft³ - - - pulgada³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -6122,6 +6487,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -6133,25 +6505,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - tasa - {0} c - {0} c + + talampakan³ + {0} ft³ + {0} ft³ - - dL - {0} dL - {0} dL + + pulgada³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML hL @@ -6160,29 +6527,66 @@ For terms of use, see http://www.unicode.org/copyright.html litro - {0} l - {0} l + {0} L + {0} L + {0}/l - - ML - {0} ML - {0} ML + + dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL mL {0} mL {0} mL - - pints - {0} pt - {0} pt + + mpt + {0} na mpt + {0} na mpt + + + mcup + {0} mc + {0} na mc + + + acre ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} na gal + {0}/gal qts {0} qt {0} qt + + pints + {0} pt + {0} pt + + + tasa + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + tbsp {0} tbsp @@ -6193,6 +6597,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0}S + {0}H + {0}T + {0}K + @@ -6202,6 +6612,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}G {0}G + + {0}° + {0}° + {0}′ {0}′ @@ -6210,26 +6624,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0}ac - {0}ac + + {0}km² + {0}km² {0}ha {0}ha - - {0}ft² - {0}ft² - - - {0}km² - {0}km² - {0} m² {0} m² @@ -6238,28 +6640,46 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mi² {0}mi² - - araw - {0} araw - {0}d + + {0}ac + {0}ac - - oras - {0}h - {0}h + + {0}ft² + {0}ft² - - mseg - {0}ms - {0}ms + + L/100km + {0}L/100km + {0}L/100km - - min. - {0}m - {0}m + + taon + {0}taon + {0}taon buwan + {0}buwan + {0} buwan + + + linggo + {0}linggo + {0}linggo + + + araw + {0} araw + {0} na araw + + + oras + {0} oras + {0} oras + + + min. {0}m {0}m @@ -6268,46 +6688,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0}s {0}s - - wk - {0}w - {0}w - - - yr - {0}y - {0}y - - - cm - {0}cm - {0}cm - - - {0}′ - {0}′ - - - {0}″ - {0}″ + + mseg + {0}ms + {0}ms km {0}km {0}km - - {0}ly - {0}ly - metro {0}m {0}m - - {0}mi - {0}mi + + cm + {0}cm + {0}cm mm @@ -6318,31 +6717,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0}pm {0}pm + + {0}mi + {0}mi + {0}yd {0}yd - - gramo - {0}g - {0}g + + {0}′ + {0}′ + + + {0}″ + {0}″ + + + {0}ly + {0}ly kg {0}kg {0}kg - - {0}oz - {0}oz + + gramo + {0}g + {0}g {0}# {0}# - - {0}hp - {0}hp + + {0}oz + {0}oz {0}kW @@ -6352,6 +6763,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}W {0}W + + {0}hp + {0}hp + {0}hPa {0}hPa @@ -6379,8 +6794,8 @@ For terms of use, see http://www.unicode.org/copyright.html ⁰C - {0}° - {0}° + {0}°C + {0}°C {0}°F @@ -6396,9 +6811,15 @@ For terms of use, see http://www.unicode.org/copyright.html litro - {0}l - {0}l + {0}L + {0}L + + {0}S + {0}H + {0}T + {0}K + h:mm @@ -6424,10 +6845,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}, {1} - {0}, {1} - {0}, {1} - {0}, {1} - {0}, {1} + {0} {1} + {0} {1} + {0} {1} + {0} {1} {0}, {1} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fil_PH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fil_PH.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fil_PH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fil_PH.xml index 524d3180770..58f59626fea 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fil_PH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fil_PH.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fo.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fo.xml new file mode 100644 index 00000000000..3b9dc755d0a --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fo.xml @@ -0,0 +1,6625 @@ + + + + + + + + + + + {0} ({1}) + {0}, {1} + {0}: {1} + + + abkhasiskt + afrikaans + aghem + akan + amhariskt + arabiskt + mapuche + assamesiskt + asu + aymara + aserbajdsjanskt + azeri + bashkir + hvitarussiskt + bemba + bena + bulgarskt + vestur balochi + bambara + bengalskt + tibetskt + bretonskt + bodo + bosniskt + bakossi + katalani + tjetjenskt + chiga + cherokee + miðkurdiskt + korsikanskt + kekkiskt + chuvash + walisiskt + danskt + taita + týskt + høgt týskt (Sveis) + sarma + lágt sorbian + duala + divehi + jola-fonyi + dzongkha + embu + ewe + efik + grikskt + enskt + enskt (UK) + enskt (USA) + esperanto + spanskt + estiskt + baskiskt + persiskt + finskt + filipiniskt + fijimál + føroyskt + franskt + vestur frísiskt + írskt + gagauz + skotskt gæliskt + galisiskt + guarani + týskt (Sveis) + gujarati + gusii + manx + hausa + hawaiianskt + hebraiskt + hindi + kroatiskt + ovara sorbian + haitiskt + ungarskt + armenskt + interlingua + indonesiskt + interlingue + igbo + sichuan yi + íslendskt + italskt + inuktitut + japanskt + ngomba + machame + javanskt + georgiskt + kabyle + kamba + makonde + grønhøvdaoyggjarskt + koyra chiini + kikuyu + kazakh + kalaallisut + kalenjin + khmer + kannada + koreanskt + komi-permyak + konkani + kashmiri + shambala + bafia + kurdiskt + corniskt + kyrgyz + latín + langi + lahnda + luksemborgskt + ganda + lakota + lingala + laoskt + norður luri + litaviskt + luba-katanga + luo + luyia + lettiskt + masai + meru + morisyen + malagassiskt + makhuwa-meetto + metaʼ + maori + makedónskt + malayalam + mongolskt + mohawk + marathi + malaiiskt + maltiskt + mundang + burmesiskt + mazanderani + nama + norskt bókmál + norður ndebele + lágt týskt + lágt saksiskt + nepalskt + hálendskt + flamskt + kwasio + nýnorskt + norskt + nʼko + nuer + nyanja + nyankole + occitan + oromo + oriya + ossetiskt + punjabi + pólskt + pashto + portugiskiskt + portugiskiskt (Brasilia) + portugiskiskt (Evropa) + quechua + kʼicheʼ + retoromanskt + rundi + rumenskt + moldaviskt + rombo + russiskt + kinyarwanda + rwa + sanskrit + samburu + sangu + sindhi + suður kurdiskt + norður sámiskt + sena + koyraboro senni + sango + serbokroatiskt + tachelhit + singalesiskt + slovakiskt + slovenskt + samoiskt + suður sámiskt + lule sámiskt + inari sami + skolt sámiskt + shona + somaliskt + albanskt + serbiskt + swatiskt + sesotho + sundanesiskt + svenskt + swahili + kongo svahili + shimaoré + tamilskt + telugu + teso + tetum + tajik + tailendskt + tigrinya + turkmenskt + tagalog + klingonskt + tswana + tonganskt + tok pisin + turkiskt + tsonga + tatar + twi + tasawaq + tahitiskt + miðatlasfjøll tamazight + uyghur + ukrainskt + ókent mál + urdu + usbekiskt + vai + venda + vjetnamesiskt + vunjo + warlpiri + wolof + xhosa + soga + jiddiskt + yoruba + kantonesískt + vanligt marokanskt tamazight + kinesiskt + einkult kinesiskt + vanligt kinesiskt + sulu + einki málsligt innihald + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + heimur + Afrika + Norðuramerika + Suðuramerika + Osiania + Vesturafrika + Miðamerika + Eysturafrika + Norðurafrika + Miðafrika + sunnari partur av Afrika + Amerika + Amerika norðanfyri Meksiko + Karibia + Eysturasia + Suðurasia + Útsynningsasia + Suðurevropa + Avstralasia + Melanesia + Mikronesi øki + Polynesia + Asia + Miðasia + Vesturasia + Evropa + Eysturevropa + Norðurevropa + Vesturevropa + Latínamerika + Ascension + Andorra + Sameindu Emirríkini + Afganistan + Antigua & Barbuda + Anguilla + Albania + Armenia + Angola + Antarktis + Argentina + Amerikanska Samoa + Eysturríki + Avstralia + Aruba + Áland + Aserbadjan + Bosnia-Hersegovina + Barbados + Bangladesj + Belgia + Burkina Faso + Bulgaria + Barein + Burundi + Benin + St-Barthélemy + Bermuda + Brunei + Bolivia + Niðurlonds Karibia + Brasil + Bahamaoyggjar + Butan + Bouvetoyggj + Botsvana + Hvítarussland + Belis + Kanada + Kokosoyggjar + Kongo, Dem. Lýðveldið + Miðafrikalýðveldið + Kongo + Sveis + Fílabeinsstrondin + Cooksoyggjar + Kili + Kamerun + Kina + Kolombia + Clipperton + Kosta Rika + Kuba + Grønhøvdaoyggjar + Curaçao + Jólaoyggjin + Kýpros + Kekkia + Týskland + Diego Garcia + Djibuti + Danmark + Dominika + Dominikalýðveldið + Algeria + Ceuta og Melilla + Ekvador + Estland + Egyptaland + Vestursahara + Eritrea + Spania + Etiopia + Evropasamveldið + Finnland + Fiji + Falklandsoyggjar + Mikronesiasamveldið + Føroyar + Frakland + Gabon + Stórabretland + UK + Grenada + Georgia + Franska Gujana + Guernsey + Gana + Gibraltar + Grønland + Gambia + Guinea + Guadeloupe + Ekvatorguinea + Grikkaland + Suðurgeorgia og Suðursandwichoyggjar + Guatemala + Guam + Guinea-Bissau + Gujana + Hong Kong SAR Kina + Hong Kong + Heard og McDonaldoyggjar + Honduras + Kroatia + Haiti + Ungarn + Kanariuoyggjar + Indonesia + Írland + Ísrael + Isle of Man + India + Stóra Bretlands Indiahavoyggjar + Irak + Iran + Ísland + Italia + Jersey + Jamaika + Jordan + Japan + Kenja + Kirgisia + Kambodja + Kiribati + Komoroyggjar + St. Kitts & Nevis + Norðurkorea + Suðurkorea + Kuvait + Caymanoyggjar + Kasakstan + Laos + Libanon + St. Lusia + Liktinstein + Sri Lanka + Liberia + Lesoto + Litava + Luksemborg + Lettland + Libya + Marokko + Monako + Moldova + Montenegro + St-Martin + Madagaskar + Marshalloyggjar + Makedónia + Makedónia (FJM) + Mali + Myanmar (Burma) + Mongolia + Makao SAR Kina + Makao + Norðaru Mariuoyggjar + Martinique + Móritania + Montserrat + Malta + Móritius + Maldivoyggjar + Malavi + Meksiko + Malaisia + Mosambik + Namibia + Nýkaledónia + Niger + Norfolksoyggj + Nigeria + Nikaragua + Niðurlond + Noreg + Nepal + Nauru + Niue + Nýsæland + Oman + Panama + Peru + Franska Polynesia + Papua Nýguinea + Filipsoyggjar + Pakistan + Pólland + Saint Pierre og Miquelon + Pitcairnoyggjar + Puerto Riko + Palestinskt landøki + Palestina + Portugal + Palau + Paraguai + Katar + fjarskoti Osiania + Réunion + Rumenia + Serbia + Russland + Ruanda + Saudiarabia + Salomonoyggjar + Seyskelloyggjar + Sudan + Svøríki + Singapor + St. Helena + Slovenia + Svalbard & Jan Mayen + Slovakia + Sierra Leona + San Marino + Senegal + Somalia + Surinam + Suðursudan + Sao Tome & Prinsipi + El Salvador + Sint Maarten + Sýria + Svasiland + Tristan da Cunha + Turks- og Caicosoyggjar + Kjad + Fronsku sunnaru landaøki + Togo + Tailand + Tadsjikistan + Tokelau + Eysturtimor + Turkmenistan + Tunesia + Tonga + Turkaland + Trinidad & Tobago + Tuvalu + Taivan + Tansania + Ukraina + Uganda + Sambandsríki Amerikas fjarskotnu oyggjar + Sambandsríki Amerika + USA + Uruguai + Usbekistan + Vatikanbýur + St. Vinsent & Grenadinoyggjar + Venesuela + Stóra Bretlands Jomfrúoyggjar + Sambandsríki Amerikas Jomfrúoyggjar + Vjetnam + Vanuatu + Wallis- og Futunaoyggjar + Samoa + Kosovo + Jemen + Mayotte + Suðurafrika + Sambia + Simbabvi + ókent øki + + + monotonísk + pinyin + polytonísk + Wade-Giles + + + kalendari + raðskipan + gjaldoyra + klokkuskipan (12 ímóti 24) + reglubrot stílur + mátingareind + tøl + + + buddistiskur kalendari + kinesiskur kalendari + dangi kalendari + etiopiskur kalendari + Gregorianskur kalendari + hebraiskur kalendari + islamiskur kalendari + ISO-8601 kalendari + japanskur kalendari + persiskur kalendari + minguo kalendari + forsett Unicode raðskipan + röðina fyrir fjöltyngi evrópskum skjölum + vanlig leiting + vanlig raðskipan + 12 tímar klokkuskipan (0–11) + 12 tímar klokkuskipan (1–12) + 24 tímar klokkuskipan (0–23) + 24 tímar klokkuskipan (1–24) + leysur reglubrot stílur + vanligur reglubrot stílur + strangur reglubrot stílur + metralag + mátingareind (Imperial) + mátingareind (USA) + arabisk tøl + víðkað arabisk tøl + armensk tøl + armensk tøl (smáir bókstavir) + bengalisk tøl + devanagarik tøl + etiopisk tøl + tøl í fullari longd + gregoriansk tøl + grikskt tøl + grikskt tøl (smáir bókstavir) + gujaratik tøl + gurmukhik tøl + kinesisk desimal tøl + einkul kinesisk tøl + einkul kinesisk fíggjarlig tøl + vanlig kinesisk tøl + vanlig kinesisk fíggjarlig tøl + hebraisk tøl + japanskt tøl + japanskt fíggjarlig tøl + khmer tøl + kannada tøl + lao tøl + vesturlendsk tøl + malayalam tøl + myanmarsk tøl + oriya tøl + rómartøl + rómartøl (smáir bókstavir) + vanlig tamilsk tøl + tamilsk tøl + telugu tøl + tailendsk tøl + tibetsk tøl + + + metralagið + UK + US + + + Mál: {0} + Skrift: {0} + Øki: {0} + + + + [a á b d ð e f g h i í j k l m n o ó p r s t u ú v y ý æ ø] + [c q w x z] + [A Á B C D Ð E F G H I Í J K L M N O Ó P Q R S T U Ú V W X Y Ý Z Æ Ø] + [\- ‐ – , ; \: ! ? . … ' ‘ ’ " “ ” ( ) \[ \] § @ * / \& # † ′ ″] + {0}… + …{0} + {0}…{1} + {0} … + … {0} + {0} … {1} + ? + + + + + + + + + + + + + + EEEE, dd. MMMM y G + + + + + d. MMMM y G + + + + + d. MMM y G + + + + + dd.MM.y GGGGG + + + + + + + {1} 'kl'. {0} + + + + + {1} 'kl'. {0} + + + + + {1}, {0} + + + + + {1}, {0} + + + + d. + ccc + E d. + y G + MMM y G + d. MMM y G + E d. MMM y G + h a + HH + h:mm a + HH:mm + h:mm:ss a + HH:mm:ss + L + dd.MM + E dd.MM + LLL + d. MMM + E d. MMM + d. MMMM + mm:ss + y G + MM.y + dd.MM.y + E dd.MM.y + MMM y + d. MMM y + E d. MMM y + QQQ 'í' y + QQQQ 'í' y + y G + MM.y GGGGG + dd.MM.y GGGGG + E dd.MM.y GGGGG + MMM y G + d. MMM y G + E d. MMM y G + MMMM y G + QQQ 'í' y G + QQQQ 'í' y G + + + {0} – {1} + + d.–d. + + + h a – h a + h–h a + + + HH–HH + + + h:mm a – h:mm a + h:mm–h:mm a + h:mm–h:mm a + + + HH:mm–HH:mm + HH:mm–HH:mm + + + h:mm a – h:mm a v + h:mm–h:mm a v + h:mm–h:mm a v + + + HH:mm–HH:mm v + HH:mm–HH:mm v + + + h a – h a v + h–h a v + + + HH–HH v + + + MM–MM + + + dd.MM–dd.MM + dd.MM–dd.MM + + + E dd.MM–E dd.MM + E dd.MM–E dd.MM + + + MMM–MMM + + + d.–d. MMM + d. MMM–d. MMM + + + E d. MMM–E d. MMM + E d. MMM–E d. MMM + + + y–y G + + + MM.y–MM.y GGGGG + MM.y–MM.y GGGGG + + + dd.MM.y–dd.MM.y GGGGG + dd.MM.y–dd.MM.y GGGGG + dd.MM.y–dd.MM.y GGGGG + + + E dd.MM.y–E dd.MM.y GGGGG + E dd.MM.y–E dd.MM.y GGGGG + E dd.MM.y–E dd.MM.y GGGGG + + + MMM–MMM y G + MMM y–MMM y G + + + d.–d. MMM y G + d. MMM–d. MMM y G + d. MMM y–d. MMM y G + + + E d. MMM–E d. MMM y + E d. MMM–E d. MMM y + E d. MMM y–E d. MMM y G + + + MMMM–MMMM y G + MMMM y–MMMM y G + + + + + + + + + jan. + feb. + mar. + apr. + mai + jun. + jul. + aug. + sep. + okt. + nov. + des. + + + J + F + M + A + M + J + J + A + S + O + N + D + + + januar + februar + mars + apríl + mai + juni + juli + august + september + oktober + november + desember + + + + + jan + feb + mar + apr + mai + jun + jul + aug + sep + okt + nov + des + + + J + F + M + A + M + J + J + A + S + O + N + D + + + januar + februar + mars + apríl + mai + juni + juli + august + september + oktober + november + desember + + + + + + + sun. + mán. + týs. + mik. + hós. + frí. + ley. + + + S + M + T + M + H + F + L + + + su. + má. + tý. + mi. + hó. + fr. + le. + + + sunnudagur + mánadagur + týsdagur + mikudagur + hósdagur + fríggjadagur + leygardagur + + + + + sun + mán + týs + mik + hós + frí + ley + + + S + M + T + M + H + F + L + + + su + + + mi + + fr + le + + + sunnudagur + mánadagur + týsdagur + mikudagur + hósdagur + fríggjadagur + leygardagur + + + + + + + 1. ársfj. + 2. ársfj. + 3. ársfj. + 4. ársfj. + + + 1 + 2 + 3 + 4 + + + 1. ársfjórðingur + 2. ársfjórðingur + 3. ársfjórðingur + 4. ársfjórðingur + + + + + 1. ársfj. + 2. ársfj. + 3. ársfj. + 4. ársfj. + + + 1 + 2 + 3 + 4 + + + 1. ársfjórðingur + 2. ársfjórðingur + 3. ársfjórðingur + 4. ársfjórðingur + + + + + + + AM + PM + + + AM + PM + + + AM + PM + + + + + AM + PM + + + AM + PM + + + AM + PM + + + + + + fyri Krist + fyri okkara tíðarrokning + eftir Krist + okkara tíðarrokning + + + f.Kr. + f.o.tíðr. + e.Kr. + o.tíðr. + + + fKr + flt + eKr + lt + + + + + + EEEE, d. MMMM y + + + + + d. MMMM y + + + + + dd.MM.y + + + + + dd.MM.yy + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + {1} 'kl'. {0} + + + + + {1} 'kl'. {0} + + + + + {1}, {0} + + + + + {1}, {0} + + + + d. + ccc + E d. + E h:mm a + E HH:mm + E h:mm:ss a + E HH:mm:ss + y G + MMM y G + d. MMM y G + E d. MMM y G + h a + HH + h:mm a + HH:mm + h:mm:ss a + HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v + LL + dd.MM + E dd.MM + LLL + d. MMM + E d. MMM + d. MMMM + mm:ss + y + MM.y + dd.MM.y + E dd.MM.y + MMM y + d. MMM y + E d. MMM y + MMMM y + QQQ 'í' y + QQQQ 'í' y + + + {0} {1} + + + {0} – {1} + + d.–d. + + + h a–h a + h–h a + + + HH–HH + + + h:mm a–h:mm a + h:mm–h:mm a + h:mm–h:mm a + + + HH:mm–HH:mm + HH:mm–HH:mm + + + h:mm a–h:mm a v + h:mm–h:mm a v + h:mm–h:mm a v + + + HH:mm–HH:mm v + HH:mm–HH:mm v + + + h a–h a v + h–h a v + + + HH–HH v + + + MM–MM + + + dd.MM–dd.MM + dd.MM–dd.MM + + + E dd.MM–E dd.MM + E dd.MM–E dd.MM + + + MMM–MMM + + + d.–d. MMM + d. MMM–d. MMM + + + E d. MMM–E d. MMM + E d. MMM–E d. MMM + + + y–y + + + MM.y–MM.y + MM.y–MM.y + + + dd.MM.y–dd.MM.y + dd.MM.y–dd.MM.y + dd.MM.y–dd.MM.y + + + E dd.MM.y–E dd.MM.y + E dd.MM.y–E dd.MM.y + E dd.MM.y–E dd.MM.y + + + MMM–MMM y + MMM y–MMM y + + + d.–d. MMM y + dd. MMM–dd. MMM y + dd. MMM y–dd. MMM y + + + E dd. MMM–E dd. MMM y + E dd. MMM–E dd. MMM y + E dd. MMM y–E dd. MMM y + + + MMMM–MMMM y + MMMM y–MMMM y + + + + + + + + tíðarrokning + + + ár + í fjør + í ár + næsta ár + + um {0} ár + um {0} ár + + + {0} ár síðan + {0} ár síðan + + + + ár + + um {0} ár + um {0} ár + + + {0} ár síðan + {0} ár síðan + + + + ár + + um {0} ár + um {0} ár + + + {0} ár síðan + {0} ár síðan + + + + ársfjórðingur + + um {0} ársfjórðing + um {0} ársfjórðingar + + + {0} ársfjórðing síðan + {0} ársfjórðingar síðan + + + + ársfj. + + um {0} ársfj. + um {0} ársfj. + + + {0} ársfj. síðan + {0} ársfj. síðan + + + + ársfj. + + um {0} ársfj. + um {0} ársfj. + + + {0} ársfj. síðan + {0} ársfj. síðan + + + + mánaður + seinasta mánað + henda mánaðin + næsta mánað + + um {0} mánað + um {0} mánaðir + + + {0} mánað síðan + {0} mánaðir síðan + + + + mnð. + + um {0} mnð. + um {0} mnð. + + + {0} mnð. síðan + {0} mnð. síðan + + + + mnð. + + um {0} mnð. + um {0} mnð. + + + {0} mnð. síðan + {0} mnð. síðan + + + + vika + seinastu viku + hesu viku + næstu viku + + um {0} viku + um {0} vikur + + + {0} vika síðan + {0} vikur síðan + + + + vi. + + um {0} vi. + um {0} vi. + + + {0} vi. síðan + {0} vi. síðan + + + + v. + + um {0} v. + um {0} v. + + + {0} v. síðan + {0} v. síðan + + + + dagur + fyrradagin + í gjár + í dag + í morgin + í ovurmorgin + + um {0} dag + um {0} dagar + + + {0} dagur síðan + {0} dagar síðan + + + + da. + + um {0} da. + um {0} da. + + + {0} da. síðan + {0} da. síðan + + + + d. + + um {0} d. + um {0} d. + + + {0} d. síðan + {0} d. síðan + + + + gerandisdagur + + + seinasta sunnudag + næsta sunnudag + sunnudagin í næstu viku + + + seinasta sun. + næsta sun. + sun. í næstu viku + + + seinasta su. + næsta su. + su. í næstu viku + + + seinasta mánadag + næsta mánadag + mánadagin í næstu viku + + + seinasta mán. + næsta mán. + mán. í næstu viku + + + seinasta má. + næsta má. + má. í næstu viku + + + seinasta týsdag + næsta týsdag + týsdagin í næstu viku + + + seinasta týs. + næsta týs. + týs. í næstu viku + + + seinasta tý. + næsta tý. + tý. í næstu viku + + + seinasta mikudag + næsta mikudag + mikudagin í næstu viku + + + seinasta mik. + næsta mik. + mik. í næstu viku + + + seinasta mi. + næsta mi. + mi. í næstu viku + + + seinasta hósdag + næsta hósdag + hósdagin í næstu viku + + + seinasta hós. + næsta hós. + hós. í næstu viku + + + seinasta hó. + næsta hó. + hó. í næstu viku + + + seinasta fríggjadag + næsta fríggjadag + fríggjadagin í næstu viku + + + seinasta frí. + næsta frí. + frí. í næstu viku + + + seinasta fr. + næsta fr. + fr. í næstu viku + + + seinasta leygardag + næsta leygardag + leygardagin í næstu viku + + + seinasta ley. + næsta ley. + ley. í næstu viku + + + seinasta le. + næsta le. + le. í næstu viku + + + AM/PM + + + tími + + um {0} tíma + um {0} tímar + + + {0} tími síðan + {0} tímar síðan + + + + t. + + um {0} t. + um {0} t. + + + {0} t. síðan + {0} t. síðan + + + + t. + + um {0} t. + um {0} t. + + + {0} t. síðan + {0} t. síðan + + + + minuttur + + um {0} minutt + um {0} minuttir + + + {0} minutt síðan + {0} minuttir síðan + + + + min. + + um {0} min. + um {0} min. + + + {0} min. síðan + {0} min. síðan + + + + m. + + um {0} m. + um {0} m. + + + {0} m. síðan + {0} m. síðan + + + + sekund + + um {0} sekund + um {0} sekund + + + {0} sekund síðan + {0} sekund síðan + + + + sek. + + um {0} sek. + um {0} sek. + + + {0} sek. síðan + {0} sek. síðan + + + + s. + + um {0} s. + um {0} s. + + + {0} s. síðan + {0} s. síðan + + + + tíðarøki + + + + +HH:mm;-HH:mm + GMT{0} + GMT + {0} tíð + {0} summartíð + {0} vanlig tíð + {1} ({0}) + + ókendur býur + + + Andorra + + + Dubai + + + Kabul + + + Antigua + + + Anguilla + + + Tirane + + + Yerevan + + + Luanda + + + Rothera + + + Palmer + + + Troll + + + Syowa + + + Mawson + + + Davis + + + Vostok + + + Casey + + + Dumont d’Urville + + + McMurdo + + + Rio Gallegos + + + Mendoza + + + San Juan + + + Ushuaia + + + La Rioja + + + San Luis + + + Catamarca + + + Salta + + + Jujuy + + + Tucuman + + + Cordoba + + + Buenos Aires + + + Pago Pago + + + Wien + + + Perth + + + Eucla + + + Darwin + + + Adelaide + + + Broken Hill + + + Currie + + + Melbourne + + + Hobart + + + Lindeman + + + Sydney + + + Brisbane + + + Macquarie + + + Lord Howe + + + Aruba + + + Mariehamn + + + Baku + + + Sarajevo + + + Barbados + + + Dhaka + + + Bruxelles + + + Ouagadougou + + + Sofia + + + Barein + + + Bujumbura + + + Porto-Novo + + + St-Barthélemy + + + Bermuda + + + Brunei + + + La Paz + + + Kralendijk + + + Eirunepe + + + Rio Branco + + + Porto Velho + + + Boa Vista + + + Manaus + + + Cuiaba + + + Santarem + + + Campo Grande + + + Belem + + + Araguaina + + + Sao Paulo + + + Bahia + + + Fortaleza + + + Maceio + + + Recife + + + Noronha + + + Nassau + + + Thimphu + + + Gaborone + + + Minsk + + + Belis + + + Dawson + + + Whitehorse + + + Inuvik + + + Vancouver + + + Dawson Creek + + + Creston + + + Yellowknife + + + Edmonton + + + Swift Current + + + Cambridge Bay + + + Regina + + + Winnipeg + + + Resolute + + + Rainy River + + + Rankin Inlet + + + Atikokan + + + Thunder Bay + + + Nipigon + + + Toronto + + + Iqaluit + + + Pangnirtung + + + Moncton + + + Halifax + + + Goose Bay + + + Glace Bay + + + Blanc-Sablon + + + St. John’s + + + Cocos + + + Kinshasa + + + Lubumbashi + + + Bangui + + + Brazzaville + + + Zürich + + + Abidjan + + + Rarotonga + + + Easter + + + Santiago + + + Douala + + + Urumqi + + + Shanghai + + + Bogota + + + Kosta Rika + + + Havana + + + Grønhøvdaoyggjar + + + Curaçao + + + Christmas + + + Nicosia + + + Prag + + + Busingen + + + Berlin + + + Djibuti + + + Keypmannahavn + + + Dominica + + + Santo Domingo + + + Algiers + + + Galapagos + + + Guayaquil + + + Tallinn + + + Cairo + + + El Aaiun + + + Asmara + + + Canary + + + Ceuta + + + Madrid + + + Addis Ababa + + + Helsinki + + + Fiji + + + Stanley + + + Chuuk + + + Pohnpei + + + Kosrae + + + Føroyar + + + Paris + + + Libreville + + + + Stóra Bretland summartíð + + London + + + Grenada + + + Tbilisi + + + Cayenne + + + Guernsey + + + Accra + + + Gibraltar + + + Thule + + + Nuuk + + + Ittoqqortoormiit + + + Danmarkshavn + + + Banjul + + + Conakry + + + Guadeloupe + + + Malabo + + + Aten + + + Suðurgeorgiaoyggjar + + + Guatemala + + + Guam + + + Bissau + + + Guyana + + + Hong Kong + + + Tegucigalpa + + + Zagreb + + + Port-au-Prince + + + Budapest + + + Jakarta + + + Pontianak + + + Makassar + + + Jayapura + + + + Írsk vanlig tíð + + Dublin + + + Jerusalem + + + Isle of Man + + + Kolkata + + + Chagos + + + Baghdad + + + Teheran + + + Reykjavík + + + Rom + + + Jersey + + + Jamaika + + + Amman + + + Tokyo + + + Nairobi + + + Bishkek + + + Phnom Penh + + + Enderbury + + + Kiritimati + + + Tarawa + + + Comoro + + + St. Kitts + + + Pyongyang + + + Seoul + + + Kuvait + + + Cayman + + + Aqtau + + + Oral + + + Aqtobe + + + Qyzylorda + + + Almaty + + + Vientiane + + + Beirut + + + St. Lucia + + + Vaduz + + + Colombo + + + Monrovia + + + Maseru + + + Vilnius + + + Luksemborg + + + Riga + + + Tripoli + + + Casablanca + + + Monako + + + Chisinau + + + Podgorica + + + Marigot + + + Antananarivo + + + Kwajalein + + + Majuro + + + Skopje + + + Bamako + + + Rangoon + + + Hovd + + + Ulaanbaatar + + + Choibalsan + + + Makao + + + Saipan + + + Martinique + + + Nouakchott + + + Montserrat + + + Malta + + + Móritius + + + Maldivoyggjar + + + Blantyre + + + Tijuana + + + Santa Isabel + + + Hermosillo + + + Mazatlan + + + Chihuahua + + + Bahia Banderas + + + Ojinaga + + + Monterrey + + + Mexico City + + + Matamoros + + + Merida + + + Cancun + + + Kuala Lumpur + + + Kuching + + + Maputo + + + Windhoek + + + Noumea + + + Niamey + + + Norfolk + + + Lagos + + + Managua + + + Amsterdam + + + Oslo + + + Kathmandu + + + Nauru + + + Niue + + + Chatham + + + Auckland + + + Muscat + + + Panama + + + Lima + + + Tahiti + + + Marquesas + + + Gambier + + + Port Moresby + + + Bougainville + + + Manila + + + Karachi + + + Varsjava + + + Miquelon + + + Pitcairn + + + Puerto Riko + + + Gasa + + + Hebron + + + Azorurnar + + + Madeira + + + Lissabon + + + Palau + + + Asunción + + + Qatar + + + Réunion + + + Bukarest + + + Beograd + + + Kaliningrad + + + Simferopol + + + Moskva + + + Volgograd + + + Samara + + + Yekaterinburg + + + Omsk + + + Novosibirsk + + + Novokuznetsk + + + Krasnoyarsk + + + Irkutsk + + + Chita + + + Yakutsk + + + Vladivostok + + + Khandyga + + + Sakhalin + + + Ust-Nera + + + Magadan + + + Srednekolymsk + + + Kamchatka + + + Anadyr + + + Kigali + + + Riyadh + + + Guadalcanal + + + Mahe + + + Khartoum + + + Stokkhólm + + + Singapor + + + St. Helena + + + Ljubljana + + + Longyearbyen + + + Bratislava + + + Freetown + + + San Marino + + + Dakar + + + Mogadishu + + + Paramaribo + + + Juba + + + Sao Tome + + + El Salvador + + + Lower Prince’s Quarter + + + Damascus + + + Mbabane + + + Grand Turk + + + Ndjamena + + + Kerguelen + + + Lome + + + Bangkok + + + Dushanbe + + + Fakaofo + + + Dili + + + Ashgabat + + + Tunis + + + Tongatapu + + + Istanbul + + + Port of Spain + + + Funafuti + + + Taipei + + + Dar es Salaam + + + Uzhgorod + + + Kiev + + + Zaporozhye + + + Kampala + + + Midway + + + Johnston + + + Wake + + + Adak + + + Nome + + + Honolulu + + + Anchorage + + + Yakutat + + + Sitka + + + Juneau + + + Metlakatla + + + Los Angeles + + + Boise + + + Phoenix + + + Denver + + + Beulah, North Dakota + + + New Salem, North Dakota + + + Center, North Dakota + + + Chicago + + + Menominee + + + Vincennes, Indiana + + + Petersburg, Indiana + + + Tell City, Indiana + + + Knox, Indiana + + + Winamac, Indiana + + + Marengo, Indiana + + + Indianapolis + + + Louisville + + + Vevay, Indiana + + + Monticello, Kentucky + + + Detroit + + + New York + + + Montevideo + + + Samarkand + + + Tashkent + + + Vatikanið + + + St. Vincent + + + Caracas + + + Tortola + + + St. Thomas + + + Ho Chi Minh + + + Efate + + + Wallis + + + Apia + + + Aden + + + Mayotte + + + Johannesburg + + + Lusaka + + + Harare + + + + Afganistan tíð + + + + + Miðafrika tíð + + + + + Eysturafrika tíð + + + + + Suðurafrika vanlig tíð + + + + + Vesturafrika tíð + Vesturafrika vanlig tíð + Vesturafrika summartíð + + + + + Alaska tíð + Alaska vanlig tíð + Alaska summartíð + + + + + Amasona tíð + Amasona vanlig tíð + Amasona summartíð + + + + + Central tíð + Central vanlig tíð + Central summartíð + + + + + Eastern tíð + Eastern vanlig tíð + Eastern summartíð + + + + + Mountain tíð + Mountain vanlig tíð + Mountain summartíð + + + + + Pacific tíð + Pacific vanlig tíð + Pacific summartíð + + + + + Apia tíð + Apia vanlig tíð + Apia summartíð + + + + + Arabisk tíð + Arabisk vanlig tíð + Arabisk summartíð + + + + + Argentina tíð + Argentina vanlig tíð + Argentina summartíð + + + + + Vestur Argentina tíð + Vestur Argentina vanlig tíð + Vestur Argentina summartíð + + + + + Armenia tíð + Armenia vanlig tíð + Armenia summartíð + + + + + Atlantic tíð + Atlantic vanlig tíð + Atlantic summartíð + + + + + mið Avstralia tíð + mið Avstralia vanlig tíð + mið Avstralia summartíð + + + + + miðvestur Avstralia tíð + miðvestur Avstralia vanlig tíð + miðvestur Avstralia summartíð + + + + + eystur Avstralia tíð + eystur Avstralia vanlig tíð + eystur Avstralia summartíð + + + + + vestur Avstralia tíð + vestur Avstralia vanlig tíð + vestur Avstralia summartíð + + + + + Aserbadjan tíð + Aserbadjan vanlig tíð + Aserbadjan summartíð + + + + + Azorurnar tíð + Azorurnar vanlig tíð + Azorurnar summartíð + + + + + Bangladesj tíð + Bangladesj vanlig tíð + Bangladesj summartíð + + + + + Butan tíð + + + + + Bolivia tíð + + + + + Brasilia tíð + Brasilia vanlig tíð + Brasilia summartíð + + + + + Brunei Darussalam tíð + + + + + Grønhøvdaoyggjar tíð + Grønhøvdaoyggjar vanlig tíð + Grønhøvdaoyggjar summartíð + + + + + Chamorro vanlig tíð + + + + + Chatham tíð + Chatham vanlig tíð + Chatham summartíð + + + + + Kili tíð + Kili vanlig tíð + Kili summartíð + + + + + Kina tíð + Kina vanlig tíð + Kina summartíð + + + + + Choibalsan tíð + Choibalsan vanlig tíð + Choibalsan summartíð + + + + + Jólaoyggj tíð + + + + + Kokosoyggjar tíð + + + + + Kolombia tíð + Kolombia vanlig tíð + Kolombia summartíð + + + + + Cooksoyggjar tíð + Cooksoyggjar vanlig tíð + Cooksoyggjar summartíð + + + + + Cuba tíð + Cuba vanlig tíð + Cuba summartíð + + + + + Davis tíð + + + + + Dumont-d’Urville tíð + + + + + Eysturtimor tíð + + + + + Páskaoyggin tíð + Páskaoyggin vanlig tíð + Páskaoyggin summartíð + + + + + Ekvador tíð + + + + + Miðevropa tíð + Miðevropa vanlig tíð + Miðevropa summartíð + + + + + Eysturevropa tíð + Eysturevropa vanlig tíð + Eysturevropa summartíð + + + + + longri Eysturevropa tíð + + + + + Vesturevropa tíð + Vesturevropa vanlig tíð + Vesturevropa summartíð + + + + + Falklandsoyggjar tíð + Falklandsoyggjar vanlig tíð + Falklandsoyggjar summartíð + + + + + Fiji tíð + Fiji vanlig tíð + Fiji summartíð + + + + + Franska Gujana tíð + + + + + Fronsku sunnaru landaøki og Antarktis tíð + + + + + Galapagos tíð + + + + + Gambier tíð + + + + + Georgia tíð + Georgia vanlig tíð + Georgia summartíð + + + + + Gilbertoyggjar tíð + + + + + Greenwich Mean tíð + + + + + Eystur grønlendsk tíð + Eystur grønlendsk vanlig tíð + Eystur grønlendsk summartíð + + + + + Vestur grønlendsk tíð + Vestur grønlendsk vanlig tíð + Vestur grønlendsk summartíð + + + + + Gulf vanlig tíð + + + + + Gujana tíð + + + + + Hawaii-Aleutian tíð + Hawaii-Aleutian vanlig tíð + Hawaii-Aleutian summartíð + + + + + Hong Kong tíð + Hong Kong vanlig tíð + Hong Kong summartíð + + + + + Hovd tíð + Hovd vanlig tíð + Hovd summartíð + + + + + India tíð + + + + + Indiahav tíð + + + + + Indokina tíð + + + + + Mið Indonesia tíð + + + + + Eystur Indonesia tíð + + + + + Vestur Indonesia tíð + + + + + Iran tíð + Iran vanlig tíð + Iran summartíð + + + + + Irkutsk tíð + Irkutsk vanlig tíð + Irkutsk summartíð + + + + + Ísrael tíð + Ísrael vanlig tíð + Ísrael summartíð + + + + + Japan tíð + Japan vanlig tíð + Japan summartíð + + + + + Eystur Kasakstan tíð + + + + + Vestur Kasakstan tíð + + + + + Korea tíð + Korea vanlig tíð + Korea summartíð + + + + + Kosrae tíð + + + + + Krasnoyarsk tíð + Krasnoyarsk vanlig tíð + Krasnoyarsk summartíð + + + + + Kirgisia tíð + + + + + Lineoyggjar tíð + + + + + Lord Howe tíð + Lord Howe vanlig tíð + Lord Howe summartíð + + + + + Macquariesoyggj tíð + + + + + Magadan tíð + Magadan vanlig tíð + Magadan summartíð + + + + + Malaisia tíð + + + + + Maldivoyggjar tíð + + + + + Marquesas tíð + + + + + Marshalloyggjar tíð + + + + + Móritius tíð + Móritius vanlig tíð + Móritius summartíð + + + + + Mawson tíð + + + + + Northwest Mexico tíð + Northwest Mexico vanlig tíð + Northwest Mexico summartíð + + + + + Mexican Pacific tíð + Mexican Pacific vanlig tíð + Mexican Pacific summartíð + + + + + Ulan Bator tíð + Ulan Bator vanlig tíð + Ulan Bator summartíð + + + + + Moskva tíð + Moskva vanlig tíð + Moskva summartíð + + + + + Myanmar (Burma) tíð + + + + + Nauru tíð + + + + + Nepal tíð + + + + + Nýkaledónia tíð + Nýkaledónia vanlig tíð + Nýkaledónia summartíð + + + + + Nýsæland tíð + Nýsæland vanlig tíð + Nýsæland summartíð + + + + + Newfoundland tíð + Newfoundland vanlig tíð + Newfoundland summartíð + + + + + Niue tíð + + + + + Norfolksoyggj tíð + + + + + Fernando de Noronha tíð + Fernando de Noronha vanlig tíð + Fernando de Noronha summartíð + + + + + Novosibirsk tíð + Novosibirsk vanlig tíð + Novosibirsk summartíð + + + + + Omsk tíð + Omsk vanlig tíð + Omsk summartíð + + + + + Pakistan tíð + Pakistan vanlig tíð + Pakistan summartíð + + + + + Palau tíð + + + + + Papua Nýguinea tíð + + + + + Paraguai tíð + Paraguai vanlig tíð + Paraguai summartíð + + + + + Peru tíð + Peru vanlig tíð + Peru summartíð + + + + + Filipsoyggjar tíð + Filipsoyggjar vanlig tíð + Filipsoyggjar summartíð + + + + + Phoenixoyggjar tíð + + + + + St. Pierre & Miquelon tíð + St. Pierre & Miquelon vanlig tíð + St. Pierre & Miquelon summartíð + + + + + Pitcairnoyggjar tíð + + + + + Ponape tíð + + + + + Réunion tíð + + + + + Rothera tíð + + + + + Sakhalin tíð + Sakhalin vanlig tíð + Sakhalin summartíð + + + + + Samoa tíð + Samoa vanlig tíð + Samoa summartíð + + + + + Seyskelloyggjar tíð + + + + + Singapor tíð + + + + + Salomonoyggjar tíð + + + + + Suðurgeorgiaoyggjar tíð + + + + + Surinam tíð + + + + + Syowa tíð + + + + + Tahiti tíð + + + + + Taipei tíð + Taipei vanlig tíð + Taipei summartíð + + + + + Tadsjikistan tíð + + + + + Tokelau tíð + + + + + Tonga tíð + Tonga vanlig tíð + Tonga summartíð + + + + + Chuuk tíð + + + + + Turkmenistan tíð + Turkmenistan vanlig tíð + Turkmenistan summartíð + + + + + Tuvalu tíð + + + + + Uruguai tíð + Uruguai vanlig tíð + Uruguai summartíð + + + + + Usbekistan tíð + Usbekistan vanlig tíð + Usbekistan summartíð + + + + + Vanuatu tíð + Vanuatu vanlig tíð + Vanuatu summartíð + + + + + Venesuela tíð + + + + + Vladivostok tíð + Vladivostok vanlig tíð + Vladivostok summartíð + + + + + Volgograd tíð + Volgograd vanlig tíð + Volgograd summartíð + + + + + Vostok tíð + + + + + Wakeoyggj tíð + + + + + Wallis- og Futunaoyggjar tíð + + + + + Yakutsk tíð + Yakutsk vanlig tíð + Yakutsk summartíð + + + + + Yekaterinburg tíð + Yekaterinburg vanlig tíð + Yekaterinburg summartíð + + + + + + latn + + latn + + 1 + + , + . + ; + % + + + + E + × + + + NaN + : + + + + + #,##0.### + + + + + 0 túsund + 0 túsund + 00 túsund + 00 túsund + 000 túsund + 000 túsund + 0 millión + 0 milliónir + 00 milliónir + 00 milliónir + 000 milliónir + 000 milliónir + 0 milliard + 0 milliardir + 00 milliardir + 00 milliardir + 000 milliardir + 000 milliardir + 0 billión + 0 billiónir + 00 billiónir + 00 billiónir + 000 billiónir + 000 billiónir + + + + + 0 tús'.' + 0 tús'.' + 00 tús'.' + 00 tús'.' + 000 tús'.' + 000 tús'.' + 0 mió'.' + 0 mió'.' + 00 mió'.' + 00 mió'.' + 000 mió'.' + 000 mió'.' + 0 mia'.' + 0 mia'.' + 00 mia'.' + 00 mia'.' + 000 mia'.' + 000 mia'.' + 0 bió'.' + 0 bió'.' + 00 bió'.' + 00 bió'.' + 000 bió'.' + 000 bió'.' + + + + + + + #E0 + + + + + + + #,##0 % + + + + + + + #,##0.00 ¤ + + + #,##0.00 ¤;(#,##0.00 ¤) + + + + + 0 tús'.' ¤ + 0 tús'.' ¤ + 00 tús'.' ¤ + 00 tús'.' ¤ + 000 tús'.' ¤ + 000 tús'.' ¤ + 0 mió'.' ¤ + 0 mió'.' ¤ + 00 mió'.' ¤ + 00 mió'.' ¤ + 000 mió'.' ¤ + 000 mió'.' ¤ + 0 mia'.' ¤ + 0 mia'.' ¤ + 00 mia'.' ¤ + 00 mia'.' ¤ + 000 mia'.' ¤ + 000 mia'.' ¤ + 0 bió'.' ¤ + 0 bió'.' ¤ + 00 bió'.' ¤ + 00 bió'.' ¤ + 000 bió'.' ¤ + 000 bió'.' ¤ + + + {0} {1} + {0} {1} + + + + Sameindu Emirríkini dirham + Sameindu Emirríkini dirham + Sameindu Emirríkini dirham + AED + + + Afganistan afghani + Afganistan afghani + Afganistan afghani + AFN + + + Albania lek + Albania lek + Albania lek + ALL + + + Armenia dram + Armenia dram + Armenia dram + AMD + + + Niðurlonds Karibia gyllin + Niðurlonds Karibia gyllin + Niðurlonds Karibia gyllin + ANG + + + Angola kwanza + Angola kwanza + Angola kwanza + AOA + Kz + + + Argentina peso + Argentina peso + Argentina peso + ARS + $ + + + Avstralskur dollari + Avstralskur dollari + Avstralskir dollarar + A$ + $ + + + Aruba florin + Aruba florin + Aruba florin + AWG + + + Aserbadjan manat + Aserbadjan manat + Aserbadjan manat + AZN + + + Bosnia-Hersegovina mark (kann vekslast) + Bosnia-Hersegovina mark (kann vekslast) + Bosnia-Hersegovina mark (kann vekslast) + BAM + KM + + + Barbados dollari + Barbados dollari + Barbados dollarar + BBD + $ + + + Bangladesj taka + Bangladesj taka + Bangladesj taka + BDT + + + + Bulgaria lev + Bulgaria lev + Bulgaria lev + BGN + + + Barein dinar + Barein dinar + Barein dinar + BHD + + + Burundi frankur + Burundi frankur + Burundi frankar + BIF + + + Bermuda dollari + Bermuda dollari + Bermuda dollarar + BMD + $ + + + Brunei dollari + Brunei dollari + Brunei dollarar + BND + $ + + + Bolivia boliviano + Bolivia boliviano + Bolivia boliviano + BOB + Bs + + + Brasilianskur real + Brasilianskur real + Brasilianskir real + R$ + R$ + + + Bahamaoyggjar dollari + Bahamaoyggjar dollari + Bahamaoyggjar dollarar + BSD + $ + + + Butan ngultrum + Butan ngultrum + Butan ngultrum + BTN + + + Botsvana pula + Botsvana pula + Botsvana pula + BWP + P + + + Hvítarussland ruble + Hvítarussland ruble + Hvítarussland ruble + BYR + р. + + + Belis dollari + Belis dollari + Belis dollarar + BZD + $ + + + Kanada dollari + Kanada dollari + Kanada dollarar + CA$ + $ + + + Kongo frankur + Kongo frankur + Kongo frankar + CDF + + + sveisiskur frankur + sveisiskur frankur + sveisiskir frankar + CHF + + + Kili peso + Kili peso + Kili peso + CLP + $ + + + kinesiskur yuan + kinesiskur yuan + kinesiskir yuan + CN¥ + ¥ + + + Kolombia peso + Kolombia peso + Kolombia peso + COP + $ + + + Kosta Rika colón + Kosta Rika colón + Kosta Rika colón + CRC + + + + Kuba peso (sum kann vekslast) + Kuba peso (sum kann vekslast) + Kuba peso (sum kann vekslast) + CUC + $ + + + Kuba peso + Kuba peso + Kuba peso + CUP + $ + + + Grønhøvdaoyggjar escudo + Grønhøvdaoyggjar escudo + Grønhøvdaoyggjar escudo + CVE + + + Kekkia koruna + Kekkia koruna + Kekkia koruna + CZK + + + + Djibuti frankur + Djibuti frankur + Djibuti frankar + DJF + + + donsk króna + donsk króna + danskar krónur + kr + kr + + + Dominika peso + Dominika peso + Dominika peso + DOP + $ + + + Algeria dinar + Algeria dinar + Algeria dinar + DZD + + + Egyptaland pund + Egyptaland pund + Egyptaland pund + EGP + + + + Eritrea nakfa + Eritrea nakfa + Eritrea nakfa + ERN + + + Etiopia birr + Etiopia birr + Etiopia birr + ETB + + + Evra + evra + evrur + + + + + Fiji dollari + Fiji dollari + Fiji dollarar + FJD + $ + + + Falklandsoyggjar pund + Falklandsoyggjar pund + Falklandsoyggjar pund + FKP + £ + + + bretsk pund + bretsk pund + bretsk pund + £ + £ + + + Georgia lari + Georgia lari + Georgia lari + GEL + + + Gana cedi + Gana cedi + Gana cedi + GHS + + + Gibraltar pund + Gibraltar pund + Gibraltar pund + GIP + £ + + + Gambia dalasi + Gambia dalasi + Gambia dalasi + GMD + + + Guinea frankur + Guinea frankur + Guinea frankar + GNF + FG + + + Guatemala quetzal + Guatemala quetzal + Guatemala quetzal + GTQ + Q + + + Gujana dollari + Gujana dollari + Gujana dollarar + GYD + $ + + + Hong Kong dollari + Hong Kong dollari + Hong Kong dollarar + HK$ + $ + + + Honduras lempira + Honduras lempira + Honduras lempira + HNL + L + + + Kroatia kuna + Kroatia kuna + Kroatia kuna + HRK + kn + + + Haiti gourde + Haiti gourde + Haiti gourde + HTG + + + Ungarn forint + Ungarn forint + Ungarn forint + HUF + Ft + + + Indonesia rupiah + Indonesia rupiah + Indonesia rupiah + IDR + Rp + + + Ísrael new sheqel + Ísrael new sheqel + Ísrael new sheqel + + + + + indiskir rupis + indiskur rupi + indiskir rupis + + + + + Irak dinar + Irak dinar + Irak dinar + IQD + + + iranskir rials + iranskur rial + iranskir rials + IRR + + + íslendsk króna + íslendsk króna + íslendskar krónur + ISK + kr + + + Jamaika dollari + Jamaika dollari + Jamaika dollarar + JMD + $ + + + Jordan dinar + Jordan dinar + Jordan dinar + JOD + + + japanskur yen + japanskur yen + japanskir yen + JP¥ + ¥ + + + kenjanskur skillingur + kenjanskur skillingur + kenjanskir skillingar + KES + + + Kirgisia som + Kirgisia som + Kirgisia som + KGS + + + Kambodja riel + Kambodja riel + Kambodja riel + KHR + + + + Komoroyggjar frankur + Komoroyggjar frankur + Komoroyggjar frankar + KMF + CF + + + Norðurkorea won + Norðurkorea won + Norðurkorea won + KPW + + + + Suðurkorea won + Suðurkorea won + Suðurkorea won + + + + + Kuvait dinar + Kuvait dinar + Kuvait dinar + KWD + + + Caymanoyggjar dollari + Caymanoyggjar dollari + Caymanoyggjar dollarar + KYD + $ + + + Kasakstan tenge + Kasakstan tenge + Kasakstan tenge + KZT + + + + Laos kip + Laos kip + Laos kip + LAK + + + + Libanon pund + Libanon pund + Libanon pund + LBP + + + + Sri Lanka rupi + Sri Lanka rupi + Sri Lanka rupis + LKR + Rs + + + Liberia dollari + Liberia dollari + Liberia dollarar + LRD + $ + + + Libya dinar + Libya dinar + Libya dinar + LYD + + + Marokko dirham + Marokko dirham + Marokko dirham + MAD + + + Moldova leu + Moldova leu + Moldova leu + MDL + + + Madagaskar ariary + Madagaskar ariary + Madagaskar ariary + MGA + Ar + + + Makedónia denar + Makedónia denar + Makedónia denar + MKD + + + Myanmar (Burma) kyat + Myanmar (Burma) kyat + Myanmar (Burma) kyat + MMK + K + + + Mongolia tugrik + Mongolia tugrik + Mongolia tugrik + MNT + + + + Makao pataca + Makao pataca + Makao pataca + MOP + + + Móritania ouguiya + Móritania ouguiya + Móritania ouguiya + MRO + + + Móritius rupi + Móritius rupi + Móritius rupi + MUR + Rs + + + Maldivoyggjar rufiyaa + Maldivoyggjar rufiyaa + Maldivoyggjar rufiyaa + MVR + + + Malavi kwacha + Malavi kwacha + Malavi kwacha + MWK + + + Meksiko peso + Meksiko peso + Meksiko peso + MX$ + $ + + + Malaisia ringgit + Malaisia ringgit + Malaisia ringgit + MYR + RM + + + Mosambik metical + Mosambik metical + Mosambik metical + MZN + + + Namibia dollari + Namibia dollari + Namibia dollarar + NAD + $ + + + Nigeria naira + Nigeria naira + Nigeria naira + NGN + + + + Nikaragua córdoba + Nikaragua córdoba + Nikaragua córdoba + NIO + C$ + + + norsk króna + norsk króna + norskar krónur + NOK + kr + + + Nepal rupi + Nepal rupi + Nepal rupis + NPR + Rs + + + Nýsæland dollari + Nýsæland dollari + Nýsæland dollarar + NZ$ + $ + + + Oman rial + Oman rial + Oman rial + OMR + + + Panama balboa + Panama balboa + Panama balboa + PAB + + + Peru nuevo sol + Peru nuevo sol + Peru nuevo sol + PEN + + + Papua Nýguinea kina + Papua Nýguinea kina + Papua Nýguinea kina + PGK + + + Filipsoyggjar peso + Filipsoyggjar peso + Filipsoyggjar peso + PHP + + + + Pakistan rupi + Pakistan rupi + Pakistan rupis + PKR + Rs + + + Pólland zloty + Pólland zloty + Pólland zloty + PLN + + + + Paraguai guarani + Paraguai guarani + Paraguai guarani + PYG + + + + Katar rial + Katar rial + Katar rial + QAR + + + Rumenia leu + Rumenia leu + Rumenia leu + RON + + + Serbia dinar + Serbia dinar + Serbia dinar + RSD + + + Russland ruble + Russland ruble + Russland ruble + RUB + + + + Ruanda frankur + Ruanda frankur + Ruanda frankar + RWF + RF + + + Saudiarabia riyal + Saudiarabia riyal + Saudiarabia riyal + SAR + + + Salomonoyggjar dollari + Salomonoyggjar dollari + Salomonoyggjar dollarar + SBD + $ + + + Seyskelloyggjar rupi + Seyskelloyggjar rupi + Seyskelloyggjar rupi + SCR + + + Sudan pund + Sudan pund + Sudan pund + SDG + + + svensk króna + svensk króna + svenskar krónur + SEK + kr + + + Singapor dollari + Singapor dollari + Singapor dollarar + SGD + $ + + + St. Helena pund + St. Helena pund + St. Helena pund + SHP + £ + + + Sierra Leona leone + Sierra Leona leone + Sierra Leona leone + SLL + + + Somalia skillingur + Somalia skillingur + Somalia skillingar + SOS + + + Surinam dollari + Surinam dollari + Surinam dollarar + SRD + $ + + + Suðursudan pund + Suðursudan pund + Suðursudan pund + SSP + £ + + + Sao Tome & Prinsipi dobra + Sao Tome & Prinsipi dobra + Sao Tome & Prinsipi dobra + STD + Db + + + Sýria pund + Sýria pund + Sýria pund + SYP + £ + + + Svasiland lilangeni + Svasiland lilangeni + Svasiland lilangeni + SZL + + + Tailand baht + Tailand baht + Tailand baht + THB + ฿ + + + Tadsjikistan somoni + Tadsjikistan somoni + Tadsjikistan somoni + TJS + + + Turkmenistan manat + Turkmenistan manat + Turkmenistan manat + TMT + + + Tunesia dinar + Tunesia dinar + Tunesia dinar + TND + + + Tonga paʻanga + Tonga paʻanga + Tonga paʻanga + TOP + T$ + + + Turkaland liri + Turkaland liri + Turkaland lirir + TRY + + TL + + + Trinidad & Tobago dollari + Trinidad & Tobago dollari + Trinidad & Tobago dollarar + TTD + $ + + + Taivan new dollari + Taivan new dollari + Taivan new dollarar + NT$ + $ + + + Tansania skillingur + Tansania skillingur + Tansania skillingar + TZS + + + Ukraina hryvnia + Ukraina hryvnia + Ukraina hryvnia + UAH + + + + Uganda skillingur + Uganda skillingur + Uganda skillingar + UGX + + + US dollari + US dollari + US dollarar + US$ + $ + + + Uruguai peso + Uruguai peso + Uruguai peso + UYU + $ + + + Usbekistan som + Usbekistan som + Usbekistan som + UZS + + + Venesuela bolívar + Venesuela bolívar + Venesuela bolívar + VEF + Bs + + + Vjetnam dong + Vjetnam dong + Vjetnam dong + + + + + Vanuatu vatu + Vanuatu vatu + Vanuatu vatu + VUV + + + Samoa tala + Samoa tala + Samoa tala + WST + + + Miðafrika CFA frankur + Miðafrika CFA frankur + Miðafrika CFA frankar + FCFA + + + unse sølv + unse sølv + unse sølv + + + unse guld + unse guld + unse guld + + + Eystur Karibia dollari + Eystur Karibia dollari + Eystur Karibia dollarar + EC$ + $ + + + Vesturafrika CFA frankur + Vesturafrika CFA frankur + Vesturafrika CFA frankar + CFA + + + unse palladium + unse palladium + unse palladium + + + CFP frankur + CFP frankur + CFP frankar + CFPF + + + unse platin + unse platin + unse platin + + + ókent gjaldoyra + (ókent gjaldoyra) + (ókent gjaldoyra) + + + Jemen rial + Jemen rial + Jemen rial + YER + + + Suðurafrika rand + Suðurafrika rand + Suðurafrika rand + ZAR + R + + + Sambia kwacha + Sambia kwacha + Sambia kwacha + ZMW + ZK + + + + {0} ella meira + {0}–{1} + + + + + + {0} á {1} + + + G-kreftir + {0} G-kraft + {0} G-kreftir + + + metrar um sekundi² + {0} metur um sekundi² + {0} metrar um sekundi² + + + snúningar + {0} snúningur + {0} snúningar + + + radian + {0} radian + {0} radianir + + + stig + {0} stig + {0} stig + + + bogaminuttir + {0} bogaminuttur + {0} bogaminuttir + + + bogasekundir + {0} bogasekund + {0} bogasekundir + + + ferkilometrar + {0} ferkilometur + {0} ferkilometrar + + + hektarar + {0} hektari + {0} hektarar + + + fermetrar + {0} fermetur + {0} fermetrar + {0} fyri hvønn fermetur + + + fersentimetrar + {0} fersentimetur + {0} fersentimetrar + {0} fyri hvønn fersentimetur + + + fermíl + {0} fermíl + {0} fermíl + + + ekrur + {0} ekra + {0} ekrur + + + feryards + {0} feryard + {0} feryards + + + ferføtur + {0} ferfót + {0} ferføtur + + + fertummar + {0} fertummi + {0} fertummar + {0} fyri hvønn fertumma + + + karat + {0} karat + {0} karat + + + litrar fyri hvønn kilometrar + {0} litur fyri hvønn kilometrar + {0} litrar fyri hvønn kilometrar + + + litrar fyri hvørjar 100 kilometrar + {0} litur fyri hvørjar 100 kilometrar + {0} litrar fyri hvørjar 100 kilometrar + + + míl fyri hvønn gallon + {0} míl fyri hvønn gallon + {0} míl fyri hvønn gallon + + + terabýt + {0} terabýt + {0} terabýt + + + terabit + {0} terabit + {0} terabit + + + gigabýt + {0} gigabýt + {0} gigabýt + + + gigabit + {0} gigabit + {0} gigabit + + + megabýt + {0} megabýt + {0} megabýt + + + megabit + {0} megabit + {0} megabit + + + kilobýt + {0} kilobýt + {0} kilobýt + + + kilobit + {0} kilobit + {0} kilobit + + + být + {0} být + {0} být + + + bit + {0} bit + {0} bit + + + øldir + {0} øld + {0} øldir + + + ár + {0} ár + {0} ár + {0} um ári + + + mánaðir + {0} mánaður + {0} mánaðir + {0} um mánan + + + vikur + {0} vika + {0} vikur + {0} um vikuna + + + dagar + {0} dagur + {0} dagar + {0} um dagin + + + tímar + {0} tími + {0} tímar + {0} um tíman + + + minuttir + {0} minuttur + {0} minuttir + {0} um minuttin + + + sekundir + {0} sekund + {0} sekundir + {0} um sekundi + + + millisekundir + {0} millisekund + {0} millisekundir + + + mikrosekundir + {0} mikrosekund + {0} mikrosekundir + + + nanosekundir + {0} nanosekund + {0} nanosekundir + + + amperur + {0} ampera + {0} amperur + + + milliamperur + {0} milliampera + {0} milliamperur + + + ohm + {0} ohm + {0} ohm + + + volt + {0} volt + {0} volt + + + kilokaloriur + {0} kilokaloria + {0} kilokaloriur + + + kaloriur + {0} kaloria + {0} kaloriur + + + kostkaloriur + {0} kostkaloria + {0} kostkaloriur + + + kilojoule + {0} kilojoule + {0} kilojoule + + + joule + {0} joule + {0} joule + + + kilowatttímar + {0} kilowatttími + {0} kilowatttímar + + + gigahertz + {0} gigahertz + {0} gigahertz + + + megahertz + {0} megahertz + {0} megahertz + + + kilohertz + {0} kilohertz + {0} kilohertz + + + hertz + {0} hertz + {0} hertz + + + kilometrar + {0} kilometur + {0} kilometrar + {0} fyri hvønn kilometur + + + metrar + {0} metur + {0} metrar + {0} fyri hvønn metur + + + desimetrar + {0} desimetur + {0} desimetrar + + + sentimetrar + {0} sentimetur + {0} sentimetrar + {0} fyri hvønn sentimetur + + + millimetrar + {0} millimetur + {0} millimetrar + + + mikrometrar + {0} mikrometur + {0} mikrometrar + + + nanometrar + {0} nanometur + {0} nanometrar + + + picometrar + {0} picometur + {0} picometrar + + + míl + {0} míl + {0} míl + + + yards + {0} yard + {0} yards + + + føtur + {0} fótur + {0} føtur + {0}/fót + + + tummar + {0} tummi + {0} tummar + {0} fyri hvønn tumma + + + parsecs + {0} parsec + {0} parsecs + + + ljósár + {0} ljósár + {0} ljósár + + + stjørnufrøðilig eindir + {0} stjørnufrøðilig eind + {0} stjørnufrøðiligar eindir + + + sjómíl + {0} sjómíl + {0} sjómíl + + + skandinaviskt míl + {0} skandinaviskt míl + {0} skandinaviskt míl + + + luks + {0} luks + {0} luks + + + tons + {0} tons + {0} tons + + + kilogramm + {0} kilogramm + {0} kilogramm + {0} fyri hvørt kilogramm + + + gramm + {0} gramm + {0} gramm + {0} fyri hvørt gramm + + + milligramm + {0} milligramm + {0} milligramm + + + mikrogramm + {0} mikrogramm + {0} mikrogramm + + + stutt tons + {0} stutt tons + {0} stutt tons + + + pund + {0} pund + {0} pund + {0} fyri hvørt pund + + + unsur + {0} unsa + {0} unsur + {0} fyri hvørja unsu + + + troy unsur + {0} troy unsa + {0} troy unsur + + + karat + {0} karat + {0} karat + + + gigawatt + {0} gigawatt + {0} gigawatt + + + megawatt + {0} megawatt + {0} megawatt + + + kilowatt + {0} kilowatt + {0} kilowatt + + + watt + {0} watt + {0} watt + + + milliwatt + {0} milliwatt + {0} milliwatt + + + hestakreftur + {0} hestakraft + {0} hestakreftur + + + hektopascal + {0} hektopascal + {0} hektopascal + + + millimetrar av kviksilvur + {0} millimetur av kviksilvur + {0} millimetrar av kviksilvur + + + psi + {0} psi + {0} psi + + + tummar av kviksilvur + {0} tummi av kviksilvur + {0} tummar av kviksilvur + + + millibar + {0} millibar + {0} millibar + + + kilometrar um tíman + {0} kilometur um tíman + {0} kilometrar um tíman + + + metrar um sekundi + {0} metur um sekundi + {0} metrar um sekundi + + + míl um tíman + {0} míl/t + {0} míl/t + + + sjómíl um tíman + {0} sjómíl um tíman + {0} sjómíl um tíman + + + ° + {0}° + {0}° + + + stig Celsius + {0} stig Celsius + {0} stig Celsius + + + stig Fahrenheit + {0} stig Fahrenheit + {0} stig Fahrenheit + + + Kelvin + {0} Kelvin + {0} Kelvin + + + kubikkkilometrar + {0} kubikkkilometur + {0} kubikkkilometrar + + + kubikkmetrar + {0} kubikkmetur + {0} kubikkmetrar + {0} fyri hvønn kubikkmetur + + + kubikksentimetrar + {0} kubikksentimetur + {0} kubikksentimetrar + {0} fyri hvønn kubikksentimetur + + + kubikkmíl + {0} kubikkmíl + {0} kubikkmíl + + + kubikkyards + {0} kubikkyard + {0} kubikkyards + + + kubikkføtur + {0} kubikkfótur + {0} kubikkføtur + + + kubikktummar + {0} kubikktummi + {0} kubikktummar + + + megalitrar + {0} megalitur + {0} megalitrar + + + hektolitrar + {0} hektolitur + {0} hektolitrar + + + litrar + {0} litur + {0} litrar + {0} fyri hvønn litur + + + desilitrar + {0} desilitur + {0} desilitrar + + + sentilitrar + {0} sentilitur + {0} sentilitrar + + + millilitrar + {0} millilitur + {0} millilitrar + + + metralag pints + {0} metralag pint + {0} metralag pints + + + metralag koppar + {0} metralag koppur + {0} metralag koppar + + + ekraføtur + {0} ekrafótur + {0} ekraføtur + + + gallons + {0} gallon + {0} gallons + {0} fyri hvønn gallon + + + quarts + {0} quart + {0} quarts + + + pints + {0} pint + {0} pints + + + koppar + {0} koppur + {0} koppar + + + flótandi unsur + {0} flótandi unsa + {0} flótandi unsur + + + súpiskeiðir + {0} súpiskeið + {0} súpiskeiðir + + + teskeiðir + {0} teskeið + {0} teskeiðir + + + {0}E + {0}N + {0}S + {0}V + + + + + {0}/{1} + + + G + {0} G + {0} G + + + m/s² + {0} m/s² + {0} m/s² + + + snúningar + {0} snú. + {0} snú. + + + rad + {0} rad + {0} rad + + + stig + {0} stig + {0} stig + + + bogamin. + {0} bogamin. + {0} bogamin. + + + bogasek. + {0} bogasek. + {0} bogasek. + + + km² + {0} km² + {0} km² + + + ha + {0} ha + {0} ha + + + + {0} m² + {0} m² + {0}/m² + + + cm² + {0} cm² + {0} cm² + {0}/cm² + + + míl² + {0} míl² + {0} míl² + + + ekrur + {0} ekra + {0} ekrur + + + yards² + {0} yard² + {0} yards² + + + føtur² + {0} fót² + {0} føtur² + + + tum.² + {0} tum.² + {0} tum.² + {0}/tum.² + + + karat + {0} karat + {0} karat + + + l/km + {0} l/km + {0} l/km + + + l/100 km + {0} l/100 km + {0} l/100 km + + + míl/gallon + {0} míl/gallon + {0} míl/gallon + + + TB + {0} TB + {0} TB + + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + KB + {0} KB + {0} KB + + + kb + {0} kb + {0} kb + + + být + {0} být + {0} být + + + bit + {0} bit + {0} bit + + + ø. + {0} ø. + {0} ø. + + + ár + {0} ár + {0} ár + {0}/ár + + + mán. + {0} mán. + {0} mán. + {0}/m. + + + vikur + {0} vi. + {0} vi. + {0}/vi. + + + dagar + {0} d. + {0} d. + {0}/d. + + + tímar + {0} t. + {0} t. + {0}/t. + + + min. + {0} min. + {0} min. + {0}/min. + + + sek. + {0} sek. + {0} sek. + {0}/sek. + + + millisek. + {0} ms. + {0} ms. + + + mikrosek. + {0} μs. + {0} μs. + + + ns + {0} ns + {0} ns + + + amperur + {0} A + {0} A + + + milliamperur + {0} mA + {0} mA + + + ohm + {0} Ω + {0} Ω + + + volt + {0} V + {0} V + + + kcal + {0} kcal + {0} kcal + + + kal. + {0} kal. + {0} kal. + + + kostkaloriur + {0} kostkaloria + {0} kostkaloriur + + + kilojoule + {0} kJ + {0} kJ + + + joule + {0} J + {0} J + + + kWh + {0} kWh + {0} kWh + + + GHz + {0} GHz + {0} GHz + + + MHz + {0} MHz + {0} MHz + + + kHz + {0} kHz + {0} kHz + + + Hz + {0} Hz + {0} Hz + + + km + {0} km + {0} km + {0}/km + + + m + {0} m + {0} m + {0}/m + + + dm + {0} dm + {0} dm + + + cm + {0} cm + {0} cm + {0}/cm + + + mm + {0} mm + {0} mm + + + µm + {0} µm + {0} µm + + + nm + {0} nm + {0} nm + + + pm + {0} pm + {0} pm + + + míl + {0} míl + {0} míl + + + yd + {0} yd + {0} yd + + + føtur + {0} fótur + {0} føtur + {0}/fót + + + tum. + {0} tum. + {0} tum. + {0}/tum. + + + pc + {0} pc + {0} pc + + + ljósár + {0} ljósár + {0} ljósár + + + au + {0} au + {0} au + + + sm + {0} sm + {0} sm + + + sk. míl + {0} sk. míl + {0} sk. míl + + + luks + {0} lx + {0} lx + + + t + {0} t + {0} t + + + kg + {0} kg + {0} kg + {0}/kg + + + gramm + {0} g + {0} g + {0}/g + + + mg + {0} mg + {0} mg + + + µg + {0} µg + {0} µg + + + stutt t + {0} stutt t + {0} stutt t + + + pund + {0} pund + {0} pund + {0}/pund + + + unsur + {0} unsa + {0} unsur + {0}/unsu + + + troy unsur + {0} troy unsa + {0} troy unsur + + + karat + {0} CD + {0} CD + + + gigawatt + {0} GW + {0} GW + + + MW + {0} MW + {0} MW + + + kW + {0} kW + {0} kW + + + watt + {0} W + {0} W + + + mW + {0} mW + {0} mW + + + hestakreftur + {0} hk + {0} hk + + + hPa + {0} hPa + {0} hPa + + + mmHg + {0} mmHg + {0} mmHg + + + psi + {0} psi + {0} psi + + + inHg + {0} inHg + {0} inHg + + + mb + {0} mb + {0} mb + + + km/t + {0} km/t + {0} km/t + + + m/s + {0} m/s + {0} m/s + + + míl/t + {0} míl/t + {0} míl/t + + + smíl/t + {0} smíl/t + {0} smíl/t + + + ° + {0}° + {0}° + + + °C + {0}°C + {0}°C + + + °F + {0}°F + {0}°F + + + K + {0} K + {0} K + + + km³ + {0} km³ + {0} km³ + + + + {0} m³ + {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ + + + míl³ + {0} míl³ + {0} míl³ + + + yards³ + {0} yard³ + {0} yards³ + + + føtur³ + {0} fótur³ + {0} føtur³ + + + tum.³ + {0} tum.³ + {0} tum.³ + + + Ml + {0} Ml + {0} Ml + + + hl + {0} hl + {0} hl + + + l + {0} l + {0} l + {0}/l + + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl + + + ml + {0} ml + {0} ml + + + metralag pints + {0} metralag pint + {0} metralag pints + + + metralag koppar + {0} metralag koppur + {0} metralag koppar + + + ekraføtur + {0} ekrafótur + {0} ekraføtur + + + gallons + {0} gallon + {0} gallons + {0}/gallon + + + quarts + {0} quart + {0} quarts + + + pints + {0} pint + {0} pints + + + koppar + {0} koppur + {0} koppar + + + flótandi unsur + {0} flótandi unsa + {0} flótandi unsur + + + súpisk. + {0} súpisk. + {0} súpisk. + + + tesk. + {0} tesk. + {0} tesk. + + + {0}E + {0}N + {0}S + {0}V + + + + + {0}/{1} + + + {0}G + {0}G + + + {0}° + {0}° + + + {0}′ + {0}′ + + + {0}″ + {0}″ + + + {0}km² + {0}km² + + + {0}ha + {0}ha + + + {0}m² + {0}m² + + + l/100km + {0}l/100km + {0}l/100km + + + ár + {0}ár + {0}ár + + + m. + {0}m. + {0}m. + + + v. + {0}v. + {0}v. + + + d. + {0}d. + {0}d. + {0}/d + + + t. + {0}t. + {0}t. + {0}/t. + + + m. + {0}m. + {0}m. + {0}/min + + + s. + {0}s. + {0}s. + {0}/s + + + ms. + {0}ms. + {0}ms. + + + ns + + + km + {0}km + {0}km + + + m + {0}m + {0}m + + + cm + {0}cm + {0}cm + + + mm + {0}mm + {0}mm + + + {0}pm + {0}pm + + + kg + {0}kg + {0}kg + + + g + {0}g + {0}g + + + {0}kW + {0}kW + + + {0}W + {0}W + + + {0}hPa + {0}hPa + + + {0}mbar + {0}mbar + + + km/t + {0}km/t + {0}km/t + + + {0}m/s + {0}m/s + + + ° + {0}° + {0}° + + + {0}°F + {0}°F + + + {0}km³ + {0}km³ + + + l + {0}l + {0}l + + + {0}E + {0}N + {0}S + {0}V + + + + h:mm + + + h:mm:ss + + + m:ss + + + + + {0}, {1} + {0}, {1} + {0} og {1} + {0} og {1} + + + {0}, {1} + {0}, {1} + {0} og {1} + {0}, {1} + + + {0} {1} + {0} {1} + {0} {1} + {0} {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + + + já:j + nei:n + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fo_DK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fo_DK.xml new file mode 100644 index 00000000000..20565205d5a --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fo_DK.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + kr. + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fo_FO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fo_FO.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fo_FO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fo_FO.xml index 24d42393837..b49fd7bb577 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fo_FO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fo_FO.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr.xml similarity index 80% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr.xml index a2d4eb05266..1ceae8588a8 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr.xml @@ -1,13 +1,12 @@ - - - + @@ -42,7 +41,7 @@ For terms of use, see http://www.unicode.org/copyright.html arabe arabe standard moderne araméen - araukan + mapuche araona arapaho arabe algérien @@ -50,7 +49,7 @@ For terms of use, see http://www.unicode.org/copyright.html arabe marocain arabe égyptien assamais - assou + assou langue des signes américaine asturien avar @@ -59,7 +58,6 @@ For terms of use, see http://www.unicode.org/copyright.html aymara azéri azéri - azéri méridional bachkir baloutchi balinais @@ -76,6 +74,7 @@ For terms of use, see http://www.unicode.org/copyright.html bafut badaga bulgare + baloutchi occidental bhojpuri bichelamar bikol @@ -199,7 +198,7 @@ For terms of use, see http://www.unicode.org/copyright.html frison occidental irlandais ga - gagaouze + gagaouze gan gayo gbaya @@ -239,7 +238,7 @@ For terms of use, see http://www.unicode.org/copyright.html croate haut-sorabe xiang - haïtien + créole haïtien hongrois hupa arménien @@ -260,7 +259,7 @@ For terms of use, see http://www.unicode.org/copyright.html inuktitut ingrien japonais - créole anglais jamaïcain + créole jamaïcain lojban ngomba machame @@ -337,6 +336,7 @@ For terms of use, see http://www.unicode.org/copyright.html lao mongo lozi + lori du Nord lituanien latgalien luba-katanga @@ -390,7 +390,7 @@ For terms of use, see http://www.unicode.org/copyright.html birman myènè erzya - mazandérani + mazandérani nauruan minnan napolitain @@ -398,6 +398,7 @@ For terms of use, see http://www.unicode.org/copyright.html norvégien bokmål ndébélé du Nord bas-allemand + bas-saxon néerlandais népalais newari ndonga @@ -492,6 +493,7 @@ For terms of use, see http://www.unicode.org/copyright.html écossais sindhi sarde sassarais + kurde du Sud sami du Nord seneca sena @@ -534,8 +536,8 @@ For terms of use, see http://www.unicode.org/copyright.html sumérien suédois swahili + swahili du Congo comorien - swahili du Congo syriaque classique syriaque silésien @@ -564,7 +566,7 @@ For terms of use, see http://www.unicode.org/copyright.html tonga nyasa tok pisin turc - touroyo + turoyo taroko tsonga tsakonien @@ -603,8 +605,9 @@ For terms of use, see http://www.unicode.org/copyright.html walamo waray washo + warlpiri wolof - chinois wu + wu kalmouk xhosa mingrélien @@ -633,6 +636,8 @@ For terms of use, see http://www.unicode.org/copyright.html + + @@ -665,6 +670,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -681,9 +687,10 @@ For terms of use, see http://www.unicode.org/copyright.html + - + @@ -714,6 +721,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -721,10 +729,12 @@ For terms of use, see http://www.unicode.org/copyright.html + + @@ -736,7 +746,8 @@ For terms of use, see http://www.unicode.org/copyright.html - + + @@ -745,6 +756,54 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -755,7 +814,8 @@ For terms of use, see http://www.unicode.org/copyright.html - + + @@ -821,7 +881,7 @@ For terms of use, see http://www.unicode.org/copyright.html Asie centrale Asie occidentale Europe - Europe orientale + Europe de l’Est Europe septentrionale Europe occidentale Amérique latine @@ -833,7 +893,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albanie Arménie - Antilles néerlandaises Angola Antarctique Argentine @@ -983,7 +1042,7 @@ For terms of use, see http://www.unicode.org/copyright.html Macédoine Macédoine (ARYM) Mali - Myanmar + Myanmar (Birmanie) Mongolie R.A.S. chinoise de Macao Macao @@ -1061,7 +1120,7 @@ For terms of use, see http://www.unicode.org/copyright.html Togo Thaïlande Tadjikistan - Tokelau + Tokélaou Timor oriental Timor-Oriental Turkménistan @@ -1108,22 +1167,27 @@ For terms of use, see http://www.unicode.org/copyright.html arménien oriental arménien occidental alphabet latin altaïque unifié + dialecte balanka d’Anii + groupe dialectal capverdien barlavento variante hybride bouddhiste biscayen dialecte de San Giorgio / Bila alphabet Bohorič dialecte boontling alphabet Dajnko - anglais moderne ancien + prononciation serbe ékavienne + ancien anglais moderne alphabet phonétique international alphabet phonétique ouralique alphabet phonétique X-SAMPA romanisation Hepburn dialecte høgnorsk + prononciation serbe ijékavienne variante épique dialecte jauer romanisation Jyutping orthographe commune + dialecte polonais kociewiacy orthographe standard variante classique dialecte lipovaz de Resia @@ -1149,6 +1213,7 @@ For terms of use, see http://www.unicode.org/copyright.html anglais standard écossais dialecte scouse dialecte de Stolvizza / Solbica + groupe dialectal capverdien sotavento idiome surmiran idiome sursilvan idiome sutsilvan @@ -1156,6 +1221,7 @@ For terms of use, see http://www.unicode.org/copyright.html orthographe unifiée orthographe révisée unifiée orthographe de l’Ulster + alphabet phonétique Unifon variante védique valencien idiome vallader @@ -1173,6 +1239,9 @@ For terms of use, see http://www.unicode.org/copyright.html Tri numérique Priorité du tri devise + système horaire (12 ou 24 heures) + style de saut de ligne + système de mesure nombres Fuseau horaire Variante locale @@ -1180,121 +1249,133 @@ For terms of use, see http://www.unicode.org/copyright.html Usage privé - chiffres arabes - chiffres arabes étendus - chiffres arméniens - chiffres arméniens minuscules - chiffres balinais - chiffres bengalis - Ordre chinois traditionnel - Big5 - chiffres brahmis - calendrier bouddhiste - chiffres chakmas - chiffres chams - calendrier chinois - Calendrier copte - calendrier dangi - chiffres devanagaris - Ordre du dictionnaire - ordre de tri Unicode par défaut - ordre de tri multilingue européen - chiffres éthiopiens - calendrier éthiopien - Calendrier éthiopien Amete Alem - Chiffres financiers - chiffres pleine chasse - Ordre chinois simplifié - GB2312 - chiffres géorgiens - calendrier grégorien - chiffres grecs - chiffres grecs minuscules - chiffres goudjarâtîs - chiffres gourmoukhîs - nombres décimaux chinois - chiffres en chinois simplifié - chiffres financiers en chinois simplifié - chiffres en chinois traditionnel - chiffres financiers en chinois traditionnel - chiffres hébreux - calendrier hébraïque - Tout trier - Calendrier indien - calendrier musulman - calendrier musulman (tabulaire, époque civile) - calendrier musulman (observé, Arabie Saoudite) - calendrier musulman (tabulaire, époque astronomique) - calendrier musulman (calculé, Umm al-Qura) - calendrier ISO 8601 - calendrier japonais - chiffres javanais - chiffres japonais - chiffres japonais financiers - chiffres kayah li - chiffres khmers - chiffres en kannada - chiffres lannas horas - chiffres lannas thams - chiffres laotiens - chiffres occidentaux - chiffres lepchas - chiffres limbous - Trier avec les minuscules d’abord - chiffres malayâlams - chiffres mongols - chiffres meitei-mayeks - chiffres birmans - chiffres birmans shans - Chiffres natifs - chiffres n’kos - Trier les caractères accentués normalement - Trier sans ordre lié à la casse - Trier sans tenir compte de la casse - Trier les caractères Kana séparément - Trier sans normalisation - Trier les chiffres individuellement - Trier les symboles - chiffres ol-tchikis - chiffres oriyas - chiffres osmanyas - calendrier persan - Ordre de l’annuaire - Ordre de tri phonétique - Ordre pinyin - Ne trier que les lettres de base - Trier en tenant compte des caractères accentués, de la casse, de la largeur et des caractères Kana - Ordre réformé - calendrier républicain chinois - chiffres romains - chiffres romains minuscules - chiffres saurashtras - recherche générique - Rechercher par consonne initiale en hangeul - Trier en tenant compte des caractères accentués - Trier en ignorant les symboles - chiffres sharadas - chiffres sora-sompengs - ordre de tri standard - Ordre des traits - chiffres soundanais - chiffres takris - chiffres néo-taï-luës - chiffres tamouls - chiffres tamouls - chiffres télougous - Trier en tenant compte des caractères accentués, de la casse et de la largeur - chiffres thaïs - chiffres tibétains - Ordre traditionnel - Chiffres traditionnels - Ordre de tri radical-traits - Trier avec les majuscules d’abord - Chiffres en vaï - Trier les caractères accentués dans l’ordre inverse - Trier en tenant compte de la casse - Trier les caractères Kana différemment - Trier avec normalisation Unicode - Trier les chiffres par ordre numérique - ordre zhuyin + calendrier bouddhiste + calendrier chinois + Calendrier copte + calendrier dangi + calendrier éthiopien + Calendrier éthiopien Amete Alem + calendrier grégorien + calendrier hébraïque + Calendrier indien + calendrier musulman + calendrier musulman (tabulaire, époque civile) + calendrier musulman (observé, Arabie Saoudite) + calendrier musulman (tabulaire, époque astronomique) + calendrier musulman (calculé, Umm al-Qura) + calendrier ISO 8601 + calendrier japonais + calendrier persan + calendrier républicain chinois + Trier les symboles + Trier en ignorant les symboles + Trier les caractères accentués normalement + Trier les caractères accentués dans l’ordre inverse + Trier avec les minuscules d’abord + Trier sans ordre lié à la casse + Trier avec les majuscules d’abord + Trier sans tenir compte de la casse + Trier en tenant compte de la casse + Trier les caractères Kana séparément + Trier les caractères Kana différemment + Ordre chinois traditionnel - Big5 + ancien ordre de tri pour compatibilité + Ordre du dictionnaire + ordre de tri Unicode par défaut + ordre des émojis + ordre multilingue européen + Ordre chinois simplifié - GB2312 + Ordre de l’annuaire + Ordre de tri phonétique + Ordre pinyin + Ordre réformé + recherche générique + rechercher par consonne initiale en hangeul + ordre de tri standard + Ordre des traits + Ordre traditionnel + Ordre de tri radical-traits + ordre zhuyin + Trier sans normalisation + Trier avec normalisation Unicode + Trier les chiffres individuellement + Trier les chiffres par ordre numérique + Tout trier + Ne trier que les lettres de base + Trier en tenant compte des caractères accentués, de la casse, de la largeur et des caractères Kana + Trier en tenant compte des caractères accentués + Trier en tenant compte des caractères accentués, de la casse et de la largeur + système horaire de 12 heures (0–11) + système horaire de 12 heures (1–12) + système horaire de 24 heures (0–23) + système horaire de 24 heures (1–24) + style de saut de ligne permissif + style de saut de ligne normal + style de saut de ligne strict + système métrique + système impérial + système américain + chiffres arabes + chiffres arabes étendus + chiffres arméniens + chiffres arméniens minuscules + chiffres balinais + chiffres bengalis + chiffres brahmis + chiffres chakmas + chiffres chams + chiffres devanagaris + chiffres éthiopiens + Chiffres financiers + chiffres pleine chasse + chiffres géorgiens + chiffres grecs + chiffres grecs minuscules + chiffres goudjarâtîs + chiffres gourmoukhîs + nombres décimaux chinois + chiffres en chinois simplifié + chiffres financiers en chinois simplifié + chiffres en chinois traditionnel + chiffres financiers en chinois traditionnel + chiffres hébreux + chiffres javanais + chiffres japonais + chiffres japonais financiers + chiffres kayah li + chiffres khmers + chiffres en kannada + chiffres lannas horas + chiffres lannas thams + chiffres laotiens + chiffres occidentaux + chiffres lepchas + chiffres limbous + chiffres malayâlams + chiffres mongols + chiffres meitei-mayeks + chiffres birmans + chiffres birmans shans + Chiffres natifs + chiffres n’kos + chiffres ol-tchikis + chiffres oriyas + chiffres osmanyas + chiffres romains + chiffres romains minuscules + chiffres saurashtras + chiffres sharadas + chiffres sora-sompengs + chiffres soundanais + chiffres takris + chiffres néo-taï-luës + chiffres tamouls + chiffres tamouls + chiffres télougous + chiffres thaïs + chiffres tibétains + Chiffres traditionnels + Chiffres en vaï BGN @@ -1634,6 +1715,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d MMM E d MMM + d MMMM mm:ss U d/M/y @@ -1644,6 +1726,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM U d MMM U E d MMM U + MMMM U QQQ U QQQQ U @@ -2084,6 +2167,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d y G MMM y G @@ -2101,6 +2185,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d MMM E d MMM + d MMMM mm:ss y G y G @@ -2259,18 +2344,18 @@ For terms of use, see http://www.unicode.org/copyright.html - Janv. - Févr. - Mars - Avr. - Mai - Juin - Juil. - Août - Sept. - Oct. - Nov. - Déc. + janv. + févr. + mars + avr. + mai + juin + juil. + août + sept. + oct. + nov. + déc. J @@ -2287,18 +2372,18 @@ For terms of use, see http://www.unicode.org/copyright.html D - Janvier - Février - Mars - Avril - Mai - Juin - Juillet - Août - Septembre - Octobre - Novembre - Décembre + janvier + février + mars + avril + mai + juin + juillet + août + septembre + octobre + novembre + décembre @@ -2343,13 +2428,13 @@ For terms of use, see http://www.unicode.org/copyright.html - Dim. - Lun. - Mar. - Mer. - Jeu. - Ven. - Sam. + dim. + lun. + mar. + mer. + jeu. + ven. + sam. D @@ -2361,22 +2446,22 @@ For terms of use, see http://www.unicode.org/copyright.html S - Di - Lu - Ma - Me - Je - Ve - Sa + di + lu + ma + me + je + ve + sa - Dimanche - Lundi - Mardi - Mercredi - Jeudi - Vendredi - Samedi + dimanche + lundi + mardi + mercredi + jeudi + vendredi + samedi @@ -2425,49 +2510,75 @@ For terms of use, see http://www.unicode.org/copyright.html - ap.m. - AM - PM - - - ap.-m. - a - matin - soir - midi - p - - - après-midi + min. AM - matin - soir midi PM + mat. + ap.m. + soir + nuit + + + min. + AM + midi + PM + mat. + ap.m. + soir + nuit + + + minuit + AM + midi + PM + du matin + de l’après-midi + du soir + de nuit - ap.m. - av.m. - ap.m. + min. + AM + midi + PM + mat. + ap.m. + soir + nuit + + + min. + AM + midi + PM + mat. + ap.m. + soir + nuit - après-midi - avant-midi - matin - soir - midi - après-midi + minuit + AM + midi + PM + matin + après-midi + soir + nuit avant Jésus-Christ - AEC + avant l’ère commune après Jésus-Christ - EC + de l’ère commune av. J.-C. @@ -2529,17 +2640,17 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1} 'à' {0} - {1} {0} + {1} 'à' {0} - {1} {0} + {1} 'à' {0} @@ -2549,7 +2660,7 @@ For terms of use, see http://www.unicode.org/copyright.html d - E + E E d E h:mm a E HH:mm @@ -2570,16 +2681,17 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm a v HH:mm v L - d/M - E d/M + dd/MM + E dd/MM LLL d MMM E d MMM + d MMMM mm:ss y - M/y - d/M/y - E d/M/y + MM/y + dd/MM/y + E dd/MM/y MMM y d MMM y E d MMM y @@ -2588,7 +2700,7 @@ For terms of use, see http://www.unicode.org/copyright.html QQQQ y - {0} {1} + {0} {1} {0} – {1} @@ -2654,11 +2766,11 @@ For terms of use, see http://www.unicode.org/copyright.html MM/y – MM/y - M/y – M/y + MM/y – MM/y - d/M/y – d/M/y - d/M/y – d/M/y + dd/MM/y – dd/MM/y + dd/MM/y – dd/MM/y dd/MM/y – dd/MM/y @@ -3039,6 +3151,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d y G MMM y G @@ -3050,6 +3163,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d MMM E d MMM + d MMMM y G y G M/y GGGGG @@ -3066,12 +3180,720 @@ For terms of use, see http://www.unicode.org/copyright.html + + Taika (645–650) + Hakuchi (650–671) + Hakuhō (672–686) + Shuchō (686–701) + Taihō (701–704) + Keiun (704–708) + Wadō (708–715) + Reiki (715–717) + Yōrō (717–724) + Jinki (724–729) + Tempyō (729–749) + Tempyō-kampō (749-749) + Tempyō-shōhō (749-757) + Tempyō-hōji (757-765) + Temphō-jingo (765-767) + Jingo-keiun (767-770) + Hōki (770–780) + Ten-ō (781-782) + Enryaku (782–806) + Daidō (806–810) + Kōnin (810–824) + Tenchō (824–834) + Jōwa (834–848) + Kajō (848–851) + Ninju (851–854) + Saikō (854–857) + Ten-an (857-859) + Jōgan (859–877) + Gangyō (877–885) + Ninna (885–889) + Kanpyō (889–898) + Shōtai (898–901) + Engi (901–923) + Enchō (923–931) + Jōhei (931–938) + Tengyō (938–947) + Tenryaku (947–957) + Tentoku (957–961) + Ōwa (961–964) + Kōhō (964–968) + Anna (968–970) + Tenroku (970–973) + Ten’en (973–976) + Jōgen (976–978) + Tengen (978–983) + Eikan (983–985) + Kanna (985–987) + Eien (987–989) + Eiso (989–990) + Shōryaku (990–995) + Chōtoku (995–999) + Chōhō (999–1004) + Kankō (1004–1012) + Chōwa (1012–1017) + Kannin (1017–1021) + Jian (1021–1024) + Manju (1024–1028) + Chōgen (1028–1037) + Chōryaku (1037–1040) + Chōkyū (1040–1044) + Kantoku (1044–1046) + Eishō (1046–1053) + Tengi (1053–1058) + Kōhei (1058–1065) + Jiryaku (1065–1069) + Enkyū (1069–1074) + Shōho (1074–1077) + Shōryaku (1077–1081) + Eihō (1081–1084) + Ōtoku (1084–1087) + Kanji (1087–1094) + Kahō (1094–1096) + Eichō (1096–1097) + Jōtoku (1097–1099) + Kōwa (1099–1104) + Chōji (1104–1106) + Kashō (1106–1108) + Tennin (1108–1110) + Ten-ei (1110-1113) + Eikyū (1113–1118) + Gen’ei (1118–1120) + Hōan (1120–1124) + Tenji (1124–1126) + Daiji (1126–1131) + Tenshō (1131–1132) + Chōshō (1132–1135) + Hōen (1135–1141) + Eiji (1141–1142) + Kōji (1142–1144) + Ten’yō (1144–1145) + Kyūan (1145–1151) + Ninpei (1151–1154) + Kyūju (1154–1156) + Hōgen (1156–1159) + Heiji (1159–1160) + Eiryaku (1160–1161) + Ōho (1161–1163) + Chōkan (1163–1165) + Eiman (1165–1166) + Nin’an (1166–1169) + Kaō (1169–1171) + Shōan (1171–1175) + Angen (1175–1177) + Jishō (1177–1181) + Yōwa (1181–1182) + Juei (1182–1184) + Genryaku (1184–1185) + Bunji (1185–1190) + Kenkyū (1190–1199) + Shōji (1199–1201) + Kennin (1201–1204) + Genkyū (1204–1206) + Ken’ei (1206–1207) + Jōgen (1207–1211) + Kenryaku (1211–1213) + Kenpō (1213–1219) + Jōkyū (1219–1222) + Jōō (1222–1224) + Gennin (1224–1225) + Karoku (1225–1227) + Antei (1227–1229) + Kanki (1229–1232) + Jōei (1232–1233) + Tenpuku (1233–1234) + Bunryaku (1234–1235) + Katei (1235–1238) + Ryakunin (1238–1239) + En’ō (1239–1240) + Ninji (1240–1243) + Kangen (1243–1247) + Hōji (1247–1249) + Kenchō (1249–1256) + Kōgen (1256–1257) + Shōka (1257–1259) + Shōgen (1259–1260) + Bun’ō (1260–1261) + Kōchō (1261–1264) + Bun’ei (1264–1275) + Kenji (1275–1278) + Kōan (1278–1288) + Shōō (1288–1293) + Einin (1293–1299) + Shōan (1299–1302) + Kengen (1302–1303) + Kagen (1303–1306) + Tokuji (1306–1308) + Enkyō (1308–1311) + Ōchō (1311–1312) + Shōwa (1312–1317) + Bunpō (1317–1319) + Genō (1319–1321) + Genkō (1321–1324) + Shōchū (1324–1326) + Karyaku (1326–1329) + Gentoku (1329–1331) + Genkō (1331–1334) + Kemmu (1334–1336) + Engen (1336–1340) + Kōkoku (1340–1346) + Shōhei (1346–1370) + Kentoku (1370–1372) + Bunchū (1372–1375) + Tenju (1375–1379) + Kōryaku (1379–1381) + Kōwa (1381–1384) + Genchū (1384–1392) + Meitoku (1384–1387) + Kakei (1387–1389) + Kōō (1389–1390) + Meitoku (1390–1394) + Ōei (1394–1428) + Shōchō (1428–1429) + Eikyō (1429–1441) + Kakitsu (1441–1444) + Bun’an (1444–1449) + Hōtoku (1449–1452) + Kyōtoku (1452–1455) + Kōshō (1455–1457) + Chōroku (1457–1460) + Kanshō (1460–1466) + Bunshō (1466–1467) + Ōnin (1467–1469) + Bunmei (1469–1487) + Chōkyō (1487–1489) + Entoku (1489–1492) + Meiō (1492–1501) + Bunki (1501–1504) + Eishō (1504–1521) + Taiei (1521–1528) + Kyōroku (1528–1532) + Tenbun (1532–1555) + Kōji (1555–1558) + Eiroku (1558–1570) + Genki (1570–1573) + Tenshō (1573–1592) + Bunroku (1592–1596) + Keichō (1596–1615) + Genna (1615–1624) + Kan’ei (1624–1644) + Shōho (1644–1648) + Keian (1648–1652) + Jōō (1652–1655) + Meireki (1655–1658) + Manji (1658–1661) + Kanbun (1661–1673) + Enpō (1673–1681) + Tenna (1681–1684) + Jōkyō (1684–1688) + Genroku (1688–1704) + Hōei (1704–1711) + Shōtoku (1711–1716) + Kyōhō (1716–1736) + Genbun (1736–1741) + Kanpō (1741–1744) + Enkyō (1744–1748) + Kan’en (1748–1751) + Hōryaku (1751–1764) + Meiwa (1764–1772) + An’ei (1772–1781) + Tenmei (1781–1789) + Kansei (1789–1801) + Kyōwa (1801–1804) + Bunka (1804–1818) + Bunsei (1818–1830) + Tenpō (1830–1844) + Kōka (1844–1848) + Kaei (1848–1854) + Ansei (1854–1860) + Man’en (1860–1861) + Bunkyū (1861–1864) + Genji (1864–1865) + Keiō (1865–1868) + Meiji + Taishō + Shōwa + Heisei + + Taika (645–650) + Hakuchi (650–671) + Hakuhō (672–686) + Shuchō (686–701) + Taihō (701–704) + Keiun (704–708) + Wadō (708–715) + Reiki (715–717) + Yōrō (717–724) + Jinki (724–729) + Tenpyō (729–749) + Tenpyō-kampō (749-749) + Tenpyō-shōhō (749-757) + Tenpyō-hōji (757-765) + Tenpyō-jingo (765-767) + Jingo-keiun (767-770) + Hōki (770–780) + Ten-ō (781-782) + Enryaku (782–806) + Daidō (806–810) + Kōnin (810–824) + Tenchō (824–834) + Jōwa (834–848) + Kajō (848–851) + Ninju (851–854) + Saikō (854–857) + Ten-an (857-859) + Jōgan (859–877) + Gangyō (877–885) + Ninna (885–889) + Kanpyō (889–898) + Shōtai (898–901) + Engi (901–923) + Enchō (923–931) + Jōhei (931–938) + Tengyō (938–947) + Tenryaku (947–957) + Tentoku (957–961) + Ōwa (961–964) + Kōhō (964–968) + Anna (968–970) + Tenroku (970–973) + Ten’en (973–976) + Jōgen (976–978) + Tengen (978–983) + Eikan (983–985) + Kanna (985–987) + Eien (987–989) + Eiso (989–990) + Shōryaku (990–995) + Chōtoku (995–999) + Chōhō (999–1004) + Kankō (1004–1012) + Chōwa (1012–1017) + Kannin (1017–1021) + Jian (1021–1024) + Manju (1024–1028) + Chōgen (1028–1037) + Chōryaku (1037–1040) + Chōkyū (1040–1044) + Kantoku (1044–1046) + Eishō (1046–1053) + Tengi (1053–1058) + Kōhei (1058–1065) + Jiryaku (1065–1069) + Enkyū (1069–1074) + Shōho (1074–1077) + Shōryaku (1077–1081) + Eihō (1081–1084) + Ōtoku (1084–1087) + Kanji (1087–1094) + Kahō (1094–1096) + Eichō (1096–1097) + Jōtoku (1097–1099) + Kōwa (1099–1104) + Chōji (1104–1106) + Kashō (1106–1108) + Tennin (1108–1110) + Ten-ei (1110-1113) + Eikyū (1113–1118) + Gen’ei (1118–1120) + Hōan (1120–1124) + Tenji (1124–1126) + Daiji (1126–1131) + Tenshō (1131–1132) + Chōshō (1132–1135) + Hōen (1135–1141) + Eiji (1141–1142) + Kōji (1142–1144) + Ten’yō (1144–1145) + Kyūan (1145–1151) + Ninpei (1151–1154) + Kyūju (1154–1156) + Hōgen (1156–1159) + Heiji (1159–1160) + Eiryaku (1160–1161) + Ōho (1161–1163) + Chōkan (1163–1165) + Eiman (1165–1166) + Nin’an (1166–1169) + Kaō (1169–1171) + Shōan (1171–1175) + Angen (1175–1177) + Jishō (1177–1181) + Yōwa (1181–1182) + Juei (1182–1184) + Genryaku (1184–1185) + Bunji (1185–1190) + Kenkyū (1190–1199) + Shōji (1199–1201) + Kennin (1201–1204) + Genkyū (1204–1206) + Ken’ei (1206–1207) + Jōgen (1207–1211) + Kenryaku (1211–1213) + Kenpō (1213–1219) + Jōkyū (1219–1222) + Jōō (1222–1224) + Gennin (1224–1225) + Karoku (1225–1227) + Antei (1227–1229) + Kanki (1229–1232) + Jōei (1232–1233) + Tenpuku (1233–1234) + Bunryaku (1234–1235) + Katei (1235–1238) + Ryakunin (1238–1239) + En’ō (1239–1240) + Ninji (1240–1243) + Kangen (1243–1247) + Hōji (1247–1249) + Kenchō (1249–1256) + Kōgen (1256–1257) + Shōka (1257–1259) + Shōgen (1259–1260) + Bun’ō (1260–1261) + Kōchō (1261–1264) + Bun’ei (1264–1275) + Kenji (1275–1278) + Kōan (1278–1288) + Shōō (1288–1293) + Einin (1293–1299) + Shōan (1299–1302) + Kengen (1302–1303) + Kagen (1303–1306) + Tokuji (1306–1308) + Enkyō (1308–1311) + Ōchō (1311–1312) + Shōwa (1312–1317) + Bunpō (1317–1319) + Genō (1319–1321) + Genkō (1321–1324) + Shōchū (1324–1326) + Karyaku (1326–1329) + Gentoku (1329–1331) + Genkō (1331–1334) + Kenmu (1334–1336) + Engen (1336–1340) + Kōkoku (1340–1346) + Shōhei (1346–1370) + Kentoku (1370–1372) + Bunchū (1372–1375) + Tenju (1375–1379) + Kōryaku (1379–1381) + Kōwa (1381–1384) + Genchū (1384–1392) + Meitoku (1384–1387) + Kakei (1387–1389) + Kōō (1389–1390) + Meitoku (1390–1394) + Ōei (1394–1428) + Shōchō (1428–1429) + Eikyō (1429–1441) + Kakitsu (1441–1444) + Bun’an (1444–1449) + Hōtoku (1449–1452) + Kyōtoku (1452–1455) + Kōshō (1455–1457) + Chōroku (1457–1460) + Kanshō (1460–1466) + Bunshō (1466–1467) + Ōnin (1467–1469) + Bunmei (1469–1487) + Chōkyō (1487–1489) + Entoku (1489–1492) + Meiō (1492–1501) + Bunki (1501–1504) + Eishō (1504–1521) + Taiei (1521–1528) + Kyōroku (1528–1532) + Tenbun (1532–1555) + Kōji (1555–1558) + Eiroku (1558–1570) + Genki (1570–1573) + Tenshō (1573–1592) + Bunroku (1592–1596) + Keichō (1596–1615) + Genna (1615–1624) + Kan’ei (1624–1644) + Shōho (1644–1648) + Keian (1648–1652) + Jōō (1652–1655) + Meireki (1655–1658) + Manji (1658–1661) + Kanbun (1661–1673) + Enpō (1673–1681) + Tenna (1681–1684) + Jōkyō (1684–1688) + Genroku (1688–1704) + Hōei (1704–1711) + Shōtoku (1711–1716) + Kyōhō (1716–1736) + Genbun (1736–1741) + Kanpō (1741–1744) + Enkyō (1744–1748) + Kan’en (1748–1751) + Hōreki (1751–1764) + Meiwa (1764–1772) + An’ei (1772–1781) + Tenmei (1781–1789) + Kansei (1789–1801) + Kyōwa (1801–1804) + Bunka (1804–1818) + Bunsei (1818–1830) + Tenpō (1830–1844) + Kōka (1844–1848) + Kaei (1848–1854) + Ansei (1854–1860) + Man’en (1860–1861) + Bunkyū (1861–1864) + Genji (1864–1865) + Keiō (1865–1868) Meiji Taishō Shōwa Heisei + + Taika (645–650) + Hakuchi (650–671) + Hakuhō (672–686) + Shuchō (686–701) + Taihō (701–704) + Keiun (704–708) + Wadō (708–715) + Reiki (715–717) + Yōrō (717–724) + Jinki (724–729) + Tenpyō (729–749) + Tenpyō-kampō (749-749) + Tenpyō-shōhō (749-757) + Tenpyō-hōji (757-765) + Tenpyō-jingo (765-767) + Jingo-keiun (767-770) + Hōki (770–780) + Ten-ō (781-782) + Enryaku (782–806) + Daidō (806–810) + Kōnin (810–824) + Tenchō (824–834) + Jōwa (834–848) + Kajō (848–851) + Ninju (851–854) + Saikō (854–857) + Ten-an (857-859) + Jōgan (859–877) + Gangyō (877–885) + Ninna (885–889) + Kanpyō (889–898) + Shōtai (898–901) + Engi (901–923) + Enchō (923–931) + Jōhei (931–938) + Tengyō (938–947) + Tenryaku (947–957) + Tentoku (957–961) + Ōwa (961–964) + Kōhō (964–968) + Anna (968–970) + Tenroku (970–973) + Ten’en (973–976) + Jōgen (976–978) + Tengen (978–983) + Eikan (983–985) + Kanna (985–987) + Eien (987–989) + Eiso (989–990) + Shōryaku (990–995) + Chōtoku (995–999) + Chōhō (999–1004) + Kankō (1004–1012) + Chōwa (1012–1017) + Kannin (1017–1021) + Jian (1021–1024) + Manju (1024–1028) + Chōgen (1028–1037) + Chōryaku (1037–1040) + Chōkyū (1040–1044) + Kantoku (1044–1046) + Eishō (1046–1053) + Tengi (1053–1058) + Kōhei (1058–1065) + Jiryaku (1065–1069) + Enkyū (1069–1074) + Shōho (1074–1077) + Shōryaku (1077–1081) + Eihō (1081–1084) + Ōtoku (1084–1087) + Kanji (1087–1094) + Kahō (1094–1096) + Eichō (1096–1097) + Jōtoku (1097–1099) + Kōwa (1099–1104) + Chōji (1104–1106) + Kashō (1106–1108) + Tennin (1108–1110) + Ten-ei (1110-1113) + Eikyū (1113–1118) + Gen’ei (1118–1120) + Hōan (1120–1124) + Tenji (1124–1126) + Daiji (1126–1131) + Tenshō (1131–1132) + Chōshō (1132–1135) + Hōen (1135–1141) + Eiji (1141–1142) + Kōji (1142–1144) + Ten’yō (1144–1145) + Kyūan (1145–1151) + Ninpei (1151–1154) + Kyūju (1154–1156) + Hōgen (1156–1159) + Heiji (1159–1160) + Eiryaku (1160–1161) + Ōho (1161–1163) + Chōkan (1163–1165) + Eiman (1165–1166) + Nin’an (1166–1169) + Kaō (1169–1171) + Shōan (1171–1175) + Angen (1175–1177) + Jishō (1177–1181) + Yōwa (1181–1182) + Juei (1182–1184) + Genryaku (1184–1185) + Bunji (1185–1190) + Kenkyū (1190–1199) + Shōji (1199–1201) + Kennin (1201–1204) + Genkyū (1204–1206) + Ken’ei (1206–1207) + Jōgen (1207–1211) + Kenryaku (1211–1213) + Kenpō (1213–1219) + Jōkyū (1219–1222) + Jōō (1222–1224) + Gennin (1224–1225) + Karoku (1225–1227) + Antei (1227–1229) + Kanki (1229–1232) + Jōei (1232–1233) + Tenpuku (1233–1234) + Bunryaku (1234–1235) + Katei (1235–1238) + Ryakunin (1238–1239) + En’ō (1239–1240) + Ninji (1240–1243) + Kangen (1243–1247) + Hōji (1247–1249) + Kenchō (1249–1256) + Kōgen (1256–1257) + Shōka (1257–1259) + Shōgen (1259–1260) + Bun’ō (1260–1261) + Kōchō (1261–1264) + Bun’ei (1264–1275) + Kenji (1275–1278) + Kōan (1278–1288) + Shōō (1288–1293) + Einin (1293–1299) + Shōan (1299–1302) + Kengen (1302–1303) + Kagen (1303–1306) + Tokuji (1306–1308) + Enkyō (1308–1311) + Ōchō (1311–1312) + Shōwa (1312–1317) + Bunpō (1317–1319) + Genō (1319–1321) + Genkō (1321–1324) + Shōchū (1324–1326) + Karyaku (1326–1329) + Gentoku (1329–1331) + Genkō (1331–1334) + Kenmu (1334–1336) + Engen (1336–1340) + Kōkoku (1340–1346) + Shōhei (1346–1370) + Kentoku (1370–1372) + Bunchū (1372–1375) + Tenju (1375–1379) + Kōryaku (1379–1381) + Kōwa (1381–1384) + Genchū (1384–1392) + Meitoku (1384–1387) + Kakei (1387–1389) + Kōō (1389–1390) + Meitoku (1390–1394) + Ōei (1394–1428) + Shōchō (1428–1429) + Eikyō (1429–1441) + Kakitsu (1441–1444) + Bun’an (1444–1449) + Hōtoku (1449–1452) + Kyōtoku (1452–1455) + Kōshō (1455–1457) + Chōroku (1457–1460) + Kanshō (1460–1466) + Bunshō (1466–1467) + Ōnin (1467–1469) + Bunmei (1469–1487) + Chōkyō (1487–1489) + Entoku (1489–1492) + Meiō (1492–1501) + Bunki (1501–1504) + Eishō (1504–1521) + Taiei (1521–1528) + Kyōroku (1528–1532) + Tenbun (1532–1555) + Kōji (1555–1558) + Eiroku (1558–1570) + Genki (1570–1573) + Tenshō (1573–1592) + Bunroku (1592–1596) + Keichō (1596–1615) + Genna (1615–1624) + Kan’ei (1624–1644) + Shōho (1644–1648) + Keian (1648–1652) + Jōō (1652–1655) + Meireki (1655–1658) + Manji (1658–1661) + Kanbun (1661–1673) + Enpō (1673–1681) + Tenna (1681–1684) + Jōkyō (1684–1688) + Genroku (1688–1704) + Hōei (1704–1711) + Shōtoku (1711–1716) + Kyōhō (1716–1736) + Genbun (1736–1741) + Kanpō (1741–1744) + Enkyō (1744–1748) + Kan’en (1748–1751) + Hōreki (1751–1764) + Meiwa (1764–1772) + An’ei (1772–1781) + Tenmei (1781–1789) + Kansei (1789–1801) + Kyōwa (1801–1804) + Bunka (1804–1818) + Bunsei (1818–1830) + Tenpō (1830–1844) + Kōka (1844–1848) + Kaei (1848–1854) + Ansei (1854–1860) + Man’en (1860–1861) + Bunkyū (1861–1864) + Genji (1864–1865) + Keiō (1865–1868) + M + T + S + H + - - + @@ -156,9 +155,6 @@ For terms of use, see http://www.unicode.org/copyright.html E d 'au' E d MMM E d MMM 'au' E d MMM - - MM/y – MM/y - d/MM/y – d/MM/y d/MM/y – d/MM/y diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_BF.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_BF.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_BF.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_BF.xml index b4480e432df..2215e2b3f9b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_BF.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_BF.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_BI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_BI.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_BI.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_BI.xml index edf0f7fbfba..836dd1a4ba9 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_BI.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_BI.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_BJ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_BJ.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_BJ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_BJ.xml index 1d5f7ef3ef1..bafef01ed48 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_BJ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_BJ.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_BL.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_BL.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_BL.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_BL.xml index 7c49aab3ccf..636c4197963 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_BL.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_BL.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CA.xml similarity index 56% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CA.xml index 171198cfaff..6ebb67c831b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CA.xml @@ -1,36 +1,45 @@ - - - + - luo + araukan + luo + Meta’ + bas allemand - Bélarus + Europe orientale + Bélarus Îles Cocos (Keeling) - Micronésie - Saint-Vincent-et-les Grenadines + Micronésie + Saint-Martin (France) + Myanmar + Saint-Martin (Pays-Bas) + Tokelau + Saint-Vincent-et-les Grenadines - Ordre de tri du dictionnaire - Calendrier éthiopien de l’An de grâce - Chiffres mongols - Ordre de tri réformé - chiffres tamouls traditionnels + Calendrier éthiopien de l’An de grâce + Ordre de tri du dictionnaire + Ordre de tri réformé + Rechercher par consonne initiale en hangeul + chiffres gujaratis + Chiffres mongols + chiffres tamouls traditionnels accents @@ -90,60 +99,36 @@ For terms of use, see http://www.unicode.org/copyright.html - - - - janv. - févr. - mars - avr. - mai - juin - juil. - août - sept. - oct. - nov. - déc. - - - janvier - février - mars - avril - mai - juin - juillet - août - septembre - octobre - novembre - décembre - - - - - - - dim. - lun. - mar. - mer. - jeu. - ven. - sam. - - - dimanche - lundi - mardi - mercredi - jeudi - vendredi - samedi - - - + + + + min. + midi + mat. + après-midi + soir + du matin + + + minuit + a + midi + p + mat. + après-midi + soir + nuit + + + minuit + midi + du matin + de l’après-midi + du soir + du matin + + + @@ -152,6 +137,11 @@ For terms of use, see http://www.unicode.org/copyright.html + + + {1} {0} + + M-d E M-d @@ -166,8 +156,19 @@ For terms of use, see http://www.unicode.org/copyright.html d – d + + h 'h' a – h 'h' a + h 'h' – h 'h' a + + + H 'h' – H 'h' + h 'h' a – h 'h' a v + h 'h' – h 'h' a v + + + H 'h' – H 'h' v MM-dd – MM-dd @@ -224,35 +225,8 @@ For terms of use, see http://www.unicode.org/copyright.html Il y a {0} ans - - - Dans {0} mois - Dans {0} mois - - - Il y a {0} mois - Il y a {0} mois - - - - - Dans {0} semaine - Dans {0} semaines - - - Il y a {0} semaine - Il y a {0} semaines - - - - - Dans {0} jour - Dans {0} jours - - - Il y a {0} jour - Il y a {0} jours - + + a @@ -260,14 +234,14 @@ For terms of use, see http://www.unicode.org/copyright.html dans {0} j - + - Dans {0} heure - Dans {0} heures + +{0} h + +{0} h - Il y a {0} heure - Il y a {0} heures + -{0} h + -{0} h @@ -280,28 +254,18 @@ For terms of use, see http://www.unicode.org/copyright.html Il y a {0} minutes - - - Dans {0} seconde - Dans {0} secondes - - - Il y a {0} seconde - Il y a {0} secondes - - - + {0} s - +{0} s + + {0} s + +{0} s - {0} (heure avancée) - {0} (heure normale) + {0} (heure avancée) + {0} (heure normale) - Barbade (La) + Barbade (La) Îles Féroé @@ -317,22 +281,31 @@ For terms of use, see http://www.unicode.org/copyright.html - Saint-Christophe-et-Niévès + Saint-Christophe-et-Niévès - Îles Caïmans + Îles Caïmans + + + Tripoli [Libye] - Ndjamena + Ndjamena + + + Beulah [Dakota du Nord] - New Salem, Dakota du Nord + New Salem, Dakota du Nord + + + Center [Dakota du Nord] - Vatican + Vatican - Saint Thomas + Saint Thomas @@ -343,7 +316,7 @@ For terms of use, see http://www.unicode.org/copyright.html - heure d’Afrique centrale + heure d’Afrique centrale @@ -353,21 +326,21 @@ For terms of use, see http://www.unicode.org/copyright.html - heure normale d’Afrique du Sud + heure normale d’Afrique du Sud - heure d’Afrique de l’Ouest - heure normale d’Afrique de l’Ouest - heure avancée d’Afrique de l’Ouest + heure d’Afrique de l’Ouest + heure normale d’Afrique de l’Ouest + heure avancée d’Afrique de l’Ouest - heure de l’Alaska - heure normale de l’Alaska - heure avancée de l’Alaska + heure de l’Alaska + heure normale de l’Alaska + heure avancée de l’Alaska @@ -379,16 +352,16 @@ For terms of use, see http://www.unicode.org/copyright.html - heure de l’Amazonie - heure normale de l’Amazonie - heure avancée de l’Amazonie + heure de l’Amazonie + heure normale de l’Amazonie + heure avancée de l’Amazonie - heure du Centre - heure normale du Centre - heure avancée du Centre + heure du Centre + heure normale du Centre + heure avancée du Centre HC @@ -398,9 +371,9 @@ For terms of use, see http://www.unicode.org/copyright.html - heure de l’Est - heure normale de l’Est - heure avancée de l’Est + heure de l’Est + heure normale de l’Est + heure avancée de l’Est HE @@ -410,9 +383,9 @@ For terms of use, see http://www.unicode.org/copyright.html - heure des Rocheuses - heure normale des Rocheuses - heure avancée des Rocheuses + heure des Rocheuses + heure normale des Rocheuses + heure avancée des Rocheuses HR @@ -422,9 +395,9 @@ For terms of use, see http://www.unicode.org/copyright.html - heure du Pacifique - heure normale du Pacifique - heure avancée du Pacifique + heure du Pacifique + heure normale du Pacifique + heure avancée du Pacifique HP @@ -441,9 +414,9 @@ For terms of use, see http://www.unicode.org/copyright.html - heure d’Apia - heure normale d’Apia - heure avancée d’Apia + heure d’Apia + heure normale d’Apia + heure avancée d’Apia @@ -462,16 +435,16 @@ For terms of use, see http://www.unicode.org/copyright.html - heure de l’Arabie - heure normale de l’Arabie - heure avancée de l’Arabie + heure de l’Arabie + heure normale de l’Arabie + heure avancée de l’Arabie - heure de l’Argentine - heure normale d’Argentine - heure avancée de l’Argentine + heure de l’Argentine + heure normale d’Argentine + heure avancée de l’Argentine @@ -483,170 +456,170 @@ For terms of use, see http://www.unicode.org/copyright.html - heure de l’Arménie - heure normale de l’Arménie - heure avancée d’Arménie + heure de l’Arménie + heure normale de l’Arménie + heure avancée d’Arménie - heure de l’Atlantique - heure normale de l’Atlantique - heure avancée de l’Atlantique + heure de l’Atlantique + heure normale de l’Atlantique + heure avancée de l’Atlantique - heure du centre de l’Australie - heure normale du centre de l’Australie - heure avancée du centre de l’Australie + heure du centre de l’Australie + heure normale du centre de l’Australie + heure avancée du centre de l’Australie - heure du centre-ouest de l’Australie - heure normale du centre-ouest de l’Australie - heure avancée du centre-ouest de l’Australie + heure du centre-ouest de l’Australie + heure normale du centre-ouest de l’Australie + heure avancée du centre-ouest de l’Australie - heure de l’Est de l’Australie - heure normale de l’Est de l’Australie - heure avancée de l’Est de l’Australie + heure de l’Est de l’Australie + heure normale de l’Est de l’Australie + heure avancée de l’Est de l’Australie - heure de l’Ouest de l’Australie - heure normale de l’Ouest de l’Australie - heure avancée de l’Ouest de l’Australie + heure de l’Ouest de l’Australie + heure normale de l’Ouest de l’Australie + heure avancée de l’Ouest de l’Australie - heure de l’Azerbaïdjan - heure normale de l’Azerbaïdjan - heure avancée d’Azerbaïdjan + heure de l’Azerbaïdjan + heure normale de l’Azerbaïdjan + heure avancée d’Azerbaïdjan - heure des Açores - heure normale des Açores - heure avancée des Açores + heure des Açores + heure normale des Açores + heure avancée des Açores - heure du Bangladesh - heure normale du Bangladesh - heure avancée du Bangladesh + heure du Bangladesh + heure normale du Bangladesh + heure avancée du Bangladesh - heure de Brasilia - heure normale de Brasilia - heure avancée de Brasilia + heure de Brasilia + heure normale de Brasilia + heure avancée de Brasilia - heure du Cap-Vert - heure normale du Cap-Vert - heure avancée du Cap-Vert + heure du Cap-Vert + heure normale du Cap-Vert + heure avancée du Cap-Vert - heure des îles Chatham - heure normale des Îles Chatham - heure avancée des Îles Chatham + heure des îles Chatham + heure normale des Îles Chatham + heure avancée des Îles Chatham - heure du Chili - heure normale du Chili - heure avancée du Chili + heure du Chili + heure normale du Chili + heure avancée du Chili - heure de Chine - heure normale de Chine - heure avancée de Chine + heure de Chine + heure normale de Chine + heure avancée de Chine - heure de Choibalsan - heure normale de Choibalsan - heure avancée de Choibalsan + heure de Choibalsan + heure normale de Choibalsan + heure avancée de Choibalsan - heure de Colombie - heure normale de Colombie - heure avancée de Colombie + heure de Colombie + heure normale de Colombie + heure avancée de Colombie - heure des îles Cook - heure normale des îles Cook - heure avancée des îles Cook + heure des îles Cook + heure normale des îles Cook + heure avancée des îles Cook - heure de Cuba - heure normale de Cuba - heure avancée de Cuba + heure de Cuba + heure normale de Cuba + heure avancée de Cuba - heure de l’île de Pâques - heure normale de l’île de Pâques - heure avancée de l’île de Pâques + heure de l’île de Pâques + heure normale de l’île de Pâques + heure avancée de l’île de Pâques - heure d’Europe centrale - heure normale d’Europe centrale - heure avancée d’Europe centrale + heure d’Europe centrale + heure normale d’Europe centrale + heure avancée d’Europe centrale - heure d’Europe de l’Est - heure normale d’Europe de l’Est - heure avancée d’Europe de l’Est + heure d’Europe de l’Est + heure normale d’Europe de l’Est + heure avancée d’Europe de l’Est - heure d’Europe de l’Ouest - heure normale d’Europe de l’Ouest - heure avancée d’Europe de l’Ouest + heure d’Europe de l’Ouest + heure normale d’Europe de l’Ouest + heure avancée d’Europe de l’Ouest - heure des îles Malouines - heure normale des îles Malouines - heure avancée des îles Malouines + heure des îles Malouines + heure normale des îles Malouines + heure avancée des îles Malouines - heure des îles Fidji - heure normale des îles Fidji - heure avancée des îles Fidji + heure des îles Fidji + heure normale des îles Fidji + heure avancée des îles Fidji @@ -656,51 +629,51 @@ For terms of use, see http://www.unicode.org/copyright.html - heure de la Géorgie - heure normale de la Géorgie - heure avancée de Géorgie + heure de la Géorgie + heure normale de la Géorgie + heure avancée de Géorgie - heure de l’Est du Groenland - heure normale de l’Est du Groenland - heure avancée de l’Est du Groenland + heure de l’Est du Groenland + heure normale de l’Est du Groenland + heure avancée de l’Est du Groenland - heure de l’Ouest du Groenland - heure normale de l’Ouest du Groenland - heure avancée de l’Ouest du Groenland + heure de l’Ouest du Groenland + heure normale de l’Ouest du Groenland + heure avancée de l’Ouest du Groenland - heure d’Hawaï-Aléoutiennes - heure normale d’Hawaï-Aléoutiennes - heure avancée d’Hawaï-Aléoutiennes + heure d’Hawaï-Aléoutiennes + heure normale d’Hawaï-Aléoutiennes + heure avancée d’Hawaï-Aléoutiennes - heure de Hong Kong - heure normale de Hong Kong - heure avancée de Hong Kong + heure de Hong Kong + heure normale de Hong Kong + heure avancée de Hong Kong - heure de Hovd - heure normale de Hovd - heure avancée de Hovd + heure de Hovd + heure normale de Hovd + heure avancée de Hovd - heure de l’Iran - heure normale d’Iran - heure avancée d’Iran + heure de l’Iran + heure normale d’Iran + heure avancée d’Iran @@ -712,16 +685,16 @@ For terms of use, see http://www.unicode.org/copyright.html - heure d’Israël - heure normale d’Israël - heure avancée d’Israël + heure d’Israël + heure normale d’Israël + heure avancée d’Israël - heure du Japon - heure normale du Japon - heure avancée du Japon + heure du Japon + heure normale du Japon + heure avancée du Japon @@ -733,9 +706,9 @@ For terms of use, see http://www.unicode.org/copyright.html - heure de la Corée - heure normale de la Corée - heure avancée de Corée + heure de la Corée + heure normale de la Corée + heure avancée de Corée @@ -747,9 +720,9 @@ For terms of use, see http://www.unicode.org/copyright.html - heure de Lord Howe - heure normale de Lord Howe - heure avancée de Lord Howe + heure de Lord Howe + heure normale de Lord Howe + heure avancée de Lord Howe @@ -768,30 +741,30 @@ For terms of use, see http://www.unicode.org/copyright.html - heure de Maurice - heure normale de Maurice - heure avancée de Maurice + heure de Maurice + heure normale de Maurice + heure avancée de Maurice - heure du Nord-Ouest du Mexique - heure normale du Nord-Ouest du Mexique - heure avancée du Nord-Ouest du Mexique + heure du Nord-Ouest du Mexique + heure normale du Nord-Ouest du Mexique + heure avancée du Nord-Ouest du Mexique - heure du Pacifique mexicain - heure normale du Pacifique mexicain - heure avancée du Pacifique mexicain + heure du Pacifique mexicain + heure normale du Pacifique mexicain + heure avancée du Pacifique mexicain - heure d’Oulan-Bator - heure normale d’Oulan-Bator - heure avancée d’Oulan-Bator + heure d’Oulan-Bator + heure normale d’Oulan-Bator + heure avancée d’Oulan-Bator @@ -803,23 +776,23 @@ For terms of use, see http://www.unicode.org/copyright.html - heure de la Nouvelle-Calédonie - heure normale de la Nouvelle-Calédonie - heure avancée de Nouvelle-Calédonie + heure de la Nouvelle-Calédonie + heure normale de la Nouvelle-Calédonie + heure avancée de Nouvelle-Calédonie - heure de la Nouvelle-Zélande - heure normale de la Nouvelle-Zélande - heure avancée de la Nouvelle-Zélande + heure de la Nouvelle-Zélande + heure normale de la Nouvelle-Zélande + heure avancée de la Nouvelle-Zélande - heure de Terre-Neuve - heure normale de Terre-Neuve - heure avancée de Terre-Neuve + heure de Terre-Neuve + heure normale de Terre-Neuve + heure avancée de Terre-Neuve HT @@ -829,9 +802,9 @@ For terms of use, see http://www.unicode.org/copyright.html - heure de Fernando de Noronha - heure normale de Fernando de Noronha - heure avancée de Fernando de Noronha + heure de Fernando de Noronha + heure normale de Fernando de Noronha + heure avancée de Fernando de Noronha @@ -850,37 +823,37 @@ For terms of use, see http://www.unicode.org/copyright.html - heure du Pakistan - heure normale du Pakistan - heure avancée du Pakistan + heure du Pakistan + heure normale du Pakistan + heure avancée du Pakistan - heure du Paraguay - heure normale du Paraguay - heure avancée du Paraguay + heure du Paraguay + heure normale du Paraguay + heure avancée du Paraguay - heure du Pérou - heure normale du Pérou - heure avancée du Pérou + heure du Pérou + heure normale du Pérou + heure avancée du Pérou - heure des Philippines - heure normale des Philippines - heure avancée des Philippines + heure des Philippines + heure normale des Philippines + heure avancée des Philippines - heure de Saint-Pierre-et-Miquelon - heure normale de Saint-Pierre-et-Miquelon - heure avancée de Saint-Pierre-et-Miquelon + heure de Saint-Pierre-et-Miquelon + heure normale de Saint-Pierre-et-Miquelon + heure avancée de Saint-Pierre-et-Miquelon @@ -892,23 +865,23 @@ For terms of use, see http://www.unicode.org/copyright.html - heure des Samoa - heure normale des Samoa - heure avancée des Samoa + heure des Samoa + heure normale des Samoa + heure avancée des Samoa - heure de Taipei - heure normale de Taipei - heure avancée de Taipei + heure de Taipei + heure normale de Taipei + heure avancée de Taipei - heure des Tonga - heure normale des Tonga - heure avancée de Tonga + heure des Tonga + heure normale des Tonga + heure avancée de Tonga @@ -920,23 +893,23 @@ For terms of use, see http://www.unicode.org/copyright.html - heure de l’Uruguay - heure normale de l’Uruguay - heure avancée de l’Uruguay + heure de l’Uruguay + heure normale de l’Uruguay + heure avancée de l’Uruguay - heure de l’Ouzbékistan - heure normale de l’Ouzbékistan - heure avancée de l’Ouzbékistan + heure de l’Ouzbékistan + heure normale de l’Ouzbékistan + heure avancée de l’Ouzbékistan - heure du Vanuatu - heure normale du Vanuatu - heure avancée de Vanuatu + heure du Vanuatu + heure normale du Vanuatu + heure avancée de Vanuatu @@ -948,29 +921,45 @@ For terms of use, see http://www.unicode.org/copyright.html - heure de Volgograd - heure normale de Volgograd - heure avancée de Volgograd + heure de Volgograd + heure normale de Volgograd + heure avancée de Volgograd - heure de Iakoutsk - heure normale de Iakoutsk - heure avancée de Iakoutsk + heure de Iakoutsk + heure normale de Iakoutsk + heure avancée de Iakoutsk - heure d’Ekaterinbourg - heure normale d’Ekaterinbourg - heure avancée d’Ekaterinbourg + heure d’Ekaterinbourg + heure normale d’Ekaterinbourg + heure avancée d’Ekaterinbourg + + + 0 milliard + 0 milliards + 00 milliard + 00 milliards + 000 milliard + 000 milliards + 0 billion + 0 billions + 00 billion + 00 billions + 000 billion + 000 billions + + 0 G @@ -988,6 +977,30 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + 0 mn ¤ + 0 mns ¤ + 00 mn ¤ + 00 mns ¤ + 000 mn ¤ + 000 mns ¤ + 0 md ¤ + 0 mds ¤ + 00 md ¤ + 00 mds ¤ + 000 md ¤ + 000 mds ¤ + 0 bn ¤ + 0 bns ¤ + 00 bn ¤ + 00 bns ¤ + 000 bn ¤ + 000 bns ¤ + + + ARS @@ -1023,9 +1036,9 @@ For terms of use, see http://www.unicode.org/copyright.html FJD - livre des Îles Malouines - livre des Îles Malouines - livres des Îles Malouines + livre des Îles Malouines + livre des Îles Malouines + livres des Îles Malouines FKP @@ -1040,12 +1053,12 @@ For terms of use, see http://www.unicode.org/copyright.html ILS - - INR - ¥ + + CF + KRW @@ -1058,6 +1071,9 @@ For terms of use, see http://www.unicode.org/copyright.html NAD + + C$ + $ NZ @@ -1067,11 +1083,19 @@ For terms of use, see http://www.unicode.org/copyright.html $ SG - - THB + + SRD + + + pa’anga + pa’anga + pa’angas + + + TL - dollar de Trinité-et-Tobago + dollar de Trinité-et-Tobago TTD @@ -1092,6 +1116,14 @@ For terms of use, see http://www.unicode.org/copyright.html XPF + + Devise inconnue + (devise inconnue) + (devise inconnue) + + + ZK + @@ -1099,46 +1131,62 @@ For terms of use, see http://www.unicode.org/copyright.html force G - - acres - {0} acre - {0} acres + + {0} seconde d’angle + {0} secondes d’angle milles carrés {0} mille carré {0} milles carrés + + acres + {0} acre + {0} acres + verges carrées {0} verge carrée {0} verges carrées + + {0} litre au 100 kilomètres + {0} litres au 100 kilomètres + - milles au gallon - {0} mille au gallon - {0} milles au gallon + milles au gallon + {0} mille au gallon + {0} milles au gallon {0} à la seconde - mille - {0} mille - {0} milles + mille + {0} mille + {0} milles verges {0} verge {0} verges + + {0} par kilogramme + kilomètres à l’heure - milles à l’heure - {0} mille à l’heure - {0} milles à l’heure + milles à l’heure + {0} mille à l’heure + {0} milles à l’heure + + + ° + {0}° + {0}° milles cubes @@ -1150,16 +1198,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} verge cube {0} verges cubes - - chopine - {0} chopine - {0} chopines - pintes {0} pinte {0} pintes + + chopine + {0} chopine + {0} chopines + cuillères à thé {0} cuillère à thé @@ -1167,95 +1215,100 @@ For terms of use, see http://www.unicode.org/copyright.html - - {0} pi² - {0} pi² - vg² {0} vg² {0} vg² - - {0} ua - {0} ua + + {0} pi² + {0} pi² - - {0} pi - {0} pi - - - al - {0} al - {0} al - - - NM - {0} NM - {0} NM + + carats vg {0} vg {0} vg + + {0} pi + {0} pi + + + {0} ua + {0} ua + + + NM + {0} NM + {0} NM + tc {0} tc {0} tc - - carats - - - cL - {0} cL - {0} cL - - - {0} pi³ - {0} pi³ + + psi + {0} psi + {0} psi vg³ {0} vg³ {0} vg³ - - dL - {0} dL - {0} dL - - - oz liq. - {0} oz liq. - {0} oz liq. - - - hL - {0} hL - {0} hL + + {0} pi³ + {0} pi³ ML {0} ML {0} ML + + hL + {0} hL + {0} hL + + + L + {0} L + {0} L + + + dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL + mL {0} mL {0} mL - - chop - {0} chop - {0} chop - pte {0} pte {0} pte + + chop + {0} chop + {0} chop + + + oz liq. + {0} oz liq. + {0} oz liq. + c. à t. {0} c. à t. @@ -1263,10 +1316,20 @@ For terms of use, see http://www.unicode.org/copyright.html + + L/100 km + {0} L/100 km + {0} L/100 km + {0} °C {0} °C + + L + {0}L + {0}L + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CD.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CD.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CD.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CD.xml index 239f0cdf24c..d433d83f4d4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CD.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CD.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CF.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CF.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CF.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CF.xml index c630f9311a9..3f92cbe53bc 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CF.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CF.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CG.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CG.xml index c5d0cd5391d..69b1da4b08c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CG.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CH.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CH.xml index dd249193f55..25ba71596f0 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CH.xml @@ -1,17 +1,19 @@ - - - + + + kurde méridional + Région micronésienne A.R. yougoslave de Macédoine @@ -222,6 +224,13 @@ For terms of use, see http://www.unicode.org/copyright.html . + + + + #,##0% + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CI.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CI.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CI.xml index 0a13228a5b2..017eb2adbd0 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CI.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CI.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CM.xml index 8ab7f2c20a8..8bfbe657a69 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_CM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_CM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_DJ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_DJ.xml new file mode 100644 index 00000000000..14a1e28f41b --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_DJ.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + + + + + Fdj + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_DZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_DZ.xml new file mode 100644 index 00000000000..f246d5187c1 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_DZ.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + + + + + DA + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_FR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_FR.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_FR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_FR.xml index 302f7e2f5b0..ba77e5d7c95 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_FR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_FR.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_GA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_GA.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_GA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_GA.xml index ed53200de83..28d305e6663 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_GA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_GA.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ne_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_GF.xml similarity index 66% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ne_IN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_GF.xml index 6c1c54380ed..7fc4d8d779b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ne_IN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_GF.xml @@ -6,16 +6,15 @@ For terms of use, see http://www.unicode.org/copyright.html --> - - - - + + + - + - IST + GFT diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_GN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_GN.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_GN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_GN.xml index 98ead9ccbd8..f625ee88ebd 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_GN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_GN.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_GP.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_GP.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_GP.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_GP.xml index bdfa5a46b94..6a12d63dc52 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_GP.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_GP.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_GQ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_GQ.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_GQ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_GQ.xml index d45ea59700c..f289788f3a3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_GQ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_GQ.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_HT.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_HT.xml new file mode 100644 index 00000000000..ed493ccf454 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_HT.xml @@ -0,0 +1,115 @@ + + + + + + + + + + + + + jr. + + + jr. + + + dim dernier + ce dim + dim prochain + + + lun dernier + ce lun + lun prochain + + + mar dernier + ce mar + mar prochain + + + mer dernier + ce mer + mer prochain + + + jeu dernier + ce jeu + jeu prochain + + + ven dernier + ce ven + ven prochain + + + sam dernier + ce sam + sam prochain + + + hr + + + hr + + + min. + + + min. + + + sec. + + + + + + + G + + + + + + + carreau + {0}carreau + {0}carreaux + + + {0} pour chaque metre cube + + + {0} pour chaque centimetre cube + + + + + sec + + + {0}gr + {0}gr + + + kr + {0}kr + {0}kr + + + + + gr. + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_KM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_KM.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_KM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_KM.xml index 846f945d1ff..3ec9f6e5b18 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_KM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_KM.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_LU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_LU.xml similarity index 78% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_LU.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_LU.xml index d47640615d4..2131ce14b93 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_LU.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_LU.xml @@ -1,13 +1,12 @@ - - - + @@ -25,3 +24,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MA.xml new file mode 100644 index 00000000000..065cb7e6234 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MA.xml @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + jan. + fév. + mar. + avr. + mai + jui. + juil. + août + sept. + oct. + nov. + déc. + + + + + jan. + fév. + mar. + avr. + mai + jui. + juil. + août + sept. + oct. + nov. + déc. + + + + + + + a.m. + p.m. + + + + + + + + + . + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MC.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MC.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MC.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MC.xml index cb89a3cd08c..a18c327d5b4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MC.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MC.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MF.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MF.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MF.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MF.xml index 24939ac9efb..0ae4d4718a9 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MF.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MF.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MG.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MG.xml index 35de875bcbf..b4c4f2ed772 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MG.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_ML.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_ML.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_ML.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_ML.xml index e2ae105d906..5fe8bb19598 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_ML.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_ML.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MQ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MQ.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MQ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MQ.xml index eee2710c79f..a68029a2d3d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MQ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MQ.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MR.xml new file mode 100644 index 00000000000..00eeeac49c6 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MR.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + + + + + UM + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MU.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MU.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MU.xml index 375d7df586b..51f59a9035d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_MU.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_MU.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_NC.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_NC.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_NC.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_NC.xml index aa07b4ac9ed..57e9aefa53c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_NC.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_NC.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_NE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_NE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_NE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_NE.xml index f20d59f2726..f05458810bb 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_NE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_NE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_PF.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_PF.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_PF.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_PF.xml index 9bbf5e220a3..474028f5ff6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_PF.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_PF.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_PM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_PM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_PM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_PM.xml index 7883b6a9130..42dc6d711e6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_PM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_PM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_RE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_RE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_RE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_RE.xml index cdd471bd585..d967b126059 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_RE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_RE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_RW.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_RW.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_RW.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_RW.xml index 51be6a20818..81ddfe66a43 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_RW.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_RW.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_SC.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_SC.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_SC.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_SC.xml index 964715550af..3c98d8412d7 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_SC.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_SC.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_SN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_SN.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_SN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_SN.xml index 9aacf4c57b9..9877461033a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_SN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_SN.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_SY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_SY.xml new file mode 100644 index 00000000000..1b5a8f37267 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_SY.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + + + + + LS + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_TD.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_TD.xml new file mode 100644 index 00000000000..c397699e31a --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_TD.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_TG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_TG.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_TG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_TG.xml index da88a40fc74..459af7b03d4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_TG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_TG.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_TN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_TN.xml new file mode 100644 index 00000000000..548cfb19d50 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_TN.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + + + + + DT + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_VU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_VU.xml new file mode 100644 index 00000000000..facefde2aae --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_VU.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + + + + + VT + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_WF.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_WF.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_WF.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_WF.xml index 50d74348a15..6ca537be4df 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_WF.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_WF.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_YT.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_YT.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_YT.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_YT.xml index 44c551e1078..e4089a84465 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fr_YT.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fr_YT.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fur.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fur.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fur.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fur.xml index a1abea2f21b..66accdf4e18 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fur.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fur.xml @@ -1,13 +1,12 @@ - - - + @@ -303,7 +302,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albanie Armenie - Antilis olandesis Angola Antartic Argjentine @@ -580,24 +578,24 @@ For terms of use, see http://www.unicode.org/copyright.html monede - ordin cinês tradizionâl - Big5 - calendari budist - calendari cinês - ordenament predeterminât Unicode - ordin cinês semplificât - GB2312 - calendari gregorian - calendari ebreu - calendari nazionâl indian - calendari islamic - calendari islamic civîl - calendari gjaponês - numars ocidentâi - ordin elenc telefonic - ordin pinyin - calendari de Republiche di Cine - ricercje par fins gjenerâi - ordin segns - ordin tradizionâl + calendari budist + calendari cinês + calendari gregorian + calendari ebreu + calendari nazionâl indian + calendari islamic + calendari islamic civîl + calendari gjaponês + calendari de Republiche di Cine + ordin cinês tradizionâl - Big5 + ordenament predeterminât Unicode + ordin cinês semplificât - GB2312 + ordin elenc telefonic + ordin pinyin + ricercje par fins gjenerâi + ordin segns + ordin tradizionâl + numars ocidentâi metric @@ -956,6 +954,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + a. + p. + a. p. @@ -1366,6 +1368,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0M + ¤ 0M + ¤ 00M + ¤ 00M + ¤ 000M + ¤ 000M + ¤ 0G + ¤ 0G + ¤ 00G + ¤ 00G + ¤ 000G + ¤ 000G + ¤ 0T + ¤ 0T + ¤ 00T + ¤ 00T + ¤ 000T + ¤ 000T + + {0} {1} {0} {1} @@ -1622,6 +1652,21 @@ For terms of use, see http://www.unicode.org/copyright.html + + agns + {0} an + {0} agns + + + mês + {0} mês + {0} mês + + + setemanis + {0} setemane + {0} setemanis + zornadis {0} zornade @@ -1637,28 +1682,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} minût {0} minûts - - mês - {0} mês - {0} mês - seconts {0} secont {0} seconts - - setemanis - {0} setemane - {0} setemanis - - - agns - {0} an - {0} agns - + + agns + + + mês + + + setemanis + zornadis @@ -1668,18 +1707,9 @@ For terms of use, see http://www.unicode.org/copyright.html minûts - - mês - seconts - - setemanis - - - agns - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fur_IT.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fur_IT.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fur_IT.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fur_IT.xml index 7764abed76b..d5c82184da5 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fur_IT.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fur_IT.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fy.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fy.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fy.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fy.xml index 5edd5f38ca2..6c1ed86b38f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fy.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fy.xml @@ -1,13 +1,12 @@ - - - + @@ -452,8 +451,8 @@ For terms of use, see http://www.unicode.org/copyright.html Soemerysk Zweeds Swahili + Congo Swahili Shimaore - Congo Swahili Klassiek Syrysk Syrysk Tamil @@ -734,7 +733,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albanië Armenië - Nederlânske Antillen Angola Antarctica Argentinië @@ -1078,95 +1076,95 @@ For terms of use, see http://www.unicode.org/copyright.html Privégebruik - Arabysk-Indyske sifers - Utwreide Arabysk-Indyske sifers - Armeense sifers - Kleine Armeense sifers - Balinese sifers - Bengaalse sifers - Tradisjonele-Sineeske soartear oarder - Big5 - Boeddhistyske kalinder - Sineeske kalinder - Koptyske kalinder - Devanagari sifers - Wurdboeksortearfolgorde - Standert Unikoade-sortearfolgorde - Ethiopyske sifers - Ethiopyske kalinder - Ethiopyske Amete Alem-kalinder - Finansjele sifers - sifers met volledige breedte - Ferienfâldigde-Sineeske sortearfolgorde - GB2312 - Georgyske sifers - Gregoriaanske kalinder - Griekse sifers - Kleine Griekse sifers - Gujarati sifers - Gurmukhi sifers - Sineeske desimale tallen - Ferienfâldigde Sineeske sifers - Ferienfâldigde Sineeske finansjele sifers - Traditjonele Sineeske sifers - Traditjonele Sineeske finansjele sifers - Hebreeuwse sifers - Hebreeuwse kalinder - Alles sortearje - Indiase natjonale kalinder - Islamityske kalinder - Islamityske kalinder (cyclysk) - Japanske kalinder - Javaanske sifers - Japanske sifers - Japanske finansjele sifers - Khmer sifers - Kannada sifers - Laotiaanske sifers - Westerse sifers - Eerst sortearje op kleine letters - Malayalam sifers - Mongoolse sifers - Myanmarese sifers - Binnenlânse sifers - Normaal sortearje neffens accenten - Sortearfolgorde algemien haadletterbrûkme - Net haadlettergefoelich sortearje - Kana apart sortearje - Sûnder normalisaasje sortearje - Sifers apart sortearje - Symbolen sortearje - Oriya sifers - Perzyske kalinder - Telefoanboeksortearfolgorde - Fonetyske sortearfolgorde - Pinyinvolgorde - Allime sortearje neffens letters - sortearje neffens aksinten/haadletterbrûkme/breedte/Kana - Hersjoen sortearfolgorde - Kalinder fan de Sineeske Republyk - Romeinske sifers - Lytse Romeinske sifers - Algemien sykje - Sykje op earste Hangul-medeklinker - Sortearje op accenten - Sortearje zonder symbolen - standert sortearfolgorde - Streeksortearfolgorde - Tradisjonele Tamil sifers - Tamil sifers - Telugu sifers - sortearje neffens aksinten/haadletterbrûkme/breedte - Thaise sifers - Tibetaanske sifers - Tradisjonele sortearfolgorde - Tradisjonele sifers - Sortearfolgorde radicalen/strepen - Eerst sortearje op haadletters - Vai-sifers - Omgekeerd sortearje op accenten - Hoofdlettergevoelig sortearje - Kana oars sortearje - Unicode genormaliseerd sortearje - Sifers numeryk sortearje + Boeddhistyske kalinder + Sineeske kalinder + Koptyske kalinder + Ethiopyske kalinder + Ethiopyske Amete Alem-kalinder + Gregoriaanske kalinder + Hebreeuwse kalinder + Indiase natjonale kalinder + Islamityske kalinder + Islamityske kalinder (cyclysk) + Japanske kalinder + Perzyske kalinder + Kalinder fan de Sineeske Republyk + Symbolen sortearje + Sortearje zonder symbolen + Normaal sortearje neffens accenten + Omgekeerd sortearje op accenten + Eerst sortearje op kleine letters + Sortearfolgorde algemien haadletterbrûkme + Eerst sortearje op haadletters + Net haadlettergefoelich sortearje + Hoofdlettergevoelig sortearje + Kana apart sortearje + Kana oars sortearje + Tradisjonele-Sineeske soartear oarder - Big5 + Wurdboeksortearfolgorde + Standert Unikoade-sortearfolgorde + Ferienfâldigde-Sineeske sortearfolgorde - GB2312 + Telefoanboeksortearfolgorde + Fonetyske sortearfolgorde + Pinyinvolgorde + Hersjoen sortearfolgorde + Algemien sykje + Sykje op earste Hangul-medeklinker + standert sortearfolgorde + Streeksortearfolgorde + Tradisjonele sortearfolgorde + Sortearfolgorde radicalen/strepen + Sûnder normalisaasje sortearje + Unicode genormaliseerd sortearje + Sifers apart sortearje + Sifers numeryk sortearje + Alles sortearje + Allime sortearje neffens letters + sortearje neffens aksinten/haadletterbrûkme/breedte/Kana + Sortearje op accenten + sortearje neffens aksinten/haadletterbrûkme/breedte + Arabysk-Indyske sifers + Utwreide Arabysk-Indyske sifers + Armeense sifers + Kleine Armeense sifers + Balinese sifers + Bengaalse sifers + Devanagari sifers + Ethiopyske sifers + Finansjele sifers + sifers met volledige breedte + Georgyske sifers + Griekse sifers + Kleine Griekse sifers + Gujarati sifers + Gurmukhi sifers + Sineeske desimale tallen + Ferienfâldigde Sineeske sifers + Ferienfâldigde Sineeske finansjele sifers + Traditjonele Sineeske sifers + Traditjonele Sineeske finansjele sifers + Hebreeuwse sifers + Javaanske sifers + Japanske sifers + Japanske finansjele sifers + Khmer sifers + Kannada sifers + Laotiaanske sifers + Westerse sifers + Malayalam sifers + Mongoolse sifers + Myanmarese sifers + Binnenlânse sifers + Oriya sifers + Romeinske sifers + Lytse Romeinske sifers + Tradisjonele Tamil sifers + Tamil sifers + Telugu sifers + Thaise sifers + Tibetaanske sifers + Tradisjonele sifers + Vai-sifers BGN @@ -1345,6 +1343,31 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + begjin fan de maitiid + reinwetter + ynsekten ûntweitsje + maitiidpunt + ljocht en helder + begjien fan de simmer + simmerpunt + waarm + hjit + begjin fan de hjerst + ein fan de hjittens + wite dauwe + hjerstpunt + kâlde dauwe + earste froast + begjin fan de winter + lichte snie + swiere snie + winterpunt + + + @@ -1847,6 +1870,46 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + M01 + M02 + M03 + M04 + M05 + M06 + M07 + M08 + M09 + M10 + M11 + M12 + + + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + + + + ERA0 + ERA1 + + @@ -2031,7 +2094,7 @@ For terms of use, see http://www.unicode.org/copyright.html feb. mrt. apr. - mai + mai. jun. jul. aug. @@ -2237,16 +2300,15 @@ For terms of use, see http://www.unicode.org/copyright.html - 12 oere ‘s middeis + AM + PM AM - n PM AM - 12 oere ‘s middeis PM @@ -2348,6 +2410,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d E h:mm a E HH:mm @@ -2363,6 +2426,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d-M E d-M @@ -3077,6 +3144,48 @@ For terms of use, see http://www.unicode.org/copyright.html {0} jier lyn + + Fearnsjier + foarich fearnsjier + dit fearnsjier + folgjend fearnsjier + + oer {0} fearnsjier + oer {0} fearnsjier + + + {0} fearnsjier lyn + {0} fearnsjier lyn + + + + fearnsjier + foarich fearnsjier + dit fearnsjier + folgjend fearnsjier + + oer {0} fearnsjier + oer {0} fearnsjier + + + {0} fearnsjier lyn + {0} fearnsjier lyn + + + + fearnsjier + foarich fearnsjier + dit fearnsjier + folgjend fearnsjier + + oer {0} fearnsjier + oer {0} fearnsjier + + + {0} fearnsjier lyn + {0} fearnsjier lyn + + Moanne foarige moanne @@ -3313,6 +3422,9 @@ For terms of use, see http://www.unicode.org/copyright.html Addis Abeba + + Helsinky + Chuuk @@ -3402,6 +3514,9 @@ For terms of use, see http://www.unicode.org/copyright.html Luxemburg + + Monako + Maldiven @@ -3420,6 +3535,9 @@ For terms of use, see http://www.unicode.org/copyright.html Nouméa + + Amsterdam + Kathmandu @@ -4508,6 +4626,11 @@ For terms of use, see http://www.unicode.org/copyright.html + latn + + latn + + 1 , . @@ -4520,6 +4643,7 @@ For terms of use, see http://www.unicode.org/copyright.html NaN + : @@ -4607,6 +4731,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00;(¤ #,##0.00) + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0 mln'.' + ¤ 0 mln'.' + ¤ 00 mln'.' + ¤ 00 mln'.' + ¤ 000 mln'.' + ¤ 000 mln'.' + ¤ 0 mld'.' + ¤ 0 mld'.' + ¤ 00 mld'.' + ¤ 00 mld'.' + ¤ 000 mld'.' + ¤ 000 mld'.' + ¤ 0 bln'.' + ¤ 0 bln'.' + ¤ 00 bln'.' + ¤ 00 bln'.' + ¤ 000 bln'.' + ¤ 000 bln'.' + + {0} {1} {0} {1} @@ -5092,6 +5244,7 @@ For terms of use, see http://www.unicode.org/copyright.html Brits pûn Brits pûn £ + £ Georgyske kupon larit @@ -5203,6 +5356,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ierske pûn Ierske pûn Ierske pûn + IEP Israëlysk pûn @@ -5930,21 +6084,25 @@ For terms of use, see http://www.unicode.org/copyright.html Europeeske gearfoege ienheid Europeeske gearfoege ienheid Europeeske gearfoege ienheid + XBA Europeeske monetaire ienheid Europeeske monetaire ienheid Europeeske monetaire ienheid + XBB Europeeske rekkenienheid (XBC) Europeeske rekkenienheid (XBC) Europeeske rekkenienheid (XBC) + XBC Europeeske rekkenienheid (XBD) Europeeske rekkenienheid (XBD) Europeeske rekkenienheid (XBD) + XBD East-Karibyske dollar @@ -5966,11 +6124,13 @@ For terms of use, see http://www.unicode.org/copyright.html Franse gouden franc Franse gouden franc Franse gouden franc + XFO Franse UIC-franc Franse UIC-franc Franse UIC-franc + XFU CFA-franc BCEAO @@ -5998,6 +6158,7 @@ For terms of use, see http://www.unicode.org/copyright.html RINET-fondsen RINET-fondsen RINET-fondsen + XRE Sucre @@ -6008,16 +6169,19 @@ For terms of use, see http://www.unicode.org/copyright.html Valutacode voor testdoeleinden Valutacode voor testdoeleinden Valutacode voor testdoeleinden + XTS ADB-rekkenienheid ADB-rekkenienheid ADB-rekkenienheid + XUA Unbekende muntienheid Unbekende muntienheid Unbekende muntienheid + XXX Jemenityske dinar @@ -6110,6 +6274,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G-kracht {0} G-krachten + + booggraden + {0} booggraad + {0} booggraden + boogminuten {0} boogminút @@ -6120,31 +6289,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} boogsekonde {0} boogsekonden - - booggraden - {0} booggraad - {0} booggraden - - - ares - {0} are - {0} ares + + fjouwerkante kilometer + {0} fjouwerkante kilometer + {0} fjouwerkante kilometer hektare {0} hektare {0} hektare - - fjouwerkante foet - {0} fjouwerkante foet - {0} fjouwerkante foet - - - fjouwerkante kilometer - {0} fjouwerkante kilometer - {0} fjouwerkante kilometer - fjouwerkante meter {0} fjouwerkante meter @@ -6155,6 +6309,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} fjouwerkante myl {0} fjouwerkante myl + + ares + {0} are + {0} ares + + + fjouwerkante foet + {0} fjouwerkante foet + {0} fjouwerkante foet + + + jier + {0} jier + {0} jier + + + moanneen + {0} moanne + {0} moanneen + + + wiken + {0} wike + {0} wiken + deien {0} dei @@ -6165,70 +6344,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} oere {0} oere - - millisekonden - {0} millisekonde - {0} millisekonden - minuten {0} minút {0} minuten - - moanneen - {0} moanne - {0} moanneen - sekonden {0} sekonde {0} sekonden - - wiken - {0} wike - {0} wiken - - - jier - {0} jier - {0} jier - - - sentimeter - {0} sentimeter - {0} sentimeter - - - foet - {0} foet - {0} foet - - - tommen - {0} tomme - {0} tommen + + millisekonden + {0} millisekonde + {0} millisekonden kilometer {0} kilometer {0} kilometer - - ljochtjier - {0} ljochtjier - {0} ljochtjier - meter {0} meter {0} meter - - myl - {0} myl - {0} myl + + sentimeter + {0} sentimeter + {0} sentimeter millimeter @@ -6240,35 +6384,50 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pikometer {0} pikometer + + myl + {0} myl + {0} myl + yards {0} yard {0} yards - - gram - {0} gram - {0} gram + + foet + {0} foet + {0} foet + + + tommen + {0} tomme + {0} tommen + + + ljochtjier + {0} ljochtjier + {0} ljochtjier kilogram {0} kilogram {0} kilogram - - oz - {0} oz - {0} oz + + gram + {0} gram + {0} gram lb {0} lb {0} lb - - hynstekrêften - {0} hynstekrêft - {0} hynstekrêften + + oz + {0} oz + {0} oz kilowatt @@ -6280,6 +6439,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} watt {0} watt + + hynstekrêften + {0} hynstekrêft + {0} hynstekrêften + hektopaskal {0} hektopaskal @@ -6345,6 +6509,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + booggraden + {0}° + {0}° + boogminuten {0}′ @@ -6355,31 +6524,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - booggraden - {0}° - {0}° - - - ares - {0} are - {0} ares + + fjouwerkante kilometer + {0} km² + {0} km² hektare {0} ha {0} ha - - fjouwerkante foet - {0} ft² - {0} ft² - - - fjouwerkante kilometer - {0} km² - {0} km² - fjouwerkante meter {0} m² @@ -6390,6 +6544,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + ares + {0} are + {0} ares + + + fjouwerkante foet + {0} ft² + {0} ft² + + + jier + {0} jr + {0} jr + + + moanneen + {0} mn + {0} mn + + + wiken + {0} wk + {0} wkn + deien {0} dei @@ -6400,70 +6579,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} oere {0} oere - - millisekonden - {0} ms - {0} ms - minuten {0} min {0} min - - moanneen - {0} mn - {0} mn - sekonden {0} sek. {0} sek. - - wiken - {0} wk - {0} wkn - - - jier - {0} jr - {0} jr - - - sentimeter - {0} sm - {0} sm - - - foet - {0} ft - {0} ft - - - tommen - {0} tm - {0} tm + + millisekonden + {0} ms + {0} ms kilometer {0} km {0} km - - ljochtjier - {0} lj - {0} lj - meter {0} m {0} m - - myl - {0} mi - {0} mi + + sentimeter + {0} sm + {0} sm millimeter @@ -6475,35 +6619,50 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + myl + {0} mi + {0} mi + yards {0} yd {0} yd - - gram - {0} g - {0} g + + foet + {0} ft + {0} ft + + + tommen + {0} tm + {0} tm + + + ljochtjier + {0} lj + {0} lj kilogram {0} kg {0} kg - - oz - {0} oz - {0} oz + + gram + {0} g + {0} g lb {0} lb {0} lb - - hynstekrêften - {0} pk - {0} pk + + oz + {0} oz + {0} oz kilowatt @@ -6515,6 +6674,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + hynstekrêften + {0} pk + {0} pk + hektopaskal {0} hPa @@ -6579,6 +6743,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}′ {0}′ @@ -6587,26 +6755,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} acre - {0} acres + + {0} km² + {0} km² {0} ha {0} ha - - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} m² {0} m² @@ -6615,6 +6771,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} acre + {0} acres + + + {0} ft² + {0} ft² + + + {0} jr + {0} jr + + + {0} m + {0} m + + + {0} w + {0} w + {0} d {0} d @@ -6623,57 +6799,29 @@ For terms of use, see http://www.unicode.org/copyright.html {0} u {0} u - - {0} ms - {0} ms - {0} m {0} m - - {0} m - {0} m - {0} s {0} s - - {0} w - {0} w - - - {0} jr - {0} jr - - - {0} cm - {0} cm - - - {0} ft - {0} ft - - - {0}" - {0}" + + {0} ms + {0} ms {0} km {0} km - - {0} lj - {0} lj - {0} m {0} m - - {0} mi - {0} mi + + {0} cm + {0} cm {0} mm @@ -6683,29 +6831,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} mi + {0} mi + {0} yd {0} yd - - {0} g - {0} g + + {0} ft + {0} ft + + + {0}" + {0}" + + + {0} lj + {0} lj {0} kg {0} kg - - {0} oz - {0} oz + + {0} g + {0} g {0} lb {0} lb - - {0} pk - {0} pk + + {0} oz + {0} oz {0} kW @@ -6715,6 +6875,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} pk + {0} pk + {0} hPa {0} hPa diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fy_NL.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fy_NL.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fy_NL.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fy_NL.xml index ec661d8eb0e..42eae923d27 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/fy_NL.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/fy_NL.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ga.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ga.xml similarity index 93% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ga.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ga.xml index 3637fdb19b7..06994c5f690 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ga.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ga.xml @@ -1,13 +1,12 @@ - - - + @@ -36,6 +35,7 @@ For terms of use, see http://www.unicode.org/copyright.html Aváiris Aidhmiris Asarbaiseáinis + Asairis Baiscíris Bailís Baváiris @@ -50,7 +50,7 @@ For terms of use, see http://www.unicode.org/copyright.html Buiriáitis Buiginis Catalóinis - Sisinis + Seisnis Seabúáinis Seamóiris Mairis @@ -199,6 +199,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ioruais Bokmål Ndeibéilis an Tuaiscirt Gearmáinis Íochtarach + Sacsainis Íochtarach Neipeailis Ndongais Níobhais @@ -262,7 +263,7 @@ For terms of use, see http://www.unicode.org/copyright.html Suiméiris Sualainnis Svahaílis - Svahaílis an Chongó + Svahaílis an Chongó Siricis Siléisis Tamailis @@ -430,7 +431,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angaíle An Albáin An Airméin - Aintillí na hÍsiltíre Angóla An Antartaice An Airgintín @@ -706,59 +706,73 @@ For terms of use, see http://www.unicode.org/copyright.html Féilire Ord Sórtála Airgeadra + Timthriall Uaire (12 vs 24) + Stíl Briseadh Líne + Córas Tomhais Uimhreacha - Digití Ind-Arabacha - Digití Ind-Arabacha Breisithe - Uimhreacha Airméanacha - Digití Bailíocha - Digití Beangálacha - Ord sórtála Síneach traidisiúnta - Big5 - Féilire Búdaíoch - Féilire Síneach - Féilire Coptach - Digití Déiveanágracha - Ord Réamhshocraithe Sórtála Unicode - Uimhreacha Aetóipice - Féilire Aetóipice - Digití Lánleithid - Ord sórtála Síneach simplithe - GB 2312 - Uimhreacha Seoirseacha - Féilire Ghréagóra - Uimhreacha Gréagacha - Digití Gúisearátacha - Digití Gurmúcacha - Uimhreacha Deachúlacha Síneacha - Uimhreacha Eabhracha - Féilire na nEabhrach - Féilire Ioslámach - Féilire Ioslamach Sibhialta - Féilire ISO-8601 - Féilire Seapánach - Digití Iávacha - Uimhreacha Seapánacha - Digití Ciméaracha - Digití Cannadacha - Digití Laosacha - Digití Iartharacha - Digití Mailéalamacha - Digití Maenmaracha - Digití Oiríseacha - Féilire Peirseach - Ord sórtála an eolaire teileafóin - Ord sórtála pinyin - Féilire Téavánach - Uimhreacha Rómhánacha - Cuardach Ilfhóinteach - Ord Caighdeánach Sórtála - Ord sórtála stríce - Uimhreacha Traidisiúnta Tamalacha - Digití Tamalacha - Digití Teileagúcha - Digití Téalannacha - Digití Tibéadacha - Ord sórtála traidisiúnta + Féilire Búdaíoch + Féilire Síneach + Féilire Coptach + Féilire Dangi + Féilire Aetóipice + Féilire Ghréagóra + Féilire na nEabhrach + Féilire Ioslámach + Féilire Ioslamach Sibhialta + Féilire ISO-8601 + Féilire Seapánach + Féilire Peirseach + Féilire Téavánach + Ord sórtála Síneach traidisiúnta - Big5 + Ord Réamhshocraithe Sórtála Unicode + Ord sórtála Síneach simplithe - GB 2312 + Ord sórtála an eolaire teileafóin + Ord sórtála pinyin + Cuardach Ilfhóinteach + Ord Caighdeánach Sórtála + Ord sórtála stríce + Ord sórtála traidisiúnta + Córas 12 Uair (0–11) + Córas 12 Uair (1–12) + Córas 24 Uair (0–23) + Córas 24 Uair (1–24) + Stíl Briseadh Líne Scaoilte + Stíl Gnáthbhriseadh Líne + Stíl Briseadh Líne Docht + Córas Méadrach + Córas Impiriúil Tomhais + Córas SAM Tomhais + Digití Ind-Arabacha + Digití Ind-Arabacha Breisithe + Uimhreacha Airméanacha + Digití Bailíocha + Digití Beangálacha + Digití Déiveanágracha + Uimhreacha Aetóipice + Digití Lánleithid + Uimhreacha Seoirseacha + Uimhreacha Gréagacha + Digití Gúisearátacha + Digití Gurmúcacha + Uimhreacha Deachúlacha Síneacha + Uimhreacha Eabhracha + Digití Iávacha + Uimhreacha Seapánacha + Digití Ciméaracha + Digití Cannadacha + Digití Laosacha + Digití Iartharacha + Digití Mailéalamacha + Digití Maenmaracha + Digití Oiríseacha + Uimhreacha Rómhánacha + Uimhreacha Traidisiúnta Tamalacha + Digití Tamalacha + Digití Teileagúcha + Digití Téalannacha + Digití Tibéadacha Méadrach @@ -837,6 +851,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d y G MMM y G @@ -1137,14 +1152,30 @@ For terms of use, see http://www.unicode.org/copyright.html + + a.m. + p.m. + + + a + p + + + a.m. + p.m. + + + + + a.m. + p.m. + a - ml p a.m. - meán lae p.m. @@ -1252,12 +1283,17 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v LL dd/MM E dd/MM LLL d MMM E d MMM + d MMMM mm:ss y MM/y @@ -1266,6 +1302,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y d MMM y E d MMM y + MMMM y QQQ y QQQQ y @@ -1396,6 +1433,9 @@ For terms of use, see http://www.unicode.org/copyright.html bl. + anuraidh + an bhl. seo + an bhl. seo chugainn i gceann {0} bl. i gceann {0} bhl. @@ -1413,6 +1453,9 @@ For terms of use, see http://www.unicode.org/copyright.html bl. + anuraidh + an bhl. seo + an bhl. seo chugainn +{0} bhl. +{0} bhl. @@ -1430,6 +1473,9 @@ For terms of use, see http://www.unicode.org/copyright.html Ráithe + an ráithe seo caite + an ráithe seo + an ráithe seo chugainn i gceann {0} ráithe i gceann {0} ráithe @@ -1447,6 +1493,9 @@ For terms of use, see http://www.unicode.org/copyright.html ráithe + an ráithe seo caite + an ráithe seo + an ráithe seo chugainn i gceann {0} ráithe i gceann {0} ráithe @@ -1464,6 +1513,9 @@ For terms of use, see http://www.unicode.org/copyright.html ráithe + an ráithe seo caite + an ráithe seo + an ráithe seo chugainn +{0} R +{0} R @@ -1501,6 +1553,9 @@ For terms of use, see http://www.unicode.org/copyright.html + an mhí seo caite + an mhí seo + an mhí seo chugainn i gceann {0} mhí i gceann {0} mhí @@ -1518,6 +1573,9 @@ For terms of use, see http://www.unicode.org/copyright.html + an mhí seo caite + an mhí seo + an mhí seo chugainn +{0} mhí +{0} mhí @@ -1555,6 +1613,9 @@ For terms of use, see http://www.unicode.org/copyright.html scht. + an tscht. seo caite + an tscht. seo + an tscht. seo chugainn i gceann {0} scht. i gceann {0} shcht. @@ -1572,6 +1633,9 @@ For terms of use, see http://www.unicode.org/copyright.html scht. + an tscht. seo caite + an tscht. seo + an tscht. seo chugainn +{0} scht. +{0} scht. @@ -1611,6 +1675,11 @@ For terms of use, see http://www.unicode.org/copyright.html + arú inné + inné + inniu + amárach + arú amárach i gceann {0} lá i gceann {0} lá @@ -1628,6 +1697,11 @@ For terms of use, see http://www.unicode.org/copyright.html + arú inné + inné + inniu + amárach + arú amárach +{0} lá +{0} lá @@ -1648,108 +1722,108 @@ For terms of use, see http://www.unicode.org/copyright.html an Domhnach seo caite - an Domhnach seo chugainn + an Domhnach seo an Domhnach seo chugainn an Domh. seo caite - an Domh. seo chugainn + an Domh. seo an Domh. seo chugainn an Domh seo caite - an Domh seo chugainn - an Domh seo chugainn + an Domh seo + an Domh seo chug. an Luan seo caite - an Luan seo chugainn + an Luan seo an Luan seo chugainn an Luan seo caite - an Luan seo chugainn + an Luan seo an Luan seo chugainn an Luan seo caite - an Luan seo chugainn - an Luan seo chugainn + an Luan seo + an Luan seo chug. an Mháirt seo caite - an Mháirt seo chugainn + an Mháirt seo an Mháirt seo chugainn an Mháirt seo caite - an Mháirt seo chugainn + an Mháirt seo an Mháirt seo chugainn an Mháirt seo caite - an Mháirt seo chugainn - an Mháirt seo chugainn + an Mháirt seo + an Mháirt seo chug. an Chéadaoin seo caite - an Chéadaoin seo chugainn + an Chéadaoin seo an Chéadaoin seo chugainn an Chéad. seo caite - an Chéad. seo chugainn + an Chéad. seo an Chéad. seo chugainn an Chéad. seo caite - an Chéad. seo chugainn - an Chéad. seo chugainn + an Chéad. seo + an Chéad seo chug. an Déardaoin seo caite - an Déardaoin seo chugainn + an Déardaoin seo an Déardaoin seo chugainn an Déar. seo caite - an Déar. seo chugainn + an Déar. seo an Déar. seo chugainn an Déar. seo caite - an Déar. seo chugainn - an Déar. seo chugainn + an Déar. seo + an Déar. seo chug. an Aoine seo caite - an Aoine seo chugainn + an Aoine seo an Aoine seo chugainn an Aoine seo caite - an Aoine seo chugainn + an Aoine seo an Aoine seo chugainn an Aoine seo caite - an Aoine seo chugainn - an Aoine seo chugainn + an Aoine seo + an Aoine seo chug. an Satharn seo caite - an Satharn seo chugainn + an Satharn seo an Satharn seo chugainn an Sath. seo caite - an Sath. seo chugainn + an Sath. seo an Sath. seo chugainn an Sath seo caite - an Sath seo chugainn - an Sath seo chugainn + an Sath seo + an Sath seo chug. a.m./p.m. @@ -1858,6 +1932,7 @@ For terms of use, see http://www.unicode.org/copyright.html Soicind + anois i gceann {0} soicind i gceann {0} shoicind @@ -1875,6 +1950,7 @@ For terms of use, see http://www.unicode.org/copyright.html soic. + anois i gceann {0} soic. i gceann {0} shoic. @@ -1892,6 +1968,7 @@ For terms of use, see http://www.unicode.org/copyright.html s + anois +{0} s +{0} s @@ -2792,6 +2869,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Mainile @@ -2876,6 +2956,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Chita + Iacútsc @@ -2894,6 +2977,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolymsk + Kamchatka @@ -3263,6 +3349,13 @@ For terms of use, see http://www.unicode.org/copyright.html Am Samhraidh Anadyr + + + Am Apia + Am Caighdeánach Apia + Am Samhraidh Apia + + Am Aqtau @@ -3510,6 +3603,11 @@ For terms of use, see http://www.unicode.org/copyright.html EEST + + + Am Chianoirthear na hEorpa + + Am Iarthar na hEorpa @@ -4315,6 +4413,70 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0k + ¤0k + ¤0k + ¤0k + ¤0k + ¤00k + ¤00k + ¤00k + ¤00k + ¤00k + ¤000k + ¤000k + ¤000k + ¤000k + ¤000k + ¤0M + ¤0M + ¤0M + ¤0M + ¤0M + ¤00M + ¤00M + ¤00M + ¤00M + ¤00M + ¤000M + ¤000M + ¤000M + ¤000M + ¤000M + ¤0B + ¤0B + ¤0B + ¤0B + ¤0B + ¤00B + ¤00B + ¤00B + ¤00B + ¤00B + ¤000B + ¤000B + ¤000B + ¤000B + ¤000B + ¤0T + ¤0T + ¤0T + ¤0T + ¤0T + ¤00T + ¤00T + ¤00T + ¤00T + ¤00T + ¤000T + ¤000T + ¤000T + ¤000T + ¤000T + + {0} {1} {0} {1} {0} {1} @@ -4395,6 +4557,7 @@ For terms of use, see http://www.unicode.org/copyright.html kwanza Angóla kwanza Angóla AOA + Kz Kwanza Angólach (1977–1990) @@ -4492,6 +4655,7 @@ For terms of use, see http://www.unicode.org/copyright.html marg inmhalartaithe na Boisnia-Heirseagaivéine marg inmhalartaithe na Boisnia-Heirseagaivéine BAM + KM BAN @@ -4598,6 +4762,7 @@ For terms of use, see http://www.unicode.org/copyright.html mboliviano boliviano BOB + Bs BOL @@ -4720,6 +4885,7 @@ For terms of use, see http://www.unicode.org/copyright.html bpula na Botsuáine pula na Botsuáine BWP + P Rúbal Nua na Bealarúise (1994–1999) @@ -4860,6 +5026,7 @@ For terms of use, see http://www.unicode.org/copyright.html bpeso inmhalartaithe Chúba peso inmhalartaithe Chúba CUC + $ Peso Chúba @@ -4897,6 +5064,7 @@ For terms of use, see http://www.unicode.org/copyright.html koruna Phoblacht na Seice koruna Phoblacht na Seice CZK + Ostmark na hOirGhearmáine @@ -4921,6 +5089,7 @@ For terms of use, see http://www.unicode.org/copyright.html gcoróin na Danmhairge coróin na Danmhairge DKK + kr Peso na Poblachta Doiminicí @@ -4960,6 +5129,7 @@ For terms of use, see http://www.unicode.org/copyright.html bpunt na hÉigipte punt na hÉigipte EGP + Nakfa na hEiritré @@ -5026,6 +5196,7 @@ For terms of use, see http://www.unicode.org/copyright.html bpunt Oileáin Fháclainne punt Oileáin Fháclainne FKP + £ Franc Francach @@ -5097,6 +5268,7 @@ For terms of use, see http://www.unicode.org/copyright.html bhfranc na Guine franc na Guine GNF + FG Syli Guine @@ -5117,6 +5289,7 @@ For terms of use, see http://www.unicode.org/copyright.html quetzal Ghuatamala quetzal Ghuatamala GTQ + Q Escudo na Guine Portaingéalaí @@ -5152,6 +5325,7 @@ For terms of use, see http://www.unicode.org/copyright.html lempira Hondúras lempira Hondúras HNL + L Dínear na Cróite @@ -5164,6 +5338,7 @@ For terms of use, see http://www.unicode.org/copyright.html kuna na Cróite kuna na Cróite HRK + kn Gourde Háítí @@ -5182,6 +5357,7 @@ For terms of use, see http://www.unicode.org/copyright.html bhforint na hUngáire forint na hUngáire HUF + Ft Rupiah na hIndinéise @@ -5191,6 +5367,7 @@ For terms of use, see http://www.unicode.org/copyright.html rupiah na hIndinéise rupiah na hIndinéise IDR + Rp Punt Éireannach @@ -5244,6 +5421,7 @@ For terms of use, see http://www.unicode.org/copyright.html króna na hÍoslainne króna na hÍoslainne ISK + kr Lira na hIodáile @@ -5319,6 +5497,7 @@ For terms of use, see http://www.unicode.org/copyright.html bhfranc Oileáin Chomóra franc Oileáin Chomóra KMF + CF Won na Cóiré Thuaidh @@ -5328,6 +5507,7 @@ For terms of use, see http://www.unicode.org/copyright.html won na Cóiré Thuaidh won na Cóiré Thuaidh KPW + KRH @@ -5392,6 +5572,7 @@ For terms of use, see http://www.unicode.org/copyright.html bpunt na Liobáine punt na Liobáine LBP + Rúipí Shrí Lanca @@ -5401,6 +5582,7 @@ For terms of use, see http://www.unicode.org/copyright.html rúipí Shrí Lanca rúipí Shrí Lanca LKR + Rs Dollar na Libéire @@ -5486,6 +5668,7 @@ For terms of use, see http://www.unicode.org/copyright.html n-ariary Mhadagascar ariary Mhadagascar MGA + Ar Franc Madagascar @@ -5513,6 +5696,7 @@ For terms of use, see http://www.unicode.org/copyright.html kyat Mhaenmar kyat Mhaenmar MMK + K Tugrik na Mongóile @@ -5568,6 +5752,7 @@ For terms of use, see http://www.unicode.org/copyright.html rúipí Oileán Mhuirís rúipí Oileán Mhuirís MUR + Rs Rúipí Oileáin Mhaildíve @@ -5626,6 +5811,7 @@ For terms of use, see http://www.unicode.org/copyright.html ringgit na Malaeisia ringgit na Malaeisia MYR + RM Escudo Mósaimbíce @@ -5679,6 +5865,7 @@ For terms of use, see http://www.unicode.org/copyright.html gcórdoba Nicearagua córdoba Nicearagua NIO + C$ Guilder Ísiltíreach @@ -5691,6 +5878,7 @@ For terms of use, see http://www.unicode.org/copyright.html gcoróin na hIorua coróin na hIorua NOK + kr Rúipí Neipeal @@ -5700,6 +5888,7 @@ For terms of use, see http://www.unicode.org/copyright.html rúipí Neipeal rúipí Neipeal NPR + Rs Dollar na Nua-Shéalainne @@ -5778,6 +5967,7 @@ For terms of use, see http://www.unicode.org/copyright.html rúipí na Pacastáine rúipí na Pacastáine PKR + Rs Zloty na Polainne @@ -5787,6 +5977,7 @@ For terms of use, see http://www.unicode.org/copyright.html zloty na Polainne zloty na Polainne PLN + Zloty Polannach (1950–1995) @@ -5854,6 +6045,7 @@ For terms of use, see http://www.unicode.org/copyright.html rúbal na Rúise rúbal na Rúise RUB + Rúbal na Rúise (1991–1998) @@ -5873,6 +6065,7 @@ For terms of use, see http://www.unicode.org/copyright.html bhfranc Ruanda franc Ruanda RWF + RF Riyal na hAraibe Sádaí @@ -5937,6 +6130,7 @@ For terms of use, see http://www.unicode.org/copyright.html gcoróin na Sualainne coróin na Sualainne SEK + kr Dollar Shingeapór @@ -5956,6 +6150,7 @@ For terms of use, see http://www.unicode.org/copyright.html bpunt San Héilin punt San Héilin SHP + £ Tolar na Slóivéine @@ -6030,6 +6225,7 @@ For terms of use, see http://www.unicode.org/copyright.html ndobra São Tomé agus Príncipe dobra São Tomé agus Príncipe STD + Db Rúbal an Aontais Shóivéadaigh @@ -6057,6 +6253,7 @@ For terms of use, see http://www.unicode.org/copyright.html bpunt na Siria punt na Siria SYP + £ Lilangeni na Suasalainne @@ -6075,6 +6272,7 @@ For terms of use, see http://www.unicode.org/copyright.html mbaht na Téalainne baht na Téalainne ฿ + ฿ Rúbal na Táidsíceastáine @@ -6117,6 +6315,7 @@ For terms of use, see http://www.unicode.org/copyright.html bpaʻanga Thonga paʻanga Thonga TOP + T$ Escudo Tíomóir @@ -6139,6 +6338,7 @@ For terms of use, see http://www.unicode.org/copyright.html lira na Tuirce TRY + TL Dollar Oileán na Tríonóide agus Tobága @@ -6267,6 +6467,7 @@ For terms of use, see http://www.unicode.org/copyright.html mbolívar Veiniséala bolívar Veiniséala VEF + Bs Dong Vítneam @@ -6344,6 +6545,7 @@ For terms of use, see http://www.unicode.org/copyright.html ndollar na Cairibe Thoir dollar na Cairibe Thoir EC$ + $ Cearta Speisialta Tarraingthe @@ -6439,6 +6641,7 @@ For terms of use, see http://www.unicode.org/copyright.html rand na hAfraice Theas rand na hAfraice Theas ZAR + R Kwacha Saimbiach (1968–2012) @@ -6451,6 +6654,7 @@ For terms of use, see http://www.unicode.org/copyright.html kwacha na Saimbia kwacha na Saimbia ZMW + ZK Zaire Nua Sáíreach @@ -6470,6 +6674,9 @@ For terms of use, see http://www.unicode.org/copyright.html + + {0} sa {1} + g-fhórsa {0} g-fhórsa @@ -6486,6 +6693,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} méadar sa soicind cearnaithe {0} méadar sa soicind cearnaithe + + imrothlú + {0} imrothlú + {0} imrothlú + {0} imrothlú + {0} n-imrothlú + {0} imrothlú + + + raidiain + {0} raidian + {0} raidian + {0} raidian + {0} raidian + {0} raidian + + + céimeanna + {0} chéim + {0} chéim + {0} chéim + {0} gcéim + {0} céim + nóiméid stua {0} nóiméad stua @@ -6502,29 +6733,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} soicind stua {0} soicind stua - - céimeanna - {0} chéim - {0} chéim - {0} chéim - {0} gcéim - {0} céim - - - raidiain - {0} raidian - {0} raidian - {0} raidian - {0} raidian - {0} raidian - - - acraí - {0} acra - {0} acra - {0} acra - {0} n-acra - {0} acra + + ciliméadair chearnacha + {0} chiliméadar cearnach + {0} chiliméadar chearnacha + {0} chiliméadar chearnacha + {0} gciliméadar chearnacha + {0} ciliméadar cearnach heicteáir @@ -6534,6 +6749,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} heicteár {0} heicteár + + méadair chearnacha + {0} mhéadar cearnach + {0} mhéadar chearnacha + {0} mhéadar chearnacha + {0} méadar chearnacha + {0} méadar cearnach + {0} sa mhéadar cearnach + ceintiméadair chearnacha {0} cheintiméadar cearnach @@ -6541,6 +6765,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cheintiméadar chearnacha {0} gceintiméadar chearnacha {0} ceintiméadar cearnach + {0} sa cheintiméadar cearnach + + + mílte cearnacha + {0} mhíle cearnach + {0} mhíle chearnacha + {0} mhíle chearnacha + {0} míle chearnacha + {0} míle cearnach + + + acraí + {0} acra + {0} acra + {0} acra + {0} n-acra + {0} acra + + + slata cearnacha + {0} slat chearnach + {0} shlat chearnacha + {0} shlat chearnacha + {0} slat chearnacha + {0} slat chearnach troithe cearnacha @@ -6557,38 +6806,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} orlach chearnacha {0} orlach chearnacha {0} orlach cearnach + {0} san orlach cearnach - - ciliméadair chearnacha - {0} chiliméadar cearnach - {0} chiliméadar chearnacha - {0} chiliméadar chearnacha - {0} gciliméadar chearnacha - {0} ciliméadar cearnach - - - méadair chearnacha - {0} mhéadar cearnach - {0} mhéadar chearnacha - {0} mhéadar chearnacha - {0} méadar chearnacha - {0} méadar cearnach - - - mílte cearnacha - {0} mhíle cearnach - {0} mhíle chearnacha - {0} mhíle chearnacha - {0} míle chearnacha - {0} míle cearnach - - - slata cearnacha - {0} slat chearnach - {0} shlat chearnacha - {0} shlat chearnacha - {0} slat chearnacha - {0} slat chearnach + + carait óir + {0} charat óir + {0} charat óir + {0} charat óir + {0} gcarat óir + {0} carat óir lítir sa chiliméadar @@ -6598,6 +6824,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lítear sa chiliméadar {0} lítear sa chiliméadar + + lítir sa 100 ciliméadar + {0} lítear sa 100 ciliméadar + {0} lítear sa 100 ciliméadar + {0} lítear sa 100 ciliméadar + {0} lítear sa 100 ciliméadar + {0} lítear sa 100 ciliméadar + mílte an galún {0} mhíle an galún @@ -6606,78 +6840,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} míle an galún {0} míle an galún - - giotáin - {0} ghiotán - {0} ghiotán - {0} ghiotán - {0} ngiotán - {0} giotán - - - bearta - {0} bheart - {0} bheart - {0} bheart - {0} mbeart - {0} beart - - - gigighiotáin - {0} ghigighiotán - {0} ghigighiotán - {0} ghigighiotán - {0} ngigighiotán - {0} gigighiotán - - - gigibhearta - {0} ghigibheart - {0} ghigibheart - {0} ghigibheart - {0} ngigibheart - {0} gigibheart - - - cilighiotáin - {0} chilighiotán - {0} chilighiotán - {0} chilighiotán - {0} gcilighiotán - {0} cilighiotán - - - cilibhearta - {0} chilibheart - {0} chilibheart - {0} chilibheart - {0} gcilibheart - {0} cilibheart - - - meigighiotáin - {0} mheigighiotán - {0} mheigighiotán - {0} mheigighiotán - {0} meigighiotán - {0} meigighiotán - - - meigibhearta - {0} mheigibheart - {0} mheigibheart - {0} mheigibheart - {0} meigibheart - {0} meigibheart - - - teirighiotáin - {0} teirighiotán - {0} theirighiotán - {0} theirighiotán - {0} dteirighiotán - {0} teirighiotán - teiribhearta {0} teiribheart @@ -6686,6 +6848,113 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dteiribheart {0} teiribheart + + teirighiotáin + {0} teirighiotán + {0} theirighiotán + {0} theirighiotán + {0} dteirighiotán + {0} teirighiotán + + + gigibhearta + {0} ghigibheart + {0} ghigibheart + {0} ghigibheart + {0} ngigibheart + {0} gigibheart + + + gigighiotáin + {0} ghigighiotán + {0} ghigighiotán + {0} ghigighiotán + {0} ngigighiotán + {0} gigighiotán + + + meigibhearta + {0} mheigibheart + {0} mheigibheart + {0} mheigibheart + {0} meigibheart + {0} meigibheart + + + meigighiotáin + {0} mheigighiotán + {0} mheigighiotán + {0} mheigighiotán + {0} meigighiotán + {0} meigighiotán + + + cilibhearta + {0} chilibheart + {0} chilibheart + {0} chilibheart + {0} gcilibheart + {0} cilibheart + + + cilighiotáin + {0} chilighiotán + {0} chilighiotán + {0} chilighiotán + {0} gcilighiotán + {0} cilighiotán + + + bearta + {0} bheart + {0} bheart + {0} bheart + {0} mbeart + {0} beart + + + giotáin + {0} ghiotán + {0} ghiotán + {0} ghiotán + {0} ngiotán + {0} giotán + + + céadta bliain + {0} chéad bliain + {0} chéad bliain + {0} chéad bliain + {0} gcéad bliain + {0} céad bliain + + + blianta + {0} bhliain + {0} bhliain + {0} bliana + {0} mbliana + {0} bliain + {0} sa bhliain + + + míonna + {0} mhí + {0} mhí + {0} mhí + {0} mí + {0} mí + {0} sa mhí + + + seachtainí + {0} seachtain + {0} sheachtain + {0} seachtaine + {0} seachtaine + {0} seachtain + {0} sa tseachtain + laethanta {0} lá @@ -6693,6 +6962,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lá {0} lá {0} lá + {0} sa lá uaireanta @@ -6703,22 +6973,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} uair {0} san uair - - micreashoicindí - {0} mhicreashoicind - {0} mhicreashoicind - {0} mhicreashoicind - {0} micreashoicind - {0} micreashoicind - - - milleasoicindí - {0} mhilleasoicind - {0} mhilleasoicind - {0} mhilleasoicind - {0} milleasoicind - {0} milleasoicind - nóiméid {0} nóiméad @@ -6726,22 +6980,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nóiméad {0} nóiméad {0} nóiméad - - - míonna - {0} mhí - {0} mhí - {0} mhí - {0} mí - {0} mí - - - nanashoicindí - {0} nanashoicind - {0} nanashoicind - {0} nanashoicind - {0} nanashoicind - {0} nanashoicind + {0} sa nóiméad soicindí @@ -6752,21 +6991,29 @@ For terms of use, see http://www.unicode.org/copyright.html {0} soicind {0} sa soicind - - seachtainí - {0} seachtain - {0} sheachtain - {0} seachtaine - {0} seachtaine - {0} seachtain + + milleasoicindí + {0} mhilleasoicind + {0} mhilleasoicind + {0} mhilleasoicind + {0} milleasoicind + {0} milleasoicind - - blianta - {0} bhliain - {0} bhliain - {0} bliana - {0} mbliana - {0} bliain + + micreashoicindí + {0} mhicreashoicind + {0} mhicreashoicind + {0} mhicreashoicind + {0} micreashoicind + {0} micreashoicind + + + nanashoicindí + {0} nanashoicind + {0} nanashoicind + {0} nanashoicind + {0} nanashoicind + {0} nanashoicind aimpéir @@ -6800,6 +7047,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volta {0} volta + + cileacalraí + {0} chileacalra + {0} chileacalra + {0} chileacalra + {0} gcileacalra + {0} cileacalra + calraí {0} chalra @@ -6816,22 +7071,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gCalra {0} Calra - - giúil - {0} ghiúl - {0} ghiúl - {0} ghiúl - {0} ngiúl - {0} giúl - - - cileacalraí - {0} chileacalra - {0} chileacalra - {0} chileacalra - {0} gcileacalra - {0} cileacalra - ciligiúil {0} chiligiúl @@ -6840,6 +7079,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gciligiúl {0} ciligiúl + + giúil + {0} ghiúl + {0} ghiúl + {0} ghiúl + {0} ngiúl + {0} giúl + cileavatuaireanta {0} chileavatuair @@ -6856,13 +7103,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ngigiheirts {0} gigiheirts - - heirts - {0} heirts - {0} heirts - {0} heirts - {0} heirts - {0} heirts + + meigiheirts + {0} mheigiheirts + {0} mheigiheirts + {0} mheigiheirts + {0} meigiheirts + {0} meigiheirts ciliheirts @@ -6872,29 +7119,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gciliheirts {0} ciliheirts - - meigiheirts - {0} mheigiheirts - {0} mheigiheirts - {0} mheigiheirts - {0} meigiheirts - {0} meigiheirts + + heirts + {0} heirts + {0} heirts + {0} heirts + {0} heirts + {0} heirts - - aonaid réalteolaíocha - {0} aonad réalteolaíoch - {0} aonad réalteolaíoch - {0} aonad réalteolaíoch - {0} n-aonad réalteolaíoch - {0} aonad réalteolaíoch + + ciliméadair + {0} chiliméadar + {0} chiliméadar + {0} chiliméadar + {0} gciliméadar + {0} ciliméadar + {0} sa chiliméadar - - ceintiméadair - {0} cheintiméadar - {0} cheintiméadar - {0} cheintiméadar - {0} gceintiméadar - {0} ceintiméadar + + méadair + {0} mhéadar + {0} mhéadar + {0} mhéadar + {0} méadar + {0} méadar + {0} sa mhéadar deiciméadair @@ -6904,77 +7153,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ndeiciméadar {0} deiciméadar - - feánna - {0} fheá - {0} fheá - {0} fheá - {0} bhfeá - {0} feá - - - troithe - {0} troigh - {0} throigh - {0} throigh - {0} dtroigh - {0} troigh - - - staideanna - {0} staid - {0} staid - {0} staid - {0} staid - {0} staid - - - orlaí - {0} orlach - {0} orlach - {0} orlach - {0} n-orlach - {0} orlach - - - ciliméadair - {0} chiliméadar - {0} chiliméadar - {0} chiliméadar - {0} gciliméadar - {0} ciliméadar - - - solasbhlianta - {0} solasbhliain - {0} sholasbhliain - {0} sholasbhliain - {0} solasbhliain - {0} solasbhliain - - - méadair - {0} mhéadar - {0} mhéadar - {0} mhéadar - {0} méadar - {0} méadar - - - micriméadair - {0} mhicriméadar - {0} mhicriméadar - {0} mhicriméadar - {0} micriméadar - {0} micriméadar - - - mílte - {0} mhíle - {0} mhíle - {0} mhíle - {0} míle - {0} míle + + ceintiméadair + {0} cheintiméadar + {0} cheintiméadar + {0} cheintiméadar + {0} gceintiméadar + {0} ceintiméadar + {0} sa cheintiméadar milliméadair @@ -6984,6 +7170,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milliméadar {0} milliméadar + + micriméadair + {0} mhicriméadar + {0} mhicriméadar + {0} mhicriméadar + {0} micriméadar + {0} micriméadar + nanaiméadair {0} nanaiméadar @@ -6992,22 +7186,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nanaiméadar {0} nanaiméadar - - muirmhílte - {0} mhuirmhíle - {0} mhuirmhíle - {0} mhuirmhíle - {0} muirmhíle - {0} muirmhíle - - - parsoiceanna - {0} pharsoic - {0} pharsoic - {0} pharsoic - {0} bparsoic - {0} parsoic - piciméadair {0} phiciméadar @@ -7016,6 +7194,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} bpiciméadar {0} piciméadar + + mílte + {0} mhíle + {0} mhíle + {0} mhíle + {0} míle + {0} míle + slata {0} slat @@ -7024,6 +7210,80 @@ For terms of use, see http://www.unicode.org/copyright.html {0} slat {0} slat + + troithe + {0} troigh + {0} throigh + {0} throigh + {0} dtroigh + {0} troigh + {0} sa troigh + + + orlaí + {0} orlach + {0} orlach + {0} orlach + {0} n-orlach + {0} orlach + {0} san orlach + + + parsoiceanna + {0} pharsoic + {0} pharsoic + {0} pharsoic + {0} bparsoic + {0} parsoic + + + solasbhlianta + {0} solasbhliain + {0} sholasbhliain + {0} sholasbhliain + {0} solasbhliain + {0} solasbhliain + + + aonaid réalteolaíocha + {0} aonad réalteolaíoch + {0} aonad réalteolaíoch + {0} aonad réalteolaíoch + {0} n-aonad réalteolaíoch + {0} aonad réalteolaíoch + + + staideanna + {0} staid + {0} staid + {0} staid + {0} staid + {0} staid + + + feánna + {0} fheá + {0} fheá + {0} fheá + {0} bhfeá + {0} feá + + + muirmhílte + {0} mhuirmhíle + {0} mhuirmhíle + {0} mhuirmhíle + {0} muirmhíle + {0} muirmhíle + + + míle Lochlannach + {0} mhíle Lochlannach + {0} mhíle Lochlannacha + {0} mhíle Lochlannacha + {0} míle Lochlannacha + {0} míle Lochlannach + lucsa {0} lucsa @@ -7032,30 +7292,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lucsa {0} lucsa - - carait - {0} charat - {0} charat - {0} charat - {0} gcarat - {0} carat - - - graim - {0} ghram - {0} ghram - {0} ghram - {0} ngram - {0} gram - - - cileagraim - {0} chileagram - {0} chileagram - {0} chileagram - {0} gcileagram - {0} cileagram - tonnaí méadracha {0} tonna méadrach @@ -7064,13 +7300,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dtonna mhéadracha {0} tonna méadrach - - micreagraim - {0} mhicreagram - {0} mhicreagram - {0} mhicreagram - {0} micreagram - {0} micreagram + + cileagraim + {0} chileagram + {0} chileagram + {0} chileagram + {0} gcileagram + {0} cileagram + {0} sa chileagram + + + graim + {0} ghram + {0} ghram + {0} ghram + {0} ngram + {0} gram + {0} sa ghram milleagraim @@ -7080,37 +7326,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milleagram {0} milleagram - - unsaí - {0} unsa - {0} unsa - {0} unsa - {0} n-unsa - {0} unsa - - - unsaí troí - {0} unsa troí - {0} unsa troí - {0} unsa troí - {0} n-unsa troí - {0} unsa troí - - - puint - {0} phunt - {0} phunt - {0} phunt - {0} bpunt - {0} punt - - - clocha - {0} chloch - {0} chloch - {0} chloch - {0} gcloch - {0} cloch + + micreagraim + {0} mhicreagram + {0} mhicreagram + {0} mhicreagram + {0} micreagram + {0} micreagram tonnaí gearra @@ -7120,6 +7342,48 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dtonna ghearra {0} tonna gearr + + clocha + {0} chloch + {0} chloch + {0} chloch + {0} gcloch + {0} cloch + + + puint + {0} phunt + {0} phunt + {0} phunt + {0} bpunt + {0} punt + {0} sa phunt + + + unsaí + {0} unsa + {0} unsa + {0} unsa + {0} n-unsa + {0} unsa + {0} san unsa + + + unsaí troí + {0} unsa troí + {0} unsa troí + {0} unsa troí + {0} n-unsa troí + {0} unsa troí + + + carait + {0} charat + {0} charat + {0} charat + {0} gcarat + {0} carat + gigeavatanna {0} ghigeavata @@ -7128,22 +7392,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ngigeavata {0} gigeavata - - each-chumhacht - {0} each-chumhacht - {0} each-chumhacht - {0} each-chumhacht - {0} n-each-chumhacht - {0} each-chumhacht - - - cileavatanna - {0} chileavata - {0} chileavata - {0} chileavata - {0} gcileavata - {0} cileavata - meigeavatanna {0} mheigeavata @@ -7152,13 +7400,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} meigeavata {0} meigeavata - - milleavatanna - {0} mhilleavata - {0} mhilleavata - {0} mhilleavata - {0} milleavata - {0} milleavata + + cileavatanna + {0} chileavata + {0} chileavata + {0} chileavata + {0} gcileavata + {0} cileavata vatanna @@ -7168,6 +7416,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} vata {0} vata + + milleavatanna + {0} mhilleavata + {0} mhilleavata + {0} mhilleavata + {0} milleavata + {0} milleavata + + + each-chumhacht + {0} each-chumhacht + {0} each-chumhacht + {0} each-chumhacht + {0} n-each-chumhacht + {0} each-chumhacht + heicteapascail {0} heicteapascal @@ -7176,22 +7440,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} heicteapascal {0} heicteapascal - - orlaí mearcair - {0} orlach mearcair - {0} orlach mearcair - {0} orlach mearcair - {0} n-orlach mearcair - {0} orlach mearcair - - - milleabair - {0} mhilleabar - {0} mhilleabar - {0} mhilleabar - {0} milleabar - {0} milleabar - milliméadair mhearcair {0} mhilliméadar mearcair @@ -7208,13 +7456,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} bpunt san orlach cearnach {0} punt san orlach cearnach - - carait óir - {0} charat óir - {0} charat óir - {0} charat óir - {0} gcarat óir - {0} carat óir + + orlaí mearcair + {0} orlach mearcair + {0} orlach mearcair + {0} orlach mearcair + {0} n-orlach mearcair + {0} orlach mearcair + + + milleabair + {0} mhilleabar + {0} mhilleabar + {0} mhilleabar + {0} milleabar + {0} milleabar ciliméadair san uair @@ -7240,6 +7496,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} míle san uair {0} míle san uair + + muirmhíle san uair + {0} mhuirmhíle san uair + {0} mhuirmhíle san uair + {0} mhuirmhíle san uair + {0} muirmhíle san uair + {0} muirmhíle san uair + + + ° + {0}° + {0}° + {0}° + {0}° + {0}° + céimeanna Celsius {0} chéim Celsius @@ -7264,54 +7536,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gcéim cheilvin {0} céim cheilvin - - acra-troithe - {0} acra-troigh - {0} acra-troigh - {0} acra-troigh - {0} n-acra-troigh - {0} acra-troigh - - - buiséil - {0} bhuiséal - {0} bhuiséal - {0} bhuiséal - {0} mbuiséal - {0} buiséal - - - ceintilítir - {0} cheintilítear - {0} cheintilítear - {0} cheintilítear - {0} gceintilítear - {0} ceintilítear - - - ceintiméadair chiúbacha - {0} cheintiméadar ciúbach - {0} cheintiméadar chiúbacha - {0} cheintiméadar chiúbacha - {0} gceintiméadar chiúbacha - {0} ceintiméadar ciúbach - - - troithe ciúbacha - {0} troigh chiúbach - {0} throigh chiúbacha - {0} throigh chiúbacha - {0} dtroigh chiúbacha - {0} troigh chiúbach - - - orlaí ciúbacha - {0} orlach ciúbach - {0} orlach chiúbacha - {0} orlach chiúbacha - {0} n-orlach chiúbacha - {0} orlach ciúbach - ciliméadair chiúbacha {0} chiliméadar ciúbach @@ -7327,6 +7551,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mhéadar chiúbacha {0} méadar chiúbacha {0} méadar ciúbach + {0} sa mhéadar ciúbach + + + ceintiméadair chiúbacha + {0} cheintiméadar ciúbach + {0} cheintiméadar chiúbacha + {0} cheintiméadar chiúbacha + {0} gceintiméadar chiúbacha + {0} ceintiméadar ciúbach + {0} sa cheintiméadar ciúbach mílte ciúbacha @@ -7344,37 +7578,29 @@ For terms of use, see http://www.unicode.org/copyright.html {0} slat chiúbacha {0} slat chiúbach - - cupáin - {0} chupán - {0} chupán - {0} chupán - {0} gcupán - {0} cupán + + troithe ciúbacha + {0} troigh chiúbach + {0} throigh chiúbacha + {0} throigh chiúbacha + {0} dtroigh chiúbacha + {0} troigh chiúbach - - deicilítir - {0} deicilítear - {0} dheicilítear - {0} dheicilítear - {0} ndeicilítear - {0} deicilítear + + orlaí ciúbacha + {0} orlach ciúbach + {0} orlach chiúbacha + {0} orlach chiúbacha + {0} n-orlach chiúbacha + {0} orlach ciúbach - - unsaí leachtacha - {0} unsa leachtach - {0} unsa leachtacha - {0} unsa leachtacha - {0} n-unsa leachtacha - {0} unsa leachtach - - - galúin - {0} ghalún - {0} ghalún - {0} ghalún - {0} ngalún - {0} galún + + meigilítir + {0} mheigilítear + {0} mheigilítear + {0} mheigilítear + {0} meigilítear + {0} meigilítear heictilítir @@ -7391,14 +7617,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lítear {0} lítear {0} lítear + {0} sa lítear - - meigilítir - {0} mheigilítear - {0} mheigilítear - {0} mheigilítear - {0} meigilítear - {0} meigilítear + + deicilítir + {0} deicilítear + {0} dheicilítear + {0} dheicilítear + {0} ndeicilítear + {0} deicilítear + + + ceintilítir + {0} cheintilítear + {0} cheintilítear + {0} cheintilítear + {0} gceintilítear + {0} ceintilítear millilítir @@ -7408,13 +7643,46 @@ For terms of use, see http://www.unicode.org/copyright.html {0} millilítear {0} millilítear - - piontaí - {0} phionta - {0} phionta - {0} phionta - {0} bpionta - {0} pionta + + piontaí méadracha + {0} phionta méadrach + {0} phionta mhéadracha + {0} phionta mhéadracha + {0} bpionta mhéadracha + {0} pionta méadrach + + + cupáin mhéadracha + {0} chupán méadrach + {0} chupán mhéadracha + {0} chupán mhéadracha + {0} gcupán mhéadracha + {0} cupán méadrach + + + acra-troithe + {0} acra-troigh + {0} acra-troigh + {0} acra-troigh + {0} n-acra-troigh + {0} acra-troigh + + + buiséil + {0} bhuiséal + {0} bhuiséal + {0} bhuiséal + {0} mbuiséal + {0} buiséal + + + galúin + {0} ghalún + {0} ghalún + {0} ghalún + {0} ngalún + {0} galún + {0} sa ghalún cáirt @@ -7424,6 +7692,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gcárt {0} cárt + + piontaí + {0} phionta + {0} phionta + {0} phionta + {0} bpionta + {0} pionta + + + cupáin + {0} chupán + {0} chupán + {0} chupán + {0} gcupán + {0} cupán + + + unsaí leachtacha + {0} unsa leachtach + {0} unsa leachtacha + {0} unsa leachtacha + {0} n-unsa leachtacha + {0} unsa leachtach + spúnóga boird {0} spúnóg bhoird @@ -7440,8 +7732,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dtaespúnóg {0} taespúnóg + + {0}O + {0}T + {0}D + {0}I + + + {0}/{1} + g-fhórsa {0} G @@ -7458,6 +7759,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + imr + {0} imr + {0} imr + {0} imr + {0} imr + {0} imr + + + raidiain + {0} raid + {0} raid + {0} raid + {0} raid + {0} raid + + + céimeanna + {0}° + {0}° + {0}° + {0}° + {0}° + nóiméid stua {0}′ @@ -7474,29 +7799,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - céimeanna - {0}° - {0}° - {0}° - {0}° - {0}° - - - raidiain - {0} raid - {0} raid - {0} raid - {0} raid - {0} raid - - - acraí - {0} ac - {0} ac - {0} ac - {0} ac - {0} ac + + km² + {0} km² + {0} km² + {0} km² + {0} km² + {0} km² heicteáir @@ -7506,6 +7815,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha + + + {0} m² + {0} m² + {0} m² + {0} m² + {0} m² + {0}/m² + cm² {0} cm² @@ -7513,6 +7831,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cm² {0} cm² {0} cm² + {0}/cm² + + + mílte² + {0} mhíle² + {0} mhíle² + {0} mhíle² + {0} míle² + {0} míle² + + + acraí + {0} ac + {0} ac + {0} ac + {0} ac + {0} ac + + + slata² + {0} sl² + {0} sl² + {0} sl² + {0} sl² + {0} sl² tr² @@ -7529,38 +7872,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} or² {0} or² {0} or² + {0}/or² - - km² - {0} km² - {0} km² - {0} km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - {0} m² - {0} m² - {0} m² - - - mílte² - {0} mhíle² - {0} mhíle² - {0} mhíle² - {0} míle² - {0} míle² - - - slata² - {0} sl² - {0} sl² - {0} sl² - {0} sl² - {0} sl² + + kt + {0} kt + {0} kt + {0} kt + {0} kt + {0} kt lítir/km @@ -7570,6 +7890,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l/km {0} l/km + + l/100km + {0} l/100km + {0} l/100km + {0} l/100km + {0} l/100km + {0} l/100km + mílte/gal {0} mhíle/gal @@ -7578,78 +7906,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} míle/gal {0} míle/gal - - giotán - {0} ghiotán - {0} ghiotán - {0} ghiotán - {0} ngiotán - {0} giotán - - - bearta - {0} bheart - {0} bheart - {0} bheart - {0} mbeart - {0} beart - - - Gb - {0} Gb - {0} Gb - {0} Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - {0} GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - {0} kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - {0} kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - {0} Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - {0} MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - {0} Tb - {0} Tb - {0} Tb - TB {0} TB @@ -7658,6 +7914,113 @@ For terms of use, see http://www.unicode.org/copyright.html {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + {0} Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + {0} GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + {0} Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + {0} MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + {0} Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + {0} kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + {0} kb + {0} kb + {0} kb + + + bearta + {0} bheart + {0} bheart + {0} bheart + {0} mbeart + {0} beart + + + giotán + {0} ghiotán + {0} ghiotán + {0} ghiotán + {0} ngiotán + {0} giotán + + + c + {0} c + {0} c + {0} c + {0} c + {0} c + + + blianta + {0} bhl + {0} bhl + {0} bl + {0} mbl + {0} bl + {0}/bl + + + míonna + {0} mhí + {0} mhí + {0} mhí + {0} mí + {0} mí + {0}/mí + + + scht + {0} scht + {0} scht + {0} scht + {0} scht + {0} scht + {0}/scht + {0} lá @@ -7665,6 +8028,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lá {0} lá {0} lá + {0}/lá uair @@ -7675,22 +8039,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} u {0}/u - - μs - {0} μs - {0} μs - {0} μs - {0} μs - {0} μs - - - msoic - {0} ms - {0} ms - {0} ms - {0} ms - {0} ms - nóim {0} nóim @@ -7698,22 +8046,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nóim {0} nóim {0} nóim - - - míonna - {0} mhí - {0} mhí - {0} mhí - {0} mí - {0} mí - - - ns - {0} ns - {0} ns - {0} ns - {0} ns - {0} ns + {0}/nóim soic @@ -7724,21 +8057,29 @@ For terms of use, see http://www.unicode.org/copyright.html {0} soic {0}/s - - scht - {0} scht - {0} scht - {0} scht - {0} scht - {0} scht + + msoic + {0} ms + {0} ms + {0} ms + {0} ms + {0} ms - - blianta - {0} bhl - {0} bhl - {0} bl - {0} mbl - {0} bl + + μs + {0} μs + {0} μs + {0} μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns + {0} ns + {0} ns + {0} ns aimpéir @@ -7772,6 +8113,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + {0} kcal + {0} kcal + {0} kcal + cal {0} cal @@ -7788,22 +8137,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - giúil - {0} J - {0} J - {0} J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - {0} kcal - {0} kcal - {0} kcal - ciligiúl {0} kJ @@ -7812,6 +8145,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kJ {0} kJ + + giúil + {0} J + {0} J + {0} J + {0} J + {0} J + kW-uair {0} kWh @@ -7828,13 +8169,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz - {0} Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz + {0} MHz + {0} MHz + {0} MHz kHz @@ -7844,29 +8185,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz - {0} MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz + {0} Hz + {0} Hz + {0} Hz - - AR - {0} AR - {0} AR - {0} AR - {0} AR - {0} AR + + km + {0} km + {0} km + {0} km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm - {0} cm - {0} cm - {0} cm + + méadair + {0} m + {0} m + {0} m + {0} m + {0} m + {0}/m dm @@ -7876,72 +8219,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dm {0} dm - - feánna - - - troithe - {0} tr. - {0} thr. - {0} thr. - {0} dtr. - {0} tr. - - - staideanna - {0} st - {0} st - {0} st - {0} st - {0} st - - - orlaí - {0} or. - {0} or. - {0} or. - {0} n-or. - {0} or. - - - km - {0} km - {0} km - {0} km - {0} km - {0} km - - - solasbhl. - {0} sbh - {0} sbh - {0} sbh - {0} sbh - {0} sbh - - - méadair - {0} m - {0} m - {0} m - {0} m - {0} m - - - µméadair - {0} µm - {0} µm - {0} µm - {0} µm - {0} µm - - - mílte - {0} mhíle - {0} mhíle - {0} mhíle - {0} míle - {0} míle + + cm + {0} cm + {0} cm + {0} cm + {0} cm + {0} cm + {0}/cm mm @@ -7951,6 +8236,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mm {0} mm + + µméadair + {0} µm + {0} µm + {0} µm + {0} µm + {0} µm + nm {0} nm @@ -7959,22 +8252,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nm {0} nm - - muirmh. - {0} mhuirmh. - {0} mhuirmh. - {0} mhuirmh. - {0} muirmh. - {0} muirmh. - - - pc - {0} pc - {0} pc - {0} pc - {0} pc - {0} pc - pm {0} pm @@ -7983,6 +8260,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + mílte + {0} mhíle + {0} mhíle + {0} mhíle + {0} míle + {0} míle + slata {0} sl. @@ -7991,6 +8276,75 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sl. {0} sl. + + troithe + {0} tr. + {0} thr. + {0} thr. + {0} dtr. + {0} tr. + {0}/tr. + + + orlaí + {0} or. + {0} or. + {0} or. + {0} n-or. + {0} or. + {0}/or. + + + pc + {0} pc + {0} pc + {0} pc + {0} pc + {0} pc + + + solasbhl. + {0} sbh + {0} sbh + {0} sbh + {0} sbh + {0} sbh + + + AR + {0} AR + {0} AR + {0} AR + {0} AR + {0} AR + + + staideanna + {0} st + {0} st + {0} st + {0} st + {0} st + + + feánna + + + muirmh. + {0} mhuirmh. + {0} mhuirmh. + {0} mhuirmh. + {0} muirmh. + {0} muirmh. + + + míle Lochl. + {0} míle Lch + {0} mhíle Lch + {0} mhíle Lch + {0} míle Lch + {0} míle Lch + lucsa {0} lx @@ -7999,30 +8353,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lx {0} lx - - carait - {0} CD - {0} CD - {0} CD - {0} CD - {0} CD - - - graim - {0} g - {0} g - {0} g - {0} g - {0} g - - - kg - {0} kg - {0} kg - {0} kg - {0} kg - {0} kg - t {0} t @@ -8031,13 +8361,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} t {0} t - - µg - {0} µg - {0} µg - {0} µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0} kg + {0} kg + {0} kg + {0}/kg + + + graim + {0} g + {0} g + {0} g + {0} g + {0} g + {0}/g mg @@ -8047,37 +8387,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mg {0} mg - - unsa - {0} unsa - {0} unsa - {0} unsa - {0} n-unsa - {0} unsa - - - unsa t - {0} unsa t - {0} unsa t - {0} unsa t - {0} n-unsa t - {0} unsa t - - - puint - {0} phunt - {0} phunt - {0} phunt - {0} bpunt - {0} punt - - - clocha - {0} chl. - {0} chl. - {0} chl. - {0} gcl. - {0} cloch + + µg + {0} µg + {0} µg + {0} µg + {0} µg + {0} µg tonnaí gearra @@ -8087,6 +8403,48 @@ For terms of use, see http://www.unicode.org/copyright.html {0} t.g. {0} t.g. + + clocha + {0} chl. + {0} chl. + {0} chl. + {0} gcl. + {0} cl. + + + puint + {0} phunt + {0} phunt + {0} phunt + {0} bpunt + {0} punt + {0}/punt + + + unsa + {0} unsa + {0} unsa + {0} unsa + {0} n-unsa + {0} unsa + {0}/unsa + + + unsa t + {0} unsa t + {0} unsa t + {0} unsa t + {0} n-unsa t + {0} unsa t + + + carait + {0} CD + {0} CD + {0} CD + {0} CD + {0} CD + GW {0} GW @@ -8095,22 +8453,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GW {0} GW - - ec - {0} ec - {0} ec - {0} ec - {0} ec - {0} ec - - - kW - {0} kW - {0} kW - {0} kW - {0} kW - {0} kW - MW {0} MW @@ -8119,13 +8461,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} MW {0} MW - - mW - {0} mW - {0} mW - {0} mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW + {0} kW + {0} kW + {0} kW vataí @@ -8135,6 +8477,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + mW + {0} mW + {0} mW + {0} mW + {0} mW + {0} mW + + + ec + {0} ec + {0} ec + {0} ec + {0} ec + {0} ec + hPa {0} hPa @@ -8143,22 +8501,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hPa {0} hPa - - orlaí Hg - {0} or. Hg - {0} or. Hg - {0} or. Hg - {0} n-or. Hg - {0} or. Hg - - - mbar - {0} mbar - {0} mbar - {0} mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -8175,13 +8517,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psoc {0} psoc - - kt - {0} kt - {0} kt - {0} kt - {0} kt - {0} kt + + orlaí Hg + {0} or. Hg + {0} or. Hg + {0} or. Hg + {0} n-or. Hg + {0} or. Hg + + + mbar + {0} mbar + {0} mbar + {0} mbar + {0} mbar + {0} mbar km/uair @@ -8207,6 +8557,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} msu {0} msu + + muirmh/u + {0} mhuirmh/u + {0} mhuirmh/u + {0} mhuirmh/u + {0} muirmh/u + {0} muirmh/u + + + ° + {0}° + {0}° + {0}° + {0}° + {0}° + °C {0}°C @@ -8231,49 +8597,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - acra-tr - {0} ac tr - {0} ac tr - {0} ac tr - {0} ac tr - {0} ac tr - - - buiséil - - - cl - {0} cl - {0} cl - {0} cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - {0} cm³ - {0} cm³ - {0} cm³ - - - tr³ - {0} tr³ - {0} tr³ - {0} tr³ - {0} tr³ - {0} tr³ - - - orlach³ - {0} or³ - {0} or³ - {0} or³ - {0} or³ - {0} or³ - km³ {0} km³ @@ -8289,6 +8612,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0}/cm³ míle³ @@ -8306,37 +8639,29 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sl³ {0} sl³ - - cupáin - {0} c - {0} c - {0} c - {0} c - {0} c + + tr³ + {0} tr³ + {0} tr³ + {0} tr³ + {0} tr³ + {0} tr³ - - dl - {0} dl - {0} dl - {0} dl - {0} dl - {0} dl + + orlach³ + {0} or³ + {0} or³ + {0} or³ + {0} or³ + {0} or³ - - unsaí leacht. - {0} unsa l. - {0} unsa l. - {0} unsa l. - {0} n-unsa l. - {0} unsa l. - - - galúin - {0} ghal. - {0} ghal. - {0} ghal. - {0} ngal. - {0} gal. + + Ml + {0} Ml + {0} Ml + {0} Ml + {0} Ml + {0} Ml hl @@ -8353,14 +8678,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml - {0} Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + {0} dl + {0} dl + {0} dl + + + cL + {0} cL + {0} cL + {0} cL + {0} cL + {0} cL ml @@ -8370,13 +8704,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ml {0} ml - - piontaí - {0} pt - {0} pt - {0} pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + {0} mpt + {0} mpt + {0} mpt + + + cupán méadr. + {0} mc + {0} mc + {0} mc + {0} mc + {0} mc + + + acra-tr + {0} ac tr + {0} ac tr + {0} ac tr + {0} ac tr + {0} ac tr + + + buiséil + + + galúin + {0} ghal. + {0} ghal. + {0} ghal. + {0} ngal. + {0} gal. + {0}/gal. cáirt @@ -8386,6 +8748,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gcárt {0} cárt + + piontaí + {0} pt + {0} pt + {0} pt + {0} pt + {0} pt + + + cupáin + {0} c + {0} c + {0} c + {0} c + {0} c + + + unsaí leacht. + {0} unsa l. + {0} unsa l. + {0} unsa l. + {0} n-unsa l. + {0} unsa l. + spbh {0} spbh @@ -8402,8 +8788,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0}O + {0}T + {0}D + {0}I + + + {0}/{1} + g-fhórsa {0}G @@ -8420,6 +8815,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0}m/s² {0}m/s² + + raid + {0}raid + {0}raid + {0}raid + {0}raid + {0}raid + + + céim + {0}° + {0}° + {0}° + {0}° + {0}° + nóim. stua {0}′ @@ -8436,22 +8847,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - céim - {0}° - {0}° - {0}° - {0}° - {0}° - - - raid - {0}raid - {0}raid - {0}raid - {0}raid - {0}raid - {0} m² {0} m² @@ -8459,6 +8854,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m² {0} m² + + kt + {0}kt + {0}kt + {0}kt + {0}kt + {0}kt + l/km {0}l/km @@ -8467,6 +8870,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}l/km {0}l/km + + l/100km + {0}l/100km + {0}l/100km + {0}l/100km + {0}l/100km + {0}l/100km + mílte/gal {0}míle/g @@ -8475,69 +8886,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0}míle/g {0}míle/g - - giotán - {0} ghiot. - {0} ghiot. - {0} ghiot. - {0} ngiot. - {0} giot. - - - bearta - {0}B - {0}B - {0}B - {0}B - {0}B - - - Gb - {0}Gb - {0}Gb - {0}Gb - {0}Gb - {0}Gb - - - GB - {0}GB - {0}GB - {0}GB - {0}GB - {0}GB - - - kb - {0}kb - {0}kb - {0}kb - {0}kb - {0}kb - - - kB - {0}kB - {0}kB - {0}kB - {0}kB - {0}kB - - - Mb - {0}Mb - {0}Mb - {0}Mb - {0}Mb - {0}Mb - - - MB - {0}MB - {0}MB - {0}MB - {0}MB - {0}MB + + TB + {0}TB + {0}TB + {0}TB + {0}TB + {0}TB Tb @@ -8547,13 +8902,93 @@ For terms of use, see http://www.unicode.org/copyright.html {0}Tb {0}Tb - - TB - {0}TB - {0}TB - {0}TB - {0}TB - {0}TB + + GB + {0}GB + {0}GB + {0}GB + {0}GB + {0}GB + + + Gb + {0}Gb + {0}Gb + {0}Gb + {0}Gb + {0}Gb + + + MB + {0}MB + {0}MB + {0}MB + {0}MB + {0}MB + + + Mb + {0}Mb + {0}Mb + {0}Mb + {0}Mb + {0}Mb + + + kB + {0}kB + {0}kB + {0}kB + {0}kB + {0}kB + + + kb + {0}kb + {0}kb + {0}kb + {0}kb + {0}kb + + + bearta + {0}B + {0}B + {0}B + {0}B + {0}B + + + giotán + {0} ghiot. + {0} ghiot. + {0} ghiot. + {0} ngiot. + {0} giot. + + + bl + {0}b + {0}b + {0}b + {0}b + {0}b + + + + {0}m + {0}m + {0}m + {0}m + {0}m + + + scht + {0}s + {0}s + {0}s + {0}s + {0}s @@ -8571,21 +9006,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}u {0}u - - {0}μs - {0}μs - {0}μs - {0}μs - {0}μs - - - ms - {0}ms - {0}ms - {0}ms - {0}ms - {0}ms - nóim {0}n @@ -8594,21 +9014,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}n {0}n - - - {0}m - {0}m - {0}m - {0}m - {0}m - - - {0}ns - {0}ns - {0}ns - {0}ns - {0}ns - soic {0}s @@ -8617,21 +9022,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0}s {0}s - - scht - {0}s - {0}s - {0}s - {0}s - {0}s + + ms + {0}ms + {0}ms + {0}ms + {0}ms + {0}ms - - bl - {0}b - {0}b - {0}b - {0}b - {0}b + + {0}μs + {0}μs + {0}μs + {0}μs + {0}μs + + + {0}ns + {0}ns + {0}ns + {0}ns + {0}ns aimpéir @@ -8665,6 +9076,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}V {0}V + + kcal + {0}kcal + {0}kcal + {0}kcal + {0}kcal + {0}kcal + cal {0}cal @@ -8681,22 +9100,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}Cal {0}Cal - - giúil - {0}J - {0}J - {0}J - {0}J - {0}J - - - kcal - {0}kcal - {0}kcal - {0}kcal - {0}kcal - {0}kcal - kJ {0}kJ @@ -8705,6 +9108,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}kJ {0}kJ + + giúil + {0}J + {0}J + {0}J + {0}J + {0}J + kW-uair {0}kWh @@ -8721,13 +9132,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0}GHz {0}GHz - - Hz - {0}Hz - {0}Hz - {0}Hz - {0}Hz - {0}Hz + + MHz + {0}MHz + {0}MHz + {0}MHz + {0}MHz + {0}MHz kHz @@ -8737,64 +9148,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0}kHz {0}kHz - - MHz - {0}MHz - {0}MHz - {0}MHz - {0}MHz - {0}MHz - - - AR - {0}AR - {0}AR - {0}AR - {0}AR - {0}AR - - - cm - {0}cm - {0}cm - {0}cm - {0}cm - {0}cm - - - dm - {0}dm - {0}dm - {0}dm - {0}dm - {0}dm - - - feá - - - tr - {0}′ - {0}′ - {0}′ - {0}′ - {0}′ - - - staid - {0}st - {0}st - {0}st - {0}st - {0}st - - - orlaí - {0}″ - {0}″ - {0}″ - {0}″ - {0}″ + + Hz + {0}Hz + {0}Hz + {0}Hz + {0}Hz + {0}Hz km @@ -8804,14 +9164,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}km {0}km - - sbh - {0}sbh - {0}sbh - {0}sbh - {0}sbh - {0}sbh - méadar {0}m @@ -8820,13 +9172,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0}m {0}m - - µm - {0}µm - {0}µm - {0}µm - {0}µm - {0}µm + + dm + {0}dm + {0}dm + {0}dm + {0}dm + {0}dm + + + cm + {0}cm + {0}cm + {0}cm + {0}cm + {0}cm mm @@ -8836,6 +9196,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mm {0}mm + + µm + {0}µm + {0}µm + {0}µm + {0}µm + {0}µm + nm {0}nm @@ -8844,21 +9212,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}nm {0}nm - - {0}mmh. - {0}mmh. - {0}mmh. - {0}mmh. - {0}mmh. - - - pc - {0}pc - {0}pc - {0}pc - {0}pc - {0}pc - pm {0}pm @@ -8875,6 +9228,64 @@ For terms of use, see http://www.unicode.org/copyright.html {0}sl {0}sl + + tr + {0}′ + {0}′ + {0}′ + {0}′ + {0}′ + + + orlaí + {0}″ + {0}″ + {0}″ + {0}″ + {0}″ + + + pc + {0}pc + {0}pc + {0}pc + {0}pc + {0}pc + + + sbh + {0}sbh + {0}sbh + {0}sbh + {0}sbh + {0}sbh + + + AR + {0}AR + {0}AR + {0}AR + {0}AR + {0}AR + + + staid + {0}st + {0}st + {0}st + {0}st + {0}st + + + feá + + + {0}mmh. + {0}mmh. + {0}mmh. + {0}mmh. + {0}mmh. + lucsa {0}lx @@ -8883,30 +9294,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}lx {0}lx - - carat - {0}CD - {0}CD - {0}CD - {0}CD - {0}CD - - - gram - {0}g - {0}g - {0}g - {0}g - {0}g - - - kg - {0}kg - {0}kg - {0}kg - {0}kg - {0}kg - t {0}t @@ -8915,13 +9302,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0}t {0}t - - µg - {0}µg - {0}µg - {0}µg - {0}µg - {0}µg + + kg + {0}kg + {0}kg + {0}kg + {0}kg + {0}kg + + + gram + {0}g + {0}g + {0}g + {0}g + {0}g mg @@ -8931,9 +9326,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mg {0}mg + + µg + {0}µg + {0}µg + {0}µg + {0}µg + {0}µg + cloch + + carat + {0}CD + {0}CD + {0}CD + {0}CD + {0}CD + GW {0}GW @@ -8942,13 +9353,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0}GW {0}GW - - ec - {0}ec - {0}ec - {0}ec - {0}ec - {0}ec + + MW + {0}MW + {0}MW + {0}MW + {0}MW + {0}MW kW @@ -8958,13 +9369,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0}kW {0}kW - - MW - {0}MW - {0}MW - {0}MW - {0}MW - {0}MW + + vataí + {0}W + {0}W + {0}W + {0}W + {0}W mW @@ -8974,13 +9385,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mW {0}mW - - vataí - {0}W - {0}W - {0}W - {0}W - {0}W + + ec + {0}ec + {0}ec + {0}ec + {0}ec + {0}ec hPa @@ -8990,22 +9401,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}hPa {0}hPa - - orlaí Hg - {0}" Hg - {0}" Hg - {0}" Hg - {0}" Hg - {0}" Hg - - - mbar - {0}mb - {0}mb - {0}mb - {0}mb - {0}mb - mm Hg {0}mmHg @@ -9022,13 +9417,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0}psoc {0}psoc - - kt - {0}kt - {0}kt - {0}kt - {0}kt - {0}kt + + orlaí Hg + {0}" Hg + {0}" Hg + {0}" Hg + {0}" Hg + {0}" Hg + + + mbar + {0}mb + {0}mb + {0}mb + {0}mb + {0}mb km/u @@ -9078,8 +9481,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0}K {0}K - - cl + + km³ + {0}km³ + {0}km³ + {0}km³ + {0}km³ + {0}km³ + + + + {0}m³ + {0}m³ + {0}m³ + {0}m³ + {0}m³ cm³ @@ -9089,6 +9505,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0}cm³ {0}cm³ + + míle³ + + + sl³ + {0}sl³ + {0}sl³ + {0}sl³ + {0}sl³ + {0}sl³ + tr³ {0}tr³ @@ -9105,40 +9532,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0}or³ {0}or³ - - km³ - {0}km³ - {0}km³ - {0}km³ - {0}km³ - {0}km³ - - - - {0}m³ - {0}m³ - {0}m³ - {0}m³ - {0}m³ - - - míle³ - - - sl³ - {0}sl³ - {0}sl³ - {0}sl³ - {0}sl³ - {0}sl³ - - - cupán - {0}c - {0}c - {0}c - {0}c - {0}c + + lítir + {0}l + {0}l + {0}l + {0}l + {0}l dl @@ -9148,14 +9548,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0}dl {0}dl - - lítir - {0}l - {0}l - {0}l - {0}l - {0}l + + cl + + cupán + {0}c + {0}c + {0}c + {0}c + {0}c + + + {0}O + {0}T + {0}D + {0}I + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ga_IE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ga_IE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ga_IE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ga_IE.xml index 95112ab23d8..3c6921664e5 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ga_IE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ga_IE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gd.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gd.xml similarity index 83% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gd.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gd.xml index 889352e4475..9964024cab1 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gd.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gd.xml @@ -1,13 +1,12 @@ - - - + @@ -19,20 +18,33 @@ For terms of use, see http://www.unicode.org/copyright.html Afar Abchasais + Basa Acèh + Acoli + Adangme + Adyghe Avestanais Arabais Thuiniseach Afraganais + Afrihili Aghem + Ainu Akan + Acadais + Alabama Aleutais + Albàinis Ghegeach Amtharais Aragonais Seann-Bheurla + Angika Arabais Nuadh-Arabais Stannardach Aramais Mapuche + Araona + Arapaho Arabais Aildireach + Arawak Arabais Mhorocach Arabais Èipheiteach Asamais @@ -40,50 +52,106 @@ For terms of use, see http://www.unicode.org/copyright.html Cainnt-shanais na h-Aimeireaga Astùrais Avarais + Kotava + Awadhi + Aymara Asarbaideànais Azeri - Asarbaideànais Dheasach Bashkir Baluchì + Cànan Bali + Basaa + Bamun + Batak Toba + Ghomala Bealaruisis + Beja Bemba + Betawi Bena + Bafut + Badaga Bulgarais + Balochi Shiarach + Bhojpuri Bislama + Bikol + Bini + Banjar + Kom + Siksika Bambara Beangailis Tibeitis + Bishnupriya + Bakhtiari Breatnais + Braj + Brahui Bodo Bosnais + Akoose + Buriat + Cànan nam Bugis + Bulu + Blin + Medumba Catalanais + Caddo + Carib + Cayuga + Atsam Deideanais + Cebuano Chiga Chamorro + Chibcha + Chagatai + Cànan Chuuk + Mari + Chinuk Wawa + Choctaw + Chipewyan Cherokee + Cheyenne Cùrdais Soranî Corsais Coptais + Capiznon + Cree Turcais Chriomach Seacais Caisiubais Slàbhais na h-Eaglaise + Chuvash Cuimris Danmhairgis + Dakota + Dargwa Taita Gearmailtis Gearmailtis na h-Ostaire Àrd-Ghearmailtis na h-Eilbheise + Delaware + Slavey + Dogrib + Dinka Zarma + Dogri Sòrbais Ìochdarach + Dusun Mheadhanach Duala Meadhan-Dhuitsis Divehi Jola-Fonyi + Dyula Dzongkha + Dazaga Embu Ewe + Efik Èipheitis Àrsaidh + Ekajuk Greugais Elamais Beurla @@ -99,104 +167,187 @@ For terms of use, see http://www.unicode.org/copyright.html Spàinntis na h-Aimeireaga Laidinneach Spàinntis Eòrpach Spàinntis Mheagsagach + Yupik Mheadhanach Eastoinis Basgais - Farsaidh + Ewondo + Cànan na h-Extremadura + Peirsis + Fang + Fanti + Fulah Fionnlannais Filipinis + Meänkieli Fìdis Fàrothais + Fon Fraingis Fraingis Chanada Fraingis Eilbheiseach + Fraingis nan Cajun Meadhan-Fhraingis Seann-Fhraingis + Arpitan Frìoslannais Thuathach Frìoslannais Earach Friùilis - Frìoslannais Siarach + Frìoslannais Shiarach Gaeilge + Ga Gagauz + Gan + Gayo + Gbaya + Dari Zoroastrach Gàidhlig Ge’ez Ciribeasais Gailìsis + Gilaki Meadhan-Àrd-Gearmailtis Guaraní Seann-Àrd-Gearmailtis + Konkani Goa + Gondi + Gorontalo Gotais + Grebo Greugais Àrsaidh Gearmailtis Eilbheiseach Gujarati + Wayuu + Frafra Gusii Gaelg + Gwichʼin Hausa + Haida + Hakka Cànan Hawai’i Eabhra Hindis Hindis Fhìditheach + Hiligaynon + Cànan Het + Hmong Hiri Motu Cròthaisis Sòrbais Uachdarach + Xiang Crìtheol Haidhti Ungairis + Hupa Airmeinis + Herero Interlingua + Iban + Ibibio Innd-Innsis Interlingue Igbo Yi Sichuan Inupiaq + Iloko + Ingush Ido Innis Tìlis Eadailtis Inuktitut Seapanais Beurla Crìtheolach Diameuga - Lojban + Lojban Ngomba Machame Peirsis Iùdhach Arabais Iùdhach Deàbhanais Cairtbheilis + Kara-Kalpak Kabyle + Kachin + Jju Kamba + Kawi + Kanembu + Tyap Makonde Kabuverdianu + Kenyang + Koro + Kongo + Kaingang + Khasi + Cànan Khotan Koyra Chiini + Khowar Kikuyu + Kirmanjki + Kuanyama Casachais + Kako Kalaallisut Kalenjin Cmèar + Kimbundu Kannada Coirèanais Komi-Permyak Konkani + Kpelle + Kanuri + Karachay-Balkar + Krio + Kinaray-a + Kurukh Caismiris Shambala Bafia Cùrdais + Kumyk + Kutenai + Komi Còrnais Cìorgasais Laideann Ladino Langi + Lahnda + Lamba Lugsamburgais + Lingua Franca Nova Ganda + Cànan Limburg Liogùrais Lakhóta Lombardais Lingala Làtho + Mongo + Lozi + Luri Thuathach Liotuainis Luba-Katanga + Luba-Lulua + Luiseño + Lunda Luo + Mizo Luyia Laitbheis Sìnis an Litreachais + Laz + Cànan Madhura + Mafa + Magahi + Maithili + Makasar + Mandingo Maasai + Maba + Moksha + Mandar + Mende Meru Morisyen Malagasais @@ -205,82 +356,141 @@ For terms of use, see http://www.unicode.org/copyright.html Meta’ Marshallais Māori + Mi’kmaq + Minangkabau Masadonais Malayalam Mongolais + Manchu + Manipuri Mohawk + Mossi Marathi + Mari Shiarach Malaidhis Maltais Mundang Iomadh cànan + Creek + Marwari + Mentawai Burmais + Myene + Erzya + Mazanderani Nabhru + Min Nan Nama Bokmål na Nirribhidh Ndebele Thuathach - Neapàilis - Cànan Niue + Gearmailtis Ìochdarach + Sagsannais Ìochdarach + Neapàlais + Newari + Ndonga + Nias + Cànan Niue + Ao Naga Duitsis Flannrais Kwasio Nynorsk na Nirribhidh + Ngiemboon Nirribhis + Nogai Seann-Lochlannais + Novial N’Ko Ndebele Dheasach Leasotais Thuathach Nuer + Navajo + Newari Chlasaigeach Chichewa + Nyamwezi Nyankole + Nyoro + Nzima Ogsatanais + Ojibwa Oromo - Oriya + Odia Ossetic + Osage Turcais Otomanach Panjabi + Pangasinan + Pahlavi + Pampanga + Papiamento Palabhais + Picard Gearmailtis Phennsylvania + Plautdietsch Seann-Pheirsis + Phenicis Pali Pòlainnis + Piedmontese + Cànan Pohnpei Pruisis - Pachtu + Seann-Phrovençal + Pashto Portagailis Portagailis Bhraisileach Portagailis Eòrpach Ceatsua K’iche’ + Quichua Àrd-tìr Chimborazo + Rajasthani Rapa Nui + Cànan Rarotonga + Romagnol Rumains Kirundi Romàinis Moldobhais Rombo Romanais + Root Ruisis + Rusyn + Roviana Kinyarwanda Rwa Sanskrit + Sandawe Sachais Aramais Shamaritanach Samburu + Sasak + Santali + Saurashtra + Ngambay Sangu Sàrdais Sisilis Albais Sindhi + Sassarese + Cùrdais Dheasach Sàmais Thuathach + Seneca Sena + Seri + Selkup Koyraboro Senni Sango Seann-Ghaeilge - Sèirb-Chròthaisis + Sèirb-Chròthaisis Tachelhit + Shan Arabais Seàdach Sinhala + Sidamo Slòbhacais Slòbhainis + Selayar Samothais Sàmais Dheasach Sàmais Lule @@ -291,81 +501,147 @@ For terms of use, see http://www.unicode.org/copyright.html Somàilis Albàinis Sèirbis + Sranan Tongo + Serer + Swati + Saho Leasotach Dheasach Cànan Sunda + Sukuma + Susu + Cànan Sumer Suainis Kiswahili + Kiswahili na Congo Comorais - Kiswahili na Congo Suraidheac Chlasaigeach Suraidheac Taimilis + Tulu Telugu + Timne Teso + Terêna Tetum Taidigis Tàidh Tigrinya + Tigre + Tiv Turcmanais Tokelau + Tsakhur Tagalog + Klingon + Tlingit + Talysh + Tamashek + Tswana Tongais Nyasa Tonga Tok Pisin Turcais + Turoyo + Taroko Tsonga + Tsimshian Tatarais + Tati + Tumbuka + Tubhalu + Twi Tasawaq + Cànan Tahiti + Cànan Tuva Tamazight Meadhan na h-Atlas + Udmurt Ùigiurais Ucràinis + Umbundu Cànan neo-aithnichte Ùrdu Usbagais Vai Venda + Veps Bhiet-Namais Flannrais Siarach Volapük + Võro Vunjo + Walloon + Gearmailtis Wallis + Wolaytta + Waray + Washo + Warlpiri Wolof + Wu + Kalmyk Xhosa Soga + Yao + Cànan Yap + Yangben + Yemba Iùdhais Ioruba + Nheengatu Cantonais + Zhuang + Zapotec + Comharran Bliss + Cànan Zeeland + Zenaga Tamazight Stannardach Moroco Sìnis Sìnis Shimplichte Sìnis Thradaiseanta Zulu - Susbaint nach eil ‘na chànan + Zuñi + Susbaint nach eil ’na chànan + Zazaki + + + + + + + + + + + + + + + @@ -373,41 +649,91 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + @@ -454,7 +780,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albàinia Airmeinia - Eileanan Aintilia nan Tìrean Ìsle Angòla An Antartaig An Argantain @@ -488,7 +813,7 @@ For terms of use, see http://www.unicode.org/copyright.html Canada Na h-Eileanan Cocos (Keeling) Congo - Kinshasa - A’ Chongo (Poblachd Dheamocratach) + A’ Chongo (PDC) Poblachd Meadhan Afraga A’ Chongo - Brazzaville A’ Chongo (Poblachd) @@ -605,7 +930,7 @@ For terms of use, see http://www.unicode.org/copyright.html A’ Mhasadon A’ Mhasadon (FYROM) Màili - Miànmar (Burma) + Miànmar Dùthaich nam Mongol Macàthu SAR na Sìne Macàthu @@ -696,7 +1021,7 @@ For terms of use, see http://www.unicode.org/copyright.html An Tansan An Ucràin Uganda - Meanbh-Eileanan Iomallach nan Stàitean Aonaichte + Meanbh-Eileanan Iomallach nan SA Na Stàitean Aonaichte SA Uruguaidh @@ -719,86 +1044,121 @@ For terms of use, see http://www.unicode.org/copyright.html Roinn-dùthcha neo-aithnichte - Beurla Bhun-Tomhasach na h-Alba + Beurla Bhun-Tomhasach na h-Alba Mìosachan Òrdugh an t-seòrsachaidh Airgeadra + Cearcall an ama (12 no 24 uair) + Stoidhle nam brisidhean-loidhe + Siostam tomhais Àireamhan - Àireamhan Arabach-Innseanach - Àireamhan Arabach-Innseanach leudaichte - Àireamhan na h-Airmeinise - Àireamhan beaga na h-Airmeinise - Àireamhan Bali - Àireamhan na Beangailise - Òrdugh seòrsachaidh na Sìnise Tradaiseanta - Big5 - Am Mìosachan Budach - Am Mìosachan Sìneach - Am Mìosachan Coptach - Mìosachan Dangi - Àireamhan Devanagari - Òrdugh seòrsachaidh an fhaclair - Òrdugh seòrsachaidh Unicode bunaiteach - Òrdugh seòrsachaidh Eòrpach - Àireamhan Itiopach - Mìosachan na h-Itioipe - Mìosachan Itiopach Amete Alem - Àireamhan làn-leud - Òrdugh seòrsachaidh na Sìnise Simplichte - GB2312 - Àireamhan na Cairtbheilise - Am Mìosachan Griogarach - Àireamhan na Greugaise - Àireamhan beaga na Greugaise - Àireamhan Gujarati - Àireamhan Gurmukhi - Àireamhan deicheach na Sìnise - Àireamhan na Sìnise Shimplichte - Àireamhan ionmhasail na Sìnise Shimplichte - Àireamhan na Sìnise Thradaiseanta - Àireamhan ionmhasail na Sìnise Thradaiseanta - Àireamhan na h-Eabhra - Am Mìosachan Eabhrach - Mìosachan Nàiseanta nan Innseachan - Am Mìosachan Ioslamach - Am Mìosachan Ioslamach (clàrach, linn sìobhalta) - Am Mìosachan Ioslamach (arabia nan Sabhd, sealladh) - Am Mìosachan Ioslamach (clàrach, linn reul-eòlach) - Am Mìosachan Ioslamach (Umm al-Qura) - Mìosachan ISO-8601 - Am Mìosachan Seapanach - Àireamhan na Deàbhanaise - Àireamhan na Seapanaise - Àireamhan ionmhasail na Seapanaise - Àireamhan Cmèar - Àireamhan Kannada - Àireamhan Làtho - Àireamhan Siarach - Aìreamhan Malayalam - Àireamhan na Mongolaise - Àireamhan Miànmar - Àireamhan Oriya - Am Mìosachan Pearsach - Òrdugh seòrsachaidh nan leabhraichean-fòn - Òrdugh seòrsachaidh Pinyin - Òrdugh seòrsachaidh ath-leasaichte - Mìosachan Poblachd na Sìne - Àireamhan Ròmanach - Àireamhan beaga Ròmanach - Lorg coitcheann - Lorg leis a’ chiad chonnrag Hangul - Òrdugh seòrsachaidh stannardach - Òrdugh nan stràcan - Àireamhan na Taimilise Tradaiseanta - Àireamhan na Taimilise - Àireamhan Telugu - Àireamhan Tàidh - Àireamhan na Tibeitise - Òrdugh seòrsachaidh tradaiseanta - Òrdugh an fhreumha ‘s nan stràcan - Òrdugh seòrsachaidh Zhuyin + Am Mìosachan Budach + Am Mìosachan Sìneach + Am Mìosachan Coptach + Mìosachan Dangi + Mìosachan na h-Itioipe + Mìosachan Itiopach Amete Alem + Am Mìosachan Griogarach + Am Mìosachan Eabhrach + Mìosachan Nàiseanta nan Innseachan + Am Mìosachan Ioslamach + Am Mìosachan Ioslamach (clàrach, linn sìobhalta) + Am Mìosachan Ioslamach (Aràibia nan Sabhd, sealladh) + Am Mìosachan Ioslamach (clàrach, linn reul-eòlach) + Am Mìosachan Ioslamach (Umm al-Qura) + Mìosachan ISO-8601 + Am Mìosachan Seapanach + Am Mìosachan Pearsach + Mìosachan Poblachd na Sìne + Òrdugh seòrsachaidh na Sìnise Tradaiseanta - Big5 + Òrdugh seòrsachaidh roimhe a chum co-chòrdalachd + Òrdugh seòrsachaidh an fhaclair + Òrdugh seòrsachaidh Unicode bunaiteach + Òrdugh seòrsachaidh Emoji + Òrdugh seòrsachaidh Eòrpach + Òrdugh seòrsachaidh na Sìnise Simplichte - GB2312 + Òrdugh seòrsachaidh nan leabhraichean-fòn + Òrdugh seòrsachaidh Pinyin + Òrdugh seòrsachaidh ath-leasaichte + Lorg coitcheann + Lorg leis a’ chiad chonnrag Hangul + Òrdugh seòrsachaidh stannardach + Òrdugh nan stràcan + Òrdugh seòrsachaidh tradaiseanta + Òrdugh an fhreumha ’s nan stràcan + Òrdugh seòrsachaidh Zhuyin + Cleoc 12 uair a thìde (0–11) + Cleoc 12 uair a thìde (1–12) + Cleoc 24 uair a thìde (0–23) + Cleoc 24 uair a thìde (1–24) + Brisidhean-loidhe fuasgailte + Brisidhean-loidhe àbhaisteach + Brisidhean-loidhe teanna + Tomhas meatrach + Tomhas impireil + Tomhas nan Stàitean Aonaichte + Àireamhan Arabach-Innseanach + Àireamhan Arabach-Innseanach leudaichte + Àireamhan na h-Airmeinise + Àireamhan beaga na h-Airmeinise + Àireamhan Bali + Àireamhan na Beangailise + Àireamhan Brahmi + Àireamhan Chakma + Àireamhan Cham + Àireamhan Devanagari + Àireamhan Itiopach + Àireamhan làn-leud + Àireamhan na Cairtbheilise + Àireamhan na Greugaise + Àireamhan beaga na Greugaise + Àireamhan Gujarati + Àireamhan Gurmukhi + Àireamhan deicheach na Sìnise + Àireamhan na Sìnise Shimplichte + Àireamhan ionmhasail na Sìnise Shimplichte + Àireamhan na Sìnise Thradaiseanta + Àireamhan ionmhasail na Sìnise Thradaiseanta + Àireamhan na h-Eabhra + Àireamhan na Deàbhanaise + Àireamhan na Seapanaise + Àireamhan ionmhasail na Seapanaise + Àireamhan Kayah Li + Àireamhan Cmèar + Àireamhan Kannada + Àireamhan Tai Tham Hora + Àireamhan Tai Tham Tham + Àireamhan Làtho + Àireamhan Siarach + Àireamhan Lepcha + Àireamhan Limbu + Àireamhan Malayalam + Àireamhan na Mongolaise + Àireamhan Meetei Mayek + Àireamhan Miànmar + Àireamhan Shan Miànmar + Àireamhan N’Ko + Àireamhan Ol Chiki + Àireamhan Oriya + Àireamhan Osmanya + Àireamhan Ròmanach + Àireamhan beaga Ròmanach + Àireamhan Saurashtra + Àireamhan Sharada + Àireamhan Sora Sompeng + Àireamhan Sunda + Àireamhan Takri + Àireamhan Tai Lue Ùr + Àireamhan na Taimilise Tradaiseanta + Àireamhan na Taimilise + Àireamhan Telugu + Àireamhan Tàidh + Àireamhan na Tibeitise + Àireamhan Vai BGN @@ -844,6 +1204,27 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + {0} – {1} + + HH – HH + + + HH:mm – HH:mm + HH:mm – HH:mm + + + HH:mm – HH:mm v + HH:mm – HH:mm v + + + HH – HH v + + + + @@ -890,6 +1271,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E, d G y LLL y G @@ -898,14 +1280,14 @@ For terms of use, see http://www.unicode.org/copyright.html L d/M E, d/M - dd/MM + dd/MM LLL d MMM E, d MMM d MMMM y G E, d/M/y - MM/y + MM/y LLL y LLLL y y G @@ -915,6 +1297,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL y G d MMM y G E, d MMM y G + MMMM y G QQQ y G QQQQ y G @@ -923,21 +1306,37 @@ For terms of use, see http://www.unicode.org/copyright.html d – d + + ha – ha + h – ha + + + HH – HH + - h:mm–h:mm a - h:mm–h:mm a + h:mma – h:mma + h:mm – h:mma + h:mm – h:mma - HH:mm–HH:mm - HH:mm–HH:mm + HH:mm – HH:mm + HH:mm – HH:mm - h:mm–h:mm a v - h:mm–h:mm a v + h:mma – h:mma v + h:mm – h:mma v + h:mm – h:mma v - HH:mm–HH:mm v - HH:mm–HH:mm v + HH:mm – HH:mm v + HH:mm – HH:mm v + + + ha – ha v + h – ha v + + + HH – HH v M – M @@ -1212,14 +1611,30 @@ For terms of use, see http://www.unicode.org/copyright.html + + m + f + + + m + f + + + m + f + + + + + m + f + m - f f m - meadhan-latha f @@ -1227,15 +1642,11 @@ For terms of use, see http://www.unicode.org/copyright.html Ro Chrìosta - RLC An dèidh Chrìosta - LC - RC - RLC - AD - LC + RC + AD R @@ -1325,6 +1736,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mma v + HH:mm v L d/M E, d/M @@ -1447,6 +1862,20 @@ For terms of use, see http://www.unicode.org/copyright.html + + + Ro Ph. na Sìne + Mínguó + + + Ro PnS + Mínguó + + + Ro PnS + Mínguó + + @@ -1492,14 +1921,18 @@ For terms of use, see http://www.unicode.org/copyright.html an ceann {0} bliadhna - o chionn {0} bhliadhna - o chionn {0} bhliadhna - o chionn {0} bliadhnaichean - o chionn {0} bliadhna + {0} bhliadhna air ais + {0} bhliadhna air ais + {0} bhliadhnaichean air ais + {0} bliadhna air ais blia. + a-bhòn-uiridh + an-uiridh + am bliadhna + an ath-bhliadhna an {0} bhlia. an {0} bhlia. @@ -1515,21 +1948,28 @@ For terms of use, see http://www.unicode.org/copyright.html bl. + a-bh-uir. + an-uir. + am bl. + an ath-bhl. - +{0} bl. - +{0} bl. + +{0} bhl. + +{0} bhl. +{0} bl. +{0} bl. - -{0} bl. - -{0} bl. + -{0} bhl. + -{0} bhl. -{0} bl. -{0} bl. cairteal + an cairteal seo chaidh + an cairteal seo + an ath-chairteal an ceann {0} chairteil an ceann {0} chairteil @@ -1545,6 +1985,9 @@ For terms of use, see http://www.unicode.org/copyright.html cairt. + an cairt. sa chaidh + an cairt. seo + an ath-chairt. an {0} chairt. an {0} chairt. @@ -1560,6 +2003,9 @@ For terms of use, see http://www.unicode.org/copyright.html c. + c. ch. + an c. seo + ath-ch. +{0} c. +{0} c. @@ -1585,38 +2031,44 @@ For terms of use, see http://www.unicode.org/copyright.html an ceann {0} mìosa - o chionn {0} mhìosa - o chionn {0} mhìosa - o chionn {0} mìosan - o chionn {0} mìosa + {0} mhìos air ais + {0} mhìos air ais + {0} mìosan air ais + {0} mìos air ais mìos + am mìos sa chaidh + am mìos seo + an ath-mhìos - an {0} mìos. - an {0} mìos. + an {0} mhìos. + an {0} mhìos. an {0} mìos. an {0} mìos. - o {0} mìos. - o {0} mìos. + o {0} mhìos. + o {0} mhìos. o {0} mìos. o {0} mìos. mì. + mì. ch. + am mì. seo + ath-mhì. - +{0} mì. - +{0} mì. + +{0} mhì. + +{0} mhì. +{0} mì. +{0} mì. - -{0} mì. - -{0} mì. + -{0} mhì. + -{0} mhì. -{0} mì. -{0} mì. @@ -1633,14 +2085,17 @@ For terms of use, see http://www.unicode.org/copyright.html an ceann {0} seachdain - o chionn {0} seachdain - o chionn {0} sheachdain - o chionn {0} seachdainean - o chionn {0} seachdain + {0} seachdain air ais + {0} sheachdain air ais + {0} seachdainean air ais + {0} seachdain air ais seachd. + seachd. sa chaidh + an t-seachd. seo + an ath-sheachd. an {0} sheachd. an {0} sheachd. @@ -1656,6 +2111,9 @@ For terms of use, see http://www.unicode.org/copyright.html sn. + sn. ch. + an t-sn. seo + ath-shn. +{0} sn. +{0} sn. @@ -1684,14 +2142,20 @@ For terms of use, see http://www.unicode.org/copyright.html an ceann {0} latha - o chionn {0} latha - o chionn {0} latha - o chionn {0} làithean - o chionn {0} latha + {0} latha air ais + {0} latha air ais + {0} làithean air ais + {0} latha air ais + a-bhòin-dè + an-dè + an-diugh + a-màireach + an-earar + an-eararais an {0} là an {0} là @@ -1707,6 +2171,12 @@ For terms of use, see http://www.unicode.org/copyright.html + a-bhòin-dè + an-dè + an-diugh + a-màireach + an-earar + an-eararais +{0} là +{0} là @@ -1840,10 +2310,10 @@ For terms of use, see http://www.unicode.org/copyright.html an ceann {0} uair a thìde - o chionn {0} uair a thìde - o chionn {0} uair a thìde - o chionn {0} uairean a thìde - o chionn {0} uair a thìde + {0} uair a thìde air ais + {0} uair a thìde air ais + {0} uairean a thìde air ais + {0} uair a thìde air ais @@ -1885,10 +2355,10 @@ For terms of use, see http://www.unicode.org/copyright.html an ceann {0} mionaid - o chionn {0} mhionaid - o chionn {0} mhionaid - o chionn {0} mionaidean - o chionn {0} mionaid + {0} mhionaid air ais + {0} mhionaid air ais + {0} mionaidean air ais + {0} mionaid air ais @@ -1923,6 +2393,7 @@ For terms of use, see http://www.unicode.org/copyright.html diog + an-dràsta an ceann {0} diog an ceann {0} dhiog @@ -1930,14 +2401,15 @@ For terms of use, see http://www.unicode.org/copyright.html an ceann {0} diog - o chionn {0} diog - o chionn {0} dhiog - o chionn {0} diogan - o chionn {0} diog + {0} diog air ais + {0} dhiog air ais + {0} diogan air ais + {0} diog air ais diog + an-dràsta an {0} diog an {0} dhiog @@ -1953,6 +2425,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + an-dràsta +{0} d +{0} d @@ -2454,7 +2927,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Tìde Samhraidh Bhreatainn + Tìde samhraidh Bhreatainn TSB @@ -2553,7 +3026,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bun-àm na h-Èireann - TSÈ (Èirinn) + TSÈ (Èirinn) Baile Àtha Cliath @@ -2851,6 +3324,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -2935,6 +3411,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Chita + Yakutsk @@ -2953,6 +3432,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolymsk + Kamchatka @@ -3101,6 +3583,11 @@ For terms of use, see http://www.unicode.org/copyright.html Nome + + HST + HST + HDT + Honolulu @@ -3256,7 +3743,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Bun-àm Afraga a Deas + Àm Afraga a Deas @@ -3272,6 +3759,11 @@ For terms of use, see http://www.unicode.org/copyright.html Bun-àm Alaska Tìde samhraidh Alaska + + AKT + AKST + AKDT + @@ -3293,6 +3785,11 @@ For terms of use, see http://www.unicode.org/copyright.html Bun-àm Meadhan Aimeireaga a Tuath Tìde samhraidh Meadhan Aimeireaga a Tuath + + CT + CST + CDT + @@ -3300,6 +3797,11 @@ For terms of use, see http://www.unicode.org/copyright.html Bun-àm Aimeireaga a Tuath an Ear Tìde samhraidh Aimeireaga a Tuath an Ear + + ET + EST + EDT + @@ -3307,6 +3809,11 @@ For terms of use, see http://www.unicode.org/copyright.html Bun-àm Monadh Aimeireaga a Tuath Tìde samhraidh Monadh Aimeireaga a Tuath + + MT + MST + MDT + @@ -3314,6 +3821,11 @@ For terms of use, see http://www.unicode.org/copyright.html Bun-àm a’ Chuain Sèimh Tìde samhraidh a’ Chuain Sèimh + + PT + PST + PDT + @@ -3377,6 +3889,11 @@ For terms of use, see http://www.unicode.org/copyright.html Bun-àm a’ Chuain Siar Tìde samhraidh a’ Chuain Siar + + AT + AST + ADT + @@ -3559,9 +4076,9 @@ For terms of use, see http://www.unicode.org/copyright.html Tìde samhraidh Meadhan na Roinn-Eòrpa - CET - CET - CEST + CET + CET + CEST @@ -3571,9 +4088,9 @@ For terms of use, see http://www.unicode.org/copyright.html Tìde samhraidh na Roinn-Eòrpa an Ear - EET - EET - EEST + EET + EET + EEST @@ -3588,9 +4105,9 @@ For terms of use, see http://www.unicode.org/copyright.html Tìde samhraidh na Roinn-Eòrpa an Iar - WET - WET - WEST + WET + WET + WEST @@ -3644,7 +4161,7 @@ For terms of use, see http://www.unicode.org/copyright.html Greenwich Mean Time - GMT + GMT @@ -3678,10 +4195,15 @@ For terms of use, see http://www.unicode.org/copyright.html - Àm nan Eileanan Hawai’i ‘s Aleutach - Bun-àm nan Eileanan Hawai’i ‘s Aleutach - Tìde Samhraidh nan Eileanan Hawai’i ‘s Aleutach + Àm nan Eileanan Hawai’i ’s Aleutach + Bun-àm nan Eileanan Hawai’i ’s Aleutach + Tìde Samhraidh nan Eileanan Hawai’i ’s Aleutach + + HAT + HAST + HADT + @@ -3849,7 +4371,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Eileanan Mharshall + Àm Eileanan Mharshall @@ -4026,9 +4548,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Àm Qyzylorda - Bun-àm Qyzylorda - Tìde samhraidh Qyzylorda + Àm Qızılorda + Bun-àm Qızılorda + Tìde samhraidh Qızılorda @@ -4215,10 +4737,258 @@ For terms of use, see http://www.unicode.org/copyright.html latn 1 + + ٫ + ٬ + ؛ + ٪ + ‏+ + ‏- + اس + × + ؉ + + NaN + : + + + ٫ + ٬ + ؛ + ٪ + ‎+‎ + ‎-‎ + ×۱۰^ + × + ؉ + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + . , - ; + ; % + - @@ -4229,6 +4999,299 @@ For terms of use, see http://www.unicode.org/copyright.html NaN : + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + . + , + ; + % + + + - + E + × + + + NaN + + + + + #,##0.### + + + @@ -4245,8 +5308,8 @@ For terms of use, see http://www.unicode.org/copyright.html 00 mhìle 00 mìle 00 mìle - 000 mìle - 000 mìle + 000 mhìle + 000 mhìle 000 mìle 000 mìle 0 mhillean @@ -4257,8 +5320,8 @@ For terms of use, see http://www.unicode.org/copyright.html 00 mhillean 00 millean 00 millean - 000 millean - 000 millean + 000 mhillean + 000 mhillean 000 millean 000 millean 0 bhillean @@ -4271,8 +5334,8 @@ For terms of use, see http://www.unicode.org/copyright.html 00 billean 000 billean 000 billean - 000 billean - 000 billean + 000 bhillean + 000 bhillean 0 trillean 0 thrillean 0 trillean @@ -4281,9 +5344,9 @@ For terms of use, see http://www.unicode.org/copyright.html 00 thrillean 00 trillean 00 trillean - 000T - 000T - 000T + 000 trillean + 000 thrillean + 000 trillean 000 trillean @@ -4340,6 +5403,13 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + #E0 + + + @@ -4347,6 +5417,13 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + #,##0% + + + @@ -4354,6 +5431,20 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + ¤#,##0.00 + + + ¤#,##0.00;(¤#,##0.00) + + + {0} {1} + {0} {1} + {0} {1} + {0} {1} + @@ -4363,6 +5454,58 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤0K + ¤0K + ¤0K + ¤00K + ¤00K + ¤00K + ¤00K + ¤000K + ¤000K + ¤000K + ¤000K + ¤0M + ¤0M + ¤0M + ¤0M + ¤00M + ¤00M + ¤00M + ¤00M + ¤000M + ¤000M + ¤000M + ¤000M + ¤0B + ¤0B + ¤0B + ¤0B + ¤00B + ¤00B + ¤00B + ¤00B + ¤000B + ¤000B + ¤000B + ¤000B + ¤0T + ¤0T + ¤0T + ¤0T + ¤00T + ¤00T + ¤00T + ¤00T + ¤000T + ¤000T + ¤000T + ¤000T + + {0} {1} {0} {1} {0} {1} @@ -4440,6 +5583,7 @@ For terms of use, see http://www.unicode.org/copyright.html kwanza Angòlach kwanza Angòlach AOA + Kz Kwanza Angòlach (1977–1991) @@ -4562,6 +5706,7 @@ For terms of use, see http://www.unicode.org/copyright.html mark iompachail Bhosna agus Hearsagobhana mark iompachail Bhosna agus Hearsagobhana BAM + KM Dinar ùr Bhosna agus Hearsagobhana (1994–1997) @@ -4686,6 +5831,7 @@ For terms of use, see http://www.unicode.org/copyright.html boliviano Boilibhiach boliviano Boilibhiach BOB + Bs Boliviano Boilibhiach (1863–1963) @@ -4800,6 +5946,7 @@ For terms of use, see http://www.unicode.org/copyright.html pula Botsuanach pula Botsuanach BWP + P Rùbal ùr Bealaruiseach (1994–1999) @@ -4959,6 +6106,7 @@ For terms of use, see http://www.unicode.org/copyright.html pesothan iompachail Cùbach peso iompachail Cùbach CUC + $ Peso Cùbach @@ -4992,6 +6140,7 @@ For terms of use, see http://www.unicode.org/copyright.html koruna Seiceach koruna Seiceach CZK + Mark na Gearmailte an Ear @@ -5024,6 +6173,7 @@ For terms of use, see http://www.unicode.org/copyright.html kroner Danmhairgeach krone Danmhairgeach DKK + kr Peso Doiminiceach @@ -5073,6 +6223,7 @@ For terms of use, see http://www.unicode.org/copyright.html puinnd Èipheiteach punnd Èipheiteach EGP + Nakfa Eartrach @@ -5148,6 +6299,7 @@ For terms of use, see http://www.unicode.org/copyright.html puinnd Fhàclannach punnd Fàclannach FKP + £ Franc Frangach @@ -5222,6 +6374,7 @@ For terms of use, see http://www.unicode.org/copyright.html franc Ginitheach franc Ginitheach GNF + FG Syli Ginitheach @@ -5254,6 +6407,7 @@ For terms of use, see http://www.unicode.org/copyright.html quetzal Guatamalach quetzal Guatamalach GTQ + Q Escudo Gini na Portagaile @@ -5296,6 +6450,7 @@ For terms of use, see http://www.unicode.org/copyright.html lempira Hondùrach lempira Hondùrach HNL + L Dinar Cròthaiseach @@ -5312,6 +6467,7 @@ For terms of use, see http://www.unicode.org/copyright.html kuna Cròthaiseach kuna Cròthaiseach HRK + kn Gourde Haidhteach @@ -5328,6 +6484,7 @@ For terms of use, see http://www.unicode.org/copyright.html forint Ungaireach forint Ungaireach HUF + Ft Rupiah Innd-Innseach @@ -5336,6 +6493,7 @@ For terms of use, see http://www.unicode.org/copyright.html rupiah Innd-Innseach rupiah Innd-Innseach IDR + Rp Punnd Èireannach @@ -5410,6 +6568,7 @@ For terms of use, see http://www.unicode.org/copyright.html krónur Innis Tìleach króna Innis Tìleach ISK + kr Lira Eadailteach @@ -5477,6 +6636,7 @@ For terms of use, see http://www.unicode.org/copyright.html franc Comorosach franc Comorosach KMF + CF Won Choirèa a Tuath @@ -5485,6 +6645,7 @@ For terms of use, see http://www.unicode.org/copyright.html won Choirèa a Tuath won Choirèa a Tuath KPW + Hwan Choirèa a Deas (1953–1962) @@ -5553,6 +6714,7 @@ For terms of use, see http://www.unicode.org/copyright.html puinnd Leabanach punnd Leabanach LBP + Rupee Sri Lancach @@ -5561,6 +6723,7 @@ For terms of use, see http://www.unicode.org/copyright.html rupee Sri Lancach rupee Sri Lancach LKR + Rs Dolar Libèireach @@ -5586,6 +6749,7 @@ For terms of use, see http://www.unicode.org/copyright.html litas Liotuaineach litas Liotuaineach LTL + Lt Talonas Liotuaineach @@ -5626,6 +6790,7 @@ For terms of use, see http://www.unicode.org/copyright.html lats Laitbheach lats Laitbheach LVL + Ls Rùbal Laitbheach @@ -5690,6 +6855,7 @@ For terms of use, see http://www.unicode.org/copyright.html ariary Madagasgarach ariary Madagasgarach MGA + Ar Franc Madagasgarach @@ -5730,6 +6896,7 @@ For terms of use, see http://www.unicode.org/copyright.html kyat Miànmarach kyat Miànmarach MMK + K Tugrik Mongolach @@ -5779,6 +6946,7 @@ For terms of use, see http://www.unicode.org/copyright.html rupee Moiriseasach rupee Moiriseasach MUR + Rs Rupee Maladaibheach @@ -5836,6 +7004,7 @@ For terms of use, see http://www.unicode.org/copyright.html ringgit Malaidheach ringgit Malaidheach MYR + RM Escudo Mòsaimbiceach @@ -5894,6 +7063,7 @@ For terms of use, see http://www.unicode.org/copyright.html córdoba Niocaragach córdoba Niocaragach NIO + C$ Gulden Duitseach @@ -5910,6 +7080,7 @@ For terms of use, see http://www.unicode.org/copyright.html kroner Nirribheach krone Nirribheach NOK + kr Rupee Neapàlach @@ -5918,6 +7089,7 @@ For terms of use, see http://www.unicode.org/copyright.html rupee Neapàlach rupee Neapàlach NPR + Rs Dolar Shealainn Nuaidh @@ -5992,6 +7164,7 @@ For terms of use, see http://www.unicode.org/copyright.html rupee Pagastànach rupee Pagastànach PKR + Rs Złoty Pòlainneach @@ -6000,6 +7173,7 @@ For terms of use, see http://www.unicode.org/copyright.html złoty Pòlainneach złoty Pòlainneach PLN + Złoty Pòlainneach (1950–1995) @@ -6073,6 +7247,7 @@ For terms of use, see http://www.unicode.org/copyright.html rùbalan Ruiseach rùbal Ruiseach RUB + Rùbal Ruiseach (1991–1998) @@ -6090,6 +7265,7 @@ For terms of use, see http://www.unicode.org/copyright.html franc Rubhandach franc Rubhandach RWF + RF Riyal Sabhdach @@ -6147,6 +7323,7 @@ For terms of use, see http://www.unicode.org/copyright.html kronor Suaineach krona Suaineach SEK + kr Dolar Singeapòrach @@ -6164,6 +7341,7 @@ For terms of use, see http://www.unicode.org/copyright.html puinnd Eilean Naomh Eilidh punnd Eilean Naomh Eilidh SHP + £ Tolar Slòbhaineach @@ -6225,11 +7403,12 @@ For terms of use, see http://www.unicode.org/copyright.html Dobra São Tomé agus Príncipe - dhobra São Tomé agus Príncipe - dobra São Tomé agus Príncipe + dobra São Tomé agus Príncipe + dhobra São Tomé agus Príncipe dobra São Tomé agus Príncipe dobra São Tomé agus Príncipe STD + Db Rùbal Sovietach @@ -6254,6 +7433,7 @@ For terms of use, see http://www.unicode.org/copyright.html puinnd Shiridheach punnd Siridheach SYP + £ Lilangeni Suasaidheach @@ -6270,6 +7450,7 @@ For terms of use, see http://www.unicode.org/copyright.html baht Tàidheach baht Tàidheach ฿ + ฿ Rùbal Taidigeach @@ -6318,6 +7499,7 @@ For terms of use, see http://www.unicode.org/copyright.html paʻanga Tongach paʻanga Tongach TOP + T$ Escudo Tìomorach @@ -6343,6 +7525,7 @@ For terms of use, see http://www.unicode.org/copyright.html lira Turcach TRY + TL Dolar Thrianaid agus Thobago @@ -6476,6 +7659,7 @@ For terms of use, see http://www.unicode.org/copyright.html bolívar Bheinisealach bolívar Bheinisealach VEF + Bs Dong Bhiet-Namach @@ -6504,7 +7688,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tala Samothach - thala Samothach + tala Samothach thala Samothach tala Samothach tala Samothach @@ -6573,6 +7757,7 @@ For terms of use, see http://www.unicode.org/copyright.html dolaran Caraibeach earach dolar Caraibeach earach EC$ + $ Còir tarraing shònraichte @@ -6741,6 +7926,7 @@ For terms of use, see http://www.unicode.org/copyright.html rand Afraga a Deas rand Afraga a Deas ZAR + R Kwacha Sàimbitheach (1968–2012) @@ -6757,6 +7943,7 @@ For terms of use, see http://www.unicode.org/copyright.html kwacha Sàimbitheach kwacha Sàimbitheach ZMW + ZK Zaïre ùr Zaïreach (1993–1998) @@ -6799,6 +7986,10 @@ For terms of use, see http://www.unicode.org/copyright.html ZWR + + {0}+ + {0}–{1} + {0}+ {0}–{1} @@ -6806,6 +7997,9 @@ For terms of use, see http://www.unicode.org/copyright.html + + {0} / {1} + forsa-g {0} fhorsa-g @@ -6814,11 +8008,32 @@ For terms of use, see http://www.unicode.org/copyright.html {0} forsa-g - meatair gach diog ceàrnagach - {0} mheatair gach diog ceàrnagach - {0} mheatair gach diog ceàrnagach - {0} meatairean gach diog ceàrnagach - {0} meatair gach diog ceàrnagach + meatair san diog cheàrnagach + {0} mheatair san diog cheàrnagach + {0} mheatair san diog cheàrnagach + {0} meatairean san diog cheàrnagach + {0} meatair san diog cheàrnagach + + + cuairt + {0} chuairt + {0} chuairt + {0} cuairtean + {0} cuairt + + + rèidean + {0} rèidean + {0} rèidean + {0} rèideanan + {0} rèidean + + + ceum + {0} cheum + {0} cheum + {0} ceuman + {0} ceum àrc-mhionaid @@ -6834,26 +8049,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} àrc-dhiogan {0} àrc-dhiog - - ceum - {0} cheum - {0} cheum - {0} ceuman - {0} ceum - - - rèidean - {0} rèidean - {0} rèidean - {0} rèideanan - {0} rèidean - - - acair - {0} acair - {0} acair - {0} acraichean - {0} acair + + cilemeatair ceàrnagach + {0} chilemeatair ceàrnagach + {0} chilemeatair ceàrnagach + {0} cilemeatairean ceàrnagach + {0} cilemeatair ceàrnagach heactair @@ -6862,12 +8063,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} heactairean {0} heactair + + meatair ceàrnagach + {0} mheatair ceàrnagach + {0} mheatair ceàrnagach + {0} meatairean ceàrnagach + {0} meatair ceàrnagach + {0} sa mheatair cheàrnagach + ceudameatair ceàrnagach {0} cheudameatair ceàrnagach {0} cheudameatair ceàrnagach {0} ceudameatairean ceàrnagach {0} ceudameatair ceàrnagach + {0} sa cheudameatair cheàrnagach + + + mìle cheàrnagach + {0} mhìle cheàrnagach + {0} mhìle cheàrnagach + {0} mìltean ceàrnagach + {0} mìle cheàrnagach + + + acair + {0} acair + {0} acair + {0} acraichean + {0} acair + + + slat cheàrnagach + {0} shlat cheàrnagach + {0} shlat cheàrnagach + {0} slatan ceàrnagach + {0} slat cheàrnagach troigh cheàrnagach @@ -6882,111 +8113,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} òirleach cheàrnagach {0} òirlich cheàrnagach {0} òirleach cheàrnagach + {0} san òirleach cheàrnagach - - cilemeatair ceàrnagach - {0} chilemeatair ceàrnagach - {0} chilemeatair ceàrnagach - {0} cilemeatairean ceàrnagach - {0} cilemeatair ceàrnagach - - - meatair ceàrnagach - {0} mheatair ceàrnagach - {0} mheatair ceàrnagach - {0} meatairean ceàrnagach - {0} meatair ceàrnagach - - - mìle cheàrnagach - {0} mhìle cheàrnagach - {0} mhìle cheàrnagach - {0} mìltean ceàrnagach - {0} mìle cheàrnagach - - - slat cheàrnagach - {0} shlat cheàrnagach - {0} shlat cheàrnagach - {0} slatan ceàrnagach - {0} slat cheàrnagach + + karat + {0} karat + {0} karat + {0} karat + {0} karat - liotair gach cilemeatair - {0} liotair gach cilemeatair - {0} liotair gach cilemeatair - {0} liotairean gach cilemeatair - {0} liotair gach cilemeatair + liotair sa chilemeatair + {0} liotair sa chilemeatair + {0} liotair sa chilemeatair + {0} liotairean sa chilemeatair + {0} liotair sa chilemeatair + + + liotair sa 100 chilemeatair + {0} liotair sa 100 chilemeatair + {0} liotair sa 100 chilemeatair + {0} liotairean sa 100 chilemeatair + {0} liotair sa 100 chilemeatair - mìle gach galain - {0} mhìle gach galain - {0} mhìle gach galain - {0} mìltean gach galain - {0} mìle gach galain - - - biod - {0} bhiod - {0} bhiod - {0} biodan - {0} biod - - - baidht - {0} bhaidht - {0} bhaidht - {0} baidht - {0} baidht - - - giga-biod - {0} ghiga-biod - {0} ghiga-biod - {0} giga-biodan - {0} giga-biod - - - giga-baidht - {0} ghiga-baidht - {0} ghiga-baidht - {0} giga-baidht - {0} giga-baidht - - - cilebiod - {0} chilebiod - {0} chilebiod - {0} cilebiodan - {0} cilebiod - - - cileabaidht - {0} chileabaidht - {0} chileabaidht - {0} cileabaidht - {0} cileabaidht - - - meaga-biod - {0} mheaga-biod - {0} mheaga-biod - {0} meaga-biodan - {0} meaga-biod - - - meaga-baidht - {0} mheaga-baidht - {0} mheaga-baidht - {0} meaga-baidht - {0} meaga-baidht - - - tera-biod - {0} tera-biod - {0} thera-biod - {0} tera-biodan - {0} tera-biod + mìle sa ghalan + {0} mhìle sa ghalan + {0} mhìle sa ghalan + {0} mìltean sa ghalan + {0} mìle sa ghalan tera-baidht @@ -6995,12 +8150,107 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tera-baidht {0} tera-baidht + + tera-biod + {0} tera-biod + {0} thera-biod + {0} tera-biodan + {0} tera-biod + + + giga-baidht + {0} ghiga-baidht + {0} ghiga-baidht + {0} giga-baidht + {0} giga-baidht + + + giga-biod + {0} ghiga-biod + {0} ghiga-biod + {0} giga-biodan + {0} giga-biod + + + meaga-baidht + {0} mheaga-baidht + {0} mheaga-baidht + {0} meaga-baidht + {0} meaga-baidht + + + meaga-biod + {0} mheaga-biod + {0} mheaga-biod + {0} meaga-biodan + {0} meaga-biod + + + cileabaidht + {0} chileabaidht + {0} chileabaidht + {0} cileabaidht + {0} cileabaidht + + + cilebiod + {0} chilebiod + {0} chilebiod + {0} cilebiodan + {0} cilebiod + + + baidht + {0} bhaidht + {0} bhaidht + {0} baidht + {0} baidht + + + biod + {0} bhiod + {0} bhiod + {0} biodan + {0} biod + + + linn + {0} linn + {0} linn + {0} linntean + {0} linn + + + bliadhna + {0} bhliadhna + {0} bhliadhna + {0} bliadhnaichean + {0} bliadhna + {0} sa bhliadhna + + + mìos + {0} mhìos + {0} mhìos + {0} mìosan + {0} mìos + {0} sa mhìos + + + seachdain + {0} seachdain + {0} sheachdain + {0} seachdainean + {0} seachdain + {0} san t-seachdain + latha {0} latha {0} latha {0} làithean {0} latha + {0} san latha uair a thìde @@ -7008,14 +8258,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} uair a thìde {0} uairean a thìde {0} uair a thìde - {0} gach uair + {0} san uair - - micreo-diog - {0} mhicreo-diog - {0} mhicreo-diog - {0} micreo-diogan - {0} micreo-diog + + mionaid + {0} mhionaid + {0} mhionaid + {0} mionaidean + {0} mionaid + {0} sa mhionaid + + + diog + {0} diog + {0} dhiog + {0} diogan + {0} diog + {0} san diog mille-dhiog @@ -7024,19 +8283,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mille-dhiogan {0} mille-dhiog - - mionaid - {0} mhionaid - {0} mhionaid - {0} mionaidean - {0} mionaid - - - mìos - {0} mhìos - {0} mhìos - {0} mìosan - {0} mìos + + micreo-diog + {0} mhicreo-diog + {0} mhicreo-diog + {0} micreo-diogan + {0} micreo-diog nano-dhiog @@ -7045,28 +8297,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nano-dhiogan {0} nano-dhiog - - diog - {0} diog - {0} dhiog - {0} diogan - {0} diog - {0} gach diog - - - seachdain - {0} seachdain - {0} sheachdain - {0} seachdainean - {0} seachdain - - - bliadhna - {0} bhliadhna - {0} bhliadhna - {0} bliadhnaichean - {0} bliadhna - ampère {0} ampère @@ -7095,6 +8325,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volt + + cileacalaraidh + {0} chileacalaraidh + {0} chileacalaraidh + {0} cileacalaraidhean + {0} cileacalaraidh + calaraidh {0} chalaraidh @@ -7109,20 +8346,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} calaraidhean bidhe {0} calaraidh bidhe - - joule - {0} joule - {0} joule - {0} joule - {0} joule - - - cileacalaraidh - {0} chileacalaraidh - {0} chileacalaraidh - {0} cileacalaraidhean - {0} cileacalaraidh - cilea-joule {0} chilea-joule @@ -7130,6 +8353,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cilea-joule {0} cilea-joule + + joule + {0} joule + {0} joule + {0} joule + {0} joule + cilea-watt san uair {0} chilea-watt san uair @@ -7144,12 +8374,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} giga-hertz {0} giga-hertz - - hertz - {0} hertz - {0} hertz - {0} hertz - {0} hertz + + meaga-hertz + {0} mheaga-hertz + {0} mheaga-hertz + {0} meaga-hertz + {0} meaga-hertz cile-hertz @@ -7158,26 +8388,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cile-hertz {0} cile-hertz - - meaga-hertz - {0} mheaga-hertz - {0} mheaga-hertz - {0} meaga-hertz - {0} meaga-hertz + + hertz + {0} hertz + {0} hertz + {0} hertz + {0} hertz - - aonad reul-eòlach - {0} aonad reul-eòlach - {0} aonad reul-eòlach - {0} aonadan reul-eòlach - {0} aonad reul-eòlach + + cilemeatair + {0} chilemeatair + {0} chilemeatair + {0} cilemeatairean + {0} cilemeatair + {0} sa chilemeatair - - ceudameatair - {0} cheudameatair - {0} cheudameatair - {0} ceudameatairean - {0} ceudameatair + + meatair + {0} mheatair + {0} mheatair + {0} meatairean + {0} meatair + {0} sa mheatair deicheamh-meatair @@ -7186,68 +8418,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} deicheamh-meatairean {0} deicheamh-meatair - - aitheamh - {0} aitheamh - {0} aitheamh - {0} aitheamhan - {0} aitheamh - - - troigh - {0} troigh - {0} throigh - {0} troighean - {0} troigh - - - stàid Shasannach - {0} stàid Shasannach - {0} stàid Shasannach - {0} stàidean Sasannach - {0} stàid Shasannach - - - òirleach - {0} òirleach - {0} òirleach - {0} òirlich - {0} òirleach - - - cilemeatair - {0} chilemeatair - {0} chilemeatair - {0} cilemeatairean - {0} cilemeatair - - - bliadhna solais - {0} bhliadhna solais - {0} bhliadhna solais - {0} bliadhnaichean solais - {0} bliadhna solais - - - meatair - {0} mheatair - {0} mheatair - {0} meatairean - {0} meatair - - - micreo-mheatair - {0} mhicreo-mheatair - {0} mhicreo-mheatair - {0} micreo-mheatairean - {0} micreo-mheatair - - - mìle - {0} mhìle - {0} mhìle - {0} mìltean - {0} mìle + + ceudameatair + {0} cheudameatair + {0} cheudameatair + {0} ceudameatairean + {0} ceudameatair + {0} sa cheudameatair mille-mheatair @@ -7256,6 +8433,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mille-mheatairean {0} mille-mheatair + + micreo-mheatair + {0} mhicreo-mheatair + {0} mhicreo-mheatair + {0} micreo-mheatairean + {0} micreo-mheatair + nano-mheatair {0} nano-mheatair @@ -7263,20 +8447,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nano-mheatairean {0} nano-mheatair - - mìle mara - {0} mhìle mara - {0} mhìle mara - {0} mìltean mara - {0} mìle mara - - - parsec - {0} pharsec - {0} pharsec - {0} parsec - {0} parsec - piceo-mheatair {0} phiceo-mheatair @@ -7284,6 +8454,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} piceo-mheatairean {0} piceo-mheatair + + mìle + {0} mhìle + {0} mhìle + {0} mìltean + {0} mìle + slat {0} slat @@ -7291,6 +8468,71 @@ For terms of use, see http://www.unicode.org/copyright.html {0} slatan {0} slat + + troigh + {0} troigh + {0} throigh + {0} troighean + {0} troigh + {0} san troigh + + + òirleach + {0} òirleach + {0} òirleach + {0} òirlich + {0} òirleach + {0} san òirleach + + + parsec + {0} pharsec + {0} pharsec + {0} parsec + {0} parsec + + + bliadhna solais + {0} bhliadhna solais + {0} bhliadhna solais + {0} bliadhnaichean solais + {0} bliadhna solais + + + aonad reul-eòlach + {0} aonad reul-eòlach + {0} aonad reul-eòlach + {0} aonadan reul-eòlach + {0} aonad reul-eòlach + + + stàid Shasannach + {0} stàid Shasannach + {0} stàid Shasannach + {0} stàidean Sasannach + {0} stàid Shasannach + + + aitheamh + {0} aitheamh + {0} aitheamh + {0} aitheamhan + {0} aitheamh + + + mìle mara + {0} mhìle mara + {0} mhìle mara + {0} mìltean mara + {0} mìle mara + + + mìle Lochlannach + {0} mhìle Lochlannach + {0} mhìle Lochlannach + {0} mìltean Lochlannach + {0} mìle Lochlannach + lux {0} lux @@ -7298,27 +8540,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lux {0} lux - - carat - {0} charat - {0} charat - {0} carataichean - {0} carat - - - grama - {0} ghrama - {0} ghrama - {0} gramaichean - {0} grama - - - cileagram - {0} chileagram - {0} chileagram - {0} cileagramaichean - {0} cileagram - tunna meatrach {0} tunna meatrach @@ -7326,12 +8547,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tunnaichean meatrach {0} tunna meatrach - - micreo-ghrama - {0} mhicreo-ghrama - {0} mhicreo-ghrama - {0} micreo-ghramaichean - {0} micreo-ghrama + + cileagram + {0} chileagram + {0} chileagram + {0} cileagramaichean + {0} cileagram + {0} sa chileagram + + + grama + {0} ghrama + {0} ghrama + {0} gramaichean + {0} grama + {0} sa ghrama mille-ghrama @@ -7340,33 +8570,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mille-ghramaichean {0} mille-ghrama - - unnsa - {0} unnsa - {0} unnsa - {0} unnsachan - {0} unnsa - - - unnsa tròidh - {0} unnsa tròidh - {0} unnsa tròidh - {0} unnsachan tròidh - {0} unnsa tròidh - - - punnd - {0} phunnd - {0} phunnd - {0} puinnd - {0} punnd - - - clach - {0} chlach - {0} chlach - {0} clachan - {0} clach + + micreo-ghrama + {0} mhicreo-ghrama + {0} mhicreo-ghrama + {0} micreo-ghramaichean + {0} micreo-ghrama tunna @@ -7375,6 +8584,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tunnaichean {0} tunna + + clach + {0} chlach + {0} chlach + {0} clachan + {0} clach + + + punnd + {0} phunnd + {0} phunnd + {0} puinnd + {0} punnd + {0} sa phunnd + + + unnsa + {0} unnsa + {0} unnsa + {0} unnsachan + {0} unnsa + {0} san unnsa + + + unnsa tròidh + {0} unnsa tròidh + {0} unnsa tròidh + {0} unnsachan tròidh + {0} unnsa tròidh + + + carat + {0} charat + {0} charat + {0} carataichean + {0} carat + giga-watt {0} ghiga-watt @@ -7382,20 +8628,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} giga-watt {0} giga-watt - - cumhachd-eich - {0} chumhachd-eich - {0} chumhachd-eich - {0} cumhachdan-eich - {0} cumhachd-eich - - - cilea-watt - {0} chilea-watt - {0} chilea-watt - {0} cilea-watt - {0} cilea-watt - meaga-watt {0} mheaga-watt @@ -7403,12 +8635,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} meaga-watt {0} meaga-watt - - mille-watt - {0} mhille-watt - {0} mhille-watt - {0} mille-watt - {0} mille-watt + + cilea-watt + {0} chilea-watt + {0} chilea-watt + {0} cilea-watt + {0} cilea-watt watt @@ -7417,6 +8649,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} watt {0} watt + + mille-watt + {0} mhille-watt + {0} mhille-watt + {0} mille-watt + {0} mille-watt + + + cumhachd-eich + {0} chumhachd-eich + {0} chumhachd-eich + {0} cumhachdan-eich + {0} cumhachd-eich + heacta pascal {0} heacta pascal @@ -7424,12 +8670,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} heacta pascal {0} heacta pascal + + mille-mheatair de dh’airgead-beò + {0} mhille-mheatair de dh’airgead-beò + {0} mhille-mheatair de dh’airgead-beò + {0} mille-mheatairean de dh’airgead-beò + {0} mille-mheatair de dh’airgead-beò + + + punnd san òirleach cheàrnagach + {0} phunnd san òirleach cheàrnagach + {0} phunnd san òirleach cheàrnagach + {0} puinnd san òirleach cheàrnagach + {0} punnd san òirleach cheàrnagach + òirleach de dh’airgead-beò - {0} òirleach de dh'airgead-beò - {0} òirleach de dh'airgead-beò - {0} òirlich de dh'airgead-beò - {0} òirleach de dh'airgead-beò + {0} òirleach de dh’airgead-beò + {0} òirleach de dh’airgead-beò + {0} òirlich de dh’airgead-beò + {0} òirleach de dh’airgead-beò mille-bhàr @@ -7438,47 +8698,40 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mille-bhàraichean {0} mille-bhàr - - mille-mheatair de dh’airgead-beò - {0} mhille-mheatair de dh'airgead-beò - {0} mhille-mheatair de dh'airgead-beò - {0} mille-mheatairean de dh'airgead-beò - {0} mille-mheatair de dh'airgead-beò - - - punnd gach òirleach cheàrnagach - {0} phunnd gach òirleach cheàrnagach - {0} phunnd gach òirleach cheàrnagach - {0} puinnd gach òirleach cheàrnagach - {0} punnd gach òirleach cheàrnagach - - - karat - {0} karat - {0} karat - {0} karat - {0} karat - - cilemeatair gach uair - {0} chilemeatair gach uair - {0} chilemeatair gach uair - {0} cilemeatairean gach uair - {0} cilemeatair gach uair + cilemeatair san uair + {0} chilemeatair san uair + {0} chilemeatair san uair + {0} cilemeatairean san uair + {0} cilemeatair san uair - meatair gach diog - {0} mheatair gach diog - {0} mheatair gach diog - {0} meatairean gach diog - {0} meatair gach diog + meatair san diog + {0} mheatair san diog + {0} mheatair san diog + {0} meatairean san diog + {0} meatair san diog - mìle gach uair - {0} mhìle gach uair - {0} mhìle gach uair - {0} mìltean gach uair - {0} mìle gach uair + mìle san uair + {0} mhìle san uair + {0} mhìle san uair + {0} mìltean san uair + {0} mìle san uair + + + mìle mara san uair + {0} mhìle mara san uair + {0} mhìle mara san uair + {0} mìltean mara san uair + {0} mìle mara san uair + + + ° + {0}° + {0}° + {0}° + {0}° ceum Celsius @@ -7501,48 +8754,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ceuman Kelvin {0} ceum Kelvin - - acair-throigh - {0} acair-throigh - {0} acair-throigh - {0} acair-throighean - {0} acair-throigh - - - buiseal - {0} bhuiseal - {0} bhuiseal - {0} buisealan - {0} buiseal - - - ceudailiotair - {0} cheudailiotair - {0} cheudailiotair - {0} ceudailiotairean - {0} ceudailiotair - - - ceudameatair ciùbach - {0} cheudameatair ciùbach - {0} cheudameatair ciùbach - {0} ceudameatairean ciùbach - {0} ceudameatair ciùbach - - - troigh chiùbach - {0} troigh chiùbach - {0} throigh chiùbach - {0} troighean ciùbach - {0} troigh chiùbach - - - òirleach chiùbach - {0} òirleach chiùbach - {0} òirleach chiùbach - {0} òirlich chiùbach - {0} òirleach chiùbach - cilemeatair ciùbach {0} chilemeatair ciùbach @@ -7556,6 +8767,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mheatair ciùbach {0} meatairean ciùbach {0} meatair ciùbach + {0} sa mheatair chiùbach + + + ceudameatair ciùbach + {0} cheudameatair ciùbach + {0} cheudameatair ciùbach + {0} ceudameatairean ciùbach + {0} ceudameatair ciùbach + {0} sa cheudameatair chiùbach mìle chiùbach @@ -7571,33 +8791,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} slatan ciùbach {0} slat chiùbach - - cupa - {0} chupa - {0} chupa - {0} cupannan - {0} cupa + + troigh chiùbach + {0} troigh chiùbach + {0} throigh chiùbach + {0} troighean ciùbach + {0} troigh chiùbach - - deicheamh-liotair - {0} deicheamh-liotair - {0} dheicheamh-liotair - {0} deicheamh-liotairean - {0} deicheamh-liotair + + òirleach chiùbach + {0} òirleach chiùbach + {0} òirleach chiùbach + {0} òirlich chiùbach + {0} òirleach chiùbach - - unnsa-dighe - {0} unnsa-dighe - {0} unnsa-dighe - {0} unnsachan-dighe - {0} unnsa-dighe - - - galan - {0} ghalan - {0} ghalan - {0} galanan - {0} galan + + meaga-liotair + {0} mheaga-liotair + {0} mheaga-liotair + {0} meaga-liotairean + {0} meaga-liotair heactailiotair @@ -7612,13 +8825,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} liotair {0} liotairean {0} liotair + {0} san liotair - - meaga-liotair - {0} mheaga-liotair - {0} mheaga-liotair - {0} meaga-liotairean - {0} meaga-liotair + + deicheamh-liotair + {0} deicheamh-liotair + {0} dheicheamh-liotair + {0} deicheamh-liotairean + {0} deicheamh-liotair + + + ceudailiotair + {0} cheudailiotair + {0} cheudailiotair + {0} ceudailiotairean + {0} ceudailiotair mille-liotair @@ -7627,12 +8848,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mille-liotairean {0} mille-liotair - - pinnt - {0} phinnt - {0} phinnt - {0} pinntean - {0} pinnt + + pinnt meatrach + {0} phinnt meatrach + {0} phinnt meatrach + {0} pinntean meatrach + {0} pinnt meatrach + + + cupa meatrach + {0} chupa meatrach + {0} chupa meatrach + {0} cupannan meatrach + {0} cupa meatrach + + + acair-throigh + {0} acair-throigh + {0} acair-throigh + {0} acair-throighean + {0} acair-throigh + + + buiseal + {0} bhuiseal + {0} bhuiseal + {0} buisealan + {0} buiseal + + + galan + {0} ghalan + {0} ghalan + {0} galanan + {0} galan + {0} sa ghalan càrt @@ -7641,6 +8891,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} càrtan {0} càrt + + pinnt + {0} phinnt + {0} phinnt + {0} pinntean + {0} pinnt + + + cupa + {0} chupa + {0} chupa + {0} cupannan + {0} cupa + + + unnsa-dighe + {0} unnsa-dighe + {0} unnsa-dighe + {0} unnsachan-dighe + {0} unnsa-dighe + spàin-bhùird {0} spàin-bhùird @@ -7655,8 +8926,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} spàinean-teatha {0} spàin-teatha + + {0}E + {0}T + {0}D + {0}I + + + {0}/{1} + forsa-g {0} G @@ -7671,6 +8951,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + cuairt + {0} chuairt + {0} chuairt + {0} cuairtean + {0} cuairt + + + rèidean + {0} rad + {0} rad + {0} rad + {0} rad + + + ceum + {0}° + {0}° + {0}° + {0}° + àrc-mhion. {0}′ @@ -7685,26 +8986,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - ceum - {0}° - {0}° - {0}° - {0}° - - - rèidean - {0} rad - {0} rad - {0} rad - {0} rad - - - acair - {0} ac - {0} ac - {0} ac - {0} ac + + km² + {0} km² + {0} km² + {0} km² + {0} km² heactair @@ -7713,12 +9000,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha + + meatair² + {0} m² + {0} m² + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² {0} cm² {0} cm² + {0}/cm² + + + mìle² + {0} mì² + {0} mì² + {0} mì² + {0} mì² + + + acair + {0} ac + {0} ac + {0} ac + {0} ac + + + slat² + {0} shlat² + {0} shlat² + {0} slat² + {0} slat² troigh² @@ -7733,34 +9050,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} òirl² {0} òirl² {0} òirl² + {0}/òirl² - - km² - {0} km² - {0} km² - {0} km² - {0} km² - - - meatair² - {0} m² - {0} m² - {0} m² - {0} m² - - - mìle² - {0} mì² - {0} mì² - {0} mì² - {0} mì² - - - slat² - {0} shlat² - {0} shlat² - {0} slat² - {0} slat² + + karat + {0} kt + {0} kt + {0} kt + {0} kt liotair/km @@ -7769,6 +9066,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} L/km {0} L/km + + L/100km + {0} L/100km + {0} L/100km + {0} L/100km + {0} L/100km + mìle/gal {0} mì/g @@ -7776,69 +9080,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mì/g {0} mì/g - - biod - {0} b - {0} b - {0} b - {0} b - - - baidht - {0} B - {0} B - {0} B - {0} B - - - Gb - {0} Gb - {0} Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - {0} Tb - {0} Tb - TB {0} TB @@ -7846,12 +9087,107 @@ For terms of use, see http://www.unicode.org/copyright.html {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + {0} kb + {0} kb + + + baidht + {0} B + {0} B + {0} B + {0} B + + + biod + {0} b + {0} b + {0} b + {0} b + + + li + {0} li + {0} li + {0} li + {0} li + + + bliadhna + {0} bhlia + {0} bhlia + {0} blia + {0} blia + {0}/bl + + + mìos + {0} mhìos + {0} mhìos + {0} mìos + {0} mìos + {0}/m + + + seachd + {0} shn + {0} shn + {0} sn + {0} sn + {0}/sn + latha {0} là {0} là {0} là {0} là + {0}/là uair @@ -7861,40 +9197,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} uair {0}/uair - - μ-diog - {0} μs - {0} μs - {0} μs - {0} μs - - - m-dhiog - {0} ms - {0} ms - {0} ms - {0} ms - mion {0} mhion {0} mhion {0} mion {0} mion - - - mìos - {0} mhìos - {0} mhìos - {0} mìos - {0} mìos - - - n-dhiog - {0} ns - {0} ns - {0} ns - {0} ns + {0}/mion diog @@ -7904,19 +9213,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} diog {0}/d - - seachd - {0} s - {0} s - {0} s - {0} s + + m-dhiog + {0} ms + {0} ms + {0} ms + {0} ms - - bliadhna - {0} bhlia - {0} bhlia - {0} blia - {0} blia + + μ-diog + {0} μs + {0} μs + {0} μs + {0} μs + + + n-dhiog + {0} ns + {0} ns + {0} ns + {0} ns amp @@ -7946,6 +9262,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + {0} kcal + {0} kcal + cal {0} cal @@ -7960,20 +9283,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - joule - {0} J - {0} J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - {0} kcal - {0} kcal - cilea-joule {0} kJ @@ -7981,6 +9290,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kJ {0} kJ + + joule + {0} J + {0} J + {0} J + {0} J + kW san uair {0} kWh @@ -7995,12 +9311,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz + {0} MHz + {0} MHz kHz @@ -8009,26 +9325,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au - {0} au - {0} au + + km + {0} km + {0} km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm - {0} cm - {0} cm + + meatair + {0} m + {0} m + {0} m + {0} m + {0}/m dm @@ -8037,68 +9355,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dm {0} dm - - aitheamh - {0} aith - {0} aith - {0} aith - {0} aith - - - troigh - {0} troigh - {0} throigh - {0} troigh - {0} troigh - - - stàid - {0} stàid - {0} stàid - {0} stàid - {0} stàid - - - òirleach - {0} òirl - {0} òirl - {0} òirl - {0} òirl - - - km - {0} km - {0} km - {0} km - {0} km - - - ly - {0} ly - {0} ly - {0} ly - {0} ly - - - meatair - {0} m - {0} m - {0} m - {0} m - - - µ-mheatair - {0} µm - {0} µm - {0} µm - {0} µm - - - mìle - {0} mì - {0} mì - {0} mì - {0} mì + + cm + {0} cm + {0} cm + {0} cm + {0} cm + {0}/cm mm @@ -8107,6 +9370,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mm {0} mm + + µ-mheatair + {0} µm + {0} µm + {0} µm + {0} µm + nm {0} nm @@ -8114,20 +9384,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - {0} nmi - {0} nmi - - - parsec - {0} pc - {0} pc - {0} pc - {0} pc - pm {0} pm @@ -8135,6 +9391,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + mìle + {0} mì + {0} mì + {0} mì + {0} mì + slat {0} slat @@ -8142,6 +9405,71 @@ For terms of use, see http://www.unicode.org/copyright.html {0} slat {0} slat + + troigh + {0} troigh + {0} throigh + {0} troigh + {0} troigh + {0}/troigh + + + òirleach + {0} òirl + {0} òirl + {0} òirl + {0} òirl + {0}/òirl + + + parsec + {0} pc + {0} pc + {0} pc + {0} pc + + + ly + {0} ly + {0} ly + {0} ly + {0} ly + + + au + {0} au + {0} au + {0} au + {0} au + + + stàid + {0} stàid + {0} stàid + {0} stàid + {0} stàid + + + aitheamh + {0} aith + {0} aith + {0} aith + {0} aith + + + nmi + {0} nmi + {0} nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + {0} smi + {0} smi + lux {0} lx @@ -8149,27 +9477,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lx {0} lx - - carat - {0} CD - {0} CD - {0} CD - {0} CD - - - grama - {0} g - {0} g - {0} g - {0} g - - - kg - {0} kg - {0} kg - {0} kg - {0} kg - t {0} t @@ -8177,12 +9484,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} t {0} t - - µg - {0} µg - {0} µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0} kg + {0} kg + {0}/kg + + + grama + {0} g + {0} g + {0} g + {0} g + {0}/g mg @@ -8191,33 +9507,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mg {0} mg - - unnsa - {0} unnsa - {0} unnsa - {0} unnsa - {0} unnsa - - - unnsa tròidh - {0} oz t - {0} oz t - {0} oz t - {0} oz t - - - punnd - {0} lb - {0} lb - {0} lb - {0} lb - - - clach - {0} chlach - {0} chlach - {0} clach - {0} clach + + µg + {0} µg + {0} µg + {0} µg + {0} µg tunna @@ -8226,6 +9521,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tn {0} tn + + clach + {0} chlach + {0} chlach + {0} clach + {0} clach + + + punnd + {0} lb + {0} lb + {0} lb + {0} lb + {0}/lb + + + unnsa + {0} unnsa + {0} unnsa + {0} unnsa + {0} unnsa + {0}/oz + + + unnsa tròidh + {0} oz t + {0} oz t + {0} oz t + {0} oz t + + + carat + {0} CD + {0} CD + {0} CD + {0} CD + GW {0} GW @@ -8233,20 +9565,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GW {0} GW - - hp - {0} hp - {0} hp - {0} hp - {0} hp - - - kW - {0} kW - {0} kW - {0} kW - {0} kW - MW {0} MW @@ -8254,12 +9572,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} MW {0} MW - - mW - {0} mW - {0} mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW + {0} kW + {0} kW watt @@ -8268,6 +9586,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + mW + {0} mW + {0} mW + {0} mW + {0} mW + + + hp + {0} hp + {0} hp + {0} hp + {0} hp + hPa {0} hPa @@ -8275,20 +9607,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hPa {0} hPa - - in Hg - {0} inHg - {0} inHg - {0} inHg - {0} inHg - - - mbàr - {0} mbàr - {0} mbàr - {0} mbàr - {0} mbàr - mm Hg {0} mm Hg @@ -8303,12 +9621,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - karat - {0} kt - {0} kt - {0} kt - {0} kt + + in Hg + {0} inHg + {0} inHg + {0} inHg + {0} inHg + + + mbàr + {0} mbàr + {0} mbàr + {0} mbàr + {0} mbàr km/uair @@ -8331,6 +9656,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mì/h {0} mì/h + + kn + {0} kn + {0} kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + {0}° + {0}° + ceum C {0}°C @@ -8346,53 +9685,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}°F - ceum K - {0}°K - {0}°K - {0}°K - {0}°K - - - acair-throigh - {0} ac ft - {0} ac ft - {0} ac ft - {0} ac ft - - - buiseal - {0} bu - {0} bu - {0} bu - {0} bu - - - c-liotair - {0} cL - {0} cL - {0} cL - {0} cL - - - cm³ - {0} cm³ - {0} cm³ - {0} cm³ - {0} cm³ - - - troigh³ - {0} troigh³ - {0} throigh³ - {0} troigh³ - {0} troigh³ - - - òirl³ - {0} òirl³ - {0} òirl³ - {0} òirl³ - {0} òirl³ + K + {0} K + {0} K + {0} K + {0} K km³ @@ -8407,6 +9704,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mì³ @@ -8422,33 +9728,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} slat³ {0} slat³ - - cupa - {0} c - {0} c - {0} c - {0} c + + troigh³ + {0} troigh³ + {0} throigh³ + {0} troigh³ + {0} troigh³ - - dL - {0} dL - {0} dL - {0} dL - {0} dL + + òirl³ + {0} òirl³ + {0} òirl³ + {0} òirl³ + {0} òirl³ - - fl oz - {0} fl oz - {0} fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML + {0} ML + {0} ML hL @@ -8463,13 +9762,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l {0} l + {0}/l - - ML - {0} ML - {0} ML - {0} ML - {0} ML + + dL + {0} dL + {0} dL + {0} dL + {0} dL + + + c-liotair + {0} cL + {0} cL + {0} cL + {0} cL mL @@ -8478,12 +9785,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mL {0} mL - - pinnt - {0} pt - {0} pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + {0} mc + {0} mc + + + acair-throigh + {0} ac ft + {0} ac ft + {0} ac ft + {0} ac ft + + + buiseal + {0} bu + {0} bu + {0} bu + {0} bu + + + gal + {0} gal + {0} gal + {0} gal + {0} gal + {0}/gal càrt @@ -8492,6 +9828,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} càrt {0} càrt + + pinnt + {0} pt + {0} pt + {0} pt + {0} pt + + + cupa + {0} c + {0} c + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + {0} fl oz + {0} fl oz + spàin {0} spàin @@ -8506,169 +9863,260 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sp-t {0} sp-t + + {0}E + {0}T + {0}D + {0}I + + + {0}/{1} + + forsa-g {0}G {0}G {0}G {0}G + m/s² {0}m/s² {0}m/s² {0}m/s² {0}m/s² + + cuairt + {0}cuairt + {0}cuairt + {0}cuairt + {0}cuairt + + + rad + {0}rad + {0}rad + {0}rad + {0}rad + + + ceum + {0}° + {0}° + {0}° + {0}° + + àrc-m {0}′ {0}′ {0}′ {0}′ + àrc-d {0}″ {0}″ {0}″ {0}″ - - {0}° - {0}° - {0}° - {0}° - - - {0}rad - {0}rad - {0}rad - {0}rad - - - {0}ac - {0}ac - {0}ac - {0}ac + + km² + {0}km² + {0}km² + {0}km² + {0}km² + heactair {0}ha {0}ha {0}ha {0}ha + + meatair² + {0}m² + {0}m² + {0}m² + {0}m² + {0}/m² + + cm² {0}cm² {0}cm² {0}cm² {0}cm² + {0}/cm² + + + mì² + {0}mì² + {0}mì² + {0}mì² + {0}mì² + + + acair + {0}ac + {0}ac + {0}ac + {0}ac + + + slat² + {0}yd² + {0}yd² + {0}yd² + {0}yd² + ft² {0}ft² {0}ft² {0}ft² {0}ft² + in² {0}in² {0}in² {0}in² {0}in² + {0}/in² - - {0}km² - {0}km² - {0}km² - {0}km² - - - {0}m² - {0}m² - {0}m² - {0}m² - - - {0}mì² - {0}mì² - {0}mì² - {0}mì² - - - {0}yd² - {0}yd² - {0}yd² - {0}yd² + + karat + {0}kt + {0}kt + {0}kt + {0}kt + L/km {0}L/km {0}L/km {0}L/km {0}L/km + + L/100km + {0}L/100km + {0}L/100km + {0}L/100km + {0}L/100km + - {0}mpg - {0}mpg - {0}mpg - {0}mpg + mì/g + {0}mì/g + {0}mì/g + {0}mì/g + {0}mì/g - - {0}b - {0}b - {0}b - {0}b - - - {0}B - {0}B - {0}B - {0}B - - - {0}Gb - {0}Gb - {0}Gb - {0}Gb - - - {0}GB - {0}GB - {0}GB - {0}GB - - - {0}kb - {0}kb - {0}kb - {0}kb - - - {0}kB - {0}kB - {0}kB - {0}kB - - - {0}Mb - {0}Mb - {0}Mb - {0}Mb - - - {0}MB - {0}MB - {0}MB - {0}MB + + TB + {0}TB + {0}TB + {0}TB + {0}TB + Tb {0}Tb {0}Tb {0}Tb {0}Tb - - {0}TB - {0}TB - {0}TB - {0}TB + + GB + {0}GB + {0}GB + {0}GB + {0}GB + + + Gb + {0}Gb + {0}Gb + {0}Gb + {0}Gb + + + MB + {0}MB + {0}MB + {0}MB + {0}MB + + + Mb + {0}Mb + {0}Mb + {0}Mb + {0}Mb + + + kB + {0}kB + {0}kB + {0}kB + {0}kB + + + kb + {0}kb + {0}kb + {0}kb + {0}kb + + + baidht + {0}B + {0}B + {0}B + {0}B + + + biod + {0}b + {0}b + {0}b + {0}b + + + li + {0}li + {0}li + {0}li + {0}li + + + blia + {0}bl + {0}bl + {0}bl + {0}bl + {0}/bl + + + mìos + {0}m + {0}m + {0}m + {0}m + {0}/m + + + s + {0}s + {0}s + {0}s + {0}s + {0}/s @@ -8676,6 +10124,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0}là {0}là {0}là + {0}/là uair @@ -8683,12 +10132,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0}u {0}u {0}u + {0}/u - - {0}μs - {0}μs - {0}μs - {0}μs + + mion + {0}m + {0}m + {0}m + {0}m + {0}/mion + + + diog + {0}d + {0}d + {0}d + {0}d + {0}/d ms @@ -8697,175 +10157,117 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ms {0}ms - - mion - {0}m - {0}m - {0}m - {0}m - - - mìos - {0}m - {0}m - {0}m - {0}m + + μs + {0}μs + {0}μs + {0}μs + {0}μs + ns {0}ns {0}ns {0}ns {0}ns - - diog - {0}d - {0}d - {0}d - {0}d - - - s - {0}s - {0}s - {0}s - {0}s - - - blia - {0}bl - {0}bl - {0}bl - {0}bl - + amp {0}A {0}A {0}A {0}A + mA {0}mA {0}mA {0}mA {0}mA + ohm {0}Ω {0}Ω {0}Ω {0}Ω + volt {0}V {0}V {0}V {0}V + + kcal + {0}kcal + {0}kcal + {0}kcal + {0}kcal + + cal {0}cal {0}cal {0}cal {0}cal + Cal {0}Cal {0}Cal {0}Cal {0}Cal - - {0}J - {0}J - {0}J - {0}J - - - {0}kcal - {0}kcal - {0}kcal - {0}kcal - + kJ {0}kJ {0}kJ {0}kJ {0}kJ + + joule + {0}J + {0}J + {0}J + {0}J + + kWh {0}kWh {0}kWh {0}kWh {0}kWh + GHz {0}GHz {0}GHz {0}GHz {0}GHz - - {0}Hz - {0}Hz - {0}Hz - {0}Hz - - - {0}kHz - {0}kHz - {0}kHz - {0}kHz - + MHz {0}MHz {0}MHz {0}MHz {0}MHz - - {0}au - {0}au - {0}au - {0}au + + kHz + {0}kHz + {0}kHz + {0}kHz + {0}kHz - - cm - {0}cm - {0}cm - {0}cm - {0}cm - - - {0}dm - {0}dm - {0}dm - {0}dm - - - fm - {0}fm - {0}fm - {0}fm - {0}fm - - - {0}′ - {0}′ - {0}′ - {0}′ - - - stàid - {0}stàid - {0}stàid - {0}stàid - {0}stàid - - - {0}″ - {0}″ - {0}″ - {0}″ + + Hz + {0}Hz + {0}Hz + {0}Hz + {0}Hz km @@ -8873,12 +10275,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0}km {0}km {0}km - - - {0}ly - {0}ly - {0}ly - {0}ly + {0}/km meatair @@ -8886,18 +10283,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0}m {0}m {0}m + {0}/m - - {0}µm - {0}µm - {0}µm - {0}µm + + dm + {0}dm + {0}dm + {0}dm + {0}dm - - {0}mì - {0}mì - {0}mì - {0}mì + + cm + {0}cm + {0}cm + {0}cm + {0}cm + {0}/cm mm @@ -8906,54 +10307,119 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mm {0}mm + + µm + {0}µm + {0}µm + {0}µm + {0}µm + + nm {0}nm {0}nm {0}nm {0}nm - - {0}nmi - {0}nmi - {0}nmi - {0}nmi - - - {0}pc - {0}pc - {0}pc - {0}pc - + pm {0}pm {0}pm {0}pm {0}pm + + + {0}mì + {0}mì + {0}mì + {0}mì + + slat {0}yd {0}yd {0}yd {0}yd + + troigh + {0}′ + {0}′ + {0}′ + {0}′ + {0}/troigh + + + òirl + {0}″ + {0}″ + {0}″ + {0}″ + {0}/òirl + + + parsec + {0}pc + {0}pc + {0}pc + {0}pc + + + ly + {0}ly + {0}ly + {0}ly + {0}ly + + + au + {0}au + {0}au + {0}au + {0}au + + + stàid + {0}stàid + {0}stàid + {0}stàid + {0}stàid + + + aitheamh + {0}fm + {0}fm + {0}fm + {0}fm + + + nmi + {0}nmi + {0}nmi + {0}nmi + {0}nmi + + + smi + {0}smi + {0}smi + {0}smi + {0}smi + + lux {0}lx {0}lx {0}lx {0}lx - - {0}CD - {0}CD - {0}CD - {0}CD - - - grama - {0}g - {0}g - {0}g - {0}g + + t + {0}t + {0}t + {0}t + {0}t kg @@ -8961,42 +10427,36 @@ For terms of use, see http://www.unicode.org/copyright.html {0}kg {0}kg {0}kg + {0}/kg - - {0}t - {0}t - {0}t - {0}t - - - {0}µg - {0}µg - {0}µg - {0}µg + + grama + {0}g + {0}g + {0}g + {0}g + {0}/g + mg {0}mg {0}mg {0}mg {0}mg - - {0}oz - {0}oz - {0}oz - {0}oz + + µg + {0}µg + {0}µg + {0}µg + {0}µg - - {0}oz t - {0}oz t - {0}oz t - {0}oz t - - - {0}lb - {0}lb - {0}lb - {0}lb + + tn + {0}tn + {0}tn + {0}tn + {0}tn clach @@ -9005,83 +10465,112 @@ For terms of use, see http://www.unicode.org/copyright.html {0}clach {0}clach - - {0}tn - {0}tn - {0}tn - {0}tn + + lb + {0}lb + {0}lb + {0}lb + {0}lb + {0}/lb + + + oz + {0}oz + {0}oz + {0}oz + {0}oz + {0}/oz + + + oz t + {0}oz t + {0}oz t + {0}oz t + {0}oz t + + + carat + {0}CD + {0}CD + {0}CD + {0}CD + GW {0}GW {0}GW {0}GW {0}GW - - {0}hp - {0}hp - {0}hp - {0}hp - - - {0}kW - {0}kW - {0}kW - {0}kW - + MW {0}MW {0}MW {0}MW {0}MW - - {0}mW - {0}mW - {0}mW - {0}mW + + kW + {0}kW + {0}kW + {0}kW + {0}kW + watt {0}W {0}W {0}W {0}W + + mW + {0}mW + {0}mW + {0}mW + {0}mW + + + hp + {0}hp + {0}hp + {0}hp + {0}hp + + hPa {0}hPa {0}hPa {0}hPa {0}hPa - - {0}" Hg - {0}" Hg - {0}" Hg - {0}" Hg - - - {0}mb - {0}mb - {0}mb - {0}mb - + mm Hg {0}mm Hg {0}mm Hg {0}mm Hg {0}mm Hg + psi {0}psi {0}psi {0}psi {0}psi - - {0}kt - {0}kt - {0}kt - {0}kt + + ″ Hg + {0}″ Hg + {0}″ Hg + {0}″ Hg + {0}″ Hg + + + mbàr + {0}mb + {0}mb + {0}mb + {0}mb km/h @@ -9091,17 +10580,33 @@ For terms of use, see http://www.unicode.org/copyright.html {0}km/h + m/s {0}m/s {0}m/s {0}m/s {0}m/s + mì/h {0}mì/h {0}mì/h {0}mì/h {0}mì/h + + kn + {0}kn + {0}kn + {0}kn + {0}kn + + + ° + {0}° + {0}° + {0}° + {0}° + °C {0}°C @@ -9110,18 +10615,129 @@ For terms of use, see http://www.unicode.org/copyright.html {0}°C + °F {0}°F {0}°F {0}°F {0}°F - {0}°K - {0}°K - {0}°K - {0}°K + K + {0}K + {0}K + {0}K + {0}K + + + km³ + {0}km³ + {0}km³ + {0}km³ + {0}km³ + + + + {0}m³ + {0}m³ + {0}m³ + {0}m³ + {0}/m³ + + + cm³ + {0}cm³ + {0}cm³ + {0}cm³ + {0}cm³ + {0}/cm³ + + + mì³ + {0}mì³ + {0}mì³ + {0}mì³ + {0}mì³ + + + yd³ + {0}yd³ + {0}yd³ + {0}yd³ + {0}yd³ + + + ft³ + {0}ft³ + {0}ft³ + {0}ft³ + {0}ft³ + + + in³ + {0}in³ + {0}in³ + {0}in³ + {0}in³ + + + ML + {0}ML + {0}ML + {0}ML + {0}ML + + + hL + {0}hL + {0}hL + {0}hL + {0}hL + + + liotair + {0}l + {0}l + {0}l + {0}l + {0}/l + + + dL + {0}dL + {0}dL + {0}dL + {0}dL + + + cL + {0}cL + {0}cL + {0}cL + {0}cL + + + mL + {0}mL + {0}mL + {0}mL + {0}mL + + + pt + {0}mpt + {0}mpt + {0}mpt + {0}mpt + + + mcup + {0}mc + {0}mc + {0}mc + {0}mc + ac ft {0}ac ft {0}ac ft {0}ac ft @@ -9134,127 +10750,62 @@ For terms of use, see http://www.unicode.org/copyright.html {0}bu {0}bu - - {0}cL - {0}cL - {0}cL - {0}cL - - - {0}cm³ - {0}cm³ - {0}cm³ - {0}cm³ - - - {0}ft³ - {0}ft³ - {0}ft³ - {0}ft³ - - - {0}in³ - {0}in³ - {0}in³ - {0}in³ - - - {0}km³ - {0}km³ - {0}km³ - {0}km³ - - - {0}m³ - {0}m³ - {0}m³ - {0}m³ - - - {0}mì³ - {0}mì³ - {0}mì³ - {0}mì³ - - - {0}yd³ - {0}yd³ - {0}yd³ - {0}yd³ - - - {0}c - {0}c - {0}c - {0}c - - - {0}dL - {0}dL - {0}dL - {0}dL - - - {0}fl oz - {0}fl oz - {0}fl oz - {0}fl oz - + gal {0}gal {0}gal {0}gal {0}gal - - - {0}hL - {0}hL - {0}hL - {0}hL - - - liotair - {0}l - {0}l - {0}l - {0}l - - - {0}ML - {0}ML - {0}ML - {0}ML - - - {0}mL - {0}mL - {0}mL - {0}mL - - - {0}pt - {0}pt - {0}pt - {0}pt + {0}/gal + càrt {0}càrt {0}càrt {0}càrt {0}càrt + + pt + {0}pt + {0}pt + {0}pt + {0}pt + + + cupa + {0}c + {0}c + {0}c + {0}c + + + fl oz + {0}fl oz + {0}fl oz + {0}fl oz + {0}fl oz + + sp {0}sp {0}sp {0}sp {0}sp + sp-t {0}sp-t {0}sp-t {0}sp-t {0}sp-t + + {0}E + {0}T + {0}D + {0}I + h:mm @@ -9288,8 +10839,8 @@ For terms of use, see http://www.unicode.org/copyright.html {0}, {1} {0}, {1} - {0} ‘s {1} - {0} ‘s {1} + {0} ’s {1} + {0} ’s {1} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gd_GB.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gd_GB.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gd_GB.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gd_GB.xml index b6b19c94a36..a429b422f65 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gd_GB.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gd_GB.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gl.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gl.xml similarity index 90% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gl.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gl.xml index bc86bc59312..6f7e5cb1dfa 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gl.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gl.xml @@ -1,13 +1,12 @@ - - - + @@ -20,7 +19,7 @@ For terms of use, see http://www.unicode.org/copyright.html abkhazo acoli afrikaans - aghem + agq akán amárico aragonés @@ -37,21 +36,24 @@ For terms of use, see http://www.unicode.org/copyright.html baskir bielorruso bemba - bena + bez búlgaro - bambara + Baluchi occidental + bm bengalí tibetano bretón - bodo + brx bosnio catalán + Checheno kiga cheroqui curdo soraní corso checo eslavo eclesiástico + Chuvash galés dinamarqués taita @@ -59,7 +61,7 @@ For terms of use, see http://www.unicode.org/copyright.html alemán de austria alto alemán suízo zarma - baixo sorabio + dsb duala divehi jola-fonyi @@ -87,7 +89,7 @@ For terms of use, see http://www.unicode.org/copyright.html finés filipino fixiano - faroés + faroés francés francés canadiano francés suízo @@ -100,7 +102,7 @@ For terms of use, see http://www.unicode.org/copyright.html guaraní grego antigo alemán suízo - guxaratiano + guxaratiano gusii manx hausa @@ -108,7 +110,7 @@ For terms of use, see http://www.unicode.org/copyright.html hebreo hindi croata - alto sorabio + hsb haitiano húngaro armenio @@ -118,10 +120,10 @@ For terms of use, see http://www.unicode.org/copyright.html yi sichuanés islandés italiano - inuit + iu xaponés ngomba - machame + mapache xavanés xeorxiano kabile @@ -129,11 +131,11 @@ For terms of use, see http://www.unicode.org/copyright.html makonde caboverdiano kongo - koyra chiini + koyra Chiini kikuyu casaco - groenlandés - kalenjin + kl + kln cambodiano kannada coreano @@ -143,18 +145,19 @@ For terms of use, see http://www.unicode.org/copyright.html shambala bafia kurdo - córnico + kw quirguiz latín - langi + Langi luxemburgués ganda - lakota + Lakota lingala laotiano lozi + Lurí do norte lituano - luba-katanga + luba-Katanga luba-lulua luo luyia @@ -163,8 +166,8 @@ For terms of use, see http://www.unicode.org/copyright.html meru crioulo mauritano malgaxe - makhuwa-meetto - meta’ + mgh + mgo maorí macedonio malabar @@ -176,25 +179,28 @@ For terms of use, see http://www.unicode.org/copyright.html mundang varias linguas birmano - nama + Mazandaraní + naq noruegués bokmal ndebele do norte + Baixo alemán + Baixo saxón nepalí holandés flamenco - kwasio + nmg noruegués nynorsk noruegués - n’ko + nqo sesotho sa leboa - nuer + nus chewa nyankole occitano oromo oriya osetio - punjabi + punjabi polaco paxtún portugués @@ -205,18 +211,18 @@ For terms of use, see http://www.unicode.org/copyright.html romanche rundi romanés - romanés moldavo rombo ruso ruandés - rwa + rwk sánscrito - samburu - sangu + saq + sbp sindhi + Kurdo meridional sami do norte sena - koyraboro senni + ses sango serbocroata tachelhit @@ -224,10 +230,10 @@ For terms of use, see http://www.unicode.org/copyright.html eslovaco esloveno samoano - saami do sur - saami lule - saami inari - saami skolt + sma + smj + smn + sms shona somalí albanés @@ -237,7 +243,7 @@ For terms of use, see http://www.unicode.org/copyright.html sondanés sueco swahili - suahili congolés + swc tamil telugu teso @@ -256,18 +262,19 @@ For terms of use, see http://www.unicode.org/copyright.html tártaro tumbuka twi - tasawaq + twq tahitiano - tamazight marroquí central + tzm uigur ucraíno - lingua descoñecida ou non válida + Lingua descoñecida urdú uzbeco vai venda vietnamita vunjo + Warlpiri wólof xhosa soga @@ -364,7 +371,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguila Albania Armenia - Antillas Holandesas Angola Antártida Arxentina @@ -372,7 +378,7 @@ For terms of use, see http://www.unicode.org/copyright.html Austria Australia Aruba - Åland + Illas Aland Acerbaixán Bosnia e Hercegovina Barbados @@ -396,7 +402,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bielorrusia Belice Canadá - Illas Cocos + Illas Cocos (Keeling) República Democrática do Congo Congo (RDC) República Centroafricana @@ -435,7 +441,7 @@ For terms of use, see http://www.unicode.org/copyright.html Etiopía Unión Europea Finlandia - Fidxi + Fixi Illas Malvinas Illas Malvinas (Falkland) Micronesia @@ -459,7 +465,7 @@ For terms of use, see http://www.unicode.org/copyright.html Xeorxia do Sur e Illas Sandwich Guatemala Guam - Guinea-Bisau + Guinea-Bissau Güiana Hong Kong RAE de China Hong Kong @@ -479,7 +485,7 @@ For terms of use, see http://www.unicode.org/copyright.html Irán Islandia Italia - Illa de Jersey + Jersey Xamaica Xordania Xapón @@ -488,33 +494,33 @@ For terms of use, see http://www.unicode.org/copyright.html Cambodia Kiribati Comores - Saint Kitts e Nevis + San Cristovo e Nevis Corea do Norte Corea do Sur Kuwait Illas Caimán - Casaquistán + Kazakhstan Laos Líbano Santa Lucía Liechtenstein Sri Lanka Liberia - Lesoto + Lesotho Lituania Luxemburgo Letonia Libia Marrocos Mónaco - Moldavia + Moldova Montenegro San Martiño Madagascar Illas Marshall - República de Macedonia + Macedonia Macedonia (ARIM) - Malí + Mali Myanmar (Birmania) Mongolia Macau RAE de China @@ -522,7 +528,7 @@ For terms of use, see http://www.unicode.org/copyright.html Illas Marianas do norte Martinica Mauritania - Illa Montserrat + Montserrat Malta Mauricio Maldivas @@ -541,7 +547,7 @@ For terms of use, see http://www.unicode.org/copyright.html Nepal Nauru Niue - Nova Zelandia + Nova Celandia Omán Panamá Perú @@ -556,7 +562,7 @@ For terms of use, see http://www.unicode.org/copyright.html Territorios palestinos Palestina Portugal - Rep. das Palaus + Palau Paraguai Qatar Oceanía Distante @@ -582,7 +588,7 @@ For terms of use, see http://www.unicode.org/copyright.html Surinam Sudán do sur San Tomé e Príncipe - O Salvador + El Salvador Sint Maarten Siria Suacilandia @@ -593,9 +599,9 @@ For terms of use, see http://www.unicode.org/copyright.html Togo Tailandia Taxiquistán - Toquelau + Tokelau Timor Leste - Turcomenistán + Turkmenistán Tunisia Tonga Turquía @@ -607,7 +613,7 @@ For terms of use, see http://www.unicode.org/copyright.html Uganda Illas Menores Distantes dos EUA. Estados Unidos de América - EUA + EUA Uruguai Uzbekistán Cidade do Vaticano @@ -639,6 +645,9 @@ For terms of use, see http://www.unicode.org/copyright.html Clasificación numérica Forza de clasificación Moeda + Ciclo horario (12 vs. 24) + Estilo de quebra de liña + Sistema de unidades Números Fuso horario Variante local @@ -646,96 +655,106 @@ For terms of use, see http://www.unicode.org/copyright.html Uso privado - Díxitos do árabe oriental - Díxitos arábicos orientais - Números armenios - Números armenios en minúscula - Díxitos bengalís - Orde de clasificación chinesa tradicional - Big5 - Calendario budista - Calendario chinés - Calendario cóptico - Calendario dangi - Díxitos devanagari - Criterio de ordenación do dicionario - Criterio de ordenación Unicode predeterminado - Números etíopes - Calendario etíope - Calendario Amete Alem etíope - Números financeiros - Díxitos de ancho completo - orde de clasifcación chinesa simplificada - GB2312 - Números xeorxianos - Calendario gregoriano - Números gregos - Números gregos en minúscula - Díxitos guxarati - Díxitos do gurmukhi - Números decimais chineses - Números chineses simplificados - Números financeiros chineses simplificados - Números do chinés tradicional - Números financeiros do chinés tradicional - Números hebreos - Calendario hebreo - Clasificar todo - Calendario nacional indio - Calendario islámico - Calendario islámico (civil, tabular) - Calendario islámico (Arabia Saudita, - Calendario ISO-8601 - Calendario xaponés - Números xaponeses - Números financeiros xaponeses - Díxitos do camboxano - Díxitos do kannadés - Díxitos laosianos - Díxitos occidentais - Clasificar primeiro as minúsculas - Díxitos malabares - Díxitos mongoles - Díxitos birmanos - Díxitos orixinais - Clasificar acentos con normalidade - Clasificar orde de maiúsculas e minúsculas normal - Clasificar sen distinguir entre maiúsculas e minúsculas - Clasificar Kana por separado - Clasificar sen normalización - Clasificar díxitos individualmente - Clasificar símbolos - Díxitos oriya - Calendario persa - orde de clasificación da guía telefónica - Orde de clasificación fonética - Orde de clasificación pinyin - Clasificar só letras de base - Clasificar acentos/maiúsculas e minúsculas/ancho/kana - Criterio de ordenación reformado - Calendario Minguo - Números romanos - Números romanos en minúsculas - Busca de uso xeral - Clasificar por consonante inicial hangul - Clasificar acentos - Clasificar ignorando símbolos - Criterio de ordenación estándar - Orde de clasificación polo número de trazos - Números támil - Díxitos do támil - Díxitos do telugú - Clasificar acentos/maiúsculas e minúsculas/ancho - Díxitos tailandeses - Díxitos tibetanos - Orde de clasificación tradicional - Numeros tradicionais - Criterio de ordenación radical-trazo - Clasificar primeiro as maiúsculas - Díxitos Vai - Clasificar acentos invertidos - Clasificar distinguindo entre maiúsculas e minúsculas - Clasificar Kana de modo diferente - Clasificar Unicode normalizado - Clasificar díxitos numericamente + Calendario budista + Calendario chinés + Calendario cóptico + Calendario dangi + Calendario etíope + Calendario Amete Alem etíope + Calendario gregoriano + Calendario hebreo + Calendario nacional indio + Calendario islámico + Calendario islámico (civil, tabular) + Calendario islámico (Arabia Saudita, + Calendario ISO-8601 + Calendario xaponés + Calendario persa + Calendario Minguo + Clasificar símbolos + Clasificar ignorando símbolos + Clasificar acentos con normalidade + Clasificar acentos invertidos + Clasificar primeiro as minúsculas + Clasificar orde de maiúsculas e minúsculas normal + Clasificar primeiro as maiúsculas + Clasificar sen distinguir entre maiúsculas e minúsculas + Clasificar distinguindo entre maiúsculas e minúsculas + Clasificar Kana por separado + Clasificar Kana de modo diferente + Orde de clasificación chinesa tradicional - Big5 + Criterio de ordenación do dicionario + Criterio de ordenación Unicode predeterminado + orde de clasifcación chinesa simplificada - GB2312 + orde de clasificación da guía telefónica + Orde de clasificación fonética + Orde de clasificación pinyin + Criterio de ordenación reformado + Busca de uso xeral + Clasificar por consonante inicial hangul + Criterio de ordenación estándar + Orde de clasificación polo número de trazos + Orde de clasificación tradicional + Criterio de ordenación radical-trazo + Clasificar sen normalización + Clasificar Unicode normalizado + Clasificar díxitos individualmente + Clasificar díxitos numericamente + Clasificar todo + Clasificar só letras de base + Clasificar acentos/maiúsculas e minúsculas/ancho/kana + Clasificar acentos + Clasificar acentos/maiúsculas e minúsculas/ancho + Sistema de 12 horas (0–11) + Sistema de 12 horas (1–12) + Sistema de 24 horas (0–23) + Sistema de 24 horas (1–24) + Estilo de quebra de liña separada + Estilo de quebra de liña normal + Estilo de quebra de liña estrita + Sistema métrico + Sistema imperial de unidades + Sistema de unidades dos EUA + Díxitos do árabe oriental + Díxitos arábicos orientais + Números armenios + Números armenios en minúscula + Díxitos bengalís + Díxitos devanagari + Números etíopes + Números financeiros + Díxitos de ancho completo + Números xeorxianos + Números gregos + Números gregos en minúscula + Díxitos guxarati + Díxitos do gurmukhi + Números decimais chineses + Números chineses simplificados + Números financeiros chineses simplificados + Números do chinés tradicional + Números financeiros do chinés tradicional + Números hebreos + Números xaponeses + Números financeiros xaponeses + Díxitos do camboxano + Díxitos do kannadés + Díxitos laosianos + Díxitos occidentais + Díxitos malabares + Díxitos mongoles + Díxitos birmanos + Díxitos orixinais + Díxitos oriya + Números romanos + Números romanos en minúsculas + Números támil + Díxitos do támil + Díxitos do telugú + Díxitos tailandeses + Díxitos tibetanos + Numeros tradicionais + Díxitos Vai BGN @@ -827,6 +846,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d E G y G y MMM @@ -866,6 +886,7 @@ For terms of use, see http://www.unicode.org/copyright.html G MMM y G d, MMM y G E, d MMM y + MMMM y G G QQQ y G y QQQQ @@ -1061,7 +1082,7 @@ For terms of use, see http://www.unicode.org/copyright.html dom - lun + luns mar mér xov @@ -1150,10 +1171,10 @@ For terms of use, see http://www.unicode.org/copyright.html 4 - 1o trimestre - 2o trimestre - 3o trimestre - 4o trimestre + 1º trimestre + 2º trimestre + 3º trimestre + 4º trimestre @@ -1170,28 +1191,76 @@ For terms of use, see http://www.unicode.org/copyright.html 4 - 1o trimestre + 1º trimestre 2º trimestre - 3o trimestre - 4o trimestre + 3º trimestre + 4º trimestre + da noite a.m. p.m. + da mañá + da mañá + da mediodía + da tarde + da noite - a - m - p + da noite + a.m. + p.m. + da mañá + da mañá + da mediodía + da tarde + da noite + da noite a.m. - mediodía p.m. + da mañá + da mañá + da mediodía + da tarde + da noite + + + + + medianoite + a.m. + p.m. + madrugada + mañá + mediodía + tarde + noite + + + medianoite + a.m. + p.m. + madrugada + mañá + mediodía + tarde + noite + + + medianoite + a.m. + p.m. + madrugada + mañá + mediodía + tarde + noite @@ -1290,6 +1359,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d-M E, d-M @@ -1433,6 +1506,9 @@ For terms of use, see http://www.unicode.org/copyright.html Ano + ano pasado + este ano + seguinte ano En {0} anos En {0} anos @@ -1444,6 +1520,9 @@ For terms of use, see http://www.unicode.org/copyright.html Ano + ano pasado + este ano + seguinte ano En {0} anos En {0} anos @@ -1455,6 +1534,9 @@ For terms of use, see http://www.unicode.org/copyright.html Trimestre + trimestre pasado + este trimestre + seguinte trimestre En {0} trimestre En {0} trimestres @@ -1466,6 +1548,9 @@ For terms of use, see http://www.unicode.org/copyright.html trim. + trim. pasado + este trim. + trim. seguinte En {0} trim. En {0} trim. @@ -1477,6 +1562,9 @@ For terms of use, see http://www.unicode.org/copyright.html trim. + trim. pasado + este trim. + trim. seguinte En {0} trim. En {0} trim. @@ -1502,6 +1590,9 @@ For terms of use, see http://www.unicode.org/copyright.html Mes + m. pasado + este m. + m. seguinte En {0} m. En {0} m. @@ -1530,6 +1621,9 @@ For terms of use, see http://www.unicode.org/copyright.html sem. + sem. pasada + esta sem. + sem. seguinte En {0} sem. En {0} sem. @@ -1642,6 +1736,7 @@ For terms of use, see http://www.unicode.org/copyright.html xov. pasado + este xov. próximo xov. @@ -4049,10 +4144,38 @@ For terms of use, see http://www.unicode.org/copyright.html - ¤#,##0.00 + #,##0.00 ¤ - ¤#,##0.00;(¤#,##0.00) + #,##0.00 ¤ + + + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0k M + ¤0k M + ¤00k M + ¤00k M + ¤000k M + ¤000k M + ¤0 B + ¤0 B + ¤00 B + ¤00 B + ¤000 B + ¤000 B {0} {1} @@ -4462,6 +4585,7 @@ For terms of use, see http://www.unicode.org/copyright.html lari xeorxiano laris xeorxianos GEL + Cedi de Gana @@ -4917,7 +5041,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guaraní paraguaio - Guaraní paraguaio + guaraní paraguaio guaranís paraguaios PYG @@ -5058,6 +5182,7 @@ For terms of use, see http://www.unicode.org/copyright.html baht tailandés bahts tailandeses ฿ + ฿ Somoni taxico @@ -5080,7 +5205,7 @@ For terms of use, see http://www.unicode.org/copyright.html Paʻanga de Tonga paʻanga de Tonga - Paʻanga de Tonga + pa’anga de Tonga TOP @@ -5249,6 +5374,9 @@ For terms of use, see http://www.unicode.org/copyright.html + + {0} por {1} + forza G {0} forza G @@ -5259,6 +5387,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metro por segundo cadrado {0} metros por segundo cadrado + + revolución + {0} revolución + {0} revolucións + + + radiáns + {0} radián + {0} radiáns + + + graos + {0} grao + {0} graos + arcominutos {0} arcominuto @@ -5269,30 +5412,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} arcosegundo {0} arcosegundos - - grados - {0} grado - {0} grados - - - radiáns - {0} radián - {0} radiáns - - - acres - {0} acre - {0} acres + + quilómetros cadrados + {0} quilómetro cadrado + {0} quilómetros cadrados hectáreas {0} hectárea {0} hectáreas + + metros cadrados + {0} metro cadrado + {0} metros cadrados + {0} por metro cadrado + centímetros cadrados {0} centímetro cadrado {0} centímetros cadrados + {0} por centímetro cadrado + + + millas cadradas + {0} milla cadrada + {0} millas cadradas + + + acres + {0} acre + {0} acres + + + iardas cadradas + {0} iarda cadrada + {0} iardas cadradas pés cadrados @@ -5303,91 +5458,106 @@ For terms of use, see http://www.unicode.org/copyright.html polgadas cadradas {0} polgada cadrada {0} polgadas cadradas + {0} por polgada cadrada - - quilómetros cadrados - {0} quilómetro cadrado - {0} quilómetros cadrados - - - metros cadrados - {0} metro cadrado - {0} metros cadrados - - - millas cadradas - {0} milla cadrada - {0} millas cadradas - - - iardas cadradas - {0} iarda cadrada - {0} iardas cadradas + + quilates + {0} quilate + {0} quilates litros por quilómetro {0} litro por quilómetro {0} litros por quilómetro + + litros por 100 quilómetros + {0} litro por 100 quilómetros + {0} litros por 100 quilómetros + millas por galón {0} milla por galón {0} millas por galón - - bits - {0} bit - {0} bits - - - bytes - {0} byte - {0} bytes - - - gigabits - {0} gigabit - {0} gigabits - - - gigabytes - {0} gigabyte - {0} gigabytes - - - kilobits - {0} kilobit - {0} kilobits - - - kilobytes - {0} kilobyte - {0} kilobytes - - - megabits - {0} megabit - {0} megabits - - - megabytes - {0} megabyte - {0} megabytes - - - terabits - {0} terabit - {0} terabits - terabyte {0} terabyte {0} terabytes + + terabits + {0} terabit + {0} terabits + + + xigabytes + {0} xigabyte + {0} xigabytes + + + xigabits + {0} xigabit + {0} xigabits + + + megabytes + {0} megabyte + {0} megabytes + + + megabits + {0} megabit + {0} megabits + + + kilobytes + {0} kilobyte + {0} kilobytes + + + kilobits + {0} kilobit + {0} kilobits + + + bytes + {0} byte + {0} bytes + + + bits + {0} bit + {0} bits + + + séculos + {0} século + {0} séculos + + + anos + {0} ano + {0} anos + {0} por ano + + + meses + {0} mes + {0} meses + {0} por mes + + + semanas + {0} semana + {0} semanas + {0} por semana + días {0} día {0} días + {0} por día horas @@ -5395,30 +5565,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} horas {0} por hora - - microsegundos - {0} microsegundo - {0} microsegundos - - - milisegundos - {0} milisegundo - {0} milisegundos - minutos {0} minuto {0} minutos - - - meses - {0} mes - {0} meses - - - nanosegundos - {0} nanosegundo - {0} nanosegundos + {0} por minuto segundos @@ -5426,15 +5577,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} segundos {0} por segundo - - semanas - {0} semana - {0} semanas + + milisegundos + {0} milisegundo + {0} milisegundos - - anos - {0} ano - {0} anos + + microsegundos + {0} microsegundo + {0} microsegundos + + + nanosegundos + {0} nanosegundo + {0} nanosegundos amperios @@ -5456,6 +5612,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volts + + quilocalorías + {0} quilocaloría + {0} quilocalorías + calorías {0} caloría @@ -5466,226 +5627,225 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Caloría {0} Calorías - - joules - {0} joule - {0} joules - - - quilocalorías - {0} quilocaloría - {0} quilocalorías - quilojoules {0} quilojoule {0} quilojoules + + joules + {0} joule + {0} joules + quilowatts/hora {0} quilowatt/hora {0} quilowatts/hora - gigahertz - {0} gigahertz - {0} gigahertz - - - hertz - {0} hertz - {0} hertz - - - kilohertz - {0} kilohertz - {0} kilohertz + xigahertz + {0} xigahertz + {0} xigahertz megahertz {0} megahertz {0} megahertz - - unidades astronómicas - {0} unidad astronómica - {0} unidades astronómicas + + kilohertz + {0} kilohertz + {0} kilohertz - - centímetros - {0} centímetro - {0} centímetros + + hertz + {0} hertz + {0} hertz + + + quilómetros + {0} quilómetro + {0} quilómetros + {0} por quilómetro + + + metros + {0} metro + {0} metros + {0} por metro decímetros {0} decímetro {0} decímetros - - - {0} pé - {0} pés - - - polgada - {0} polgada - {0} polgadas - - - quilómetros - {0} quilómetro - {0} quilómetros - - - anos luz - {0} ano luz - {0} anos luz - - - metros - {0} metro - {0} metros - - - micrómetros - {0} micrómetro - {0} micrómetros - - - millas - {0} milla - {0} millas + + centímetros + {0} centímetro + {0} centímetros + {0} por centímetro milímetros {0} milímetro {0} milímetros + + micrómetros + {0} micrómetro + {0} micrómetros + nanómetros {0} nanómetro {0} nanómetros - - millas náuticas - {0} milla náutica - {0} millas náuticas - - - pársecs - {0} pársec - {0} pársecs - picómetros {0} picómetro {0} picómetros + + millas + {0} milla + {0} millas + iardas {0} iarda {0} iardas + + + {0} pé + {0} pés + {0} por pé + + + polgada + {0} polgada + {0} polgadas + {0} por polgada + + + pársecs + {0} pársec + {0} pársecs + + + anos luz + {0} ano luz + {0} anos luz + + + unidades astronómicas + {0} unidad astronómica + {0} unidades astronómicas + + + millas náuticas + {0} milla náutica + {0} millas náuticas + + + milla escandinava + {0} milla escandinava + {0} millas escandinavas + lux {0} lux {0} lux - - quilates - {0} quilate - {0} quilates - - - gramos - {0} gramo - {0} gramos - - - quilogramos - {0} quilogramo - {0} quilogramos - toneladas métricas {0} tonelada métrica {0} toneladas métricas - - microgramos - {0} microgramo - {0} microgramos + + quilogramos + {0} quilogramo + {0} quilogramos + {0} por quilogramo + + + gramos + {0} gramo + {0} gramos + {0} por gramo miligramos {0} miligramo {0} miligramos - - onzas - {0} onza - {0} onzas - - - onzas troy - {0} onza troy - {0} onzas troy - - - libras - {0} libra - {0} libras + + microgramos + {0} microgramo + {0} microgramos toneladas {0} tonelada {0} toneladas + + libras + {0} libra + {0} libras + {0} por libra + + + onzas + {0} onza + {0} onzas + {0} por onza + + + onzas troy + {0} onza troy + {0} onzas troy + + + quilates + {0} quilate + {0} quilates + - gigawatts - {0} gigawatt - {0} gigawatts - - - cabalo de potencia - {0} cabalo de potencia - {0} cabalos de potencia - - - quilowatts - {0} quilowatt - {0} quilowatts + xigawatts + {0} xigawatt + {0} xigawatts megawatts {0} megawatt {0} megawatts - - milliwatts - {0} milliwatt - {0} milliwatts + + quilowatts + {0} quilowatt + {0} quilowatts watts {0} watt {0} watts + + milliwatts + {0} milliwatt + {0} milliwatts + + + cabalo de potencia + {0} cabalo de potencia + {0} cabalos de potencia + hectopascais {0} hectopascal {0} hectopascais - - polgadas de mercurio - {0} polgada de mercurio - {0} polgadas de mercurio - - - milibares - {0} milibar - {0} milibares - milímetros de mercurio {0} milímetro de mercurio @@ -5696,10 +5856,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} libra por polgada cadrada {0} libras por polgada cadrada - - quilates - {0} quilate - {0} quilates + + polgadas de mercurio + {0} polgada de mercurio + {0} polgadas de mercurio + + + milibares + {0} milibar + {0} milibares quilómetros por hora @@ -5716,45 +5881,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milla por hora {0} millas por hora + + + {0} nó + {0} nós + + + ° + {0}° + {0}° + - grados Celsius - {0} grado Celsius - {0} grados Celsius + graos Celsius + {0} grao Celsius + {0} graos Celsius - grados Fahrenheit - {0} grado Fahrenheit - {0} grados Fahrenheit + graos Fahrenheit + {0} grao Fahrenheit + {0} graos Fahrenheit - grados Kelvin - {0} grado Kelvin - {0} grados Kelvin - - - acres pés - {0} acre pé - {0} acres pés - - - centilitros - {0} centilitro - {0} centilitros - - - centímetros cúbicos - {0} centímetro cúbico - {0} centímetros cúbicos - - - pés cúbicos - {0} pé cúbico - {0} pés cúbicos - - - polgadas cúbicas - {0} polgada cúbica - {0} polgadas cúbicas + graos Kelvin + {0} grao Kelvin + {0} graos Kelvin quilómetros cúbicos @@ -5765,6 +5915,13 @@ For terms of use, see http://www.unicode.org/copyright.html metros cúbicos {0} metro cúbico {0} metros cúbicos + {0} por metro cúbico + + + centímetros cúbicos + {0} centímetro cúbico + {0} centímetros cúbicos + {0} por centímetro cúbico millas cúbicas @@ -5776,25 +5933,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} iarda cúbica {0} iardas cúbicas - - cuncas - {0} cunca - {0} cuncas + + pés cúbicos + {0} pé cúbico + {0} pés cúbicos - - decilitros - {0} decilitro - {0} decilitros + + polgadas cúbicas + {0} polgada cúbica + {0} polgadas cúbicas - - onzas líquidas - {0} onza líquida - {0} onzas líquidas - - - galóns - {0} galón - {0} galóns + + megalitros + {0} megalitro + {0} megalitros hectolitros @@ -5805,27 +5957,64 @@ For terms of use, see http://www.unicode.org/copyright.html litros {0} litro {0} litros + {0} por litro - - megalitros - {0} megalitro - {0} megalitros + + decilitros + {0} decilitro + {0} decilitros + + + centilitros + {0} centilitro + {0} centilitros mililitros {0} mililitro {0} mililitros - - pintas - {0} pinta - {0} pintas + + pintas métricas + {0} pinta métrica + {0} pintas métricas + + + cuncas métricas + {0} cunca métrica + {0} cuncas métricas + + + acres pés + {0} acre pé + {0} acres pés + + + galóns + {0} galón + {0} galóns + {0} por galón cuartos {0} cuarto {0} cuartos + + pintas + {0} pinta + {0} pintas + + + cuncas + {0} cunca + {0} cuncas + + + onzas líquidas + {0} onza líquida + {0} onzas líquidas + culleradas {0} cullerada @@ -5836,8 +6025,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} culleriña {0} culleriñas + + {0} L + {0} N + {0} S + {0} O + + + {0}/{1} + forzas G {0} G @@ -5848,6 +6046,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rev + {0} rev + {0} rev + + + radiáns + {0} rad + {0} rad + + + º + {0}° + {0}° + arcomin {0} arcomin @@ -5858,30 +6071,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} arcoseg {0} arcoseg - - º - {0}° - {0}° - - - radiáns - {0} rad - {0} rad - - - acres - {0} ac - {0} ac + + km² + {0} km² + {0} km² hectáreas {0} ha {0} ha + + metros² + {0} m² + {0} m² + {0} por m² + cm² {0} cm² {0} cm² + {0} por cm² + + + millas² + {0} mi² + {0} mi² + + + acres + {0} ac + {0} ac + + + iardas² + {0} yd² + {0} yd² pé² @@ -5892,91 +6117,106 @@ For terms of use, see http://www.unicode.org/copyright.html polgadas² {0} in² {0} in² + {0} por in² - - km² - {0} km² - {0} km² - - - metros² - {0} m² - {0} m² - - - millas² - {0} mi² - {0} mi² - - - iardas² - {0} yd² - {0} yd² + + quilates + {0} ct + {0} ct litros/km {0} l/km {0} l/km + + L/100 km + {0} L/100 km + {0} L/100 km + millas/galón {0} mpg {0} mpg - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + séc. + {0} séc. + {0} séc. + + + anos + {0} ano + {0} anos + {0}/ano + + + meses + {0} m + {0} m + {0}/m + + + semanas + {0} sem + {0} sem + {0}/sem. + días {0} día {0} días + {0}/d horas @@ -5984,30 +6224,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} horas {0} ph - - μs - {0} μs - {0} μs - - - miliseg - {0} miliseg - {0} miliseg - min {0} min {0} min - - - meses - {0} m - {0} m - - - nanoseg. - {0} ns - {0} ns + {0}/min seg @@ -6015,15 +6236,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} seg {0} ps - - semanas - {0} sem - {0} sem + + miliseg + {0} miliseg + {0} miliseg - - anos - {0} ano - {0} anos + + μs + {0} μs + {0} μs + + + nanoseg. + {0} ns + {0} ns amp @@ -6045,6 +6271,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -6055,21 +6286,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - joules - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - quilojoule {0} kJ {0} kJ + + joules + {0} J + {0} J + kW/h {0} kW/h @@ -6080,201 +6306,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - ua - {0} ua - {0} ua + + quilóm + {0} quilóm + {0} quilóm + {0}/km - - cent - {0} cent - {0} cent + + met + {0} met + {0} met + {0}/m dm {0} dm {0} dm - - - {0} ft - {0} ft - - - polgadas - {0} in - {0} in - - - quilóm - {0} quilóm - {0} quilóm - - - anos luz - {0} al - {0} al - - - met - {0} met - {0} met - - - µm - {0} µm - {0} µm - - - millas - {0} mi - {0} mi + + cent + {0} cent + {0} cent + {0}/cm milím {0} milím {0} milím + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - pársecs - {0} pc - {0} pc - pm {0} pm {0} pm + + millas + {0} mi + {0} mi + iardas {0} yd {0} yd + + + {0} ft + {0} ft + {0}/ft + + + polgadas + {0} in + {0} in + {0}/in + + + pársecs + {0} pc + {0} pc + + + anos luz + {0} al + {0} al + + + ua + {0} ua + {0} ua + + + nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + lux {0} lx {0} lx - - quilate - {0} ct - {0} ct - - - gramos - {0} gram - {0} gram - - - quilog - {0} quilog - {0} quilog - tm {0} tm {0} tm - - µg - {0} µg - {0} µg + + quilog + {0} quilog + {0} quilog + {0}/kg + + + gramos + {0} gram + {0} gram + {0}/g mg {0} mg {0} mg - - oz - {0} oz - {0} oz - - - onza troy - {0} oz t - {0} oz t - - - libras - {0} lb - {0} lb + + µg + {0} µg + {0} µg toneladas {0} t {0} t + + libras + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0}/oz + + + onza troy + {0} oz t + {0} oz t + + + quilate + {0} ct + {0} ct + GW {0} GW {0} GW - - hp - {0} hp - {0} hp - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW watts {0} W {0} W + + mW + {0} mW + {0} mW + + + hp + {0} hp + {0} hp + hPa {0} hPa {0} hPa - - in Hg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -6285,15 +6515,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - quilates - {0} ct - {0} ct + + in Hg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar km/hora - {0} km por hora - {0} km por hora + {0} km/h + {0} km/h metros/seg @@ -6305,6 +6540,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + g. Celsius {0} g Celsius @@ -6320,31 +6565,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - acres pés - {0} ac ft - {0} ac ft - - - cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - - - pés³ - {0} ft³ - {0} ft³ - - - polgadas³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -6354,6 +6574,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -6365,25 +6592,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - cuncas - {0} c - {0} c + + pés³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl + + polgadas³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml hl @@ -6394,27 +6616,64 @@ For terms of use, see http://www.unicode.org/copyright.html lit {0} lit {0} lit + {0}/l - - Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl ml {0} ml {0} ml - - pintas - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + acres pés + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0}/gal cuartos {0} qt {0} qt + + pintas + {0} pt + {0} pt + + + cuncas + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + tbsp {0} tbsp @@ -6425,12 +6684,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0} L + {0} N + {0} S + {0} O + + + {0}/{1} + {0}′ {0}′ + + L/100 km + {0} L/100 km + {0} L/100 km + + + anos + {0} a + {0} a + + + mes + {0} m + {0} m + + + sem + {0} s + {0} s + días {0} d @@ -6441,40 +6729,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0} h - - miliseg - {0} ms - {0} ms - min {0} m {0} m - - mes - {0} m - {0} m - seg {0} s {0} s - - sem - {0} s - {0} s - - - anos - {0} a - {0} a - - - cm - {0} cm - {0} cm + + miliseg + {0} ms + {0} ms km @@ -6486,21 +6754,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m {0} m + + cm + {0} cm + {0} cm + mm {0} mm {0} mm - - g - {0} g - {0} g - kg {0} kg {0} kg + + g + {0} g + {0} g + km/h {0} km/h @@ -6520,6 +6793,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l + + {0} L + {0} N + {0} S + {0} O + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gl_ES.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gl_ES.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gl_ES.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gl_ES.xml index 9ddb7526852..7df96d4f2e4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gl_ES.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gl_ES.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gsw.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gsw.xml similarity index 97% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gsw.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gsw.xml index 640cadb4d03..819337becd2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gsw.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gsw.xml @@ -1,13 +1,12 @@ - - - + @@ -625,7 +624,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albaanie Armeenie - Niderländischi Antille Angoola Antarktis Argentiinie @@ -914,21 +912,21 @@ For terms of use, see http://www.unicode.org/copyright.html Wäährig - Tradizionells Chineesisch - Big5 - Buddhischtisch Kaländer - Chineesisch Kaländer - Veräifachts Chineesisch - GB2312 - Gregoriaanisch Kaländer - Hebrääisch Kaländer - Indisch Nationaalkaländer - Islaamisch Kaländer - Bürgerlich islaamisch Kaländer - Japaanisch Kaländer - Telifonbuech-Sortiirregle - Pinyin-Sortiirregle - Kaländer vor Republik Chiina - Strichfolg - Tradizionelli Sortiir-Regle + Buddhischtisch Kaländer + Chineesisch Kaländer + Gregoriaanisch Kaländer + Hebrääisch Kaländer + Indisch Nationaalkaländer + Islaamisch Kaländer + Bürgerlich islaamisch Kaländer + Japaanisch Kaländer + Kaländer vor Republik Chiina + Tradizionells Chineesisch - Big5 + Veräifachts Chineesisch - GB2312 + Telifonbuech-Sortiirregle + Pinyin-Sortiirregle + Strichfolg + Tradizionelli Sortiir-Regle metrisch @@ -1005,9 +1003,8 @@ For terms of use, see http://www.unicode.org/copyright.html d E d. H - HH:mm - HH:mm:ss - H:mm + HH:mm + HH:mm:ss L d.M. E, d.M. @@ -1232,8 +1229,8 @@ For terms of use, see http://www.unicode.org/copyright.html - v.m. - n.m. + v.m. + n.m. vorm. @@ -1316,9 +1313,8 @@ For terms of use, see http://www.unicode.org/copyright.html d E d. H - HH:mm - HH:mm:ss - H:mm + HH:mm + HH:mm:ss L d.M. E, d.M. @@ -1989,6 +1985,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 tsd ¤ + 0 tsd ¤ + 00 tsd ¤ + 00 tsd ¤ + 000 tsd ¤ + 000 tsd ¤ + 0 Mio ¤ + 0 Mio ¤ + 00 Mio ¤ + 00 Mio ¤ + 000 Mio ¤ + 000 Mio ¤ + 0 Mrd ¤ + 0 Mrd ¤ + 00 Mrd ¤ + 00 Mrd ¤ + 000 Mrd ¤ + 000 Mrd ¤ + 0 Bio ¤ + 0 Bio ¤ + 00 Bio ¤ + 00 Bio ¤ + 000 Bio ¤ + 000 Bio ¤ + + {0} {1} {0} {1} @@ -3338,6 +3362,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}-fachi Erdbeschlünigung {0}-fachi Erdbeschlünigung + + Grad + {0} Grad + {0} Grad + Winkelminute {0} Winkelminute @@ -3348,31 +3377,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Winkelsekunde {0} Winkelsekunde - - Grad - {0} Grad - {0} Grad - - - Acre - {0} Acre - {0} Acre + + Quadratkilometer + {0} Quadratkilometer + {0} Quadratkilometer Hektar {0} Hektar {0} Hektar - - Quadratfuess - {0} Quadratfuess - {0} Quadratfuess - - - Quadratkilometer - {0} Quadratkilometer - {0} Quadratkilometer - Quadratmeter {0} Quadratmeter @@ -3383,6 +3397,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Quadratmeile {0} Quadratmeile + + Acre + {0} Acre + {0} Acre + + + Quadratfuess + {0} Quadratfuess + {0} Quadratfuess + + + Jahr + {0} Jahr + {0} Jahr + + + Mönet + {0} Monet + {0} Mönet + + + Wuche + {0} Wuche + {0} Wuche + Tääg {0} Taag @@ -3393,70 +3432,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Schtund {0} Schtunde - - Millisekunde - {0} Millisekunde - {0} Millisekunde - Minuute {0} Minuute {0} Minuute - - Mönet - {0} Monet - {0} Mönet - Sekunde {0} Sekunde {0} Sekunde - - Wuche - {0} Wuche - {0} Wuche - - - Jahr - {0} Jahr - {0} Jahr - - - Zentimeter - {0} Zentimeter - {0} Zentimeter - - - Fuess - {0} Fuess - {0} Fuess - - - Zoll - {0} Zoll - {0} Zoll + + Millisekunde + {0} Millisekunde + {0} Millisekunde Kilometer {0} Kilometer {0} Kilometer - - Liechtjahr - {0} Liechtjahr - {0} Liechtjahr - Meter {0} Meter {0} Meter - - Meile - {0} Meile - {0} Meile + + Zentimeter + {0} Zentimeter + {0} Zentimeter Millimeter @@ -3468,35 +3472,50 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Pikometer {0} Pikometer + + Meile + {0} Meile + {0} Meile + Yard {0} Yard {0} Yard - - Gramm - {0} Gramm - {0} Gramm + + Fuess + {0} Fuess + {0} Fuess + + + Zoll + {0} Zoll + {0} Zoll + + + Liechtjahr + {0} Liechtjahr + {0} Liechtjahr Kilogramm {0} Kilogramm {0} Kilogramm - - Unze - {0} Unze - {0} Unze + + Gramm + {0} Gramm + {0} Gramm Pfund {0} Pfund {0} Pfund - - Pferdestärke - {0} Pferdestärke - {0} Pferdestärke + + Unze + {0} Unze + {0} Unze Kilowatt @@ -3508,6 +3527,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Watt {0} Watt + + Pferdestärke + {0} Pferdestärke + {0} Pferdestärke + Hektopascal {0} Hektopascal @@ -3573,6 +3597,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + Grad + {0}° + {0}° + Winkelminute {0}′ @@ -3583,31 +3612,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - Grad - {0}° - {0}° - - - Acre - {0} ac - {0} ac + + Quadratkilometer + {0} km² + {0} km² Hektar {0} ha {0} ha - - Quadratfuess - {0} ft² - {0} ft² - - - Quadratkilometer - {0} km² - {0} km² - Quadratmeter {0} m² @@ -3618,6 +3632,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + Acre + {0} ac + {0} ac + + + Quadratfuess + {0} ft² + {0} ft² + + + Jahr + + + Mönet + + + Wuche + Tääg {0} d @@ -3628,64 +3661,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0} h - - Millisekunde - {0} ms - {0} ms - Minuute {0} min {0} min - - Mönet - Sekunde {0} s {0} s - - Wuche - - - Jahr - - - Zentimeter - {0} cm - {0} cm - - - Fuess - {0} Fuess - {0} Fuess - - - Zoll - {0} Zoll - {0} Zoll + + Millisekunde + {0} ms + {0} ms Kilometer {0} km {0} km - - Liechtjahr - {0} Liechtjahr - {0} Liechtjahr - Meter {0} m {0} m - - Meile - {0} mi - {0} mi + + Zentimeter + {0} cm + {0} cm Millimeter @@ -3697,35 +3701,50 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + Meile + {0} mi + {0} mi + Yard {0} yd {0} yd - - Gramm - {0} g - {0} g + + Fuess + {0} Fuess + {0} Fuess + + + Zoll + {0} Zoll + {0} Zoll + + + Liechtjahr + {0} Liechtjahr + {0} Liechtjahr Kilogramm {0} kg {0} kg - - Unze - {0} Unze - {0} Unze + + Gramm + {0} g + {0} g Pfund {0} Pfund {0} Pfund - - Pferdestärke - {0} PS - {0} PS + + Unze + {0} Unze + {0} Unze Kilowatt @@ -3737,6 +3756,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + Pferdestärke + {0} PS + {0} PS + Hektopascal {0} hPa @@ -3801,6 +3825,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}G {0}G + + {0}° + {0}° + {0}′ {0}′ @@ -3809,26 +3837,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} ac - {0} ac + + {0}km² + {0}km² {0}ha {0}ha - - {0} ft² - {0} ft² - - - {0}km² - {0}km² - {0}m² {0}m² @@ -3837,6 +3853,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} ac + {0} ac + + + {0} ft² + {0} ft² + {0}d {0}d @@ -3845,10 +3869,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}h {0}h - - {0}ms - {0}ms - {0}m {0}m @@ -3857,33 +3877,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0}s {0}s - - {0}cm - {0}cm - - - {0} Fuess - {0} Fuess - - - {0} Zoll - {0} Zoll + + {0}ms + {0}ms {0}km {0}km - - {0} Liechtjahr - {0} Liechtjahr - {0}m {0}m - - {0} mi - {0} mi + + {0}cm + {0}cm {0}mm @@ -3893,29 +3901,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0}pm {0}pm + + {0} mi + {0} mi + {0} yd {0} yd - - {0}g - {0}g + + {0} Fuess + {0} Fuess + + + {0} Zoll + {0} Zoll + + + {0} Liechtjahr + {0} Liechtjahr {0}kg {0}kg - - {0} Unze - {0} Unze + + {0}g + {0}g {0} Pfund {0} Pfund - - {0} PS - {0} PS + + {0} Unze + {0} Unze {0}kW @@ -3925,6 +3945,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}W {0}W + + {0} PS + {0} PS + {0}hPa {0}hPa diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gsw_CH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gsw_CH.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gsw_CH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gsw_CH.xml index 1f96637859f..4deab805987 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gsw_CH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gsw_CH.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gsw_FR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gsw_FR.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gsw_FR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gsw_FR.xml index 3567910169f..6035d99a19a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gsw_FR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gsw_FR.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gsw_LI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gsw_LI.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gsw_LI.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gsw_LI.xml index 6aa9a692499..75a085a473b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gsw_LI.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gsw_LI.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gu.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gu.xml similarity index 90% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gu.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gu.xml index 21419677931..4b2d6929bcb 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gu.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gu.xml @@ -1,13 +1,12 @@ - - - + @@ -39,7 +38,7 @@ For terms of use, see http://www.unicode.org/copyright.html અરબી મોડર્ન સ્ટાન્ડર્ડ અરબી અર્માઇક - એરોકૈનિયન + મેપુચે અરાપાહો આલ્જેરિયન અરબી અરાવક @@ -53,7 +52,6 @@ For terms of use, see http://www.unicode.org/copyright.html આયમારા અઝરબૈજાની અઝેરી - દક્ષિણ ઝરબૈજાની બશ્કીર બલૂચી બાલિનીસ @@ -64,6 +62,7 @@ For terms of use, see http://www.unicode.org/copyright.html બેમ્બા બેના બલ્ગેરિયન + પશ્ચિમી બાલોચી ભોજપુરી બિસ્લામા બિકોલ @@ -98,7 +97,7 @@ For terms of use, see http://www.unicode.org/copyright.html શિપેવ્યાન શેરોકી શેયેન્ન - સોરાની કુર્દિશ + સેન્ટ્રલ કુર્દિશ કોર્સિકન કોપ્ટિક ક્રી @@ -168,7 +167,7 @@ For terms of use, see http://www.unicode.org/copyright.html નોર્ધર્ન ફ્રિશિયન પૂર્વ ફ્રિશિયન ફ્રિયુલિયાન - પશ્ચિમી ફ્રિશિયન + પશ્ચિમી ફ્રિસિયન આઇરિશ Ga ગાગાઝ @@ -287,6 +286,7 @@ For terms of use, see http://www.unicode.org/copyright.html લાઓથિયન મોગો લોઝી + ઉત્તરીય લુરી લિથુનિયન લ્યૂબા કટાંગા લ્યૂબા-લુલુઆ @@ -333,12 +333,14 @@ For terms of use, see http://www.unicode.org/copyright.html મારવાડી બર્મીઝ એર્ઝયા + મઝાન્દેરાની નાઉરૂ નેપોલિટાન નમા નોર્વેજીયન બોકમાલ - ઉતર દેબેલ + ઉત્તર દેબેલ લો જર્મન + લો સેક્સોન નેપાળી નેવાડી ડોન્ગા @@ -414,6 +416,7 @@ For terms of use, see http://www.unicode.org/copyright.html સિસિલિયાન સ્કોટ્સ સિંધી + સર્ઘન કુર્દીશ ઉત્તરીય સામી સેના સેલ્કપ @@ -448,8 +451,8 @@ For terms of use, see http://www.unicode.org/copyright.html સુમેરિયન સ્વીડિશ સ્વાહિલી + કોંગો સ્વાહિલી કોમોરિયન - કોંગો સ્વાહિલી પરંપરાગત સિરિએક સિરિએક તમિલ @@ -504,6 +507,7 @@ For terms of use, see http://www.unicode.org/copyright.html વલામો વારે વાશો + વાર્લ્પીરી વોલોફ કાલ્મિક ખોસા @@ -517,7 +521,7 @@ For terms of use, see http://www.unicode.org/copyright.html ઝેપોટેક બ્લિસિમ્બોલ્સ ઝેનાગા - પ્રમાણભૂત મોરોક્કન ટમાઝિટ + પ્રમાણભૂત મોરોક્કન તામાઝિગ્ટ ચાઇનીઝ સરળીકૃત ચાઇનીઝ પારંપરિક ચાઇનીઝ @@ -620,6 +624,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -655,7 +660,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -665,23 +670,23 @@ For terms of use, see http://www.unicode.org/copyright.html આફ્રિકા ઉત્તર અમેરિકા દક્ષિણ અમેરિકા - ઓશિઆનિયા + ઓશનિયા પશ્ચિમી આફ્રિકા મધ્ય અમેરિકા પૂર્વીય આફ્રિકા ઉત્તરીય આફ્રિકા મધ્ય આફ્રિકા - દક્ષિણી આફ્રિકા - અમેરિકાસ + સધર્ન આફ્રિકા + અમેરિકા ઉત્તરીય અમેરિકા કેરિબિયન પૂર્વીય એશિયા - દક્ષિણી એશિયા + સર્ધન એશિયા દક્ષિણપૂર્વ એશિયા - દક્ષિણી યુરોપ + સધર્ન યુરોપ ઓસ્ટ્રેલેશિયા મેલાનેશિયા - માઇક્રોનેશિયન રીજન + માઈક્રોનેશિયન ક્ષેત્ર પોલિનેશિયા એશિયા મધ્ય એશિયા @@ -695,11 +700,10 @@ For terms of use, see http://www.unicode.org/copyright.html ઍંડોરા યુનાઇટેડ આરબ અમીરાત અફઘાનિસ્તાન - એન્ટીગુઆ અને બરબુડા + એન્ટીગુઆ અને બર્મુડા ઍંગ્વિલા અલ્બેનિયા આર્મેનિયા - નેધરલેંડ્સ એંટિલેસ અંગોલા એન્ટાર્કટિકા આર્જેન્ટીના @@ -707,7 +711,7 @@ For terms of use, see http://www.unicode.org/copyright.html ઑસ્ટ્રિયા ઑસ્ટ્રેલિયા અરુબા - એલેંડ આઇલેન્ડ્સ + એલેંડ ટાપુઓ અઝરબૈજાન બોસ્નિયા અને હર્ઝેગોવિના બાર્બાડોસ @@ -718,7 +722,7 @@ For terms of use, see http://www.unicode.org/copyright.html બેહરીન બુરુંડી બેનિન - સેંટ બાર્થલેમી + સેન્ટ બાર્થેલેમી બર્મુડા બ્રુનેઇ બોલિવિયા @@ -734,7 +738,7 @@ For terms of use, see http://www.unicode.org/copyright.html કોકોઝ (કીલીંગ) આઇલેન્ડ્સ કોંગો - કિંશાસા કોંગો (ડીઆરસી) - સેંટ્રલ આફ્રિકન રીપબ્લિક + સેન્ટ્રલ આફ્રિકન રીપબ્લિક કોંગો - બ્રાઝાવિલે કોંગો (પ્રજાસત્તાક) સ્વિટ્ઝર્લૅન્ડ @@ -771,10 +775,10 @@ For terms of use, see http://www.unicode.org/copyright.html યુરોપિયન સંઘ ફિનલેન્ડ ફીજી - ફૉકલેન્ડ આઇલેન્ડ્સ - ફૉકલેન્ડ આઇલેન્ડ્સ (ઇસ્લાસ માલવિનસ) + ફૉકલેન્ડ ટાપુઓ + ફૉકલેન્ડ ટાપુઓ (ઇસ્લાસ માલવિનસ) માઇક્રોનેશિયા - ફૅરો આઇલેન્ડ્સ + ફૅરો ટાપુઓ ફ્રાંસ ગેબન યુનાઇટેડ કિંગડમ @@ -803,9 +807,9 @@ For terms of use, see http://www.unicode.org/copyright.html ક્રોએશિયા હૈતિ હંગેરી - કૅનેરી આઇલેન્ડ્સ + કૅનેરી ટાપુઓ ઇન્ડોનેશિયા - આયર્લેંડ + આયર્લેન્ડ ઇઝરાઇલ આઈલ ઓફ મૅન ભારત @@ -823,15 +827,15 @@ For terms of use, see http://www.unicode.org/copyright.html કંબોડિયા કિરિબાટી કોમોરસ - સેંટ કિટ્સ એંડ નેવિસ + સેન્ટ કિટ્સ અને નેવિસ ઉત્તર કોરિયા દક્ષિણ કોરિયા કુવૈત - કેયમેન આઇલેન્ડ્સ + કેમેન ટાપુઓ કઝાકિસ્તાન લાઓસ લેબનોન - સેંટ લુસિયા + સેન્ટ લુસિયા લૈચટેંસ્ટેઇન શ્રીલંકા લાઇબેરિયા @@ -844,7 +848,7 @@ For terms of use, see http://www.unicode.org/copyright.html મોનાકો મોલડોવા મૉન્ટેંનેગ્રો - સેંટ માર્ટિન + સેન્ટ માર્ટિન મેડાગાસ્કર માર્શલ આઇલેન્ડ્સ મેસેડોનિયા @@ -868,7 +872,7 @@ For terms of use, see http://www.unicode.org/copyright.html નામિબિયા ન્યુ સેલેડોનિયા નાઇજર - નોરફૉક આઇલેન્ડ + નોરફૉક ટાપુ નાઇજીરીયા નિકારાગુઆ નેધરલેન્ડ @@ -885,7 +889,7 @@ For terms of use, see http://www.unicode.org/copyright.html ફિલીપાઇન્સ પાકિસ્તાન પોલેંડ - સેંટ પીએરે એન્ડ મિકીલોન + સેન્ટ પિયર અને મીક્વેલન પીટકૈર્ન આઇલેન્ડ્સ પ્યુઅર્ટો રિકો પેલેસ્ટિનિયન ટેરિટરી @@ -894,7 +898,7 @@ For terms of use, see http://www.unicode.org/copyright.html પલાઉ પેરાગ્વે કતાર - આઉટલાયિંગ ઓશનિયા + આઉટલાઈન્ગ ઓશનિયા રીયુનિયન રોમાનિયા સર્બિયા @@ -902,13 +906,13 @@ For terms of use, see http://www.unicode.org/copyright.html રવાંડા સાઉદી અરેબિયા સોલોમન આઇલેન્ડ્સ - શેશેલ્સ + સેશેલ્સ સુદાન સ્વીડન સિંગાપુર - સેંટ હેલેના + સેન્ટ હેલેના સ્લોવેનિયા - સ્વાલબર્ડ એન્ડ જેન મેયન + સ્વાલબર્ડ અને જેન મેયન સ્લોવેકિયા સીએરા લેઓન સૅન મેરિનો @@ -922,7 +926,7 @@ For terms of use, see http://www.unicode.org/copyright.html સીરિયા સ્વાઝિલેન્ડ ત્રિસ્તાન દા કુન્હા - ટર્ક્સ એન્ડ કૈકોસ આઇલેન્ડ્સ + તુર્ક્સ અને કાઇકોસ ટાપુઓ ચાડ ફ્રેંચ સદર્ન ટેરિટરીઝ ટોગો @@ -935,7 +939,7 @@ For terms of use, see http://www.unicode.org/copyright.html ટ્યુનિશિયા ટોંગા તુર્કી - ત્રિનિદાદ અને ટોબેગો + ટ્રિનીદાદ અને ટોબેગો તુવાલુ તાઇવાન તાંઝાનિયા @@ -947,13 +951,13 @@ For terms of use, see http://www.unicode.org/copyright.html ઉરુગ્વે ઉઝ્બેકિસ્તાન વેટિકન સિટી - સેન્ટ વિન્સેન્ટ એન્ડ ગ્રેનેડીન્સ + સેન્ટ વિન્સેટ અને ગ્રેનેડીન્સ વેનેઝુએલા - બ્રિટિશ વર્જિન આઇલેન્ડ્સ - યુ.એસ વર્જિન આઇલેન્ડ્સ + બ્રિટિશ વર્જિન ટાપુઓ + યુ.એસ. વર્જિન ટાપુઓ વિયેતનામ વાનુઆતુ - વૉલિસ એંડ ફ્યુચુના + વેલીસ અને ફ્યુટુના સમોઆ કોસોવો યેમેન @@ -979,6 +983,9 @@ For terms of use, see http://www.unicode.org/copyright.html આંકડાકીય સૉર્ટિંગ સૉર્ટિંગ શક્તિ ચલણ + કલાકનું આવર્તન (12 વિ.24) + રેખા વિરામ પ્રકાર + માપદંડ પદ્ધતિ આંકડાઓ સમય ઝોન લોકેલ વેરિએન્ટ @@ -986,95 +993,105 @@ For terms of use, see http://www.unicode.org/copyright.html ખાનગી-ઉપયોગ - અરેબિક-ભારતીય અંકો - વિસ્તૃત અરેબિક-ઇન્ડિક અંકો - અર્મેનિયન સંખ્યાઓ - અર્મેનિયન નાના અક્ષરની સંખ્યાઓ - બંગાળી અંકો - પરંપરાગત ચાઇનિઝ સોર્ટ ક્રમબદ્ધ - બુદ્ધિસ્ટ કેલેન્ડર - ચાઇનિઝ કેલેન્ડર - કોપ્ટિક કેલેન્ડર - ડાંગી કેલેન્ડર - દેવનાગરી - શબ્દકોશ અનુક્મ - ડિફોલ્ટ યુનિકોડ સૉર્ટ ક્રમ - ઇથિયોપીક સંખ્યાઓ - ઇથિઓપિક કેલેન્ડર - ઇથિઓપિક એમેટ એલેમ કેલેન્ડર - નાણાકીય સંખ્યાઓ - પૂર્ણ પહોળાઈ અંકો - સરળીકૃત ચાઇનીઝ સૉર્ટ ક્રમ - GB2312 - જ્યોર્જિઅન સંખ્યાઓ - ગ્રેગોરિઅન કેલેન્ડર - ગ્રિક સંખ્યાઓ - ગ્રિક નાના અક્ષરની સંખ્યાઓ - ગુજરાતી અંકો - ગુરમુખી અંકો - ચાઇનીઝ દશાંશ સંખ્યા - સરળીકૃત ચાઇનીઝ સંખ્યાઓ - સરળીકૃત ચાઇનીઝ નાણાકિય સંખ્યાઓ - પરંપરાગત ચાઇનીઝ સંખ્યાઓ - પરંપરાગત ચાઇનીઝ નાણાંકીય સંખ્યાઓ - હિબ્રુ સંખ્યાઓ - હિબ્રુ કેલેન્ડર - બધા સૉર્ટ કરો - ભારતીય રાષ્ટ્રીય કેલેન્ડર - ઇસ્લામિક કેલેન્ડર - ઇસ્લામિક-નાગરિક કેલેન્ડર - ISO-8601 કેલેન્ડર - જાપાનિઝ કેલેન્ડર - જાપાનીઝ સંખ્યાઓ - જાપાનીઝ નાણાકિય સંખ્યાઓ - ખેમેર અંકો - કન્નડા અંકો - લાઓ અંકો - પશ્ચિમી અંકો - પ્રથમ લોઅરકેસ સૉર્ટ કરો - મલયાલમ અંકો - મોંગોલિયન અંકો - મ્યાન્માર અંકો - મૂળ અંકો - ઉચ્ચારોને સામાન્ય રીતે સૉર્ટ કરો - સામાન્ય કેસના ક્રમમાં સૉર્ટ કરો - કેસ સંવેદીને સૉર્ટ કરો - કાનાને અલગ સૉર્ટ કરો - સામાન્યકૃત વિના સૉર્ટ કરો - અંકોને અલગથી સૉર્ટ કરોવ્યક્તિગત રીતે ક્રમમાં ગોઠવો અંકો - પ્રતીકોને સૉર્ટ કરો - ઓરિયા અંકો - પર્શિયન કેલેન્ડર - ફોનબુક અનુક્મ - ધ્વન્યાત્મક સૉર્ટ ક્રમ - પિનયિન અનુક્મ - ફક્ત આધાર અક્ષરોને સૉર્ટ કરો - ઉચ્ચારો/કેસ/પહોળાઈ/કાના સૉર્ટ કરો - પૂનર્સ્વરૂપિત અનુક્મ - મિંગુઓ કેલેન્ડર - રોમન સંખ્યાઓ - રોમન નાના અક્ષરની સંખ્યા - સામાન્ય-ઉદ્દેશ શોધ - હંગુલ પ્રારંભિક વ્યંજન દ્વારા શોધો - ઉચ્ચારો સૉર્ટ કરો - પ્રતીકોને અવગણીને સૉર્ટ કરો - માનક સૉર્ટ ક્રમ - સ્ટ્રોક અનુક્મ - પારંપરિક તમિલ સંખ્યાઓ - તમિલ અંકો - તેલુગુ અંકો - ઉચ્ચારો/કેસ/પહોળાઈ સૉર્ટ કરો - થાઇ અંકો - તિબેટિયન અંકો - પરંપરાગત અનુક્મ - પરંપરાગત અંકો - રેડિકલ-સ્ટ્રોક - પ્રથમ અપરકેસ સૉર્ટ કરો - વાઇ અંકો - ઉચ્ચારોને વિપરીત સૉર્ટ કરો - કેસ સંવેદી સૉર્ટ કરો - કાનાને અલગ રીતે સૉર્ટ કરો - યુનિકોડ સામાન્યકૃતને સૉર્ટ કરો - અંકોને સંખ્યાત્મક રીતે સૉર્ટ કરો + બુદ્ધિસ્ટ કેલેન્ડર + ચાઇનિઝ કેલેન્ડર + કોપ્ટિક કેલેન્ડર + ડાંગી કેલેન્ડર + ઇથિઓપિક કેલેન્ડર + ઇથિઓપિક એમેટ એલેમ કેલેન્ડર + ગ્રેગોરિઅન કેલેન્ડર + હિબ્રુ કેલેન્ડર + ભારતીય રાષ્ટ્રીય કેલેન્ડર + ઇસ્લામિક કેલેન્ડર + ઇસ્લામિક-નાગરિક કેલેન્ડર + ISO-8601 કેલેન્ડર + જાપાનિઝ કેલેન્ડર + પર્શિયન કેલેન્ડર + મિંગુઓ કેલેન્ડર + પ્રતીકોને સૉર્ટ કરો + પ્રતીકોને અવગણીને સૉર્ટ કરો + ઉચ્ચારોને સામાન્ય રીતે સૉર્ટ કરો + ઉચ્ચારોને વિપરીત સૉર્ટ કરો + પ્રથમ લોઅરકેસ સૉર્ટ કરો + સામાન્ય કેસના ક્રમમાં સૉર્ટ કરો + પ્રથમ અપરકેસ સૉર્ટ કરો + કેસ સંવેદીને સૉર્ટ કરો + કેસ સંવેદી સૉર્ટ કરો + કાનાને અલગ સૉર્ટ કરો + કાનાને અલગ રીતે સૉર્ટ કરો + પરંપરાગત ચાઇનિઝ સોર્ટ ક્રમબદ્ધ + શબ્દકોશ અનુક્મ + ડિફોલ્ટ યુનિકોડ સૉર્ટ ક્રમ + સરળીકૃત ચાઇનીઝ સૉર્ટ ક્રમ - GB2312 + ફોનબુક અનુક્મ + ધ્વન્યાત્મક સૉર્ટ ક્રમ + પિનયિન અનુક્મ + પૂનર્સ્વરૂપિત અનુક્મ + સામાન્ય-ઉદ્દેશ શોધ + હંગુલ પ્રારંભિક વ્યંજન દ્વારા શોધો + માનક સૉર્ટ ક્રમ + સ્ટ્રોક અનુક્મ + પરંપરાગત અનુક્મ + રેડિકલ-સ્ટ્રોક + સામાન્યકૃત વિના સૉર્ટ કરો + યુનિકોડ સામાન્યકૃતને સૉર્ટ કરો + અંકોને અલગથી સૉર્ટ કરોવ્યક્તિગત રીતે ક્રમમાં ગોઠવો અંકો + અંકોને સંખ્યાત્મક રીતે સૉર્ટ કરો + બધા સૉર્ટ કરો + ફક્ત આધાર અક્ષરોને સૉર્ટ કરો + ઉચ્ચારો/કેસ/પહોળાઈ/કાના સૉર્ટ કરો + ઉચ્ચારો સૉર્ટ કરો + ઉચ્ચારો/કેસ/પહોળાઈ સૉર્ટ કરો + 12 કલાકની સિસ્ટમ (0–11) + 12 કલાકની સિસ્ટમ (1–12) + 24 કલાકની સિસ્ટમ (0–23) + 24 કલાકની સિસ્ટમ (1–24) + શિથિલ રેખા વિરામ પ્રકાર + સામાન્ય રેખા વિરામ પ્રકાર + ચુસ્ત રેખા વિરામ પ્રકાર + દશાંશ પદ્ધતિ + રજવાડું માપદંડ પદ્ધતિ + અમેરિકન માપદંડ પદ્ધતિ + અરેબિક-ભારતીય અંકો + વિસ્તૃત અરેબિક-ઇન્ડિક અંકો + અર્મેનિયન સંખ્યાઓ + અર્મેનિયન નાના અક્ષરની સંખ્યાઓ + બંગાળી અંકો + દેવનાગરી + ઇથિયોપીક સંખ્યાઓ + નાણાકીય સંખ્યાઓ + પૂર્ણ પહોળાઈ અંકો + જ્યોર્જિઅન સંખ્યાઓ + ગ્રિક સંખ્યાઓ + ગ્રિક નાના અક્ષરની સંખ્યાઓ + ગુજરાતી અંકો + ગુરમુખી અંકો + ચાઇનીઝ દશાંશ સંખ્યા + સરળીકૃત ચાઇનીઝ સંખ્યાઓ + સરળીકૃત ચાઇનીઝ નાણાંકીય સંખ્યાઓ + પરંપરાગત ચાઇનીઝ સંખ્યાઓ + પરંપરાગત ચાઇનીઝ નાણાંકીય સંખ્યાઓ + હિબ્રુ સંખ્યાઓ + જાપાનીઝ સંખ્યાઓ + જાપાનીઝ નાણાકીય સંખ્યાઓ + ખેમેર અંકો + કન્નડા અંકો + લાઓ અંકો + પશ્ચિમી અંકો + મલયાલમ અંકો + મોંગોલિયન અંકો + મ્યાન્માર અંકો + મૂળ અંકો + ઓરિયા અંકો + રોમન સંખ્યાઓ + રોમન નાના અક્ષરની સંખ્યા + પારંપરિક તમિલ સંખ્યાઓ + તમિલ અંકો + તેલુગુ અંકો + થાઇ અંકો + તિબેટિયન અંકો + પરંપરાગત અંકો + વાઇ અંકો BGN @@ -1095,7 +1112,7 @@ For terms of use, see http://www.unicode.org/copyright.html ભાષા: {0} - સ્ક્રીપ્ટ: {0} + સ્ક્રિપ્ટ: {0} પ્રદેશ: {0} @@ -1166,6 +1183,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d G y MMM G y @@ -1245,7 +1263,7 @@ For terms of use, see http://www.unicode.org/copyright.html E, d/M–E, d/M - E,d/M–E,d/M + E, d/M – E, d/M MMM–MMM @@ -1255,34 +1273,34 @@ For terms of use, see http://www.unicode.org/copyright.html d MMM – d MMM - E, d MMM–E, d MMM + E, d MMM – E, d MMM E, d MMM – E, d MMM G y–y - M/y – M/y - M/y – M/y + GGGG M/y – M/y + GGGG M/y – M/y - d/M/y–d/M/y - d/M/y–d/M/y - d/M/y–d/M/y + GGGG d/M/y–d/M/y + GGGG d/M/y–d/M/y + GGGG d/M/y–d/M/y - E,d/M/y– E,d/M/y - E,d/M/y– E,d/M/y - E,d/M/y–E,d/M/y + GGGG E,d/M/y– E,d/M/y + GGGG E,d/M/y– E,d/M/y + GGGG E,d/M/y–E,d/M/y - MMM–MMM y - MMM y – MMM y + G MMM–MMM y + G y MMM – y MMM - d–d MMM,y - d MMM–d MMM y - d MMM,y–d MMM,y + G d–d MMM,y + G d MMM–d MMM y + G d MMM,y–d MMM,y E, d MMM–E, d MMM G y @@ -1291,7 +1309,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMMM–MMMM G y - MMMM y – MMMM y + G MMMM y – MMMM y @@ -1307,7 +1325,7 @@ For terms of use, see http://www.unicode.org/copyright.html મે જૂન જુલાઈ - ઑગ + ઑગસ્ટ સપ્ટે ઑક્ટો નવે @@ -1509,15 +1527,61 @@ For terms of use, see http://www.unicode.org/copyright.html - + + મધ્યરાત્રિ AM - મધ્યાહ્ન PM + સવાર + બપોર + સાંજ + રાત્રિ + + + મ.રાત્રિ + AM + PM + + + સાં + રા + મધ્યરાત્રિ AM - મધ્યાહ્ન PM + સવાર + બપોર + સાંજ + રાત્રિ + + + + + મધ્યરાત્રિ + AM + PM + સવાર + બપોર + સાંજ + રાત્રિ + + + મધ્યરાત્રિ + AM + PM + સવાર + બપોર + સાંજ + રાત્રિ + + + મધ્યરાત્રિ + AM + PM + સવાર + બપોર + સાંજ + રાત્રિ @@ -1529,10 +1593,10 @@ For terms of use, see http://www.unicode.org/copyright.html સામાન્ય યુગ - ઈસુના જન્મ પહેલા - સામાન્ય યુગ પહેલા - ઇસવીસન - સામાન્ય યુગ + ઈ.સ.પૂર્વે + સા.યુ.પ. + ઈ.સ. + સા.યુ. ઇ સ પુ @@ -1622,6 +1686,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d/M E, d/M @@ -1743,6 +1811,18 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + d/M + E, d/M + dd-MM + d MMM + E, d MMM + d MMMM + + + @@ -1763,7 +1843,10 @@ For terms of use, see http://www.unicode.org/copyright.html - વર્ષ + વ. + ગયા વર્ષે + આ વર્ષે + આવતા વર્ષે {0} વર્ષમાં {0} વર્ષમાં @@ -1774,29 +1857,32 @@ For terms of use, see http://www.unicode.org/copyright.html - વર્ષ + વ. + ગયા વર્ષે + આ વર્ષે + આવતા વર્ષે - +{0} વર્ષ + {0} વર્ષમાં +{0} વર્ષ - -{0} વર્ષ + {0} વર્ષ પહેલા -{0} વર્ષ - ક્વાર્ટર + ત્રિમાસિક - {0} ત્રિમાસમાં - {0} ત્રિમાસમાં + {0} ત્રિમાસિકમાં + {0} ત્રિમાસિકમાં - {0} ત્રિમાસ પહેલાં - {0} ત્રિમાસ પહેલાં + {0} ત્રિમાસિક પહેલા + {0} ત્રિમાસિક પહેલા - ક્વા. + ત્રિમાસ. {0} ત્રિમાસમાં {0} ત્રિમાસમાં @@ -1807,7 +1893,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ક્વા. + ત્રિમાસ. +{0} ત્રિમાસ +{0} ત્રિમાસ @@ -1833,6 +1919,9 @@ For terms of use, see http://www.unicode.org/copyright.html મ. + ગયા મહિને + આ મહિને + આવતા મહિને {0} મહિનામાં {0} મહિનામાં @@ -1844,6 +1933,9 @@ For terms of use, see http://www.unicode.org/copyright.html મ. + ગયા મહિને + આ મહિને + આવતા મહિને +{0} મહિના +{0} મહિના @@ -1869,6 +1961,9 @@ For terms of use, see http://www.unicode.org/copyright.html અઠ. + ગયા અઠવાડિયે + આ અઠવાડિયે + આવતા અઠવાડિયે {0} અઠવાડિયામાં {0} અઠવાડિયામાં @@ -1880,6 +1975,9 @@ For terms of use, see http://www.unicode.org/copyright.html અઠ. + ગયા અઠવાડિયે + આ અઠવાડિયે + આવતા અઠવાડિયે +{0} અઠવાડિયા +{0} અઠવાડિયા @@ -1901,29 +1999,39 @@ For terms of use, see http://www.unicode.org/copyright.html {0} દિવસમાં - {0} દિવસ પહેલા + {0} દિવસ પહેલાં {0} દિવસ પહેલા દિ. + ગયા પરમદિવસે + ગઈકાલે + આજે + આવતીકાલે + પરમદિવસે {0} દિવસમાં {0} દિવસમાં - {0} દિવસ પહેલા + {0} દિવસ પહેલાં {0} દિવસ પહેલા - દિ. + દિવસ + ગયા પરમદિવસે + ગઈકાલે + આજે + આવતીકાલે + પરમદિવસે +{0} દિવસ +{0} દિવસ - -{0} દિવસ + {0} દિવસ પહેલાં -{0} દિવસ @@ -2061,7 +2169,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + ક. {0} કલાકમાં {0} કલાકમાં @@ -2094,7 +2202,7 @@ For terms of use, see http://www.unicode.org/copyright.html - મિ + મિ. {0} મિનિટમાં {0} મિનિટમાં @@ -2117,7 +2225,7 @@ For terms of use, see http://www.unicode.org/copyright.html - સેકન્ડ + સે. {0} સેકંડમાં {0} સેકંડમાં @@ -2128,7 +2236,7 @@ For terms of use, see http://www.unicode.org/copyright.html - સે + સે. {0} સેકંડમાં {0} સેકંડમાં @@ -2719,7 +2827,7 @@ For terms of use, see http://www.unicode.org/copyright.html - આઇરિશ ગ્રીષ્મ સમય + આઈરિશ માનક સમય ડબલિન @@ -3017,6 +3125,9 @@ For terms of use, see http://www.unicode.org/copyright.html પોર્ટ મોર્સ્બી + + બૌગેઈનવિલે + મનિલા @@ -3101,6 +3212,9 @@ For terms of use, see http://www.unicode.org/copyright.html ઇર્કુત્સ્ક + + ચિતા + યકુત્સક @@ -3119,6 +3233,9 @@ For terms of use, see http://www.unicode.org/copyright.html મેગાડન + + સ્રેડ્નેકોલીમ્સ્ક + કામચટ્કા @@ -3456,7 +3573,7 @@ For terms of use, see http://www.unicode.org/copyright.html ઉત્તર અમેરિકન મધ્ય સમય - ઉત્તર અમેરિકન મધ્ય પ્રમાણભૂત સમય + ઉત્તર અમેરિકન કેન્દ્રિય પ્રમાણભૂત સમય ઉત્તર અમેરિકન મધ્ય દિવસ સમય @@ -3490,8 +3607,8 @@ For terms of use, see http://www.unicode.org/copyright.html - અપિયા સમય - અપિયા માનક સમય + એપિયા સમય + એપિયા પ્રમાણભૂત સમય અપિયા દિવસ સમય @@ -3729,7 +3846,7 @@ For terms of use, see http://www.unicode.org/copyright.html - વધુ પૂર્વીય યુરોપીયન સમય + આગળનું-પૂર્વીય યુરોપીયન સમય @@ -4361,6 +4478,9 @@ For terms of use, see http://www.unicode.org/copyright.html gujr 1 + + ٫ + . , @@ -4461,6 +4581,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##,##0.00;(¤#,##,##0.00) + + + ¤0 હજાર + ¤0 હજાર + ¤00 હજાર + ¤00 હજાર + ¤0 લાખ + ¤0 લાખ + ¤00 લાખ + ¤00 લાખ + ¤0 કરોડ + ¤0 કરોડ + ¤00 કરોડ + ¤00 કરોડ + ¤0 અબજ + ¤0 અબજ + ¤00 અબજ + ¤00 અબજ + ¤0 નિખર્વ + ¤0 નિખર્વ + ¤0 મહાપદ્મ + ¤0 મહાપદ્મ + ¤0 શંકુ + ¤0 શંકુ + ¤0 જલધિ + ¤0 જલધિ + + {0} {1} {0} {1} @@ -4500,6 +4648,7 @@ For terms of use, see http://www.unicode.org/copyright.html અંગોલિયન ક્વાન્ઝા અંગોલિયન ક્વાન્ઝા AOA + Kz અર્જેન્ટીના પેસો @@ -4532,6 +4681,7 @@ For terms of use, see http://www.unicode.org/copyright.html બોસ્નિયા અને હર્ઝેગોવિના રૂપાંતર યોગ્ય માર્ક બોસ્નિયા અને હર્ઝેગોવિના રૂપાંતર યોગ્ય માર્ક BAM + KM બાર્બાડિયન ડોલર @@ -4584,6 +4734,7 @@ For terms of use, see http://www.unicode.org/copyright.html બોલિવિયન બોલિવિયાનો બોલિવિયન બોલિવિયાનો BOB + Bs બ્રાઝિલીયન રિઆલ @@ -4610,6 +4761,7 @@ For terms of use, see http://www.unicode.org/copyright.html બોત્સવાનન પુલા બોત્સવાનન પુલા BWP + P બેલારુશિયન રૂબલ @@ -4677,6 +4829,7 @@ For terms of use, see http://www.unicode.org/copyright.html ક્યુબન રૂપાંતર યોગ્ય પેસો ક્યુબન રૂપાંતર યોગ્ય પેસો CUC + $ ક્યુબન પેસો @@ -4696,6 +4849,7 @@ For terms of use, see http://www.unicode.org/copyright.html ચેક રીપબ્લિક કોરુના ચેક રીપબ્લિક કોરુના CZK + જિબુટિયન ફ્રેંક @@ -4708,6 +4862,7 @@ For terms of use, see http://www.unicode.org/copyright.html ડેનિશ ક્રોન ડેનિશ ક્રોન DKK + kr ડોમિનિકન પેસો @@ -4727,6 +4882,7 @@ For terms of use, see http://www.unicode.org/copyright.html ઇજિપ્તિયન પાઉન્ડ ઇજિપ્તિયન પાઉન્ડ EGP + એરિટ્રેયન નક્ફા @@ -4759,11 +4915,12 @@ For terms of use, see http://www.unicode.org/copyright.html ફૉકલેન્ડ આઇલેંડ્સ પાઉન્ડ ફૉકલેન્ડ આઇલેંડ્સ પાઉન્ડ FKP + £ - બ્રિટિશ પાઉન્ડ સ્ટર્લિંગ - બ્રિટિશ પાઉન્ડ સ્ટર્લિંગ - બ્રિટિશ પાઉન્ડ સ્ટર્લિંગ + બ્રિટિશ પાઉન્ડ + બ્રિટિશ પાઉન્ડ + બ્રિટિશ પાઉન્ડ્સ £ £ @@ -4772,6 +4929,7 @@ For terms of use, see http://www.unicode.org/copyright.html જ્યોર્જિઅન લારી જ્યોર્જિઅન લારી GEL + ઘાનાઇયન સેડી @@ -4797,12 +4955,14 @@ For terms of use, see http://www.unicode.org/copyright.html ગિનીયન ફ્રેંક ગિનીયન ફ્રેંક GNF + FG ગ્વાટેમાલા કુઇટ્ઝલ ગ્વાટેમાલા કુઇટ્ઝલ ગ્વાટેમાલા કુઇટ્ઝલ GTQ + Q ગયાનિઝ ડોલર @@ -4823,12 +4983,14 @@ For terms of use, see http://www.unicode.org/copyright.html હોન્ડ્યુરન લેમ્પિરા હોન્ડ્યુરન લેમ્પિરા HNL + L ક્રોએશિયન ક્યુના ક્રોએશિયન ક્યુના ક્રોએશિયન ક્યુના HRK + kn હાઇટિઇન ગોર્ડ @@ -4841,12 +5003,14 @@ For terms of use, see http://www.unicode.org/copyright.html હંગેરીયન ફોરિન્ત હંગેરીયન ફોરિન્ત HUF + Ft ઇન્ડોનેશિયન રૂપિયા ઇન્ડોનેશિયન રૂપિયા ઇન્ડોનેશિયન રૂપિયા IDR + Rp ઇઝરાયેલી ન્યુ શેકલ @@ -4879,6 +5043,7 @@ For terms of use, see http://www.unicode.org/copyright.html આઇસલેન્ડિક ક્રોના આઇસલેન્ડિક ક્રોના ISK + kr જમૈકિયન ડોલર @@ -4924,12 +5089,14 @@ For terms of use, see http://www.unicode.org/copyright.html કોમોરિઅન ફ્રેંક કોમોરિઅન ફ્રેંક KMF + CF ઉત્તર કોરિયન વન ઉત્તર કોરિયન વન ઉત્તર કોરિયન વન KPW + દક્ષિણ કોરિયન વન @@ -4970,12 +5137,14 @@ For terms of use, see http://www.unicode.org/copyright.html લેબેનિઝ પાઉન્ડ લેબેનિઝ પાઉન્ડ LBP + શ્રી લંકન રૂપી શ્રી લંકન રૂપી શ્રી લંકન રૂપી LKR + Rs લિબેરિયન ડોલર @@ -5022,6 +5191,7 @@ For terms of use, see http://www.unicode.org/copyright.html માલાગેસી અરીઆરી માલાગેસી અરીઆરી MGA + Ar મેસેડોનિયન દિનાર @@ -5034,6 +5204,7 @@ For terms of use, see http://www.unicode.org/copyright.html મ્યાંમાર ક્યાત મ્યાંમાર ક્યાત MMK + K મોંગોલિયન ટગરિક @@ -5059,6 +5230,7 @@ For terms of use, see http://www.unicode.org/copyright.html મોરેશીઅન રૂપી મોરેશીઅન રૂપી MUR + રૂ. માલ્દિવિયન રુફિયા @@ -5084,6 +5256,7 @@ For terms of use, see http://www.unicode.org/copyright.html મલેશિયન રિંગ્ગેટ મલેશિયન રિંગ્ગેટ MYR + RM મોઝામ્બિકન મેટિકલ @@ -5110,18 +5283,21 @@ For terms of use, see http://www.unicode.org/copyright.html નિકારાગુઅન કોર્ડોબા નિકારાગુઅન કોર્ડોબા NIO + C$ નૉર્વેજિયન ક્રોન નૉર્વેજિયન ક્રોન નૉર્વેજિયન ક્રોન NOK + kr નેપાલિઝ રૂપી નેપાલિઝ રૂપી નેપાલિઝ રૂપી NPR + Rs ન્યૂઝિલેંડ ડૉલર @@ -5166,12 +5342,14 @@ For terms of use, see http://www.unicode.org/copyright.html પાકિસ્તાની રૂપી પાકિસ્તાની રૂપી PKR + Rs પોલિસ ઝ્લોટી પોલિસ ઝ્લોટી પોલિસ ઝ્લોટી PLN + પરાગ્વેયન ગુઆરાની @@ -5199,16 +5377,18 @@ For terms of use, see http://www.unicode.org/copyright.html RSD - રશિયન રબલ - રશિયન રબલ - રશિયન રબલ + રશિયન રૂબલ + રશિયન રૂબલ + રશિયન રૂબલ્સ RUB + રવાંડન ફ્રેંક રવાંડન ફ્રેંક રવાંડન ફ્રેંક RWF + RF સાઉદી રિયાલ @@ -5240,6 +5420,7 @@ For terms of use, see http://www.unicode.org/copyright.html સ્વીડિશ ક્રોના સ્વીડિશ ક્રોના SEK + kr સિંગાપુર ડૉલર @@ -5253,6 +5434,7 @@ For terms of use, see http://www.unicode.org/copyright.html સેંટ હેલેના પાઉન્ડ સેંટ હેલેના પાઉન્ડ SHP + £ સિએરા લિઓનિઅન લિઓન @@ -5285,12 +5467,14 @@ For terms of use, see http://www.unicode.org/copyright.html સાઓ ટૉમ એન્ડ પ્રિંસાઇપ ડોબ્રા સાઓ ટૉમ એન્ડ પ્રિંસાઇપ ડોબ્રા STD + Db સાઇરિયન પાઉન્ડ સાઇરિયન પાઉન્ડ સાઇરિયન પાઉન્ડ SYP + £ સ્વાઝી લિલાન્ગેની @@ -5303,6 +5487,7 @@ For terms of use, see http://www.unicode.org/copyright.html થાઇ બાહ્ત થાઇ બાહ્ત ฿ + ฿ તાજિકિસ્તાની સોમોની @@ -5327,6 +5512,7 @@ For terms of use, see http://www.unicode.org/copyright.html ટોંગન પ’અંગા ટોંગન પ’અંગા TOP + T$ તુર્કિશ લિરા @@ -5334,6 +5520,7 @@ For terms of use, see http://www.unicode.org/copyright.html તુર્કિશ લિરા TRY + TL ત્રિનિદાદ અને ટોબેગો ડોલર @@ -5393,6 +5580,7 @@ For terms of use, see http://www.unicode.org/copyright.html વેનેઝુએલન બોલિવર વેનેઝુએલન બોલિવર VEF + Bs વિયેતનામીસ ડોંગ @@ -5414,9 +5602,9 @@ For terms of use, see http://www.unicode.org/copyright.html WST - [CFA] ફ્રેંક [BEAC] - [CFA] ફ્રેંક [BEAC] - [CFA] ફ્રેંક [BEAC] + મધ્ય આફ્રિકન [CFA] ફ્રેંક + મધ્ય આફ્રિકન [CFA] ફ્રેંક + મધ્ય આફ્રિકન [CFA] ફ્રેંક્સ FCFA @@ -5424,11 +5612,12 @@ For terms of use, see http://www.unicode.org/copyright.html ઇસ્ટ કેરિબિયન ડોલર ઇસ્ટ કેરિબિયન ડોલર EC$ + $ - [CFA] ફ્રેંક [BCEAO] - [CFA] ફ્રેંક [BCEAO] - [CFA] ફ્રેંક [BCEAO] + પશ્ચિમી આફ્રિકન [CFA] ફ્રેંક + પશ્ચિમી આફ્રિકન [CFA] ફ્રેંક + પશ્ચિમી આફ્રિકન [CFA] ફ્રેંક્સ CFA @@ -5453,6 +5642,7 @@ For terms of use, see http://www.unicode.org/copyright.html દક્ષિણ આફ્રિકી રેંડ દક્ષિણ આફ્રિકી રેંડ ZAR + R ઝામ્બિયન ક્વાચા (1968–2012) @@ -5462,6 +5652,7 @@ For terms of use, see http://www.unicode.org/copyright.html ઝામ્બિયન ક્વાચા ઝામ્બિયન ક્વાચા ZMW + ZK @@ -5484,6 +5675,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} મીટર પ્રતિ સેકન્ડ² {0} મીટર પ્રતિ સેકન્ડ² + + ક્રાંતિ + {0} ક્રાંતિ + {0} ક્રાંતિ + + + સમત્રિજ્યાકોણ + {0} સમત્રિજ્યાકોણ + {0} સમત્રિજ્યાકોણ + + + અંશ + {0} અંશ + {0} અંશ + ચાપમિનિટ {0} ચાપમિનિટ @@ -5494,30 +5700,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ચાપસેકન્ડ {0} ચાપસેકન્ડ - - અંશ - {0} અંશ - {0} અંશ - - - સમત્રિજ્યાકોણ - {0} સમત્રિજ્યાકોણ - {0} સમત્રિજ્યાકોણ - - - એકર - {0} એકર - {0} એકર + + ચોરસ કિલોમીટર + {0} ચોરસ કિલોમીટર + {0} ચોરસ કિલોમીટર હેક્ટર {0} હેક્ટર {0} હેક્ટર + + ચોરસ મીટર + {0} ચોરસ મીટર + {0} ચોરસ મીટર + {0} પ્રતિ ચોરસ મીટર + ચોરસ સેન્ટીમીટર {0} ચોરસ સેન્ટીમીટર {0} ચોરસ સેન્ટીમીટર + {0} પ્રતિ ચોરસ સેન્ટિમીટર + + + ચોરસ માઇલ + {0} ચોરસ માઇલ + {0} ચોરસ માઇલ + + + એકર + {0} એકર + {0} એકર + + + ચોરસ વાર + {0} ચોરસ વાર + {0} ચોરસ વાર ચોરસ ફૂટ @@ -5528,91 +5746,106 @@ For terms of use, see http://www.unicode.org/copyright.html ચોરસ ઇંચ {0} ચોરસ ઇંચ {0} ચોરસ ઇંચ + {0} પ્રતિ ચોરસ ઈંચ - - ચોરસ કિલોમીટર - {0} ચોરસ કિલોમીટર - {0} ચોરસ કિલોમીટર - - - ચોરસ મીટર - {0} ચોરસ મીટર - {0} ચોરસ મીટર - - - ચોરસ માઇલ - {0} ચોરસ માઇલ - {0} ચોરસ માઇલ - - - ચોરસ વાર - {0} ચોરસ વાર - {0} ચોરસ વાર + + કૅરેટ + {0} કૅરેટ + {0} કૅરેટ લીટર પ્રતિ કિલોમીટર {0} લીટર પ્રતિ કિલોમીટર {0} લીટર પ્રતિ કિલોમીટર + + લિટર પ્રતિ 100 કિલોમીટર + {0} લિટર પ્રતિ 100 કિલોમીટર + {0} લિટર પ્રતિ 100 કિલોમીટર + માઇલ પ્રતિ ગૅલન {0} માઇલ પ્રતિ ગૅલન {0} માઇલ પ્રતિ ગૅલન - - બિટ - {0} બિટ - {0} બિટ - - - બાઇટ - {0} બાઇટ - {0} બાઇટ - - - ગીગાબિટ - {0} ગીગાબિટ - {0} ગીગાબિટ - - - ગીગાબાઇટ - {0} ગીગાબાઇટ - {0} ગીગાબાઇટ - - - કિલોબિટ - {0} કિલોબિટ - {0} કિલોબિટ - - - કિલોબાઇટ - {0} કિલોબાઇટ - {0} કિલોબાઇટ - - - મેગાબિટ - {0} મેગાબિટ - {0} મેગાબિટ - - - મેગાબાઇટ - {0} મેગાબાઇટ - {0} મેગાબાઇટ - - - ટેરાબિટ - {0} ટેરાબિટ - {0} ટેરાબિટ - ટેરાબાઇટ {0} ટેરાબાઇટ {0} ટેરાબાઇટ + + ટેરાબિટ + {0} ટેરાબિટ + {0} ટેરાબિટ + + + ગીગાબાઇટ + {0} ગીગાબાઇટ + {0} ગીગાબાઇટ + + + ગીગાબિટ + {0} ગીગાબિટ + {0} ગીગાબિટ + + + મેગાબાઇટ + {0} મેગાબાઇટ + {0} મેગાબાઇટ + + + મેગાબિટ + {0} મેગાબિટ + {0} મેગાબિટ + + + કિલોબાઇટ + {0} કિલોબાઇટ + {0} કિલોબાઇટ + + + કિલોબિટ + {0} કિલોબિટ + {0} કિલોબિટ + + + બાઇટ + {0} બાઇટ + {0} બાઇટ + + + બિટ + {0} બિટ + {0} બિટ + + + સદીઓ + {0} સદી + {0} સદીઓ + + + વર્ષ + {0} વર્ષ + {0} વર્ષ + {0} પ્રતિ વર્ષ + + + મહિના + {0} મહિનો + {0} મહિના + {0} પ્રતિ મહિનો + + + અઠવાડિયા + {0} અઠવાડિયું + {0} અઠવાડિયા + {0} પ્રતિ અઠવાડિયું + દિવસ {0} દિવસ {0} દિવસ + {0} પ્રતિ દિવસ કલાક @@ -5620,30 +5853,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} કલાક {0} પ્રતિ કલાક - - માઇક્રોસેકંડ - {0} માઇક્રોસેકંડ - {0} માઇક્રોસેકંડ - - - મિલિસેકન્ડ - {0} મિલિસેકન્ડ - {0} મિલિસેકન્ડ - મિનિટ {0} મિનિટ {0} મિનિટ - - - મહિના - {0} મહિનો - {0} મહિના - - - નેનોસેકંડ - {0} નેનોસેકંડ - {0} નેનોસેકંડ + {0} પ્રતિ મિનિટ સેકંડ @@ -5651,15 +5865,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} સેકંડ {0} પ્રતિ સેકંડ - - અઠવાડિયા - {0} અઠવાડિયું - {0} અઠવાડિયા + + મિલિસેકન્ડ + {0} મિલિસેકન્ડ + {0} મિલિસેકન્ડ - - વર્ષ - {0} વર્ષ - {0} વર્ષ + + માઇક્રોસેકંડ + {0} માઇક્રોસેકંડ + {0} માઇક્રોસેકંડ + + + નેનોસેકંડ + {0} નેનોસેકંડ + {0} નેનોસેકંડ એમ્પીયર @@ -5681,6 +5900,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} વૉલ્ટ્ {0} વૉલ્ટ્ + + કિલોકેલરી + {0} કિલોકેલરી + {0} કિલોકેલરી + કેલરી {0} કેલરી @@ -5691,21 +5915,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} કેલરી {0} કેલરી - - જૂલ - {0} જૂલ - {0} જૂલ - - - કિલોકેલરી - {0} કિલોકેલરી - {0} કિલોકેલરી - કિલોજૂલ {0} કિલોજૂલ {0} કિલોજૂલ + + જૂલ + {0} જૂલ + {0} જૂલ + કિલોવૉટ-કલાક {0} કિલોવૉટ કલાક @@ -5716,201 +5935,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ગીગાહર્ટ્ઝ {0} ગીગાહર્ટ્ઝ - - હર્ટ્ઝ - {0} હર્ટ્ઝ - {0} હર્ટ્ઝ + + મેગાહર્ટ્ઝ + {0} મેગાહર્ટ્ઝ + {0} મેગાહર્ટ્ઝ કિલોહર્ટ્ઝ {0} કિલોહર્ટ્ઝ {0} કિલોહર્ટ્ઝ - - મેગાહર્ટ્ઝ - {0} મેગાહર્ટ્ઝ - {0} મેગાહર્ટ્ઝ + + હર્ટ્ઝ + {0} હર્ટ્ઝ + {0} હર્ટ્ઝ - - ખગોળીય યુનિટ - {0} ખગોળીય યુનિટ - {0} ખગોળીય યુનિટ + + કિલોમીટર + {0} કિલોમીટર + {0} કિલોમીટર + {0} પ્રતિ કિલોમીટર - - સેન્ટિમીટર - {0} સેન્ટિમીટર - {0} સેન્ટિમીટર + + મીટર + {0} મીટર + {0} મીટર + {0} પ્રતિ મીટર ડેસિમીટર {0} ડેસિમીટર {0} ડેસિમીટર - - ફૂટ - {0} ફૂટ - {0} ફૂટ - - - ઇંચ - {0} ઇંચ - {0} ઇંચ - - - કિલોમીટર - {0} કિલોમીટર - {0} કિલોમીટર - - - પ્રકાશ વર્ષ - {0} પ્રકાશ વર્ષ - {0} પ્રકાશ વર્ષ - - - મીટર - {0} મીટર - {0} મીટર - - - માઇક્રોમીટર - {0} માઇક્રોમીટર - {0} માઇક્રોમીટર - - - માઇલ - {0} માઇલ - {0} માઇલ + + સેન્ટિમીટર + {0} સેન્ટિમીટર + {0} સેન્ટિમીટર + {0} પ્રતિ સેન્ટિમીટર મિલિમીટર {0} મિલિમીટર {0} મિલિમીટર + + માઇક્રોમીટર + {0} માઇક્રોમીટર + {0} માઇક્રોમીટર + નેનોમીટર {0} નેનોમીટર {0} નેનોમીટર - - નૉટિકલ માઇલ - {0} નૉટિકલ માઇલ - {0} નૉટિકલ માઇલ - - - પરસેક - {0} પરસેક - {0} પરસેક - પિસૉમીટર {0} પિસૉમીટર {0} પિસૉમીટર + + માઇલ + {0} માઇલ + {0} માઇલ + વાર {0} વાર {0} વાર + + ફૂટ + {0} ફૂટ + {0} ફૂટ + {0} પ્રતિ ફૂટ + + + ઇંચ + {0} ઇંચ + {0} ઇંચ + {0} પ્રતિ ઈંચ + + + પરસેક + {0} પરસેક + {0} પરસેક + + + પ્રકાશ વર્ષ + {0} પ્રકાશ વર્ષ + {0} પ્રકાશ વર્ષ + + + ખગોળીય યુનિટ + {0} ખગોળીય યુનિટ + {0} ખગોળીય યુનિટ + + + નૉટિકલ માઇલ + {0} નૉટિકલ માઇલ + {0} નૉટિકલ માઇલ + + + માઈલ સ્કૅન્ડિનેવિઅન + {0} માઈલ-સ્કૅન્ડિનેવિઅન + {0} માઈલ-સ્કૅન્ડિનેવિઅન + લક્સ {0} લક્સ {0} લક્સ - - કેરેટ - {0} કેરેટ - {0} કેરેટ - - - ગ્રામ - {0} ગ્રામ - {0} ગ્રામ - - - કિલોગ્રામ - {0} કિલોગ્રામ - {0} કિલોગ્રામ - મેટ્રિક ટન {0} મેટ્રિક ટન {0} મેટ્રિક ટન - - માઇક્રોગ્રામ - {0} માઇક્રોગ્રામ - {0} માઇક્રોગ્રામ + + કિલોગ્રામ + {0} કિલોગ્રામ + {0} કિલોગ્રામ + {0} પ્રતિ કિલોગ્રામ + + + ગ્રામ + {0} ગ્રામ + {0} ગ્રામ + {0} પ્રતિ ગ્રામ મિલિગ્રામ {0} મિલિગ્રામ {0} મિલિગ્રામ - - ઔંસ - {0} ઔંસ - {0} ઔંસ - - - ટ્રોય ઔંસ - {0} ટ્રોય ઔંસ - {0} ટ્રોય ઔંસ - - - પાઉન્ડ - {0} પાઉન્ડ - {0} પાઉન્ડ + + માઇક્રોગ્રામ + {0} માઇક્રોગ્રામ + {0} માઇક્રોગ્રામ ટન {0} ટન {0} ટન + + પાઉન્ડ + {0} પાઉન્ડ + {0} પાઉન્ડ + {0} પ્રતિ પાઉન્ડ + + + ઔંસ + {0} ઔંસ + {0} ઔંસ + {0} પ્રતિ ઔંસ + + + ટ્રોય ઔંસ + {0} ટ્રોય ઔંસ + {0} ટ્રોય ઔંસ + + + કેરેટ + {0} કેરેટ + {0} કેરેટ + ગીગાવૉટ {0} ગીગાવૉટ {0} ગીગાવૉટ - - હોર્સપાવર - {0} હોર્સપાવર - {0} હોર્સપાવર - - - કિલોવૉટ - {0} કિલોવૉટ - {0} કિલોવૉટ - મેગાવૉટ {0} મેગાવૉટ {0} મેગાવૉટ - - મિલિવૉટ - {0} મિલિવૉટ - {0} મિલિવૉટ + + કિલોવૉટ + {0} કિલોવૉટ + {0} કિલોવૉટ વૉટ {0} વૉટ {0} વૉટ + + મિલિવૉટ + {0} મિલિવૉટ + {0} મિલિવૉટ + + + હોર્સપાવર + {0} હોર્સપાવર + {0} હોર્સપાવર + હેક્ટૉપાસ્કલ {0} હેક્ટૉપાસ્કલ {0} હેક્ટૉપાસ્કલ - - પારાના ઇંચ - {0} પારાના ઇંચ - {0} પારાના ઇંચ - - - મિલિબાર - {0} મિલિબાર - {0} મિલિબાર - પારાનું મિલિમીટર {0} પારાનું મિલિમીટર @@ -5921,10 +6144,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} પાઉન્ડ પ્રતિ વર્ગ ઇંચ {0} પાઉન્ડ પ્રતિ વર્ગ ઇંચ - - કૅરેટ - {0} કૅરેટ - {0} કૅરેટ + + પારાના ઇંચ + {0} પારાના ઇંચ + {0} પારાના ઇંચ + + + મિલિબાર + {0} મિલિબાર + {0} મિલિબાર કિલોમીટર પ્રતિ કલાક @@ -5941,6 +6169,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} માઇલ પ્રતિ કલાક {0} માઇલ પ્રતિ કલાક + + નોટ + {0} નોટ + {0} નોટ + + + ° + {0}° + {0}° + ડિગ્રી સેલ્સિયસ {0} ડિગ્રી સેલ્સિયસ @@ -5956,31 +6194,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} કેલ્વિન {0} કેલ્વિન - - એકર-ફૂટ - {0} એકર-ફૂટ - {0} એકર-ફૂટ - - - સેન્ટિલીટર - {0} સેન્ટિલીટર - {0} સેન્ટિલીટર - - - ઘન સેન્ટિમીટર - {0} ઘન સેન્ટિમીટર - {0} ઘન સેન્ટિમીટર - - - ઘન ફૂટ - {0} ઘન ફૂટ - {0} ઘન ફૂટ - - - ઘન ઇંચ - {0} ઘન ઇંચ - {0} ઘન ઇંચ - ઘન કિલોમીટર {0} ઘન કિલોમીટર @@ -5990,6 +6203,13 @@ For terms of use, see http://www.unicode.org/copyright.html ઘન મીટર {0} ઘન મીટર {0} ઘન મીટર + {0} પ્રતિ ઘન મીટર + + + ઘન સેન્ટિમીટર + {0} ઘન સેન્ટિમીટર + {0} ઘન સેન્ટિમીટર + {0} પ્રતિ ઘન સેન્ટિમીટર ઘન માઇલ @@ -6001,25 +6221,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ઘન વાર {0} ઘન વાર - - કપ - {0} કપ - {0} કપ + + ઘન ફૂટ + {0} ઘન ફૂટ + {0} ઘન ફૂટ - - ડેસિલીટર - {0} ડેસિલીટર - {0} ડેસિલીટર + + ઘન ઇંચ + {0} ઘન ઇંચ + {0} ઘન ઇંચ - - પ્રવાહી ઔંસ - {0} પ્રવાહી ઔંસ - {0} પ્રવાહી ઔંસ - - - ગૅલન - {0} ગૅલન - {0} ગૅલન + + મેગાલીટર + {0} મેગાલીટર + {0} મેગાલીટર હેક્ટોલીટર @@ -6030,27 +6245,64 @@ For terms of use, see http://www.unicode.org/copyright.html લિટર {0} લિટર {0} લિટર + {0} પ્રતિ લિટર - - મેગાલીટર - {0} મેગાલીટર - {0} મેગાલીટર + + ડેસિલીટર + {0} ડેસિલીટર + {0} ડેસિલીટર + + + સેન્ટિલીટર + {0} સેન્ટિલીટર + {0} સેન્ટિલીટર મિલિલીટર {0} મિલિલીટર {0} મિલિલીટર - - પિન્ટ - {0} પિન્ટ - {0} પિન્ટ + + મેટ્રિક પિન્ટ + {0} મેટ્રિક પિન્ટ + {0} મેટ્રિક પિન્ટ + + + મેટ્રિક કપ + {0} મેટ્રિક કપ + {0} મેટ્રિક કપ + + + એકર-ફૂટ + {0} એકર-ફૂટ + {0} એકર-ફૂટ + + + ગૅલન + {0} ગૅલન + {0} ગૅલન + {0} પ્રતિ ગૅલન ક્વાર્ટ {0} ક્વાર્ટ {0} ક્વાર્ટ + + પિન્ટ + {0} પિન્ટ + {0} પિન્ટ + + + કપ + {0} કપ + {0} કપ + + + પ્રવાહી ઔંસ + {0} પ્રવાહી ઔંસ + {0} પ્રવાહી ઔંસ + ટેબલસ્પૂન {0} ટેબલસ્પૂન @@ -6061,6 +6313,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ટીસ્પૂન {0} ટીસ્પૂન + + {0}પૂર્વ + {0}ઉત્તર + {0}દક્ષિણ + {0}પશ્ચિમ + @@ -6076,6 +6334,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + ક્રાંતિ + {0} ક્રાંતિ + {0} ક્રાંતિ + + + સમત્રિજ્યાકોણ + {0} rad + {0} rad + + + અંશ + {0} અંશ + {0} અંશ + ચાપમિનિટ {0} ચાપમિનિટ @@ -6086,30 +6359,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ચાપસેકન્ડ {0} ચાપસેકન્ડ - - અંશ - {0} અંશ - {0} અંશ - - - સમત્રિજ્યાકોણ - {0} rad - {0} rad - - - એકર - {0} એકર - {0} એકર + + ચોરસ કિમી + {0} ચોરસ કિમી + {0} ચોરસ કિમી હેક્ટર {0} હેક્ટર {0} હેક્ટર + + ચોરસ મીટર + {0} ચોરસ મીટર + {0} ચોરસ મીટર + {0} પ્રતિ ચો. મીટર + ચોરસ સેમી {0} ચોરસ સેમી {0} ચોરસ સેમી + {0} પ્રતિ ચો. સેમી + + + ચોરસ માઇલ + {0} ચોરસ માઇલ + {0} ચોરસ માઇલ + + + એકર + {0} એકર + {0} એકર + + + ચોરસ વાર + {0} ચોરસ વાર + {0} ચોરસ વાર ચોરસ ફૂટ @@ -6120,91 +6405,106 @@ For terms of use, see http://www.unicode.org/copyright.html ચોરસ ઇંચ {0} ચોરસ ઇંચ {0} ચોરસ ઇંચ + {0} પ્રતિ ચો. ઈંચ - - ચોરસ કિમી - {0} ચોરસ કિમી - {0} ચોરસ કિમી - - - ચોરસ મીટર - {0} ચોરસ મીટર - {0} ચોરસ મીટર - - - ચોરસ માઇલ - {0} ચોરસ માઇલ - {0} ચોરસ માઇલ - - - ચોરસ વાર - {0} ચોરસ વાર - {0} ચોરસ વાર + + કૅરેટ + {0} કૅરેટ + {0} કૅરેટ લીટર/કિમી {0} લીટર/કિમી {0} લીટર/કિમી + + લિ/100 કિમી + {0} લિ/100 કિમી + {0} લિ/100 કિમી + માઇલ/ગૅલન {0} માઇલ/ગૅલન {0} માઇલ/ગૅલન - - બિટ - {0} બિટ - {0} બિટ - - - બાઇટ - {0} બાઇટ - {0} બાઇટ - - - ગીગાબિટ - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + ગીગાબિટ + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + બાઇટ + {0} બાઇટ + {0} બાઇટ + + + બિટ + {0} બિટ + {0} બિટ + + + સદી + {0} સદી + {0} સદી + + + વર્ષ + {0} વર્ષ + {0} વર્ષ + {0}/વર્ષ + + + મહિના + {0} મહિનો + {0} મહિના + {0}/માસ + + + અઠવાડિયા + {0} અઠ. + {0} અઠ. + {0} / અઠ. + દિવસ {0} દિવસ {0} દિવસ + {0}/ દિવસ કલાક @@ -6212,30 +6512,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} કલાક {0} પ્રતિ કલાક - - μs - {0} μs - {0} μs - - - મિલિસેકન્ડ - {0} મિસે - {0} મિસે - મિનિટ {0} મિનિટ {0} મિનિટ - - - મહિના - {0} મહિનો - {0} મહિના - - - નેનોસેકંડ - {0} ns - {0} ns + {0}/મિ. સેકંડ @@ -6243,15 +6524,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} સેકંડ {0} પ્રતિ સેકંડ - - અઠવાડિયા - {0} અઠ. - {0} અઠ. + + મિલિસેકન્ડ + {0} મિસે + {0} મિસે - - વર્ષ - {0} વર્ષ - {0} વર્ષ + + μs + {0} μs + {0} μs + + + નેનોસેકંડ + {0} ns + {0} ns amp @@ -6273,6 +6559,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + કિલોકેલરી + {0} kcal + {0} kcal + કેલરી {0} Cal @@ -6283,21 +6574,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - જૂલ - {0} J - {0} J - - - કિલોકેલરી - {0} kcal - {0} kcal - કિલોજૂલ {0} kJ {0} kJ + + જૂલ + {0} J + {0} J + કિલોવૉટ-કલાક {0} kWh @@ -6308,201 +6594,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - ખગોળીય યુનિટ - {0} au - {0} au + + કિમી + {0} કિમી + {0} કિમી + {0}/કિમી - - સેમી - {0} સેમી - {0} સેમી + + મીટર + {0} મી + {0} મી + {0}/મી ડેમી {0} ડેમી {0} ડેમી - - ફૂટ - {0} ફૂટ - {0} ફૂટ - - - ઇંચ - {0} ઇંચ - {0} ઇંચ - - - કિમી - {0} કિમી - {0} કિમી - - - પ્રકાશ વર્ષ - {0} પ્રકાશ વર્ષ - {0} પ્રકાશ વર્ષ - - - મીટર - {0} મી - {0} મી - - - માઇક્રોમીટર - {0} µમી - {0} µમી - - - માઇલ - {0} માઇલ - {0} માઇલ + + સેમી + {0} સેમી + {0} સેમી + {0}/સેમી મિમી {0} મિમી {0} મિમી + + માઇક્રોમીટર + {0} µમી + {0} µમી + નેનોમીટર {0} નેનોમીટર {0} નેનોમીટર - - નૉટિકલ માઇલ - {0} nmi - {0} nmi - - - પરસેક - {0} પરસેક - {0} પરસેક - પિસૉમીટર {0} પિસૉમીટર {0} પિસૉમીટર + + માઇલ + {0} માઇલ + {0} માઇલ + વાર {0} વાર {0} વાર + + ફૂટ + {0} ફૂટ + {0} ફૂટ + {0}/ફૂટ + + + ઇંચ + {0} ઇંચ + {0} ઇંચ + {0}/ઈંચ + + + પરસેક + {0} પરસેક + {0} પરસેક + + + પ્રકાશ વર્ષ + {0} પ્રકાશ વર્ષ + {0} પ્રકાશ વર્ષ + + + ખગોળીય યુનિટ + {0} au + {0} au + + + નૉટિકલ માઇલ + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + લક્સ {0} લક્સ {0} લક્સ - - કેરેટ - {0} કેરેટ - {0} કેરેટ - - - ગ્રામ - {0} ગ્રા - {0} ગ્રા - - - કિગ્રા - {0} કિગ્રા - {0} કિગ્રા - મેટ્રિક ટન {0} મેટ્રિક ટન {0} મેટ્રિક ટન - - µગ્રામ - {0} µગ્રામ - {0} µગ્રામ + + કિગ્રા + {0} કિગ્રા + {0} કિગ્રા + {0}/કિગ્રા + + + ગ્રામ + {0} ગ્રા + {0} ગ્રા + {0}/ગ્રામ મિગ્રા {0} મિગ્રા {0} મિગ્રા - - ઔંસ - {0} ઔંસ - {0} ઔંસ - - - ટ્રોય ઔંસ - {0} ટ્રોય ઔંસ - {0} ટ્રોય ઔંસ - - - પાઉન્ડ - {0} પાઉન્ડ - {0} પાઉન્ડ + + µગ્રામ + {0} µગ્રામ + {0} µગ્રામ ટન {0} ટન {0} ટન + + પાઉન્ડ + {0} પાઉન્ડ + {0} પાઉન્ડ + {0}/પાઉન્ડ + + + ઔંસ + {0} ઔંસ + {0} ઔંસ + {0}/ઔંસ + + + ટ્રોય ઔંસ + {0} ટ્રોય ઔંસ + {0} ટ્રોય ઔંસ + + + કેરેટ + {0} કેરેટ + {0} કેરેટ + ગીગાવૉટ {0} GW {0} GW - - હોર્સપાવર - {0} hp - {0} hp - - - કિલોવૉટ - {0} kW - {0} kW - મેગાવૉટ {0} MW {0} MW - - મિલિવૉટ - {0} mW - {0} mW + + કિલોવૉટ + {0} kW + {0} kW વૉટ {0} W {0} W + + મિલિવૉટ + {0} mW + {0} mW + + + હોર્સપાવર + {0} hp + {0} hp + hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - - - મિલિબાર - {0} મિલિબાર - {0} મિલિબાર - mm Hg {0} mm Hg @@ -6513,10 +6803,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - કૅરેટ - {0} કૅરેટ - {0} કૅરેટ + + inHg + {0} inHg + {0} inHg + + + મિલિબાર + {0} મિલિબાર + {0} મિલિબાર કિમી/કલાક @@ -6533,6 +6828,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} માઇલ/કલાક {0} માઇલ/કલાક + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + ડિગ્રી સેલ્સિયસ {0}°C @@ -6548,31 +6853,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - એકર-ફૂટ - {0} એકર-ફૂટ - {0} એકર-ફૂટ - - - સેન્ટિલીટર - {0} સેન્ટિલીટર - {0} સેન્ટિલીટર - - - ઘન સેમી - {0} ઘન સેમી - {0} ઘન સેમી - - - ઘન ફૂટ - {0} ઘન ફૂટ - {0} ઘન ફૂટ - - - ઘન ઇંચ - {0} ઘન ઇંચ - {0} ઘન ઇંચ - ઘન કિમી {0} ઘન કિમી @@ -6582,6 +6862,13 @@ For terms of use, see http://www.unicode.org/copyright.html ઘન મીટર {0} ઘન મીટર {0} ઘન મીટર + {0}/ઘન મી. + + + ઘન સેમી + {0} ઘન સેમી + {0} ઘન સેમી + {0}/ ઘન સેમી ઘન માઇલ @@ -6593,25 +6880,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ઘન વાર {0} ઘન વાર - - કપ - {0} કપ - {0} કપ + + ઘન ફૂટ + {0} ઘન ફૂટ + {0} ઘન ફૂટ - - ડેસિલીટર - {0} ડેસિલીટર - {0} ડેસિલીટર + + ઘન ઇંચ + {0} ઘન ઇંચ + {0} ઘન ઇંચ - - પ્રવાહી ઔંસ - {0} પ્રવાહી ઔંસ - {0} પ્રવાહી ઔંસ - - - ગૅલન - {0} ગૅલન - {0} ગૅલન + + મેગાલીટર + {0} મેગાલીટર + {0} મેગાલીટર હેક્ટોલીટર @@ -6622,27 +6904,64 @@ For terms of use, see http://www.unicode.org/copyright.html લિટર {0} લિ {0} લિ + {0}/લિ - - મેગાલીટર - {0} મેગાલીટર - {0} મેગાલીટર + + ડેસિલીટર + {0} ડેસિલીટર + {0} ડેસિલીટર + + + સેન્ટિલીટર + {0} સેન્ટિલીટર + {0} સેન્ટિલીટર મિલિલીટર {0} મિલિલીટર {0} મિલિલીટર - - પિન્ટ - {0} પિન્ટ - {0} પિન્ટ + + મે.પિન્ટ + {0} મે.પિન્ટ + {0} મે.પિન્ટ + + + મે. કપ + {0} મે. કપ + {0} મે. કપ + + + એકર-ફૂટ + {0} એકર-ફૂટ + {0} એકર-ફૂટ + + + ગૅલન + {0} ગૅલન + {0} ગૅલન + {0}/ગૅલન ક્વાર્ટ {0} ક્વાર્ટ {0} ક્વાર્ટ + + પિન્ટ + {0} પિન્ટ + {0} પિન્ટ + + + કપ + {0} કપ + {0} કપ + + + પ્રવાહી ઔંસ + {0} પ્રવાહી ઔંસ + {0} પ્રવાહી ઔંસ + ટેબલસ્પૂન {0} ટેબલસ્પૂન @@ -6653,6 +6972,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ટીસ્પૂન {0} ટીસ્પૂન + + {0}પૂ + {0}ઉ + {0}દ + {0}પ + @@ -6662,6 +6987,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + અંશ + {0}° + {0}° + {0}′ {0}′ @@ -6670,27 +7000,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - અંશ - {0}° - {0}° - - - {0} ac - {0} ac + + {0} km² + {0} km² {0} ha {0} ha - - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} m² {0} m² @@ -6699,6 +7016,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} ac + {0} ac + + + {0} ft² + {0} ft² + + + લિ/100 કિમી + {0}લિ/100કિમી + {0}લિ/100કિમી + + + વર્ષ + {0} વ + {0} વ + + + મહિના + {0} મ + {0} મ + + + અઠવાડિયા + {0} અઠ. + {0} અઠ. + દિવસ {0} દિ @@ -6709,66 +7054,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ક {0} ક - - મિલિસેકન્ડ - {0} મિસે - {0} મિસે - મિનિટ {0} મિ {0} મિ - - મહિના - {0} મ - {0} મ - સેકંડ {0} સે {0} સે - - અઠવાડિયા - {0} અઠ. - {0} અઠ. - - - વર્ષ - {0} વ - {0} વ - - - સેમી - {0} સેમી - {0} સેમી - - - {0} ' - {0} ' - - - {0} " - {0} " + + મિલિસેકન્ડ + {0} મિસે + {0} મિસે કિમી {0} કિમી {0} કિમી - - {0}પ્રકાશવર્ષ - {0}પ્રકાશવર્ષ - મીટર {0} મી {0} મી - - {0} માઇલ - {0} માઇલ + + સેમી + {0} સેમી + {0} સેમી મિમી @@ -6779,31 +7093,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0}પિસૉ.મી {0}પિસૉ.મી + + {0} માઇલ + {0} માઇલ + {0} વાર {0} વાર - - ગ્રામ - {0} ગ્રા - {0} ગ્રા + + {0} ' + {0} ' + + + {0} " + {0} " + + + {0}પ્રકાશવર્ષ + {0}પ્રકાશવર્ષ કિગ્રા {0} કિગ્રા {0} કિગ્રા - - {0} ઔંશ - {0} ઔંશ + + ગ્રામ + {0} ગ્રા + {0} ગ્રા {0} પાઉન્ડ {0} પાઉન્ડ - - {0} hp - {0} hp + + {0} ઔંશ + {0} ઔંશ {0} kW @@ -6813,6 +7139,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} hp + {0} hp + {0} hPa {0} hPa @@ -6860,6 +7190,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} લિ {0} લિ + + {0}પૂ + {0}ઉ + {0}દ + {0}પ + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gu_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gu_IN.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gu_IN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gu_IN.xml index 9619632ff56..14d6ddb53af 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gu_IN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gu_IN.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/guz.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/guz.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/guz.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/guz.xml index bb9c8920f02..6fe5790f483 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/guz.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/guz.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antili za Uholanzi Angola Ajentina Samoa ya Marekani @@ -448,9 +446,13 @@ For terms of use, see http://www.unicode.org/copyright.html + + Ma + Mo + - Ma/Mo - Mambia/Mog + Mambia + Mog @@ -489,22 +491,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -584,6 +586,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤00K + ¤000K + ¤0M + ¤00M + ¤000M + ¤0G + ¤00G + ¤000G + ¤0T + ¤00T + ¤000T + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/guz_KE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/guz_KE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/guz_KE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/guz_KE.xml index 48afe32eef7..7c667f9b6a2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/guz_KE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/guz_KE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gv.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gv.xml similarity index 53% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gv.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gv.xml index ab191719db0..51d443f7e07 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gv.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gv.xml @@ -1,13 +1,12 @@ - - - + @@ -63,8 +62,8 @@ For terms of use, see http://www.unicode.org/copyright.html Luanistyn M-fouyir J-fouyir - M.Houney - M.Nollick + M-Houney + M-Nollick Jerrey-geuree @@ -106,6 +105,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + a.m. + p.m. + a.m. p.m. @@ -200,6 +203,71 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00 + + + ¤0K + ¤0K + ¤0K + ¤0K + ¤0K + ¤00K + ¤00K + ¤00K + ¤00K + ¤00K + ¤000K + ¤000K + ¤000K + ¤000K + ¤000K + ¤0M + ¤0M + ¤0M + ¤0M + ¤0M + ¤00M + ¤00M + ¤00M + ¤00M + ¤00M + ¤000M + ¤000M + ¤000M + ¤000M + ¤000M + ¤0G + ¤0G + ¤0G + ¤0G + ¤0G + ¤00G + ¤00G + ¤00G + ¤00G + ¤00G + ¤000G + ¤000G + ¤000G + ¤000G + ¤000G + ¤0T + ¤0T + ¤0T + ¤0T + ¤0T + ¤00T + ¤00T + ¤00T + ¤00T + ¤00T + ¤000T + ¤000T + ¤000T + ¤000T + ¤000T + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gv_IM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gv_IM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gv_IM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gv_IM.xml index 7f11f78f078..e61522064d6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/gv_IM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/gv_IM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ha.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ha.xml similarity index 93% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ha.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ha.xml index 737e863894d..ef46566b86f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ha.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ha.xml @@ -1,13 +1,12 @@ - - - + @@ -131,7 +130,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angila Albaniya Armeniya - Antiya Na Holan Angola Arjantiniya Samowa Ta Amurka @@ -546,22 +544,22 @@ For terms of use, see http://www.unicode.org/copyright.html - HH:mm:ss zzzz + h:mm:ss a zzzz - HH:mm:ss z + h:mm:ss a z - HH:mm:ss + h:mm:ss a - HH:mm + h:mm a @@ -663,6 +661,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0M + ¤ 0M + ¤ 00M + ¤ 00M + ¤ 000M + ¤ 000M + ¤ 0G + ¤ 0G + ¤ 00G + ¤ 00G + ¤ 000G + ¤ 000G + ¤ 0T + ¤ 0T + ¤ 00T + ¤ 00T + ¤ 000T + ¤ 000T + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ha_Latn_GH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ha_GH.xml similarity index 71% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ha_Latn_GH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ha_GH.xml index c9024823582..b516ef961d2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ha_Latn_GH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ha_GH.xml @@ -1,15 +1,13 @@ - - - + - - + - - + + @@ -646,7 +651,6 @@ For terms of use, see http://www.unicode.org/copyright.html אנגילה אלבניה ארמניה - אנטילים הולנדיים אנגולה אנטארקטיקה ארגנטינה @@ -864,7 +868,7 @@ For terms of use, see http://www.unicode.org/copyright.html דרום סודן סאו טומה ופרינסיפה אל סלבדור - סינט מארטן + סנט מארטן סוריה סווזילנד טריסטן דה קונה @@ -931,6 +935,9 @@ For terms of use, see http://www.unicode.org/copyright.html מיון לפי מספרים עוצמת המיון מטבע + מחזור השעות (12 או 24) + סגנון מעבר שורה + מערכת מדידה מספרים אזור זמן משתנה אזור @@ -938,96 +945,106 @@ For terms of use, see http://www.unicode.org/copyright.html שימוש פרטי - ספרות הינדיות - ספרות הינדיות מורחבות - ספרות ארמניות - ספרות ארמניות קטנות - ספרות בנגליות - מיון סינית מסורתית - לוח שנה בודהיסטי - לוח שנה סיני - לוח שנה קופטי - לוח שנה קוריאני - ספרות של דוונגארי - סדר מיון במילון - סדר מיון Unicode המוגדר כברירת מחדל - ספרות אתיופיות - לוח שנה אתיופי - לוח השנה אמטה אלם האתיופי - ספרות פיננסיות - ספרות ברוחב מלא - מיון סינית מודרנית - ספרות גאורגיות - לוח שנה גרגוריאני - ספרות יווניות - ספרות יווניות קטנות - ספרות גוג׳רטיות - ספרות גורמוקיות - ספרות סיניות עשרוניות - ספרות סיניות מפושטות - ספרות פיננסיות סיניות מפושטות - ספרות סיניות מסורתיות - ספרות פיננסיות סיניות מסורתיות - ספרות עבריות - לוח שנה עברי - מיין הכל - לוח השנה ההודי הלאומי - לוח שנה מוסלמי - לוח שנה מוסלמי-אזרחי - לוח שנה מוסלמי-אסטרולוגי - לוח שנה ISO-8601 - לוח שנה יפני - ספרות יפניות - ספרות פיננסיות יפניות - ספרות חמריות - ספרות של קנאדה - ספרות של לאוס - ספרות מערביות - מיין תחילה לפי אותיות קטנות - ספרות של מליאלאם - ספרות מונגוליות - ספרות של מיאנמר - ספרות מקומיות - מיין הטעמות בצורה רגילה - מיין לפי סדר רישיות רגיל - מיין באופן שאינו תלוי רישיות - מיין קאנה בנפרד - מיין ללא נורמליזציה - מיין ספרות בנפרד - מיין סמלים - ספרות אוריה - לוח שנה פרסי - מיון ספר טלפונים - סדר מיון פונטי - מיון פיניין - מיין תוך התעלמות מהטעמות - מיין לפי הטעמות/רישיות/רוחב/קאנה - סדר מיון מתוקן - לוח השנה הסיני Minguo - ספרות רומיות - ספרות רומיות קטנות - חיפוש כללי - חפש לפי העיצור הראשון באותיות הנגול - מיין לפי הטעמות - מיין תוך התעלמות מסמלים - סדר מיון רגיל - סדר מיון לפי ספירת תווים - ספרות טמיליות מסורתיות - ספרות טמיליות - ספרות טלוגו - מיין הטעמות/רישיות/רוחב - ספרות תאיות - ספרות טיבטיות - מיון מסורתי - ספרות מסורתיות - סדר מיון לפי ספירת תווים Radical-Stroke - מיין תחילה לפי אותיות רישיות - ספרות ואי - מיין לפי הטעמות בסדר הפוך - מיין באופן תלוי רישיות - מיין קאנה אחרת - מיין לפי Unicode מנורמל - מיין ספרות לפי סדר מספרי + לוח שנה בודהיסטי + לוח שנה סיני + לוח שנה קופטי + לוח שנה קוריאני + לוח שנה אתיופי + לוח השנה אמטה אלם האתיופי + לוח שנה גרגוריאני + לוח שנה עברי + לוח השנה ההודי הלאומי + לוח שנה מוסלמי + לוח שנה מוסלמי-אזרחי + לוח שנה מוסלמי-אסטרולוגי + לוח שנה ISO-8601 + לוח שנה יפני + לוח שנה פרסי + לוח השנה הסיני Minguo + מיין סמלים + מיין תוך התעלמות מסמלים + מיין הטעמות בצורה רגילה + מיין לפי הטעמות בסדר הפוך + מיין תחילה לפי אותיות קטנות + מיין לפי סדר רישיות רגיל + מיין תחילה לפי אותיות רישיות + מיין באופן שאינו תלוי רישיות + מיין באופן תלוי רישיות + מיין קאנה בנפרד + מיין קאנה אחרת + מיון סינית מסורתית + סדר מיון במילון + סדר מיון Unicode המוגדר כברירת מחדל + מיון סינית מודרנית + מיון ספר טלפונים + סדר מיון פונטי + מיון פיניין + סדר מיון מתוקן + חיפוש כללי + חפש לפי העיצור הראשון באותיות הנגול + סדר מיון רגיל + סדר מיון לפי ספירת תווים + מיון מסורתי + סדר מיון לפי ספירת תווים Radical-Stroke + מיין ללא נורמליזציה + מיין לפי Unicode מנורמל + מיין ספרות בנפרד + מיין ספרות לפי סדר מספרי + מיין הכל + מיין תוך התעלמות מהטעמות + מיין לפי הטעמות/רישיות/רוחב/קאנה + מיין לפי הטעמות + מיין הטעמות/רישיות/רוחב + מערכת של 12 שעות (0–11) + מערכת של 12 שעות (1–12) + מערכת של 24 שעות (0–23) + מערכת של 24 שעות (1–24) + מעבר שורה גמיש + מעבר שורה רגיל + מעבר שורה קשיח + מערכת מטרית + מערכת מדידה אימפריאלית + מערכת מדידה אמריקאית + ספרות הינדיות + ספרות הינדיות מורחבות + ספרות ארמניות + ספרות ארמניות קטנות + ספרות בנגליות + ספרות של דוונגארי + ספרות אתיופיות + ספרות פיננסיות + ספרות ברוחב מלא + ספרות גאורגיות + ספרות יווניות + ספרות יווניות קטנות + ספרות גוג׳רטיות + ספרות גורמוקיות + ספרות סיניות עשרוניות + ספרות סיניות מפושטות + ספרות פיננסיות סיניות מפושטות + ספרות סיניות מסורתיות + ספרות פיננסיות סיניות מסורתיות + ספרות עבריות + ספרות יפניות + ספרות פיננסיות יפניות + ספרות חמריות + ספרות של קנאדה + ספרות של לאוס + ספרות מערביות + ספרות של מליאלאם + ספרות מונגוליות + ספרות של מיאנמר + ספרות מקומיות + ספרות אוריה + ספרות רומיות + ספרות רומיות קטנות + ספרות טמיליות מסורתיות + ספרות טמיליות + ספרות טלוגו + ספרות תאיות + ספרות טיבטיות + ספרות מסורתיות + ספרות ואי מטבע BGN @@ -1071,10 +1088,10 @@ For terms of use, see http://www.unicode.org/copyright.html ? - ״ - ״ - ׳ - ׳ + + + + @@ -1124,6 +1141,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E ה-d y G MMM y G @@ -1141,6 +1159,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d בMMM E, d בMMM + MM d mm:ss y G y G @@ -1151,8 +1170,9 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y G d בMMM y G E, d בMMM y G - G y QQQ - G y QQQQ + G y MMMM + G y QQQ + G y QQQQ {0} – {1} @@ -1452,10 +1472,10 @@ For terms of use, see http://www.unicode.org/copyright.html רבעון 4 - ר1 - ר2 - ר3 - ר4 + 1 + 2 + 3 + 4 רבעון 1 @@ -1467,15 +1487,35 @@ For terms of use, see http://www.unicode.org/copyright.html - + + חצות לפנה״צ - בצהריים אחה״צ + בוקר + צהריים + אחר הצהריים + ערב + לילה + חצות לפנה״צ - בצהריים אחה״צ + בוקר + צהריים + אחר הצהריים + ערב + לילה + + + + + חצות + בוקר + צהריים + אחר הצהריים + ערב + לילה @@ -1487,7 +1527,9 @@ For terms of use, see http://www.unicode.org/copyright.html לפנה״ס + BCE לספירה + CE @@ -1573,12 +1615,17 @@ For terms of use, see http://www.unicode.org/copyright.html H:mm h:mm:ss a H:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d.M E, d.M LLL d בMMM E, d בMMM + d בMMMM mm:ss y M.y @@ -1750,7 +1797,7 @@ For terms of use, see http://www.unicode.org/copyright.html תשרי - חשוון + חשון כסלו טבת שבט @@ -1782,7 +1829,7 @@ For terms of use, see http://www.unicode.org/copyright.html תשרי - חשון + חשוון כסלו טבת שבט @@ -1830,8 +1877,8 @@ For terms of use, see http://www.unicode.org/copyright.html E ה-d y G MMMM y G - d MMMM y G - E, d MMMM y G + d בMMMM y G + E, d בMMMM y G MMMM d בMMMM E, d בMMMM @@ -1945,18 +1992,18 @@ For terms of use, see http://www.unicode.org/copyright.html ד׳ו אל־חיג׳ה - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 מוחרם @@ -1985,22 +2032,22 @@ For terms of use, see http://www.unicode.org/copyright.html שעבאן רמדאן שוואל - ד׳ו אל-קעדה - ד׳ו אל-חיג׳ה + ד׳ו אל־קעדה + ד׳ו אל־חיג׳ה - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 מוחרם @@ -2048,6 +2095,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E ה-d y G MMM y G @@ -2064,6 +2112,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d בMMM E, d בMMM + d בMMMM y G y G M/y @@ -2072,6 +2121,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y d בMMM y E, d בMMM y + G y MMMM QQQ y QQQQ y @@ -2582,12 +2632,12 @@ For terms of use, see http://www.unicode.org/copyright.html - +H:mm;-H:mm - GMT{0} - GMT + ‎+HH:mm;-HH:mm‎ + GMT{0}‎ + GMT שעון {0} שעון {0} (קיץ) - שעון {0} (חורף) + שעון {0} (חורף) {1} ({0}) עיר לא ידועה @@ -2626,7 +2676,7 @@ For terms of use, see http://www.unicode.org/copyright.html טרול - שויה + שויה מאוסון @@ -2704,7 +2754,7 @@ For terms of use, see http://www.unicode.org/copyright.html ברוקן היל - קרי + קרי מלבורן @@ -2959,7 +3009,7 @@ For terms of use, see http://www.unicode.org/copyright.html אורומקי - אסיה/שנחאי + שנחאי בוגוטה @@ -3046,7 +3096,7 @@ For terms of use, see http://www.unicode.org/copyright.html סטנלי - טרוק + טרוק פונפה @@ -3211,7 +3261,7 @@ For terms of use, see http://www.unicode.org/copyright.html אנדרבורי - קיריטימאטי + קיריטימאטי טאראווה @@ -3322,7 +3372,7 @@ For terms of use, see http://www.unicode.org/copyright.html אולאאנבטאר - צ׳ואיבלסאן + צ׳ואיבלסאן מקאו @@ -3430,7 +3480,7 @@ For terms of use, see http://www.unicode.org/copyright.html ניווה - צ׳אטהאם + צ׳אטהאם אוקלנד @@ -3456,6 +3506,9 @@ For terms of use, see http://www.unicode.org/copyright.html פורט מורסבי + + בוגנוויל + מנילה @@ -3540,6 +3593,9 @@ For terms of use, see http://www.unicode.org/copyright.html אירקוטסק + + צ׳יטה + יקוטסק @@ -3558,6 +3614,9 @@ For terms of use, see http://www.unicode.org/copyright.html מגדן + + סרדנייקולימסק + קמצ׳טקה @@ -3817,13 +3876,13 @@ For terms of use, see http://www.unicode.org/copyright.html אפטה - ווליס + ווליס אפיה - עדן + עדן מאיוט @@ -3901,7 +3960,7 @@ For terms of use, see http://www.unicode.org/copyright.html - שעון מערב ארה״ב (לוס אנג׳לס) + שעון מערב ארה״ב שעון רגיל האוקיינוס השקט שעון קיץ, מערב ארה״ב (לוס אנג׳לס) @@ -4176,7 +4235,7 @@ For terms of use, see http://www.unicode.org/copyright.html - שעון איי גלאפגוס + שעון איי גלאפגוס @@ -4227,9 +4286,9 @@ For terms of use, see http://www.unicode.org/copyright.html - שעון האיים האלאוטיים הוואי - שעון רגיל האיים האלאוטיים הוואי - שעון קיץ האיים האלאוטיים הוואי + שעון האיים האלאוטיים הוואי + שעון רגיל האיים האלאוטיים הוואי + שעון קיץ האיים האלאוטיים הוואי @@ -4366,7 +4425,7 @@ For terms of use, see http://www.unicode.org/copyright.html - שעון מקווארי + שעון מקווארי @@ -4524,7 +4583,7 @@ For terms of use, see http://www.unicode.org/copyright.html שעון פרגוואי שעון פרגוואי (חורף) - שעון קיץ פרגוואי + שעון פרגוואי (קיץ) @@ -4846,30 +4905,30 @@ For terms of use, see http://www.unicode.org/copyright.html ‏000 מיל׳ ‏000 מיל׳ ‏000 מיל׳ - ‏0 מלרד - ‏0 מלרד - ‏0 מלרד - ‏0 מלרד - ‏00 מלרד - ‏00 מלרד - ‏00 מלרד - ‏00 מלרד - ‏000 מלרד - ‏000 מלרד - ‏000 מלרד - ‏000 מלרד - ‏0 ביל׳ - ‏0 ביל׳ - ‏0 ביל׳ - ‏0 ביל׳ - ‏00 ביל׳ - ‏00 ביל׳ - ‏00 ביל׳ - ‏00 ביל׳ - ‏000 ביל׳ - ‏000 ביל׳ - ‏000 ביל׳ - ‏000 ביל׳ + 0B + 0B + 0B + 0B + 00B + 00B + 00B + 00B + 000B + 000B + 000B + 000B + 0T + 0T + 0T + 0T + 00T + 00T + 00T + 00T + 000T + 000T + 000T + 000T @@ -4896,6 +4955,58 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + ¤ 0K + ¤ 0K + ¤0K + ¤ 0K + ¤00K + ¤00K + ¤00K + ¤ 00K + ¤000K + ¤000K + ¤000K + ¤000K + ¤0M + ¤0M + ¤0M + ¤0M + ¤00M + ¤00M + ¤00M + ¤00M + ¤000M + ¤000M + ¤000M + ¤000M + ¤0B + ¤0B + ¤0B + ¤0B + ¤00B + ¤00B + ¤00B + ¤00B + ¤000B + ¤000B + ¤000B + ¤000B + ¤0T + ¤0T + ¤0T + ¤0T + ¤00T + ¤00T + ¤00T + ¤00T + ¤000T + ¤000T + ¤000T + ¤000T + + {0} {1} {0} {1} {0} {1} @@ -4952,6 +5063,7 @@ For terms of use, see http://www.unicode.org/copyright.html קואנזה אנגולי קואנזה אנגולי AOA + Kz קואנזה חדש אנגולי (1990–2000) @@ -5012,6 +5124,7 @@ For terms of use, see http://www.unicode.org/copyright.html מארק בר המרה של בוסניה־הרצגובינה מארק בר המרה של בוסניה־הרצגובינה BAM + KM דולר ברבדיאני @@ -5089,6 +5202,7 @@ For terms of use, see http://www.unicode.org/copyright.html בוליביאנו בוליביאנו BOB + Bs פזו בוליבי @@ -5132,6 +5246,7 @@ For terms of use, see http://www.unicode.org/copyright.html פולה בוצוואני פולה בוצוואני BWP + P רובל בלרוסי @@ -5216,12 +5331,13 @@ For terms of use, see http://www.unicode.org/copyright.html דינר סרבי ישן - פזו קובני להמרה - פזו קובני להמרה - פזו קובני להמרה - פזו קובני להמרה - פזו קובני להמרה + פזו קובני להמרה + פזו קובני להמרה + פזו קובני להמרה + פזו קובני להמרה + פזו קובני להמרה CUC + $ פזו קובני @@ -5250,6 +5366,7 @@ For terms of use, see http://www.unicode.org/copyright.html קורונה צ׳כית קורונה צ׳כית CZK + מרק מזרח גרמני @@ -5272,6 +5389,7 @@ For terms of use, see http://www.unicode.org/copyright.html כתר דני כתר דני DKK + kr פזו דומיניקני @@ -5303,6 +5421,7 @@ For terms of use, see http://www.unicode.org/copyright.html לירה מצרית לירה מצרית EGP + נאקפה אריתראי @@ -5357,6 +5476,7 @@ For terms of use, see http://www.unicode.org/copyright.html לירה של איי פוקלנד לירה של איי פוקלנד FKP + £ פרנק צרפתי @@ -5377,6 +5497,7 @@ For terms of use, see http://www.unicode.org/copyright.html לרי גאורגי לרי גאורגי GEL + סדי גאני @@ -5410,6 +5531,7 @@ For terms of use, see http://www.unicode.org/copyright.html פרנק גינאי פרנק גינאי GNF + FG דרכמה @@ -5421,6 +5543,7 @@ For terms of use, see http://www.unicode.org/copyright.html קצל גואטמלי קצל גואטמלי GTQ + Q פזו גינאי @@ -5450,6 +5573,7 @@ For terms of use, see http://www.unicode.org/copyright.html למפירה הונדורי למפירה הונדורי HNL + L קונה קרואטי @@ -5458,6 +5582,7 @@ For terms of use, see http://www.unicode.org/copyright.html קונה קרואטי קונה קרואטי HRK + kn גורד האיטי @@ -5474,6 +5599,7 @@ For terms of use, see http://www.unicode.org/copyright.html פורינט הונגרי פורינט הונגרי HUF + Ft רופיה אינדונזית @@ -5482,6 +5608,7 @@ For terms of use, see http://www.unicode.org/copyright.html רופיה אינדונזית רופיה אינדונזית IDR + Rp לירה אירית @@ -5509,11 +5636,11 @@ For terms of use, see http://www.unicode.org/copyright.html - דינר עירקי - דינר עירקי - דינר עירקי - דינר עירקי - דינר עירקי + דינר עיראקי + דינר עיראקי + דינר עיראקי + דינר עיראקי + דינר עיראקי IQD @@ -5531,6 +5658,7 @@ For terms of use, see http://www.unicode.org/copyright.html קרונה איסלנדית קרונה איסלנדית ISK + kr לירה איטלקית @@ -5593,6 +5721,7 @@ For terms of use, see http://www.unicode.org/copyright.html פרנק קומורואי פרנק קומורואי KMF + CF וון צפון-קוריאני @@ -5601,6 +5730,7 @@ For terms of use, see http://www.unicode.org/copyright.html וון צפון-קוריאני וון צפון-קוריאני KPW + וון דרום-קוריאני @@ -5653,6 +5783,7 @@ For terms of use, see http://www.unicode.org/copyright.html לירה לבנונית לירה לבנונית LBP + רופי סרי לנקי @@ -5661,6 +5792,7 @@ For terms of use, see http://www.unicode.org/copyright.html רופי סרי לנקי רופי סרי לנקי LKR + Rs דולר ליברי @@ -5723,6 +5855,7 @@ For terms of use, see http://www.unicode.org/copyright.html אריארי מלגשי אריארי מלגשי MGA + Ar פרנק מדגסקארי @@ -5742,6 +5875,7 @@ For terms of use, see http://www.unicode.org/copyright.html קיאט מיאנמרי קיאט מיאנמרי MMK + K טוגריק מונגולי @@ -5778,6 +5912,7 @@ For terms of use, see http://www.unicode.org/copyright.html רופי מאוריציני רופי מאוריציני MUR + Rs רופיה מלדיבית @@ -5814,6 +5949,7 @@ For terms of use, see http://www.unicode.org/copyright.html רינגיט מלזי רינגיט מלזי MYR + RM אסקודו מוזמביקי @@ -5858,6 +5994,7 @@ For terms of use, see http://www.unicode.org/copyright.html קורדובה ניקראגי קורדובה ניקראגי NIO + C$ גילדן הולנדי @@ -5869,6 +6006,7 @@ For terms of use, see http://www.unicode.org/copyright.html כתר נורבגי כתר נורבגי NOK + kr רופי נפאלי @@ -5877,6 +6015,7 @@ For terms of use, see http://www.unicode.org/copyright.html רופי נפאלי רופי נפאלי NPR + Rs דולר ניו זילנדי @@ -5935,6 +6074,7 @@ For terms of use, see http://www.unicode.org/copyright.html רופי פקיסטני רופי פקיסטני PKR + Rs זלוטי פולני @@ -5943,6 +6083,7 @@ For terms of use, see http://www.unicode.org/copyright.html זלוטי פולני זלוטי פולני PLN + זלוטי (1950 – 1995) @@ -5993,6 +6134,7 @@ For terms of use, see http://www.unicode.org/copyright.html רובל רוסי רובל רוסי RUB + @@ -6005,6 +6147,7 @@ For terms of use, see http://www.unicode.org/copyright.html פרנק רואנדי פרנק רואנדי RWF + RF ריאל סעודי @@ -6051,7 +6194,8 @@ For terms of use, see http://www.unicode.org/copyright.html כתר שוודי כתר שוודי כתר שוודי - SEK + SEK + kr דולר סינגפורי @@ -6069,6 +6213,7 @@ For terms of use, see http://www.unicode.org/copyright.html פאונד סנט הלני פאונד סנט הלני SHP + £ טולאר סלובני @@ -6120,6 +6265,7 @@ For terms of use, see http://www.unicode.org/copyright.html דוברה של סן טומה ופרינסיפה דוברה של סן טומה ופרינסיפה STD + Db רובל סובייטי @@ -6138,6 +6284,7 @@ For terms of use, see http://www.unicode.org/copyright.html לירה סורית לירה סורית SYP + £ לילנגני סווזי @@ -6154,6 +6301,7 @@ For terms of use, see http://www.unicode.org/copyright.html בהט תאילנדי בהט תאילנדי ฿ + ฿ סומוני טג׳קיסטני @@ -6189,6 +6337,7 @@ For terms of use, see http://www.unicode.org/copyright.html פאנגה טונגי פאנגה טונגי TOP + T$ אסקודו טימוראי @@ -6294,6 +6443,7 @@ For terms of use, see http://www.unicode.org/copyright.html בוליבר ונצואלי בוליבר ונצואלי VEF + Bs דונג וייטנאמי @@ -6341,6 +6491,7 @@ For terms of use, see http://www.unicode.org/copyright.html דולר מזרח קריבי דולר מזרח קריבי EC$ + $ זכויות משיכה מיוחדות @@ -6349,11 +6500,11 @@ For terms of use, see http://www.unicode.org/copyright.html פרנק זהב - פרנק CFA BCEAO - פרנק CFA BCEAO - פרנק CFA BCEAO - פרנק CFA BCEAO - פרנק CFA BCEAO + פרנק CFA BCEAO + פרנק CFA BCEAO + פרנק CFA BCEAO + פרנק CFA BCEAO + פרנק CFA BCEAO CFA @@ -6407,6 +6558,7 @@ For terms of use, see http://www.unicode.org/copyright.html ראנד דרום אפריקאי ראנד דרום אפריקאי ZAR + R קוואצ׳ה זמבית (1968–2012) @@ -6418,6 +6570,7 @@ For terms of use, see http://www.unicode.org/copyright.html קוואצ׳ה זמבית קוואצ׳ה זמבית ZMW + ZK זאיר חדש @@ -6434,7 +6587,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0} לכל {1} + {0} לכל {1} כוח ג׳י @@ -6444,25 +6597,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} כוחות ג׳י - מטר לשנייה בריבוע - {0} מטר לשנייה בריבוע - {0} מטר לשנייה בריבוע - {0} מטר לשנייה בריבוע - {0} מטר לשנייה בריבוע + מטר לשנייה בריבוע + {0} מטר לשנייה בריבוע + {0} מטר לשנייה בריבוע + {0} מטר לשנייה בריבוע + {0} מטר לשנייה בריבוע - - דקות קשת - דקה {0} - {0} דקות - {0} דקות - {0} דקות + + סיבוב + סיבוב {0} + {0} סיבובים + {0} סיבובים + {0} סיבובים - - שניות קשת - שנייה {0} - {0} שניות - {0} שניות - {0} שניות + + רדיאנים + רדיאן אחד + שני רדיאנים + {0} רדיאנים + {0} רדיאנים מעלות @@ -6471,110 +6624,127 @@ For terms of use, see http://www.unicode.org/copyright.html {0} מעלות {0} מעלות - - רדיאנים - רדיאן אחד - שני רדיאנים - {0} רדיאנים - {0} רדיאנים + + דקות קשת + דקת קשת {0} + {0} דקות קשת + {0} דקות קשת + {0} דקות קשת - - אקר - אקר {0} - {0} אקר - {0} אקר - {0} אקר - - - הקטאר - הקטאר {0} - {0} הקטאר - {0} הקטאר - {0} הקטאר - - - סנטימטר רבוע - {0} סנטימטר רבוע - {0} סנטימטר רבוע - {0} סנטימטר רבוע - {0} סנטימטר רבוע - - - רגל רבועה - רגל רבועה {0} - {0} רגל רבועה - {0} רגל רבועה - {0} רגל רבועה - - - אינצ׳ רבוע - {0} אינצ׳ רבוע - {0} אינצ׳ רבוע - {0} אינצ׳ רבוע - {0} אינצ׳ רבוע + + שניות קשת + שניית קשת {0} + {0} שניות קשת + {0} שניות קשת + {0} שניות קשת קילומטר רבוע - קילומטר רבוע {0} - {0} קילומטר רבוע - {0} קילומטר רבוע - {0} קילומטר רבוע + קילומטר רבוע {0} + {0} קילומטר רבוע + {0} קילומטר רבוע + {0} קילומטר רבוע + + + הקטאר + הקטאר {0} + {0} הקטאר + {0} הקטאר + {0} הקטאר מטר רבוע - מטר רבוע {0} - {0} מטר רבוע - {0} מטר רבוע - {0} מטר רבוע + מטר רבוע {0} + {0} מטר רבוע + {0} מטר רבוע + {0} מטר רבוע + {0}/מטר רבוע + + + סנטימטר רבוע + סנטימטר רבוע {0} + {0} סנטימטר רבוע + {0} סנטימטר רבוע + {0} סנטימטר רבוע + {0}/סנטימטר רבוע מייל רבוע - מייל רבוע {0} - {0} מייל רבוע - {0} מייל רבוע - {0} מייל רבוע + מייל רבוע {0} + {0} מייל רבוע + {0} מייל רבוע + {0} מייל רבוע + + + אקר + אקר {0} + {0} אקר + {0} אקר + {0} אקר יארד רבוע - {0} יארד רבוע - {0} יארד רבוע - {0} יארד רבוע - {0} יארד רבוע + {0} יארד רבוע + {0} יארד רבוע + {0} יארד רבוע + {0} יארד רבוע + + + רגל רבועה + רגל רבועה {0} + {0} רגל רבועה + {0} רגל רבועה + {0} רגל רבועה + + + אינצ׳ רבוע + {0} אינץ׳ רבוע + {0} אינץ׳ רבוע + {0} אינץ׳ רבוע + {0} אינץ׳ רבוע + {0}/אינץ׳ רבוע + + + קראט + קראט אחד + {0} קראט + {0} קראט + {0} קראט ליטרים/קילומטר - {0} ליטר/קילומטר - {0} ליטרים/קילומטר - {0} ליטרים/קילומטר - {0} ליטרים/קילומטר + {0} ליטר/קילומטר + {0} ליטרים/קילומטר + {0} ליטרים/קילומטר + {0} ליטרים/קילומטר + + + ליטר/100 ק״מ + ליטר/100 ק״מ + {0} ליטר/100 ק״מ + {0} ליטר/100 ק״מ + {0} ליטר/100 ק״מ מייל/גלון - {0} מייל/גלון - {0} מייל/גלון - {0} מייל/גלון - {0} מייל/גלון + {0} מייל/גלון + {0} מייל/גלון + {0} מייל/גלון + {0} מייל/גלון - - סיביות - {0} סיבית - {0} סיביות - {0} סיביות - {0} סיביות + + טרה-בתים + טרה-בית {0} + {0} טרה-בתים + {0} טרה-בתים + {0} טרה-בתים - - בתים - {0} בית - {0} בתים - {0} בתים - {0} בתים - - - גיגהסיביות - {0} גיגהסיבית - {0} גיגהסיביות - {0} גיגהסיביות - {0} גיגהסיביות + + טרה-סיביות + טרה-סיבית {0} + {0} טרה-סיביות + {0} טרה-סיביות + {0} טרה-סיביות ג׳יגה-בייט @@ -6583,12 +6753,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ג׳יגה-בייט {0} ג׳יגה-בייט - - קילוסיביות - {0} קילוסיבית - {0} קילוסיביות - {0} קילוסיביות - {0} קילוסיביות + + גיגהסיביות + {0} גיגהסיבית + {0} גיגהסיביות + {0} גיגהסיביות + {0} גיגהסיביות + + + מגה-בתים + מגה-בית {0} + {0} מגה-בתים + {0} מגה-בתים + {0} מגה-בתים + + + מגה-סיביות + מגה-סיבית {0} + {0} מגה-סיביות + {0} מגה-סיביות + {0} מגה-סיביות קילו-בייט @@ -6597,33 +6781,57 @@ For terms of use, see http://www.unicode.org/copyright.html {0} קילו-בייט {0} קילו-בייט - - מגהסיביות - {0} מגהסיבית - {0} מגהסיביות - {0} מגהסיביות - {0} מגהסיביות + + קילוסיביות + {0} קילוסיבית + {0} קילוסיביות + {0} קילוסיביות + {0} קילוסיביות - - מגה-בייט - {0} מגה-בייט - {0} מגה-בייט - {0} מגה-בייט - {0} מגה-בייט + + בתים + בית {0} + {0} בתים + {0} בתים + {0} בתים - - טרהסיביות - {0} טרהסיבית - {0} טרהסיביות - {0} טרהסיביות - {0} טרהסיביות + + סיביות + סיבית {0} + {0} סיביות + {0} סיביות + {0} סיביות - - טרה-בייט - {0} טרה-בייט - {0} טרה-בייט - {0} טרה-בייט - {0} טרה-בייט + + מאות + מאה {0} + {0} מאות + {0} מאות + {0} מאות + + + שנים + שנה + שנתיים + {0} שנה + {0} שנים + ‏{0} לשנה + + + חודשים + חודש + חודשיים + {0} חודשים + {0} חודשים + ‏{0} לחודש + + + שבועות + שבוע + שבועיים + {0} שבועות + {0} שבועות + {0}/שבוע ימים @@ -6631,6 +6839,7 @@ For terms of use, see http://www.unicode.org/copyright.html יומיים {0} יום {0} ימים + {0}/יום שעות @@ -6640,40 +6849,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} שעות {0} לשעה - - מיליוניות שנייה - {0} מיליונית שנייה - {0} מיליוניות שנייה - {0} מיליוניות שנייה - {0} מיליוניות שנייה - - - אלפיות השניה - אלפית שנייה {0} - {0} אלפיות שנייה - {0} אלפיות שנייה - {0} אלפיות שנייה - דקות דקה שתי דקות {0} דקות {0} דקות - - - חודשים - חודש - חודשיים - {0} חודשים - {0} חודשים - - - ננו שניות - {0} ננו שנייה - {0} ננו שניות - {0} ננו שניות - {0} ננו שניות + {0}/דקה שניות @@ -6683,131 +6865,140 @@ For terms of use, see http://www.unicode.org/copyright.html {0} שניות {0} לשניה - - שבועות - שבוע - שבועיים - {0} שבועות - {0} שבועות + + אלפיות השניה + אלפית שנייה {0} + {0} אלפיות שנייה + {0} אלפיות שנייה + {0} אלפיות שנייה - - שנים - שנה - שנתיים - {0} שנה - {0} שנים + + מיליוניות שנייה + {0} מיליונית שנייה + {0} מיליוניות שנייה + {0} מיליוניות שנייה + {0} מיליוניות שנייה + + + ננו שניות + {0} ננו שנייה + {0} ננו שניות + {0} ננו שניות + {0} ננו שניות - אמפר - {0} אמפר - {0} אמפר - {0} אמפר - {0} אמפר + אמפר + אמפר {0} + {0} אמפר + {0} אמפר + {0} אמפר - מיליאמפר - {0} מיליאמפר - {0} מיליאמפר - {0} מיליאמפר - {0} מיליאמפר + מיליאמפר + מיליאמפר {0} + {0} מיליאמפר + {0} מיליאמפר + {0} מיליאמפר - ohms - {0} ohm - {0} ohms - {0} ohms - {0} ohms + ohms + {0} ohm + {0} ohms + {0} ohms + {0} ohms - וולט - {0} וולט - {0} וולט - {0} וולט - {0} וולט - - - קלוריות - {0} קלוריה - {0} קלוריות - {0} קלוריות - {0} קלוריות - - - קלוריות - {0} קלוריה - {0} קלוריות - {0} קלוריות - {0} קלוריות - - - ג׳אול - {0} ג׳אול - {0} ג׳אול - {0} ג׳אול - {0} ג׳אול + וולט + וולט {0} + {0} וולט + {0} וולט + {0} וולט קילו קלוריות - {0} קילו קלוריה - {0} קילו קלוריות - {0} קילו קלוריות - {0} קילו קלוריות + קילו קלוריה {0} + {0} קילו קלוריות + {0} קילו קלוריות + {0} קילו קלוריות + + + קלוריות + קלוריה {0} + {0} קלוריות + {0} קלוריות + {0} קלוריות + + + קלוריות + קלוריה {0} + {0} קלוריות + {0} קלוריות + {0} קלוריות - קילו ג׳אול - {0} קילו ג׳אול - {0} קילו ג׳אול - {0} קילו ג׳אול - {0} קילו ג׳אול + קילו ג׳אול + קילו ג׳אול {0} + {0} קילו ג׳אול + {0} קילו ג׳אול + {0} קילו ג׳אול + + + ג׳אול + {0} ג׳אול + {0} ג׳אול + {0} ג׳אול + {0} ג׳אול - קילוואט־שעה - {0} קילוואט־שעה - {0} קילוואט-שעה - {0} קילוואט-שעה - {0} קילוואט-שעה + קילוואט־שעה + קילוואט־שעה {0} + {0} קילוואט-שעה + {0} קילוואט-שעה + {0} קילוואט-שעה - גיגהרץ - {0} גיגהרץ - {0} גיגהרץ - {0} גיגהרץ - {0} גיגהרץ - - - הרץ - {0} הרץ - {0} הרץ - {0} הרץ - {0} הרץ - - - קילוהרץ - {0} קילוהרץ - {0} קילוהרץ - {0} קילוהרץ - {0} קילוהרץ + ג׳יגה-הרץ + ג׳יגה-הרץ {0} + {0} ג׳יגה-הרץ + {0} ג׳יגה-הרץ + {0} ג׳יגה-הרץ - מגהרץ - {0} מגהרץ - {0} מגהרץ - {0} מגהרץ - {0} מגהרץ + מגה-הרץ + מגה-הרץ {0} + {0} מגה-הרץ + {0} מגה-הרץ + {0} מגה-הרץ - - יחידות אסטרונומיות - יחידה אסטרונומית אחת - שתי יחידת אסטרונומיות - {0} יחידות אסטרונומיות - {0} יחידות אסטרונומיות + + קילו-הרץ + קילו-הרץ {0} + {0} קילו-הרץ + {0} קילו-הרץ + {0} קילו-הרץ - - סנטימטרים - סנטימטר אחד - שני סנטימטרים - {0} סנטימטר - {0} סנטימטרים + + הרץ + הרץ {0} + {0} הרץ + {0} הרץ + {0} הרץ + + + קילומטרים + קילומטר {0} + {0} ק״מ + {0} ק״מ + {0} ק״מ + {0}/ק״מ + + + מטרים + מטר אחד + שני מטר + {0} מטר + {0} מטרים + {0}/מטר דצימטר @@ -6816,54 +7007,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} דצימטר {0} דצימטרים - - רגל - רגל {0} - {0} רגל - {0} רגל - {0} רגל - - - אינץ׳ - אינץ׳ {0} - {0} אינץ׳ - {0} אינץ׳ - {0} אינץ׳ - - - קילומטרים - קילומטר {0} - {0} קילומטר - {0} קילומטר - {0} קילומטר - - - שנות אור - שנת אור {0} - {0} שנות אור - {0} שנות אור - {0} שנות אור - - - מטרים - מטר אחד - שני מטר - {0} מטר - {0} מטרים - - - מיקרומטר - מיקרומטר אחד - שני מיקרומטרים - {0} מיקרומטר - {0} מיקרומטרים - - - מייל - {0} מייל - {0} מייל - {0} מייל - {0} מייל + + סנטימטרים + סנטימטר אחד + שני סנטימטרים + {0} סנטימטר + {0} סנטימטרים + {0}/סנטימטר מילימטר @@ -6872,33 +7022,33 @@ For terms of use, see http://www.unicode.org/copyright.html {0} מילימטר {0} מילימטר + + מיקרומטר + מיקרומטר אחד + שני מיקרומטרים + {0} מיקרומטר + {0} מיקרומטרים + - ננומטר - {0} ננומטר - {0} ננומטר - {0} ננומטר - {0} ננומטר - - - מייל ימי - {0} מייל ימי - {0} מייל ימי - {0} מייל ימי - {0} מייל ימי - - - פארסק - {0} פארסק - {0} פארסק - {0} פארסק - {0} פארסק + ננומטר + ננומטר {0} + {0} ננומטר + {0} ננומטר + {0} ננומטר - פיקומטר - פיקומטר {0} - {0} פיקומטר - {0} פיקומטר - {0} פיקומטר + פיקומטר + פיקומטר {0} + {0} פיקומטר + {0} פיקומטר + {0} פיקומטר + + + מייל + {0} מייל + {0} מייל + {0} מייל + {0} מייל יארד @@ -6907,138 +7057,207 @@ For terms of use, see http://www.unicode.org/copyright.html {0} יארד {0} יארד + + רגל + רגל {0} + {0} רגל + {0} רגל + {0} רגל + {0}/רגל + + + אינץ׳ + אינץ׳ {0} + {0} אינץ׳ + {0} אינץ׳ + {0} אינץ׳ + {0}/אינץ׳ + + + פארסק + פארסק {0} + {0} פארסק + {0} פארסק + {0} פארסק + + + שנות אור + שנת אור {0} + {0} שנות אור + {0} שנות אור + {0} שנות אור + + + יחידות אסטרונומיות + יחידה אסטרונומית אחת + שתי יחידת אסטרונומיות + {0} יחידות אסטרונומיות + {0} יחידות אסטרונומיות + + + מייל ימי + {0} מייל ימי + {0} מייל ימי + {0} מייל ימי + {0} מייל ימי + + + מייל-סקנדינביה + מייל-סקנדינביה {0} + {0} מייל-סקנדינביה + {0} מייל-סקנדינביה + {0} מייל-סקנדינביה + לוקס - לוקס אחד - שני לוקס - {0} לוקס - {0} לוקס + לוקס אחד + {0} לוקס + {0} לוקס + {0} לוקס - - קרט - קרט אחד - שני קרט - {0} קרט - {0} קרט - - - גרם - גרם {0} - {0} גרם - {0} גרם - {0} גרם + + טון מטרי + טון מטרי אחד + שני טון מטרי + {0} טון מטרי + {0} טון מטרי קילוגרם - קילוגרם {0} - {0} קילוגרם - {0} קילוגרם - {0} קילוגרם + קילוגרם {0} + {0} קילוגרם + {0} קילוגרם + {0} קילוגרם + {0}/קילוגרם - - טון מטרי - טון מטרי אחד - שני טון מטרי - {0} טון מטרי - {0} טון מטרי - - - מיקרוגרם - מיקרוגרם אחד - שני מיקרוגרם - {0} מיקרוגרם - {0} מיקרוגרם + + גרם + גרם {0} + {0} גרם + {0} גרם + {0} גרם + {0}/גרם מיליגרם - מיליגרם אחד - שני מיליגרם - {0} מיליגרם - {0} מיליגרם + מיליגרם אחד + שני מיליגרם + {0} מיליגרם + {0} מיליגרם + + + מיקרוגרם + מיקרוגרם אחד + שני מיקרוגרם + {0} מיקרוגרם + {0} מיקרוגרם + + + טונות + טון אחד + שני טונות + {0} טונות + {0} טונות + + + פאונד + פאונד אחד + שני פאונד + {0} פאונד + {0} פאונד + {0}/פאונד אונקיות - אונקיה {0} - {0} אונקיות - {0} אונקיות - {0} אונקיות + אונקיה {0} + {0} אונקיות + {0} אונקיות + {0} אונקיות + {0}/אונקיה - אונקיות טרוי - אונקיית טרוי אחת - שתי אונקיות טרוי - {0} אונקיות טרוי - {0} אונקיות טרוי + אונקיות טרוי + אונקיית טרוי אחת + שתי אונקיות טרוי + {0} אונקיות טרוי + {0} אונקיות טרוי - - ליבראות - ליברה {0} - {0} ליבראות - {0} ליבראות - {0} ליבראות - - - טונות - טון אחד - שני טונות - {0} טונות - {0} טונות + + קרט + קרט אחד + שני קרט + {0} קרט + {0} קרט - ג׳יגה ואט - {0} ג׳יגה ואט - {0} ג׳יגה ואט - {0} ג׳יגה ואט - {0} ג׳יגה ואט - - - כוח סוס - כוח סוס {0} - {0} כוח סוס - {0} כוח סוס - {0} כוח סוס - - - קילוואט - קילוואט {0} - {0} קילוואט - {0} קילוואט - {0} קילוואט + ג׳יגה ואט + ג׳יגה ואט {0} + {0} ג׳יגה ואט + {0} ג׳יגה ואט + {0} ג׳יגה ואט - מגה ואט - {0} מגה ואט - {0} מגה ואט - {0} מגה ואט - {0} מגה ואט + מגה ואט + מגה ואט {0} + {0} מגה ואט + {0} מגה ואט + {0} מגה ואט - - מיליוואט - {0} מיליוואט - {0} מיליוואט - {0} מיליוואט - {0} מיליוואט + + קילוואט + קילוואט {0} + {0} קילוואט + {0} קילוואט + {0} קילוואט - ואט - ואט {0} - {0} ואט - {0} ואט - {0} ואט + ואט + ואט {0} + {0} ואט + {0} ואט + {0} ואט + + + מיליוואט + מיליוואט {0} + {0} מיליוואט + {0} מיליוואט + {0} מיליוואט + + + כוח סוס + כוח סוס {0} + {0} כוח סוס + {0} כוח סוס + {0} כוח סוס הקטופסקל - הקטופסקל {0} - {0} הקטופסקל - {0} הקטופסקל - {0} הקטופסקל + הקטופסקל {0} + {0} הקטופסקל + {0} הקטופסקל + {0} הקטופסקל + + + מילימטר כספית + מילימטר כספית אחד + שני מילימטר כספית + {0} מילימטר כספית + {0} מילימטר כספית + + + פאונד לאינץ׳ רבוע + פאונד אחד לאינץ׳ רבוע + שני פאונד לאינץ׳ רבוע + {0} פאונד לאינץ׳ רבוע + {0} פאונד לאינץ׳ רבוע אינץ׳ כספית - אינץ׳ כספית {0} - {0} אינץ׳ כספית - {0} אינץ׳ כספית - {0} אינץ׳ כספית + אינץ׳ כספית {0} + {0} אינץ׳ כספית + {0} אינץ׳ כספית + {0} אינץ׳ כספית מיליבר @@ -7047,201 +7266,212 @@ For terms of use, see http://www.unicode.org/copyright.html {0} מיליבר {0} מיליבר - - מילימטר כספית - מילימטר כספית אחד - שני מילימטר כספית - {0} מילימטר כספית - {0} מילימטר כספית - - - פאונד לאינץ׳ רבוע - פאונד אחד לאינץ׳ רבוע - שני פאונד לאינץ׳ רבוע - {0} פאונד לאינץ׳ רבוע - {0} פאונד לאינץ׳ רבוע - - - קראט - קראט אחד - שני קראט - {0} קראט - {0} קראט - - קילומטר לשעה - {0} קילומטר לשעה - {0} קילומטר לשעה - {0} קילומטר לשעה - {0} קילומטר לשעה + קילומטר לשעה + {0} קילומטר לשעה + {0} קילומטר לשעה + {0} קילומטר לשעה + {0} קילומטר לשעה - מטר לשנייה - {0} מטר לשנייה - {0} מטר לשנייה - {0} מטר לשנייה - {0} מטר לשנייה + מטר לשנייה + {0} מטר לשנייה + {0} מטר לשנייה + {0} מטר לשנייה + {0} מטר לשנייה מייל לשעה - {0} מייל לשעה - {0} מייל לשעה - {0} מייל לשעה - {0} מייל לשעה + {0} מייל לשעה + {0} מייל לשעה + {0} מייל לשעה + {0} מייל לשעה + + + קשר + קשר אחד + שני קשר + {0} קשר + {0} קשר + + + ° + {0}° + {0}° + {0}° + {0}° מעלות צלזיוס - מעלת צלזיוס {0} - {0} מעלות צלזיוס - {0} מעלות צלזיוס - {0} מעלות צלזיוס + מעלת צלזיוס {0} + {0} מעלות צלזיוס + {0} מעלות צלזיוס + {0} מעלות צלזיוס מעלות פרנהייט - מעלת פרנהייט {0} - {0} מעלות פרנהייט - {0} מעלות פרנהייט - {0} מעלות פרנהייט + מעלת פרנהייט {0} + {0} מעלות פרנהייט + {0} מעלות פרנהייט + {0} מעלות פרנהייט מעלות קלווין - קלווין אחד - שני קלווין - {0} קלווין - {0} קלווין - - - אקר-רגל - {0} אקר-רגל - {0} אקר-רגל - {0} אקר-רגל - {0} אקר-רגל - - - סנטיליטר - {0} סנטיליטר - {0} סנטיליטר - {0} סנטיליטר - {0} סנטיליטר - - - סנטימטר מעוקב - {0} סנטימטר מעוקב - {0} סנטימטר מעוקב - {0} סנטימטר מעוקב - {0} סנטימטר מעוקב - - - רגל מעוקב - {0} רגל מעוקב - {0} רגל מעוקב - {0} רגל מעוקב - {0} רגל מעוקב - - - אינצ׳ מעוקב - {0} אינצ׳ מעוקב - {0} אינצ׳ מעוקב - {0} אינצ׳ מעוקב - {0} אינצ׳ מעוקב + קלווין אחד + שני קלווין + {0} קלווין + {0} קלווין - קילומטר מעוקב - {0} קילומטר מעוקב - {0} קילומטר מעוקב - {0} קילומטר מעוקב - {0} קילומטר מעוקב + קילומטר מעוקב + קילומטר מעוקב {0} + {0} קילומטר מעוקב + {0} קילומטר מעוקב + {0} קילומטר מעוקב - מטר מעוקב - {0} מטר מעוקב - {0} מטר מעוקב - {0} מטר מעוקב - {0} מטר מעוקב + מטר מעוקב + מטר מעוקב {0} + {0} מטר מעוקב + {0} מטר מעוקב + {0} מטר מעוקב + {0}/מטר מעוקב + + + סנטימטר מעוקב + סנטימטר מעוקב {0} + {0} סנטימטר מעוקב + {0} סנטימטר מעוקב + {0} סנטימטר מעוקב + {0}/סנטימטר מעוקב - מייל מעוקב - {0} מייל מעוקב - {0} מייל מעוקב - {0} מייל מעוקב - {0} מייל מעוקב + מייל מעוקב + מייל מעוקב {0} + {0} מייל מעוקב + {0} מייל מעוקב + {0} מייל מעוקב - יארד מעוקב - {0} יארד מעוקב - {0} יארד מעוקב - {0} יארד מעוקב - {0} יארד מעוקב + יארד מעוקב + {0} יארד מעוקב + {0} יארד מעוקב + {0} יארד מעוקב + {0} יארד מעוקב - - ספל - {0} ספל - {0} ספלים - {0} ספלים - {0} ספלים + + רגל מעוקב + רגל מעוקב {0} + {0} רגל מעוקב + {0} רגל מעוקב + {0} רגל מעוקב - - דציליטר - {0} דציליטר - {0} דציליטר - {0} דציליטר - {0} דציליטר - - - אונקיות נוזלים - {0} אונקיית נוזלים - {0} אונקיות נוזלים - {0} אונקיות נוזלים - {0} אונקיות נוזלים - - - גלונים - {0} גלון - {0} גלונים - {0} גלונים - {0} גלונים - - - הקטוליטר - {0} הקטוליטר - {0} הקטוליטר - {0} הקטוליטר - {0} הקטוליטר - - - ליטרים - {0} ליטר - {0} ליטר - {0} ליטר - {0} ליטר + + אינץ׳ מעוקב + אינץ׳ מעוקב {0} + {0} אינץ׳ מעוקב + {0} אינץ׳ מעוקב + {0} אינץ׳ מעוקב - מגה ליטר - {0} מגה ליטר - {0} מגה ליטר - {0} מגה ליטר - {0} מגה ליטר + מגה ליטר + מגה ליטר {0} + {0} מגה ליטר + {0} מגה ליטר + {0} מגה ליטר + + + הקטוליטר + הקטוליטר {0} + {0} הקטוליטר + {0} הקטוליטר + {0} הקטוליטר + + + ליטר + ליטר {0} + {0} ליטר + {0} ליטר + {0} ליטר + {0}/ליטר + + + דציליטר + דציליטר {0} + {0} דציליטר + {0} דציליטר + {0} דציליטר + + + סנטיליטר + סנטיליטר {0} + {0} סנטיליטר + {0} סנטיליטר + {0} סנטיליטר - מיליליטר - {0} מיליליטר - {0} מיליליטר - {0} מיליליטר - {0} מיליליטר + מיליליטר + מיליליטר {0} + {0} מיליליטר + {0} מיליליטר + {0} מיליליטר - - פינטות - {0} פינט - {0} פינטות - {0} פינטות - {0} פינטות + + פינט מטרי + פינט מטרי {0} + {0} פינט מטרי + {0} פינט מטרי + {0} פינט מטרי + + + כוס מידה מטרית + כוס מידה מטרית {0} + {0} כ׳ מידה מטרית + {0} כ׳ מידה מטרית + {0} כ׳ מידה מטרית + + + אקר-רגל + אקר-רגל {0} + {0} אקר-רגל + {0} אקר-רגל + {0} אקר-רגל + + + גלון + גלון {0} + {0} גלונים + {0} גלונים + {0} גלונים + {0}/גלון - קווארטות - {0} קווארטה - {0} קווארטות - {0} קווארטות - {0} קווארטות + קווארטות + קווארטה {0} + {0} קווארטות + {0} קווארטות + {0} קווארטות + + + פינט + פינט {0} + {0} פינט + {0} פינט + {0} פינט + + + כוסות + כוס {0} + {0} כוסות + {0} כוסות + {0} כוסות + + + אונקיות נוזלים + אונקיית נוזלים {0} + {0} אונקיות נוזלים + {0} אונקיות נוזלים + {0} אונקיות נוזלים כפות @@ -7252,50 +7482,42 @@ For terms of use, see http://www.unicode.org/copyright.html כפיות - {0} כפית - {0} כפיות - {0} כפיות - {0} כפיות + כפית {0} + {0} כפיות + {0} כפיות + {0} כפיות + + {0}מזרח + {0}צפון + {0}דרום + {0}מערב + - {0}/{1} + {0}/{1} כוח ג׳י - {0} G - {0} G - {0} G - {0} G + {0} G + {0} G + {0} G + {0} G - m/s² - {0} m/s² - {0} m/s² - {0} m/s² - {0} m/s² + m/s² + {0} m/s² + {0} m/s² + {0} m/s² + {0} m/s² - - דק׳ קשת - דקה {0} - {0} דקות - {0} דקות - {0} דקות - - - שנ׳ קשת - שנייה {0} - {0} שניות - {0} שניות - {0} שניות - - - מעלות - {0}° - {0}° - {0}° - {0}° + + ס׳ + {0} ס׳ + {0} ס׳ + {0} ס׳ + {0} ס׳ רדיאנים @@ -7304,40 +7526,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} π {0} π - - אקר - אקר {0} - {0} אקר - {0} אקר - {0} אקר + + מעלות + {0}° + {0}° + {0}° + {0}° - - הקטאר - הקטאר {0} - {0} הקטאר - {0} הקטאר - {0} הקטאר + + דק׳ קשת + ד׳ קשת {0} + {0} דק׳ קשת + {0} דק׳ קשת + {0} דק׳ קשת - - סמ״ר - {0} סמ״ר - {0} סמ״ר - {0} סמ״ר - {0} סמ״ר - - - ft² - רגל רבועה {0} - {0} רגל רבועה - {0} רגל רבועה - {0} רגל רבועה - - - in² - {0} in² - {0} in² - {0} in² - {0} in² + + שנ׳ קשת + שנ׳ קשת {0} + {0} שנ׳ קשת + {0} שנ׳ קשת + {0} שנ׳ קשת קמ״ר @@ -7346,103 +7554,92 @@ For terms of use, see http://www.unicode.org/copyright.html {0} קמ״ר {0} קמ״ר + + הקטאר + הקטאר {0} + {0} הקטאר + {0} הקטאר + {0} הקטאר + מ״ר - מ״ר {0} - {0} מ״ר - {0} מ״ר - {0} מ״ר + מ״ר {0} + {0} מ״ר + {0} מ״ר + {0} מ״ר + {0}/מ״ר + + + סמ״ר + {0} סמ״ר + {0} סמ״ר + {0} סמ״ר + {0} סמ״ר + {0}/סמ״ר - mi² + מייל רבוע מייל רבוע {0} {0} מייל רבוע {0} מייל רבוע {0} מייל רבוע + + אקר + אקר {0} + {0} אקר + {0} אקר + {0} אקר + - yd² - {0} yd² - {0} yd² - {0} yd² - {0} yd² + yd² + {0} yd² + {0} yd² + {0} yd² + {0} yd² + + + ft² + {0} sq ft + {0} sq ft + {0} sq ft + {0} sq ft + + + in² + {0} in² + {0} in² + {0} in² + {0} in² + {0}/in² + + + kt + {0} kt + {0} kt + {0} kt + {0} kt ליטרים/ק״מ - {0} L/km - {0} L/km - {0} L/km - {0} L/km + {0} ל׳/ק״מ + {0} ל׳/ק״מ + {0} ל׳/ק״מ + {0} ל׳/ק״מ + + + ל׳/100 ק״מ + ל׳ {0}/100 ק״מ + {0} ל׳/100 ק״מ + {0} ל׳/100 ק״מ + {0} ל׳/100 ק״מ מייל/גלון - {0} מייל/גלון - {0} מייל/גלון - {0} מייל/גלון - {0} מייל/גלון - - - ביט - {0} ביט - {0} ביט - {0} ביט - {0} ביט - - - בייט - {0} בייט - {0} בייט - {0} בייט - {0} בייט - - - Gbit - {0} Gb - {0} Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - {0} Tb - {0} Tb + {0} mpg + {0} mpg + {0} mpg + {0} mpg TB @@ -7451,12 +7648,107 @@ For terms of use, see http://www.unicode.org/copyright.html {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + {0} GB + {0} GB + + + Gbit + {0} Gb + {0} Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + {0} MB + {0} MB + + + Mbit + {0} Mb + {0} Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + {0} kb + {0} kb + + + בייט + {0} בייט + {0} בייט + {0} בייט + {0} בייט + + + ביט + {0} ביט + {0} ביט + {0} ביט + {0} ביט + + + מאות + מאה {0} + {0} מאות + {0} מאות + {0} מאות + + + שנים + שנה + שנתיים + {0} שנה + {0} שנים + {0}/שנה + + + חודשים + חודש + חודשיים + {0} ח׳ + {0} ח׳ + {0}/חודש + + + שבועות + שבוע {0} + שבועיים + {0} שבועות + {0} שבועות + {0}/שבוע + ימים יום יומיים {0} ימ׳ {0} ימ׳ + {0}/יום שע׳ @@ -7466,40 +7758,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} שע׳ {0}/שעה - - μsecs - {0} μs - {0} μs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - {0} ms - {0} ms - דק׳ דקה שתי דק׳ {0} דק׳ {0} דק׳ - - - חודשים - חודש - חודשיים - {0} ח׳ - {0} ח׳ - - - ננו שניות - {0} ns - {0} ns - {0} ns - {0} ns + {0}/דק׳ שנ׳ @@ -7509,47 +7774,61 @@ For terms of use, see http://www.unicode.org/copyright.html {0} שנ׳ {0}/שנ׳ - - שבועות - שבוע {0} - {0} שבועות - {0} שבועות - {0} שבועות + + ms + {0} ms + {0} ms + {0} ms + {0} ms - - שנים - שנה - שנתיים - {0} שנה - {0} שנים + + μsecs + {0} μs + {0} μs + {0} μs + {0} μs + + + ננו שניות + {0} ns + {0} ns + {0} ns + {0} ns - amps - {0} A - {0} A - {0} A - {0} A + amps + {0} A + {0} A + {0} A + {0} A - mA - {0} mA - {0} mA - {0} mA - {0} mA + mA + {0} mA + {0} mA + {0} mA + {0} mA - ohms - {0} Ω - {0} Ω - {0} Ω - {0} Ω + ohms + {0} Ω + {0} Ω + {0} Ω + {0} Ω - וולט - {0} V - {0} V - {0} V - {0} V + וולט + {0} V + {0} V + {0} V + {0} V + + + kcal + {0} kcal + {0} kcal + {0} kcal + {0} kcal cal @@ -7565,75 +7844,70 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - ג׳אול - {0} J - {0} J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - {0} kcal - {0} kcal - - קילו ג׳אול - {0} kJ - {0} kJ - {0} kJ - {0} kJ + קילו ג׳אול + {0} kJ + {0} kJ + {0} kJ + {0} kJ + + + ג׳אול + {0} J + {0} J + {0} J + {0} J - קוט״ש + קוט״ש {0} קוט״ש {0} קוט״ש {0} קוט״ש {0} קוט״ש - GHz - {0} GHz - {0} GHz - {0} GHz - {0} GHz - - - Hz - {0} Hz - {0} Hz - {0} Hz - {0} Hz - - - kHz - {0} kHz - {0} kHz - {0} kHz - {0} kHz + GHz + {0} GHz + {0} GHz + {0} GHz + {0} GHz - MHz - {0} MHz - {0} MHz - {0} MHz - {0} MHz + MHz + {0} MHz + {0} MHz + {0} MHz + {0} MHz - - י״א - י״א אחת - שתי י״א - {0} י״א - {0} י״א + + kHz + {0} kHz + {0} kHz + {0} kHz + {0} kHz - - ס״מ - ס״מ אחד - שני ס״מ - {0} ס״מ - {0} ס״מ + + Hz + {0} Hz + {0} Hz + {0} Hz + {0} Hz + + + ק״מ + ק״מ {0} + {0} ק״מ + {0} ק״מ + {0} ק״מ + {0}/ק״מ + + + מטרים + מ׳ אחד + שני מ׳ + {0} מ׳ + {0} מ׳ + {0}/מ׳ ד״מ @@ -7642,54 +7916,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ד״מ {0} ד״מ - - רגל - רגל {0} - {0} רגל - {0} רגל - {0} רגל - - - אינץ׳ - אינץ׳ {0} - {0} אינץ׳ - {0} אינץ׳ - {0} אינץ׳ - - - ק״מ - ק״מ {0} - {0} ק״מ - {0} ק״מ - {0} ק״מ - - - שנות אור - שנת אור {0} - {0} שנות אור - {0} שנות אור - {0} שנות אור - - - מטרים - מ׳ אחד - שני מ׳ - {0} מ׳ - {0} מ׳ - - - µm - {0} µm - {0} µm - {0} µm - {0} µm - - - מייל - {0} מייל - {0} מייל - {0} מייל - {0} מייל + + ס״מ + ס״מ אחד + שני ס״מ + {0} ס״מ + {0} ס״מ + {0}/ס״מ מ״מ @@ -7698,12 +7931,77 @@ For terms of use, see http://www.unicode.org/copyright.html {0} מ״מ {0} מ״מ + + µm + {0} µm + {0} µm + {0} µm + {0} µm + - nm - {0} nm - {0} nm - {0} nm - {0} nm + nm + {0} nm + {0} nm + {0} nm + {0} nm + + + pm + פיקומטר {0} + {0} פיקומטר + {0} פיקומטר + {0} פיקומטר + + + מייל + {0} מייל + {0} מייל + {0} מייל + {0} מייל + + + יארד + יארד {0} + {0} יארד + {0} יארד + {0} יארד + + + רגל + רגל {0} + {0} רגל + {0} רגל + {0} רגל + {0}/ft + + + אינץ׳ + אינץ׳ {0} + {0} אינץ׳ + {0} אינץ׳ + {0} אינץ׳ + {0} in + + + pc + {0} pc + {0} pc + {0} pc + {0} pc + + + שנות אור + שנת אור {0} + {0} שנות אור + {0} שנות אור + {0} שנות אור + + + י״א + י״א אחת + שתי י״א + {0} י״א + {0} י״א מ״י @@ -7712,61 +8010,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} מ״י {0} מ״י - - pc - {0} pc - {0} pc - {0} pc - {0} pc - - - pm - פיקומטר {0} - {0} פיקומטר - {0} פיקומטר - {0} פיקומטר - - - יארד - יארד {0} - {0} יארד - {0} יארד - {0} יארד + + smi + {0} smi + {0} smi + {0} smi + {0} smi - lx - {0} lx - {0} lx - {0} lx - {0} lx + lux + {0} lx + {0} lx + {0} lx + {0} lx - - קרט - {0} CD - {0} CD - {0} CD - {0} CD - - - גרם - גר׳ {0} - {0} גר׳ - {0} גר׳ - {0} גר׳ + + t + {0} t + {0} t + {0} t + {0} t ק״ג - ק״ג {0} - {0} ק״ג - {0} ק״ג - {0} ק״ג + ק״ג {0} + {0} ק״ג + {0} ק״ג + {0} ק״ג + {0}/ק״ג - - t - {0} t - {0} t - {0} t - {0} t + + גרם + גר׳ {0} + {0} גר׳ + {0} גר׳ + {0} גר׳ + {0}/גר׳ + + + מ״ג + {0} מ״ג + {0} מ״ג + {0} מ״ג + {0} מ״ג מק״ג @@ -7775,96 +8061,112 @@ For terms of use, see http://www.unicode.org/copyright.html {0} מק״ג {0} מק״ג - - מ״ג - {0} מ״ג - {0} מ״ג - {0} מ״ג - {0} מ״ג + + טון + ט׳ {0} + {0} ט׳ + {0} ט׳ + {0} ט׳ + + + פאונד + {0} lb + {0} lbs + {0} lbs + {0} lbs + {0}/lb - אונק׳ - אונקיה {0} - {0} אונקיות - {0} אונקיות - {0} אונקיות + oz + {0} oz + {0} oz + {0} oz + {0} oz + {0}/oz oz t - {0} oz t - {0} oz t - {0} oz t - {0} oz t + {0} oz t + {0} oz t + {0} oz t + {0} oz t - - ליבראות - ליברה {0} - {0} ליבראות - {0} ליבראות - {0} ליבראות - - - טון - {0} ט - {0} ט - {0} ט - {0} ט + + קרט + {0} CD + {0} CD + {0} CD + {0} CD - GW - {0} GW - {0} GW - {0} GW - {0} GW - - - כ״ס - כ״ס {0} - {0} כ״ס - {0} כ״ס - {0} כ״ס - - - kW - {0} kW - {0} kW - {0} kW - {0} kW + GW + {0} GW + {0} GW + {0} GW + {0} GW - MW - {0} MW - {0} MW - {0} MW - {0} MW + MW + {0} MW + {0} MW + {0} MW + {0} MW - - mW - {0} mW - {0} mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW + {0} kW + {0} kW - ואט - {0} W - {0} W - {0} W - {0} W + ואט + {0} W + {0} W + {0} W + {0} W + + + mW + {0} mW + {0} mW + {0} mW + {0} mW + + + כ״ס + כ״ס {0} + {0} כ״ס + {0} כ״ס + {0} כ״ס - hPa - {0} hPa - {0} hPa - {0} hPa - {0} hPa + hPa + {0} hPa + {0} hPa + {0} hPa + {0} hPa + + + mm Hg + {0} mm Hg + {0} mm Hg + {0} mm Hg + {0} mm Hg + + + psi + {0} psi + {0} psi + {0} psi + {0} psi - inHg - {0} inHg - {0} inHg - {0} inHg - {0} inHg + in Hg + {0} inHg + {0} inHg + {0} inHg + {0} inHg מ״ב @@ -7873,61 +8175,54 @@ For terms of use, see http://www.unicode.org/copyright.html {0} מ״ב {0} מ״ב - - mm Hg - {0} mm Hg - {0} mm Hg - {0} mm Hg - {0} mm Hg - - - psi - {0} psi - {0} psi - {0} psi - {0} psi - - - kt - {0} kt - {0} kt - {0} kt - {0} kt - - קמ״ש - {0} קמ״ש - {0} קמ״ש - {0} קמ״ש - {0} קמ״ש + קמ״ש + {0} קמ״ש + {0} קמ״ש + {0} קמ״ש + {0} קמ״ש - מ/ש - {0} מ/ש - {0} מ/ש - {0} מ/ש - {0} מ/ש + מ׳/שנ׳ + {0} מ׳/שנ׳ + {0} מ׳/שנ׳ + {0} מ׳/שנ׳ + {0} מ׳/שנ׳ - mph - {0} mph - {0} mph - {0} mph - {0} mph + mph + {0} mph + {0} mph + {0} mph + {0} mph + + + kn + {0} kn + {0} kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + {0}° + {0}° - °C - {0}°C - {0}°C - {0}°C - {0}°C + °C + {0}°C + {0}°C + {0}°C + {0}°C - °F - {0}°F - {0}°F - {0}°F - {0}°F + °F + {0}°F + {0}°F + {0}°F + {0}°F °K @@ -7936,75 +8231,78 @@ For terms of use, see http://www.unicode.org/copyright.html {0}°K {0}°K - - ac ft - {0} ac ft - {0} ac ft - {0} ac ft - {0} ac ft + + קמ״ק + קמ״ק {0} + {0} קמ״ק + {0} קמ״ק + {0} קמ״ק - - cL - {0} cL - {0} cL - {0} cL - {0} cL + + + {0} m³ + {0} m³ + {0} m³ + {0} m³ + {0}/m³ cm³ - {0} cm³ - {0} cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - {0} in³ - {0} in³ - - - קמ״ק - {0} קמ״ק - {0} קמ״ק - {0} קמ״ק - {0} קמ״ק - - - מ״ק - {0} מ״ק - {0} מ״ק - {0} מ״ק - {0} מ״ק + {0} סמ״ק + {0} סמ״ק + {0} סמ״ק + {0} סמ״ק + {0}/סמ״ק - mi³ - {0} mi³ - {0} mi³ - {0} mi³ - {0} mi³ + mi³ + {0} mi³ + {0} mi³ + {0} mi³ + {0} mi³ - yd³ - {0} yd³ - {0} yd³ - {0} yd³ - {0} yd³ + yd³ + {0} yd³ + {0} yd³ + {0} yd³ + {0} yd³ - - ספלים - {0} ספ׳ - {0} ספ׳ - {0} ספ׳ - {0} ספ׳ + + feet³ + {0} ft³ + {0} ft³ + {0} ft³ + {0} ft³ + + + in³ + {0} in³ + {0} in³ + {0} in³ + {0} in³ + + + ML + {0} ML + {0} ML + {0} ML + {0} ML + + + hL + {0} hL + {0} hL + {0} hL + {0} hL + + + ליטר + ל׳ {0} + {0} ל׳ + {0} ל׳ + {0} ל׳ + {0}/ל׳ דצ״ל @@ -8013,61 +8311,76 @@ For terms of use, see http://www.unicode.org/copyright.html {0} דצ״ל {0} דצ״ל - - fl oz - {0} fl oz - {0} fl oz - {0} fl oz - {0} fl oz + + cL + {0} cL + {0} cL + {0} cL + {0} cL + + + מ״ל + מ״ל {0} + {0} מ״ל + {0} מ״ל + {0} מ״ל + + + mpt + {0} mpt + {0} mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + {0} mc + {0} mc + + + ac ft + {0} ac ft + {0} ac ft + {0} ac ft + {0} ac ft - גלון + גלון {0} גל׳ {0} גל׳ {0} גל׳ {0} גל׳ - - - hL - {0} hL - {0} hL - {0} hL - {0} hL - - - ליטר - {0} ל׳ - {0} ל׳ - {0} ל׳ - {0} ל׳ - - - ML - {0} ML - {0} ML - {0} ML - {0} ML - - - מ״ל - {0} מ״ל - {0} מ״ל - {0} מ״ל - {0} מ״ל - - - פינט - {0} pt - {0} pt - {0} pt - {0} pt + {0}/גל׳ - qts - {0} qt - {0} qt - {0} qt - {0} qt + qts + {0} qt + {0} qt + {0} qt + {0} qt + + + פינט + {0} pt + {0} pt + {0} pt + {0} pt + + + כוסות + כ׳ {0} + {0} כ׳ + {0} כ׳ + {0} כ׳ + + + fl oz + {0} fl oz + {0} fl oz + {0} fl oz + {0} fl oz כפות @@ -8083,10 +8396,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} כפי׳ {0} כפי׳ + + {0}מז׳ + {0}צפ׳ + {0}דר׳ + {0}מע׳ + - {0}/{1} + {0}/{1} {0} G @@ -8094,6 +8413,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}° + {0}° + דקה {0} {0} דקות @@ -8106,17 +8431,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} שנ׳ {0} שנ׳ - - {0}° - {0}° - {0}° - {0}° - - - אקר {0} - {0} אקר - {0} אקר - {0} אקר + + קמ״ר {0} + {0} קמ״ר + {0} קמ״ר + {0} קמ״ר הקטאר {0} @@ -8124,18 +8443,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} הקטאר {0} הקטאר - - רגל רבועה {0} - {0} רגל רבועה - {0} רגל רבועה - {0} רגל רבועה - - - קמ״ר {0} - {0} קמ״ר - {0} קמ״ר - {0} קמ״ר - מ״ר {0} {0} מ״ר @@ -8148,6 +8455,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} מייל רבוע {0} מייל רבוע + + אקר {0} + {0} אקר + {0} אקר + {0} אקר + + + רגל רבועה {0} + {0} רגל רבועה + {0} רגל רבועה + {0} רגל רבועה + + + ל׳/100ק״מ + {0}ל׳/100ק״מ + {0}ל׳/100ק״מ + {0}ל׳/100ק״מ + {0}ל׳/100ק״מ + מייל/גלון {0} מייל/גלון @@ -8155,6 +8481,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} מייל/גלון {0} מייל/גלון + + ש׳ + שנה {0} + {0} שנים + {0} שנים + {0} שנים + + + ח׳ + ח׳ {0} + {0} ח׳ + {0} ח׳ + {0} ח׳ + + + שב׳ + שבוע {0} + {0} שבועות + {0} שבועות + {0} שבועות + יום י׳ @@ -8169,13 +8516,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} שע׳ {0} שע׳ - - ms - {0} ms - {0} ms - {0} ms - {0} ms - דק׳ דקה @@ -8183,13 +8523,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} דק׳ {0} דק׳ - - ח׳ - חודש {0} - {0} ח׳ - {0} ח׳ - {0} ח׳ - שנ׳ שניה @@ -8197,19 +8530,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} שנ׳ {0} שנ׳ - - שב׳ - שבוע {0} - {0} שבועות - {0} שבועות - {0} שבועות + + ms + {0} ms + {0} ms + {0} ms + {0} ms - - ש׳ - שנה {0} - {0} שנים - {0} שנים - {0} שנים + + ק״מ + ק״מ {0} + {0} ק״מ + {0} ק״מ + {0} ק״מ + + + מטר + מ׳ אחד + שני מ׳ + {0}מ׳ + {0}מ׳ ס״מ @@ -8218,6 +8558,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ס״מ {0} ס״מ + + מ״מ + מ״מ {0} + {0} מ״מ + {0} מ״מ + {0} מ״מ + + + פיקומטר {0} + {0} פיקומטר + {0} פיקומטר + {0} פיקומטר + + + מייל {0} + {0} מייל + {0} מייל + {0} מייל + + + יארד {0} + {0} יארד + {0} יארד + {0} יארד + רגל {0} {0} רגל @@ -8230,70 +8595,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} אינץ׳ {0} אינץ׳ - - ק״מ - ק״מ {0} - {0} ק״מ - {0} ק״מ - {0} ק״מ - שנת אור {0} {0} שנות אור {0} שנות אור {0} שנות אור - - מטר - מ׳ אחד - שני מ׳ - {0}מ׳ - {0}מ׳ - - - מייל {0} - {0} מייל - {0} מייל - {0} מייל - - - מ״מ - מ״מ {0} - {0} מ״מ - {0} מ״מ - {0} מ״מ - - - פיקומטר {0} - {0} פיקומטר - {0} פיקומטר - {0} פיקומטר - - - יארד {0} - {0} יארד - {0} יארד - {0} יארד + + ק״ג + {0}kg + {0}kg + {0}kg + {0}kg גרם - גר׳ {0} - {0} גר׳ - {0} גר׳ - {0} גר׳ - - - ק״ג - {0} ק״ג - {0} ק״ג - {0} ק״ג - {0} ק״ג - - - אונקיה {0} - {0} אונקיות - {0} אונקיות - {0} אונקיות + {0}g + {0}g + {0}g + {0}g ליברה {0} @@ -8301,11 +8621,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ליבראות {0} ליבראות - - כ״ס {0} - {0} כ״ס - {0} כ״ס - {0} כ״ס + + אונקיה {0} + {0} אונקיות + {0} אונקיות + {0} אונקיות {0} kW @@ -8319,6 +8639,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + כ״ס {0} + {0} כ״ס + {0} כ״ס + {0} כ״ס + {0} hPa {0} hPa @@ -8338,11 +8664,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} מיליבר - קמ״ש - {0} קמ״ש - {0} קמ״ש - {0} קמ״ש - {0} קמ״ש + קמ״ש + {0} קמ״ש + {0} קמ״ש + {0} קמ״ש + {0} קמ״ש {0} מ/ש @@ -8357,7 +8683,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mph - °C + °C {0}° {0}° {0}° @@ -8382,12 +8708,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi³ - ליטר + ליטר {0} ל׳ {0} ל׳ {0} ל׳ {0} ל׳ + + {0}E + {0}N + {0}S + {0}W + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/he_IL.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/he_IL.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/he_IL.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/he_IL.xml index 924b1563126..da688f209f7 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/he_IL.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/he_IL.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hi.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hi.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hi.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hi.xml index d2dce44d899..1c77ddfc625 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hi.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hi.xml @@ -1,13 +1,12 @@ - - - + @@ -59,6 +58,7 @@ For terms of use, see http://www.unicode.org/copyright.html बेम्बा बेना बुल्गारियाई + पश्चिमी बलोची भोजपुरी बिस्लामा बिकोल @@ -139,7 +139,7 @@ For terms of use, see http://www.unicode.org/copyright.html एस्पेरेंतो स्पेनी लैटिन अमेरिकी स्पेनी - यूरोपीय स्पेनी + यूरोपीय स्पेनिश मैक्सिकन स्पेनिश एस्टोनियाई बास्क @@ -210,7 +210,7 @@ For terms of use, see http://www.unicode.org/copyright.html इलोको इंगुश इडौ - आइसलैंडी + आइसलैंडिक इतालवी इनूकीटूत् जापानी @@ -239,7 +239,7 @@ For terms of use, see http://www.unicode.org/copyright.html किकुयू क्वान्यामा कज़ाख़ - ग्रीनलैंडिक + कलालीसुत कलेंजिन खमेर किम्बन्दु @@ -276,6 +276,7 @@ For terms of use, see http://www.unicode.org/copyright.html लाओ मोंगो लोज़ी + उत्तरी लूरी लिथुआनियाई ल्यूबा-कटांगा ल्यूबा-लुलुआ @@ -321,12 +322,14 @@ For terms of use, see http://www.unicode.org/copyright.html मारवाड़ी बर्मीज़ एर्ज़या + माज़न्देरानी नाउरू नीपोलिटन नामा नॉर्वेजियाई बोकमाल उत्तरी देबेल निचला जर्मन + निचली सैक्सन नेपाली नेवाड़ी डोन्गा @@ -402,6 +405,7 @@ For terms of use, see http://www.unicode.org/copyright.html सिसिलियन स्कॉट्स सिंधी + दक्षिणी कार्डिश नॉर्दन सामी सेना सेल्कप @@ -436,8 +440,8 @@ For terms of use, see http://www.unicode.org/copyright.html सुमेरियन स्वीडिश स्वाहिली + कांगो स्वाहिली कोमोरियन - कांगो स्वाहिली क्लासिकल सिरिएक सिरिएक तमिल @@ -490,6 +494,7 @@ For terms of use, see http://www.unicode.org/copyright.html वलामो वारै वाशो + वॉल्पेरी वोलोफ़ काल्मिक ख़ोसा @@ -687,7 +692,6 @@ For terms of use, see http://www.unicode.org/copyright.html एंग्विला अल्बानिया आर्मेनिया - नीदरलैंडी ऐंटील अंगोला अंटार्कटिका अर्जेंटीना @@ -975,6 +979,9 @@ For terms of use, see http://www.unicode.org/copyright.html संख्यात्मक वर्गीकरण वर्गीकरण सशक्तता मुद्रा + घंटों का चक्र (12 बनाम 24) + पंक्ति विच्छेद शैली + मापन प्रणाली संख्याएँ समय क्षेत्र स्थानीय प्रकार @@ -982,95 +989,105 @@ For terms of use, see http://www.unicode.org/copyright.html निजी-उपयोग - अरबी-भारतीय अंक - विस्तृत अरबी-भारतीय अंक - आर्मेनियाई संख्याएँ - आर्मेनियाई लोअरकेस संख्याएँ - बंगाली अंक - पारम्पारिक चीनी वर्गीकरण - बौद्ध पंचांग - चीनी पंचांग - कोप्टिक कैलेंडर - दांगी कैलेंडर - देवनागरी अंक - शब्दकोश क्रम विन्यास - डिफ़ॉल्ट यूनिकोड सॉर्ट क्रम - इथियोपिक संख्याएँ - इथियोपिक कैलेंडर - इथियोपिक अमेते अलेम कैलेंडर - वित्तीय अंक - पूर्ण चौड़ाई अंक - सरलीकृत चीनी वर्गीकरण - जॉर्जियन संख्याएँ - ग्रेगोरियन कैलेंडर - यूनानी संख्याएँ - यूनानी लोअरकेस संख्याएँ - गुजराती अंक - गुरमुखी अंक - चीनी दशमलव संख्याएँ - सरलीकृत चीनी संख्याएँ - सरलीकृत चीनी वित्तीय संख्याएँ - पारंपरिक चीनी संख्याएँ - पारंपरिक चीनी वित्तीय संख्याएँ - हिब्रू संख्याएँ - हिब्रू पंचांग - सभी क्रमित करें - भारतीय राष्ट्रीय कैलेंडर - इस्लामी पंचांग - इस्लामी नागरिक पंचांग - आईएसओ-8601 कैलेंडर - जापानी पंचांग - जापानी संख्याएँ - जापानी वित्तीय संख्याएँ - खमेर अंक - कन्नड़ अंक - लाओ अंक - पश्चिमी अंक - पहले लोअरकेस क्रमित करें - मलयालम अंक - मंगोलियाई अंक - म्यांमार अंक - स्थानीय अंक - उच्‍चारणों को सामान्‍य रूप से क्रमित करें - सामान्‍य केस क्रम में क्रमित करें - केस असंवेदी क्रमित करें - काना को अलग से क्रमित करें - बिना सामान्‍यीकरण के क्रमित करें - अंको को अलग-अलग क्रमित करें - प्रतीकों को क्रमित करें - उड़िया अंक - फ़ारसी कैलेंडर - दूरभाष निर्देशिका वर्गीकरण - ध्‍वन्यात्मक क्रमित करने का क्रम - पिनयीन वर्गीकरण - केवल आधार अक्षरों को क्रमित करें - उच्‍चारणों/केस/चौड़ाई/काना क्रमित करें - पुनर्निर्मित क्रम विन्यास - चीनी गणतंत्र पंचांग - रोमन संख्याएँ - रोमन लोअरकेस संख्याएँ - सामान्य-उद्देश्य खोज - हांगुल आरंभिक व्‍यंजन द्वारा खोजें - उच्‍चारण क्रमित करें - प्रतीकों पर ध्यान न देकर क्रमित करें - मानक सॉर्ट क्रम - स्ट्रोक वर्गीकरण - पारंपरिक तमिल संख्याएँ - तमिल अंक - तेलुगू अंक - उच्‍चारणों/केस/चौड़ाई क्रमित करें - थाई अंक - तिब्बती अंक - पारम्पारिक वर्गीकरण - परंपरागत अंक - रेडिकल-स्ट्रोक क्रम विन्यास - पहले अपरकेस क्रमित करें - वाई अंक - उच्‍चारण के उलट क्रमित करें - केस संवेदी को क्रमित करें - काना को भिन्‍न रूप में क्रमित करें - यूनिकोड सामान्‍यीकृत क्रमित करें - अंकों को अंकीय रूप से क्रमित करें + बौद्ध पंचांग + चीनी पंचांग + कोप्टिक कैलेंडर + दांगी कैलेंडर + इथियोपिक कैलेंडर + इथियोपिक अमेते अलेम कैलेंडर + ग्रेगोरियन कैलेंडर + हिब्रू पंचांग + भारतीय राष्ट्रीय कैलेंडर + इस्लामी पंचांग + इस्लामी नागरिक पंचांग + आईएसओ-8601 कैलेंडर + जापानी पंचांग + फ़ारसी कैलेंडर + चीनी गणतंत्र पंचांग + प्रतीकों को क्रमित करें + प्रतीकों पर ध्यान न देकर क्रमित करें + उच्‍चारणों को सामान्‍य रूप से क्रमित करें + उच्‍चारण के उलट क्रमित करें + पहले लोअरकेस क्रमित करें + सामान्‍य केस क्रम में क्रमित करें + पहले अपरकेस क्रमित करें + केस असंवेदी क्रमित करें + केस संवेदी को क्रमित करें + काना को अलग से क्रमित करें + काना को भिन्‍न रूप में क्रमित करें + पारम्पारिक चीनी वर्गीकरण + शब्दकोश क्रम विन्यास + डिफ़ॉल्ट यूनिकोड सॉर्ट क्रम + सरलीकृत चीनी वर्गीकरण + दूरभाष निर्देशिका वर्गीकरण + ध्‍वन्यात्मक क्रमित करने का क्रम + पिनयीन वर्गीकरण + पुनर्निर्मित क्रम विन्यास + सामान्य-उद्देश्य खोज + हांगुल आरंभिक व्‍यंजन द्वारा खोजें + मानक सॉर्ट क्रम + स्ट्रोक वर्गीकरण + पारम्पारिक वर्गीकरण + रेडिकल-स्ट्रोक क्रम विन्यास + बिना सामान्‍यीकरण के क्रमित करें + यूनिकोड सामान्‍यीकृत क्रमित करें + अंको को अलग-अलग क्रमित करें + अंकों को अंकीय रूप से क्रमित करें + सभी क्रमित करें + केवल आधार अक्षरों को क्रमित करें + उच्‍चारणों/केस/चौड़ाई/काना क्रमित करें + उच्‍चारण क्रमित करें + उच्‍चारणों/केस/चौड़ाई क्रमित करें + 12 घंटों की प्रणाली (0–11) + 12 घंटों की प्रणाली (1–12) + 24 घंटों की प्रणाली (0–23) + 24 घंटों की प्रणाली (1–24) + ढीली पंक्ति विच्छेद शैली + सामान्य पंक्ति विच्छेद शैली + सख्त पंक्ति विच्छेद शैली + मीट्रिक + इम्पीरियल मापन प्रणाली + अमेरिकी मापन प्रणाली + अरबी-भारतीय अंक + विस्तृत अरबी-भारतीय अंक + आर्मेनियाई संख्याएँ + आर्मेनियाई लोअरकेस संख्याएँ + बंगाली अंक + देवनागरी अंक + इथियोपिक संख्याएँ + वित्तीय अंक + पूर्ण चौड़ाई अंक + जॉर्जियन संख्याएँ + यूनानी संख्याएँ + यूनानी लोअरकेस संख्याएँ + गुजराती अंक + गुरमुखी अंक + चीनी दशमलव संख्याएँ + सरलीकृत चीनी संख्याएँ + सरलीकृत चीनी वित्तीय संख्याएँ + पारंपरिक चीनी संख्याएँ + पारंपरिक चीनी वित्तीय संख्याएँ + हिब्रू संख्याएँ + जापानी संख्याएँ + जापानी वित्तीय संख्याएँ + खमेर अंक + कन्नड़ अंक + लाओ अंक + पश्चिमी अंक + मलयालम अंक + मंगोलियाई अंक + म्यांमार अंक + स्थानीय अंक + उड़िया अंक + रोमन संख्याएँ + रोमन लोअरकेस संख्याएँ + पारंपरिक तमिल संख्याएँ + तमिल अंक + तेलुगू अंक + थाई अंक + तिब्बती अंक + परंपरागत अंक + वाई अंक BGN @@ -1183,6 +1200,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d E G y G y MMM @@ -1201,6 +1219,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM d MMM E, d MMM + MMMM d mm:ss G y G y @@ -1211,6 +1230,7 @@ For terms of use, see http://www.unicode.org/copyright.html G MMM y G d MMM y G E, d MMM y + G y MMMM QQQ G y QQQQ G y @@ -1525,18 +1545,55 @@ For terms of use, see http://www.unicode.org/copyright.html + मध्यरात्रि पूर्व अपर + सुबह + अपराह्न + शाम + रात + आधी रात पू - दोप + सुबह + अपराह्न + शाम + शाम + मध्यरात्रि पूर्वाह्न - दोपहर अपराह्न + सुबह + अपराह्न + शाम + रात + + + + + पूर्व + अपर + + + आधी रात + पू + + सुबह + अपराह्न + शाम + रात + + + आधी रात + पूर्वाह्न + अपराह्न + सुबह + दोपहर + शाम + रात @@ -1621,7 +1678,7 @@ For terms of use, see http://www.unicode.org/copyright.html d - ccc + ccc E d E h:mm a E HH:mm @@ -1637,6 +1694,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d/M E, d/M @@ -1661,7 +1722,7 @@ For terms of use, see http://www.unicode.org/copyright.html QQQQ y - {0} {1} + {0} {1} {0} – {1} @@ -1715,12 +1776,12 @@ For terms of use, see http://www.unicode.org/copyright.html MMM–MMM - d MMM–d + d MMM–d d MMM – d MMM E, d MMM – E, d MMM - E, d MMM – E, d MMM + E, d MMM – E, d MMM y–y @@ -2182,6 +2243,9 @@ For terms of use, see http://www.unicode.org/copyright.html तिमाही + अंतिम तिमाही + इस तिमाही + अगली तिमाही {0} तिमाही में {0} तिमाहियों में @@ -2193,6 +2257,9 @@ For terms of use, see http://www.unicode.org/copyright.html तिमाही + अंतिम तिमाही + इस तिमाही + अगली तिमाही {0} तिमाही में {0} तिमाहियों में @@ -2204,6 +2271,9 @@ For terms of use, see http://www.unicode.org/copyright.html तिमाही + अंतिम तिमाही + इस तिमाही + अगली तिमाही {0} ति. में {0} ति. में @@ -3413,6 +3483,9 @@ For terms of use, see http://www.unicode.org/copyright.html पोर्ट मोरेस्बी + + बोगनविल + मनीला @@ -3497,6 +3570,9 @@ For terms of use, see http://www.unicode.org/copyright.html इर्कुत्स्क + + त्शिता + याकूत्स्क @@ -3515,6 +3591,9 @@ For terms of use, see http://www.unicode.org/copyright.html मागादान + + स्रेद्निकोलिमस्क + कमचत्का @@ -3735,7 +3814,7 @@ For terms of use, see http://www.unicode.org/copyright.html वेवे, इंडियाना - मोंटीसेलो, केंचुकी + मोंटीसेलो, केंटकी डेट्रॉयट @@ -4800,6 +4879,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##,##0.00 + + + ¤0 हज़ार + ¤0 हज़ार + ¤00 हज़ार + ¤00 हज़ार + ¤0 लाख + ¤0 लाख + ¤00 लाख + ¤00 लाख + ¤0 क'.' + ¤0 क'.' + ¤00 क'.' + ¤00 क'.' + ¤0 अ'.' + ¤0 अ'.' + ¤00 अ'.' + ¤00 अ'.' + ¤0 ख'.' + ¤0 ख'.' + ¤00 ख'.' + ¤00 ख'.' + ¤0 नील + ¤0 नील + ¤00 नील + ¤00 नील + + {0} {1} {0} {1} @@ -4842,6 +4949,7 @@ For terms of use, see http://www.unicode.org/copyright.html अंगोला क्वांज़ा अंगोला क्वांज़ा AOA + Kz अर्जेंटीनी पेसो @@ -4874,6 +4982,7 @@ For terms of use, see http://www.unicode.org/copyright.html बोस्निया हर्ज़ेगोविना परिवर्तनीय मार्क बोस्निया हर्ज़ेगोविना परिवर्तनीय मार्क BAM + KM बार्बेडियन डॉलर @@ -4926,6 +5035,7 @@ For terms of use, see http://www.unicode.org/copyright.html बोलिवियाई बोलिवियानो बोलिवियाई बोलिवियानो BOB + Bs ब्राज़ीली रियाल @@ -4952,6 +5062,7 @@ For terms of use, see http://www.unicode.org/copyright.html बोत्सवानियाई पुला बोत्सवानियाई पुला BWP + P बेलारूसी रूबल @@ -5022,6 +5133,7 @@ For terms of use, see http://www.unicode.org/copyright.html क्यूबाई परिवर्तनीय पेसो क्यूबाई परिवर्तनीय पेसो CUC + $ क्यूबाई पेसो @@ -5044,6 +5156,7 @@ For terms of use, see http://www.unicode.org/copyright.html चेक गणराज्य कोरुना चेक गणराज्य कोरुना CZK + डच मार्क @@ -5059,6 +5172,7 @@ For terms of use, see http://www.unicode.org/copyright.html डैनिश क्रोन डैनिश क्रोन DKK + kr डोमिनिकन पेसो @@ -5081,6 +5195,7 @@ For terms of use, see http://www.unicode.org/copyright.html मिस्र पाउंड मिस्र पाउंड EGP + इरीट्रियन नाक्फ़ा @@ -5113,6 +5228,7 @@ For terms of use, see http://www.unicode.org/copyright.html फ़ॉकलैंड द्वीपसमूह पाउंड फ़ॉकलैंड द्वीपसमूह पाउंड FKP + £ फ़्रांसीसी फ़्रैंक @@ -5129,6 +5245,7 @@ For terms of use, see http://www.unicode.org/copyright.html जॉर्जियन लारी जॉर्जियन लारी GEL + घानियन सेडी @@ -5154,12 +5271,14 @@ For terms of use, see http://www.unicode.org/copyright.html गिनीयन फ़्रैंक गिनीयन फ़्रैंक GNF + FG ग्वाटेमाला क्वेटज़ल ग्वाटेमाला क्वेटज़ल ग्वाटेमाला क्वेटज़ल GTQ + Q गयानीज़ डॉलर @@ -5180,6 +5299,7 @@ For terms of use, see http://www.unicode.org/copyright.html होंडुरन लेम्पिरा होंडुरन लेम्पिरा HNL + L क्रोएशियन दिनार @@ -5189,6 +5309,7 @@ For terms of use, see http://www.unicode.org/copyright.html क्रोएशियाई कुना क्रोएशियाई कुना HRK + kn हैतियाई गर्ड @@ -5201,12 +5322,14 @@ For terms of use, see http://www.unicode.org/copyright.html हंगेरियन फ़ोरिंट हंगेरियन फ़ोरिंट HUF + Ft इंडोनेशियाई रुपिया इंडोनेशियाई रुपिया इंडोनेशियाई रुपिये IDR + Rp इज़राइली न्यू शेकेल @@ -5239,6 +5362,7 @@ For terms of use, see http://www.unicode.org/copyright.html आइसलैंडिक क्रोना आइसलैंडिक क्रोना ISK + kr इतली का लीरा @@ -5287,12 +5411,14 @@ For terms of use, see http://www.unicode.org/copyright.html कोमोरियन फ़्रैंक कोमोरियन फ़्रैंक KMF + CF उत्तर कोरियाई वॉन उत्तर कोरियाई वॉन उत्तर कोरियाई वॉन KPW + दक्षिण कोरियाई वॉन @@ -5333,12 +5459,14 @@ For terms of use, see http://www.unicode.org/copyright.html लेबनानी पाउंड लेबनानी पाउंड LBP + श्रीलंकाई रुपया श्रीलंकाई रुपया श्रीलंकाई रुपए LKR + Rs लाइबेरियाई डॉलर @@ -5388,6 +5516,7 @@ For terms of use, see http://www.unicode.org/copyright.html मालागासी आरियरी मालागासी आरियरी MGA + Ar मैसीडोनियन दिनार @@ -5400,6 +5529,7 @@ For terms of use, see http://www.unicode.org/copyright.html म्यांमार क्याट म्यांमार क्याट MMK + K मंगोलियाई टगरिक @@ -5425,6 +5555,7 @@ For terms of use, see http://www.unicode.org/copyright.html मॉरिशियन रुपया मॉरिशियन रुपया MUR + मालदीवी रुफ़िया @@ -5450,6 +5581,7 @@ For terms of use, see http://www.unicode.org/copyright.html मलेशियाई रिंगित मलेशियाई रिंगित MYR + RM मोज़ाम्बिकन मेटिकल @@ -5476,18 +5608,21 @@ For terms of use, see http://www.unicode.org/copyright.html निकारागुअन कोरडोबा निकारागुअन कोरडोबा NIO + C$ नॉर्वेजियन क्रोन नॉर्वेजियन क्रोन नॉर्वेजियन क्रोन NOK + kr नेपाली रुपया नेपाली रुपया नेपाली रुपए NPR + Rs न्यूज़ीलैंड डॉलर @@ -5532,12 +5667,14 @@ For terms of use, see http://www.unicode.org/copyright.html पाकिस्तानी रुपया पाकिस्तानी रुपए PKR + पोलिश ज़्लॉटी पोलिश ज़्लॉटी पोलिश ज़्लॉटी PLN + पैराग्वियन गुआरानी @@ -5572,12 +5709,14 @@ For terms of use, see http://www.unicode.org/copyright.html रूसी रूबल रूसी रूबल RUB + रवांडाई फ़्रैंक रवांडाई फ़्रैंक रवांडाई फ़्रैंक RWF + RF सउदी रियाल @@ -5615,6 +5754,7 @@ For terms of use, see http://www.unicode.org/copyright.html स्वीडीश क्रोना स्वीडीश क्रोना SEK + kr सिंगापुर डॉलर @@ -5628,6 +5768,7 @@ For terms of use, see http://www.unicode.org/copyright.html सेंट हेलेना पाउंड सेंट हेलेना पाउंड SHP + £ स्लोवेनियाई तोलार @@ -5669,6 +5810,7 @@ For terms of use, see http://www.unicode.org/copyright.html साओ तोम और प्रिंसिपे डोबरा साओ तोम और प्रिंसिपे डोबरा STD + Db सोवियत रूबल @@ -5678,6 +5820,7 @@ For terms of use, see http://www.unicode.org/copyright.html सीरियाई पाउंड सीरियाई पाउंड SYP + £ स्वाज़ी लिलांजेनी @@ -5690,6 +5833,7 @@ For terms of use, see http://www.unicode.org/copyright.html थाई बहत थाई बहत ฿ + ฿ तजाखी रूबल @@ -5717,6 +5861,7 @@ For terms of use, see http://www.unicode.org/copyright.html टोंगन पांगा टोंगन पांगा TOP + T$ पुरानी तुर्की लीरा @@ -5727,6 +5872,7 @@ For terms of use, see http://www.unicode.org/copyright.html तुर्की लीरा TRY + TL त्रिनिदाद और टोबैगो डॉलर @@ -5795,6 +5941,7 @@ For terms of use, see http://www.unicode.org/copyright.html वेनेज़ुएला बोलिवर वेनेज़ुएला बोलिवर VEF + Bs वियतनामी डोंग @@ -5826,9 +5973,10 @@ For terms of use, see http://www.unicode.org/copyright.html पूर्वी कैरिबियाई डॉलर पूर्वी कैरिबियाई डॉलर EC$ + $ - [CFA] फ़्रैंक [BCEAO] + पश्चिमी अफ़्रीकी CFA फ्रैंक [CFA] फ़्रैंक [BCEAO] [CFA] फ़्रैंक [BCEAO] CFA @@ -5855,6 +6003,7 @@ For terms of use, see http://www.unicode.org/copyright.html दक्षिण अफ़्रीकी रैंड दक्षिण अफ़्रीकी रैंड ZAR + R ज़ाम्बियन क्वाचा (1968–2012) @@ -5864,6 +6013,7 @@ For terms of use, see http://www.unicode.org/copyright.html ज़ाम्बियन क्वाचा ज़ाम्बियन क्वाचा ZMW + ZK @@ -5886,6 +6036,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} मीटर प्रति सेकंड वर्ग {0} मीटर प्रति सेकंड वर्ग + + घूर्णन + {0} घूर्णन + {0} घूर्णन + + + रेडियन + {0} रेडियन + {0} रेडियन + + + अंश + {0} अंश + {0} अंश + आर्क मिनट {0} आर्क मिनट @@ -5896,30 +6061,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} आर्क सेकंड {0} आर्क सेकंड - - अंश - {0} अंश - {0} अंश - - - रेडियन - {0} रेडियन - {0} रेडियन - - - एकड़ - {0} एकड़ - {0} एकड़ + + वर्ग किलोमीटर + {0} वर्ग किलोमीटर + {0} वर्ग किलोमीटर हेक्टेयर {0} हेक्टेयर {0} हेक्टेयर + + वर्ग मीटर + {0} वर्ग मीटर + {0} वर्ग मीटर + {0}/वर्ग मीटर + वर्ग सेंटीमीटर {0} वर्ग सेंटीमीटर {0} वर्ग सेंटीमीटर + {0}/वर्ग सेंटीमीटर + + + वर्ग मील + {0} वर्ग मील + {0} वर्ग मील + + + एकड़ + {0} एकड़ + {0} एकड़ + + + वर्ग यार्ड + {0} वर्ग यार्ड + {0} वर्ग यार्ड वर्गफ़ीट @@ -5930,91 +6107,106 @@ For terms of use, see http://www.unicode.org/copyright.html वर्ग इंच {0} वर्ग इंच {0} वर्ग इंच + {0}/वर्ग इंच - - वर्ग किलोमीटर - {0} वर्ग किलोमीटर - {0} वर्ग किलोमीटर - - - वर्ग मीटर - {0} वर्ग मीटर - {0} वर्ग मीटर - - - वर्ग मील - {0} वर्ग मील - {0} वर्ग मील - - - वर्ग यार्ड - {0} वर्ग यार्ड - {0} वर्ग यार्ड + + कैरट + {0} कैरट + {0} कैरट लीटर प्रति किलोमीटर {0} लीटर प्रति किलोमीटर {0} लीटर प्रति किलोमीटर + + लीटर प्रति 100 किलोमीटर + {0} लीटर प्रति 100 किलोमीटर + {0} लीटर प्रति 100 किलोमीटर + मील प्रति गैलन {0} मील प्रति गैलन {0} मील प्रति गैलन - - बिट - {0} बिट - {0} बिट - - - बाइट - {0} बाइट - {0} बाइट - - - गीगाबिट - {0} गीगाबिट - {0} गीगाबिट - - - गीगाबाइट - {0} गीगाबाइट - {0} गीगाबाइट - - - किलोबिट - {0} किलोबिट - {0} किलोबिट - - - किलोबाइट - {0} किलोबाइट - {0} किलोबाइट - - - मेगाबिट - {0} मेगाबिट - {0} मेगाबिट - - - मेगाबाइट - {0} मेगाबाइट - {0} मेगाबाइट - - - टेराबिट - {0} टेराबिट - {0} टेराबिट - टेराबाइट {0} टेराबाइट {0} टेराबाइट + + टेराबिट + {0} टेराबिट + {0} टेराबिट + + + गीगाबाइट + {0} गीगाबाइट + {0} गीगाबाइट + + + गीगाबिट + {0} गीगाबिट + {0} गीगाबिट + + + मेगाबाइट + {0} मेगाबाइट + {0} मेगाबाइट + + + मेगाबिट + {0} मेगाबिट + {0} मेगाबिट + + + किलोबाइट + {0} किलोबाइट + {0} किलोबाइट + + + किलोबिट + {0} किलोबिट + {0} किलोबिट + + + बाइट + {0} बाइट + {0} बाइट + + + बिट + {0} बिट + {0} बिट + + + शताब्दियाँ + {0} शताब्दी + {0} शताब्दियाँ + + + वर्ष + {0} वर्ष + {0} वर्ष + {0}/वर्ष + + + माह + {0} माह + {0} माह + {0}/माह + + + सप्ताह + {0} सप्ताह + {0} सप्ताह + {0}/सप्ताह + दिन {0} दिन {0} दिन + {0}/दिन घंटे @@ -6022,30 +6214,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} घंटे {0} प्रति घंटा - - माइक्रोसेकंड - {0} माइक्रोसेकंड - {0} माइक्रोसेकंड - - - मिलीसेकंड - {0} मिलीसेकंड - {0} मिलीसेकंड - मिनट {0} मिनट {0} मिनट - - - माह - {0} माह - {0} माह - - - नैनो सेकंड - {0} नैनो सेकंड - {0} नैनो सेकंड + {0}/मिनट सेकंड @@ -6053,15 +6226,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} सेकंड {0} प्रति सेकंड - - सप्ताह - {0} सप्ताह - {0} सप्ताह + + मिलीसेकंड + {0} मिलीसेकंड + {0} मिलीसेकंड - - वर्ष - {0} वर्ष - {0} वर्ष + + माइक्रोसेकंड + {0} माइक्रोसेकंड + {0} माइक्रोसेकंड + + + नैनो सेकंड + {0} नैनो सेकंड + {0} नैनो सेकंड एम्पीयर @@ -6083,6 +6261,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} वोल्ट {0} वोल्ट्स + + किलो कैलोरी + {0} किलो कैलोरी + {0} किलो कैलोरी + कैलोरी {0} कैलोरी @@ -6093,21 +6276,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} कैलोरी {0} कैलोरी - - जूल - {0} जूल - {0} जूल - - - किलो कैलोरी - {0} किलो कैलोरी - {0} किलो कैलोरी - किलो जूल {0} किलो जूल {0} किलो जूल + + जूल + {0} जूल + {0} जूल + किलोवॉट घंटे {0} किलोवॉट घंटा @@ -6118,200 +6296,204 @@ For terms of use, see http://www.unicode.org/copyright.html {0} गीगाहर्ट्ज़ {0} गीगाहर्ट्ज़ - - हर्ट्ज़ - {0} हर्ट्ज़ - {0} हर्ट्ज़ + + मेगाहर्ट्ज़ + {0} मेगाहर्ट्ज़ + {0} मेगाहर्ट्ज़ किलोहर्ट्ज़ {0} किलोहर्ट्ज़ {0} किलोहर्ट्ज़ - - मेगाहर्ट्ज़ - {0} मेगाहर्ट्ज़ - {0} मेगाहर्ट्ज़ + + हर्ट्ज़ + {0} हर्ट्ज़ + {0} हर्ट्ज़ - - खगोलीय इकाईयां - {0} खगोलीय इकाई - {0} खगोलीय इकाईयां + + किलोमीटर + {0} किलोमीटर + {0} किलोमीटर + {0}/किलोमीटर - - सेंटीमीटर - {0} सेंटीमीटर - {0} सेंटीमीटर + + मीटर + {0} मीटर + {0} मीटर + {0}/मीटर डेसीमीटर {0} डेसीमीटर {0} डेसीमीटर - - फ़ीट - {0} फ़ुट - {0} फ़ीट - - - इंच - {0} इंच - {0} इंच - - - किलोमीटर - {0} किलोमीटर - {0} किलोमीटर - - - प्रकाश वर्ष - {0} प्रकाश वर्ष - {0} प्रकाश वर्ष - - - मीटर - {0} मीटर - {0} मीटर - - - माइक्रोमीटर - {0} माइक्रोमीटर - {0} माइक्रोमीटर - - - मील - {0} मील - {0} मील + + सेंटीमीटर + {0} सेंटीमीटर + {0} सेंटीमीटर + {0}/सेंटीमीटर मिलीमीटर {0} मिलीमीटर {0} मिलीमीटर + + माइक्रोमीटर + {0} माइक्रोमीटर + {0} माइक्रोमीटर + नैनोमीटर {0} नैनोमीटर {0} नैनोमीटर - - नॉटिकल मील - {0} नॉटिकल मील - {0} नॉटिकल मील - - - पार्सेक - {0} पार्सेक - {0} पार्सेक - पिकोमीटर {0} पिकोमीटर {0} पिकोमीटर + + मील + {0} मील + {0} मील + यार्ड {0} यार्ड {0} यार्ड + + फ़ीट + {0} फ़ुट + {0} फ़ीट + {0}/फ़ीट + + + इंच + {0} इंच + {0} इंच + {0}/इंच + + + पार्सेक + {0} पार्सेक + {0} पार्सेक + + + प्रकाश वर्ष + {0} प्रकाश वर्ष + {0} प्रकाश वर्ष + + + खगोलीय इकाईयां + {0} खगोलीय इकाई + {0} खगोलीय इकाईयां + + + नॉटिकल मील + {0} नॉटिकल मील + {0} नॉटिकल मील + + + मील-स्कैण्डिनेवियन + {0} मील-स्कैण्डिनेवियन + {0} मील-स्कैण्डिनेवियन + लक्स {0} लक्स {0} लक्स - - कैरेट - {0} कैरेट - {0} कैरेट - - - ग्राम - {0} ग्राम - {0} ग्राम - - - किलोग्राम - {0} किलोग्राम - {0} किलोग्राम - मीट्रिक टन {0} मीट्रिक टन {0} मीट्रिक टन - - माइक्रोग्राम - {0} माइक्रोग्राम - {0} माइक्रोग्राम + + किलोग्राम + {0} किलोग्राम + {0} किलोग्राम + {0}/किलोग्राम + + + ग्राम + {0} ग्राम + {0} ग्राम + {0}/ग्राम मिलीग्राम {0} मिलीग्राम {0} मिलीग्राम - - औंस - {0} औंस - {0} औंस - - - ट्राई औंस - {0} ट्राई औंस - {0} ट्राई औंस - - - पौंड - {0} पौंड - {0} पौंड + + माइक्रोग्राम + {0} माइक्रोग्राम + {0} माइक्रोग्राम टन {0} टन {0} टन + + पौंड + {0} पौंड + {0} पौंड + {0}/पौंड + + + औंस + {0} औंस + {0} औंस + {0}/औंस + + + ट्राई औंस + {0} ट्राई औंस + {0} ट्राई औंस + + + कैरेट + {0} कैरेट + {0} कैरेट + गिगावॉट {0} गिगावॉट {0} गिगावॉट - - अश्वशक्ति - {0} अश्वशक्ति - {0} अश्वशक्ति - - - किलोवॉट - {0} किलोवॉट - {0} किलोवॉट - मेगावॉट {0} मेगावॉट {0} मेगावॉट + + किलोवॉट + {0} किलोवॉट + {0} किलोवॉट + + + वॉट + {0} वॉट + {0} वॉट + मिलीवॉट {0} मिलीवॉट {0} मिलीवॉट - - वॉट - {0} वॉट - {0} वॉट + + अश्वशक्ति + {0} अश्वशक्ति + {0} अश्वशक्ति - हैक्टोपास्कल - {0} हैक्टोपास्कल - {0} हैक्टोपास्कल - - - मर्करी इंच - {0} मर्करी इंच - {0} मर्करी इंच - - - मिलीबार - {0} मिलीबार - {0} मिलीबार + हैक्टोपास्कल + {0} हैक्टोपास्कल + {0} हैक्टोपास्कल मर्क्यूरी मिलीमीटर @@ -6323,10 +6505,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} पाउंड प्रति वर्ग इंच {0} पाउंड प्रति वर्ग इंच - - कैरट - {0} कैरट - {0} कैरट + + मर्करी इंच + {0} मर्करी इंच + {0} मर्करी इंच + + + मिलीबार + {0} मिलीबार + {0} मिलीबार किलोमीटर प्रति घंटा @@ -6343,10 +6530,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} मील प्रति घंटा {0} मील प्रति घंटा + + नॉट + {0} नॉट + {0} नॉट + + + ° + {0}° + {0}° + - डिग्री सेल्सियस - {0} डिग्री सेल्सियस - {0} डिग्री सेल्सियस + डिग्री सेल्सियस + {0} डिग्री सेल्सियस + {0} डिग्री सेल्सियस डिग्री फ़ेरनहाइट @@ -6358,31 +6555,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} केल्विन {0} केल्विन - - एकड़ फ़ीट - {0} एकड़ फ़ूट - {0} एकड़ फ़ीट - - - सेंटीलीटर - {0} सेंटीलीटर - {0} सेंटीलीटर - - - घन सेंटीमीटर - {0} घन सेंटीमीटर - {0} घन सेंटीमीटर - - - घन फ़ीट - {0} घन फ़ीट - {0} घन फ़ीट - - - घन इंच - {0} घन इंच - {0} घन इंच - घन किलोमीटर {0} घन किलोमीटर @@ -6392,6 +6564,13 @@ For terms of use, see http://www.unicode.org/copyright.html घन मीटर {0} घन मीटर {0} घन मीटर + {0}/घन मीटर + + + घन सेंटीमीटर + {0} घन सेंटीमीटर + {0} घन सेंटीमीटर + {0}/घन सेंटीमीटर घन मील @@ -6403,25 +6582,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} घन यार्ड {0} घन यार्ड - - कप - {0} कप - {0} कप + + घन फ़ीट + {0} घन फ़ीट + {0} घन फ़ीट - - डेसीलीटर - {0} डेसीलीटर - {0} डेसीलीटर + + घन इंच + {0} घन इंच + {0} घन इंच - - फ़्लुड आउंस - {0} फ़्लुड आउंस - {0} फ़्लुड आउंस - - - गैलन - {0} गैलन - {0} गैलन + + मेगालीटर + {0} मेगालीटर + {0} मेगालीटर हैक्टोलीटर @@ -6432,27 +6606,64 @@ For terms of use, see http://www.unicode.org/copyright.html लीटर {0} लीटर {0} लीटर + {0}/लीटर - - मेगालीटर - {0} मेगालीटर - {0} मेगालीटर + + डेसीलीटर + {0} डेसीलीटर + {0} डेसीलीटर + + + सेंटीलीटर + {0} सेंटीलीटर + {0} सेंटीलीटर मिलीलीटर {0} मिलीलीटर {0} मिलीलीटर - - पिंट - {0} पिंट - {0} पिंट + + मीट्रिक पिंट + {0} मीट्रिक पिंट + {0} मीट्रिक पिंट + + + मीट्रिक कप + {0} मीट्रिक कप + {0} मीट्रिक कप + + + एकड़ फ़ीट + {0} एकड़ फ़ूट + {0} एकड़ फ़ीट + + + गैलन + {0} गैलन + {0} गैलन + {0}/गैलन क्वार्ट {0} क्वार्ट {0} क्वार्ट + + पिंट + {0} पिंट + {0} पिंट + + + कप + {0} कप + {0} कप + + + फ़्लूइड आउंस + {0} फ़्लूइड आउंस + {0} फ़्लूइड आउंस + टेबलस्पून {0} टेबलस्पून @@ -6463,6 +6674,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} टी स्पून {0} टी स्पून + + {0}E + {0}N + {0}S + {0}W + @@ -6478,6 +6695,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} मीटर/से² {0} m/s² + + घूर्णन + {0} घूर्णन + {0} घूर्णन + + + रेडियन + {0} रेडियन + {0} रेडियन + + + अंश + {0} अंश + {0} अंश + आर्क मिनट {0} आर्क मिनट @@ -6488,30 +6720,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} आर्क से. {0} आर्क से. - - अंश - {0} अंश - {0} अंश - - - रेडियन - {0} रेडियन - {0} रेडियन - - - एकड़ - {0} एकड़ - {0} एकड़ + + वर्ग कि.मी. + {0} वर्ग कि.मी. + {0} वर्ग कि.मी. हेक्टेयर {0} हे. {0} हे. + + वर्ग मीटर + {0} वर्ग मी. + {0} वर्ग मी. + {0}/वर्ग मीटर + वर्ग सें. {0} व. सें. {0} व. सें. + {0}/वर्ग सें. मी. + + + वर्ग मील + {0} वर्ग मील + {0} वर्ग मील + + + एकड़ + {0} एकड़ + {0} एकड़ + + + व. या. + {0} व. या. + {0} व. या. व.फ़ी. @@ -6522,91 +6766,106 @@ For terms of use, see http://www.unicode.org/copyright.html व. इं. {0} व. इं. {0} व. इं. + {0}/वर्ग इंच - - वर्ग कि.मी. - {0} वर्ग कि.मी. - {0} वर्ग कि.मी. - - - वर्ग मीटर - {0} वर्ग मी. - {0} वर्ग मी. - - - वर्ग मील - {0} वर्ग मील - {0} वर्ग मील - - - व. या. - {0} व. या. - {0} व. या. + + कैरट + {0} kt + {0} kt लीटर/किमी {0} ली/किमी {0} ली/किमी + + ली./100 कि.मी. + {0} ली./100 कि.मी. + {0} ली./100 कि.मी. + मील/गैलन {0} mpg {0} mpg - - बिट - {0} बिट - {0} बिट - - - बाइट - {0} बाइट - {0} बाइट - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + बाइट + {0} बाइट + {0} बाइट + + + बिट + {0} बिट + {0} बिट + + + शता + {0} शता + {0} शता + + + वर्ष + {0} वर्ष + {0} वर्ष + {0}/वर्ष + + + माह + {0} माह + {0} माह + {0}/माह + + + सप्ताह + {0} सप्ताह + {0} सप्ताह + {0}/सप्ताह + दिन {0} दिन {0} दिन + {0}/दिन घंटे @@ -6614,30 +6873,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} घं. {0} प्र. घं. - - मा॰ सेक॰ - {0} मा॰ से॰ - {0} मा॰ से॰ - - - मिलीसेकंड - {0} मि.से. - {0} मि.से. - मिनट {0} मि. {0} मि. - - - माह - {0} माह - {0} माह - - - नैनो से. - {0} नैनो से. - {0} नैनो से. + {0}/मिनट सेकंड @@ -6645,15 +6885,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} सेक. {0} प्र. से. - - सप्ताह - {0} सप्ताह - {0} सप्ताह + + मिलीसेकंड + {0} मि.से. + {0} मि.से. - - वर्ष - {0} वर्ष - {0} वर्ष + + मा॰ सेक॰ + {0} मा॰ से॰ + {0} मा॰ से॰ + + + नैनो से. + {0} नैनो से. + {0} नैनो से. एम्पी॰ @@ -6671,10 +6916,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Ω - वोल्ट्स + वोल्ट {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -6685,21 +6935,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - जूल - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - किलो जूल {0} kJ {0} kJ + + जूल + {0} J + {0} J + kWh {0} kWh @@ -6710,216 +6955,225 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - खगो. इका. - {0} खगो. इका. - {0} खगो. इका. + + कि.मी. + {0} कि.मी. + {0} कि.मी. + {0}/कि.मी. - - सें.मी. - {0} सें.मी. - {0} सें.मी. + + मीटर + {0} मी + {0} मी + {0}/मी डे.मी. {0} डे.मी. {0} डे.मी. - - फ़ीट - {0} फ़ीट - {0} फ़ीट - - - इंच - {0} इंच - {0} इंच - - - कि.मी. - {0} कि.मी. - {0} कि.मी. - - - प्रकाश वर्ष - {0} प्र.व. - {0} प्र.व. - - - मीटर - {0} मी - {0} मी - - - µ मा.मी. - {0} µ मा.मी. - {0} µ मा.मी. - - - मील - {0} मील - {0} मील + + सें.मी. + {0} सें.मी. + {0} सें.मी. + {0}/सें.मी. मि.मी. {0} मि.मी. {0} मि.मी. + + µ मा.मी. + {0} µ मा.मी. + {0} µ मा.मी. + नै.मी. {0} नै.मी. {0} नै.मी. - - नॉ. मी. - {0} नॉ. मी. - {0} नॉ. मी. - - - पार्सेक - {0} पार्सेक - {0} पार्सेक - पि.मी. {0} पि.मी. {0} पि.मी. + + मील + {0} मील + {0} मील + यार्ड {0} यार्ड {0} यार्ड + + फ़ीट + {0} फ़ीट + {0} फ़ीट + {0}/फ़ीट + + + इंच + {0} इंच + {0} इंच + {0}/इंच + + + पार्सेक + {0} पार्सेक + {0} पार्सेक + + + प्रकाश वर्ष + {0} प्र.व. + {0} प्र.व. + + + खगो. इका. + {0} खगो. इका. + {0} खगो. इका. + + + नॉ. मी. + {0} नॉ. मी. + {0} नॉ. मी. + + + smi + {0} smi + {0} smi + लक्स {0} lx {0} lx - - कै॰ - {0} कै. - {0} कै. - - - ग्राम - {0} ग्रा. - {0} ग्रा. - - - कि.ग्रा. - {0} कि.ग्रा. - {0} कि.ग्रा. - मीट्रिक टन {0} मीट्रिक टन {0} मीट्रिक टन - - मा॰ग्रा॰ - {0} मा॰ग्रा॰ - {0} मा॰ग्रा॰ + + कि.ग्रा. + {0} कि.ग्रा. + {0} कि.ग्रा. + {0}/कि.ग्रा. + + + ग्राम + {0} ग्रा. + {0} ग्रा. + {0}/ग्रा. मि.ग्रा. {0} मि.ग्रा. {0} मि.ग्रा. - - औंस - {0} औं. - {0} औं. - - - ट्राई औंस - {0} ट्राई औंस - {0} ट्राई औंस - - - पौंड - {0} पौंड - {0} पौंड + + मा॰ग्रा॰ + {0} मा॰ग्रा॰ + {0} मा॰ग्रा॰ टन {0} टन {0} टन + + पौंड + {0} पौंड + {0} पौंड + {0}/पौंड + + + औंस + {0} औं. + {0} औं. + {0}/औंस + + + ट्राई औंस + {0} ट्राई औंस + {0} ट्राई औंस + + + कै॰ + {0} कै. + {0} कै. + GW {0} GW {0} GW - - hp - {0} hp - {0} hp - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW + + kW + {0} kW + {0} kW + + + वॉट + {0} W + {0} W + mW {0} mW {0} mW - - वॉट - {0} W - {0} W + + hp + {0} hp + {0} hp - hPa + hPa {0} hPa {0} hPa + + mm Hg + {0} mm Hg + {0} mm Hg + + + psi + {0} psi + {0} psi + - inHg + inHg {0} inHg {0} inHg - mbar + mbar {0} mbar {0} mbar - - mm Hg - {0} mm Hg - {0} mm Hg - - - psi - {0} psi - {0} psi - - - कैरट - {0} kt - {0} kt - कि.मी./घं. {0} कि.मी. प्रति घं. @@ -6935,8 +7189,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} मी.प्र.घं. {0} मी.प्र.घं. + + नॉट + {0} नॉट + {0} नॉट + + + ° + {0}° + {0}° + - डिग्री सेल्सियस + डिग्री सेल्सियस {0}°से. {0}°से. @@ -6950,31 +7214,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - एकड़ फ़ीट - {0} ए.फ़ी. - {0} ए.फ़ी. - - - सें.ली. - {0} सें.ली. - {0} सें.ली. - - - घन सें. मी. - {0} घन सें. मी. - {0} घन सें. मी. - - - घ. फ़ी. - {0} घ. फ़ी. - {0} घ. फ़ी. - - - घन इंच - {0} घन इंच - {0} घन इंच - घन कि.मी. {0} घन कि.मी. @@ -6984,6 +7223,13 @@ For terms of use, see http://www.unicode.org/copyright.html घन मी. {0} घन मी. {0} घन मी. + {0}/घन मी. + + + घन सें. मी. + {0} घन सें. मी. + {0} घन सें. मी. + {0}/घन सें. मी. घन मील @@ -6995,25 +7241,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} घन या. {0} घन या. - - कप - {0} कप - {0} कप + + घ. फ़ी. + {0} घ. फ़ी. + {0} घ. फ़ी. - - डे.ली. - {0} डे.ली. - {0} डे.ली. + + घन इंच + {0} घन इंच + {0} घन इंच - - फ़्लुड आउंस - {0} फ़्लुड आउंस - {0} फ़्लुड आउंस - - - गैलन - {0} गैलन - {0} गैलन + + मे. ली. + {0} मे. ली. + {0} मे. ली. है.ली. @@ -7024,27 +7265,64 @@ For terms of use, see http://www.unicode.org/copyright.html लीटर {0} ली. {0} ली. + {0}/ली. - - मे. ली. - {0} मे. ली. - {0} मे. ली. + + डे.ली. + {0} डे.ली. + {0} डे.ली. + + + सें.ली. + {0} सें.ली. + {0} सें.ली. मि. ली. {0} मि. ली. {0} मि. ली. - - पिंट - {0} पिंट - {0} पिंट + + मीट्रिक पिंट + {0} मीट्रिक पिंट + {0} मीट्रिक पिंट + + + मीट्रिक कप + {0} मीट्रिक कप + {0} मीट्रिक कप + + + एकड़ फ़ीट + {0} ए.फ़ी. + {0} ए.फ़ी. + + + गैलन + {0} गैलन + {0} गैलन + {0}/गैलन क्वार्ट {0} क्वार्ट {0} क्वार्ट + + पिंट + {0} पिंट + {0} पिंट + + + कप + {0} कप + {0} कप + + + फ़्लूइड आउंस + {0} फ़्लूइड आउंस + {0} फ़्लूइड आउंस + टे. स्पून {0} टे. स्पून @@ -7055,6 +7333,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} टी स्पून {0} टी स्पून + + {0}E + {0}N + {0}S + {0}W + @@ -7065,6 +7349,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}गु. {0}गु. + + {0}° + {0}° + {0}′ {0}′ @@ -7073,26 +7361,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0}एकड़ - {0}एकड़ + + {0} km² + {0} km² {0}हे. {0}हे. - - {0}ft² - {0}ft² - - - {0} km² - {0} km² - {0} वर्ग मी. {0} वर्ग मी. @@ -7101,6 +7377,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0}वर्ग मील {0}वर्ग मील + + {0}एकड़ + {0}एकड़ + + + {0}ft² + {0}ft² + + + ली./100 कि.मी. + {0}ली/100कि + {0}ली/100कि + + + वर्ष + {0}वर्ष + {0}वर्ष + + + माह + {0}माह + {0}माह + + + सप्ताह + {0} सप्ताह + {0} सप्ताह + दिन {0}दिन @@ -7111,66 +7415,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0}घं. {0}घं. - - मि.से. - {0} मि.से. - {0} मि.से. - मिनट {0}मि. {0}मि. - - माह - {0}माह - {0}माह - सेकंड {0}से. {0}से. - - सप्ताह - {0} सप्ताह - {0} सप्ताह - - - वर्ष - {0}वर्ष - {0}वर्ष - - - सें.मी. - {0} सें.मी. - {0} सें.मी. - - - {0}′ - {0}′ - - - {0}″ - {0}″ + + मि.से. + {0} मि.से. + {0} मि.से. कि.मी. {0} कि.मी. {0} कि.मी. - - {0}प्र.व. - {0}प्र.व. - मीटर {0}मी {0}मी - - {0}मील - {0}मील + + सें.मी. + {0} सें.मी. + {0} सें.मी. मि.मी. @@ -7181,31 +7454,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0}पि.मी. {0}पि.मी. + + {0}मील + {0}मील + {0}गज {0}गज - - ग्राम - {0} ग्रा. - {0} ग्रा. + + {0}′ + {0}′ + + + {0}″ + {0}″ + + + {0}प्र.व. + {0}प्र.व. कि.ग्रा. {0} कि.ग्रा. {0} कि.ग्रा. - - {0}औं. - {0}औं. + + ग्राम + {0} ग्रा. + {0} ग्रा. {0}# {0}# - - {0}एचपी - {0}एचपी + + {0}औं. + {0}औं. {0}कि.वॉ. @@ -7215,6 +7500,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}वॉ {0}वॉ + + {0}एचपी + {0}एचपी + {0}hPa {0}hPa @@ -7241,7 +7530,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mph - °से. + °से. {0}°से. {0}°से. @@ -7262,6 +7551,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ली. {0}ली. + + {0}E + {0}N + {0}S + {0}W + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hi_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hi_IN.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hi_IN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hi_IN.xml index 21a20e001ca..1f17b3a986c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hi_IN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hi_IN.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hr.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hr.xml similarity index 93% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hr.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hr.xml index 5ca41a0c785..b073f6ade7c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hr.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hr.xml @@ -1,13 +1,12 @@ - - - + @@ -50,6 +49,7 @@ For terms of use, see http://www.unicode.org/copyright.html aymara azerbajdžanski azerski + južnoazerbajdžanski baškirski baluchi balinezijski @@ -62,6 +62,7 @@ For terms of use, see http://www.unicode.org/copyright.html bena bafut bugarski + zapadnobaludžijski bhojpuri bislama bikol @@ -289,6 +290,7 @@ For terms of use, see http://www.unicode.org/copyright.html laoski mongo lozi + sjevernolurski litavski luba-katanga luba-lulua @@ -337,12 +339,14 @@ For terms of use, see http://www.unicode.org/copyright.html burmanski myene mordvinski + mazanderanski nauru napolitanski nama književni norveški sjeverni ndebele donjonjemački + donjosaksonski nepalski newari ndonga @@ -420,6 +424,7 @@ For terms of use, see http://www.unicode.org/copyright.html sicilijski škotski sindhi + južnokurdski južni sami seneca sena @@ -457,8 +462,8 @@ For terms of use, see http://www.unicode.org/copyright.html sumerski švedski svahili + kongoanski swahili komorski - kongoanski swahili klasični sirski sirijski tamilski @@ -513,6 +518,7 @@ For terms of use, see http://www.unicode.org/copyright.html walamo waray washo + warlpiri wolof kalmyk xhosa @@ -663,7 +669,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -738,7 +744,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angvila Albanija Armenija - Nizozemski Antili Angola Antarktika Argentina @@ -761,7 +766,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bermuda Brunej Bolivija - Karipski otoci Nizozemske + Karipski otoci Nizozemske Brazil Bahami Butan @@ -957,7 +962,7 @@ For terms of use, see http://www.unicode.org/copyright.html Južni Sudan Sveti Toma i Princip Salvador - Sint Maarten + Sint Maarten Sirija Svazi Tristan da Cunha @@ -1054,6 +1059,9 @@ For terms of use, see http://www.unicode.org/copyright.html Numeričko poredavanje Jačina poredavanja valuta + format vremena (12 ili 24) + stil prijeloma retka + sustav mjernih jedinica brojevi Vremenska zona Varijanta zemlje/jezika @@ -1061,96 +1069,106 @@ For terms of use, see http://www.unicode.org/copyright.html Privatna upotreba - arapsko-indijske znamenke - proširene arapsko-indijske znamenke - armenski brojevi - mali armenski brojevi - znamenke bengalskog pisma - razvrstavanje prema tradicionalnom kineskom - Big5 - budistički kalendar - kineski kalendar - Koptski kalendar - dangi kalendar - znamenke pisma devanagari - rječničko razvrstavanje - Standardno Unicode razvrstavanje - etiopski brojevi - etiopski kalendar - Etiopski kalendar "Amete Alem" - Financijski brojevi - široke znamenke - razvrstavanje prema pojednostavljenom kineskom - GB2312 - gruzijski brojevi - gregorijanski kalendar - grčki brojevi - mali grčki brojevi - gudžaratske znamenke - znamenke pisma gurmukhi - kineski decimalni brojevi - pojednostavljeni kineski brojevi - pojednostavljeni kineski financijski brojevi - tradicionalni kineski brojevi - tradicionalni kineski financijski brojevi - hebrejski brojevi - hebrejski kalendar - Poredaj sve - indijski nacionalni kalendar - islamski kalendar - islamski civilni kalendar - ISO-8601 kalendar - japanski kalendar - japanski brojevi - japanski financijski brojevi - khmerske znamenke - znamenke pisma kannada - laoske znamenke - arapski brojevi - Prvo poredaj mala slova - malajalamske znamenke - Mongolske znamenke - mijanmarske znamenke - Izvorne znamenke - Poredaj naglaske normalno - Poredaj po normalnom poretku veličine slova - Poredaj zanemarujući veličinu - Poredaj pismo kana zasebno - Poredaj bez normalizacije - Poredaj znamenke pojedinačno - Poredaj simbole - orijske znamenke - perzijski kalendar - razvrstavanje po abecedi - Fonetski poredak - Pinyin razvrstavanje - Poredaj samo po osnovnim slovima - Poredaj po naglascima/veličini/širini/pismu kana - reformirano razvrstavanje - kalendar Republike Kine - rimski brojevi - mali rimski brojevi - Općenito pretraživanje - Pretraživanje po početnom suglasniku hangula - Poredaj po naglasku - Poredaj zanemarujući simbole - Standardno razvrstavanje - razvrstavanje po redoslijedu poteza za kineski - tamilski brojevi - tamilske znamenke - znamenke teluškog pisma - Poredaj po naglascima/veličini/širini - tajske znamenke - tibetske znamenke - tradicionalno razvrstavanje - Tradicionalni brojevi - razvrstavanje prema korijenu i potezu - Poredaj prvo velika slova - Vai znamenke - Poredaj naglaske obrnuto - Poredaj u skladu s veličinom slova - Poredaj pismo kana drugačije - Poredaj unikod normalizirano - Poredaj znamenke numerički - zhuyin razvrstavanje + budistički kalendar + kineski kalendar + Koptski kalendar + dangi kalendar + etiopski kalendar + Etiopski kalendar "Amete Alem" + gregorijanski kalendar + hebrejski kalendar + indijski nacionalni kalendar + islamski kalendar + islamski civilni kalendar + ISO-8601 kalendar + japanski kalendar + perzijski kalendar + kalendar Republike Kine + Poredaj simbole + Poredaj zanemarujući simbole + Poredaj naglaske normalno + Poredaj naglaske obrnuto + Prvo poredaj mala slova + Poredaj po normalnom poretku veličine slova + Poredaj prvo velika slova + Poredaj zanemarujući veličinu + Poredaj u skladu s veličinom slova + Poredaj pismo kana zasebno + Poredaj pismo kana drugačije + razvrstavanje prema tradicionalnom kineskom - Big5 + rječničko razvrstavanje + Standardno Unicode razvrstavanje + razvrstavanje prema pojednostavljenom kineskom - GB2312 + razvrstavanje po abecedi + Fonetski poredak + Pinyin razvrstavanje + reformirano razvrstavanje + Općenito pretraživanje + Pretraživanje po početnom suglasniku hangula + standardno razvrstavanje + razvrstavanje po redoslijedu poteza za kineski + tradicionalno razvrstavanje + razvrstavanje prema korijenu i potezu + zhuyin razvrstavanje + Poredaj bez normalizacije + Poredaj unikod normalizirano + Poredaj znamenke pojedinačno + Poredaj znamenke numerički + Poredaj sve + Poredaj samo po osnovnim slovima + Poredaj po naglascima/veličini/širini/pismu kana + Poredaj po naglasku + Poredaj po naglascima/veličini/širini + 12-satni format (0-11) + 12-satni format (1-12) + 24-satni format (0-23) + 24-satni format (1-24) + slobodni stil prijeloma retka + normalni stil prijeloma retka + strogi stil prijeloma retka + metrički sustav + imperijalni sustav mjera + američki sustav mjera + arapsko-indijske znamenke + proširene arapsko-indijske znamenke + armenski brojevi + mali armenski brojevi + znamenke bengalskog pisma + znamenke pisma devanagari + etiopski brojevi + Financijski brojevi + široke znamenke + gruzijski brojevi + grčki brojevi + mali grčki brojevi + gudžaratske znamenke + znamenke pisma gurmukhi + kineski decimalni brojevi + pojednostavljeni kineski brojevi + pojednostavljeni kineski financijski brojevi + tradicionalni kineski brojevi + tradicionalni kineski financijski brojevi + hebrejski brojevi + japanski brojevi + japanski financijski brojevi + khmerske znamenke + znamenke pisma kannada + laoske znamenke + arapski brojevi + malajalamske znamenke + Mongolske znamenke + mijanmarske znamenke + Izvorne znamenke + orijske znamenke + rimski brojevi + mali rimski brojevi + tamilski brojevi + tamilske znamenke + znamenke teluškog pisma + tajske znamenke + tibetske znamenke + Tradicionalni brojevi + Vai znamenke BGN @@ -1389,7 +1407,7 @@ For terms of use, see http://www.unicode.org/copyright.html - d. M. y. G + d. MMM y. G @@ -1401,12 +1419,12 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1} 'u' {0} - {1} {0} + {1} 'u' {0} @@ -1421,6 +1439,7 @@ For terms of use, see http://www.unicode.org/copyright.html d. + ccc E, d. y. G LLL y. G @@ -1502,7 +1521,7 @@ For terms of use, see http://www.unicode.org/copyright.html E, dd.MM. – E, dd.MM. - LLL–LLL + LLL – LLL d. – d. MMM @@ -1530,7 +1549,7 @@ For terms of use, see http://www.unicode.org/copyright.html E, dd.MM.y. – E, dd.MM.y. G - LLL–LLL y. G + LLL – LLL y. G LLL y. – LLL y. G @@ -1764,45 +1783,62 @@ For terms of use, see http://www.unicode.org/copyright.html - popodne - ujutro - navečer - prijepodne - noću + ponoć + AM podne + PM + ujutro + popodne + navečer + noću - popodne + ponoć AM - ujutro - navečer - prijepodne - noću - P + podne PM + ujutro + popodne + navečer + noću + ponoć AM - podne + podne PM + ujutro + poslije podne + navečer + noću - popodne - ujutro - navečer - prijepodne - noću - podne + AM + PM + + + AM + PM + + + ponoć + AM + podne + PM + jutro + popodne + večer + noć - Prije Krista + prije Krista pr. n. e. - Poslije Krista + poslije Krista n.e. @@ -1899,6 +1935,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm hh:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L. dd.MM. E, dd.MM. @@ -1925,7 +1965,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} {1} - {0} - {1} + {0} – {1} dd. – dd. @@ -1934,7 +1974,7 @@ For terms of use, see http://www.unicode.org/copyright.html h – h'h' a - HH–HH'h' + HH – HH 'h' h:mm a – h:mm a @@ -2698,10 +2738,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Era + era - Godina + godina prošle godine ove godine sljedeće godine @@ -2718,6 +2758,9 @@ For terms of use, see http://www.unicode.org/copyright.html g. + prošle god. + ove god. + sljedeće god. za {0} g. za {0} g. @@ -2731,6 +2774,9 @@ For terms of use, see http://www.unicode.org/copyright.html g. + prošle g. + ove g. + sljedeće g. +{0} g. +{0} g. @@ -2743,7 +2789,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Kvartal + kvartal + prošli kvartal + ovaj kvartal + sljedeći kvartal za {0} kvartal za {0} kvartala @@ -2757,6 +2806,9 @@ For terms of use, see http://www.unicode.org/copyright.html kv. + prošli kv. + ovaj kv. + sljedeći kv. za {0} kv. za {0} kv. @@ -2770,6 +2822,9 @@ For terms of use, see http://www.unicode.org/copyright.html kv. + prošli kv. + ovaj kv. + sljedeći kv. +{0} kv. +{0} kv. @@ -2782,7 +2837,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Mjesec + mjesec prošli mjesec ovaj mjesec sljedeći mjesec @@ -2799,6 +2854,9 @@ For terms of use, see http://www.unicode.org/copyright.html mj. + prošli mj. + ovaj mj. + sljedeći mj. za {0} mj. za {0} mj. @@ -2812,6 +2870,9 @@ For terms of use, see http://www.unicode.org/copyright.html m. + prošli mj. + ovaj mj. + sljedeći mj. +{0} mj. +{0} mj. @@ -2824,7 +2885,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Tjedan + tjedan prošli tjedan ovaj tjedan sljedeći tjedan @@ -2841,6 +2902,9 @@ For terms of use, see http://www.unicode.org/copyright.html tj. + prošli tj. + ovaj tj. + sljedeći tj. za {0} tj. za {0} tj. @@ -2854,6 +2918,9 @@ For terms of use, see http://www.unicode.org/copyright.html tj. + prošli tj. + ovaj tj. + sljedeći tj. +{0} tj. +{0} tj. @@ -2866,7 +2933,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Dan + dan prekjučer jučer danas @@ -2885,6 +2952,11 @@ For terms of use, see http://www.unicode.org/copyright.html d. + prekjučer + jučer + danas + sutra + prekosutra za {0} dan za {0} dana @@ -2898,6 +2970,11 @@ For terms of use, see http://www.unicode.org/copyright.html d. + prekjučer + jučer + danas + sutra + prekosutra za {0} d za {0} d @@ -2910,7 +2987,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Dan u tjednu + dan u tjednu prošla nedjelja @@ -3021,7 +3098,7 @@ For terms of use, see http://www.unicode.org/copyright.html AM/PM - Sat + sat za {0} sat za {0} sata @@ -3060,7 +3137,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Minuta + minuta za {0} minutu za {0} minute @@ -3099,7 +3176,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Sekunda + sekunda sada za {0} sekundu @@ -3139,7 +3216,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Vremenska zona + vremenska zona @@ -4017,6 +4094,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -4101,6 +4181,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Chita + Jakutsk @@ -4119,6 +4202,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolimsk + Kamčatka @@ -5505,6 +5591,46 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0000¤ + 0000¤ + 0000¤ + 00 tis'.' ¤ + 00 tis'.' ¤ + 00 tis'.' ¤ + 000 tis'.' ¤ + 000 tis'.' ¤ + 000 tis'.' ¤ + 0 mil'.' ¤ + 0 mil'.' ¤ + 0 mil'.' ¤ + 00 mil'.' ¤ + 00 mil'.' ¤ + 00 mil'.' ¤ + 000 mil'.' ¤ + 000 mil'.' ¤ + 000 mil'.' ¤ + 0 mlr'.' ¤ + 0 mlr'.' ¤ + 0 mlr'.' ¤ + 00 mlr'.' ¤ + 00 mlr'.' ¤ + 00 mlr'.' ¤ + 000 mlr'.' ¤ + 000 mlr'.' ¤ + 000 mlr'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + + {0} {1} {0} {1} {0} {1} @@ -5572,6 +5698,7 @@ For terms of use, see http://www.unicode.org/copyright.html angolske kvanze angolskih kvanzi AOA + Kz angolska kvanza (1977.–1990.) @@ -5679,6 +5806,7 @@ For terms of use, see http://www.unicode.org/copyright.html konvertibilne marke konvertibilnih maraka BAM + KM bosansko-hercegovački novi dinar @@ -5788,6 +5916,7 @@ For terms of use, see http://www.unicode.org/copyright.html bolivijska bolivijana bolivijskih bolivijana BOB + Bs stari bolivijski bolivijano @@ -5888,6 +6017,7 @@ For terms of use, see http://www.unicode.org/copyright.html bocvanske pule bocvanskih pula BWP + P bjeloruska nova rublja (1994–1999) @@ -6028,6 +6158,7 @@ For terms of use, see http://www.unicode.org/copyright.html kubanska konvertibilna peza kubanskih konvertibilnih peza CUC + $ kubanski pezo @@ -6057,6 +6188,7 @@ For terms of use, see http://www.unicode.org/copyright.html češke krune čeških kruna CZK + istočnonjemačka marka @@ -6085,6 +6217,7 @@ For terms of use, see http://www.unicode.org/copyright.html danske krune danskih kruna DKK + kr dominikanski pezo @@ -6128,6 +6261,7 @@ For terms of use, see http://www.unicode.org/copyright.html egipatske funte egipatskih funti EGP + eritrejska nakfa @@ -6194,6 +6328,7 @@ For terms of use, see http://www.unicode.org/copyright.html falklandske funte falklandskih funti FKP + £ francuski franak @@ -6223,6 +6358,7 @@ For terms of use, see http://www.unicode.org/copyright.html gruzijska lara gruzijskih lara GEL + ganski cedi (1979.–2007.) @@ -6259,6 +6395,7 @@ For terms of use, see http://www.unicode.org/copyright.html gvinejska franka gvinejskih franaka GNF + FG gvinejski syli @@ -6287,6 +6424,7 @@ For terms of use, see http://www.unicode.org/copyright.html gvatemalska kvecala gvatemalskih kvecala GTQ + Q portugalski gvinejski eskudo @@ -6324,6 +6462,7 @@ For terms of use, see http://www.unicode.org/copyright.html honduraške lempire honduraških lempira HNL + L hrvatski dinar @@ -6338,6 +6477,7 @@ For terms of use, see http://www.unicode.org/copyright.html hrvatske kune hrvatskih kuna HRK + kn haićanski gourd @@ -6352,6 +6492,7 @@ For terms of use, see http://www.unicode.org/copyright.html mađarske forinte mađarskih forinti HUF + Ft indonezijska rupija @@ -6359,6 +6500,7 @@ For terms of use, see http://www.unicode.org/copyright.html indonezijske rupije indonezijskih rupija IDR + Rp irska funta @@ -6424,6 +6566,7 @@ For terms of use, see http://www.unicode.org/copyright.html islandske krune islandskih kruna ISK + kr talijanska lira @@ -6483,6 +6626,7 @@ For terms of use, see http://www.unicode.org/copyright.html komorska franka komorskih franaka KMF + CF sjevernokorejski won @@ -6490,6 +6634,7 @@ For terms of use, see http://www.unicode.org/copyright.html sjevernokorejska wona sjevernokorejskih wona KPW + južnokorejski hvan @@ -6550,6 +6695,7 @@ For terms of use, see http://www.unicode.org/copyright.html libanonske funte libanonskih funti LBP + šrilankanska rupija @@ -6557,6 +6703,7 @@ For terms of use, see http://www.unicode.org/copyright.html šrilankanske rupije šrilankanskih rupija LKR + Rs liberijski dolar @@ -6670,6 +6817,7 @@ For terms of use, see http://www.unicode.org/copyright.html madagaskarska ariarija madagaskarskih ariarija MGA + Ar madagaskarski franak @@ -6705,6 +6853,7 @@ For terms of use, see http://www.unicode.org/copyright.html mjanmarska kjata mjanmarskih kjata MMK + K mongolski tugrik @@ -6748,6 +6897,7 @@ For terms of use, see http://www.unicode.org/copyright.html mauricijske rupije mauricijskih rupija MUR + Rs maldivijska rupija @@ -6798,6 +6948,7 @@ For terms of use, see http://www.unicode.org/copyright.html malezijska ringita malezijskih ringita MYR + RM mozambijski eskudo @@ -6849,6 +7000,7 @@ For terms of use, see http://www.unicode.org/copyright.html nikaragvanske zlatne kordobe nikaragvanskih zlatnih kordoba NIO + C$ nizozemski gulden @@ -6863,6 +7015,7 @@ For terms of use, see http://www.unicode.org/copyright.html norveške krune norveških kruna NOK + kr nepalska rupija @@ -6870,6 +7023,7 @@ For terms of use, see http://www.unicode.org/copyright.html nepalske rupije nepalskih rupija NPR + Rs novozelandski dolar @@ -6935,6 +7089,7 @@ For terms of use, see http://www.unicode.org/copyright.html pakistanske rupije pakistanskih rupija PKR + Rs poljska zlota @@ -6942,6 +7097,7 @@ For terms of use, see http://www.unicode.org/copyright.html poljske zlote poljskih zlota PLN + poljska zlota (1950.–1995.) @@ -7006,6 +7162,7 @@ For terms of use, see http://www.unicode.org/copyright.html ruske rublje ruskih rublji RUB + ruska rublja (1991.–1998.) @@ -7021,6 +7178,7 @@ For terms of use, see http://www.unicode.org/copyright.html ruandska franka ruandskih franaka RWF + RF saudijski rial @@ -7071,6 +7229,7 @@ For terms of use, see http://www.unicode.org/copyright.html švedske krune švedskih kruna SEK + kr singapurski dolar @@ -7086,6 +7245,7 @@ For terms of use, see http://www.unicode.org/copyright.html svetohelenske funte svetohelenskih funti SHP + £ slovenski tolar @@ -7144,6 +7304,7 @@ For terms of use, see http://www.unicode.org/copyright.html dobre Svetog Tome i Principa dobri Svetog Tome i Principa STD + Db sovjetska rublja @@ -7165,6 +7326,7 @@ For terms of use, see http://www.unicode.org/copyright.html sirijske funte sirijskih funti SYP + £ svazi lilangeni @@ -7179,6 +7341,7 @@ For terms of use, see http://www.unicode.org/copyright.html tajlandska bahta tajlandskih bahta THB + ฿ tajikistanska rublja @@ -7221,6 +7384,7 @@ For terms of use, see http://www.unicode.org/copyright.html tongaške pa’ange tongaških pa’angi TOP + T$ timorski eskudo @@ -7243,6 +7407,7 @@ For terms of use, see http://www.unicode.org/copyright.html turskih lira TRY + TL trininadtobaški dolar @@ -7360,6 +7525,7 @@ For terms of use, see http://www.unicode.org/copyright.html venezuelanska bolivara venezuelanskih bolivara VEF + Bs vijetnamski dong @@ -7445,6 +7611,7 @@ For terms of use, see http://www.unicode.org/copyright.html istočnokaripska dolara istočnokaripskih dolara XCD + $ posebna crtaća prava @@ -7592,6 +7759,7 @@ For terms of use, see http://www.unicode.org/copyright.html južnoafrička randa južnoafričkih randa ZAR + R zambijska kvača (1968–2012) @@ -7606,6 +7774,7 @@ For terms of use, see http://www.unicode.org/copyright.html zambijske kvače zambijskih kvača ZMW + ZK zairski novi zair @@ -7665,6 +7834,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metra u sekundi na kvadrat {0} metara u sekundi na kvadrat + + okretaj + {0} okretaj + {0} okretaja + {0} okretaja + + + radijani + {0} radijan + {0} radijana + {0} radijana + + + stupnjevi + {0} stupanj + {0} stupnja + {0} stupnjeva + minute {0} minuta @@ -7677,17 +7864,37 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sekunde {0} sekundi - - stupnjevi - {0} stupanj - {0} stupnja - {0} stupnjeva + + kvadratni kilometri + {0} kvadratni kilometar + {0} kvadratna kilometra + {0} kvadratnih kilometara - - radijani - {0} radijan - {0} radijana - {0} radijana + + hektari + {0} hektar + {0} hektra + {0} hektara + + + kvadratni metri + {0} kvadratni metar + {0} kvadratna metra + {0} kvadratnih metara + {0}/m² + + + kvadratni centimetri + {0} kvadratni centimetar + {0} kvadratna centimetra + {0} kvadratnih centimetara + {0}/cm² + + + kvadratne milje + {0} kvadratna milja + {0} kvadratne milje + {0} kvadratnih milja katastarska jutra @@ -7695,17 +7902,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} katastarska jutra {0} katastarskih jutara - - hektari - {0} hektar - {0} hektara - {0} hektara - - - kvadratni centimetri - {0} kvadratni centimetar - {0} kvadratna centimetra - {0} kvadratnih centimetara + + kvadratni jardi + {0} kvadratni jard + {0} kvadratna jarda + {0} kvadratnih jardi kvadratne stope @@ -7718,30 +7919,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kvadratni inč {0} kvadratna inča {0} kvadratnih inča + {0}/in² - - kvadratni kilometri - {0} kvadratni kilometar - {0} kvadratna kilometra - {0} kvadratnih kilometara - - - kvadratni metri - {0} kvadratni metar - {0} kvadratna metra - {0} kvadratnih metara - - - kvadratne milje - {0} kvadratna milja - {0} kvadratne milje - {0} kvadratnih milja - - - kvadratni jardi - {0} kvadratni jard - {0} kvadratna jarda - {0} kvadratnih jardi + + karati + {0} karat + {0} karata + {0} karata litre po kilometru @@ -7749,77 +7933,111 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litre po kilometru {0} litara po kilometru + + litre na 100 kilometara + {0} litra na 100 kilometara + {0} litre na 100 kilometara + {0} litara na 100 kilometara + milje po galonu {0} milja po galonu {0} milje po galonu {0} milja po galonu - - bitovi - {0} bit - {0} bita - {0} bitova - - - bajtovi - {0} bajt - {0} bajta - {0} bajtova - - - gigabiti - {0} gigabit - {0} gigabita - {0} gigabita - - - gigabajti - {0} gigabajt - {0} gigabajta - {0} gigabajta - - - kilobiti - {0} kilobit - {0} kilobita - {0} kilobita - - - kilobajti - {0} kilobajt - {0} kilobajta - {0} kilobajta - - - megabiti - {0} megabit - {0} megabita - {0} megabita - - - megabajti - {0} megabajt - {0} megabajta - {0} megabajta - - - terabiti - {0} terabit - {0} terabita - {0} terabita - terabajti {0} terabajt {0} terabajta {0} terabajta + + terabiti + {0} terabit + {0} terabita + {0} terabita + + + gigabajti + {0} gigabajt + {0} gigabajta + {0} gigabajta + + + gigabiti + {0} gigabit + {0} gigabita + {0} gigabita + + + megabajti + {0} megabajt + {0} megabajta + {0} megabajta + + + megabiti + {0} megabit + {0} megabita + {0} megabita + + + kilobajti + {0} kilobajt + {0} kilobajta + {0} kilobajta + + + kilobiti + {0} kilobit + {0} kilobita + {0} kilobita + + + bajtovi + {0} bajt + {0} bajta + {0} bajtova + + + bitovi + {0} bit + {0} bita + {0} bitova + + + stoljeća + {0} stoljeće + {0} stoljeća + {0} stoljeća + + + godine + {0} godina + {0} godine + {0} godina + {0} godišnje + + + mjeseci + {0} mjesec + {0} mjeseca + {0} mjeseci + {0} mjesečno + + + tjedni + {0} tjedan + {0} tjedna + {0} tjedana + {0} tjedno + dani {0} dan {0} dana {0} dana + {0} dnevno sati @@ -7828,35 +8046,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sati {0}/h - - mikrosekunde - {0} mikrosekunda - {0} mikrosekunde - {0} mikrosekundi - - - milisekunde - {0} milisekunda - {0} milisekunde - {0} milisekundi - minute {0} minuta {0} minute {0} minuta - - - mjeseci - {0} mjesec - {0} mjeseca - {0} mjeseci - - - nanosekunde - {0} nanosekunda - {0} nanosekunde - {0} nanosekundi + {0}/min sekunde @@ -7865,17 +8060,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sekundi {0}/s - - tjedni - {0} tjedan - {0} tjedna - {0} tjedana + + milisekunde + {0} milisekunda + {0} milisekunde + {0} milisekundi - - godine - {0} godina - {0} godine - {0} godina + + mikrosekunde + {0} mikrosekunda + {0} mikrosekunde + {0} mikrosekundi + + + nanosekunde + {0} nanosekunda + {0} nanosekunde + {0} nanosekundi amperi @@ -7901,6 +8102,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volta {0} volti + + kilokalorije + {0} kilokalorija + {0} kilokalorije + {0} kilokalorija + kalorije {0} kalorija @@ -7913,24 +8120,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilokalorije {0} kilokalorija - - džuli - {0} džul - {0} džula - {0} džula - - - kilokalorije - {0} kilokalorija - {0} kilokalorije - {0} kilokalorija - kilodžuli {0} kilodžul {0} kilodžula {0} kilodžula + + džuli + {0} džul + {0} džula + {0} džula + kilovatsati {0} kilovatsat @@ -7943,11 +8144,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigaherca {0} gigaherca - - herci - {0} herc - {0} herca - {0} herca + + megaherci + {0} megaherc + {0} megaherca + {0} megaherca kiloherci @@ -7955,23 +8156,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kiloherca {0} kiloherca - - megaherci - {0} megaherc - {0} megaherca - {0} megaherca + + herci + {0} herc + {0} herca + {0} herca - - astronomske jedinice - {0} astronomska jedinica - {0} astronomske jedinice - {0} astronomskih jedinica + + kilometri + {0} kilometar + {0} kilometra + {0} kilometara + {0}/km - - centimetri - {0} centimetar - {0} centimetra - {0} centimetara + + metri + {0} metar + {0} metra + {0} metara + {0}/m decimetri @@ -7979,59 +8182,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} decimetra {0} decimetara - - hvati - {0} hvat - {0} hvata - {0} hvati - - - stope - {0} stopa - {0} stope - {0} stopa - - - furlonzi - {0} furlong - {0} furlonga - {0} furlonga - - - inči - {0} inč - {0} inča - {0} inča - - - kilometri - {0} kilometar - {0} kilometra - {0} kilometara - - - svjetlosne godine - {0} svjetlosna godina - {0} svjetlosne godine - {0} svjetlosnih godina - - - metri - {0} metar - {0} metra - {0} metara - - - mikrometri - {0} mikrometar - {0} mikrometra - {0} mikrometara - - - milje - {0} milja - {0} milje - {0} milja + + centimetri + {0} centimetar + {0} centimetra + {0} centimetara + {0}/cm milimetri @@ -8039,71 +8195,117 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milimetra {0} milimetara + + mikrometri + {0} mikrometar + {0} mikrometra + {0} mikrometara + nanometri {0} nanometar {0} nanometra {0} nanometara - - nautičke milje - {0} nautička milja - {0} nautičke milje - {0} nautičkih milja - - - parseci - {0} parsek - {0} parseka - {0} parseka - pikometri {0} pikometar {0} pikometra {0} pikometara + + milje + {0} milja + {0} milje + {0} milja + jardi {0} jard {0} jarda {0} jardi + + stope + {0} stopa + {0} stope + {0} stopa + {0}/ft + + + inči + {0} inč + {0} inča + {0} inča + {0}/in + + + parseci + {0} parsek + {0} parseka + {0} parseka + + + svjetlosne godine + {0} svjetlosna godina + {0} svjetlosne godine + {0} svjetlosnih godina + + + astronomske jedinice + {0} astronomska jedinica + {0} astronomske jedinice + {0} astronomskih jedinica + + + furlonzi + {0} furlong + {0} furlonga + {0} furlonga + + + hvati + {0} hvat + {0} hvata + {0} hvati + + + nautičke milje + {0} nautička milja + {0} nautičke milje + {0} nautičkih milja + + + skandinavska milja + {0} skandinavska milja + {0} skandinavske milje + {0} skandinavskih milja + luksi {0} luks {0} luksa {0} luksa - - karati - {0} karat - {0} karata - {0} karata - - - grami - {0} gram - {0} grama - {0} grama - - - kilogrami - {0} kilogram - {0} kilograma - {0} kilograma - tone {0} tona {0} tone {0} tona - - mikrogrami - {0} mikrogram - {0} mikrograma - {0} mikrograma + + kilogrami + {0} kilogram + {0} kilograma + {0} kilograma + {0}/kg + + + grami + {0} gram + {0} grama + {0} grama + {0}/g miligrami @@ -8111,29 +8313,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} miligrama {0} miligrama - - unce - {0} unca - {0} unce - {0} unci - - - troy unce - {0} troy unca - {0} troy unce - {0} troy unci - - - funte - {0} funta - {0} funte - {0} funti - - - kameni - {0} kamen - {0} kamena - {0} kamena + + mikrogrami + {0} mikrogram + {0} mikrograma + {0} mikrograma kratke tone @@ -8141,35 +8325,55 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kratke tone {0} kratkih tona + + kameni + {0} kamen + {0} kamena + {0} kamena + + + funte + {0} funta + {0} funte + {0} funti + {0}/lb + + + unce + {0} unca + {0} unce + {0} unci + {0}/oz + + + troy unce + {0} troy unca + {0} troy unce + {0} troy unci + + + karati + {0} karat + {0} karata + {0} karata + gigavati {0} gigavat {0} gigavata {0} gigavata - - konjske snage - {0} konjska snaga - {0} konjske snage - {0} konjskih snaga - - - kilovati - {0} kilovat - {0} kilovata - {0} kilovata - megavati {0} megavat {0} megavata {0} megavata - - milivati - {0} milivat - {0} milivata - {0} milivata + + kilovati + {0} kilovat + {0} kilovata + {0} kilovata vati @@ -8177,24 +8381,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} vata {0} vati + + milivati + {0} milivat + {0} milivata + {0} milivata + + + konjske snage + {0} konjska snaga + {0} konjske snage + {0} konjskih snaga + hektopaskali {0} hektopaskal {0} hektopaskala {0} hektopaskala - - inči žive - {0} inč žive - {0} inča žive - {0} inča žive - - - milibari - {0} milibar - {0} milibara - {0} milibara - milimetri živina stupca {0} milimetar živina stupca @@ -8207,11 +8411,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} funte po kvadratnom inču {0} funti po kvadratnom inču - - karati - {0} karat - {0} karata - {0} karata + + inči žive + {0} inč žive + {0} inča žive + {0} inča žive + + + milibari + {0} milibar + {0} milibara + {0} milibara kilometri na sat @@ -8231,6 +8441,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milje na sat {0} milja na sat + + čvor + {0} čvor + {0} čvora + {0} čvorova + + + ° + {0}° + {0}° + {0}° + Celzijevi stupnjevi {0} Celzijev stupanj @@ -8249,42 +8471,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvina {0} kelvina - - aker-stope - {0} aker-stopa - {0} aker-stope - {0} aker-stopi - - - bušeli - {0} bušel - {0} bušela - {0} bušela - - - centilitri - {0} centilitar - {0} centilitra - {0} centilitara - - - kubni centimetri - {0} kubni centimetar - {0} kubna centimetra - {0} kubnih centimetara - - - kubne stope - {0} kubna stopa - {0} kubne stope - {0} kubnih stopa - - - kubni inči - {0} kubni inč - {0} kubna inča - {0} kubnih inča - kubni kilometri {0} kubni kilometar @@ -8296,6 +8482,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubni metar {0} kubna metra {0} kubnih metara + {0}/m³ + + + kubni centimetri + {0} kubni centimetar + {0} kubna centimetra + {0} kubnih centimetara + {0}/cm³ kubne milje @@ -8309,29 +8503,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubna jarda {0} kubnih jardi - - šalice - {0} šalica - {0} šalice - {0} šalica + + kubne stope + {0} kubna stopa + {0} kubne stope + {0} kubnih stopa - - decilitri - {0} decilitar - {0} decilitra - {0} decilitara + + kubni inči + {0} kubni inč + {0} kubna inča + {0} kubnih inča - - tekuće unce - {0} tekuća unca - {0} tekuće unce - {0} tekućih unci - - - galoni - {0} galon - {0} galona - {0} galona + + megalitri + {0} megalitar + {0} megalitra + {0} megalitara hektolitri @@ -8344,12 +8532,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litra {0} litre {0} litara + {0}/l - - megalitri - {0} megalitar - {0} megalitra - {0} megalitara + + decilitri + {0} decilitar + {0} decilitra + {0} decilitara + + + centilitri + {0} centilitar + {0} centilitra + {0} centilitara mililitri @@ -8357,11 +8552,36 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mililitra {0} mililitara - - pinte - {0} pinta - {0} pinte - {0} pinti + + metričke pinte + {0} metrička pinta + {0} metričke pinte + {0} metričkih pinti + + + metričke šalice + {0} metrička šalica + {0} metričke šalice + {0} metričkih šalica + + + aker-stope + {0} aker-stopa + {0} aker-stope + {0} aker-stopi + + + bušeli + {0} bušel + {0} bušela + {0} bušela + + + galoni + {0} galon + {0} galona + {0} galona + {0}/gal četvrtine @@ -8369,6 +8589,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} četvrtine {0} četvrtina + + pinte + {0} pinta + {0} pinte + {0} pinti + + + šalice + {0} šalica + {0} šalice + {0} šalica + + + tekuće unce + {0} tekuća unca + {0} tekuće unce + {0} tekućih unci + žlice {0} žlica @@ -8381,6 +8619,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} žličice {0} žličica + + {0}I + {0}S + {0}J + {0}Z + @@ -8398,6 +8642,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + okr. + {0} okr. + {0} okr. + {0} okr. + + + rad + {0} rad + {0} rad + {0} rad + + + ° + {0}° + {0}° + {0}° + min {0} min @@ -8410,23 +8672,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} s {0} s - - ° - {0}° - {0}° - {0}° - - - rad - {0} rad - {0} rad - {0} rad - - - kj - {0} kj - {0} kj - {0} kj + + km² + {0} km² + {0} km² + {0} km² ha @@ -8434,11 +8684,37 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha + + + {0} m² + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + {0} mi² + + + kj + {0} kj + {0} kj + {0} kj + + + yd² + {0} yd² + {0} yd² + {0} yd² ft² @@ -8451,30 +8727,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt + {0} kt l/km @@ -8482,77 +8741,111 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l/km {0} l/km + + l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km + mpg {0} mpg {0} mpg {0} mpg - - bit - {0} bit - {0} bita - {0} bitova - - - bajt - {0} bajt - {0} bajta - {0} bajtova - - - Gb - {0} Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + {0} kb + + + bajt + {0} bajt + {0} bajta + {0} bajtova + + + bit + {0} bit + {0} bita + {0} bitova + + + st. + {0} st. + {0} st. + {0} st. + + + g. + {0} g. + {0} g. + {0} g. + {0}/g. + + + mj. + {0} mj. + {0} mj. + {0} mj. + {0}/mj. + + + tj. + {0} tj. + {0} tj. + {0} tj. + {0}/tj. + dani {0} dan {0} dana {0} dana + {0}/d. h @@ -8561,35 +8854,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0}/h - - μs - {0} μs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - {0} ms - min {0} min {0} min {0} min - - - mj. - {0} mj. - {0} mj. - {0} mj. - - - ns - {0} ns - {0} ns - {0} ns + {0}/min s @@ -8598,17 +8868,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} s {0}/s - - tj. - {0} tj. - {0} tj. - {0} tj. + + ms + {0} ms + {0} ms + {0} ms - - g. - {0} g. - {0} g. - {0} g. + + μs + {0} μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns + {0} ns A @@ -8634,6 +8910,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + {0} kcal + cal {0} cal @@ -8646,24 +8928,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kcal {0} kcal - - J - {0} J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ {0} kJ + + J + {0} J + {0} J + {0} J + kWh {0} kWh @@ -8676,11 +8952,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz + {0} MHz kHz @@ -8688,23 +8964,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au - {0} au + + km + {0} km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm - {0} cm + + m + {0} m + {0} m + {0} m + {0}/m dm @@ -8712,59 +8990,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dm {0} dm - - hv - {0} hv - {0} hv - {0} hv - - - stope - {0} ft - {0} ft - {0} ft - - - furlonzi - {0} fur - {0} fur - {0} fur - - - inči - {0} in - {0} in - {0} in - - - km - {0} km - {0} km - {0} km - - - svjetlosne g. - {0} ly - {0} ly - {0} ly - - - m - {0} m - {0} m - {0} m - - - µm - {0} µm - {0} µm - {0} µm - - - mi - {0} mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0} cm + {0}/cm mm @@ -8772,71 +9003,117 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mm {0} mm + + µm + {0} µm + {0} µm + {0} µm + nm {0} nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - {0} nmi - - - pc - {0} pc - {0} pc - {0} pc - pm {0} pm {0} pm {0} pm + + mi + {0} mi + {0} mi + {0} mi + jardi {0} yd {0} yd {0} yd + + stope + {0} ft + {0} ft + {0} ft + {0}/ft + + + inči + {0} in + {0} in + {0} in + {0}/in + + + pc + {0} pc + {0} pc + {0} pc + + + svjetlosne g. + {0} ly + {0} ly + {0} ly + + + au + {0} au + {0} au + {0} au + + + furlonzi + {0} fur + {0} fur + {0} fur + + + hv + {0} hv + {0} hv + {0} hv + + + nmi + {0} nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + {0} smi + lx {0} lx {0} lx {0} lx - - ct - {0} ct - {0} ct - {0} ct - - - g - {0} g - {0} g - {0} g - - - kg - {0} kg - {0} kg - {0} kg - t {0} t {0} t {0} t - - µg - {0} µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0} kg + {0}/kg + + + g + {0} g + {0} g + {0} g + {0}/g mg @@ -8844,29 +9121,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mg {0} mg - - oz - {0} oz - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb - {0} lb - - - st - {0} st - {0} st - {0} st + + µg + {0} µg + {0} µg + {0} µg tn @@ -8874,35 +9133,55 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tn {0} tn + + st + {0} st + {0} st + {0} st + + + lb + {0} lb + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0} oz + {0}/oz + + + oz t + {0} oz t + {0} oz t + {0} oz t + + + ct + {0} ct + {0} ct + {0} ct + GW {0} GW {0} GW {0} GW - - KS - {0} KS - {0} KS - {0} KS - - - kW - {0} kW - {0} kW - {0} kW - MW {0} MW {0} MW {0} MW - - mW - {0} mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW + {0} kW W @@ -8910,24 +9189,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + mW + {0} mW + {0} mW + {0} mW + + + KS + {0} KS + {0} KS + {0} KS + hPa {0} hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -8940,11 +9219,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kt - {0} kt - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar + {0} mbar km/h @@ -8964,6 +9249,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + čv + {0} čv + {0} čv + {0} čv + + + ° + {0}° + {0}° + {0}° + °C {0}°C @@ -8982,42 +9279,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - {0} ac ft - - - bu - {0} bu - {0} bu - {0} bu - - - cl - {0} cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -9029,6 +9290,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -9042,29 +9311,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - šalice - {0} c - {0} c - {0} c + + ft³ + {0} ft³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl - {0} dl + + in³ + {0} in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml + {0} Ml hl @@ -9077,12 +9340,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl + {0} cl ml @@ -9090,11 +9360,36 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ml {0} ml - - pt - {0} pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + {0} mpt + + + m. šalica + {0} mc + {0} mc + {0} mc + + + ac ft + {0} ac ft + {0} ac ft + {0} ac ft + + + bu + {0} bu + {0} bu + {0} bu + + + gal + {0} gal + {0} gal + {0} gal + {0}/gal qt @@ -9102,6 +9397,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} qt {0} qt + + pt + {0} pt + {0} pt + {0} pt + + + šalice + {0} c + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + {0} fl oz + tbsp {0} tbsp @@ -9114,6 +9427,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0}I + {0}S + {0}J + {0}Z + @@ -9129,6 +9448,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + {0} rad + {0} rad + {0} rad + + + {0}° + {0}° + {0}° + {0}′ {0}′ @@ -9139,31 +9468,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - {0}° - - - {0} rad - {0} rad - {0} rad - - - {0} kj - {0} kj - {0} kj + + {0} km² + {0} km² + {0} km² {0} ha {0} ha {0} ha + + {0} m² + {0} m² + {0} m² + {0} cm² {0} cm² {0} cm² + + {0} mi² + {0} mi² + {0} mi² + + + {0} kj + {0} kj + {0} kj + + + {0} yd² + {0} yd² + {0} yd² + {0} ft² {0} ft² @@ -9174,85 +9513,94 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² - - {0} km² - {0} km² - {0} km² - - - {0} m² - {0} m² - {0} m² - - - {0} mi² - {0} mi² - {0} mi² - - - {0} yd² - {0} yd² - {0} yd² + + {0} kt + {0} kt + {0} kt {0} l/km {0} l/km {0} l/km + + l/100 km + {0}l/100km + {0}l/100km + {0}l/100km + {0} mpg {0} mpg {0} mpg - - {0} bit - {0} bita - {0} bitova - - - {0} bajt - {0} bajta - {0} bajtova - - - {0} Gb - {0} Gb - {0} Gb - - - {0} GB - {0} GB - {0} GB - - - {0} kb - {0} kb - {0} kb - - - {0} kB - {0} kB - {0} kB - - - {0} Mb - {0} Mb - {0} Mb - - - {0} MB - {0} MB - {0} MB + + {0} TB + {0} TB + {0} TB {0} Tb {0} Tb {0} Tb - - {0} TB - {0} TB - {0} TB + + {0} GB + {0} GB + {0} GB + + + {0} Gb + {0} Gb + {0} Gb + + + {0} MB + {0} MB + {0} MB + + + {0} Mb + {0} Mb + {0} Mb + + + {0} kB + {0} kB + {0} kB + + + {0} kb + {0} kb + {0} kb + + + {0} bajt + {0} bajta + {0} bajtova + + + {0} bit + {0} bita + {0} bitova + + + g. + {0} g. + {0} g. + {0} g. + + + mj. + {0} mj. + {0} mj. + {0} mj. + + + tj. + {0} tj. + {0} tj. + {0} tj. d. @@ -9266,51 +9614,33 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0} h - - {0} μs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - {0} ms - min {0} m {0} m {0} m - - mj. - {0} mj. - {0} mj. - {0} mj. - - - {0} ns - {0} ns - {0} ns - s {0} s {0} s {0} s - - tj. - {0} tj. - {0} tj. - {0} tj. + + ms + {0} ms + {0} ms + {0} ms - - g. - {0} g. - {0} g. - {0} g. + + {0} μs + {0} μs + {0} μs + + + {0} ns + {0} ns + {0} ns {0} A @@ -9332,6 +9662,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + {0} kcal + {0} kcal + {0} kcal + {0} cal {0} cal @@ -9343,21 +9678,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kcal {0} kcal - - {0} J - {0} J - {0} J - - - {0} kcal - {0} kcal - {0} kcal - {0} kJ {0} kJ {0} kJ + + {0} J + {0} J + {0} J + {0} kWh {0} kWh @@ -9368,58 +9698,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - {0} Hz - {0} Hz - {0} Hz + + {0} MHz + {0} MHz + {0} MHz {0} kHz {0} kHz {0} kHz - - {0} MHz - {0} MHz - {0} MHz - - - {0} au - {0} au - {0} au - - - cm - {0} cm - {0} cm - {0} cm - - - {0} dm - {0} dm - {0} dm - - - hv - {0} hv - {0} hv - {0} hv - - - {0}′ - {0}′ - {0}′ - - - fur - {0} fur - {0} fur - {0} fur - - - {0}″ - {0}″ - {0}″ + + {0} Hz + {0} Hz + {0} Hz km @@ -9427,26 +9719,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} km {0} km - - {0} ly - {0} ly - {0} ly - m {0} m {0} m {0} m - - {0} µm - {0} µm - {0} µm + + {0} dm + {0} dm + {0} dm - - {0} mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0} cm mm @@ -9454,46 +9742,82 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mm {0} mm + + {0} µm + {0} µm + {0} µm + {0} nm {0} nm {0} nm - - {0} nmi - {0} nmi - {0} nmi - - - {0} pc - {0} pc - {0} pc - {0} pm {0} pm {0} pm + + {0} mi + {0} mi + {0} mi + {0} yd {0} yd {0} yd + + {0}′ + {0}′ + {0}′ + + + {0}″ + {0}″ + {0}″ + + + {0} pc + {0} pc + {0} pc + + + {0} ly + {0} ly + {0} ly + + + {0} au + {0} au + {0} au + + + fur + {0} fur + {0} fur + {0} fur + + + hv + {0} hv + {0} hv + {0} hv + + + {0} nmi + {0} nmi + {0} nmi + {0} lx {0} lx {0} lx - - {0} ct - {0} ct - {0} ct - - - g - {0} g - {0} g - {0} g + + {0} t + {0} t + {0} t kg @@ -9501,20 +9825,37 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kg {0} kg - - {0} t - {0} t - {0} t + + g + {0} g + {0} g + {0} g + + + {0} mg + {0} mg + {0} mg {0} µg {0} µg {0} µg - - {0} mg - {0} mg - {0} mg + + {0} tn + {0} tn + {0} tn + + + st + {0} st + {0} st + {0} st + + + {0} lb + {0} lb + {0} lb {0} oz @@ -9526,67 +9867,46 @@ For terms of use, see http://www.unicode.org/copyright.html {0} oz t {0} oz t - - {0} lb - {0} lb - {0} lb - - - st - {0} st - {0} st - {0} st - - - {0} tn - {0} tn - {0} tn + + {0} ct + {0} ct + {0} ct {0} GW {0} GW {0} GW - - {0} KS - {0} KS - {0} KS + + {0} MW + {0} MW + {0} MW {0} kW {0} kW {0} kW - - {0} MW - {0} MW - {0} MW + + {0} W + {0} W + {0} W {0} mW {0} mW {0} mW - - {0} W - {0} W - {0} W + + {0} KS + {0} KS + {0} KS {0} hPa {0} hPa {0} hPa - - {0} inHg - {0} inHg - {0} inHg - - - {0} mb - {0} mb - {0} mb - {0} mm Hg {0} mm Hg @@ -9597,10 +9917,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - {0} kt - {0} kt - {0} kt + + {0} inHg + {0} inHg + {0} inHg + + + {0} mb + {0} mb + {0} mb km/h @@ -9634,37 +9959,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - {0} ac ft - {0} ac ft - {0} ac ft - - - bu - {0} bu - {0} bu - {0} bu - - - {0} cl - {0} cl - {0} cl - - - {0} cm³ - {0} cm³ - {0} cm³ - - - {0} ft³ - {0} ft³ - {0} ft³ - - - {0} in³ - {0} in³ - {0} in³ - {0} km³ {0} km³ @@ -9675,6 +9969,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + + {0} cm³ + {0} cm³ + {0} cm³ + {0} mi³ {0} mi³ @@ -9685,25 +9984,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - {0} c - {0} c - {0} c + + {0} ft³ + {0} ft³ + {0} ft³ - - {0} dl - {0} dl - {0} dl + + {0} in³ + {0} in³ + {0} in³ - - {0} fl oz - {0} fl oz - {0} fl oz - - - {0} gal - {0} gal - {0} gal + + {0} Ml + {0} Ml + {0} Ml {0} hl @@ -9716,26 +10010,57 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l - - {0} Ml - {0} Ml - {0} Ml + + {0} dl + {0} dl + {0} dl + + + {0} cl + {0} cl + {0} cl {0} ml {0} ml {0} ml - - {0} pt - {0} pt - {0} pt + + {0} ac ft + {0} ac ft + {0} ac ft + + + bu + {0} bu + {0} bu + {0} bu + + + {0} gal + {0} gal + {0} gal {0} qt {0} qt {0} qt + + {0} pt + {0} pt + {0} pt + + + {0} c + {0} c + {0} c + + + {0} fl oz + {0} fl oz + {0} fl oz + {0} tbsp {0} tbsp @@ -9746,6 +10071,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0}I + {0}S + {0}J + {0}Z + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hr_BA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hr_BA.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hr_BA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hr_BA.xml index ec8d7ba5834..e37e6de5856 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hr_BA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hr_BA.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hr_HR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hr_HR.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hr_HR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hr_HR.xml index 97cbb4f698f..1b3441644d8 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hr_HR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hr_HR.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hsb.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hsb.xml similarity index 97% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hsb.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hsb.xml index e4b79e1c674..aeb2d87ee16 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hsb.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hsb.xml @@ -1,13 +1,12 @@ - - - + @@ -243,7 +242,7 @@ For terms of use, see http://www.unicode.org/copyright.html sundanezišćina šwedšćina suahelšćina - kongoska suahelšćina + kongoska suahelšćina tamilšćina telugu teso @@ -636,55 +635,55 @@ For terms of use, see http://www.unicode.org/copyright.html ličby - arabsko-indiske cyfry - rozšěrjene arabsko-indiske cyfry - armenske cyfry - armenske cyfry, małe pisane - bengalske cyfry - buddhistiska protyka - chinska protyka - dangi-protyka - devanagari-cyfry - rjadowanski slěd po Unicode - etiopiske cyfry - etiopiska protyka - połnošěroke cyfry - georgiske cyfry - gregorianska protyka - grjekske cyfry - grjekske cyfry, małe pisane - gujarati-cyfry - gurmukhi-cyfry - chinske decimalne ličby - zjednorjene chinske cyfry - zjednorjene chinske financne cyfry - tradicionalne chinske cyfry - tradicionalne chinske financne cyfry - hebrejske cyfry - židowska protyka - islamska protyka - protyka po iso-8601 - japanska protyka - japanske cyfry - japanske financne cyfry - khmerske cyfry - kannadske cyfry - laoske cyfry - arabske cyfry - malayalamske cyfry - burmaske cyfry - oriya-cyfry - persiska protyka - protyka republiki China - romske cyfry - romske cyfry, małe pisane - powšitkowne pytanje - standardowy rjadowanski slěd - tradicionalne tamilske cyfry - tamilske cyfry - telugu-cyfry - thailandske cyfry - tibetske cyfry + buddhistiska protyka + chinska protyka + dangi-protyka + etiopiska protyka + gregorianska protyka + židowska protyka + islamska protyka + protyka po iso-8601 + japanska protyka + persiska protyka + protyka republiki China + rjadowanski slěd po Unicode + powšitkowne pytanje + standardowy rjadowanski slěd + arabsko-indiske cyfry + rozšěrjene arabsko-indiske cyfry + armenske cyfry + armenske cyfry, małe pisane + bengalske cyfry + devanagari-cyfry + etiopiske cyfry + połnošěroke cyfry + georgiske cyfry + grjekske cyfry + grjekske cyfry, małe pisane + gujarati-cyfry + gurmukhi-cyfry + chinske decimalne ličby + zjednorjene chinske cyfry + zjednorjene chinske financne cyfry + tradicionalne chinske cyfry + tradicionalne chinske financne cyfry + hebrejske cyfry + japanske cyfry + japanske financne cyfry + khmerske cyfry + kannadske cyfry + laoske cyfry + arabske cyfry + malayalamske cyfry + burmaske cyfry + oriya-cyfry + romske cyfry + romske cyfry, małe pisane + tradicionalne tamilske cyfry + tamilske cyfry + telugu-cyfry + thailandske cyfry + tibetske cyfry metriski @@ -1057,14 +1056,16 @@ For terms of use, see http://www.unicode.org/copyright.html + + dopołdnja + popołdnju + dop. - připołd. pop. dopołdnja - připołdnju popołdnju @@ -3187,6 +3188,58 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 tys'.' ¤ + 0 tys'.' ¤ + 0 tys'.' ¤ + 0 tys'.' ¤ + 00 tys'.' ¤ + 00 tys'.' ¤ + 00 tys'.' ¤ + 00 tys'.' ¤ + 000 tys'.' ¤ + 000 tys'.' ¤ + 000 tys'.' ¤ + 000 tys'.' ¤ + 0 mio'.' ¤ + 0 mio'.' ¤ + 0 mio'.' ¤ + 0 mio'.' ¤ + 00 mio'.' ¤ + 00 mio'.' ¤ + 00 mio'.' ¤ + 00 mio'.' ¤ + 000 mio'.' ¤ + 000 mio'.' ¤ + 000 mio'.' ¤ + 000 mio'.' ¤ + 0 mrd'.' ¤ + 0 mrd'.' ¤ + 0 mrd'.' ¤ + 0 mrd'.' ¤ + 00 mrd'.' ¤ + 00 mrd'.' ¤ + 00 mrd'.' ¤ + 00 mrd'.' ¤ + 000 mrd'.' ¤ + 000 mrd'.' ¤ + 000 mrd'.' ¤ + 000 mrd'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + + {0} {1} {0} {1} {0} {1} @@ -4520,6 +4573,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metry na kwadratnu sekundu {0} metrow na kwadratnu sekundu + + radianty + {0} radiant + {0} radiantaj + {0} radianty + {0} radiantow + + + stopnje + {0} stopjeń + {0} stopnjej + {0} stopnje + {0} stopnjow + minuty {0} minuta @@ -4534,26 +4601,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sekundy {0} sekundow - - stopnje - {0} stopjeń - {0} stopnjej - {0} stopnje - {0} stopnjow - - - radianty - {0} radiant - {0} radiantaj - {0} radianty - {0} radiantow - - - acry - {0} acre - {0} acraj - {0} acry - {0} acrow + + kwadratne kilometry + {0} kwadratny kilometer + {0} kwadratnej kilometraj + {0} kwadratne kilometry + {0} kwadratnych kilometrow hektary @@ -4562,6 +4615,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hektary {0} hektarow + + kwadratne metry + {0} kwadratny meter + {0} kwadratnej metraj + {0} kwadratne metry + {0} kwadratnych metrow + kwadratne centimetry {0} kwadratny centimeter @@ -4569,6 +4629,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kwadratne centimetry {0} kwadratnych centimetrow + + kwadratne mile + {0} kwadratna mila + {0} kwadratnej mili + {0} kwadratne mile + {0} kwadratnych milow + + + acry + {0} acre + {0} acraj + {0} acry + {0} acrow + + + kwadratne yardy + {0} kwadratny yard + {0} kwadratnej yardaj + {0} kwadratne yardy + {0} kwadratnych yardow + kwadratne stopy {0} kwadratna stopa @@ -4583,33 +4664,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kwadratne cóle {0} kwadratnych cólow - - kwadratne kilometry - {0} kwadratny kilometer - {0} kwadratnej kilometraj - {0} kwadratne kilometry - {0} kwadratnych kilometrow - - - kwadratne metry - {0} kwadratny meter - {0} kwadratnej metraj - {0} kwadratne metry - {0} kwadratnych metrow - - - kwadratne mile - {0} kwadratna mila - {0} kwadratnej mili - {0} kwadratne mile - {0} kwadratnych milow - - - kwadratne yardy - {0} kwadratny yard - {0} kwadratnej yardaj - {0} kwadratne yardy - {0} kwadratnych yardow + + karaty + {0} karat + {0} karataj + {0} karaty + {0} karatow litry na kilometer @@ -4625,61 +4685,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mile na galonu {0} milow na galonu - - bity - {0} bit - {0} bitaj - {0} bity - {0} bitow - - - bytey - {0} byte - {0} byteaj - {0} bytey - {0} byteow - - - gigabity - {0} gigabit - {0} gigabitaj - {0} gigabity - {0} gigabitow - - - gigabytey - {0} gigabyte - {0} gigabyteaj - {0} gigabytey - {0} gigabyteow - - - kilobity - {0} kilobit - {0} kilobitaj - {0} kilobity - {0} kilobitow - - - kilobytey - {0} kilobyte - {0} kilobyteaj - {0} kilobytey - {0} kilobyteow - - - megabity - {0} megabit - {0} megabitaj - {0} megabity - {0} megabitow - - - megabytey - {0} megabyte - {0} megabyteaj - {0} megabytey - {0} megabyteow + + terabytey + {0} terabyte + {0} terabyteaj + {0} terabytey + {0} terabyteow terabity @@ -4688,12 +4699,82 @@ For terms of use, see http://www.unicode.org/copyright.html {0} terabity {0} terabitow - - terabytey - {0} terabyte - {0} terabyteaj - {0} terabytey - {0} terabyteow + + gigabytey + {0} gigabyte + {0} gigabyteaj + {0} gigabytey + {0} gigabyteow + + + gigabity + {0} gigabit + {0} gigabitaj + {0} gigabity + {0} gigabitow + + + megabytey + {0} megabyte + {0} megabyteaj + {0} megabytey + {0} megabyteow + + + megabity + {0} megabit + {0} megabitaj + {0} megabity + {0} megabitow + + + kilobytey + {0} kilobyte + {0} kilobyteaj + {0} kilobytey + {0} kilobyteow + + + kilobity + {0} kilobit + {0} kilobitaj + {0} kilobity + {0} kilobitow + + + bytey + {0} byte + {0} byteaj + {0} bytey + {0} byteow + + + bity + {0} bit + {0} bitaj + {0} bity + {0} bitow + + + lěta + {0} lěto + {0} lěće + {0} lěta + {0} lět + + + měsacy + {0} měsac + {0} měsacaj + {0} měsacy + {0} měsacow + + + tydźenje + {0} tydźeń + {0} tydźenjej + {0} tydźenje + {0} tydźenjow dny @@ -4708,21 +4789,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hodźinje {0} hodźiny {0} hodźinow - na hodźinu - - - mikrosekundy - {0} mikrosekunda - {0} mikrosekundźe - {0} mikrosekundy - {0} mikrosekundow - - - milisekundy - {0} milisekunda - {0} milisekundźe - {0} milisekundy - {0} milisekundow + {0} na hodźinu minuty @@ -4731,12 +4798,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} minuty {0} minutow - - měsacy - {0} měsac - {0} měsacaj - {0} měsacy - {0} měsacow + + sekundy + {0} sekunda + {0} sekundźe + {0} sekundy + {0} sekundow + {0} na sekundu + + + milisekundy + {0} milisekunda + {0} milisekundźe + {0} milisekundy + {0} milisekundow + + + mikrosekundy + {0} mikrosekunda + {0} mikrosekundźe + {0} mikrosekundy + {0} mikrosekundow nanosekundy @@ -4745,28 +4827,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nanosekundy {0} nanosekundow - - sekundy - {0} sekunda - {0} sekundźe - {0} sekundy - {0} sekundow - na sekundu - - - tydźenje - {0} tydźeń - {0} tydźenjej - {0} tydźenje - {0} tydźenjow - - - lěta - {0} lěto - {0} lěće - {0} lěta - {0} lět - ampery {0} ampere @@ -4795,6 +4855,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volty {0} voltow + + kilokalorije + {0} kilokalorija + {0} kilokaloriji + {0} kilokalorije + {0} kilokalorijow + kalorije {0} kalorija @@ -4809,20 +4876,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilokalorije {0} kilokalorijow - - joule - {0} joule - {0} joulej - {0} joule - {0} jouleow - - - kilokalorije - {0} kilokalorija - {0} kilokaloriji - {0} kilokalorije - {0} kilokalorijow - kilojoule {0} kilojoule @@ -4830,6 +4883,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilojoule {0} kilojouleow + + joule + {0} joule + {0} joulej + {0} joule + {0} jouleow + kilowattowe hodźiny {0} kilowattowa hodźina @@ -4844,12 +4904,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigahertzy {0} gigahertzow - - hertzy - {0} hertz - {0} hertzaj - {0} hertzy - {0} hertzow + + megahertzy + {0} megahertz + {0} megahertzaj + {0} megahertzy + {0} megahertzow kilohertzy @@ -4858,19 +4918,33 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilohertzy {0} kilohertzow - - megahertzy - {0} megahertz - {0} megahertzaj - {0} megahertzy - {0} megahertzow + + hertzy + {0} hertz + {0} hertzaj + {0} hertzy + {0} hertzow - - astronomiske jednotki - {0} astronomiska jednotka - {0} astronomiskej jednotce - {0} astronomiske jednotki - {0} astronomiskich jednotkow + + kilometry + {0} kilometer + {0} kilometraj + {0} kilometry + {0} kilometrow + + + metry + {0} meter + {0} metraj + {0} metry + {0} metrow + + + decimetry + {0} decimeter + {0} decimetraj + {0} decimetry + {0} decimetrow centimetry @@ -4879,12 +4953,47 @@ For terms of use, see http://www.unicode.org/copyright.html {0} centimetry {0} centimetrow - - decimetry - {0} decimeter - {0} decimetraj - {0} decimetry - {0} decimetrow + + milimetry + {0} milimeter + {0} milimetraj + {0} milimetry + {0} milimetrow + + + mikrometry + {0} mikrometer + {0} mikrometraj + {0} mikrometry + {0} mikrometrow + + + nanometry + {0} nanometer + {0} nanometraj + {0} nanometry + {0} nanometrow + + + pikometry + {0} pikometer + {0} pikometraj + {0} pikometry + {0} pikometrow + + + mile + {0} mila + {0} mili + {0} mile + {0} milow + + + yardy + {0} yard + {0} yardaj + {0} yardy + {0} yardow stopy @@ -4900,12 +5009,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cóle {0} cólow - - kilometry - {0} kilometer - {0} kilometraj - {0} kilometry - {0} kilometrow + + parsec + {0} parsec + {0} parsec + {0} parsec + {0} parsec swětłolěta @@ -4914,40 +5023,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} swětłolěta {0} swětłolět - - metry - {0} meter - {0} metraj - {0} metry - {0} metrow - - - mikrometry - {0} mikrometer - {0} mikrometraj - {0} mikrometry - {0} mikrometrow - - - mile - {0} mila - {0} mili - {0} mile - {0} milow - - - milimetry - {0} milimeter - {0} milimetraj - {0} milimetry - {0} milimetrow - - - nanometry - {0} nanometer - {0} nanometraj - {0} nanometry - {0} nanometrow + + astronomiske jednotki + {0} astronomiska jednotka + {0} astronomiskej jednotce + {0} astronomiske jednotki + {0} astronomiskich jednotkow nawtiske mile @@ -4956,27 +5037,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nawtiske mile {0} nawtiskich milow - - parsec - {0} parsec - {0} parsec - {0} parsec - {0} parsec - - - pikometry - {0} pikometer - {0} pikometraj - {0} pikometry - {0} pikometrow - - - yardy - {0} yard - {0} yardaj - {0} yardy - {0} yardow - lux {0} lux @@ -4984,27 +5044,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lux {0} lux - - karaty - {0} karat - {0} karataj - {0} karaty - {0} karatow - - - gramy - {0} gram - {0} gramaj - {0} gramy - {0} gramow - - - kilogramy - {0} kilogram - {0} kilogramaj - {0} kilogramy - {0} kilogramow - tony {0} tona @@ -5012,12 +5051,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tony {0} tonow - - mikrogramy - {0} mikrogram - {0} mikrogramaj - {0} mikrogramy - {0} mikrogramow + + kilogramy + {0} kilogram + {0} kilogramaj + {0} kilogramy + {0} kilogramow + + + gramy + {0} gram + {0} gramaj + {0} gramy + {0} gramow miligramy @@ -5026,6 +5072,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} miligramy {0} miligramow + + mikrogramy + {0} mikrogram + {0} mikrogramaj + {0} mikrogramy + {0} mikrogramow + + + ameriske tony + {0} ameriska tona + {0} ameriskej tonje + {0} ameriske tony + {0} ameriskich tonow + + + punty + {0} punt + {0} puntaj + {0} punty + {0} puntow + uncy {0} unca @@ -5040,19 +5107,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} troyske uncy {0} troyskich uncow - - punty - {0} punt - {0} puntaj - {0} punty - {0} puntow - - - ameriske tony - {0} ameriska tona - {0} ameriskej tonje - {0} ameriske tony - {0} ameriskich tonow + + karaty + {0} karat + {0} karataj + {0} karaty + {0} karatow gigawatty @@ -5061,12 +5121,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigawatty {0} gigawattow - - konjace mocy - {0} konjaca móc - {0} konjacej mocy - {0} konjace mocy - {0} konjacych mocow + + megawatty + {0} megawatt + {0} megawattaj + {0} megawatty + {0} megawattow kilowatty @@ -5075,12 +5135,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilowatty {0} kilowattow - - megawatty - {0} megawatt - {0} megawattaj - {0} megawatty - {0} megawattow + + watty + {0} watt + {0} wattaj + {0} watty + {0} wattow miliwatty @@ -5089,12 +5149,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} miliwatty {0} miliwattow - - watty - {0} watt - {0} wattaj - {0} watty - {0} wattow + + konjace mocy + {0} konjaca móc + {0} konjacej mocy + {0} konjace mocy + {0} konjacych mocow hektopascale @@ -5103,20 +5163,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hektopascale {0} hektopascalow - - cóle žiwoslěbroweho stołpika - {0} cól žiwoslěbroweho stołpika - {0} cólej žiwoslěbroweho stołpika - {0} cóle žiwoslěbroweho stołpika - {0} cólow žiwoslěbroweho stołpika - - - milibary - {0} milibar - {0} milibaraj - {0} milibary - {0} milibarow - milimetry žiwoslěbroweho stołpika {0} milimeter žiwoslěbroweho stołpika @@ -5131,12 +5177,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} punty na kwadratny cól {0} puntow na kwadratny cól - - karaty - {0} karat - {0} karataj - {0} karaty - {0} karatow + + cóle žiwoslěbroweho stołpika + {0} cól žiwoslěbroweho stołpika + {0} cólej žiwoslěbroweho stołpika + {0} cóle žiwoslěbroweho stołpika + {0} cólow žiwoslěbroweho stołpika + + + milibary + {0} milibar + {0} milibaraj + {0} milibary + {0} milibarow kilometry na hodźinu @@ -5180,41 +5233,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} stopnje Kelvina {0} stopnjow Kelvina - - acre-stopy - {0} acre-stopa - {0} acre-stopje - {0} acre-stopy - {0} acre-stopow - - - centilitry - {0} centiliter - {0} centilitraj - {0} centilitry - {0} centilitrow - - - kubikne centimetry - {0} kubikny centimeter - {0} kubiknej centimetraj - {0} kubikne centimetry - {0} kubiknych centimetrow - - - kubikne stopy - {0} kubikna stopa - {0} kubiknej stopje - {0} kubikne stopy - {0} kubiknych stopow - - - kubikne cóle - {0} kubikny cól - {0} kubiknej cólej - {0} kubikne cóle - {0} kubiknych cólow - kubikne kilometry {0} kubikny kilometer @@ -5229,6 +5247,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubikne metry {0} kubiknych metrow + + kubikne centimetry + {0} kubikny centimeter + {0} kubiknej centimetraj + {0} kubikne centimetry + {0} kubiknych centimetrow + kubikne mile {0} kubikna mila @@ -5243,33 +5268,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubikne yardy {0} kubiknych yardow - - šalki - {0} šalka - {0} šalce - {0} šalki - {0} šalkow + + kubikne stopy + {0} kubikna stopa + {0} kubiknej stopje + {0} kubikne stopy + {0} kubiknych stopow - - decilitry - {0} deciliter - {0} decilitraj - {0} decilitry - {0} decilitrow + + kubikne cóle + {0} kubikny cól + {0} kubiknej cólej + {0} kubikne cóle + {0} kubiknych cólow - - běžite uncy - {0} běžita unca - {0} běžitej uncy - {0} běžite uncy - {0} běžitych uncow - - - galony - {0} galona - {0} galonje - {0} galony - {0} galonow + + megalitry + {0} megaliter + {0} megalitraj + {0} megalitry + {0} megalitrow hektolitry @@ -5285,12 +5303,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litry {0} litrow - - megalitry - {0} megaliter - {0} megalitraj - {0} megalitry - {0} megalitrow + + decilitry + {0} deciliter + {0} decilitraj + {0} decilitry + {0} decilitrow + + + centilitry + {0} centiliter + {0} centilitraj + {0} centilitry + {0} centilitrow mililitry @@ -5299,12 +5324,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mililitry {0} mililitrow - - pinty - {0} pint - {0} pintaj - {0} pinty - {0} pintow + + acre-stopy + {0} acre-stopa + {0} acre-stopje + {0} acre-stopy + {0} acre-stopow + + + galony + {0} galona + {0} galonje + {0} galony + {0} galonow quarty @@ -5313,6 +5345,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} quarty {0} quartow + + pinty + {0} pint + {0} pintaj + {0} pinty + {0} pintow + + + šalki + {0} šalka + {0} šalce + {0} šalki + {0} šalkow + + + běžite uncy + {0} běžita unca + {0} běžitej uncy + {0} běžite uncy + {0} běžitych uncow + łžicy {0} łžica @@ -5343,6 +5396,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rad + {0} rad + {0} rad + {0} rad + {0} rad + + + ° + {0} ° + {0} ° + {0} ° + {0} ° + {0} ′ @@ -5357,26 +5424,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ″ {0} ″ - - ° - {0} ° - {0} ° - {0} ° - {0} ° - - - rad - {0} rad - {0} rad - {0} rad - {0} rad - - - ac - {0} ac - {0} ac - {0} ac - {0} ac + + km² + {0} km² + {0} km² + {0} km² + {0} km² ha @@ -5385,6 +5438,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha + + + {0} m² + {0} m² + {0} m² + {0} m² + cm² {0} cm² @@ -5392,6 +5452,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cm² {0} cm² + + mi² + {0} mi² + {0} mi² + {0} mi² + {0} mi² + + + ac + {0} ac + {0} ac + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² + {0} yd² + {0} yd² + ft² {0} ft² @@ -5406,33 +5487,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² - - km² - {0} km² - {0} km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt + {0} kt + {0} kt l/km @@ -5448,61 +5508,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mpg {0} mpg - - bit - {0} bit - {0} bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - {0} byte - {0} byte - - - Gb - {0} Gb - {0} Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - {0} MB - {0} MB + + TB + {0} TB + {0} TB + {0} TB + {0} TB Tb @@ -5511,12 +5522,82 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Tb {0} Tb - - TB - {0} TB - {0} TB - {0} TB - {0} TB + + GB + {0} GB + {0} GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + {0} kb + {0} kb + + + byte + {0} byte + {0} byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + {0} bit + {0} bit + + + l. + {0} l. + {0} l. + {0} l. + {0} l. + + + měs. + {0} měs. + {0} měs. + {0} měs. + {0} měs. + + + tydź. + {0} tydź. + {0} tydź. + {0} tydź. + {0} tydź. dny @@ -5533,20 +5614,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hodź. {0}/h - - μs - {0} μs - {0} μs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - {0} ms - {0} ms - min. {0} min. @@ -5554,20 +5621,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} min. {0} min. - - měs. - {0} měs. - {0} měs. - {0} měs. - {0} měs. - - - ns - {0} ns - {0} ns - {0} ns - {0} ns - sek. {0} sek. @@ -5576,19 +5629,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sek. {0}/s - - tydź. - {0} tydź. - {0} tydź. - {0} tydź. - {0} tydź. + + ms + {0} ms + {0} ms + {0} ms + {0} ms - - l. - {0} l. - {0} l. - {0} l. - {0} l. + + μs + {0} μs + {0} μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns + {0} ns + {0} ns A @@ -5618,6 +5678,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + {0} kcal + {0} kcal + cal {0} cal @@ -5632,20 +5699,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kcal {0} kcal - - J - {0} J - {0} J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - {0} kcal - {0} kcal - kJ {0} kJ @@ -5653,6 +5706,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kJ {0} kJ + + J + {0} J + {0} J + {0} J + {0} J + kWh {0} kWh @@ -5667,12 +5727,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz + {0} MHz + {0} MHz kHz @@ -5681,19 +5741,33 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au - {0} au - {0} au + + km + {0} km + {0} km + {0} km + {0} km + + + m + {0} m + {0} m + {0} m + {0} m + + + dm + {0} dm + {0} dm + {0} dm + {0} dm cm @@ -5702,12 +5776,47 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cm {0} cm - - dm - {0} dm - {0} dm - {0} dm - {0} dm + + mm + {0} mm + {0} mm + {0} mm + {0} mm + + + μm + {0} μm + {0} μm + {0} μm + {0} μm + + + nm + {0} nm + {0} nm + {0} nm + {0} nm + + + pm + {0} pm + {0} pm + {0} pm + {0} pm + + + mi + {0} mi + {0} mi + {0} mi + {0} mi + + + yd + {0} yd + {0} yd + {0} yd + {0} yd ft @@ -5723,12 +5832,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in {0} in - - km - {0} km - {0} km - {0} km - {0} km + + pc + {0} pc + {0} pc + {0} pc + {0} pc ly @@ -5737,40 +5846,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ly {0} ly - - m - {0} m - {0} m - {0} m - {0} m - - - μm - {0} μm - {0} μm - {0} μm - {0} μm - - - mi - {0} mi - {0} mi - {0} mi - {0} mi - - - mm - {0} mm - {0} mm - {0} mm - {0} mm - - - nm - {0} nm - {0} nm - {0} nm - {0} nm + + au + {0} au + {0} au + {0} au + {0} au nmi @@ -5779,27 +5860,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nmi {0} nmi - - pc - {0} pc - {0} pc - {0} pc - {0} pc - - - pm - {0} pm - {0} pm - {0} pm - {0} pm - - - yd - {0} yd - {0} yd - {0} yd - {0} yd - lx {0} lx @@ -5807,27 +5867,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lx {0} lx - - Kt - {0} Kt - {0} Kt - {0} Kt - {0} Kt - - - g - {0} g - {0} g - {0} g - {0} g - - - kg - {0} kg - {0} kg - {0} kg - {0} kg - t {0} t @@ -5835,12 +5874,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} t {0} t - - µg - {0} µg - {0} µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0} kg + {0} kg + + + g + {0} g + {0} g + {0} g + {0} g mg @@ -5849,6 +5895,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mg {0} mg + + µg + {0} µg + {0} µg + {0} µg + {0} µg + + + am.tony + {0} tn + {0} tn + {0} tn + {0} tn + + + lb + {0} lb + {0} lb + {0} lb + {0} lb + oz {0} oz @@ -5863,19 +5930,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} oz. tr. {0} oz. tr. - - lb - {0} lb - {0} lb - {0} lb - {0} lb - - - am.tony - {0} tn - {0} tn - {0} tn - {0} tn + + Kt + {0} Kt + {0} Kt + {0} Kt + {0} Kt GW @@ -5884,12 +5944,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GW {0} GW - - PS - {0} PS - {0} PS - {0} PS - {0} PS + + MW + {0} MW + {0} MW + {0} MW + {0} MW kW @@ -5898,12 +5958,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kW {0} kW - - MW - {0} MW - {0} MW - {0} MW - {0} MW + + W + {0} W + {0} W + {0} W + {0} W mW @@ -5912,12 +5972,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mW {0} mW - - W - {0} W - {0} W - {0} W - {0} W + + PS + {0} PS + {0} PS + {0} PS + {0} PS hPa @@ -5926,20 +5986,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -5954,12 +6000,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kt - {0} kt - {0} kt - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar + {0} mbar + {0} mbar km/h @@ -6003,41 +6056,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - {0} ac ft - {0} ac ft - - - cl - {0} cl - {0} cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -6052,6 +6070,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + + cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0} cm³ + mi³ {0} mi³ @@ -6066,33 +6091,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - š. - {0} š. - {0} š. - {0} š. - {0} š. + + ft³ + {0} ft³ + {0} ft³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl - {0} dl - {0} dl + + in³ + {0} in³ + {0} in³ + {0} in³ + {0} in³ - - fl. oz. - {0} fl. oz. - {0} fl. oz. - {0} fl. oz. - {0} fl. oz. - - - gal - {0} gal - {0} gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml + {0} Ml + {0} Ml hl @@ -6108,12 +6126,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l - - Ml - {0} Ml - {0} Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl + {0} cl + {0} cl ml @@ -6122,12 +6147,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ml {0} ml - - pt - {0} pt - {0} pt - {0} pt - {0} pt + + ac ft + {0} ac ft + {0} ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0} gal + {0} gal qt @@ -6136,6 +6168,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} qt {0} qt + + pt + {0} pt + {0} pt + {0} pt + {0} pt + + + š. + {0} š. + {0} š. + {0} š. + {0} š. + + + fl. oz. + {0} fl. oz. + {0} fl. oz. + {0} fl. oz. + {0} fl. oz. + łž. {0} łž. @@ -6158,6 +6211,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}° + {0}° + {0}′ {0}′ @@ -6170,17 +6229,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - {0}° - {0}° - - - {0} ac - {0} ac - {0} ac - {0} ac + + {0} km² + {0} km² + {0} km² + {0} km² {0} ha @@ -6188,18 +6241,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha - - {0} ft² - {0} ft² - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} km² - {0} km² - {0} m² {0} m² @@ -6212,6 +6253,39 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} ac + {0} ac + {0} ac + {0} ac + + + {0} ft² + {0} ft² + {0} ft² + {0} ft² + + + l. + {0} l. + {0} l. + {0} l. + {0} l. + + + měs. + {0} měs. + {0} měs. + {0} měs. + {0} měs. + + + t. + {0} t. + {0} t. + {0} t. + {0} t. + d {0} d @@ -6226,13 +6300,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0} h - - ms - {0} ms - {0} ms - {0} ms - {0} ms - min {0} min @@ -6240,13 +6307,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} min {0} min - - měs. - {0} měs. - {0} měs. - {0} měs. - {0} měs. - s {0} s @@ -6254,38 +6314,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} s {0} s - - t. - {0} t. - {0} t. - {0} t. - {0} t. - - - l. - {0} l. - {0} l. - {0} l. - {0} l. - - - cm - {0} cm - {0} cm - {0} cm - {0} cm - - - {0} ft - {0} ft - {0} ft - {0} ft - - - {0} in - {0} in - {0} in - {0} in + + ms + {0} ms + {0} ms + {0} ms + {0} ms km @@ -6294,12 +6328,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} km {0} km - - {0} ly - {0} ly - {0} ly - {0} ly - m {0} m @@ -6307,11 +6335,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m {0} m - - {0} mi - {0} mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0} cm + {0} cm mm @@ -6326,18 +6355,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} mi + {0} mi + {0} mi + {0} mi + {0} yd {0} yd {0} yd {0} yd - - g - {0} g - {0} g - {0} g - {0} g + + {0} ft + {0} ft + {0} ft + {0} ft + + + {0} in + {0} in + {0} in + {0} in + + + {0} ly + {0} ly + {0} ly + {0} ly kg @@ -6346,11 +6392,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kg {0} kg - - {0} oz - {0} oz - {0} oz - {0} oz + + g + {0} g + {0} g + {0} g + {0} g {0} lb @@ -6358,11 +6405,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lb {0} lb - - {0} PS - {0} PS - {0} PS - {0} PS + + {0} oz + {0} oz + {0} oz + {0} oz {0} kW @@ -6376,6 +6423,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} PS + {0} PS + {0} PS + {0} PS + {0} hPa {0} hPa diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hsb_DE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hsb_DE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hsb_DE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hsb_DE.xml index f12a0d6b076..337076e4cae 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hsb_DE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hsb_DE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hu.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hu.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hu.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hu.xml index 3b2f9aca382..dd977f8a801 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hu.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hu.xml @@ -1,13 +1,12 @@ - - - + @@ -62,6 +61,7 @@ For terms of use, see http://www.unicode.org/copyright.html bena bafut bolgár + nyugati beludzs bodzspuri bislama bikol @@ -289,6 +289,7 @@ For terms of use, see http://www.unicode.org/copyright.html laoszi mongó lozi + északi luri litván luba-katanga luba-lulua @@ -337,12 +338,14 @@ For terms of use, see http://www.unicode.org/copyright.html burmai myene erzjány + mázanderáni naurui nápolyi nama norvég bokmal északi ndebele alsónémet + alsószász nepáli nevari ndonga @@ -419,6 +422,7 @@ For terms of use, see http://www.unicode.org/copyright.html szicíliai skót szindhi + dél-kurd északi számi szeneka szena @@ -456,8 +460,8 @@ For terms of use, see http://www.unicode.org/copyright.html sumér svéd szuahéli + kongói szuahéli comorei - kongói szuahéli klasszikus szír szíriai tamil @@ -492,7 +496,7 @@ For terms of use, see http://www.unicode.org/copyright.html szavák tahiti tuvai - közép-marokkói tamazigt + közép-marokkói tamazigt udmurt ujgur ugariti @@ -512,6 +516,7 @@ For terms of use, see http://www.unicode.org/copyright.html valamo varaó vasó + warlpiri volof kalmük hosza @@ -577,7 +582,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -703,13 +708,12 @@ For terms of use, see http://www.unicode.org/copyright.html Latin-Amerika Ascension-sziget Andorra - Egyesült Arab Emirátus + Egyesült Arab Emírségek Afganisztán Antigua és Barbuda Anguilla Albánia Örményország - Holland Antillák Angola Antarktisz Argentína @@ -779,7 +783,7 @@ For terms of use, see http://www.unicode.org/copyright.html Etiópia Európai Unió Finnország - Fidzsi-szigetek + Fidzsi Falkland-szigetek Falkland-szigetek (Malvin-szigetek) Mikronézia @@ -803,7 +807,7 @@ For terms of use, see http://www.unicode.org/copyright.html Déli-Georgia és Déli-Sandwich-szigetek Guatemala Guam - Guinea-Bissau + Bissau-Guinea Guyana Hongkong SAR Kína Hongkong @@ -1041,6 +1045,9 @@ For terms of use, see http://www.unicode.org/copyright.html Numerikus rendezés Rendezés erőssége Pénznem + Óraformátum (12 – 24) + Sortörés stílusa + Mértékegységrendszer Számok Időzóna Földrajzi helyvariáns @@ -1048,95 +1055,105 @@ For terms of use, see http://www.unicode.org/copyright.html Privát használatra - Arab-indiai számjegyek - Kibővített arab-indiai számjegyek - Örmény számok - Örmény kisbetűs számok - Bengáli számjegyek - Hagyományos kínai sorrend - Big5 - Buddhista naptár - Kínai naptár - Kopt naptár - Dangi naptár - Dévanágari számjegyek - Szótári rendezési sorrend - Alapértelmezett Unicode rendezési sorrend - Etióp számok - Etióp naptár - Etióp amete alem naptár - Pénzügyi számok - Teljes szélességű számjegyek - Egyszerűsített kínai sorrend - GB2312 - Grúz számok - Gergely-naptár - Görög számok - Görög kisbetűs számok - Gudzsaráti számjegyek - Gurmuki számjegyek - Kínai tizedes számok - Egyszerűsített kínai számok - Egyszerűsített kínai pénzügyi számok - Hagyományos kínai számok - Hagyományos kínai pénzügyi számok - Héber számok - Héber naptár - Összes rendezése - Indiai nemzeti naptár - Iszlám naptár - Iszlám civil naptár - ISO-8601 naptár - Japán naptár - Japán számok - Japán pénzügyi számok - Khmer számjegyek - Kannada számjegyek - Lao számjegyek - Nyugati számjegyek - Kisbetűs szavak rendezése előre - Malajálam számjegyek - Mongol számjegyek - Mianmari számjegyek - Natív számjegyek - Ékezetek normál rendezése - Kisbetűs-nagybetűs szavak normál rendezése - Kis- és nagybetűket meg nem különböztető rendezés - Kanák rendezése külön - Rendezés normalizálás nélkül - Számjegyek egyedi rendezése - Szimbólumok rendezése - Orija számjegyek - Perzsa naptár - Telefonkönyv sorrend - Fonetikus rendezési sorrend - Pinyin sorrend - Csak az alapbetűk rendezése - Ékezetek/kisbetű-nagybetű/szélesség/kanák rendezése - Átalakított rendezési elv - Kínai köztársasági naptár - Római számok - Római kisbetűs számok - Általános célú keresés - Keresés hangul kezdő mássalhangzó szerint - Ékezetek rendezése - Rendezés szimbólumok figyelmen kívül hagyásával - Normál rendezési sorrend - Vonássorrend - Tamil hagyományos számok - Tamil számjegyek - Telugu számjegyek - Ékezetek/kisbetű-nagybetű/szélesség rendezése - Thai számjegyek - Tibeti számjegyek - Hagyományos - Hagyományos számok - Szótővonás rendezési sorrend - Nagybetűs szavak rendezése előre - Vai számjegyek - Ékezetek szerinti fordított rendezés - Rendezés kisbetű-nagybetű szerint - Kanák megkülönböztető rendezése - Unicode szerinti normalizált rendezés - Számjegyek numerikus rendezése + Buddhista naptár + Kínai naptár + Kopt naptár + Dangi naptár + Etióp naptár + Etióp amete alem naptár + Gergely-naptár + Héber naptár + Indiai nemzeti naptár + Iszlám naptár + Iszlám civil naptár + ISO-8601 naptár + Japán naptár + Perzsa naptár + Kínai köztársasági naptár + Szimbólumok rendezése + Rendezés szimbólumok figyelmen kívül hagyásával + Ékezetek normál rendezése + Ékezetek szerinti fordított rendezés + Kisbetűs szavak rendezése előre + Kisbetűs-nagybetűs szavak normál rendezése + Nagybetűs szavak rendezése előre + Kis- és nagybetűket meg nem különböztető rendezés + Rendezés kisbetű-nagybetű szerint + Kanák rendezése külön + Kanák megkülönböztető rendezése + Hagyományos kínai sorrend - Big5 + Szótári rendezési sorrend + Alapértelmezett Unicode rendezési sorrend + Egyszerűsített kínai sorrend - GB2312 + Telefonkönyv sorrend + Fonetikus rendezési sorrend + Pinyin sorrend + Átalakított rendezési elv + Általános célú keresés + Keresés hangul kezdő mássalhangzó szerint + Normál rendezési sorrend + Vonássorrend + Hagyományos + Szótővonás rendezési sorrend + Rendezés normalizálás nélkül + Unicode szerinti normalizált rendezés + Számjegyek egyedi rendezése + Számjegyek numerikus rendezése + Összes rendezése + Csak az alapbetűk rendezése + Ékezetek/kisbetű-nagybetű/szélesség/kanák rendezése + Ékezetek rendezése + Ékezetek/kisbetű-nagybetű/szélesség rendezése + 12 órás rendszer (0–11) + 12 órás rendszer (0–12) + 24 órás rendszer (0–23) + 24 órás rendszer (0–24) + Tág stílusú sortörés + Normál stílusú sortörés + Szűk stílusú sortörés + Méterrendszer + Angolszász mértékegységrendszer + Amerikai mértékegységrendszer + Arab-indiai számjegyek + Kibővített arab-indiai számjegyek + Örmény számok + Örmény kisbetűs számok + Bengáli számjegyek + Dévanágari számjegyek + Etióp számok + Pénzügyi számok + Teljes szélességű számjegyek + Grúz számok + Görög számok + Görög kisbetűs számok + Gudzsaráti számjegyek + Gurmuki számjegyek + Kínai tizedes számok + Egyszerűsített kínai számok + Egyszerűsített kínai pénzügyi számok + Hagyományos kínai számok + Hagyományos kínai pénzügyi számok + Héber számok + Japán számok + Japán pénzügyi számok + Khmer számjegyek + Kannada számjegyek + Lao számjegyek + Nyugati számjegyek + Malajálam számjegyek + Mongol számjegyek + Mianmari számjegyek + Natív számjegyek + Orija számjegyek + Római számok + Római kisbetűs számok + Tamil hagyományos számok + Tamil számjegyek + Telugu számjegyek + Thai számjegyek + Tibeti számjegyek + Hagyományos számok + Vai számjegyek BGN @@ -1435,6 +1452,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d., E G y. G y. MMM @@ -1776,15 +1794,79 @@ For terms of use, see http://www.unicode.org/copyright.html - + + éjfél de. dél du. + reggel + reggel + délután + este + éjszaka + éjszaka + + + éjfél + de. + dél + du. + reggel + reggel + délután + délután + éjszaka + éjszaka + éjfél de. dél du. + reggel + reggel + délután + este + éjszaka + éjszaka + + + + + éjfél + de. + dél + du. + reggel + délelőtt + délután + este + éjjel + hajnal + + + éjfél + de. + dél + du. + reggel + délelőtt + délután + este + éjjel + hajnal + + + éjfél + de. + dél + du. + reggel + délelőtt + délután + este + éjjel + hajnal @@ -1887,6 +1969,10 @@ For terms of use, see http://www.unicode.org/copyright.html H:mm a h:mm:ss H:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L M. d. M. d., E @@ -2152,18 +2238,18 @@ For terms of use, see http://www.unicode.org/copyright.html - Moh. - Saf. - Rébi I - Rébi II - Dsem. I - Dsem. II - Red. - Sab. - Ram. - Sev. - Dsül k. - Dsül h. + Moh. + Saf. + Réb. 1 + Réb. 2 + Dsem. I + Dsem. II + Red. + Sab. + Ram. + Sev. + Dsül k. + Dsül h. Moharrem @@ -2218,9 +2304,6 @@ For terms of use, see http://www.unicode.org/copyright.html - @@ -2336,6 +2419,9 @@ For terms of use, see http://www.unicode.org/copyright.html év + előző év + ez az év + következő év {0} év múlva {0} év múlva @@ -2347,6 +2433,9 @@ For terms of use, see http://www.unicode.org/copyright.html év + előző év + ez az év + következő év {0} év múlva {0} év múlva @@ -2358,6 +2447,9 @@ For terms of use, see http://www.unicode.org/copyright.html negyedév + előző negyedév + ez a negyedév + következő negyedév {0} negyedév múlva {0} negyedév múlva @@ -2369,6 +2461,9 @@ For terms of use, see http://www.unicode.org/copyright.html negyedév + előző negyedév + ez a negyedév + következő negyedév {0} negyedév múlva {0} negyedév múlva @@ -2380,6 +2475,9 @@ For terms of use, see http://www.unicode.org/copyright.html negyedév + előző negyedév + ez a negyedév + következő negyedév {0} negyedév múlva {0} negyedév múlva @@ -2405,6 +2503,9 @@ For terms of use, see http://www.unicode.org/copyright.html hónap + előző hónap + ez a hónap + következő hónap {0} hónap múlva {0} hónap múlva @@ -2416,6 +2517,9 @@ For terms of use, see http://www.unicode.org/copyright.html hónap + előző hónap + ez a hónap + következő hónap {0} hónap múlva {0} hónap múlva @@ -2441,6 +2545,9 @@ For terms of use, see http://www.unicode.org/copyright.html hét + előző hét + ez a hét + következő hét {0} hét múlva {0} hét múlva @@ -2452,6 +2559,9 @@ For terms of use, see http://www.unicode.org/copyright.html hét + előző hét + ez a hét + következő hét {0} hét múlva {0} hét múlva @@ -2479,6 +2589,11 @@ For terms of use, see http://www.unicode.org/copyright.html nap + tegnapelőtt + tegnap + ma + holnap + holnapután {0} nap múlva {0} nap múlva @@ -2490,6 +2605,11 @@ For terms of use, see http://www.unicode.org/copyright.html nap + tegnapelőtt + tegnap + ma + holnap + holnapután {0} nap múlva {0} nap múlva @@ -3589,6 +3709,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -3673,6 +3796,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutszk + + Csita + Jakutszk @@ -3691,6 +3817,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadán + + Szrednekolimszk + Kamcsatka @@ -4062,9 +4191,9 @@ For terms of use, see http://www.unicode.org/copyright.html - apiai idő - apiai téli idő - apiai nyári idő + apiai idő + apiai téli idő + apiai nyári idő @@ -4311,7 +4440,7 @@ For terms of use, see http://www.unicode.org/copyright.html - kalinyingrádi idő + minszki idő @@ -5045,7 +5174,35 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ - #,##0.00 ¤ + #,##0.00 ¤ + + + + + 0 E ¤ + 0 E ¤ + 00 E ¤ + 00 E ¤ + 000 E ¤ + 000 E ¤ + 0 M ¤ + 0 M ¤ + 00 M ¤ + 00 M ¤ + 000 M ¤ + 000 M ¤ + 0 Mrd ¤ + 0 Mrd ¤ + 00 Mrd ¤ + 00 Mrd ¤ + 000 Mrd ¤ + 000 Mrd ¤ + 0 B ¤ + 0 B ¤ + 00 B ¤ + 00 B ¤ + 000 B ¤ + 000 B ¤ {0} {1} @@ -5097,6 +5254,7 @@ For terms of use, see http://www.unicode.org/copyright.html angolai kwanza angolai kwanza AOA + Kz Angolai kwanza (1977–1990) @@ -5169,6 +5327,7 @@ For terms of use, see http://www.unicode.org/copyright.html bosznia-hercegovinai konvertibilis márka bosznia-hercegovinai konvertibilis márka BAM + KM barbadosi dollár @@ -5241,6 +5400,7 @@ For terms of use, see http://www.unicode.org/copyright.html bolíviai boliviano bolíviai boliviano BOB + Bs Bolíviai peso @@ -5305,6 +5465,7 @@ For terms of use, see http://www.unicode.org/copyright.html botswanai pula botswanai pula BWP + P Fehérorosz új rubel (1994–1999) @@ -5393,6 +5554,7 @@ For terms of use, see http://www.unicode.org/copyright.html kubai konvertibilis peso kubai konvertibilis peso CUC + $ kubai peso @@ -5415,6 +5577,7 @@ For terms of use, see http://www.unicode.org/copyright.html cseh korona cseh korona CZK + Kelet-Német márka @@ -5433,6 +5596,7 @@ For terms of use, see http://www.unicode.org/copyright.html dán korona dán korona DKK + kr dominikai peso @@ -5461,6 +5625,7 @@ For terms of use, see http://www.unicode.org/copyright.html egyiptomi font egyiptomi font EGP + eritreai nakfa @@ -5505,6 +5670,7 @@ For terms of use, see http://www.unicode.org/copyright.html falkland-szigeteki font falkland-szigeteki font FKP + £ Francia frank @@ -5524,6 +5690,7 @@ For terms of use, see http://www.unicode.org/copyright.html grúz lari grúz lari GEL + Ghánai cedi (1979–2007) @@ -5552,6 +5719,7 @@ For terms of use, see http://www.unicode.org/copyright.html guineai frank guineai frank GNF + FG Guineai syli @@ -5569,6 +5737,7 @@ For terms of use, see http://www.unicode.org/copyright.html guatemalai quetzal guatemalai quetzal GTQ + Q Portugál guinea escudo @@ -5595,6 +5764,7 @@ For terms of use, see http://www.unicode.org/copyright.html hodurasi lempira hodurasi lempira HNL + L Horvát dínár @@ -5604,6 +5774,7 @@ For terms of use, see http://www.unicode.org/copyright.html horvát kuna horvát kuna HRK + kn haiti gourde @@ -5615,13 +5786,15 @@ For terms of use, see http://www.unicode.org/copyright.html magyar forint magyar forint magyar forint - HUF + Ft + Ft indonéz rúpia indonéz rúpia indonéz rúpia IDR + Rp Ír font @@ -5660,6 +5833,7 @@ For terms of use, see http://www.unicode.org/copyright.html izlandi korona izlandi korona ISK + kr Olasz líra @@ -5708,12 +5882,14 @@ For terms of use, see http://www.unicode.org/copyright.html comorei frank comorei frank KMF + CF észak-koreai won észak-koreai won észak-koreai won KPW + dél-koreai won @@ -5754,12 +5930,14 @@ For terms of use, see http://www.unicode.org/copyright.html libanoni font libanoni font LBP + Srí Lanka-i rúpia Srí Lanka-i rúpia Srí Lanka-i rúpia LKR + Rs libériai dollár @@ -5824,6 +6002,7 @@ For terms of use, see http://www.unicode.org/copyright.html madagaszkári ariary madagaszkári ariary MGA + Ar Madagaszkári frank @@ -5842,6 +6021,7 @@ For terms of use, see http://www.unicode.org/copyright.html mianmari kyat mianmari kyat MMK + K mongóliai tugrik @@ -5873,6 +6053,7 @@ For terms of use, see http://www.unicode.org/copyright.html mauritiusi rúpia mauritiusi rúpia MUR + Rs maldív-szigeteki rufiyaa @@ -5904,6 +6085,7 @@ For terms of use, see http://www.unicode.org/copyright.html malajziai ringgit malajziai ringgit MYR + RM Mozambik escudo @@ -5939,6 +6121,7 @@ For terms of use, see http://www.unicode.org/copyright.html nicaraguai córdoba nicaraguai córdoba NIO + C$ Holland forint @@ -5948,12 +6131,14 @@ For terms of use, see http://www.unicode.org/copyright.html norvég korona norvég korona NOK + kr nepáli rúpia nepáli rúpia nepáli rúpia NPR + Rs új-zélandi dollár @@ -6004,12 +6189,14 @@ For terms of use, see http://www.unicode.org/copyright.html pakisztáni rúpia pakisztáni rúpia PKR + Rs lengyel zloty lengyel zloty lengyel zloty PLN + Lengyel zloty (1950–1995) @@ -6057,6 +6244,7 @@ For terms of use, see http://www.unicode.org/copyright.html orosz rubel orosz rubel RUB + orosz rubel (1991–1998) @@ -6068,6 +6256,7 @@ For terms of use, see http://www.unicode.org/copyright.html ruandai frank ruandai frank RWF + RF szaúdi riyal @@ -6109,6 +6298,7 @@ For terms of use, see http://www.unicode.org/copyright.html svéd korona svéd korona SEK + kr szingapúri dollár @@ -6122,6 +6312,7 @@ For terms of use, see http://www.unicode.org/copyright.html Szent Ilona-i font Szent Ilona-i font SHP + £ Szlovén tolar @@ -6163,6 +6354,7 @@ For terms of use, see http://www.unicode.org/copyright.html São Tomé és Príncipe-i dobra São Tomé és Príncipe-i dobra STD + Db Szovjet rubel @@ -6175,6 +6367,7 @@ For terms of use, see http://www.unicode.org/copyright.html szíriai font szíriai font SYP + £ szváziföldi lilangeni @@ -6187,6 +6380,7 @@ For terms of use, see http://www.unicode.org/copyright.html thai baht thai baht THB + ฿ Tádzsikisztáni rubel @@ -6219,6 +6413,7 @@ For terms of use, see http://www.unicode.org/copyright.html tongai paanga tongai paanga TOP + T$ Timori escudo @@ -6234,6 +6429,7 @@ For terms of use, see http://www.unicode.org/copyright.html török líra TRY + TL Trinidad és Tobago-i dollár @@ -6322,6 +6518,7 @@ For terms of use, see http://www.unicode.org/copyright.html venezuelai bolivar venezuelai bolivar VEF + Bs vietnami dong @@ -6379,6 +6576,7 @@ For terms of use, see http://www.unicode.org/copyright.html kelet-karibi dollár kelet-karibi dollár XCD + $ Special Drawing Rights @@ -6453,6 +6651,7 @@ For terms of use, see http://www.unicode.org/copyright.html dél-afrikai rand dél-afrikai rand ZAR + R Zambiai kwacha (1968–2012) @@ -6463,6 +6662,7 @@ For terms of use, see http://www.unicode.org/copyright.html zambiai kwacha zambiai kwacha ZMW + ZK Zairei új zaire @@ -6495,15 +6695,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} per {1} - G gyorsulás - {0} G gyorsulás - {0} G gyorsulás + g gyorsulás + {0} g gyorsulás + {0} g gyorsulás méter per másodpercnégyzet {0} méter per másodpercnégyzet {0} méter per másodpercnégyzet + + fordulat + {0} fordulat + {0} fordulat + + + radián + {0} radián + {0} radián + + + fok + {0} fok + {0} fok + ívperc {0} ívperc @@ -6514,30 +6729,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ívmásodperc {0} ívmásodperc - - fok - {0} fok - {0} fok - - - radián - {0} radián - {0} radián - - - hold - {0} hold - {0} hold + + négyzetkilométer + {0} négyzetkilométer + {0} négyzetkilométer hektár {0} hektár {0} hektár + + négyzetméter + {0} négyzetméter + {0} négyzetméter + {0}/négyzetméter + négyzetcentiméter {0} négyzetcentiméter {0} négyzetcentiméter + {0}/négyzetcentiméter + + + négyzetmérföld + {0} négyzetmérföld + {0} négyzetmérföld + + + hold + {0} hold + {0} hold + + + négyzetyard + {0} négyzetyard + {0} négyzetyard négyzetláb @@ -6548,91 +6775,106 @@ For terms of use, see http://www.unicode.org/copyright.html négyzethüvelyk {0} négyzethüvelyk {0} négyzethüvelyk + {0}/négyzethüvelyk - - négyzetkilométer - {0} négyzetkilométer - {0} négyzetkilométer - - - négyzetméter - {0} négyzetméter - {0} négyzetméter - - - négyzetmérföld - {0} négyzetmérföld - {0} négyzetmérföld - - - négyzetyard - {0} négyzetyard - {0} négyzetyard + + karát + {0} karát + {0} karát liter per kilométer {0} liter per kilométer {0} liter per kilométer + + liter/100 km + {0} liter/100 km + {0} liter/100 km + mérföld per gallon {0} mérföld per gallon {0} mérföld per gallon - - bit - {0} bit - {0} bit - - - bájt - {0} bájt - {0} bájt - - - gigabit - {0} gigabit - {0} gigabit - - - gigabájt - {0} gigabájt - {0} gigabájt - - - kilobit - {0} kilobit - {0} kilobit - - - kilobájt - {0} kilobájt - {0} kilobájt - - - megabit - {0} megabit - {0} megabit - - - megabájt - {0} megabájt - {0} megabájt - - - terabit - {0} terabit - {0} terabit - terabájt {0} terabájt {0} terabájt + + terabit + {0} terabit + {0} terabit + + + gigabájt + {0} gigabájt + {0} gigabájt + + + gigabit + {0} gigabit + {0} gigabit + + + megabájt + {0} megabájt + {0} megabájt + + + megabit + {0} megabit + {0} megabit + + + kilobájt + {0} kilobájt + {0} kilobájt + + + kilobit + {0} kilobit + {0} kilobit + + + bájt + {0} bájt + {0} bájt + + + bit + {0} bit + {0} bit + + + évszázad + {0} évszázad + {0} évszázad + + + év + {0} év + {0} év + {0}/év + + + hónap + {0} hónap + {0} hónap + {0}/hónap + + + hét + {0} hét + {0} hét + {0}/hét + nap {0} nap {0} nap + {0}/nap óra @@ -6640,30 +6882,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} óra {0}/óra - - mikroszekundum - {0} mikroszekundum - {0} mikroszekundum - - - ezredmásodperc - {0} ezredmásodperc - {0} ezredmásodperc - perc {0} perc {0} perc - - - hónap - {0} hónap - {0} hónap - - - nanoszekundum - {0} nanoszekundum - {0} nanoszekundum + {0}/perc másodperc @@ -6671,15 +6894,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} másodperc {0}/másodperc - - hét - {0} hét - {0} hét + + ezredmásodperc + {0} ezredmásodperc + {0} ezredmásodperc - - év - {0} év - {0} év + + mikroszekundum + {0} mikroszekundum + {0} mikroszekundum + + + nanoszekundum + {0} nanoszekundum + {0} nanoszekundum amper @@ -6701,6 +6929,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volt + + kilokalória + {0} kilokalória + {0} kilokalória + kalória {0} kalória @@ -6711,21 +6944,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kalória {0} kalória - - joule - {0} joule - {0} joule - - - kilokalória - {0} kilokalória - {0} kilokalória - kilojoule {0} kilojoule {0} kilojoule + + joule + {0} joule + {0} joule + kilowattóra {0} kilowattóra @@ -6736,201 +6964,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigahertz {0} gigahertz - - hertz - {0} hertz - {0} hertz + + megahertz + {0} megahertz + {0} megahertz kilohertz {0} kilohertz {0} kilohertz - - megahertz - {0} megahertz - {0} megahertz + + hertz + {0} hertz + {0} hertz - - csillagászati egység - {0} csillagászati egység - {0} csillagászati egység + + kilométer + {0} kilométer + {0} kilométer + {0}/kilométer - - centiméter - {0} centiméter - {0} centiméter + + méter + {0} méter + {0} méter + {0}/méter deciméter {0} deciméter {0} deciméter - - láb - {0} láb - {0} láb - - - hüvelyk - {0} hüvelyk - {0} hüvelyk - - - kilométer - {0} kilométer - {0} kilométer - - - fényév - {0} fényév - {0} fényév - - - méter - {0} méter - {0} méter - - - mikrométer - {0} mikrométer - {0} mikrométer - - - mérföld - {0} mérföld - {0} mérföld + + centiméter + {0} centiméter + {0} centiméter + {0}/centimeter milliméter {0} milliméter {0} milliméter + + mikrométer + {0} mikrométer + {0} mikrométer + nanométer {0} nanométer {0} nanométer - - tengeri mérföld - {0} tengeri mérföld - {0} tengeri mérföld - - - parszek - {0} parszek - {0} parszek - pikométer {0} pikométer {0} pikométer + + mérföld + {0} mérföld + {0} mérföld + yard {0} yard {0} yard + + láb + {0} láb + {0} láb + {0}/láb + + + hüvelyk + {0} hüvelyk + {0} hüvelyk + {0}/hüvelyk + + + parszek + {0} parszek + {0} parszek + + + fényév + {0} fényév + {0} fényév + + + csillagászati egység + {0} csillagászati egység + {0} csillagászati egység + + + tengeri mérföld + {0} tengeri mérföld + {0} tengeri mérföld + + + svéd mérföld + {0} svéd mérföld + {0} svéd mérföld + lux {0} lux {0} lux - - karát - {0} karát - {0} karát - - - gramm - {0} gramm - {0} gramm - - - kilogramm - {0} kilogramm - {0} kilogramm - metrikus tonna {0} metrikus tonna {0} metrikus tonna - - mikrogramm - {0} mikrogramm - {0} mikrogramm + + kilogramm + {0} kilogramm + {0} kilogramm + {0}/kilogramm + + + gramm + {0} gramm + {0} gramm + {0}/gramm milligramm {0} milligramm {0} milligramm - - uncia - {0} uncia - {0} uncia - - - troy uncia - {0} troy uncia - {0} troy uncia - - - font - {0} font - {0} font + + mikrogramm + {0} mikrogramm + {0} mikrogramm tonna {0} tonna {0} tonna + + font + {0} font + {0} font + {0}/font + + + uncia + {0} uncia + {0} uncia + {0}/uncia + + + troy uncia + {0} troy uncia + {0} troy uncia + + + karát + {0} karát + {0} karát + gigawatt {0} gigawatt {0} gigawatt - - lóerő - {0} lóerő - {0} lóerő - - - kilowatt - {0} kilowatt - {0} kilowatt - megawatt {0} megawatt {0} megawatt - - milliwatt - {0} milliwatt - {0} milliwatt + + kilowatt + {0} kilowatt + {0} kilowatt watt {0} watt {0} watt + + milliwatt + {0} milliwatt + {0} milliwatt + + + lóerő + {0} lóerő + {0} lóerő + hektopascal {0} hektopascal {0} hektopascal - - higanyhüvelyk - {0} higanyhüvelyk - {0} higanyhüvelyk - - - millibar - {0} millibar - {0} millibar - mm Hg {0} higanymilliméter @@ -6941,10 +7173,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} font per négyzethüvelyk {0} font per négyzethüvelyk - - karát - {0} karát - {0} karát + + higanyhüvelyk + {0} higanyhüvelyk + {0} higanyhüvelyk + + + millibar + {0} millibar + {0} millibar kilométer per óra @@ -6961,6 +7198,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mérföld per óra {0} mérföld per óra + + csomó + {0} csomó + {0} csomó + + + ° + {0}° + {0}° + Celsius-fok {0} Celsius-fok @@ -6976,31 +7223,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvin {0} kelvin - - hold-láb - {0} hold-láb - {0} hold-láb - - - centiliter - {0} centiliter - {0} centiliter - - - köbcentiméter - {0} köbcentiméter - {0} köbcentiméter - - - köbláb - {0} köbláb - {0} köbláb - - - köbhüvelyk - {0} köbhüvelyk - {0} köbhüvelyk - köbkilométer {0} köbkilométer @@ -7010,6 +7232,13 @@ For terms of use, see http://www.unicode.org/copyright.html köbméter {0} köbméter {0} köbméter + {0}/köbméter + + + köbcentiméter + {0} köbcentiméter + {0} köbcentiméter + {0}/köbcentiméter köbmérföld @@ -7021,25 +7250,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} köbyard {0} köbyard - - csésze - {0} csésze - {0} csésze + + köbláb + {0} köbláb + {0} köbláb - - deciliter - {0} deciliter - {0} deciliter + + köbhüvelyk + {0} köbhüvelyk + {0} köbhüvelyk - - folyadékuncia - {0} folyadékuncia - {0} folyadékuncia - - - gallon - {0} gallon - {0} gallon + + megaliter + {0} megaliter + {0} megaliter hektoliter @@ -7050,27 +7274,64 @@ For terms of use, see http://www.unicode.org/copyright.html liter {0} liter {0} liter + {0}/liter - - megaliter - {0} megaliter - {0} megaliter + + deciliter + {0} deciliter + {0} deciliter + + + centiliter + {0} centiliter + {0} centiliter milliliter {0} milliliter {0} milliliter - - pint - {0} pint - {0} pint + + metrikus pint + {0} metrikus pint + {0} metrikus pint + + + bögre + {0} bögre + {0} bögre + + + hold-láb + {0} hold-láb + {0} hold-láb + + + gallon + {0} gallon + {0} gallon + {0}/gallon quart {0} quart {0} quart + + pint + {0} pint + {0} pint + + + csésze + {0} csésze + {0} csésze + + + folyadékuncia + {0} folyadékuncia + {0} folyadékuncia + evőkanál {0} evőkanál @@ -7081,13 +7342,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kávéskanál {0} kávéskanál + + {0} K + {0} É + {0} D + {0} Ny + {0}/{1} - G gyorsulás + g gyorsulás {0} G {0} G @@ -7096,6 +7363,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + ford. + {0} ford. + {0} ford. + + + rad + {0} rad + {0} rad + + + fok + {0} fok + {0} fok + ívperc {0}′ @@ -7106,30 +7388,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - fok - {0} fok - {0} fok - - - rad - {0} rad - {0} rad - - - kh - {0} kh - {0} kh + + km² + {0} km² + {0} km² ha {0} ha {0} ha + + + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + mf² + {0} mf² + {0} mf² + + + kh + {0} kh + {0} kh + + + yd² + {0} yd² + {0} yd² ft² @@ -7140,91 +7434,106 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - mf² - {0} mf² - {0} mf² - - - yd² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt l/km {0} l/km {0} l/km + + l/100 km + {0} l/100 km + {0} l/100km + mpg {0} mpg {0} mpg - - bit - {0} bit - {0} bit - - - bájt - {0} bájt - {0} bájt - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + bájt + {0} bájt + {0} bájt + + + bit + {0} bit + {0} bit + + + sz. + {0} sz. + {0} sz. + + + év + {0} év + {0} év + {0}/év + + + hónap + {0} hónap + {0} hónap + {0}/hó + + + hét + {0} hét + {0} hét + {0}/hét + nap {0} nap {0} nap + {0}/nap h @@ -7232,30 +7541,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0}/h - - μs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - min {0} min {0} min - - - hónap - {0} hónap - {0} hónap - - - ns - {0} ns - {0} ns + {0}/min s @@ -7263,15 +7553,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} s {0}/s - - hét - {0} hét - {0} hét + + ms + {0} ms + {0} ms - - év - {0} év - {0} év + + μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns A @@ -7293,6 +7588,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -7303,21 +7603,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cal {0} cal - - J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + J + {0} J + {0} J + kWh {0} kWh @@ -7328,201 +7623,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - CsE - {0} CsE - {0} CsE + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + m + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - láb - {0} láb - {0} láb - - - hüvelyk - {0} hüvelyk - {0} hüvelyk - - - km - {0} km - {0} km - - - fényév - {0} fényév - {0} fényév - - - m - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - mf - {0} mf - {0} mf + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - pc - {0} pc - {0} pc - pm {0} pm {0} pm + + mf + {0} mf + {0} mf + yd {0} yd {0} yd + + láb + {0} láb + {0} láb + {0}/láb + + + hüvelyk + {0} hüvelyk + {0} hüvelyk + {0}/in + + + pc + {0} pc + {0} pc + + + fényév + {0} fényév + {0} fényév + + + CsE + {0} CsE + {0} CsE + + + nmi + {0} nmi + {0} nmi + + + mil + {0} mil + {0} mil + lx {0} lx {0} lx - - Kt - {0} Kt - {0} Kt - - - g - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + gram + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - oz - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb + + µg + {0} µg + {0} µg tn {0} tn {0} tn + + lb + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0}/oz + + + oz t + {0} oz t + {0} oz t + + + Kt + {0} Kt + {0} Kt + GW {0} GW {0} GW - - LE - {0} LE - {0} LE - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW W {0} W {0} W + + mW + {0} mW + {0} mW + + + LE + {0} LE + {0} LE + hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - - - mbar - {0} mb - {0} mb - mm Hg {0} mm Hg @@ -7533,10 +7832,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kt - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + + + mbar + {0} mb + {0} mb km/h @@ -7553,6 +7857,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mph {0} mph + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + °C {0} °C @@ -7568,31 +7882,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - - - cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -7602,6 +7891,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -7613,25 +7909,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - cs. - {0} cs. - {0} cs. + + ft³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl + + in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml hl @@ -7642,27 +7933,64 @@ For terms of use, see http://www.unicode.org/copyright.html l {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl ml {0} ml {0} ml - - pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + + + bg + {0} bg + {0} bg + + + ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0}/gal qt {0} qt {0} qt + + pt + {0} pt + {0} pt + + + cs. + {0} cs. + {0} cs. + + + fl oz + {0} fl oz + {0} fl oz + ek. {0} ek. @@ -7673,6 +8001,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kk. {0} kk. + + {0} K + {0} É + {0} D + {0} Ny + @@ -7682,6 +8016,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}′ {0}′ @@ -7690,26 +8028,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} ac - {0} ac + + {0} km² + {0} km² {0} ha {0} ha - - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} m² {0} m² @@ -7718,6 +8044,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} ac + {0} ac + + + {0} ft² + {0} ft² + + + l/100 km + {0} l/100 km + {0} l/100 km + + + év + {0} év + {0} év + + + hónap + {0} h. + {0} h. + + + hét + {0} hét + {0} hét + nap {0} nap @@ -7728,66 +8082,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0} h - - ms - {0} ms - {0} ms - min {0} min {0} min - - hónap - {0} h. - {0} h. - s {0} s {0} s - - hét - {0} hét - {0} hét - - - év - {0} év - {0} év - - - cm - {0} cm - {0} cm - - - {0} láb - {0} láb - - - {0} hüvelyk - {0} hüvelyk + + ms + {0} ms + {0} ms km {0} km {0} km - - {0} fényév - {0} fényév - m {0} m {0} m - - {0} mf - {0} mf + + cm + {0} cm + {0} cm mm @@ -7798,31 +8121,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} mf + {0} mf + {0} yd {0} yd - - g - {0} g - {0} g + + {0} láb + {0} láb + + + {0} hüvelyk + {0} hüvelyk + + + {0} fényév + {0} fényév kg {0} kg {0} kg - - {0} uncia - {0} uncia + + g + {0} g + {0} g {0} font {0} font - - {0} LE - {0} LE + + {0} uncia + {0} uncia {0} kW @@ -7832,6 +8167,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} LE + {0} LE + {0} hPa {0} hPa @@ -7879,6 +8218,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l + + {0} K + {0} É + {0} D + {0} Ny + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hu_HU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hu_HU.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hu_HU.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hu_HU.xml index 27563fdfad2..d0b7b97932d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hu_HU.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hu_HU.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hy.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hy.xml similarity index 87% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hy.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hy.xml index 6e53e4a2b5c..a3046c98222 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hy.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hy.xml @@ -1,50 +1,71 @@ - - - + {0} ({1}) {0}, {1} - {0}. {1} + {0}՝ {1} + աֆարերեն աբխազերեն + աչեհերեն + ակոլերեն + ադանգմերեն + ադիղերեն + թունիսական արաբերեն աֆրիկաանս աղեմ + այներեն աքաներեն + աքքադերեն ամհարերեն + հին անգլերեն արաբերեն ժամանակակից ստանդարտ արաբերեն + արամեերեն մապուչի + ալժիրական արաբերեն + եգիպտական արաբերեն ասամերեն ասու + ամերիկյան ժեստերի լեզու + աստուրերեն ադրբեջաներեն + ադրբեջաներեն բաշկիրերեն բելառուսերեն բեմբա բենա բուլղարերեն + արևմտյան բելոչի բամբարա բենգալերեն տիբեթերեն բրետոներեն բոդո բոսնիերեն + աքուզերեն կատալաներեն + չեչեներեն + կաբուաներեն չիգա շերոկի սորանի (քրդերեն) կորսիկերեն + ղպտերեն + ղրիմյան թուրքերեն չեխերեն + չուվաշերեն ուելսերեն դանիերեն թաիթա @@ -58,12 +79,13 @@ For terms of use, see http://www.unicode.org/copyright.html ջոնգքհա էմբու էվե + էֆիկերեն + հին եգիպտերեն հունարեն անգլերեն - ավստրալական անգլերեն + ավստրալիական անգլերեն կանադական անգլերեն բրիտանական անգլերեն - անգլերեն (ՄԹ) ամերիկյան անգլերեն անգլերեն (ԱՄՆ) էսպերանտո @@ -76,19 +98,30 @@ For terms of use, see http://www.unicode.org/copyright.html պարսկերեն ֆիններեն ֆիլիպիներեն + տորնադելեն ֆիններեն ֆիջիերեն ֆարյորերեն + ֆոներեն ֆրանսերեն կանադական ֆրանսերեն շվեյցարական ֆրանսերեն + հին ֆրանսերեն + արևելյան ֆրիզերեն + ֆրիուլիերեն արևմտյան ֆրիզերեն իռլանդերեն + գաերեն գագաուզերեն + զրադաշտական դարի Գաելյան Շոտլանդերեն գալիսերեն գուարանի + հին բարձր գերմաներեն + գոթերեն + հին հունարեն շվեյցարական գերմաներեն գուջարաթի + վայու գուսի մեներեն հաուսա @@ -97,6 +130,7 @@ For terms of use, see http://www.unicode.org/copyright.html հինդի խորվաթերեն վերին սորբիերեն + սյան չինարեն հաիթերեն հունգարերեն հայերեն @@ -115,6 +149,7 @@ For terms of use, see http://www.unicode.org/copyright.html վրացերեն կաբիլերեն կամբա + տիապ մակոնդե կուբավերդիանու կոյրա չինի @@ -140,6 +175,7 @@ For terms of use, see http://www.unicode.org/copyright.html լակոտա լինգալա լաոսերեն + հյուսիսային լուրիերեն լիտվերեն լուբա-կատանգա լուո @@ -157,10 +193,12 @@ For terms of use, see http://www.unicode.org/copyright.html մոնղոլերեն մոհավք մարաթի + արևմտյան մարիերեն մալայերեն մալթերեն մունդանգ բիրմայերեն + մազանդարաներեն նամա նորվեգերեն բուկմոլ հյուսիսային նդեբելե @@ -170,36 +208,71 @@ For terms of use, see http://www.unicode.org/copyright.html կվասիո նորվեգերեն նյունորսկ Նորվեգերեն + հին նորվեգերեն նկո նուեր նյանկոլե - Ակվիտաներեն + ակվիտաներեն + օջիբվա օրոմո օրիյա + օսերեն + օսեյջի + օսմաներեն փենջաբերեն + պանգասինաներեն + պահլավերեն + պանպանգաերեն + պապիամենտո + պալաուերեն + պիկարդերեն + փենսիլվանական գերմաներեն + պլատագերմաներեն + հին պարսկերեն + պալանտինների գերմաներեն + փյունիկերեն + պալի լեհերեն + պիեմոնտերեն + պոնտիկերեն + պոնպեերեն + պրուսերեն + հին պրովենսիալ փուշթու պորտուգալերեն բրազիլական պորտուգալերեն եվրոպական պորտուգալերեն քեչուա կիչե + ռաջաստաներեն + ռապանուի + ռարոտոնգան + ռոմանիոլերեն + ռիֆերեն ռոմանշերեն ռունդի ռումիներեն մոլդովերեն ռոմբո + ռոմաներեն + ռուտերեն + ռոտուման ռուսերեն + ռուսիներեն + ռովիանա + արոմաներեն քինյարվանդա ռվա սանսկրիտ սամբուրու սանգու սինդհի + հարավային քրդերեն հյուսիսային սամի սենա կոյրաբորո սեննի սանգո + հին իռլանդերեն Սերբա-Խորվաթերեն տաշելհիթ սինհալերեն @@ -213,44 +286,94 @@ For terms of use, see http://www.unicode.org/copyright.html սոմալիերեն ալբաներեն սերբերեն - Սեսոտո + հյուսիսային սոտո սունդաներեն շվեդերեն սուահիլի - կոնգոյի սուահիլի + կոնգոյի սուահիլի թամիլերեն + տուլու թելուգու + տիմնե տեսո + տերենո + թեթում տաջիկերեն թայերեն թիգրինիա + տիգրե + տիվերեն թուրքմեներեն + տոկելաու + ցախուր + տագալերեն Կլինգոն - տոնգա + տլինգիտ + թալիշերեն + տամաշեկ + ցվանա + տոնգերեն + տոկ փիսին թուրքերեն + տուրոյո + տարոկո + ցոնգա + ցակոներեն + ցիմշյան թաթարերեն - Տուի + տումբուկա + թուվալուերեն + տուի տասավաք + թաիտերեն + տուվերեն կենտրոնատլասյան թամազիխտ + ուդմուրտերեն ույղուրերեն + ուգարիտերեն ուկրաիներեն + ումբունդու անհայտ լեզու ուրդու ուզբեկերեն վաի + վենդա + վենետիկերեն + վեպսկերեն վիետնամերեն + արևմտյան ֆլամադերեն + վոլապյուկ + վոդերեն + վորո վունջո + վալոներեն + վալսերեն + վոլայտա + վարայերեն + վաշո + վարլպիրի վոլոֆ + վու չինարեն քսոզա սոգա - Իդիշ + յաո + յապսկերեն + յանգբեն + յեմբաերեն + իդիշ յորուբա + ժուանգ + սապոտեկերեն + զեյլանդերեն + զենագա ստանդարտ մարոկական թամազիղտ չինարեն պարզեցված չինարեն ավանդական չինարեն զուլուսերեն + զունիերեն առանց լեզվային բովանդակության + զազաերեն @@ -308,14 +431,14 @@ For terms of use, see http://www.unicode.org/copyright.html Կենտրոնական Աֆրիկա Հարավային Աֆրիկա Ամերիկա - Հյուսիսային Ամերիկա - Մեքսիկայից հյուսիս + Հյուսիսային Ամերիկա - ԱՄՆ և Կանադա Կարիբյան կղզիներ Արևելյան Ասիա Հարավային Ասիա Հարավ-Արևելյան Ասիա Հարավային Եվրոպա - Ավստրալասիա - Մալանեզիա + Ավստրալիա և Նոր Զելանդիա + Մելանեզիա Միկրոնեզիայի տարածաշրջան Պոլինեզիա Ասիա @@ -327,11 +450,11 @@ For terms of use, see http://www.unicode.org/copyright.html Արևմտյան Եվրոպա Լատինական Ամերիկա Համբարձման կղզի - Անդորա - Միացյալ Արաբական Էմիրություններ + Անդորրա + Արաբական Միացյալ Էմիրություններ Աֆղանստան Անտիգուա և Բարբուդա - Անգիլիա + Անգիլյա Ալբանիա Հայաստան Անգոլա @@ -352,16 +475,16 @@ For terms of use, see http://www.unicode.org/copyright.html Բահրեյն Բուրունդի Բենին - Սուրբ Բարթողոմեոսի կղզի + Սուրբ Բարդուղիմեոս Բերմուդյան կղզիներ Բրունեյ Բոլիվիա - Կարիբյան Նիդերլանդներ + Կարիբյան Նիդեռլանդներ Բրազիլիա - Բահամյան կղզիներ + Բահամներ Բութան Բուվե կղզի - Բոտսվանա + Բոթսվանա Բելառուս Բելիզ Կանադա @@ -372,15 +495,15 @@ For terms of use, see http://www.unicode.org/copyright.html Կոնգո - Բրազավիլ Կոնգո (Կոնգոյի Հանրապետություն) Շվեյցարիա - Փղոսկրի Ափ - Կոտ դ’Իվուար + Կոտ Դ՛իվուար + Փղոսկրի Ափ Կուկի կղզիներ Չիլի Կամերուն Չինաստան Կոլումբիա Քլիփերթոն կղզի - Կոստա-Ռիկա + Կոստա Ռիկա Կուբա Կաբո Վերդե Կյուրասաո @@ -405,14 +528,14 @@ For terms of use, see http://www.unicode.org/copyright.html Եվրոպական Միություն Ֆինլանդիա Ֆիջի - Ֆոլկլենդյան կղզիներ - Ֆոլկլենդյան (Մալվինյան) կղզիներ + Ֆոլքլենդյան կղզիներ + Ֆոլքլենդյան (Մալվինյան) կղզիներ Միկրոնեզիա Ֆարերյան կղզիներ Ֆրանսիա Գաբոն - Միացյալ Թագավորություն - Միացյալ Թագավորություն + Մեծ Բրիտանիա + Բրիտանիա Գրենադա Վրաստան Ֆրանսիական Գվիանա @@ -449,7 +572,7 @@ For terms of use, see http://www.unicode.org/copyright.html Իսլանդիա Իտալիա Ջերսի - Ջամայկա + Ճամայկա Հորդանան Ճապոնիա Քենիա @@ -457,7 +580,7 @@ For terms of use, see http://www.unicode.org/copyright.html Կամբոջա Կիրիբատի Կոմորյան կղզիներ - Սենթ Քիթս և Նևիս + Սենթ Քիթս և Նեվիս Հյուսիսային Կորեա Հարավային Կորեա Քուվեյթ @@ -465,7 +588,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ղազախստան Լաոս Լիբանան - Սենթ Լյուսիա + Սենթ Լուսիա Լիխտենշտեյն Շրի Լանկա Լիբերիա @@ -474,7 +597,7 @@ For terms of use, see http://www.unicode.org/copyright.html Լյուքսեմբուրգ Լատվիա Լիբիա - Մարոկո + Մարոկկո Մոնակո Մոլդովա Չեռնոգորիա @@ -505,7 +628,7 @@ For terms of use, see http://www.unicode.org/copyright.html Նորֆոլկ կղզի Նիգերիա Նիկարագուա - Նիդերլանդեր + Նիդեռլանդներ Նորվեգիա Նեպալ Նաուրու @@ -519,7 +642,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ֆիլիպիններ Պակիստան Լեհաստան - Սեն Պիեր և Միկելոն + Սեն Պիեռ և Միքելոն Պիտկեռն կղզիներ Պուերտո Ռիկո Պաղեստինյան տարածքներ @@ -542,21 +665,21 @@ For terms of use, see http://www.unicode.org/copyright.html Սինգապուր Սուրբ Հեղինեի կղզի Սլովենիա - Սվալբարդ և Յան-Մայեն + Սվալբարդ և Յան Մայեն Սլովակիա - Սյերա-Լեոնե + Սիերա Լեոնե Սան Մարինո Սենեգալ Սոմալի Սուրինամ Հարավային Սուդան - Սան Տոմե և Պրինսիպի + Սան Տոմե և Փրինսիփի Սալվադոր Սինտ Մարտեն Սիրիա Սվազիլենդ Տրիստան դա Կունյա - Տերկս և Կայկոս կղզիներ + Թըրքս և Կայկոս կղզիներ Չադ Ֆրանսիական Հարավային Տարածքներ Տոգո @@ -572,7 +695,7 @@ For terms of use, see http://www.unicode.org/copyright.html Տրինիդադ և Տոբագո Տուվալու Թայվան - Տանզանիա + Թանզանիա Ուկրաինա Ուգանդա Արտաքին կղզիներ (ԱՄՆ) @@ -581,7 +704,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ուրուգվայ Ուզբեկստան Վատիկան քաղաք-պետություն - Սենթ Վիսենտ և Գրենադիններ + Սենթ Վինսենթ և Գրենադիններ Վենեսուելա Բրիտանական Վիրջինյան կղզիներ Ամերիկյան Վիրջինյան կղզիներ @@ -605,68 +728,81 @@ For terms of use, see http://www.unicode.org/copyright.html Տոմար Տեսակավորման կարգ արժույթ + Ժամանակային համակարգ (12 կամ 24) + տողանցման ոճ + չափման համակարգ թվեր - արաբա-հնդկական թվեր - արաբա-հնդկական թվերի ընդլայնված համակարգ - հայկական թվեր - հայկական թվեր (փոքրատառ) - բենգալական թվեր - Բուդդայական տոմար - Չինական տոմար - Դանգիական տոմար - դեվանագարի թվեր - Սկզբնադիր տեսակավորման կարգ Unicode-ի համար - եթովպական թվեր - Եթովպիական տոմար - թվերի լայն ձևաչափ - վրացական թվեր - Գրիգորյան տոմար - հունական թվեր - հունական թվեր (փոքրատառ) - գուջարաթի թվեր - գուրմուխի թվեր - չինական տասնորդական թվեր - չինական պարզեցված թվեր - չինական պարզեցված ֆինանսական թվեր - չինական ավանդական թվեր - չինական ավանդական ֆինանսական թվեր - եբրայերեն թվեր - Հրեական տոմար - Իսլամական տոմար - ISO-8601 տոմար - Ճապոնական տոմար - ճապոնական թվեր - ճապոնական ֆինանսական թվեր - քմերական թվեր - կաննադա թվեր - լաոսական թվեր - արևմտյան թվեր - մալայալամ թվեր - բիրմական թվեր - օրիյա թվեր - Պարսկական տոմար - Մինգուո տոմար - հռոմեական թվեր - հռոմեական թվեր (փոքրատառ) - Ընդհանուր որոնում - Տեսակավորման ստանդարտ կարգ - թամիլական ավանդական թվեր - թամիլական թվեր - թելուգու թվեր - թայական թվեր - տիբեթական թվեր + բուդդայական տոմար + չինական տոմար + դանգի տոմար + եթովպիական տոմար + գրիգորյան տոմար + հրեական տոմար + իսլամական տոմար + ISO-8601 տոմար + ճապոնական տոմար + պարսկական տոմար + մինգուո տոմար + Unicode-ի ստանդարտ տեսակավորում + որոնում + տեսակավորման ստանդարտ կարգ + 12-ժամյա համակարգ (0-11) + 12-ժամյա համակարգ (1-12) + 24-ժամյա համակարգ (0-23) + 24-ժամյա համակարգ (1-24) + փափուկ տողանցում + սովորական տողանցում + կոշտ տողանցում + մետրիկ համակարգ + չափման բրիտանական համակարգ + չափման ամերիկյան համակարգ + արաբա-հնդկական թվեր + արաբա-հնդկական թվերի ընդլայնված համակարգ + հայկական թվեր + հայկական թվեր (փոքրատառ) + բենգալական թվեր + դեվանագարի թվեր + եթովպական թվեր + թվերի լայն ձևաչափ + վրացական թվեր + հունական թվեր + հունական թվեր (փոքրատառ) + գուջարաթի թվեր + գուրմուխի թվեր + չինական տասնորդական թվեր + չինական պարզեցված թվեր + չինական պարզեցված ֆինանսական թվեր + չինական ավանդական թվեր + չինական ավանդական ֆինանսական թվեր + եբրայերեն թվեր + ճապոնական թվեր + ճապոնական ֆինանսական թվեր + քմերական թվեր + կաննադա թվեր + լաոսական թվեր + արևմտյան թվեր + մալայալամ թվեր + բիրմական թվեր + օրիյա թվեր + հռոմեական թվեր + հռոմեական թվեր (փոքրատառ) + թամիլական ավանդական թվեր + թամիլական թվեր + թելուգու թվեր + թայական թվեր + տիբեթական թվեր - Մետրիկ + Մետրական Անգլիական Ամերիկյան - Լեզու. {0} - Գիր. {0} - Շրջան. {0} + Լեզու՝ {0} + Գիր՝ {0} + Շրջան՝ {0} @@ -1003,13 +1139,13 @@ For terms of use, see http://www.unicode.org/copyright.html շբթ - Կ - Ե - Ե - Չ - Հ + Կր + Եկ + Եր + Չր + Հգ Ու - Շ + Շբ կիր @@ -1075,15 +1211,61 @@ For terms of use, see http://www.unicode.org/copyright.html + + կգ․ + AM + կօ․ + PM + առվտ + ցրկ + երկ + գշր + - կա - կ - կհ + կգ․ + a + կօ․ + p + առվտ + ցրկ + երկ + գշր - կեսօրից առաջ - կեսօրին - կեսօրից հետո + կեսգիշեր + AM + կեսօր + PM + առավոտյան + կեսօրից հետո + երեկոյան + գիշերը + + + + + AM + PM + + + կեսգիշեր + AM + կեսօր + PM + առավոտ + ցերեկ + երեկո + գիշեր + + + կեսգիշեր + AM + կեսօր + PM + առավոտ + ցերեկ + երեկո + գիշեր @@ -1189,6 +1371,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d MMM d MMM, E + MMMM d mm:ss y MM.y @@ -1197,11 +1380,12 @@ For terms of use, see http://www.unicode.org/copyright.html yթ. LLL d MMM, yթ. yթ. MMM d, E + yթ․ MMMM y թ, QQQ y թ, QQQQ - {0}, {1} + {0} {1} {0} – {1} @@ -1225,17 +1409,17 @@ For terms of use, see http://www.unicode.org/copyright.html H:mm–H:mm - h:mm a – h:mm a, v - h:mm–h:mm a, v - h:mm–h:mm a, v + h:mm a – h:mm a v + h:mm–h:mm a v + h:mm–h:mm a v H:mm–H:mm, v H:mm–H:mm, v - h a – h a, v - h–h a, v + h a – h a v + h–h a v H–H, v @@ -1281,12 +1465,12 @@ For terms of use, see http://www.unicode.org/copyright.html MMM–MMM yթ. - MMM y – MMM yթ. + y MMM – y MMM dd–dd MMM, yթ. dd MMM – dd MMM, yթ. - dd MMM, y – dd MMM, yթ. + dd MMM, yթ․ – dd MMM, yթ. E, d MMM – E, d MMM, yթ. @@ -1295,7 +1479,7 @@ For terms of use, see http://www.unicode.org/copyright.html yթ. MMM – MMM - MMM y – MMM yթ. + MMM yթ․ – MMM yթ. @@ -1390,6 +1574,9 @@ For terms of use, see http://www.unicode.org/copyright.html ամս. + անցյալ ամիս + այս ամիս + հաջորդ ամիս {0} ամիս անց {0} ամիս անց @@ -1401,6 +1588,9 @@ For terms of use, see http://www.unicode.org/copyright.html ամս. + անցյալ ամիս + այս ամիս + հաջորդ ամիս {0} ամիս անց {0} ամիս անց @@ -1464,6 +1654,11 @@ For terms of use, see http://www.unicode.org/copyright.html Օր + երեկ չէ առաջի օրը + երեկ + այսօր + վաղը + վաղը չէ մյուս օրը {0} օրից {0} օրից @@ -1475,6 +1670,11 @@ For terms of use, see http://www.unicode.org/copyright.html Օր + երեկ չէ առաջի օրը + երեկ + այսօր + վաղը + վաղը չէ մյուս օրը {0} օրից {0} օրից @@ -1578,9 +1778,9 @@ For terms of use, see http://www.unicode.org/copyright.html հաջորդ ուր. - անցյալ շաբաթ - այս շաբաթ - հաջորդ շաբաթ + անցյալ շաբաթ օրը + այս շաբաթ օրը + հաջորդ շաբաթ օրը անցյալ շբթ. @@ -1723,7 +1923,7 @@ For terms of use, see http://www.unicode.org/copyright.html Անտիգուա - Անգիլիա + Անգիլյա Տիրանա @@ -2308,7 +2508,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ջերսի - Ջամայկա + Ճամայկա Ամման @@ -2356,13 +2556,13 @@ For terms of use, see http://www.unicode.org/copyright.html Ակտաու - Օրալ + Ուրալսկ Ակտոբե - Քիզիլօրդա + Կիզիլորդա Ալմաթի @@ -2658,6 +2858,9 @@ For terms of use, see http://www.unicode.org/copyright.html Իրկուտսկ + + Չիտա + Յակուտսկ @@ -2676,6 +2879,9 @@ For terms of use, see http://www.unicode.org/copyright.html Մագադան + + Սրեդնեկոլիմսկ + Կամչատկա @@ -2998,16 +3204,16 @@ For terms of use, see http://www.unicode.org/copyright.html - Միջին ամերիկյան ժամանակ - Միջին ամերիկյան ստանդարտ ժամանակ - Միջին ամերիկյան ամառային ժամանակ + Կենտրոնական Ամերիկայի ժամանակ + Կենտրոնական Ամերիկայի ստանդարտ ժամանակ + Կենտրոնական Ամերիկայի ամառային ժամանակ - Արևելաամերիկյան ժամանակ - Արևելաամերիկյան ստանդարտ ժամանակ - Արևելաամերիկյան ամառային ժամանակ + Արևելյան Ամերիկայի ժամանակ + Արևելյան Ամերիկայի ստանդարտ ժամանակ + Արևելյան Ամերիկայի ամառային ժամանակ @@ -3237,16 +3443,16 @@ For terms of use, see http://www.unicode.org/copyright.html - Կենտրոնաեվրոպական ժամանակ - Կենտրոնաեվրոպական ստանդարտ ժամանակ - Կենտրոնաեվրոպական ամառային ժամանակ + Կենտրոնական Եվրոպայի ժամանակ + Կենտրոնական Եվրոպայի ստանդարտ ժամանակ + Կենտրոնական Եվրոպայի ամառային ժամանակ - Արևելաեվրոպական ժամանակ - Արևելաեվրոպական ստանդարտ ժամանակ - Արևելաեվրոպական ամառային ժամանակ + Արևելյան Եվրոպայի ժամանակ + Արևելյան Եվրոպայի ստանդարտ ժամանակ + Արևելյան Եվրոպայի ամառային ժամանակ @@ -3256,9 +3462,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Արևմտաեվրոպական ժամանակ - Արևմտաեվրոպական ստանդարտ ժամանակ - Արևմտաեվրոպական ամառային ժամանակ + Արևմտյան Եվրոպայի ժամանակ + Արևմտյան Եվրոպայի ստանդարտ ժամանակ + Արևմտյան Եվրոպայի ամառային ժամանակ @@ -3328,7 +3534,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Պարսից ծոցի ժամանակ + Պարսից ծոցի ստանդարտ ժամանակ @@ -3359,7 +3565,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Հնդկաստանի ժամանակ + Հնդկաստանի ստանդարտ ժամանակ @@ -3925,17 +4131,45 @@ For terms of use, see http://www.unicode.org/copyright.html - #0% + #,##0% - #0.00 ¤ + ¤ #,##0.00 - #0.00 ¤ + ¤ #,##0.00 + + + + + 0 հզր ¤ + 0 հզր ¤ + 00 հզր ¤ + 00 հզր ¤ + 000 հզր ¤ + 000 հզր ¤ + 0 մլն ¤ + 0 մլն ¤ + 00 մլն ¤ + 00 մլն ¤ + 000 մլն ¤ + 000 մլն ¤ + 0 մլրդ ¤ + 0 մլրդ ¤ + 00 մլրդ ¤ + 00 մլրդ ¤ + 000 մլրդ ¤ + 000 մլրդ ¤ + 0 տրլն ¤ + 0 տրլն ¤ + 00 տրլն ¤ + 00 տրլն ¤ + 000 տրլն ¤ + 000 տրլն ¤ {0} {1} @@ -4155,6 +4389,7 @@ For terms of use, see http://www.unicode.org/copyright.html Կուբական փոխարկելի պեսո Կուբական փոխարկելի պեսո CUC + $ Կուբական պեսո @@ -4281,6 +4516,7 @@ For terms of use, see http://www.unicode.org/copyright.html Գվատեմալական կետսալ Գվատեմալական կետսալ GTQ + Q Գայանական դոլար @@ -4301,6 +4537,7 @@ For terms of use, see http://www.unicode.org/copyright.html Հոնդուրասական լեմպրիա Հոնդուրասական լեմպրիա HNL + L Խորվաթական կունա @@ -4585,6 +4822,7 @@ For terms of use, see http://www.unicode.org/copyright.html Նիկարագուական կորդոբա Նիկարագուական կորդոբա NIO + C$ Նորվեգական կրոնա @@ -4778,6 +5016,7 @@ For terms of use, see http://www.unicode.org/copyright.html Թաիլանդական բատ Թաիլանդական բատ ฿ + ฿ Տաջիկական սոմոնի @@ -4899,6 +5138,7 @@ For terms of use, see http://www.unicode.org/copyright.html Արևելակարիբյան դոլար Արևելակարիբյան դոլար EC$ + $ Աֆրիկական ֆինանսական համայնքի ֆրանկ BCEAO @@ -4961,6 +5201,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} մետր /վայրկյան քառակուսի {0} մետր /վայրկյան քառակուսի + + պտույտ + {0} պտույտ + {0} պտույտ + + + ռադիան + {0} ռադիան + {0} ռադիան + + + աստիճան + {0} աստիճան + {0} աստիճան + արկրոպե {0} արկրոպե @@ -4971,31 +5226,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0} արկվայրկյան {0} արկվայրկյան - - աստիճան - {0} աստիճան - {0} աստիճան - - - ռադիան - {0} ռադիան - {0} ռադիան - - - ակր - {0} ակր - {0} ակր + + քառակուսի կիլոմետր + {0} քառակուսի կիլոմետր + {0} քառակուսի կիլոմետր հեկտար {0} հեկտար {0} հեկտար + + քառակուսի մետր + {0} քառակուսի մետր + {0} քառակուսի մետր + քառակուսի սանտիմետր {0} քառակուսի սանտիմետր {0} քառակուսի սանտիմետր + + քառակուսի մղոն + {0} քառակուսի մղոն + {0} քառակուսի մղոն + + + ակր + {0} ակր + {0} ակր + + + քառակուսի յարդ + {0} քառակուսի յարդ + {0} քառակուսի յարդ + քառակուսի ֆուտ {0} քառակուսի ֆուտ @@ -5006,160 +5271,165 @@ For terms of use, see http://www.unicode.org/copyright.html {0} քառակուսի դյույմ {0} քառակուսի դյույմ - - քառակուսի կիլոմետր - {0} քառակուսի կիլոմետր - {0} քառակուսի կիլոմետր - - - քառակուսի մետր - {0} քառակուսի մետր - {0} քառակուսի մետր - - - քառակուսի մղոն - {0} քառակուսի մղոն - {0} քառակուսի մղոն - - - քառակուսի յարդ - {0} քառակուսի յարդ - {0} քառակուսի յարդ + + կարատ + {0} կարատ + {0} կարատ լիտր / կիլոմետր {0} լիտր / կիլոմետր {0} լիտր / կիլոմետր + + լիտրեր 100 կիլոմետրում + {0} լիտր 100 կիլոմետրում + {0} լիտր 100 կիլոմետրում + մղոն / գալոն {0} մղոն / գալոն {0} մղոն / գալոն - - բիթ - {0} բիթ - {0} բիթ - - - բայթ - {0} բայթ - {0} բայթ - - - գեգաբիթ - {0} գեգաբիթ - {0} գեգաբիթ - - - գեգաբայթ - {0} գեգաբայթ - {0} գեգաբայթ - - - կիլոբիթ - {0} կիլոբիթ - {0} կիլոբիթ - - - կիլոբայթ - {0} կիլոբայթ - {0} կիլոբայթ - - - մեգաբիթ - {0} մեգաբիթ - {0} մեգաբիթ - - - մեգաբայթ - {0} մեգաբայթ - {0} մեգաբայթ - - - տերաբիթ - {0} տերաբիթ - {0} տերաբիթ - - տերաբայթ + տերաբայթեր {0} տերաբայթ {0} տերաբայթ + + տերաբիթեր + {0} տերաբիթ + {0} տերաբիթ + + + գիգաբայթեր + {0} գիգաբայթ + {0} գիգաբայթ + + + գիգաբիթեր + {0} գիգաբիթ + {0} գիգաբիթ + + + մեգաբայթեր + {0} մեգաբայթ + {0} մեգաբայթ + + + մեգաբիթեր + {0} մեգաբիթ + {0} մեգաբիթ + + + կիլոբայթեր + {0} կիլոբայթ + {0} կիլոբայթ + + + կիլոբիթեր + {0} կիլոբիթ + {0} կիլոբիթ + + + բայթեր + {0} բայթ + {0} բայթ + + + բիթեր + {0} բիթ + {0} բիթ + + + դարեր + {0} դար + {0} դար + + + տարիներ + {0} տարի + {0} տարի + տարեկան {0} + + + ամիսներ + {0} ամիս + {0} ամիս + ամսական {0} + + + շաբաթներ + {0} շաբաթ + {0} շաբաթ + շաբաթական {0} + - օր + օրեր {0} օր {0} օր + օրական {0} - ժամ + ժամեր {0} ժամ {0} ժամ {0} ժամում - - միկրովայրկյան - {0} միկրովայրկյան - {0} միկրովայրկյան - - - միլիվայրկյան - {0} միլիվայրկյան - {0} միլիվայրկյան - - րոպե + րոպեներ {0} րոպե {0} րոպե - - - ամիս - {0} ամիս - {0} ամիս - - - նանովայրկյան - {0} նանովայրկյան - {0} նանովայրկյան + {0} րոպեում - վայրկյան + վայրկյաններ {0} վայրկյան {0} վայրկյան {0} վայրկյանում - - շաբաթ - {0} շաբաթ - {0} շաբաթ + + միլիվայրկյաններ + {0} միլիվայրկյան + {0} միլիվայրկյան - - տարի - {0} տարի - {0} տարի + + միկրովայրկյաններ + {0} միկրովայրկյան + {0} միկրովայրկյան + + + նանովայրկյաններ + {0} նանովայրկյան + {0} նանովայրկյան - ամպեր + ամպերներ {0} ամպեր {0} ամպեր - միլիամպեր + միլիամպերներ {0} միլիամպեր {0} միլիամպեր - օհմ + օհմեր {0} օհմ {0} օհմ - վոլտ + վոլտեր {0} վոլտ {0} վոլտ + + կիլոկալորիաներ + {0} կիլոկալորիա + {0} կիլոկալորիա + - կալորիա + կալորիաներ {0} կալորիա {0} կալորիա @@ -5168,226 +5438,211 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Կալորիա {0} Կալորիա - - ջոուլ - {0} ջոուլ - {0} ջոուլ - - - կիլոկալորիա - {0} կիլոկալորիա - {0} կիլոկալորիա - - կիլոջոուլ + կիլոջոուլներ {0} կիլոջոուլ {0} կիլոջոուլ + + ջոուլներ + {0} ջոուլ + {0} ջոուլ + կիլովատ / ժամ {0} կիլովատ / ժամ {0} կիլովատ / ժամ - գեգահերց - {0} գեգահերց - {0} գեգահերց - - - հերց - {0} հերց - {0} հերց - - - կիլոհերց - {0} կիլոհերց - {0} կիլոհերց + գիգահերցեր + {0} գիգահերց + {0} գիգահերց - մեգահերց + մեգահերցեր {0} մեգահերց {0} մեգահերց - - աստղագիտական միավոր - {0} աստղագիտական միավոր - {0} աստղագիտական միավոր + + կիլոհերցեր + {0} կիլոհերց + {0} կիլոհերց - - սանտիմետր - {0} սանտիմետր - {0} սանտիմետր + + հերցեր + {0} հերց + {0} հերց + + + կիլոմետրեր + {0} կիլոմետր + {0} կիլոմետր + + + մետրեր + {0} մետր + {0} մետր - դեցիմետր + դեցիմետրեր {0} դեցիմետր {0} դեցիմետր + + սանտիմետրեր + {0} սանտիմետր + {0} սանտիմետր + + + միլիմետրեր + {0} միլիմետր + {0} միլիմետր + + + միկրոմետրեր + {0} միկրոմետր + {0} միկրոմետր + + + նանոմետրեր + {0} նանոմետր + {0} նանոմետր + + + պիկոմետրեր + {0} պիկոմետր + {0} պիկոմետր + + + մղոններ + {0} մղոն + {0} մղոն + + + յարդեր + {0} յարդ + {0} յարդ + - ֆուտ + ֆուտեր {0} ֆուտ {0} ֆուտ - դյույմ + դյույմեր {0} դյույմ {0} դյույմ - - կիլոմետր - {0} կիլոմետր - {0} կիլոմետր - - - լուսային տարի - {0} լուսային տարի - {0} լուսային տարի - - - մետր - {0} մետր - {0} մետր - - - միկրոմետր - {0} միկրոմետր - {0} միկրոմետր - - - մղոն - {0} մղոն - {0} մղոն - - - միլիմետր - {0} միլիմետր - {0} միլիմետր - - - նանոմետր - {0} նանոմետր - {0} նանոմետր - - - ծովային մղոն - {0} ծովային մղոն - {0} ծովային մղոն - - պարսեկ + պարսեկներ {0} պարսեկ {0} պարսեկ - - պիկոմետր - {0} պիկոմետր - {0} պիկոմետր + + լուսատարիներ + {0} լուսատարի + {0} լուսատարի - - յարդ - {0} յարդ - {0} յարդ + + աստղագիտական միավորներ + {0} աստղագիտական միավոր + {0} աստղագիտական միավոր + + + ծովային մղոններ + {0} ծովային մղոն + {0} ծովային մղոն լյուքս {0} լյուքս {0} լյուքս - - կարատ - {0} կարատ - {0} կարատ - - - գրամ - {0} գրամ - {0} գրամ - - - կիլոգրամ - {0} կիլոգրամ - {0} կիլոգրամ - - մետրիկ տոննա + մետրիկ տոննաներ {0} մետրիկ տոննա {0} մետրիկ տոննա - - միկրոգրամ - {0} միկրոգրամ - {0} միկրոգրամ + + կիլոգրամներ + {0} կիլոգրամ + {0} կիլոգրամ + + + գրամներ + {0} գրամ + {0} գրամ - միլիգրամ + միլիգրամներ {0} միլիգրամ {0} միլիգրամ - - ունց - {0} ունց - {0} ունց + + միկրոգրամներ + {0} միկրոգրամ + {0} միկրոգրամ - - տրոյական ունց - {0} տրոյական ունց - {0} տրոյական ունց + + տոննաներ + {0} տոննա + {0} տոննա - ֆունտ + ֆունտեր {0} ֆունտ {0} ֆունտ - - տոննա - {0} տոննա - {0} տոննա + + ունցիաներ + {0} ունցիա + {0} ունցիա + + + տրոյական ունցիաներ + {0} տրոյական ունցիա + {0} տրոյական ունցիա + + + կարատներ + {0} կարատ + {0} կարատ գեգավատ {0} գեգավատ {0} գեգավատ + + մեգավատեր + {0} մեգավատ + {0} մեգավատ + + + կիլովատեր + {0} կիլովատ + {0} կիլովատ + + + վատեր + {0} վատ + {0} վատ + + + միլիվատեր + {0} միլիվատ + {0} միլիվատ + ձիաուժ {0} ձիաուժ {0} ձիաուժ - - կիլովատ - {0} կիլովատ - {0} կիլովատ - - - մեգավատ - {0} մեգավատ - {0} մեգավատ - - - միլիվատ - {0} միլիվատ - {0} միլիվատ - - - վատ - {0} վատ - {0} վատ - հեկտապասկալ {0} հեկտապասկալ {0} հեկտապասկալ - - դյույմ սնդիկի սյուն - {0} դյույմ սնդիկի սյուն - {0} դյույմ սնդիկի սյուն - - - միլիբար - {0} միլիբար - {0} միլիբար - միլիմետր սնդիկի սյուն {0} միլիմետր սնդիկի սյուն @@ -5398,28 +5653,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ֆունտ ըստ քառակուսի դյույմի {0} ֆունտ ըստ քառակուսի դյույմի - - կարատ - {0} կարատ - {0} կարատ + + դյույմ սնդիկի սյուն + {0} դյույմ սնդիկի սյուն + {0} դյույմ սնդիկի սյուն + + + միլիբար + {0} միլիբար + {0} միլիբար - կիլոմետր / ժամ - {0} կիլոմետր / ժամ - {0} կիլոմետր / ժամ + կիլոմետրեր ժամում + {0} կիլոմետր ժամում + {0} կիլոմետր ժամում - մետր / վայրկյան - {0} մետր / վայրկյան - {0} մետր / վայրկյան + մետրեր վայրկյանում + {0} մետր վայրկյանում + {0} մետր վայրկյանում - մղոն / ժամ - {0} մղոն / ժամ - {0} մղոն / ժամ + մղոններ ժամում + {0} մղոն ժամում + {0} մղոն ժամում + + + հանգույցներ + {0} հանգույց + {0} հանգույց + + + ° + {0}° + {0}° - աստիճան ըստ Ցելսիուսի + աստիճաններ ըստ Ցելսիուսի {0} աստիճան ըստ Ցելսիուսի {0} աստիճան ըստ Ցելսիուսի @@ -5433,31 +5703,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} աստիճան ըստ Կելվինի {0} աստիճան ըստ Կելվինի - - ակր ֆուտ - {0} ակր ֆուտ - {0} ակր ֆուտ - - - սանտիլիտր - {0} սանտիլիտր - {0} սանտիլիտր - - - խորանարդ սանտիմետր - {0} խորանարդ սանտիմետր - {0} խորանարդ սանտիմետր - - - խորանարդ ֆուտ - {0} խորանարդ ֆուտ - {0} խորանարդ ֆուտ - - - խորանարդ դյույմ - {0} խորանարդ դյույմ - {0} խորանարդ դյույմ - խորանարդ կիլոմետր {0} խորանարդ կիլոմետր @@ -5468,6 +5713,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} խորանարդ մետր {0} խորանարդ մետր + + խորանարդ սանտիմետր + {0} խորանարդ սանտիմետր + {0} խորանարդ սանտիմետր + խորանարդ մղոն {0} խորանարդ մղոն @@ -5478,56 +5728,81 @@ For terms of use, see http://www.unicode.org/copyright.html {0} խորանարդ յարդ {0} խորանարդ յարդ - - բաժակ - {0} բաժակ - {0} բաժակ + + խորանարդ ֆուտ + {0} խորանարդ ֆուտ + {0} խորանարդ ֆուտ + + + խորանարդ դյույմ + {0} խորանարդ դյույմ + {0} խորանարդ դյույմ + + + մեգալիտրեր + {0} մեգալիտր + {0} մեգալիտր + + + հեկտոլիտրեր + {0} հեկտոլիտր + {0} հեկտոլիտր + + + լիտրեր + {0} լիտր + {0} լիտր դեցիլիտր {0} դեցիլիտր {0} դեցիլիտր - - հեղուկ ունց - {0} հեղուկ ունց - {0} հեղուկ ունց + + սանտիլիտր + {0} սանտիլիտր + {0} սանտիլիտր + + + միլիլիտրեր + {0} միլիլիտր + {0} միլիլիտր + + + մետրիկ պինտեր + {0} մետրիկ պինտ + {0} մետրիկ պինտ + + + ակր ֆուտ + {0} ակր ֆուտ + {0} ակր ֆուտ գալոն {0} գալոն {0} գալոն - - հեկտոլիտր - {0} հեկտոլիտր - {0} հեկտոլիտր - - - լիտր - {0} լիտր - {0} լիտր - - - մեգալիտր - {0} մեգալիտր - {0} մեգալիտր - - - միլիլիտր - {0} միլիլիտր - {0} միլիլիտր - - - պինտ - {0} պինտ - {0} պինտ - քվարտ {0} քվարտ {0} քվարտ + + պինտեր + {0} պինտ + {0} պինտ + + + բաժակ + {0} բաժակ + {0} բաժակ + + + հեղուկ ունցիաներ + {0} հեղուկ ունցիա + {0} հեղուկ ունցիա + ճաշի գդալ {0} ճաշի գդալ @@ -5538,6 +5813,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} թեյի գդալ {0} թեյի գդալ + + {0}E + {0}N + {0}S + {0}W + @@ -5553,6 +5834,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} մ/վ² {0} մ/վ² + + պտ․ + {0} պտ․ + {0} պտ․ + + + ռադիան + {0} ռադ + {0} ռադ + + + աստիճան + {0} աստճ. + {0} աստճ. + արկր. {0} արկր. @@ -5563,31 +5859,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0} արկվրկ. {0} արկվրկ. - - աստիճան - {0} աստճ. - {0} աստճ. - - - ռադիան - {0} ռադ - {0} ռադ - - - ակր - {0} ակր - {0} ակր + + կմ² + {0} կմ² + {0} կմ² հեկտար {0} հա {0} հա + + մ² + {0} մ² + {0} մ² + քռ. սմ. {0} քռ. սմ. {0} քռ. սմ. + + քռ. մղ. + {0} քռ. մղ. + {0} քռ. մղ. + + + ակր + {0} ակր + {0} ակր + + + քռ. յդ. + {0} քռ. յդ. + {0} քռ. յդ. + քռ. ֆտ. {0} քռ. ֆտ. @@ -5598,138 +5904,138 @@ For terms of use, see http://www.unicode.org/copyright.html {0} քռ. դյմ. {0} քռ. դյմ. - - կմ² - {0} կմ² - {0} կմ² - - - մ² - {0} մ² - {0} մ² - - - քռ. մղ. - {0} քռ. մղ. - {0} քռ. մղ. - - - քռ. յդ. - {0} քռ. յդ. - {0} քռ. յդ. + + կար + {0} կար + {0} կար լ/կմ {0} լ/կմ {0} լ/կմ + + լ/100 կմ + {0} լ/100 կմ + {0} լ/100 կմ + մղ/գալ {0} մղ/գալ {0} մղ/գալ - - բիթ - {0} բիթ - {0} բիթ - - - բայթ - {0} բայթ - {0} բայթ - - - Գբ - {0} Գբ - {0} Գբ - - - ԳԲ - {0} ԳԲ - {0} ԳԲ - - - կբիթ - {0} կբիթ - {0} կբիթ - - - կԲ - {0} կԲ - {0} կԲ - - - Մբիթ - {0} Մբիթ - {0} Մբիթ - - - Մբայթ - {0} ՄԲ - {0} ՄԲ - - - Տբիթ - {0} Տբիթ - {0} Տբիթ - ՏԲ {0} ՏԲ {0} ՏԲ + + Տբիթ + {0} Տբիթ + {0} Տբիթ + + + ԳԲ + {0} ԳԲ + {0} ԳԲ + + + Գբիթ + {0} Գբիթ + {0} Գբիթ + + + ՄԲ + {0} ՄԲ + {0} ՄԲ + + + Մբիթ + {0} Մբիթ + {0} Մբիթ + + + կԲ + {0} կԲ + {0} կԲ + + + Կբիթ + {0} Կբիթ + {0} Կբիթ + + + Բ + {0} Բ + {0} Բ + + + բիթ + {0} բիթ + {0} բիթ + + + դ․ + {0} դ․ + {0} դ․ + + + տ + {0} տ + {0} տ + {0}/տ + + + ամս + {0} ամս + {0} ամս + {0}/ամս + + + շբթ + {0} շբթ + {0} շբթ + {0}/շբթ + օր {0} օր {0} օր + {0}/օր - ժամ - {0} ժ. - {0} ժ. + ժ + {0} ժ + {0} ժ {0}/ժ + + ր + {0} ր + {0} ր + {0}/ր + + + վրկ + {0} վրկ + {0} վրկ + {0}/վրկ + + + մվ + {0} մվ + {0} մվ + մկվ {0} մկվ {0} մկվ - - մվ - {0} մվ - {0}մվ - - - րոպե - {0} րպ. - {0} րպ. - - - ամիս - {0} ամս - {0} ամս - նվ {0} նվ {0} նվ - - վրկ - {0} վրկ - {0} վրկ - {0}/վ - - - շաբաթ - {0} շբթ. - {0} շբթ. - - - տարի - {0} տր. - {0} տր. - Ա {0} Ա @@ -5741,7 +6047,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} մԱ - Օհմ + Ω {0} Ω {0} Ω @@ -5750,6 +6056,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Վ {0} Վ + + կկալ + {0} կկալ + {0} կկալ + կալ {0} կալ @@ -5760,21 +6071,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Կալ {0} Կալ - - Ջ - {0} Ջ - {0} Ջ - - - կկալ - {0} կկալ - {0} կկալ - կՋ {0} կՋ {0} կՋ + + Ջ + {0} Ջ + {0} Ջ + կՎտ/Ժ {0} կՎտ/Ժ @@ -5785,201 +6091,197 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ԳՀց {0} ԳՀց - - Հց - {0} Հց - {0} Հց + + ՄՀց + {0} ՄՀց + {0} ՄՀց կՀց {0} կՀց {0} կՀց - - ՄՀց - {0} ՄՀց - {0} ՄՀց + + Հց + {0} Հց + {0} Հց - - ա.մ. - {0} ա.մ. - {0} ա.մ. + + կմ + {0} կմ + {0} կմ + {0}/կմ - - սմ - {0} սմ - {0} սմ + + մ + {0} մ + {0} մ + {0}/մ դմ {0} դմ {0} դմ - - ֆուտ - {0} ֆտ. - {0} ֆտ. - - - դյույմ - {0} դյմ. - {0} դյմ. - - - կմ - {0} կմ - {0} կմ - - - լուսատարի - {0} լ. տ. - {0} լ. տ. - - - մետր - {0} մ - {0} մ - - - մկմ - {0} մկմ - {0} մկմ - - - մղոն - {0} մղ - {0} մղ + + սմ + {0} սմ + {0} սմ + {0}/սմ մմ {0} մմ {0} մմ + + մկմ + {0} մկմ + {0} մկմ + նմ {0} նմ {0} նմ - - ծմղ - {0} ծմղ - {0} ծմղ - - - պարսեկ - {0} պկ - {0} պկ - պմ {0} պմ {0} պմ + + մղ + {0} մղ + {0} մղ + - յարդ - {0} յդ. - {0} յդ. + յդ + {0} յդ + {0} յդ + + + ֆտ + {0} ֆտ + {0} ֆտ + {0}/ֆտ + + + դյմ + {0} դյմ + {0} դյմ + {0}/դյմ + + + պկ + {0} պկ + {0} պկ + + + լ․տ․ + {0} լ.տ. + {0} լ.տ. + + + ա.մ. + {0} ա.մ. + {0} ա.մ. + + + ծմղ + {0} ծմղ + {0} ծմղ լք {0} լք {0} լք - - կարատ - {0} կտ. - {0} կտ. - - - գրամ - {0} գր - {0} գր - - - կիլոգրամ - {0} կգ - {0} կգ - մ.տ. {0} մ.տ. {0} մ.տ. - - մկգ - {0} մկգ - {0} մկգ + + կգ + {0} կգ + {0} կգ + + + գ + {0} գ + {0} գ մգ {0} մգ {0} մգ - - ունց - {0} ունց - {0} ունց - - - տր. ունց - {0} տր. ունց - {0} տր. ունց - - - ֆունտ - {0} ֆն. - {0} ֆն. + + մկգ + {0} մկգ + {0} մկգ տոննա {0} տ {0} տ + + ֆունտ + {0} ֆն. + {0} ֆն. + + + ունց․ + {0} ունց․ + {0} ունց․ + {0}/ունց․ + + + տր․ ունց․ + {0} տր. ունց․ + {0} տր. ունց․ + + + կարատ + {0} կտ. + {0} կտ. + ԳՎտ {0} ԳՎտ {0} ԳՎտ - - ձ/ու - {0} ձ/ու - {0} ձ/ու - - - կՎտ - {0} կՎտ - {0} կՎտ - ՄՎտ {0} ՄՎտ {0} ՄՎտ - - մՎտ - {0} մՎտ - {0} մՎտ + + կՎտ + {0} կՎտ + {0} կՎտ Վտ {0} Վտ {0} Վտ + + մՎտ + {0} մՎտ + {0} մՎտ + + + ձ/ու + {0} ձ/ու + {0} ձ/ու + հՊա {0} հՊա {0} հՊա - - դյույմ ս.ս. - {0} դյմ. ս.ս. - {0} դյմ. ս.ս. - - - միլիբար - {0} մբար - {0} մբար - մմ ս.ս. {0} մմ ս.ս. @@ -5990,30 +6292,45 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ֆ.ք.դյմ {0} ֆ.ք.դյմ - - կար - {0} կար - {0} կար + + դյույմ ս.ս. + {0} դյմ. ս.ս. + {0} դյմ. ս.ս. + + + միլիբար + {0} մբար + {0} մբար - կիլոմետր / ժամ + կմ/ժ {0} կմ/ժ {0} կմ/ժ - մետր / վայրկյան + մ/վ {0} մ/վ {0} մ/վ - մղոն/ժամ + մղ/ժ {0} մղ/ժ {0} մղ/ժ + + հնգ․ + {0} հնգ․ + {0} հնգ․ + + + ° + {0}° + {0}° + - աստ. ըստ Ցելսիուսի - {0}°C - {0}°C + °C + {0} °C + {0} °C աստ. Ֆարենհայթ @@ -6025,31 +6342,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ակր ֆտ. - {0} ակր ֆտ. - {0} ակր ֆտ. - - - սլ - {0} սլ - {0} սլ - - - սմ³ - {0} սմ³ - {0} սմ³ - - - ֆտ³ - {0} ֆտ³ - {0} ֆտ³ - - - դյմ³ - {0} դյմ³ - {0} դյմ³ - կմ³ {0} կմ³ @@ -6059,6 +6351,13 @@ For terms of use, see http://www.unicode.org/copyright.html մ³ {0} մ³ {0} մ³ + {0}/մ³ + + + սմ³ + {0} սմ³ + {0} սմ³ + {0}/սմ³ մղ³ @@ -6070,25 +6369,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} յդ³ {0} յդ³ - - բաժակ - {0} բ. - {0} բ. + + ֆտ³ + {0} ֆտ³ + {0} ֆտ³ - - դլ - {0} դլ - {0} դլ + + դյմ³ + {0} դյմ³ + {0} դյմ³ - - հղ. ունց - {0} հղ. ունց - {0} հղ. ունց - - - գալ. - {0} գալ. - {0} գալ. + + Մլ + {0} Մլ + {0} Մլ հլ @@ -6096,30 +6390,57 @@ For terms of use, see http://www.unicode.org/copyright.html {0} հլ - լիտր - {0} լ. - {0} լ. + լ + {0} լ + {0} լ + {0}/լ - - Մլ - {0} Մլ - {0} Մլ + + դլ + {0} դլ + {0} դլ + + + սլ + {0} սլ + {0} սլ մլ {0} մլ {0} մլ - - պտ. - {0} պտ. - {0} պտ. + + ակր ֆտ. + {0} ակր ֆտ. + {0} ակր ֆտ. + + + գալ. + {0} գալ. + {0} գալ. + {0}/գալ․ քտ. {0} քտ. {0} քտ. + + պնտ․ + {0} պնտ․ + {0} պնտ․ + + + բաժակ + {0} բ. + {0} բ. + + + հղ․ ունց․ + {0} հղ. ունց․ + {0} հղ. ունց․ + ճգ. {0} ճգ. @@ -6130,6 +6451,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} թգ. {0} թգ. + + {0}E + {0}N + {0}S + {0}W + @@ -6139,6 +6466,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}G {0}G + + {0}° + {0}° + {0}′ {0}′ @@ -6147,26 +6478,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0}ակր - {0}ակր + + {0} կմ² + {0} կմ² {0}հա {0}հա - - {0}ֆտ² - {0}ֆտ² - - - {0} կմ² - {0} կմ² - {0} մ² {0} մ² @@ -6175,76 +6494,73 @@ For terms of use, see http://www.unicode.org/copyright.html {0}մղ² {0}մղ² + + {0}ակր + {0}ակր + + + {0}ֆտ² + {0}ֆտ² + + + լ/100 կմ + {0} լ/100 կմ + {0} լ/100 կմ + + + տ + {0} տ + {0} տ + + + ա + {0} ա + {0} ա + + + շ + {0} շ + {0} շ + օր - {0}օ. - {0}օ. + {0} օր + {0} օր - ժամ - {0} ժ. - {0} ժ. + ժ + {0} ժ + {0} ժ + + + ր + {0} ր + {0} ր + + + վ + {0} վ + {0} վ մվ - {0}մվ - {0}մվ - - - ր. - {0} ր. - {0} ր. - - - ամս - {0} ա. - {0} ա. - - - վրկ - {0} վ. - {0} վ. - - - շբթ. - {0} շ. - {0} շ. - - - տր. - {0}տ. - {0}տ. - - - սմ - {0} սմ - {0} սմ - - - {0}′ - {0}′ - - - {0}″ - {0}″ + {0} մվ + {0} մվ կմ {0} կմ {0} կմ - - {0} լ. տ. - {0} լ. տ. - - մետր + մ {0} մ {0} մ - - {0} մղ - {0} մղ + + սմ + {0} սմ + {0} սմ մմ @@ -6255,31 +6571,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} պմ {0} պմ + + {0} մղ + {0} մղ + {0} յդ. {0} յդ. - - գրամ - {0} գր - {0} գր + + {0}′ + {0}′ + + + {0}″ + {0}″ + + + {0} լ. տ. + {0} լ. տ. կգ - {0}կգ - {0}կգ + {0} կգ + {0} կգ - - {0} ունց - {0} ունց + + գ + {0} գ + {0} գ {0}# {0}# - - {0}ձ/ու - {0}ձ/ու + + {0} ունց + {0} ունց {0}կՎ @@ -6289,6 +6617,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}Վ {0}Վ + + {0}ձ/ու + {0}ձ/ու + {0} հՊա {0} հՊա @@ -6303,8 +6635,8 @@ For terms of use, see http://www.unicode.org/copyright.html կմ/ժ - {0}կմ/ժ - {0}կմ/ժ + {0} կմ/ժ + {0} կմ/ժ {0}մ/վ @@ -6316,8 +6648,8 @@ For terms of use, see http://www.unicode.org/copyright.html °C - {0}°C - {0}°C + {0} °C + {0} °C {0}°F @@ -6332,10 +6664,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}մղ³ - լիտր - {0}լ. - {0}լ. + լ + {0} լ + {0} լ + + {0}E + {0}N + {0}S + {0}W + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hy_AM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hy_AM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hy_AM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hy_AM.xml index 7270fc77f58..1cf981d10e8 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/hy_AM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/hy_AM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/id.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/id.xml similarity index 87% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/id.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/id.xml index 59c4c36d321..9a1ee799a10 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/id.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/id.xml @@ -1,13 +1,12 @@ - - - + @@ -56,7 +55,6 @@ For terms of use, see http://www.unicode.org/copyright.html Aymara Azerbaijan Azeri - Azerbaijani Selatan Bashkir Baluchi Bali @@ -71,7 +69,8 @@ For terms of use, see http://www.unicode.org/copyright.html Betawi Bena Bafut - Bulgar + Bulgaria + Balochi Barat Bhojpuri Bislama Bikol @@ -125,8 +124,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dargwa Taita Jerman - Jerman Austria - Jerman Tinggi Swiss + Jerman Tinggi (Swiss) Delaware Slave Dogrib @@ -149,17 +147,13 @@ For terms of use, see http://www.unicode.org/copyright.html Yunani Elam Inggris - Inggris Australia - Inggris Kanada - Inggris Inggris - Inggris U.K. - Inggris Amerika - Inggris A.S. + Inggris (U.K.) + Inggris (A.S.) Inggris Abad Pertengahan Esperanto Spanyol Spanyol Amerika Latin - Spanyol Eropa + Spanyol (Eropa) Spanyol Meksiko Esti Bask @@ -174,8 +168,6 @@ For terms of use, see http://www.unicode.org/copyright.html Faro Fon Prancis - Prancis Kanada - Prancis Swiss Prancis Abad Pertengahan Prancis Kuno Arpitan @@ -201,7 +193,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gothik Grebo Yunani Kuno - Jerman Swiss + Jerman (Swiss) Gujarati Gusii Manx @@ -226,7 +218,7 @@ For terms of use, see http://www.unicode.org/copyright.html Interlingua Iban Ibibio - Bahasa Indonesia + Indonesia Interlingue Igbo Sichuan Yi @@ -306,6 +298,7 @@ For terms of use, see http://www.unicode.org/copyright.html Lao Mongo Lozi + Luri Utara Lituavi Luba-Katanga Luba-Lulua @@ -332,7 +325,7 @@ For terms of use, see http://www.unicode.org/copyright.html Malagasi Irlandia Abad Pertengahan Makhuwa-Meetto - meta’ + meta’ Marshall Maori Mikmak @@ -353,9 +346,10 @@ For terms of use, see http://www.unicode.org/copyright.html Miranda Marwari Mentawai - Burma + Myanmar Myene Eryza + Mazanderani Nauru Neapolitan Nama @@ -368,7 +362,6 @@ For terms of use, see http://www.unicode.org/copyright.html Nias Niuea Belanda - Flemish Kwasio Nynorsk Norwegia Ngiemboon @@ -409,8 +402,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pashto Pushto Portugis - Portugis Brasil - Portugis Eropa + Portugis (Eropa) Quechua Kʼicheʼ Rajasthani @@ -441,6 +433,7 @@ For terms of use, see http://www.unicode.org/copyright.html Sisilia Skotlandia Sindhi + Kurdi Selatan Sami Utara Seneca Sena @@ -481,8 +474,8 @@ For terms of use, see http://www.unicode.org/copyright.html Sumeria Swedia Swahili + Kongo Swahili Komoria - Kongo Swahili Suriah Klasik Suriah Silesia @@ -543,6 +536,7 @@ For terms of use, see http://www.unicode.org/copyright.html Walamo Warai Washo + Warlpiri Wolof Kalmuk Xhosa @@ -559,9 +553,9 @@ For terms of use, see http://www.unicode.org/copyright.html Blissymbol Zenaga Tamazight Maroko Standar - China - China (Aksara Sederhana) - China (Aksara Tradisional) + Tionghoa + Tionghoa (Aksara Sederhana) + Tionghoa (Aksara Tradisional) Zulu Zuni Tidak ada konten linguistik @@ -739,30 +733,30 @@ For terms of use, see http://www.unicode.org/copyright.html Amerika Utara Amerika Selatan Oseania - Afrika Barat + Afrika Bagian Barat Amerika Tengah - Afrika Timur - Afrika Utara - Afrika Tengah + Afrika Bagian Timur + Afrika Bagian Utara + Afrika Bagian Tengah Afrika Bagian Selatan Amerika Amerika Bagian Utara Kepulauan Karibia - Asia Timur - Asia Selatan + Asia Bagian Timur + Asia Bagian Selatan Asia Tenggara - Eropa Selatan + Eropa Bagian Selatan Australasia Melanesia Wilayah Mikronesia Polinesia Asia Asia Tengah - Asia Barat + Asia Bagian Barat Eropa - Eropa Timur - Eropa Utara - Eropa Barat + Eropa Bagian Timur + Eropa Bagian Utara + Eropa Bagian Barat Amerika Latin Pulau Ascension Andorra @@ -772,7 +766,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antilla Belanda Angola Antarktika Argentina @@ -816,7 +809,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kepulauan Cook Cile Kamerun - China + Tiongkok Kolombia Pulau Clipperton Kosta Rika @@ -869,7 +862,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guam Guinea-Bissau Guyana - Hong Kong SAR China + Hong Kong SAR Tiongkok Hong Kong Pulau Heard dan Kepulauan McDonald Honduras @@ -925,7 +918,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mali Myanmar (Burma) Mongolia - Makau SAR China + Makau SAR Tiongkok Makau Kepulauan Mariana Utara Martinik @@ -1101,11 +1094,14 @@ For terms of use, see http://www.unicode.org/copyright.html Pengurutan Huruf Besar/Huruf Kecil Penyortiran Peka Huruf Besar Penyortiran Kana - Urutan Sortir + Aturan Pengurutan Penyortiran Dinormalisasi Penyortiran Numerik Kekuatan Penyortiran Mata Uang + Siklus Jam (12 vs 24) + Gaya Pemisah Baris + Sistem Pengukuran Angka Zona Waktu Varian Lokal @@ -1113,112 +1109,122 @@ For terms of use, see http://www.unicode.org/copyright.html Penggunaan Pribadi - Angka Arab Timur - Angka Arab Timur Diperluas - Angka Armenia - Angka Huruf Kecil Armenia - Angka Bali - Angka Bengali - Urutan Sortir China Tradisional - Big5 - Kalender Buddha - Angka Cham - Kalender China - Kalender Koptik - Kalender Dangi - Angka Devanagari - Urutan Sortir Kamus - Urutan Sortir Unicode Default - Aturan Pengurutan Eropa - Angka Etiopia - Kalender Etiopia - Kalender Amete Alem Etiopia - Angka Finansial - Angka Lebar Penuh - Urutan Sortir China Aks. Sederhana - GB2312 - Angka Georgia - Kalender Gregorian - Angka Yunani - Angka Yunani Huruf Kecil - Angka Gujarati - Angka Gurmukhi - Angka Desimal China - Angka China Sederhana - Angka Keuangan China Sederhana - Angka China Tradisional - Angka Keuangan China Tradisional - Angka Ibrani - Kalender Ibrani - Sortir Semua - Kalender Nasional India - Kalender Islam - Kalender Sipil Islam - Kalender Islam (Arab Saudi, penglihatan) - Kalender ISO-8601 - Kalender Jepang - Angka Jawa - Angka Jepang - Angka Keuangan Jepang - Angka Kayah Li - Angka Khmer - Angka Kannada - Angka Tai Tham Hora - Angka Tai Tham Tham - Angka Laos - Angka Latin - Angka Lepcha - Angka Limbu - Sortir Huruf Kecil Dahulu - Angka Malayalam - Angka Mongolia - Angka Meetei Mayek - Angka Myanmar - Angka Myanmar Shan - Digit Asli - Angka N’Ko - Sortir Aksen Secara Normal - Sortir Urutan Ukuran Huruf Normal - Sortir Tidak Peka Huruf Besar - Sortir Kana Secara Terpisah - Sortir Tanpa Normalisasi - Sortir Digit Satu Per Satu - Sortir Simbol - Angka Ol Chiki - Angka Oriya - Kalender Persia - Urutan Sortir Buku Telepon - Urutan Sortir Fonetik - Urutan Sortir Pinyin - Sortir Huruf Dasar Saja - Sortir Aksen/Ukuran Huruf/Lebar/Kana - Urutan Sortir yang Diubah Bentuknya - Kalendar Minguo - Angka Romawi - Angka Huruf Kecil Romawi - Angka Saurashtra - Pencarian Tujuan Umum - Pencarian Menurut Konsonan Awal Hangul - Sortir Aksen - Sortir Abaikan Simbol - Urutan Sortir Standar - Urutan Sortir Guratan - Angka Sunda - Angka Tai Lue Baru - Angka Tamil Tradisional - Angka Tamil - Angka Telugu - Sortir Aksen/Ukuran Huruf/Lebar - Angka Thai - Angka Tibet - Urutan Sortir Tradisional - Angka Tradisional - Urutan Sortir Guratan Radikal - Sortir Huruf Besar Dahulu - Angka Vai - Sortir Aksen Terbalik - Sortir Peka Huruf Besar - Sortir Kana Secara Berbeda - Sortir Unicode Dinormalisasi - Sortir Digit Secara Numerik + Kalender Buddha + Kalender Tionghoa + Kalender Koptik + Kalender Dangi + Kalender Etiopia + Kalender Amete Alem Etiopia + Kalender Gregorian + Kalender Ibrani + Kalender Nasional India + Kalender Islam + Kalender Sipil Islam + Kalender Islam (Arab Saudi, penglihatan) + Kalender ISO-8601 + Kalender Jepang + Kalender Persia + Kalendar Minguo + Sortir Simbol + Sortir Abaikan Simbol + Sortir Aksen Secara Normal + Sortir Aksen Terbalik + Sortir Huruf Kecil Dahulu + Sortir Urutan Ukuran Huruf Normal + Sortir Huruf Besar Dahulu + Sortir Tidak Peka Huruf Besar + Sortir Peka Huruf Besar + Sortir Kana Secara Terpisah + Sortir Kana Secara Berbeda + Urutan Sortir Tionghoa Tradisional - Big5 + Urutan Sortir Kamus + Aturan Pengurutan Unicode Default + Aturan Pengurutan Eropa + Urutan Sortir Tionghoa Aks. Sederhana - GB2312 + Urutan Sortir Buku Telepon + Urutan Sortir Fonetik + Urutan Sortir Pinyin + Urutan Sortir yang Diubah Bentuknya + Pencarian Tujuan Umum + Pencarian Menurut Konsonan Awal Hangul + Aturan Pengurutan Standar + Urutan Sortir Guratan + Urutan Sortir Tradisional + Urutan Sortir Guratan Radikal + Sortir Tanpa Normalisasi + Sortir Unicode Dinormalisasi + Sortir Digit Satu Per Satu + Sortir Digit Secara Numerik + Sortir Semua + Sortir Huruf Dasar Saja + Sortir Aksen/Ukuran Huruf/Lebar/Kana + Sortir Aksen + Sortir Aksen/Ukuran Huruf/Lebar + Sistem 12 Jam (0–11) + Sistem 12 Jam (1–12) + Sistem 24 Jam (0–23) + Sistem 24 Jam (1–24) + Gaya Pemisah Baris Renggang + Gaya Pemisah Baris Normal + Gaya Pemisah Baris Rapat + Sistem Metrik + Sistem Pengukuran Imperial + Sistem Pengukuran A.S. + Angka Arab Timur + Angka Arab Timur Diperluas + Angka Armenia + Angka Huruf Kecil Armenia + Angka Bali + Angka Bengali + Angka Cham + Angka Devanagari + Angka Etiopia + Angka Finansial + Angka Lebar Penuh + Angka Georgia + Angka Yunani + Angka Yunani Huruf Kecil + Angka Gujarati + Angka Gurmukhi + Angka Desimal Tionghoa + Angka Tionghoa Sederhana + Angka Keuangan Tionghoa Sederhana + Angka Tionghoa Tradisional + Angka Keuangan Tionghoa Tradisional + Angka Ibrani + Angka Jawa + Angka Jepang + Angka Keuangan Jepang + Angka Kayah Li + Angka Khmer + Angka Kannada + Angka Tai Tham Hora + Angka Tai Tham Tham + Angka Laos + Angka Latin + Angka Lepcha + Angka Limbu + Angka Malayalam + Angka Mongolia + Angka Meetei Mayek + Angka Myanmar + Angka Myanmar Shan + Digit Asli + Angka N’Ko + Angka Ol Chiki + Angka Oriya + Angka Romawi + Angka Huruf Kecil Romawi + Angka Saurashtra + Angka Sunda + Angka Tai Lue Baru + Angka Tamil Tradisional + Angka Tamil + Angka Telugu + Angka Thai + Angka Tibet + Angka Tradisional + Angka Vai BGN @@ -1668,6 +1674,21 @@ For terms of use, see http://www.unicode.org/copyright.html embun beku turun mulai turun salju + + mulai musim semi + air hujan + serangga bangun + ekuinoks musim semi + hujan butiran + mulai musim panas + mulai musim gugur + akhir panas + embun putih + ekuinoks musim gugur + embun dingin + embun beku turun + mulai turun salju + @@ -1816,6 +1837,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E, d y G MMM y G @@ -1844,6 +1866,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y G d MMM y G E, d MMM y G + MMMM y G QQQ y G QQQQ y G @@ -2157,15 +2180,67 @@ For terms of use, see http://www.unicode.org/copyright.html - + + tengah malam AM tengah hari PM + pagi + siang + sore + malam + + + tengah malam + AM + tengah hari + PM + pagi + siang + sore + malam + tengah malam AM tengah hari PM + pagi + siang + sore + malam + + + + + tengah malam + AM + tengah hari + PM + pagi + siang + sore + malam + + + tengah malam + AM + tengah hari + PM + pagi + siang + sore + malam + + + tengah malam + AM + tengah hari + PM + pagi + siang + sore + malam @@ -2270,6 +2345,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH.mm h.mm.ss a HH.mm.ss + h.mm.ss. a v + HH.mm.ss v + h.mm a v + HH.mm v L d/M E, d/M @@ -2286,6 +2365,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y d MMM y E, d MMM y + MMMM y QQQ y QQQQ y @@ -2352,7 +2432,7 @@ For terms of use, see http://www.unicode.org/copyright.html E, d MMM – E, d MMM - y–y + y – y M/y – M/y @@ -2729,6 +2809,243 @@ For terms of use, see http://www.unicode.org/copyright.html + + + Taika (645–650) + Hakuchi (650–671) + Hakuhō (672–686) + Shuchō (686–701) + Taihō (701–704) + Keiun (704–708) + Wadō (708–715) + Reiki (715–717) + Yōrō (717–724) + Jinki (724–729) + Tempyō (729–749) + Tempyō-kampō (749-749) + Tempyō-shōhō (749-757) + Tempyō-hōji (757-765) + Temphō-jingo (765-767) + Jingo-keiun (767-770) + Hōki (770–780) + Ten-ō (781-782) + Enryaku (782–806) + Daidō (806–810) + Kōnin (810–824) + Tenchō (824–834) + Jōwa (834–848) + Kajō (848–851) + Ninju (851–854) + Saiko (854–857) + Tennan (857–859) + Jōgan (859–877) + Genkei (877–885) + Ninna (885–889) + Kampyō (889–898) + Shōtai (898–901) + Engi (901–923) + Enchō (923–931) + Shōhei (931–938) + Tengyō (938–947) + Tenryaku (947–957) + Tentoku (957–961) + Ōwa (961–964) + Kōhō (964–968) + Anna (968–970) + Tenroku (970–973) + Ten-en (973-976) + Jōgen (976–978) + Tengen (978–983) + Eikan (983–985) + Kanna (985–987) + Ei-en (987-989) + Eiso (989–990) + Shōryaku (990–995) + Chōtoku (995–999) + Chōhō (999–1004) + Kankō (1004–1012) + Chōwa (1012–1017) + Kannin (1017–1021) + Jian (1021–1024) + Manju (1024–1028) + Chōgen (1028–1037) + Chōryaku (1037–1040) + Chōkyū (1040–1044) + Kantoku (1044–1046) + Eishō (1046–1053) + Tengi (1053–1058) + Kōhei (1058–1065) + Jiryaku (1065–1069) + Enkyū (1069–1074) + Shōho (1074–1077) + Shōryaku (1077–1081) + Eiho (1081–1084) + Ōtoku (1084–1087) + Kanji (1087–1094) + Kaho (1094–1096) + Eichō (1096–1097) + Shōtoku (1097–1099) + Kōwa (1099–1104) + Chōji (1104–1106) + Kashō (1106–1108) + Tennin (1108–1110) + Ten-ei (1110-1113) + Eikyū (1113–1118) + Gen-ei (1118-1120) + Hoan (1120–1124) + Tenji (1124–1126) + Daiji (1126–1131) + Tenshō (1131–1132) + Chōshō (1132–1135) + Hoen (1135–1141) + Eiji (1141–1142) + Kōji (1142–1144) + Tenyō (1144–1145) + Kyūan (1145–1151) + Ninpei (1151–1154) + Kyūju (1154–1156) + Hogen (1156–1159) + Heiji (1159–1160) + Eiryaku (1160–1161) + Ōho (1161–1163) + Chōkan (1163–1165) + Eiman (1165–1166) + Nin-an (1166-1169) + Kaō (1169–1171) + Shōan (1171–1175) + Angen (1175–1177) + Jishō (1177–1181) + Yōwa (1181–1182) + Juei (1182–1184) + Genryuku (1184–1185) + Bunji (1185–1190) + Kenkyū (1190–1199) + Shōji (1199–1201) + Kennin (1201–1204) + Genkyū (1204–1206) + Ken-ei (1206-1207) + Shōgen (1207–1211) + Kenryaku (1211–1213) + Kenpō (1213–1219) + Shōkyū (1219–1222) + Jōō (1222–1224) + Gennin (1224–1225) + Karoku (1225–1227) + Antei (1227–1229) + Kanki (1229–1232) + Jōei (1232–1233) + Tempuku (1233–1234) + Bunryaku (1234–1235) + Katei (1235–1238) + Ryakunin (1238–1239) + En-ō (1239-1240) + Ninji (1240–1243) + Kangen (1243–1247) + Hōji (1247–1249) + Kenchō (1249–1256) + Kōgen (1256–1257) + Shōka (1257–1259) + Shōgen (1259–1260) + Bun-ō (1260-1261) + Kōchō (1261–1264) + Bun-ei (1264-1275) + Kenji (1275–1278) + Kōan (1278–1288) + Shōō (1288–1293) + Einin (1293–1299) + Shōan (1299–1302) + Kengen (1302–1303) + Kagen (1303–1306) + Tokuji (1306–1308) + Enkei (1308–1311) + Ōchō (1311–1312) + Shōwa (1312–1317) + Bunpō (1317–1319) + Genō (1319–1321) + Genkyō (1321–1324) + Shōchū (1324–1326) + Kareki (1326–1329) + Gentoku (1329–1331) + Genkō (1331–1334) + Kemmu (1334–1336) + Engen (1336–1340) + Kōkoku (1340–1346) + Shōhei (1346–1370) + Kentoku (1370–1372) + Tenju (1375–1379) + Kōryaku (1379–1381) + Kōwa (1381–1384) + Meitoku (1384–1387) + Kakei (1387–1389) + Kōō (1389–1390) + Meitoku (1390–1394) + Ōei (1394–1428) + Shōchō (1428–1429) + Eikyō (1429–1441) + Kakitsu (1441–1444) + Bun-an (1444-1449) + Kyōtoku (1452–1455) + Kōshō (1455–1457) + Chōroku (1457–1460) + Kanshō (1460–1466) + Bunshō (1466–1467) + Ōnin (1467–1469) + Bunmei (1469–1487) + Chōkyō (1487–1489) + Entoku (1489–1492) + Meiō (1492–1501) + Bunki (1501–1504) + Eishō (1504–1521) + Taiei (1521–1528) + Kyōroku (1528–1532) + Tenmon (1532–1555) + Kōji (1555–1558) + Eiroku (1558–1570) + Genki (1570–1573) + Tenshō (1573–1592) + Bunroku (1592–1596) + Keichō (1596–1615) + Genwa (1615–1624) + Kan-ei (1624-1644) + Shōho (1644–1648) + Keian (1648–1652) + Shōō (1652–1655) + Meiryaku (1655–1658) + Manji (1658–1661) + Kanbun (1661–1673) + Enpō (1673–1681) + Tenwa (1681–1684) + Jōkyō (1684–1688) + Genroku (1688–1704) + Hōei (1704–1711) + Shōtoku (1711–1716) + Kyōhō (1716–1736) + Genbun (1736–1741) + Kanpō (1741–1744) + Enkyō (1744–1748) + Kan-en (1748-1751) + Hōryaku (1751–1764) + Meiwa (1764–1772) + An-ei (1772-1781) + Tenmei (1781–1789) + Kansei (1789–1801) + Kyōwa (1801–1804) + Bunka (1804–1818) + Bunsei (1818–1830) + Tenpō (1830–1844) + Kōka (1844–1848) + Kaei (1848–1854) + Ansei (1854–1860) + Man-en (1860-1861) + Bunkyū (1861–1864) + Genji (1864–1865) + Keiō (1865–1868) + Meiji + Taishō + Shōwa + Heisei + + @@ -2956,10 +3273,10 @@ For terms of use, see http://www.unicode.org/copyright.html thn. - +{0} thn. + Dalam {0} tahun - -{0} thn. + {0} tahun yang lalu @@ -3023,7 +3340,7 @@ For terms of use, see http://www.unicode.org/copyright.html Minggu minggu lalu minggu ini - minggu berikutnya + minggu depan Dalam {0} minggu @@ -3762,7 +4079,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Musim Panas Inggris + Waktu Musim Panas Inggris London @@ -3855,7 +4172,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Musim Panas Irlandia + Waktu Standar Irlandia Dublin @@ -4153,6 +4470,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -4237,6 +4557,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Chita + Yakutsk @@ -4255,6 +4578,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolymsk + Kamchatka @@ -4572,7 +4898,7 @@ For terms of use, see http://www.unicode.org/copyright.html Waktu Alaska Waktu Standar Alaska - Waktu Terang Alaska + Waktu Musim Panas Alaska @@ -4593,28 +4919,28 @@ For terms of use, see http://www.unicode.org/copyright.html Waktu Tengah Waktu Standar Tengah - Waktu Terang Hari Tengah + Waktu Musim Panas Tengah Waktu Timur Waktu Standar Timur - Waktu Terang Hari Timur + Waktu Musim Panas Timur Waktu Pegunungan Waktu Standar Pegunungan - Waktu Terang Hari Pegunungan + Waktu Musim Panas Pegunungan Waktu Pasifik Waktu Standar Pasifik - Waktu Terang Hari Pasifik + Waktu Musim Panas Pasifik @@ -4649,7 +4975,7 @@ For terms of use, see http://www.unicode.org/copyright.html Waktu Arab Waktu Standar Arab - Waktu Terang Arab + Waktu Musim Panas Arab @@ -4677,35 +5003,35 @@ For terms of use, see http://www.unicode.org/copyright.html Waktu Atlantik Waktu Standar Atlantik - Waktu Terang Atlantik + Waktu Musim Panas Atlantik Waktu Tengah Australia Waktu Standar Tengah Australia - Waktu Terang Tengah Australia + Waktu Musim Panas Tengah Australia Waktu Barat Tengah Australia Waktu Standar Barat Tengah Australia - Waktu Terang Barat Tengah Australia + Waktu Musim Panas Barat Tengah Australia Waktu Timur Australia Waktu Standar Timur Australia - Waktu Terang Timur Australia + Waktu Musim Panas Timur Australia - Waktu Australia Barat + Waktu Barat Australia Waktu Standar Barat Australia - Waktu Terang Barat Australia + Waktu Musim Panas Barat Australia @@ -4772,7 +5098,7 @@ For terms of use, see http://www.unicode.org/copyright.html Waktu Chatham Waktu Standar Chatham - Waktu Terang Chatham + Waktu Musim Panas Chatham @@ -4784,9 +5110,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Waktu China - Waktu Standar China - Waktu Terang China + Waktu Tiongkok + Waktu Standar Tiongkok + Waktu Terang Tiongkok @@ -4964,7 +5290,7 @@ For terms of use, see http://www.unicode.org/copyright.html Waktu Hawaii-Aleutian Waktu Standar Hawaii-Aleutian - Waktu Terang Hawaii-Aleutian + Waktu Musim Panas Hawaii-Aleutian @@ -5103,7 +5429,7 @@ For terms of use, see http://www.unicode.org/copyright.html Waktu Lord Howe Waktu Standar Lord Howe - Waktu Terang Lord Howe + Waktu Musim Panas Lord Howe @@ -5211,14 +5537,14 @@ For terms of use, see http://www.unicode.org/copyright.html Waktu Selandia Baru Waktu Standar Selandia Baru - Waktu Terang Selandia Baru + Waktu Musim Panas Selandia Baru Waktu Newfoundland Waktu Standar Newfoundland - Waktu Siang Hari Newfoundland + Waktu Musim Panas Newfoundland @@ -5520,7 +5846,7 @@ For terms of use, see http://www.unicode.org/copyright.html NaN - . + . @@ -5584,6 +5910,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00 + + + ¤0 + ¤00 rb + ¤000 rb + ¤0 jt + ¤00 jt + ¤000 jt + ¤0 M + ¤00 M + ¤000 M + ¤0 T + ¤00 T + ¤000 T + + {0} {1} @@ -5625,6 +5967,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kwanza Angola Kwanza Angola AOA + Kz Kwanza Angola (1977–1991) @@ -5700,6 +6043,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mark Konvertibel Bosnia-Herzegovina Mark Konvertibel Bosnia-Herzegovina BAM + KM Dinar Baru Bosnia-Herzegovina (1994–1997) @@ -5774,6 +6118,7 @@ For terms of use, see http://www.unicode.org/copyright.html Boliviano Boliviano BOB + Bs Boliviano Bolivia (1863–1963) @@ -5843,6 +6188,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pula Botswana Pula Botswana BWP + P Rubel Baru Belarus (1994–1999) @@ -5900,8 +6246,8 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Yuan China - Yuan China + Yuan Tiongkok + Yuan Tiongkok CN¥ ¥ @@ -5934,6 +6280,7 @@ For terms of use, see http://www.unicode.org/copyright.html Peso Konvertibel Kuba Peso Konvertibel Kuba CUC + $ Peso Kuba @@ -5954,6 +6301,7 @@ For terms of use, see http://www.unicode.org/copyright.html Koruna Cheska Koruna Cheska CZK + Mark Jerman Timur @@ -5972,6 +6320,7 @@ For terms of use, see http://www.unicode.org/copyright.html Krone Denmark Krone Denmark DKK + kr Peso Dominika @@ -6000,6 +6349,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pound Mesir Pound Mesir EGP + Nakfa Eritrea @@ -6043,6 +6393,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pound Kepulauan Falkland Pound Kepulauan Falkland FKP + £ Franc Prancis @@ -6088,6 +6439,7 @@ For terms of use, see http://www.unicode.org/copyright.html Franc Guinea Franc Guinea GNF + FG Syli Guinea @@ -6105,6 +6457,7 @@ For terms of use, see http://www.unicode.org/copyright.html Quetzal Guatemala Quetzal Guatemala GTQ + Q Escudo Guinea Portugal @@ -6130,6 +6483,7 @@ For terms of use, see http://www.unicode.org/copyright.html Lempira Honduras Lempira Honduras HNL + L Dinar Kroasia @@ -6139,6 +6493,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kuna Kroasia Kuna Kroasia HRK + kn Gourde Haiti @@ -6149,11 +6504,13 @@ For terms of use, see http://www.unicode.org/copyright.html Forint Hungaria Forint Hungaria HUF + Ft Rupiah Indonesia Rupiah Indonesia Rp + Rp Pound Irlandia @@ -6197,6 +6554,7 @@ For terms of use, see http://www.unicode.org/copyright.html Krona Islandia Krona Islandia ISK + kr Lira Italia @@ -6239,11 +6597,13 @@ For terms of use, see http://www.unicode.org/copyright.html Franc Komoro Franc Komoro KMF + CF Won Korea Utara Won Korea Utara KPW + Hwan Korea Selatan (1953–1962) @@ -6288,11 +6648,13 @@ For terms of use, see http://www.unicode.org/copyright.html Pound Lebanon Pound Lebanon LBP + Rupee Sri Lanka Rupee Sri Lanka LKR + Rs Dolar Liberia @@ -6365,6 +6727,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ariary Madagaskar Ariary Madagaskar MGA + Ar Franc Malagasi @@ -6388,6 +6751,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kyat Myanmar Kyat Myanmar MMK + K Tugrik Mongolia @@ -6417,6 +6781,7 @@ For terms of use, see http://www.unicode.org/copyright.html Rupee Mauritius Rupee Mauritius MUR + Rs Rufiyaa Maladewa (1947–1981) @@ -6451,6 +6816,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ringgit Malaysia Ringgit Malaysia MYR + RM Escudo Mozambik @@ -6487,6 +6853,7 @@ For terms of use, see http://www.unicode.org/copyright.html Cordoba Nikaragua Cordoba Nikaragua NIO + C$ Guilder Belanda @@ -6496,11 +6863,13 @@ For terms of use, see http://www.unicode.org/copyright.html Krone Norwegia Krone Norwegia NOK + kr Rupee Nepal Rupee Nepal NPR + Rs Dolar Selandia Baru @@ -6547,11 +6916,13 @@ For terms of use, see http://www.unicode.org/copyright.html Rupee Pakistan Rupee Pakistan PKR + Rs Polandia Zloty Polandia Zloty PLN + Zloty Polandia (1950–1995) @@ -6596,6 +6967,7 @@ For terms of use, see http://www.unicode.org/copyright.html Rubel Rusia Rubel Rusia RUB + Rubel Rusia (1991–1998) @@ -6606,6 +6978,7 @@ For terms of use, see http://www.unicode.org/copyright.html Franc Rwanda Franc Rwanda RWF + RF Riyal Arab Saudi @@ -6642,6 +7015,7 @@ For terms of use, see http://www.unicode.org/copyright.html Krona Swedia Krona Swedia SEK + kr Dolar Singapura @@ -6653,6 +7027,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pound Saint Helena Pound Saint Helena SHP + £ Tolar Slovenia @@ -6692,6 +7067,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dobra Sao Tome dan Principe Dobra Sao Tome dan Principe STD + Db Rubel Soviet @@ -6705,6 +7081,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pound Suriah Pound Suriah SYP + £ Lilangeni Swaziland @@ -6715,6 +7092,7 @@ For terms of use, see http://www.unicode.org/copyright.html Baht Thailand Baht Thailand ฿ + ฿ Rubel Tajikistan @@ -6744,6 +7122,7 @@ For terms of use, see http://www.unicode.org/copyright.html Paʻanga Tonga Paʻanga Tonga TOP + T$ Escudo Timor @@ -6758,7 +7137,8 @@ For terms of use, see http://www.unicode.org/copyright.html Lira Turki Lira Turki TRY - + + TL Dolar Trinidad dan Tobago @@ -6823,7 +7203,7 @@ For terms of use, see http://www.unicode.org/copyright.html Peso Uruguay Peso Uruguay - $U + UYU $ @@ -6840,6 +7220,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bolivar Venezuela Bolivar Venezuela VEF + Bs Dong Vietnam @@ -6895,6 +7276,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dolar Karibia Timur Dolar Karibia Timur EC$ + $ Hak Khusus Menggambar @@ -6979,6 +7361,7 @@ For terms of use, see http://www.unicode.org/copyright.html Rand Afrika Selatan Rand Afrika Selatan ZAR + R Kwacha Zambia (1968–2012) @@ -6989,6 +7372,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kwacha Zambia Kwacha Zambia ZMW + ZK Zaire Baru Zaire (1993–1998) @@ -7032,6 +7416,18 @@ For terms of use, see http://www.unicode.org/copyright.html meter per detik persegi {0} meter per detik persegi + + revolusi + {0} revolusi + + + radian + {0} radian + + + derajat + {0} derajat + menit busur {0} menit busur @@ -7040,25 +7436,35 @@ For terms of use, see http://www.unicode.org/copyright.html detik busur {0} detik busur - - derajat - {0} derajat - - - radian - {0} radian - - - acre - {0} acre + + kilometer persegi + {0} kilometer persegi hektar {0} hektar + + meter persegi + {0} meter persegi + {0} per meter persegi + sentimeter persegi {0} sentimeter persegi + {0} per sentimeter persegi + + + mil persegi + {0} mil persegi + + + acre + {0} acre + + + yard persegi + {0} yard persegi kaki persegi @@ -7067,112 +7473,114 @@ For terms of use, see http://www.unicode.org/copyright.html inci persegi {0} inci persegi + {0} per inci persegi - - kilometer persegi - {0} kilometer persegi - - - meter persegi - {0} meter persegi - - - mil persegi - {0} mil persegi - - - yard persegi - {0} yard persegi + + karat + {0} karat liter per kilometer {0} liter per kilometer + + liter per 100 kilometer + {0} liter per 100 kilometer + mil per galon {0} mil per galon - - bit - {0} bit - - - byte - {0} byte - - - gigabit - {0} gigabit - - - gigabyte - {0} gigabyte - - - kilobit - {0} kilobit - - - kilobyte - {0} kilobyte - - - megabit - {0} megabit - - - megabyte - {0} megabyte - - - terabit - {0} terabit - terabyte {0} terabyte + + terabit + {0} terabit + + + gigabyte + {0} gigabyte + + + gigabit + {0} gigabit + + + megabyte + {0} megabyte + + + megabit + {0} megabit + + + kilobyte + {0} kilobyte + + + kilobit + {0} kilobit + + + byte + {0} byte + + + bit + {0} bit + + + abad + {0} abad + + + tahun + {0} tahun + {0} per tahun + + + bulan + {0} bulan + {0} per bulan + + + minggu + {0} minggu + {0} per minggu + hari {0} hari + {0} per hari jam {0} jam {0} per jam - - mikrodetik - {0} mikrodetik - - - milidetik - {0} milidetik - menit {0} menit - - - bulan - {0} bulan - - - nanodetik - {0} nanodetik + {0} per menit detik {0} detik {0} per detik - - minggu - {0} minggu + + milidetik + {0} milidetik - - tahun - {0} tahun + + mikrodetik + {0} mikrodetik + + + nanodetik + {0} nanodetik ampere @@ -7190,6 +7598,10 @@ For terms of use, see http://www.unicode.org/copyright.html volt {0} volt + + kilokalori + {0} kilokalori + kalori {0} kalori @@ -7198,18 +7610,14 @@ For terms of use, see http://www.unicode.org/copyright.html Kalori {0} Kalori - - joule - {0} joule - - - kilokalori - {0} kilokalori - kilojoule {0} kilojoule + + joule + {0} joule + kilowatt-jam {0} kilowatt-jam @@ -7218,162 +7626,167 @@ For terms of use, see http://www.unicode.org/copyright.html gigahertz {0} gigahertz - - hertz - {0} hertz + + megahertz + {0} megahertz kilohertz {0} kilohertz - - megahertz - {0} megahertz + + hertz + {0} hertz - - satuan astronomi - {0} satuan astronomi + + kilometer + {0} kilometer + {0} per kilometer - - sentimeter - {0} sentimeter + + meter + {0} meter + {0} per meter desimeter {0} desimeter - - kaki - {0} kaki - - - inci - {0} inci - - - kilometer - {0} kilometer - - - tahun cahaya - {0} tahun cahaya - - - meter - {0} meter - - - mikrometer - {0} mikrometer - - - mil - {0} mil + + sentimeter + {0} sentimeter + {0} per sentimeter milimeter {0} milimeter + + mikrometer + {0} mikrometer + nanometer {0} nanometer - - mil laut - {0} mil laut - - - parsec - {0} parsec - pikometer {0} pikometer + + mil + {0} mil + yard {0} yard + + kaki + {0} kaki + {0} per kaki + + + inci + {0} inci + {0} per inci + + + parsec + {0} parsec + + + tahun cahaya + {0} tahun cahaya + + + satuan astronomi + {0} satuan astronomi + + + mil laut + {0} mil laut + + + mil skandinavia + {0} mil skandinavia + lux {0} lux - - karat - {0} karat - - - gram - {0} gram - - - kilogram - {0} kilogram - metrik ton {0} metrik ton - - mikrogram - {0} mikrogram + + kilogram + {0} kilogram + {0} per kilogram + + + gram + {0} gram + {0} per gram miligram {0} miligram - - ons - {0} ons - - - troy ons - {0} troy ons - - - pon - {0} pon + + mikrogram + {0} mikrogram ton {0} ton + + pon + {0} pon + {0} per pon + + + ons + {0} ons + {0} per ons + + + troy ons + {0} troy ons + + + karat + {0} karat + gigawatt {0} gigawatt - - daya kuda - {0} daya kuda - - - kilowatt - {0} kilowatt - megawatt {0} megawatt - - miliwatt - {0} miliwatt + + kilowatt + {0} kilowatt watt {0} watt + + miliwatt + {0} miliwatt + + + daya kuda + {0} daya kuda + hektopaskal {0} hektopaskal - - inci merkuri - {0} inci merkuri - - - milibar - {0} milibar - milimeter merkuri {0} milimeter merkuri @@ -7382,9 +7795,13 @@ For terms of use, see http://www.unicode.org/copyright.html pon per inci persegi {0} pon per inci persegi - - karat - {0} karat + + inci merkuri + {0} inci merkuri + + + milibar + {0} milibar kilometer per jam @@ -7398,6 +7815,14 @@ For terms of use, see http://www.unicode.org/copyright.html mil per jam {0} mil per jam + + knot + {0} knot + + + ° + {0}° + derajat Celsius {0} derajat Celsius @@ -7410,26 +7835,6 @@ For terms of use, see http://www.unicode.org/copyright.html kelvin {0} kelvin - - acre-feet - {0} acre-feet - - - sentiliter - {0} sentiliter - - - sentimeter kubik - {0} sentimeter kubik - - - kaki kubik - {0} kaki kubik - - - inci kubik - {0} inci kubik - kilometer kubik {0} kilometer kubik @@ -7437,6 +7842,12 @@ For terms of use, see http://www.unicode.org/copyright.html meter kubik {0} meter kubik + {0} per meter kubik + + + sentimeter kubik + {0} sentimeter kubik + {0} per sentimeter kubik mil kubik @@ -7446,21 +7857,17 @@ For terms of use, see http://www.unicode.org/copyright.html yard kubik {0} yard kubik - - cup - {0} cup + + kaki kubik + {0} kaki kubik - - desiliter - {0} desiliter + + inci kubik + {0} inci kubik - - fluid ounce - {0} fluid ounce - - - galon - {0} galon + + megaliter + {0} megaliter hektoliter @@ -7469,23 +7876,53 @@ For terms of use, see http://www.unicode.org/copyright.html liter {0} liter + {0} per liter - - megaliter - {0} megaliter + + desiliter + {0} desiliter + + + sentiliter + {0} sentiliter mililiter {0} mililiter - - pint - {0} pint + + metric pint + {0} metric pint + + + metric cup + {0} metric cup + + + acre-feet + {0} acre-feet + + + galon + {0} galon + {0} per galon quart {0} quart + + pint + {0} pint + + + cup + {0} cup + + + fluid ounce + {0} fluid ounce + sendok makan {0} sendok makan @@ -7494,6 +7931,12 @@ For terms of use, see http://www.unicode.org/copyright.html sendok teh {0} sendok teh + + {0}T + {0}U + {0}S + {0}B + @@ -7507,6 +7950,18 @@ For terms of use, see http://www.unicode.org/copyright.html m/s² {0} m/s² + + rev + {0} rev + + + radian + {0} rad + + + derajat + {0}° + mnt busur {0} mnt busur @@ -7515,25 +7970,35 @@ For terms of use, see http://www.unicode.org/copyright.html dtk busur {0} dtk busur - - derajat - {0}° - - - radian - {0} rad - - - acre - {0} ac + + km² + {0} km² hektar {0} ha + + meter² + {0} m² + {0} per m² + cm² {0} cm² + {0}/cm² + + + mil persegi + {0} mi² + + + acre + {0} ac + + + yard² + {0} yd² kaki persegi @@ -7542,112 +8007,114 @@ For terms of use, see http://www.unicode.org/copyright.html inci² {0} in² + {0}/in² - - km² - {0} km² - - - meter² - {0} m² - - - mil persegi - {0} mi² - - - yard² - {0} yd² + + karat + {0} kt L/km {0} L/km + + L/100km + {0} L/100km + mpg {0} mpg - - bit - {0} bit - - - byte - {0} byte - - - Gbit - {0} Gb - - - Gbyte - {0} GB - - - kbit - {0} kb - - - kByte - {0} kB - - - Mbit - {0} Mb - - - MByte - {0} MB - - - Tbit - {0} Tb - TByte {0} TB + + Tbit + {0} Tb + + + Gbyte + {0} GB + + + Gbit + {0} Gb + + + MByte + {0} MB + + + Mbit + {0} Mb + + + kByte + {0} kB + + + kbit + {0} kb + + + byte + {0} byte + + + bit + {0} bit + + + abad + {0} abad + + + tahun + {0} thn + {0}/thn + + + bulan + {0} bln + {0}/bln + + + minggu + {0} mgg + {0}/mgg + hari {0} hr + {0}/hr jam {0} j {0}/j - - μdtk - {0} μd - - - milidtk - {0} md - mnt {0} mnt - - - bulan - {0} bln - - - nanodtk - {0} ndtk + {0}/mnt dtk {0} dtk {0}/dtk - - minggu - {0} mgg + + milidtk + {0} md - - tahun - {0} thn + + μdtk + {0} μd + + + nanodtk + {0} ndtk amp @@ -7665,6 +8132,10 @@ For terms of use, see http://www.unicode.org/copyright.html volt {0} V + + kkal + {0} kkal + kal {0} kal @@ -7673,18 +8144,14 @@ For terms of use, see http://www.unicode.org/copyright.html Kal {0} Kal - - joule - {0} J - - - kkal - {0} kkal - kilojoule {0} kJ + + joule + {0} J + kW-jam {0} kWh @@ -7693,162 +8160,167 @@ For terms of use, see http://www.unicode.org/copyright.html GHz {0} GHz - - Hz - {0} Hz + + MHz + {0} MHz kHz {0} kHz - - MHz - {0} MHz + + Hz + {0} Hz - - sa - {0} sa + + km + {0} km + {0}/km - - cm - {0} cm + + meter + {0} m + {0}/m dm {0} dm - - kaki - {0} ft - - - inci - {0} in - - - km - {0} km - - - thn cahaya - {0} ly - - - meter - {0} m - - - µmeter - {0} µm - - - mil - {0} mi + + cm + {0} cm + {0}/cm mm {0} mm + + µmeter + {0} µm + nm {0} nm - - nmi - {0} nmi - - - parsec - {0} pc - pm {0} pm + + mil + {0} mi + yard {0} yd + + kaki + {0} ft + {0}/ft + + + inci + {0} in + {0}/in + + + parsec + {0} pc + + + thn cahaya + {0} ly + + + sa + {0} sa + + + nmi + {0} nmi + + + smi + {0} smi + lux {0} lx - - karat - {0} CD - - - gram - {0} g - - - kg - {0} kg - t {0} t - - µg - {0} µg + + kg + {0} kg + {0}/kg + + + gram + {0} g + {0}/g mg {0} mg - - ons - {0} oz - - - oz t - {0} oz t - - - pon - {0} lb + + µg + {0} µg ton {0} tn + + pon + {0} lb + {0}/lb + + + ons + {0} oz + {0}/oz + + + oz t + {0} oz t + + + karat + {0} CD + GW {0} GW - - hp - {0} hp - - - kW - {0} kW - MW {0} MW - - mW - {0} mW + + kW + {0} kW watt {0} W + + mW + {0} mW + + + hp + {0} hp + hPa {0} hPa - - inci merkuri - {0} inHg - - - mbar - {0} mbar - mm Hg {0} mm Hg @@ -7857,9 +8329,13 @@ For terms of use, see http://www.unicode.org/copyright.html psi {0} psi - - karat - {0} kt + + inci merkuri + {0} inHg + + + mbar + {0} mbar km/jam @@ -7873,6 +8349,14 @@ For terms of use, see http://www.unicode.org/copyright.html mi/h {0} mph + + kn + {0} kn + + + ° + {0}° + °C {0}°C @@ -7885,26 +8369,6 @@ For terms of use, see http://www.unicode.org/copyright.html K {0} K - - ac ft - {0} ac ft - - - cL - {0} cL - - - cm³ - {0} cm³ - - - ft³ - {0} ft³ - - - inci³ - {0} in³ - km³ {0} km³ @@ -7912,6 +8376,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0}/cm³ mi³ @@ -7921,21 +8391,17 @@ For terms of use, see http://www.unicode.org/copyright.html yard³ {0} yd³ - - cup - {0} c + + ft³ + {0} ft³ - - dL - {0} dL + + inci³ + {0} in³ - - fl oz - {0} fl oz - - - gal - {0} gal + + ML + {0} ML hL @@ -7944,23 +8410,53 @@ For terms of use, see http://www.unicode.org/copyright.html liter {0} l + {0}/l - - ML - {0} ML + + dL + {0} dL + + + cL + {0} cL mL {0} mL - - pint - {0} pt + + mpt + {0} mpt + + + mcup + {0} mc + + + ac ft + {0} ac ft + + + gal + {0} gal + {0}/gal qt {0} qt + + pint + {0} pt + + + cup + {0} c + + + fl oz + {0} fl oz + sdm {0} sdm @@ -7969,6 +8465,12 @@ For terms of use, see http://www.unicode.org/copyright.html sdt {0} sdt + + {0}T + {0}U + {0}S + {0}B + @@ -7977,33 +8479,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} g + + {0}° + {0}′ {0}″ - - {0}° - - - {0} ac + + {0} km² {0} ha - - {0} ft² - - - {0} km² - {0} m² {0} mi² + + {0} ac + + + {0} ft² + + + L/100km + {0}L/100km + + + thn + {0} thn + + + bulan + {0} bln + + + mgg + {0} mgg + hari {0} hr @@ -8012,53 +8530,29 @@ For terms of use, see http://www.unicode.org/copyright.html jam {0} j - - milidetik - {0} md - mnt {0} mnt - - bulan - {0} bln - dtk {0} dtk - - mgg - {0} mgg - - - thn - {0} thn - - - cm - {0} cm - - - {0} ft - - - {0}″ + + milidetik + {0} md km {0} km - - {0} ly - meter {0} m - - {0} mi + + cm + {0} cm mm @@ -8067,25 +8561,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm + + {0} mi + {0} yd - - gram - {0} g + + {0} ft + + + {0}″ + + + {0} ly kg {0} kg - - {0} oz + + gram + {0} g {0} lb - - {0} hp + + {0} oz {0} kW @@ -8093,6 +8596,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W + + {0} hp + {0} hPa @@ -8129,6 +8635,12 @@ For terms of use, see http://www.unicode.org/copyright.html liter {0} l + + {0}T + {0}U + {0}S + {0}B + h.mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/id_ID.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/id_ID.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/id_ID.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/id_ID.xml index 280fe4bab11..81d1bcc4b0f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/id_ID.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/id_ID.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ig.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ig.xml similarity index 89% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ig.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ig.xml index 5f782dd1eb2..65d3358567b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ig.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ig.xml @@ -1,13 +1,12 @@ - - - + @@ -202,6 +201,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + A.M. + P.M. + A.M. P.M. @@ -338,6 +341,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤00K + ¤000K + ¤0M + ¤00M + ¤000M + ¤0G + ¤00G + ¤000G + ¤0T + ¤00T + ¤000T + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ig_NG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ig_NG.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ig_NG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ig_NG.xml index cd1f7748d69..7dc5bfc914f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ig_NG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ig_NG.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ii.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ii.xml similarity index 78% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ii.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ii.xml index 0c8ebb09909..ce32af987ee 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ii.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ii.xml @@ -1,13 +1,12 @@ - - - + @@ -51,8 +50,8 @@ For terms of use, see http://www.unicode.org/copyright.html ꃅꄷꅉꀋꐚꌠ - ꄉꉻꃅꑍ - ꑳꌦꇂꑍꉖ + ꄉꉻꃅꑍ + ꑳꌦꇂꑍꉖ ꂰꌬꌠ @@ -148,6 +147,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + ꎸꄑ + ꁯꋒ + ꎸꄑ ꁯꋒ @@ -160,6 +163,28 @@ For terms of use, see http://www.unicode.org/copyright.html ꃅꋊꊂ + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + @@ -213,6 +238,24 @@ For terms of use, see http://www.unicode.org/copyright.html . , + + + + ¤ 0K + ¤ 00K + ¤ 000K + ¤ 0M + ¤ 00M + ¤ 000M + ¤ 0G + ¤ 00G + ¤ 000G + ¤ 0T + ¤ 00T + ¤ 000T + + + ¥ @@ -229,3 +272,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ii_CN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ii_CN.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ii_CN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ii_CN.xml index 8a30469b8ba..2522e05d40d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ii_CN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ii_CN.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/is.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/is.xml similarity index 88% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/is.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/is.xml index d358fafdf2b..b84a4809029 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/is.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/is.xml @@ -1,13 +1,12 @@ - - - + @@ -60,6 +59,7 @@ For terms of use, see http://www.unicode.org/copyright.html bemba bena búlgarska + vesturbalotsí bojpúrí bíslama bíkol @@ -135,11 +135,13 @@ For terms of use, see http://www.unicode.org/copyright.html áströlsk enska kanadísk enska bresk enska + enska (bresk) bandarísk enska + enska (BNA) miðenska esperantó spænska - rómanskamerísk spænska + rómönsk-amerísk spænska evrópsk spænska mexíkósk spænska eistneska @@ -280,6 +282,7 @@ For terms of use, see http://www.unicode.org/copyright.html laó mongó lozi + norðurlúrí litháíska lúbakatanga luba-lulua @@ -325,12 +328,14 @@ For terms of use, see http://www.unicode.org/copyright.html marvarí burmneska ersja + masanderaní nárúska napólíska nama norskt bókmál norður-ndebele lágþýska; lágsaxneska + lágsaxneska nepalska nevarí ndonga @@ -405,6 +410,7 @@ For terms of use, see http://www.unicode.org/copyright.html sikileyska skoska sindí + suðurkúrdíska norðursamíska sena selkúp @@ -440,8 +446,8 @@ For terms of use, see http://www.unicode.org/copyright.html súmerska sænska svahílí + Kongó-svahílí shimaoríska - Kongó-svahílí klassísk sýrlenska sýrlenska tamílska @@ -494,6 +500,7 @@ For terms of use, see http://www.unicode.org/copyright.html valamó varaí vasjó + varlpiri volof kalmúkska sósa @@ -658,7 +665,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angvilla Albanía Armenía - Hollensku Antillur Angóla Suðurskautslandið Argentína @@ -677,7 +683,7 @@ For terms of use, see http://www.unicode.org/copyright.html Barein Búrúndí Benín - Saint Barthélemy + Sankti Bartólómeusareyjar Bermúdaeyjar Brúnei Bólivía @@ -728,7 +734,7 @@ For terms of use, see http://www.unicode.org/copyright.html Eþíópía Evrópusambandið Finnland - Fídjieyjar + Fídjíeyjar Falklandseyjar Falklandseyjar (Malvinas) Míkrónesía @@ -802,7 +808,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mónakó Moldóva Svartfjallaland - Saint Martin + St. Martin Madagaskar Marshalleyjar Makedónía @@ -876,7 +882,7 @@ For terms of use, see http://www.unicode.org/copyright.html Suður-Súdan Saó Tóme og Prinsípe El Salvador - Sint Maarten + Sankti Martin Sýrland Svasíland Tristan da Cunha @@ -939,6 +945,9 @@ For terms of use, see http://www.unicode.org/copyright.html Talnaröðun Röðunarstyrkur Gjaldmiðill + Tímakerfi (12 eða 24) + Línuskipting + Mælingakerfi Tölur Tímabelti Landsstaðalsafbrigði @@ -946,96 +955,106 @@ For terms of use, see http://www.unicode.org/copyright.html Einkanotkun - Arabískar-indverskar tölur - Auknar arabískar-indverskar tölur - Armenskir tölustafir - Armenskar lágstafatölur - Bengalskar tölur - hefðbundin kínversk röðun - Big5 - Búddískt dagatal - Kínverskt dagatal - Koptískt tímatal - Dangi dagatal - Devanagari tölur - Orðabókarröð - Sjálfgefin Unicode-röðun - röðina fyrir fjöltyngi evrópskum skjölum - Eþíópískir tölustafir - Eþíópískt dagatal - Eþíópískt ‘amete alem’ tímatal - Viðskiptafræðileg töluorð - Tölur í fullri breidd - einfölduð kínversk röðun - GB2312 - Georgískir tölustafir - Gregorískt dagatal - Grískir tölustafir - Grískar lágstafatölur - Gujarati-tölur - Gurmukhi-tölur - Kínverskir tugatölustafir - Einfaldaðir kínverskir tölustafir - Einfaldaðar kínverskar fjármálatölur - Hefðbundnir kínverskir tölustafir - Hefðbundnar kínverskar fjármálatölur - Hebreskir tölustafir - Hebreskt dagatal - Raða öllu - indverskt dagatal - Íslamskt dagatal - Íslamskt borgaradagatal - ISO-8601 dagatal - Japanskt dagatal - Japanskir tölustafir - Japanskar fjármálatölur - Kmerískar tölur - Kannada-tölur - Lao-tölur - Vestrænar tölur - Raða lágstöfum fyrst - Malayalam-tölur - Mongólskar tölur - Mjanmarskar tölur - Upprunalegir tölustafir - Raða áherslum eðlilega - Raða eðlilega eftir hástöfum og lágstöfum - Raða óháð hástöfum og lágstöfum - Raða Kana sér - Raða án stöðlunar - Raða tölustöfum sér - Raða táknum - Oriya-tölur - Persneskt dagatal - Símaskráarröðun - Hljóðfræðileg röð - Pinyin-röðun - Raða aðeins grunnstöfum - Raða áherslum/hástaf eða lágstaf/breidd/Kana - Endurbætt röð - Minguo dagatal - Rómverskir tölustafir - Rómverskar lágstafatölur - Almenn leit - Leita eftir upphafssamhljóða í Hangul - Raða áherslum - Raða óháð táknum - Stöðluð röðun - Strikaröðun - Hefðbundnir tamílskir tölustafir - Tamílskar tölur - Telúgú-tölur - Raða áherslum/hástaf eða lágstaf/breidd - Tælenskar tölur - Tíbeskir tölustafir - Hefðbundin - Hefðbundin tölutákn - Röðun eftir grunnstrikum - Raða hástöfum fyrst - Vai-tölustafir - Raða öfugt eftir áherslum - Raða stafrétt - Raða Kana öðruvísi - Raða Unicode með stöðluðum hætti - Raða tölustöfum tölulega + Búddískt dagatal + Kínverskt dagatal + Koptískt tímatal + Dangi dagatal + Eþíópískt dagatal + Eþíópískt ‘amete alem’ tímatal + Gregorískt dagatal + Hebreskt dagatal + indverskt dagatal + Íslamskt dagatal + Íslamskt borgaradagatal + ISO-8601 dagatal + Japanskt dagatal + Persneskt dagatal + Minguo dagatal + Raða táknum + Raða óháð táknum + Raða áherslum eðlilega + Raða öfugt eftir áherslum + Raða lágstöfum fyrst + Raða eðlilega eftir hástöfum og lágstöfum + Raða hástöfum fyrst + Raða óháð hástöfum og lágstöfum + Raða stafrétt + Raða Kana sér + Raða Kana öðruvísi + hefðbundin kínversk röðun - Big5 + Orðabókarröð + Sjálfgefin Unicode-röðun + röðina fyrir fjöltyngi evrópskum skjölum + einfölduð kínversk röðun - GB2312 + Símaskráarröðun + Hljóðfræðileg röð + Pinyin-röðun + Endurbætt röð + Almenn leit + Leita eftir upphafssamhljóða í Hangul + Stöðluð röðun + Strikaröðun + Hefðbundin + Röðun eftir grunnstrikum + Raða án stöðlunar + Raða Unicode með stöðluðum hætti + Raða tölustöfum sér + Raða tölustöfum tölulega + Raða öllu + Raða aðeins grunnstöfum + Raða áherslum/hástaf eða lágstaf/breidd/Kana + Raða áherslum + Raða áherslum/hástaf eða lágstaf/breidd + 12 tíma kerfi (0–11) + 12 tíma kerfi (1–12) + 24 tíma kerfi (0–23) + 24 tíma kerfi (1–24) + Laus línuskipting + Venjuleg línuskipting + Ströng línuskipting + Metrakerfi + Breskt mælingakerfi + Bandarískt mælingakerfi + Arabískar-indverskar tölur + Auknar arabískar-indverskar tölur + Armenskir tölustafir + Armenskar lágstafatölur + Bengalskar tölur + Devanagari tölur + Eþíópískir tölustafir + Viðskiptafræðileg töluorð + Tölur í fullri breidd + Georgískir tölustafir + Grískir tölustafir + Grískar lágstafatölur + Gujarati-tölur + Gurmukhi-tölur + Kínverskir tugatölustafir + Einfaldaðir kínverskir tölustafir + Einfaldaðar kínverskar fjármálatölur + Hefðbundnir kínverskir tölustafir + Hefðbundnar kínverskar fjármálatölur + Hebreskir tölustafir + Japanskir tölustafir + Japanskar fjármálatölur + Kmerískar tölur + Kannada-tölur + Lao-tölur + Vestrænar tölur + Malayalam-tölur + Mongólskar tölur + Mjanmarskar tölur + Upprunalegir tölustafir + Oriya-tölur + Rómverskir tölustafir + Rómverskar lágstafatölur + Hefðbundnir tamílskir tölustafir + Tamílskar tölur + Telúgú-tölur + Tælenskar tölur + Tíbeskir tölustafir + Hefðbundin tölutákn + Vai-tölustafir BGN @@ -1107,12 +1126,12 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} 'kl.' {0} + {1} 'kl'. {0} - {1} 'kl.' {0} + {1} 'kl'. {0} @@ -1127,6 +1146,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d. y G MMM y G @@ -1472,21 +1492,63 @@ For terms of use, see http://www.unicode.org/copyright.html + + miðn. + f.h. + hád. + e.h. + að morgni + síðd. + að kv. + að nóttu + + mn. f. h. e. + mrg. + sd. + kv. + n. + miðnætti f.h. hádegi e.h. + að morgni + síðdegis + að kvöldi + að nóttu + + miðn. + hád. + morg. + síðd. + kv. + nótt + + + mn. + hd. + mrg. + sd. + kv. + n. + - árdegi - síðdegi + miðnætti + f.h. + hádegi + e.h. + morgunn + eftir hádegi + kvöld + nótt @@ -1505,9 +1567,9 @@ For terms of use, see http://www.unicode.org/copyright.html f.k. - flt + f.v.t. e.k. - lt + v.t. @@ -1557,12 +1619,12 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} 'kl.' {0} + {1} 'kl'. {0} - {1} 'kl.' {0} + {1} 'kl'. {0} @@ -1593,6 +1655,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d.M. E, d.M. @@ -1737,6 +1803,9 @@ For terms of use, see http://www.unicode.org/copyright.html ár + á síðasta ári + á þessu ári + á næsta ári eftir {0} ár eftir {0} ár @@ -1748,6 +1817,9 @@ For terms of use, see http://www.unicode.org/copyright.html ár + á síðasta ári + á þessu ári + á næsta ári eftir {0} ár eftir {0} ár @@ -1759,6 +1831,9 @@ For terms of use, see http://www.unicode.org/copyright.html ársfjórðungur + síðasti ársfjórðungur + þessi ársfjórðungur + næsti ársfjórðungur eftir {0} ársfjórðung eftir {0} ársfjórðunga @@ -1769,7 +1844,10 @@ For terms of use, see http://www.unicode.org/copyright.html - ársfjórðungur + ársfjórð. + síðasti ársfj. + þessi ársfj. + næsti ársfj. eftir {0} ársfj. eftir {0} ársfj. @@ -1780,7 +1858,10 @@ For terms of use, see http://www.unicode.org/copyright.html - ársfjórðungur + ársfj. + síðasti ársfj. + þessi ársfj. + næsti ársfj. eftir {0} ársfj. eftir {0} ársfj. @@ -1806,6 +1887,9 @@ For terms of use, see http://www.unicode.org/copyright.html mán. + í síðasta mán. + í þessum mán. + í næsta mán. eftir {0} mán. eftir {0} mán. @@ -1817,6 +1901,9 @@ For terms of use, see http://www.unicode.org/copyright.html mán. + í síðasta mán. + í þessum mán. + í næsta mán. eftir {0} mán. eftir {0} mán. @@ -1842,6 +1929,9 @@ For terms of use, see http://www.unicode.org/copyright.html vika + í síðustu viku + í þessari viku + í næstu viku eftir {0} vikur eftir {0} vikur @@ -1852,7 +1942,10 @@ For terms of use, see http://www.unicode.org/copyright.html - vika + v. + í síðustu viku + í þessari viku + í næstu viku +{0} viku +{0} vikur @@ -1880,6 +1973,11 @@ For terms of use, see http://www.unicode.org/copyright.html dagur + í fyrradag + í gær + í dag + á morgun + eftir tvo daga eftir {0} dag eftir {0} daga @@ -1890,7 +1988,12 @@ For terms of use, see http://www.unicode.org/copyright.html - dagur + d. + í fyrradag + í gær + í dag + á morgun + eftir tvo daga +{0} dag +{0} daga @@ -1904,14 +2007,14 @@ For terms of use, see http://www.unicode.org/copyright.html vikudagur - sunnudagur í síðustu viku + síðasta sunnudag sunnudagur í þessari viku - sunnudagur í næstu viku + næsta sunnudag síðasti sun. þessi sun. - næstkomandi sun. + næsta sun. síðasti sun. @@ -1919,14 +2022,14 @@ For terms of use, see http://www.unicode.org/copyright.html nk. sun. - mánudagur í síðustu viku + síðasta mánudag mánudagur í þessari viku - mánudagur í næstu viku + næsta mánudag - síðasti mán. + síðasta mán. þessi mán. - næstkomandi mán. + næsta mán. síðasti mán. @@ -1934,9 +2037,9 @@ For terms of use, see http://www.unicode.org/copyright.html nk. mán. - þriðjudagur í síðustu viku + síðasta þriðjudag þriðjudagur í þessari viku - þriðjudagur í næstu viku + næsta þriðjudag síðasti þri. @@ -2265,7 +2368,7 @@ For terms of use, see http://www.unicode.org/copyright.html Arúba - Mariehamn + Maríuhöfn Bakú @@ -2298,7 +2401,7 @@ For terms of use, see http://www.unicode.org/copyright.html Porto-Novo - Saint Barthélemy + Sankti Bartólómeusareyjar Bermúda @@ -2493,7 +2596,7 @@ For terms of use, see http://www.unicode.org/copyright.html Urumqi - Shanghai + Sjanghæ Bogota @@ -2574,7 +2677,7 @@ For terms of use, see http://www.unicode.org/copyright.html Helsinki - Fídjieyjar + Fidjí Stanley @@ -2847,7 +2950,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bamako - Rangoon + Rangún Hovd @@ -3342,7 +3445,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tortóla - St. Thomas + Sankti Thomas Ho Chi Minh-borg @@ -3533,7 +3636,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Bangladesstími + Bangladess-tími Staðaltími í Bangladess Sumartími í Bangladess @@ -3643,7 +3746,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Tími á Tímor-Leste + Tíminn á Tímor-Leste @@ -3727,7 +3830,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Gilberteyjatími + Tími á Gilbert-eyjum @@ -3761,9 +3864,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Tími á Hawaii og Aleútaeyjum - Staðaltími á Hawaí og Aleútaeyjum - Sumartími á Hawaii og Aleútaeyjum + Tími á Havaí og Aleúta + Staðaltími á Havaí og Aleúta + Sumartími á Havaí og Aleúta @@ -3775,7 +3878,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Tími í Hovd + Hovd-tími Staðaltími í Hovd Sumartími í Hovd @@ -3876,12 +3979,12 @@ For terms of use, see http://www.unicode.org/copyright.html - Kirgisistantími + Kirgistan-tími - Línueyjatími + Línueyja-tími @@ -3910,7 +4013,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Maldíveyjatími + Maldíveyja-tími @@ -3920,7 +4023,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Marshall-eyjatími + Tími á Marshall-eyjum @@ -3958,19 +4061,19 @@ For terms of use, see http://www.unicode.org/copyright.html - Tími í Moskvu + Moskvutími Staðaltími í Moskvu Sumartími í Moskvu - Mjanmartími + Mjanmar-tími - Nárútími + Nárú-tími @@ -4025,7 +4128,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Tími í Omsk + Tíminn í Omsk Staðaltími í Omsk Sumartími í Omsk @@ -4153,7 +4256,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Tahítítími + Tahítí-tími @@ -4165,12 +4268,12 @@ For terms of use, see http://www.unicode.org/copyright.html - Tadsjíkistantími + Tadsjíkistan-tími - Tókelátími + Tókelá-tími @@ -4187,7 +4290,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Túrkmenistantími + Túrkmenistan-tími Staðaltími í Túrkmenistan Sumartími í Túrkmenistan @@ -4206,16 +4309,16 @@ For terms of use, see http://www.unicode.org/copyright.html - Úsbekistantími + Úsbekistan-tími Staðaltími í Úsbekistan Sumartími í Úsbekistan - Vanúatútími - Staðaltími í Vanúatú - Sumartími í Vanúatú + Vanúatú-tími + Staðaltími á Vanúatú + Sumartími á Vanúatú @@ -4244,7 +4347,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Wake-eyjartími + Tími á Wake-eyju @@ -4254,7 +4357,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Tími í Yakutsk + Tíminn í Yakutsk Staðaltími í Yakutsk Sumartími í Yakutsk @@ -4374,6 +4477,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 þ'.' ¤ + 0 þ'.' ¤ + 00 þ'.' ¤ + 00 þ'.' ¤ + 000 þ'.' ¤ + 000 þ'.' ¤ + 0 m'.' ¤ + 0 m'.' ¤ + 00 m'.' ¤ + 00 m'.' ¤ + 000 m'.' ¤ + 000 m'.' ¤ + 0 ma'.' ¤ + 0 ma'.' ¤ + 00 ma'.' ¤ + 00 ma'.' ¤ + 000 ma'.' ¤ + 000 ma'.' ¤ + 0 bn ¤ + 0 bn ¤ + 00 bn ¤ + 00 bn ¤ + 000 bn ¤ + 000 bn ¤ + + {0} {1} {0} {1} @@ -4382,37 +4513,37 @@ For terms of use, see http://www.unicode.org/copyright.html Andorrskur peseti - Arabískt dírham + arabískt dírham arabískt dírham arabísk dírhöm AED - Afgani + afgani afgani afganar AFN - Albanskt lek + albanskt lek albanskt lek albönsk lek ALL - Armenskt dramm + armenskt dramm armenskt dramm armensk drömm AMD - Hollenskt Antillugyllini + hollenskt Antillugyllini hollenskt Antillugyllini hollensk Antillugyllini ANG - Angólsk kvansa + angólsk kvansa angólsk kvansa angólskar kvönsur AOA @@ -4424,7 +4555,7 @@ For terms of use, see http://www.unicode.org/copyright.html Argentískur pesi (1983–1985) - Argentínskur pesi + argentínskur pesi argentínskur pesi argentínskir pesar ARS @@ -4434,39 +4565,39 @@ For terms of use, see http://www.unicode.org/copyright.html Austurrískur skildingur - Ástralskur dalur + ástralskur dalur ástralskur dalur ástralskir dalir AUD $ - Arúbönsk flórína + arúbönsk flórína arúbönsk flórína arúbanskar flórínur AWG - Aserskt manat + aserskt manat aserskt manat asersk manöt AZN - Skiptanlegt Bosníu og Hersegóvínu-mark + skiptanlegt Bosníu og Hersegóvínu-mark skiptanlegt Bosníu og Hersegóvínu-mark skiptanleg Bosníu og Hersegóvínu-mörk BAM - Barbadoskur dalur + barbadoskur dalur barbadoskur dalur barbadoskir dalir BBD $ - Bangladessk taka + bangladessk taka bangladessk taka bangladesskar tökur BDT @@ -4479,19 +4610,19 @@ For terms of use, see http://www.unicode.org/copyright.html Lef - Búlgarskt lef + búlgarskt lef búlgarskt lef búlgörsk lef BGN - Bareinskur denari + bareinskur denari bareinskur denari bareinskir denarar BHD - Búrúndískur franki + búrúndískur franki búrúndískur franki búrúndískir frankar BIF @@ -4504,14 +4635,14 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Brúneiskur dalur + brúneiskur dalur brúneiskur dalur brúneiskir dalir BND $ - Bólivíani + bólivíani bólivíani bólivíanar BOB @@ -4523,7 +4654,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bolivian Mvdol - Brasilískt ríal + brasilískt ríal brasilískt ríal brasilísk ríöl BRL @@ -4537,7 +4668,7 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Bútanskt núltrum + bútanskt núltrum bútanskt núltrum bútönsk núltrum BTN @@ -4546,40 +4677,40 @@ For terms of use, see http://www.unicode.org/copyright.html Búrmverskt kjat - Botsvönsk púla + botsvönsk púla botsvönsk púla botsvanskar púlur BWP - Hvítrússnesk rúbla + hvítrússnesk rúbla hvítrússnesk rúbla hvítrússneskar rúblur BYR р. - Belískur dalur + belískur dalur belískur dalur belískir dalir BZD $ - Kanadískur dalur - kanadískur dalur - kanadískir dalir + Kanadadalur + Kanadadalur + Kanadadalir CAD $ - Kongóskur franki + kongóskur franki kongóskur franki kongóskir frankar CDF - Svissneskur franki + svissneskur franki svissneskur franki svissneskir frankar CHF @@ -4588,28 +4719,28 @@ For terms of use, see http://www.unicode.org/copyright.html Chilean Unidades de Fomento - Síleskur pesi + síleskur pesi síleskur pesi síleskir pesar CLP $ - Kínverskt júan + kínverskt júan kínverskt júan kínversk júön CN¥ ¥ - Kólumbískur pesi + kólumbískur pesi kólumbískur pesi kólumbískir pesar COP $ - Kostarískt kólon + kostarískt kólon kostarískt kólon kostarísk kólon CRC @@ -4619,20 +4750,20 @@ For terms of use, see http://www.unicode.org/copyright.html Tékknesk króna, eldri - Kúbverskur skiptanlegur pesi - kúbverskur skiptanlegur pesi - kúbverskir skiptanlegir pesar + kúbverskur skiptanlegur pesi + kúbverskur skiptanlegur pesói + kúbverskir skiptanlegir pesóar CUC - Kúbverskur pesi + kúbverskur pesi kúbverskur pesi kúbverskir pesar CUP $ - Grænhöfðeyskur skúti + grænhöfðeyskur skúti grænhöfðeyskur skúti grænhöfðeyskir skútar CVE @@ -4641,7 +4772,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kýpverskt pund - Tékknesk króna + tékknesk króna tékknesk króna tékkneskar krónur CZK @@ -4653,26 +4784,26 @@ For terms of use, see http://www.unicode.org/copyright.html Þýskt mark - Djíbútískur franki + djíbútískur franki djíbútískur franki djíbútískir frankar DJF - Dönsk króna + dönsk króna dönsk króna danskar krónur DKK - Dóminískur pesi + dóminískur pesi dóminískur pesi dóminískir pesar DOP $ - Alsírskur denari + alsírskur denari alsírskur denari alsírskir denarar DZD @@ -4686,13 +4817,13 @@ For terms of use, see http://www.unicode.org/copyright.html eistnesku krónur - Egypskt pund + egypskt pund egypskt pund egypsk pund EGP - Erítresk nakfa + erítresk nakfa erítresk nakfa erítreskar nökfur ERN @@ -4701,13 +4832,13 @@ For terms of use, see http://www.unicode.org/copyright.html Spænskur peseti - Eþíópískt birr + eþíópískt birr eþíópískt birr eþíópísk birr ETB - Evra + evra evra evrur EUR @@ -4717,14 +4848,14 @@ For terms of use, see http://www.unicode.org/copyright.html Finnskt mark - Fídjeyskur dalur - fídjeyskur dalur - fídjeyskir dalir + fidjeyskur dalur + fidjeyskur dalur + fidjeyskir dalir FJD $ - Falklenskt pund + falklenskt pund falklenskt pund falklensk pund FKP @@ -4733,33 +4864,34 @@ For terms of use, see http://www.unicode.org/copyright.html Franskur franki - Sterlingspund + sterlingspund sterlingspund sterlingspund GBP £ - Georgískur lari + georgískur lari georgískur lari georgískir larar GEL + - Ganverskur sedi + ganverskur sedi ganverskur sedi ganverskir sedar GHS Gíbraltarspund - Gíbraltarspund + Gíbraltarpund Gíbraltarspund GIP £ - Gambískur dalasi + gambískur dalasi gambískur dalasi gambískir dalasar GMD @@ -4774,7 +4906,7 @@ For terms of use, see http://www.unicode.org/copyright.html Drakma - Gvatemalskt kvesal + gvatemalskt kvesal gvatemalskt kvesal gvatemölsk kvesöl GTQ @@ -4783,7 +4915,7 @@ For terms of use, see http://www.unicode.org/copyright.html Portúgalskur, gíneskur skúti - Gvæjanskur dalur + gvæjanskur dalur gvæjanskur dalur gvæjanskir dalir GYD @@ -4797,34 +4929,35 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Hondúrsk lempíra + hondúrsk lempíra hondúrsk lempíra hondúrskar lempírur HNL - Króatísk kúna + króatísk kúna króatísk kúna króatískar kúnur HRK - Haítískur gúrdi + haítískur gúrdi haítískur gúrdi haítískir gúrdar HTG - Ungversk fórinta + ungversk fórinta ungversk fórinta ungverskar fórintur HUF - Indónesísk rúpía + indónesísk rúpía indónesísk rúpía indónesískar rúpíur IDR + Rp Írskt pund @@ -4833,33 +4966,33 @@ For terms of use, see http://www.unicode.org/copyright.html Ísraelskt pund - Nýr ísraelskur sikill + nýr ísraelskur sikill nýr ísraelskur sikill nýir ísraelskir siklar - Indversk rúpía + indversk rúpía indversk rúpía indverskar rúpíur INR - Írakskur denari + írakskur denari írakskur denari írakskir denarar IQD - Íranskt ríal + íranskt ríal íranskt ríal írönsk ríöl IRR - Íslensk króna + íslensk króna íslensk króna íslenskar krónur ISK @@ -4868,104 +5001,104 @@ For terms of use, see http://www.unicode.org/copyright.html Ítölsk líra - Jamaískur dalur + jamaískur dalur jamaískur dalur jamaískir dalir JMD $ - Jórdanskur denari + jórdanskur denari jórdanskur denari jórdanskir denarar JOD - Japanskt jen + japanskt jen japanskt jen japönsk jen JP¥ ¥ - Kenískur skildingur + kenískur skildingur kenískur skildingur kenískir skildingar KES - Kirgiskt som + kirgiskt som kirgiskt som kirgisk som KGS - Kambódískt ríal + kambódískt ríal kambódískt ríal kambódísk ríöl KHR - Kómoreyskur franki + kómoreyskur franki kómoreyskur franki kómoreyskir frankar KMF - Norðurkóreskt vonn + norðurkóreskt vonn norðurkóreskt vonn norðurkóresk vonn KPW - Suðurkóreskt vonn + suðurkóreskt vonn suðurkóreskt vonn suðurkóresk vonn KRW - Kúveiskur denari + kúveiskur denari kúveiskur denari kúveiskir denarar KWD - Caymaneyskur dalur + caymaneyskur dalur caymaneyskur dalur caymaneyskir dalir KYD $ - Kasakst tengi + kasakst tengi kasakst tengi kasöksk tengi KZT - Laoskt kip + laoskt kip laoskt kip laosk kip LAK - Líbanskt pund + líbanskt pund líbanskt pund líbönsk pund LBP - Srílönsk rúpía + srílönsk rúpía srílönsk rúpía srílanskar rúpíur LKR - Líberískur dalur + líberískur dalur líberískur dalur líberískir dalir LRD @@ -4996,13 +5129,13 @@ For terms of use, see http://www.unicode.org/copyright.html Lettnesk rúbla - Líbískur denari + líbískur denari líbískur denari líbískir denarar LYD - Marokkóskt dírham + marokkóskt dírham marokkóskt dírham marokkósk dírhöm MAD @@ -5011,7 +5144,7 @@ For terms of use, see http://www.unicode.org/copyright.html Marokkóskur franki - Moldavískt lei + moldavískt lei moldavískt lei moldavísk lei MDL @@ -5026,7 +5159,7 @@ For terms of use, see http://www.unicode.org/copyright.html Madagaskur franki - Makedónskur denari + makedónskur denari makedónskur denari makedónskir denarar MKD @@ -5035,26 +5168,26 @@ For terms of use, see http://www.unicode.org/copyright.html Malískur franki - Mjanmarskt kjat + mjanmarskt kjat mjanmarskt kjat mjanmörsk kjöt MMK - Mongólskur túríkur + mongólskur túríkur mongólskur túríkur mongólskir túríkar MNT - Makaópataka - Makaópataka - Makaópatökur + makaósk pataka + makaósk pataka + makaóskar patökur MOP - Máritönsk úgía + márítönsk úgía máritönsk úgía máritanskar úgíur MRO @@ -5066,25 +5199,25 @@ For terms of use, see http://www.unicode.org/copyright.html Maltneskt pund - Máritísk rúpía + máritísk rúpía máritísk rúpía máritískar rúpíur MUR - Maldíveysk rúpía + maldíveysk rúpía maldíveysk rúpía maldíveyskar rúpíur MVR - Malavísk kvaka + malavísk kvaka malavísk kvaka malavískar kvökur MWK - Mexíkóskur pesi + mexíkóskur pesi mexíkóskur pesi mexíkóskir pesar MXN @@ -5097,7 +5230,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mexíkóskur pesi, UDI - Malasískt ringit + malasískt ringit malasískt ringit malasísk ringit MYR @@ -5106,20 +5239,20 @@ For terms of use, see http://www.unicode.org/copyright.html Mósambískur skúti - Mósambískt metikal + mósambískt metikal mósambískt metikal mósambísk metiköl MZN - Namibískur dalur + namibískur dalur namibískur dalur namibískir dalir NAD $ - Nígerísk næra + nígerísk næra nígerísk næra nígerískar nærur NGN @@ -5131,7 +5264,7 @@ For terms of use, see http://www.unicode.org/copyright.html Níkaragskar kordóvur (1988–1991) - Níkarögsk kordóva + níkaraögsk kordóva níkarögsk kordóva níkaragskar kordóvur NIO @@ -5140,63 +5273,63 @@ For terms of use, see http://www.unicode.org/copyright.html Hollenskt gyllini - Norsk króna + norsk króna norsk króna norskar krónur NOK - Nepölsk rúpía + nepölsk rúpía nepölsk rúpía nepalskar rúpíur NPR - Nýsjálenskur dalur + nýsjálenskur dalur nýsjálenskur dalur nýsjálenskir dalir NZD $ - Ómanskt ríal + ómanskt ríal ómanskt ríal ómönsk ríöl OMR - Balbói + balbói balbói balbóar PAB - Perúskt sól + perúskt sól perúskt sól perúsk sól PEN - Papúsk kína + papúsk kína papúsk kína papúskar kínur PGK - Filippseyskur pesi + filippseyskur pesi filippseyskur pesi filippseyskir pesar PHP - Pakistönsk rúpía + pakistönsk rúpía pakistönsk rúpía pakistanskar rúpíur PKR - Pólskt slot + pólskt slot pólskt slot pólsk slot PLN @@ -5208,14 +5341,14 @@ For terms of use, see http://www.unicode.org/copyright.html Portúgalskur skúti - Paragvæskt gvaraní + paragvæskt gvaraní paragvæskt gvaraní paragvæsk gvaraní PYG - Katarskt ríal + katarskt ríal katarskt ríal katörsk ríöl QAR @@ -5226,19 +5359,19 @@ For terms of use, see http://www.unicode.org/copyright.html Rúmenskt lei (1952–2006) - Rúmenskt lei + rúmenskt lei rúmenskt lei rúmensk lei RON - Serbneskur denari + serbneskur denari serbneskur denari serbneskir denarar RSD - Rússnesk rúbla + rússnesk rúbla rússnesk rúbla rússneskar rúblur RUB @@ -5247,19 +5380,19 @@ For terms of use, see http://www.unicode.org/copyright.html Rússnesk rúbla (1991–1998) - Rúandskur franki + rúandskur franki rúandskur franki rúandskir frankar RWF - Sádiarabískt ríal + sádíarabískt ríal sádiarabískt ríal sádiarabísk ríöl SAR - Salómonseyskur dalur + salómonseyskur dalur salómonseyskur dalur salómonseyskir dalir SBD @@ -5275,7 +5408,7 @@ For terms of use, see http://www.unicode.org/copyright.html Súdanskur denari - Súdanskt pund + súdanskt pund súdanskt pund súdönsk pund SDG @@ -5284,20 +5417,20 @@ For terms of use, see http://www.unicode.org/copyright.html Súdanskt pund (1957–1998) - Sænsk króna + sænsk króna sænsk króna sænskar krónur SEK - Singapúrskur dalur + singapúrskur dalur singapúrskur dalur singapúrskir dalir SGD $ - Helenskt pund + helenskt pund helenskt pund helensk pund SHP @@ -5309,13 +5442,13 @@ For terms of use, see http://www.unicode.org/copyright.html Slóvakísk króna - Síerraleónsk ljóna + síerraleónsk ljóna síerraleónsk ljóna síerraleónskar ljónur SLL - Sómalískur skildingur + sómalískur skildingur sómalískur skildingur sómalískir skildingar SOS @@ -5331,7 +5464,7 @@ For terms of use, see http://www.unicode.org/copyright.html Suriname Guilder - Suðursúdanskt pund + suðursúdanskt pund suðursúdanskt pund suðursúdönsk pund SSP @@ -5352,28 +5485,29 @@ For terms of use, see http://www.unicode.org/copyright.html El Salvador Colon - Sýrlenskt pund + sýrlenskt pund sýrlenskt pund sýrlensk pund SYP - Svasílenskur lílangeni + svasílenskur lílangeni svasílenskur lílangeni svasílenskir lílangenar SZL - Taílenskt bat + taílenskt bat taílenskt bat taílensk böt THB + ฿ Tadsjiksk rúbla - Tadsjikskur sómóni + tadsjikskur sómóni tadsjikskur sómóni tadsjikskir sómónar TJS @@ -5384,13 +5518,13 @@ For terms of use, see http://www.unicode.org/copyright.html Túrkmenskt manat (1993–2009) - Túrkmenskt manat + túrkmenskt manat túrkmenskt manat túrkmensk manöt TMT - Túniskur denari + túnískur denari túniskur denari túniskir denarar TND @@ -5400,6 +5534,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tongapanga Tongapöngur TOP + T$ Tímorskur skúti @@ -5408,7 +5543,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tyrknesk líra (1922–2005) - Tyrknesk líra + tyrknesk líra tyrknesk líra tyrkneskar lírur TRY @@ -5422,20 +5557,20 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Taívanskur dalur + taívanskur dalur taívanskur dalur taívanskir dalir TWD NT$ - Tansanískur skildingur + tansanískur skildingur tansanískur skildingur tansanískir skildingar TZS - Úkraínsk hrinja + úkraínsk hrinja úkraínsk hrinja úkraínskar hrinjur UAH @@ -5445,9 +5580,9 @@ For terms of use, see http://www.unicode.org/copyright.html Ukrainian Karbovanetz - Úgandskur skildingur + úgandskur skildingur úgandskur skildingur - úgandskir skildingur + úgandskir skildingar UGX @@ -5464,14 +5599,14 @@ For terms of use, see http://www.unicode.org/copyright.html Bandaríkjadalur (sama dag) - Úrúgvæskur pesi + úrúgvæskur pesi úrúgvæskur pesi úrúgvæskir pesar UYU $ - Úsbekskt súm + úsbekskt súm úsbekskt súm úsbeksk súm UZS @@ -5480,20 +5615,20 @@ For terms of use, see http://www.unicode.org/copyright.html Bolívar í Venesúela (1871–2008) - Venesúelskur bólívari + venesúelskur bólívari venesúelskur bólívari venesúelskir bólívarar VEF - Víetnamskt dong + víetnamskt dong víetnamskt dong víetnömsk dong VND - Vanúatúskt vatú + vanúatúskt vatú vanúatúskt vatú vanúatúsk vatú VUV @@ -5505,7 +5640,7 @@ For terms of use, see http://www.unicode.org/copyright.html WST - Miðafrískur franki + miðafrískur franki miðafrískur franki miðafrískir frankar FCFA @@ -5521,7 +5656,7 @@ For terms of use, see http://www.unicode.org/copyright.html unse gull - Austurkarabískur dalur + austurkarabískur dalur austurkarabískur dalur austurkarabískir dalir EC$ @@ -5536,7 +5671,7 @@ For terms of use, see http://www.unicode.org/copyright.html Franskur franki, UIC - Vesturafrískur franki + vesturafrískur franki vesturafrískur franki vesturafrískir frankar CFA @@ -5547,7 +5682,7 @@ For terms of use, see http://www.unicode.org/copyright.html unse palladín - Pólinesískur franki + pólinesískur franki pólinesískur franki pólinesískir frankar CFPF @@ -5558,15 +5693,15 @@ For terms of use, see http://www.unicode.org/copyright.html unse platína - Óþekktur gjaldmiðill - (óþekktur gjaldmiðill) + óþekktur gjaldmiðill + (óþekkt mynteining gjaldmiðils) (óþekktur gjaldmiðill) Jemenskur denari - Jemenskt ríal + jemenskt ríal jemenskt ríal jemensk ríöl YER @@ -5578,7 +5713,7 @@ For terms of use, see http://www.unicode.org/copyright.html Rand (viðskipta) - Suðurafrískt rand + suðurafrískt rand suðurafrískt rand suðurafrísk rönd ZAR @@ -5587,7 +5722,7 @@ For terms of use, see http://www.unicode.org/copyright.html Zambian Kwacha (1968–2012) - Sambísk kvaka + sambísk kvaka sambísk kvaka sambískar kvökur ZMW @@ -5604,7 +5739,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0} á {1} + {0} á {1} þyngdarhröðun @@ -5616,6 +5751,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metri á sekúndu, á sekúndu {0} metrar á sekúndu, á sekúndu + + snúningur + {0} snúningur + {0} snúningar + + + bogaeiningar + {0} bogaeining + {0} bogaeiningar + + + gráður + {0} gráða + {0} gráður + bogamínútur {0} bogamínúta @@ -5626,30 +5776,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} bogasekúnda {0} bogasekúndur - - gráður - {0} gráða - {0} gráður - - - bogaeiningar - {0} bogaeining - {0} bogaeiningar - - - ekrur - {0} ekra - {0} ekrur + + ferkílómetrar + {0} ferkílómetri + {0} ferkílómetrar hektarar {0} hektari {0} hektarar + + fermetrar + {0} fermetri + {0} fermetrar + {0} á fermetra + fersentimetrar {0} fersentimetri {0} fersentimetrar + {0} á fersentimetra + + + fermílur + {0} fermíla + {0} fermílur + + + ekrur + {0} ekra + {0} ekrur + + + feryardar + {0} feryard + {0} feryardar ferfet @@ -5660,91 +5822,101 @@ For terms of use, see http://www.unicode.org/copyright.html fertommur {0} fertomma {0} fertommur + {0} á fertommu - - ferkílómetrar - {0} ferkílómetri - {0} ferkílómetrar - - - fermetrar - {0} fermetri - {0} fermetrar - - - fermílur - {0} fermíla - {0} fermílur - - - feryardar - {0} feryard - {0} feryardar + + karöt + {0} karat + {0} karöt lítrar á kílómetra {0} lítri á kílómetra {0} lítrar á kílómetra + + lítrar á 100 kílómetra + {0} lítri á 100 kílómetra + {0} lítrar á 100 kílómetra + mílur á gallon {0} míla á gallon {0} mílur á gallon - - bitar - {0} biti - {0} bitar - - - bæti - {0} bæti - {0} bæti - - - gígabitar - {0} gígabiti - {0} gígabitar - - - gígabæti - {0} gígabæti - {0} gígabæti - - - kílóbitar - {0} kílóbiti - {0} kílóbitar - - - kílóbæti - {0} kílóbæti - {0} kílóbæti - - - megabitar - {0} megabiti - {0} megabitar - - - megabæti - {0} megabæti - {0} megabæti - - - terabitar - {0} terabiti - {0} terabitar - terabæti {0} terabæti {0} terabæti + + terabitar + {0} terabiti + {0} terabitar + + + gígabæti + {0} gígabæti + {0} gígabæti + + + gígabitar + {0} gígabiti + {0} gígabitar + + + megabæti + {0} megabæti + {0} megabæti + + + megabitar + {0} megabiti + {0} megabitar + + + kílóbæti + {0} kílóbæti + {0} kílóbæti + + + kílóbitar + {0} kílóbiti + {0} kílóbitar + + + bæti + {0} bæti + {0} bæti + + + bitar + {0} biti + {0} bitar + + + ár + {0} ár + {0} ár + {0} á ári + + + mánuðir + {0} mánuður + {0} mánuðir + {0} á mánuði + + + vikur + {0} vika + {0} vikur + {0} á viku + dagar {0} dagur {0} dagar + {0} á dagur klukkustundir @@ -5752,30 +5924,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} klukkustundir {0} á klst. - - míkrósekúndur - {0} míkrósekúnda - {0} míkrósekúndur - - - millisekúndur - {0} millisekúnda - {0} millisekúndur - mínútur {0} mínúta {0} mínútur - - - mánuðir - {0} mánuður - {0} mánuðir - - - nanósekúndur - {0} nanósekúnda - {0} nanósekúndur + {0} á mínúta sekúndur @@ -5783,15 +5936,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sekúndur {0} á sekúndu - - vikur - {0} vika - {0} vikur + + millisekúndur + {0} millisekúnda + {0} millisekúndur - - ár - {0} ár - {0} ár + + míkrósekúndur + {0} míkrósekúnda + {0} míkrósekúndur + + + nanósekúndur + {0} nanósekúnda + {0} nanósekúndur amper @@ -5813,6 +5971,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volt + + kílókaloríur + {0} kílókaloría + {0} kílókaloríur + kaloríur {0} kaloría @@ -5823,21 +5986,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hitaeining {0} hitaeiningar - - júl - {0} júl - {0} júl - - - kílókaloríur - {0} kílókaloría - {0} kílókaloríur - kílójúl {0} kílójúl {0} kílójúl + + júl + {0} júl + {0} júl + kílóvattstundir {0} kílóvattstund @@ -5848,201 +6006,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gígahertz {0} gígahertz - - hertz - {0} hertz - {0} hertz + + megahertz + {0} megahertz + {0} megahertz kílóhertz {0} kílóhertz {0} kílóhertz - - megahertz - {0} megahertz - {0} megahertz + + hertz + {0} hertz + {0} hertz - - stjarnfræðieiningar - {0} stjarnfræðieining - {0} stjarnfræðieiningar + + kílómetrar + {0} kílómetri + {0} kílómetrar + {0} á kílómetra - - sentimetrar - {0} sentimetri - {0} sentimetrar + + metrar + {0} metri + {0} metrar + {0} á metra desimetrar {0} desimetri {0} desimetrar - - fet - {0} fet - {0} fet - - - tommur - {0} tomma - {0} tommur - - - kílómetrar - {0} kílómetri - {0} kílómetrar - - - ljósár - {0} ljósár - {0} ljósár - - - metrar - {0} metri - {0} metrar - - - míkrómetrar - {0} míkrómetri - {0} míkrómetrar - - - mílur - {0} míla - {0} mílur + + sentimetrar + {0} sentimetri + {0} sentimetrar + {0} á sentimetra millimetrar {0} millimetri {0} millimetrar + + míkrómetrar + {0} míkrómetri + {0} míkrómetrar + nanómetrar {0} nanómetri {0} nanómetrar - - sjómílur - {0} sjómíla - {0} sjómílur - - - parsek - {0} parsek - {0} parsek - píkómetrar {0} píkómetri {0} píkómetrar + + mílur + {0} míla + {0} mílur + yardar {0} yard {0} yardar + + fet + {0} fet + {0} fet + {0} á fet + + + tommur + {0} tomma + {0} tommur + {0} á tommu + + + parsek + {0} parsek + {0} parsek + + + ljósár + {0} ljósár + {0} ljósár + + + stjarnfræðieiningar + {0} stjarnfræðieining + {0} stjarnfræðieiningar + + + sjómílur + {0} sjómíla + {0} sjómílur + + + sænsk míla + {0} sænsk míla + {0} sænskar mílur + lúx {0} lúx {0} lúx - - karöt - {0} karat - {0} karöt - - - grömm - {0} gramm - {0} grömm - - - kílógrömm - {0} kílógramm - {0} kílógrömm - tonn {0} tonn {0} tonn - - míkrógrömm - {0} míkrógramm - {0} míkrógrömm + + kílógrömm + {0} kílógramm + {0} kílógrömm + {0} á kílógramm + + + grömm + {0} gramm + {0} grömm + {0} á gramm milligrömm {0} milligramm {0} milligrömm - - únsur - {0} únsa - {0} únsur - - - troyesúnsur - {0} troyesúnsa - {0} troyesúnsur - - - pund - {0} pund - {0} pund + + míkrógrömm + {0} míkrógramm + {0} míkrógrömm bandarískt tonn {0} bandarískt tonn {0} bandarísk tonn + + pund + {0} pund + {0} pund + {0} á pund + + + únsur + {0} únsa + {0} únsur + {0} á únsu + + + troyesúnsur + {0} troyesúnsa + {0} troyesúnsur + + + karöt + {0} karat + {0} karöt + gígavött {0} gígavatt {0} gígavött - - hestöfl - {0} hestafl - {0} hestöfl - - - kílóvött - {0} kílóvatt - {0} kílóvött - megavött {0} megavatt {0} megavött - - millivött - {0} millivatt - {0} millivött + + kílóvött + {0} kílóvatt + {0} kílóvött vött {0} vatt {0} vött + + millivött + {0} millivatt + {0} millivött + + + hestöfl + {0} hestafl + {0} hestöfl + hektópasköl {0} hektópaskal {0} hektópasköl - - tommur af kvikvasilfri - {0} tomma af kvikasilfri - {0} tommur af kvikvasilfri - - - millibör - {0} millibar - {0} millibör - millimetrar af kvikasilfri {0} millimetrar af kvikasilfri @@ -6053,10 +6215,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pund á fertommu {0} pund á fertommu - - karöt - {0} karat - {0} karöt + + tommur af kvikvasilfri + {0} tomma af kvikasilfri + {0} tommur af kvikvasilfri + + + millibör + {0} millibar + {0} millibör kílómetrar á klukkustund @@ -6073,6 +6240,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} míla á klukkustund {0} mílur á klukkustund + + hnútur + {0} hútur + {0} hnútar + + + ° + {0}° + {0}° + gráður á Celsíus {0} gráða á Celsíus @@ -6088,31 +6265,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvin {0} kelvin - - ekrufet - {0} ekrufet - {0} ekrufet - - - sentilítrar - {0} sentilítri - {0} sentilítrar - - - rúmsentimetrar - {0} rúmsentimetri - {0} rúmsentimetrar - - - rúmfet - {0} rúmfet - {0} rúmfet - - - rúmtommur - {0} rúmtomma - {0} rúmtommur - rúmkílómetrar {0} rúmkílómetri @@ -6122,6 +6274,13 @@ For terms of use, see http://www.unicode.org/copyright.html rúmmetrar {0} rúmmetri {0} rúmmetrar + {0} á rúmmetra + + + rúmsentimetrar + {0} rúmsentimetri + {0} rúmsentimetrar + {0} á rúmsentimetra rúmmílur @@ -6133,25 +6292,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} rúmyard {0} rúmyardar - - bollar - {0} bolli - {0} bollar + + rúmfet + {0} rúmfet + {0} rúmfet - - desilítrar - {0} desilítri - {0} desilítrar + + rúmtommur + {0} rúmtomma + {0} rúmtommur - - vökvaúnsur - {0} vökvaúnsa - {0} vökvaúnsur - - - gallon - {0} gallon - {0} gallon + + megalítrar + {0} megalítri + {0} megalítrar hektólítrar @@ -6162,27 +6316,64 @@ For terms of use, see http://www.unicode.org/copyright.html lítrar {0} lítri {0} lítrar + {0} á lítra - - megalítrar - {0} megalítri - {0} megalítrar + + desilítrar + {0} desilítri + {0} desilítrar + + + sentilítrar + {0} sentilítri + {0} sentilítrar millilítrar {0} millilítri {0} millilítrar - - hálfpottar - {0} hálfpottur - {0} hálfpottar + + mpt + {0} mpt + {0} mpt + + + ástralskir bollar + {0} ástralskur bolli + {0} ástralskir bollar + + + ekrufet + {0} ekrufet + {0} ekrufet + + + gallon + {0} gallon + {0} gallon + {0} á gallon kvartar {0} kvart {0} kvartar + + hálfpottar + {0} hálfpottur + {0} hálfpottar + + + bollar + {0} bolli + {0} bollar + + + vökvaúnsur + {0} vökvaúnsa + {0} vökvaúnsur + matskeiðar {0} matskeið @@ -6193,10 +6384,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} teskeið {0} teskeiðar + + {0} austur + {0} norður + {0} suður + {0}V + - {0}/{1} + {0}/{1} g-hröðun @@ -6208,6 +6405,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + sn. + {0} sn. + {0} sn. + + + rad + {0} rad + {0} rad + + + gráður + {0}° + {0}° + bogamín. {0} bogamín. @@ -6218,30 +6430,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} bogasek. {0} bogasek. - - gráður - {0}° - {0}° - - - rad - {0} rad - {0} rad - - - ekrur - {0} ek. - {0} ek. + + km² + {0} km² + {0} km² hektarar {0} ha {0} ha + + fermetrar + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + fermílur + {0} fermíla + {0} fermílur + + + ekrur + {0} ek. + {0} ek. + + + yardar² + {0} yd² + {0} yd² ferfet @@ -6252,91 +6476,106 @@ For terms of use, see http://www.unicode.org/copyright.html tommur² {0} t² {0} t² + {0}/t² - - km² - {0} km² - {0} km² - - - fermetrar - {0} m² - {0} m² - - - fermílur - {0} fermíla - {0} fermílur - - - yardar² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt lítrar/km {0} l/km {0} l/km + + l/100 km + {0} l/100 km + {0} l/100 km + mílur/gallon {0} mí./gal. {0} mí./gal. - - biti - {0} biti - {0} bitar - - - bæti - {0} bæti - {0} bæti - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + bæti + {0} bæti + {0} bæti + + + biti + {0} biti + {0} bitar + + + árh + {0} árh + {0} árh + + + ár + {0} ár + {0} ár + {0}/ári + + + mánuðir + {0} mán. + {0} mán. + {0}/m + + + vikur + {0} vika + {0} vikur + {0}/v + dagar {0} dagur {0} dagar + {0}/d. klukkustundir @@ -6344,30 +6583,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} klst. {0}/klst. - - μsek. - {0} μs - {0} μs - - - millisek. - {0} ms - {0} ms - mín. {0} mín. {0} mín. - - - mánuðir - {0} mán. - {0} mán. - - - nanósek. - {0} ns - {0} ns + {0}/min sek. @@ -6375,15 +6595,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sek. {0}/sek. - - vikur - {0} vika - {0} vikur + + millisek. + {0} ms + {0} ms - - ár - {0} ár - {0} ár + + μsek. + {0} μs + {0} μs + + + nanósek. + {0} ns + {0} ns A @@ -6405,6 +6630,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -6415,21 +6645,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kal {0} kal - - júl - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kílójúl {0} kJ {0} kJ + + júl + {0} J + {0} J + kWh {0} kWh @@ -6440,201 +6665,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - se - {0} se - {0} se + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + metrar + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - fet - {0} fet - {0} fet - - - tommur - {0} t. - {0} t. - - - km - {0} km - {0} km - - - ljósár - {0} ljósár - {0} ljósár - - - metrar - {0} m - {0} m - - - µmetrar - {0} µm - {0} µm - - - mílur - {0} mí - {0} mí + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + µmetrar + {0} µm + {0} µm + nm {0} nm {0} nm - - sml - {0} sml - {0} sml - - - parsek - {0} pc - {0} pc - pm {0} pm {0} pm + + mílur + {0} mí + {0} mí + yardar {0} yd {0} yd + + fet + {0} fet + {0} fet + {0}/fet + + + tommur + {0} t. + {0} t. + {0}/t. + + + parsek + {0} pc + {0} pc + + + ljósár + {0} ljósár + {0} ljósár + + + se + {0} se + {0} se + + + sml + {0} sml + {0} sml + + + sæ. míl. + {0} sæ. míl. + {0} sæ. míl. + lúx {0} lx {0} lx - - karöt - {0} kt. - {0} kt. - - - grömm - {0} g - {0} g + + tn + {0} tn + {0} tn kg {0} kg {0} kg + {0}/kg - - tonn - {0} tn - {0} tn - - - µg - {0} µg - {0} µg + + grömm + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - únsur - {0} únsa - {0} únsur - - - troyesoz - {0} oz t - {0} oz t - - - pund - {0} p. - {0} p. + + µg + {0} µg + {0} µg BNA tonn {0} BNA tn {0} BNA tn + + pund + {0} lb + {0} lb + {0}/lb + + + únsur + {0} únsa + {0} únsur + {0}/oz + + + troyesoz + {0} oz t + {0} oz t + + + karöt + {0} kt. + {0} kt. + GW {0} GW {0} GW - - - {0} hö - {0} hö - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW vött {0} W {0} W + + mW + {0} mW + {0} mW + + + + {0} hö + {0} hö + hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbör - mm Hg {0} mm Hg @@ -6645,10 +6874,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kt - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbör kílómetrar á klukkustund @@ -6665,6 +6899,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} míla/klst. {0} mílur/klst. + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + gráður á Celsíus {0}°C @@ -6680,20 +6924,32 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ekrufet - {0} ekrufet - {0} ekrufet + + km³ + {0} km³ + {0} km³ - - cl - {0} cl - {0} cl + + + {0} m³ + {0} m³ + {0}/m³ cm³ {0} cm³ {0} cm³ + {0}/cm³ + + + mí³ + {0} mí³ + {0} mí³ + + + yardar³ + {0} yd³ + {0} yd³ fet³ @@ -6705,45 +6961,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} t³ {0} t³ - - km³ - {0} km³ - {0} km³ - - - - {0} m³ - {0} m³ - - - mí³ - {0} rúmmíla - {0} rúmmílur - - - yardar³ - {0} yd³ - {0} yd³ - - - bollar - {0} bolli - {0} bollar - - - dl - {0} dl - {0} dl - - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml hl @@ -6754,27 +6975,64 @@ For terms of use, see http://www.unicode.org/copyright.html lítrar {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl ml {0} ml {0} ml - - hálfp. - {0} hálfp. - {0} hálfp. + + mpt + {0} mpt + {0} mpt + + + ástr. bolli + {0} ástr. bolli + {0} ástr. bollar + + + ekrufet + {0} ekrufet + {0} ekrufet + + + gal + {0} gal + {0} gal + {0}/gal qts {0} qt {0} qt + + hálfp. + {0} hálfp. + {0} hálfp. + + + bollar + {0} bolli + {0} bollar + + + fl oz + {0} fl oz + {0} fl oz + msk {0} msk @@ -6785,15 +7043,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsk {0} tsk + + {0} A + {0} N + {0} S + {0} V + - {0}/{1} + {0}/{1} {0}G {0}G + + {0}° + {0}° + {0}′ {0}′ @@ -6802,104 +7070,105 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} ek. - {0} ek. + + {0} km² + {0} km² {0} ha {0} ha - - {0} ferfet - {0} ferfet - - - {0} km² - {0} km² - {0} m² {0} m² + {0}/m² + + + {0}/cm² {0}mí² {0}mí² - - dagur - {0} d. - {0} d. + + {0} ek. + {0} ek. - - klukkustund - {0} klst. - {0} klst. + + {0} ferfet + {0} ferfet - - millisek. - {0}ms - {0}ms + + l/100km + {0}l/100km + {0}l/100km - - mín. - {0} mín. - {0} mín. + + árh + {0}árh + {0}árh + + + ár + {0}á + {0}á + {0}/ár mánuður {0} mán. {0} mán. + + vika + {0} v. + {0} v. + {0}/v + + + dagur + {0} d. + {0} d. + {0}/d. + + + klukkustund + {0} klst. + {0} klst. + + + mín. + {0} mín. + {0} mín. + {0}/min + sek. {0} sek. {0} sek. - - vika - {0} v. - {0} v. - - - ár - {0}á - {0}á - - - cm - {0} cm - {0} cm - - - {0} fet - {0} fet - - - {0}″ - {0}″ + + millisek. + {0}ms + {0}ms km {0} km {0} km - - - {0} lj. - {0} lj. + {0}/km metri {0}m {0}m + {0}/m - - {0} mí - {0} mí + + cm + {0}cm + {0}cm + {0}/cm mm @@ -6910,37 +7179,55 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} mí + {0} mí + {0} yd {0} yd - - g - {0} g - {0} g + + {0} fet + {0} fet + + + {0}″ + {0}″ + {0}/tom + + + {0} lj. + {0} lj. + + + sænskar mílur + {0} sæ. míl + {0} sæ. míl kg {0} kg {0} kg - - {0} únsa - {0} únsur - - - pund - {0} p. - {0} p. + + g + {0} g + {0} g BNA tonn {0} BNA tn {0} BNA tn - - {0} ek - {0} ek + + pund + {0} p. + {0} p. + + + {0} únsa + {0} únsur {0} kW @@ -6950,6 +7237,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} ek + {0} ek + {0} hPa {0} hPa @@ -6989,6 +7280,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} km³ {0} km³ + + {0}/m³ + + + {0}/cm³ + {0}mi³ {0}mi³ @@ -6998,6 +7295,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l + + {0}A + {0}N + {0}S + {0}V + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/is_IS.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/is_IS.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/is_IS.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/is_IS.xml index ed6496b4369..5c28bc4347b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/is_IS.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/is_IS.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/it.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/it.xml similarity index 88% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/it.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/it.xml index 33d888704b9..420f80bfed3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/it.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/it.xml @@ -1,13 +1,12 @@ - - - + @@ -59,7 +58,6 @@ For terms of use, see http://www.unicode.org/copyright.html aymara azerbaigiano azero - azero meridionale baschiro beluci balinese @@ -76,6 +74,7 @@ For terms of use, see http://www.unicode.org/copyright.html bafut badaga bulgaro + beluci occidentale bhojpuri bislama bicol @@ -93,7 +92,7 @@ For terms of use, see http://www.unicode.org/copyright.html brahui bodo bosniaco - akoose + akoose buriat bugi bulu @@ -126,7 +125,7 @@ For terms of use, see http://www.unicode.org/copyright.html ceco kashubian slavo della Chiesa - chuvash + ciuvascio gallese danese dakota @@ -222,7 +221,7 @@ For terms of use, see http://www.unicode.org/copyright.html gujarati wayuu gusii - manx + mannese gwichʼin hausa haida @@ -291,7 +290,7 @@ For terms of use, see http://www.unicode.org/copyright.html kuanyama kazako kako - kalaallisut + groenlandese kalenjin khmer kimbundu @@ -333,6 +332,7 @@ For terms of use, see http://www.unicode.org/copyright.html lao lolo bantu lozi + luri settentrionale lituano letgallo luba-katanga @@ -386,7 +386,7 @@ For terms of use, see http://www.unicode.org/copyright.html birmano myene erzya - mazandarani + mazandarani nauru min nan napoletano @@ -394,6 +394,7 @@ For terms of use, see http://www.unicode.org/copyright.html norvegese bokmål ndebele del nord basso tedesco + basso tedesco olandese nepalese newari ndonga @@ -486,6 +487,7 @@ For terms of use, see http://www.unicode.org/copyright.html scozzese sindhi sassarese + curdo meridionale sami del nord seneca sena @@ -528,8 +530,8 @@ For terms of use, see http://www.unicode.org/copyright.html sumero svedese swahili + congo swahili comoriano - congo swahili siriaco classico siriaco slesiano @@ -595,6 +597,7 @@ For terms of use, see http://www.unicode.org/copyright.html walamo waray washo + warlpiri wolof wu kalmyk @@ -625,6 +628,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -670,9 +674,9 @@ For terms of use, see http://www.unicode.org/copyright.html - + - + @@ -784,7 +788,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + Mondo @@ -795,7 +799,7 @@ For terms of use, see http://www.unicode.org/copyright.html Africa occidentale America Centrale Africa orientale - Africa del Nord + Nordafrica Africa centrale Africa del Sud Americhe @@ -817,7 +821,7 @@ For terms of use, see http://www.unicode.org/copyright.html Europa settentrionale Europa occidentale America Latina - Isola di Ascensione + Isola Ascensione Andorra Emirati Arabi Uniti Afghanistan @@ -825,17 +829,16 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antille Olandesi Angola Antartide Argentina - Samoa Americane + Samoa americane Austria Australia Aruba - Isole Aland + Isole Åland Azerbaigian - Bosnia-Erzegovina + Bosnia ed Erzegovina Barbados Bangladesh Belgio @@ -857,12 +860,12 @@ For terms of use, see http://www.unicode.org/copyright.html Bielorussia Belize Canada - Isole Cocos + Isole Cocos (Keeling) Congo - Kinshasa Congo (RDC) Repubblica Centrafricana Congo-Brazzaville - Congo (repubblica) + Congo (Repubblica) Svizzera Costa d’Avorio Isole Cook @@ -875,7 +878,7 @@ For terms of use, see http://www.unicode.org/copyright.html Cuba Capo Verde Curaçao - Isola di Christmas + Isola Christmas Cipro Repubblica Ceca Germania @@ -889,7 +892,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ecuador Estonia Egitto - Sahara Occidentale + Sahara occidentale Eritrea Spagna Etiopia @@ -897,16 +900,16 @@ For terms of use, see http://www.unicode.org/copyright.html Finlandia Figi Isole Falkland - Isole Falkland (isole Malvine) + Isole Falkland (Isole Malvine) Micronesia - Isole Faroe + Isole Fær Øer Francia Gabon Regno Unito GB Grenada Georgia - Guiana Francese + Guyana francese Guernsey Ghana Gibilterra @@ -916,13 +919,13 @@ For terms of use, see http://www.unicode.org/copyright.html Guadalupa Guinea Equatoriale Grecia - Georgia del Sud e isole Sandwich meridionali + Georgia del Sud e isole Sandwich australi Guatemala Guam Guinea-Bissau Guyana RAS di Hong Kong - Hong-Kong + Hong Kong Isole Heard e McDonald Honduras Croazia @@ -934,7 +937,7 @@ For terms of use, see http://www.unicode.org/copyright.html Israele Isola di Man India - Territorio Britannico dell’Oceano Indiano + Territorio britannico dell’Oceano Indiano Iraq Iran Islanda @@ -973,13 +976,13 @@ For terms of use, see http://www.unicode.org/copyright.html Madagascar Isole Marshall Repubblica di Macedonia - Repubblica ex Jugoslava di Macedonia + Ex Repubblica Jugoslava di Macedonia Mali Myanmar (Birmania) Mongolia RAS di Macao Macao - Isole Marianne Settentrionali + Isole Marianne settentrionali Martinica Mauritania Montserrat @@ -988,7 +991,7 @@ For terms of use, see http://www.unicode.org/copyright.html Maldive Malawi Messico - Malesia + Malaysia Mozambico Namibia Nuova Caledonia @@ -1005,7 +1008,7 @@ For terms of use, see http://www.unicode.org/copyright.html Oman Panamá Perù - Polinesia Francese + Polinesia francese Papua Nuova Guinea Filippine Pakistan @@ -1020,13 +1023,13 @@ For terms of use, see http://www.unicode.org/copyright.html Paraguay Qatar Oceania lontana - Réunion + Riunione Romania Serbia - Federazione Russa + Russia Ruanda Arabia Saudita - Isole Solomon + Isole Salomone Seychelles Sudan Svezia @@ -1040,7 +1043,7 @@ For terms of use, see http://www.unicode.org/copyright.html Senegal Somalia Suriname - Sudan del Sud + Sud Sudan São Tomé e Príncipe El Salvador Sint Maarten @@ -1049,12 +1052,13 @@ For terms of use, see http://www.unicode.org/copyright.html Tristan da Cunha Isole Turks e Caicos Ciad - Territori australi francesi + Terre australi francesi Togo - Tailandia + Thailandia Tagikistan Tokelau - Timor Est + Timor Leste + Timor Est Turkmenistan Tunisia Tonga @@ -1065,7 +1069,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tanzania Ucraina Uganda - Isole minori lontane dagli USA + Altre isole americane del Pacifico Stati Uniti USA Uruguay @@ -1085,7 +1089,7 @@ For terms of use, see http://www.unicode.org/copyright.html Sudafrica Zambia Zimbabwe - Regione non valida o sconosciuta + Regione sconosciuta ortografia tradizionale tedesca @@ -1146,6 +1150,9 @@ For terms of use, see http://www.unicode.org/copyright.html Ordinamento numerico Sicurezza ordinamento Valuta + Sistema orario (12 o 24 ore) + Tipo di interruzione di riga + Sistema di misurazione Numeri Fuso orario Variante lingua @@ -1153,121 +1160,131 @@ For terms of use, see http://www.unicode.org/copyright.html Uso privato - Cifre indo-arabe - Cifre indo-arabe estese - Numeri armeni - Numeri armeni minuscoli - Cifre balinesi - Cifre bengalesi - cinese tradizionale - Cifre brahmi - Calendario buddista - Cifre chakma - Cifre cham - Calendario cinese - Calendario copto - Calendario Dangi - Cifre devanagari - Ordinamento dizionario - Ordinamento Unicode predefinito - eor - Numeri etiopi - Calendario etiope - Calendario etiope Amete Alem - Numeri finanziari - Cifre a larghezza intera - cinese semplificato - Numeri georgiani - Calendario gregoriano - Numeri greci - Numeri greci minuscoli - Cifre gujarati - Cifre gurmukhi - Numeri decimali cinesi - Numeri in cinese semplificato - Numeri finanziari in cinese semplificato - Numeri in cinese tradizionale - Numeri finanziari in cinese tradizionale - Numeri ebraici - Calendario ebraico - Ordina tutto - calendario nazionale indiano - Calendario islamico - calendario civile islamico - Calendario islamico (Arabia Saudita, osservazione) - Calendario islamico (tabulare, era astronomica) - Calendario islamico (Umm al-Qura) - Calendario ISO-8601 - Calendario giapponese - Cifre giavanesi - Numeri giapponesi - Numeri finanziari giapponesi - Cifre Kayah Li - Cifre khmer - Cifre kannada - Cifre tai tham hora - Cifre tai tham tham - Cifre lao - Cifre occidentali - Cifre lepcha - Cifre limbu - Ordina prima lettere minuscole - Cifre malayalam - Numeri mongoli - Cifre Meetei Mayek - Cifre birmane - Cifre shan birmane - Cifre native - Cifre N’Ko - Ordina accenti normalmente - Ordina lettere maiuscole/minuscole normalmente - Ordina senza distinzione tra maiuscole e minuscole - Ordina Kana separatamente - Ordina senza normalizzazione - Ordina cifre individualmente - Ordina simboli - Cifre Ol Chiki - Cifre oriya - Cifre osmanya - Calendario persiano - ordine elenco telefonico - Ordinamento fonetico - ordine pinyin - Ordina solo lettere di base - Ordina accenti/lettere/larghezza/Kana - Ordinamento riformato - Calendario Minguo - Numeri romani - Numeri romani minuscoli - Cifre saurashtra - Ricerca generica - Cerca per consonante hangul iniziale - Ordina accenti - Ordina ignorando i simboli - Cifre sharada - Cifre Sora Sompeng - Ordinamento standard - ordine segni - Cifre sundanesi - Cifre takri - Cifre nuovo Tai Lue - Numeri tamil tradizionali - Cifre tamil - Cifre telugu - Ordina accenti/lettere/larghezza - Cifre thailandesi - Cifre tibetane - ordine tradizionale - Numeri tradizionali - Ordinamento in base ai radicali - Ordina prima lettere minuscole - Cifre Vai - Ordina accenti capovolti - Ordina distinzione tra maiuscole e minuscole - Ordina Kana diversamente - Ordina Unicode normalizzato - Ordina cifre numericamente - Ordinamento Zhuyin + Calendario buddista + Calendario cinese + Calendario copto + Calendario Dangi + Calendario etiope + Calendario etiope Amete Alem + Calendario gregoriano + Calendario ebraico + calendario nazionale indiano + Calendario islamico + calendario civile islamico + Calendario islamico (Arabia Saudita, osservazione) + Calendario islamico (tabulare, era astronomica) + Calendario islamico (Umm al-Qura) + Calendario ISO-8601 + Calendario giapponese + Calendario persiano + Calendario Minguo + Ordina simboli + Ordina ignorando i simboli + Ordina accenti normalmente + Ordina accenti capovolti + Ordina prima lettere minuscole + Ordina lettere maiuscole/minuscole normalmente + Ordina prima lettere minuscole + Ordina senza distinzione tra maiuscole e minuscole + Ordina distinzione tra maiuscole e minuscole + Ordina Kana separatamente + Ordina Kana diversamente + cinese tradizionale + Ordinamento dizionario + Ordinamento Unicode predefinito + eor + cinese semplificato + ordine elenco telefonico + Ordinamento fonetico + ordine pinyin + Ordinamento riformato + Ricerca generica + Cerca per consonante hangul iniziale + Ordinamento standard + ordine segni + ordine tradizionale + Ordinamento in base ai radicali + Ordinamento Zhuyin + Ordina senza normalizzazione + Ordina Unicode normalizzato + Ordina cifre individualmente + Ordina cifre numericamente + Ordina tutto + Ordina solo lettere di base + Ordina accenti/lettere/larghezza/Kana + Ordina accenti + Ordina accenti/lettere/larghezza + Sistema orario a 12 ore (0–11) + Sistema orario a 12 ore (1–12) + Sistema orario a 24 ore (0–23) + Sistema orario a 24 ore (1–24) + Interruzione di riga facoltativa + Interruzione di riga normale + Interruzione di riga forzata + Sistema metrico + Sistema imperiale britannico + Sistema consuetudinario statunitense + Cifre indo-arabe + Cifre indo-arabe estese + Numeri armeni + Numeri armeni minuscoli + Cifre balinesi + Cifre bengalesi + Cifre brahmi + Cifre chakma + Cifre cham + Cifre devanagari + Numeri etiopi + Numeri finanziari + Cifre a larghezza intera + Numeri georgiani + Numeri greci + Numeri greci minuscoli + Cifre gujarati + Cifre gurmukhi + Numeri decimali cinesi + Numeri in cinese semplificato + Numeri finanziari in cinese semplificato + Numeri in cinese tradizionale + Numeri finanziari in cinese tradizionale + Numeri ebraici + Cifre giavanesi + Numeri giapponesi + Numeri finanziari giapponesi + Cifre Kayah Li + Cifre khmer + Cifre kannada + Cifre tai tham hora + Cifre tai tham tham + Cifre lao + Cifre occidentali + Cifre lepcha + Cifre limbu + Cifre malayalam + Numeri mongoli + Cifre Meetei Mayek + Cifre birmane + Cifre shan birmane + Cifre native + Cifre N’Ko + Cifre Ol Chiki + Cifre oriya + Cifre osmanya + Numeri romani + Numeri romani minuscoli + Cifre saurashtra + Cifre sharada + Cifre Sora Sompeng + Cifre sundanesi + Cifre takri + Cifre nuovo Tai Lue + Numeri tamil tradizionali + Cifre tamil + Cifre telugu + Cifre thailandesi + Cifre tibetane + Numeri tradizionali + Cifre Vai BGN @@ -1322,9 +1339,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0}… …{0} {0}…{1} - {0} … + {0} … … {0} - {0} … {1} + {0} … {1} ? @@ -1402,16 +1419,17 @@ For terms of use, see http://www.unicode.org/copyright.html - {1}, {0} + {1}, {0} - {1}, {0} + {1}, {0} d + ccc E d y G MMM y G @@ -1429,6 +1447,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d MMM E d MMM + d MMMM mm:ss y G y G @@ -1752,30 +1771,82 @@ For terms of use, see http://www.unicode.org/copyright.html - - m. - n - p. - - + + mezzanotte AM mezzogiorno PM + mattina + pomeriggio + sera + notte + + + mezzanotte + m. + mezzogiorno + p. + mattina + pomeriggio + sera + notte + + + mezzanotte + AM + mezzogiorno + PM + mattina + pomeriggio + sera + notte + + + + + mezzanotte + AM + mezzogiorno + PM + mattina + pomeriggio + sera + notte + + + mezzanotte + m. + mezzogiorno + p. + mattina + pomeriggio + sera + notte + + + mezzanotte + AM + mezzogiorno + PM + mattina + pomeriggio + sera + notte a.C. - BCE + avanti Era Volgare d.C. - CE + Era Volgare - aC - BCE - dC - CE + a.C. + a.E.V. + d.C. + E.V. aC @@ -1841,12 +1912,12 @@ For terms of use, see http://www.unicode.org/copyright.html - {1}, {0} + {1}, {0} - {1}, {0} + {1}, {0} @@ -1877,6 +1948,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d MMM E d MMM + d MMMM mm:ss y M/y @@ -2033,7 +2105,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Prima della R.O.C. + Prima di R.O.C. Minguo @@ -2041,10 +2113,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Era + era - Anno + anno anno scorso quest’anno anno prossimo @@ -2080,7 +2152,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Trimestre + trimestre + trimestre scorso + questo trimestre + trimestre prossimo tra {0} trimestre tra {0} trimestri @@ -2092,6 +2167,9 @@ For terms of use, see http://www.unicode.org/copyright.html trim. + trim. scorso + questo trim. + trim. prossimo tra {0} trim. tra {0} trim. @@ -2103,6 +2181,9 @@ For terms of use, see http://www.unicode.org/copyright.html trim. + trim. scorso + questo trim. + trim. prossimo tra {0} trim. tra {0} trim. @@ -2113,7 +2194,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Mese + mese mese scorso questo mese mese prossimo @@ -2149,7 +2230,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Settimana + settimana settimana scorsa questa settimana settimana prossima @@ -2185,7 +2266,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Giorno + giorno l’altro ieri ieri oggi @@ -2223,7 +2304,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Giorno della settimana + giorno della settimana domenica scorsa @@ -2334,7 +2415,7 @@ For terms of use, see http://www.unicode.org/copyright.html AM/PM - Ora + ora tra {0} ora tra {0} ore @@ -2367,7 +2448,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Minuto + minuto tra {0} minuto tra {0} minuti @@ -2434,7 +2515,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Fuso orario + fuso orario @@ -2911,7 +2992,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kosrae - Isole Faeroe + Isole Fær Øer Parigi @@ -2921,7 +3002,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Ora legale Regno Unito + Ora legale del Regno Unito Londra @@ -3014,7 +3095,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Ora legale Irlanda + Ora legale dell’Irlanda Dublino @@ -3312,6 +3393,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -3396,6 +3480,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Čita + Jakutsk @@ -3414,6 +3501,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolymsk + Kamchatka @@ -3565,7 +3655,7 @@ For terms of use, see http://www.unicode.org/copyright.html Honolulu - Fuso orario Alaska + Anchorage Yakutat @@ -3592,10 +3682,10 @@ For terms of use, see http://www.unicode.org/copyright.html Denver - Beulah, Dakota del nord + Beulah, Dakota del nord - New Salem, Dakota del nord + New Salem, Dakota del nord Center, Dakota del nord @@ -3723,8 +3813,8 @@ For terms of use, see http://www.unicode.org/copyright.html Ora dell’Alaska - Ora standard Alaska - Ora legale Alaska + Ora standard dell’Alaska + Ora legale dell’Alaska @@ -3771,9 +3861,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Ora di Apia - Ora standard di Apia - Ora legale di Apia + Ora di Apia + Ora standard di Apia + Ora legale di Apia @@ -3924,7 +4014,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Ora dell’Isola di Natale + Ora dell’Isola Christmas @@ -4651,12 +4741,12 @@ For terms of use, see http://www.unicode.org/copyright.html 00 miliardi 000 miliardi 000 miliardi - 0 mille di miliardi - 0 mila di miliardi - 00 mila di miliardi - 00 mila di miliardi - 000 mila di miliardi - 000 mila di miliardi + 0 mille miliardi + 0 mila miliardi + 00 mila miliardi + 00 mila miliardi + 000 mila miliardi + 000 mila miliardi @@ -4711,6 +4801,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 ¤ + 0 ¤ + 00 ¤ + 00 ¤ + 000 ¤ + 000 ¤ + 0 Mio ¤ + 0 Mio ¤ + 00 Mio ¤ + 00 Mio ¤ + 000 Mio ¤ + 000 Mio ¤ + 0 Mrd ¤ + 0 Mrd ¤ + 00 Mrd ¤ + 00 Mrd ¤ + 000 Mrd ¤ + 000 Mrd ¤ + 0 Bln ¤ + 0 Bln ¤ + 00 Bln ¤ + 00 Bln ¤ + 000 Bln ¤ + 000 Bln ¤ + + {0} {1} {0} {1} @@ -4746,9 +4864,9 @@ For terms of use, see http://www.unicode.org/copyright.html AMD - fiorino delle Antille Olandesi - fiorino delle Antille Olandesi - fiorini delle Antille Olandesi + fiorino delle Antille olandesi + fiorino delle Antille olandesi + fiorino delle Antille olandesi ANG @@ -4756,6 +4874,7 @@ For terms of use, see http://www.unicode.org/copyright.html kwanza angolano kwanzas angolani AOA + Kz kwanza angolano (1977–1990) @@ -4808,17 +4927,18 @@ For terms of use, see http://www.unicode.org/copyright.html dinar Bosnia-Herzegovina - marco conv. Bosnia-Erzegovina - marco bosniaco - marchi bosniaci + marco convertibile della Bosnia-Herzegovina + marco convertibile della Bosnia-Herzegovina + marchi convertibili della Bosnia-Herzegovina BAM + KM dollaro di Barbados dollaro di Barbados dollari di Barbados BBD - $ + $ taka bangladese @@ -4864,20 +4984,21 @@ For terms of use, see http://www.unicode.org/copyright.html dollaro delle Bermuda dollari delle Bermuda BMD - $ + $ dollaro del Brunei dollaro del Brunei dollari del Brunei BND - $ + $ boliviano boliviano boliviani BOB + $b peso boliviano @@ -4912,12 +5033,12 @@ For terms of use, see http://www.unicode.org/copyright.html dollaro delle Bahamas dollari delle Bahamas BSD - $ + $ - ngultrum butanese - ngultrum del Bhutan - ngultrum del Bhutan + ngultrum bhutanese + ngultrum bhutanese + ngultrum bhutanesi BTN @@ -4928,6 +5049,7 @@ For terms of use, see http://www.unicode.org/copyright.html pula del Botswana pula del Botswana BWP + P nuovo rublo bielorusso (1994–1999) @@ -4944,7 +5066,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollaro del Belize dollari del Belize BZD - $ + $ dollaro canadese @@ -4987,7 +5109,7 @@ For terms of use, see http://www.unicode.org/copyright.html peso colombiano pesos colombiani COP - $ + $ colón costaricano @@ -5003,22 +5125,23 @@ For terms of use, see http://www.unicode.org/copyright.html corona forte cecoslovacca - peso cubano convertibile + peso cubano convertibile peso cubano convertibile pesos cubani convertibili CUC + CUC$ peso cubano peso cubano pesos cubani CUP - $ + $ - escudo del Capo Verde - escudo del Capo Verde - escudo del Capo Verde + escudo capoverdiano + escudo capoverdiano + escudos capoverdiani CVE @@ -5029,6 +5152,7 @@ For terms of use, see http://www.unicode.org/copyright.html corona ceca corone ceche CZK + ostmark della Germania Orientale @@ -5037,9 +5161,9 @@ For terms of use, see http://www.unicode.org/copyright.html marco tedesco - franco gibutiano - franco gibutiano - franco gibutiano + franco di Gibuti + franco di Gibuti + franchi di Gibuti DJF @@ -5047,13 +5171,14 @@ For terms of use, see http://www.unicode.org/copyright.html corona danese corone danesi DKK + kr peso dominicano peso dominicano pesos dominicani DOP - $ + $ dinaro algerino @@ -5075,11 +5200,12 @@ For terms of use, see http://www.unicode.org/copyright.html sterlina egiziana sterline egiziane EGP + £E nakfa eritreo - nakfa eritreo - nakfa eritrei + nakfa eritreo + nakfa eritrei ERN @@ -5092,9 +5218,9 @@ For terms of use, see http://www.unicode.org/copyright.html peseta spagnola - birr etiopico - birr etiopico - birr etiopici + birr etiope + birr etiope + birr etiopi ETB @@ -5112,21 +5238,22 @@ For terms of use, see http://www.unicode.org/copyright.html dollaro delle Figi dollari delle Figi FJD - $ + $ sterlina delle Falkland sterlina delle Falkland sterline delle Falkland FKP + £ franco francese - sterlina inglese - sterlina britannica - sterline britanniche + sterlina britannica + sterlina britannica + sterline britanniche £ £ @@ -5138,6 +5265,7 @@ For terms of use, see http://www.unicode.org/copyright.html lari georgiano lari georgiani GEL + cedi del Ghana @@ -5156,16 +5284,17 @@ For terms of use, see http://www.unicode.org/copyright.html £ - dalasi del Gambia - dalasi del Gambia - dalasi del Gambia + dalasi gambiano + dalasi gambiano + dalasi gambiani GMD franco della Guinea - franco della Guinea - franchi della Guinea + franco della Guinea + franchi della Guinea GNF + FG syli della Guinea @@ -5181,6 +5310,7 @@ For terms of use, see http://www.unicode.org/copyright.html quetzal guatemalteco quetzal guatemaltechi GTQ + Q escudo della Guinea portoghese @@ -5207,6 +5337,7 @@ For terms of use, see http://www.unicode.org/copyright.html lempira honduregna lempire honduregne HNL + L dinaro croato @@ -5216,6 +5347,7 @@ For terms of use, see http://www.unicode.org/copyright.html kuna croata kune croate HRK + kn gourde haitiano @@ -5228,12 +5360,14 @@ For terms of use, see http://www.unicode.org/copyright.html fiorino ungherese fiorini ungheresi HUF + Ft rupia indonesiana rupia indonesiana rupie indonesiane IDR + Rp sterlina irlandese @@ -5272,6 +5406,7 @@ For terms of use, see http://www.unicode.org/copyright.html corona islandese corone islandesi ISK + kr ¤ #,##0.00 @@ -5306,9 +5441,9 @@ For terms of use, see http://www.unicode.org/copyright.html KES - som Kirghiso - som Kirghiso - som Kirghisi + som kirghiso + som kirghiso + som kirghisi KGS @@ -5319,16 +5454,18 @@ For terms of use, see http://www.unicode.org/copyright.html - franco Comoriano - franco Comoriano - franchi Comoriani + franco comoriano + franco comoriano + franchi comoriani KMF + CF won nordcoreano won nordcoreano won nordcoreani KPW + won sudcoreano @@ -5345,8 +5482,8 @@ For terms of use, see http://www.unicode.org/copyright.html dollaro delle Isole Cayman - dollaro delle Isole Cayman - dollari delle Isole Cayman + dollaro delle Isole Cayman + dollari delle Isole Cayman KYD $ @@ -5369,12 +5506,14 @@ For terms of use, see http://www.unicode.org/copyright.html lira libanese lire libanesi LBP + rupia di Sri Lanka - rupia singalese - rupie singalesi + rupia di Sri Lanka + rupie di Sri Lanka LKR + Rs dollaro liberiano @@ -5439,14 +5578,15 @@ For terms of use, see http://www.unicode.org/copyright.html ariary malgascio ariary malgasci MGA + Ar franco malgascio - dinaro macedone - denaro macedone - denari macedoni + denar macedone + dinaro macedone + dinari macedoni MKD @@ -5457,6 +5597,7 @@ For terms of use, see http://www.unicode.org/copyright.html kyat di Myanmar kyat di Myanmar MMK + K tugrik mongolo @@ -5473,8 +5614,8 @@ For terms of use, see http://www.unicode.org/copyright.html ouguiya della Mauritania - ouguiya della Mauritania - ouguiya della Mauritania + ouguiya della Mauritania + ouguiya della Mauritania MRO @@ -5488,6 +5629,7 @@ For terms of use, see http://www.unicode.org/copyright.html rupia mauriziana rupie mauriziane MUR + Rs rufiyaa delle Maldive @@ -5515,10 +5657,11 @@ For terms of use, see http://www.unicode.org/copyright.html unidad de inversion (UDI) messicana - ringgit della Malesia + ringgit malese ringgit malese ringgit malesi MYR + RM escudo del Mozambico @@ -5534,7 +5677,7 @@ For terms of use, see http://www.unicode.org/copyright.html dollaro namibiano dollari namibiani NAD - $ + $ naira nigeriana @@ -5553,6 +5696,7 @@ For terms of use, see http://www.unicode.org/copyright.html córdoba nicaraguense córdoba nicaraguensi NIO + C$ fiorino olandese @@ -5562,28 +5706,30 @@ For terms of use, see http://www.unicode.org/copyright.html corona norvegese corone norvegesi NOK + NKr rupia nepalese rupia nepalese rupie nepalesi NPR + Rs dollaro neozelandese dollaro neozelandese dollari neozelandesi NZ$ - $ + $ - rial dell’Oman - rial dell’Oman - rial dell’Oman + rial omanita + rial omanita + rial omaniti OMR - balboa di Panama + balboa panamense balboa panamense balboa panamensi PAB @@ -5592,38 +5738,40 @@ For terms of use, see http://www.unicode.org/copyright.html inti peruviano - sol nuevo peruviano - nuevo sol peruviano - nuevos soles peruviani + nuovo sol peruviano + nuovo sol peruviano + nuovi sol peruviani PEN sol peruviano - kina della Papua Nuova Guinea + kina papuana kina papuana kina papuane PGK - peso delle Filippine + peso filippino peso filippino pesos filippini PHP - rupia del Pakistan + rupia pakistana rupia pakistana rupie pakistane PKR + Rs złoty polacco złoty polacco złoty polacchi PLN + złoty Polacco (1950–1995) @@ -5634,16 +5782,16 @@ For terms of use, see http://www.unicode.org/copyright.html escudo portoghese - guaraní del Paraguay - guaraní paraguaiano - guaraní paraguaiani + guaraní paraguayano + guaraní paraguayano + guaraní paraguayani PYG - rial del Qatar - rial del Qatar - rial del Qatar + rial qatariano + rial qatariano + rial qatariani QAR @@ -5653,9 +5801,9 @@ For terms of use, see http://www.unicode.org/copyright.html leu della Romania - leu rumeno - leu rumeno - lei rumeni + leu rumeno + leu rumeno + lei rumeni RON @@ -5669,6 +5817,7 @@ For terms of use, see http://www.unicode.org/copyright.html rublo russo rubli russi RUB + rublo della CSI @@ -5678,6 +5827,7 @@ For terms of use, see http://www.unicode.org/copyright.html franco ruandese franchi ruandesi RWF + RF riyal saudita @@ -5686,11 +5836,11 @@ For terms of use, see http://www.unicode.org/copyright.html SAR - dollaro delle Isole Solomon - dollaro delle Isole Solomon - dollari delle Isole Solomon + dollaro delle Isole Salomone + dollaro delle Isole Salomone + dollari delle Isole Salomone SBD - $ + $ rupia delle Seychelles @@ -5712,19 +5862,21 @@ For terms of use, see http://www.unicode.org/copyright.html corona svedese corone svedesi SEK + kr dollaro di Singapore dollaro di Singapore dollari di Singapore SGD - $ + $ sterlina di Sant’Elena sterlina di Sant’Elena sterline di Sant’Elena SHP + £ tallero sloveno @@ -5734,8 +5886,8 @@ For terms of use, see http://www.unicode.org/copyright.html leone della Sierra Leone - leone sierraleonese - leoni della Sierra Leone + leone della Sierra Leone + leoni della Sierra Leone SLL @@ -5745,9 +5897,9 @@ For terms of use, see http://www.unicode.org/copyright.html SOS - dollaro surinamese - dollaro surinamese - dollari surinamesi + dollaro del Suriname + dollaro del Suriname + dollari del Suriname SRD $ @@ -5755,17 +5907,18 @@ For terms of use, see http://www.unicode.org/copyright.html fiorino del Suriname - sterlina sudsudanese - sterlina sudsudanese - sterline sudsudanesi + sterlina sud-sudanese + sterlina sud-sudanese + sterline sud-sudanesi SSP £ dobra di Sao Tomé e Principe - dobra di Sao Tomé e Principe - dobra di Sao Tomé e Principe + dobra di Sao Tomé e Principe + dobra di Sao Tomé e Principe STD + Db rublo sovietico @@ -5778,6 +5931,7 @@ For terms of use, see http://www.unicode.org/copyright.html lira siriana lire siriane SYP + £ lilangeni dello Swaziland @@ -5790,14 +5944,15 @@ For terms of use, see http://www.unicode.org/copyright.html baht thailandese baht thailandesi ฿ + ฿ rublo del Tajikistan - somoni del Tajikistan - somoni del Tajikistan - somoni del Tajikistan + somoni tagiko + somoni tagiko + somoni tagiki TJS @@ -5816,10 +5971,11 @@ For terms of use, see http://www.unicode.org/copyright.html TND - paʻanga di Tonga - paʻanga di Tonga - paʻanga di Tonga + paʻanga tongano + paʻanga tongano + paʻanga tongani TOP + T$ escudo di Timor @@ -5835,14 +5991,14 @@ For terms of use, see http://www.unicode.org/copyright.html lire turche TRY - TL + TL dollaro di Trinidad e Tobago dollaro di Trinidad e Tobago dollari di Trinidad e Tobago TTD - $ + $ nuovo dollaro taiwanese @@ -5853,8 +6009,8 @@ For terms of use, see http://www.unicode.org/copyright.html scellino della Tanzania - scellino della Tanzania - scellini della Tanzania + scellino della Tanzania + scellini della Tanzania TZS @@ -5896,16 +6052,16 @@ For terms of use, see http://www.unicode.org/copyright.html peso uruguaiano (1975–1993) - peso uruguaiano - peso uruguaiano - pesos uruguaiani + peso uruguayano + peso uruguayano + pesos uruguayani UYU $ - sum dell’Uzbekistan - sum dell’Uzbekistan - sum dell’Uzbekistan + sum uzbeco + sum uzbeco + sum uzbechi UZS @@ -5918,11 +6074,12 @@ For terms of use, see http://www.unicode.org/copyright.html bolívar venezuelano bolívares venezuelani VEF + Bs dong vietnamita - dong vietnamita - dong vietnamiti + dong vietnamita + dong vietnamiti @@ -5933,7 +6090,7 @@ For terms of use, see http://www.unicode.org/copyright.html VUV - tala della Samoa Occidentale + tala samoano tala samoano tala samoani WST @@ -5963,10 +6120,11 @@ For terms of use, see http://www.unicode.org/copyright.html unità di acconto europea (XBD) - dollaro dei Caraibi Orientali - dollaro dei Caraibi orientali - dollari dei Caraibi orientali + dollaro dei Caraibi orientali + dollaro dei Caraibi orientali + dollari dei Caraibi orientali EC$ + $ diritti speciali di incasso @@ -6011,8 +6169,8 @@ For terms of use, see http://www.unicode.org/copyright.html riyal yemenita - rial yemenita - rial yemeniti + rial yemenita + rial yemeniti YER @@ -6032,6 +6190,7 @@ For terms of use, see http://www.unicode.org/copyright.html rand sudafricano rand sudafricani ZAR + R kwacha dello Zambia (1968–2012) @@ -6043,6 +6202,7 @@ For terms of use, see http://www.unicode.org/copyright.html kwacha zambiano kwacha zambiani ZMW + ZK nuovo zaire dello Zaire @@ -6077,40 +6237,67 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metro al secondo quadrato {0} metri al secondo quadrato - - primi d’arco - {0} primo d'arco - {0} primi d'arco - - - secondi d’arco - {0} secondo d'arco - {0} secondi d'arco - - - gradi - {0} grado - {0} gradi + + rivoluzione + {0} rivoluzione + {0} rivoluzioni radianti {0} radiante {0} radianti - - acri - {0} acro - {0} acri + + gradi + {0} grado + {0} gradi + + + primi d’arco + {0} primo d’arco + {0} primi d’arco + + + secondi d’arco + {0} secondo d’arco + {0} secondi d’arco + + + chilometri quadrati + {0} chilometro quadrato + {0} chilometri quadrati ettari {0} ettaro {0} ettari + + metri quadrati + {0} metro quadrato + {0} metri quadrati + {0} per metro quadrato + centimetri quadrati {0} centimetro quadrato {0} centimetri quadrati + {0} per centimetro quadrato + + + miglia quadrate + {0} miglio quadrato + {0} miglia quadrate + + + acri + {0} acro + {0} acri + + + iarde quadrate + {0} iarda quadrata + {0} iarde quadrate piedi quadrati @@ -6121,91 +6308,106 @@ For terms of use, see http://www.unicode.org/copyright.html pollici quadrati {0} pollice quadrato {0} pollici quadrati + {0} per pollice quadrato - - chilometri quadrati - {0} chilometro quadrato - {0} chilometri quadrati - - - metri quadrati - {0} metro quadrato - {0} metri quadrati - - - miglia quadrate - {0} miglio quadrato - {0} miglia quadrate - - - iarde quadrate - {0} iarda quadrata - {0} iarde quadrate + + carati + {0} carato + {0} carati litri per chilometro {0} litro per chilometro {0} litri per chilometro + + litri per 100 chilometri + {0} litro per 100 chilometri + {0} litri per 100 chilometri + miglia per gallone {0} miglio per gallone {0} miglia per gallone - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - gigabit - {0} gigabit - {0} gigabit - - - gigabyte - {0} gigabyte - {0} gigabyte - - - kilobit - {0} kilobit - {0} kilobit - - - kilobyte - {0} kilobyte - {0} kilobyte - - - megabit - {0} megabit - {0} megabit - - - megabyte - {0} megabyte - {0} megabyte - - - terabit - {0} terabit - {0} terabit - terabyte {0} terabyte {0} terabyte + + terabit + {0} terabit + {0} terabit + + + gigabyte + {0} gigabyte + {0} gigabyte + + + gigabit + {0} gigabit + {0} gigabit + + + megabyte + {0} megabyte + {0} megabyte + + + megabit + {0} megabit + {0} megabit + + + kilobyte + {0} kilobyte + {0} kilobyte + + + kilobit + {0} kilobit + {0} kilobit + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + secoli + {0} secolo + {0} secoli + + + anni + {0} anno + {0} anni + {0} all’anno + + + mesi + {0} mese + {0} mesi + {0} al mese + + + settimane + {0} settimana + {0} settimane + {0}/settimana + giorni {0} giorno {0} giorni + {0} al giorno ore @@ -6213,30 +6415,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ore {0}/h - - microsecondi - {0} microsecondo - {0} microsecondi - - - millisecondi - {0} millisecondo - {0} millisecondi - minuti {0} minuto {0} minuti - - - mesi - {0} mese - {0} mesi - - - nanosecondi - {0} nanosecondo - {0} nanosecondi + {0} al minuto secondi @@ -6244,15 +6427,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} secondi {0}/s - - settimane - {0} settimana - {0} settimane + + millisecondi + {0} millisecondo + {0} millisecondi - - anni - {0} anno - {0} anni + + microsecondi + {0} microsecondo + {0} microsecondi + + + nanosecondi + {0} nanosecondo + {0} nanosecondi ampere @@ -6274,6 +6462,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volt + + chilocalorie + {0} chilocaloria + {0} chilocalorie + calorie {0} caloria @@ -6284,21 +6477,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} caloria {0} calorie - - joule - {0} joule - {0} joule - - - chilocalorie - {0} chilocaloria - {0} chilocalorie - kilojoule {0} kilojoule {0} kilojoule + + joule + {0} joule + {0} joule + chilowattora {0} chilowattora @@ -6309,201 +6497,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigahertz {0} gigahertz - - hertz - {0} hertz - {0} hertz + + megahertz + {0} megahertz + {0} megahertz kilohertz {0} kilohertz {0} kilohertz - - megahertz - {0} megahertz - {0} megahertz + + hertz + {0} hertz + {0} hertz - - unità astronomiche - {0} unità astronomica - {0} unità astronomiche + + chilometri + {0} chilometro + {0} chilometri + {0} per chilometro - - centimetri - {0} centimetro - {0} centimetri + + metri + {0} metro + {0} metri + {0} per metro decimetri {0} decimetro {0} decimetri - - piedi - {0} piede - {0} piedi - - - pollici - {0} pollice - {0} pollici - - - chilometri - {0} chilometro - {0} chilometri - - - anni luce - {0} anno luce - {0} anni luce - - - metri - {0} metro - {0} metri - - - micrometri - {0} micrometro - {0} micrometri - - - miglia - {0} miglio - {0} miglia + + centimetri + {0} centimetro + {0} centimetri + {0} per centimetro millimetri {0} millimetro {0} millimetri + + micrometri + {0} micrometro + {0} micrometri + nanometri {0} nanometro {0} nanometri - - miglia nautiche - {0} miglio nautico - {0} miglia nautiche - - - parsec - {0} parsec - {0} parsec - picometri {0} picometro {0} picometri + + miglia + {0} miglio + {0} miglia + iarde {0} iarda {0} iarde + + piedi + {0} piede + {0} piedi + {0} per piede + + + pollici + {0} pollice + {0} pollici + {0} per pollice + + + parsec + {0} parsec + {0} parsec + + + anni luce + {0} anno luce + {0} anni luce + + + unità astronomiche + {0} unità astronomica + {0} unità astronomiche + + + miglia nautiche + {0} miglio nautico + {0} miglia nautiche + + + miglia scandinave + {0} miglio scandinavo + {0} miglia scandinave + lux {0} lux {0} lux - - carati - {0} carato - {0} carati - - - grammi - {0} grammo - {0} grammi - - - chilogrammi - {0} chilogrammo - {0} chilogrammi - tonnellate metriche {0} tonnellata metrica {0} tonnellate metriche - - microgrammi - {0} microgrammo - {0} microgrammi + + chilogrammi + {0} chilogrammo + {0} chilogrammi + {0} per chilogrammo + + + grammi + {0} grammo + {0} grammi + {0} per grammo milligrammi {0} milligrammo {0} milligrammi - - once - {0} oncia - {0} once - - - once troy - {0} oncia troy - {0} once troy - - - libbre - {0} libbra - {0} libbre + + microgrammi + {0} microgrammo + {0} microgrammi tonnellate {0} tonnellata {0} tonnellate + + libbre + {0} libbra + {0} libbre + {0} per libbra + + + once + {0} oncia + {0} once + {0} per oncia + + + once troy + {0} oncia troy + {0} once troy + + + carati + {0} carato + {0} carati + gigawatt {0} gigawatt {0} gigawatt - - cavalli vapore - {0} cavallo vapore - {0} cavalli vapore - - - kilowatt - {0} kilowatt - {0} kilowatt - megawatt {0} megawatt {0} megawatt - - milliwatt - {0} milliwatt - {0} milliwatt + + kilowatt + {0} kilowatt + {0} kilowatt watt {0} watt {0} watt + + milliwatt + {0} milliwatt + {0} milliwatt + + + cavalli vapore + {0} cavallo vapore + {0} cavalli vapore + ettopascal {0} ettopascal {0} ettopascal - - pollici di mercurio - {0} pollice di mercurio - {0} pollici di mercurio - - - millibar - {0} millibar - {0} millibar - millimetri di mercurio {0} millimetro di mercurio @@ -6514,10 +6706,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} libbra per pollice quadrato {0} libbre per pollice quadrato - - carati - {0} carato - {0} carati + + pollici di mercurio + {0} pollice di mercurio + {0} pollici di mercurio + + + millibar + {0} millibar + {0} millibar chilometri orari @@ -6534,6 +6731,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} miglio all’ora {0} miglia all’ora + + nodo + {0} nodo + {0} nodi + + + ° + {0}° + {0}° + gradi Celsius {0} grado Celsius @@ -6549,31 +6756,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Kelvin {0} Kelvin - - acre-feet - {0} acre-foot - {0} acre-feet - - - centilitri - {0} centilitro - {0} centilitri - - - centimetri cubi - {0} centimetro cubo - {0} centimetri cubi - - - piedi cubi - {0} piede cubo - {0} piedi cubi - - - pollici cubi - {0} pollice cubo - {0} pollici cubi - chilometri cubi {0} chilometro cubo @@ -6583,6 +6765,13 @@ For terms of use, see http://www.unicode.org/copyright.html metri cubi {0} metro cubo {0} metri cubi + {0} per metro cubo + + + centimetri cubi + {0} centimetro cubo + {0} centimetri cubi + {0} per centimetro cubo miglia cube @@ -6594,25 +6783,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} iarda cubica {0} iarde cubiche - - tazze - {0} tazza - {0} tazze + + piedi cubi + {0} piede cubo + {0} piedi cubi - - decilitri - {0} decilitro - {0} decilitri + + pollici cubi + {0} pollice cubo + {0} pollici cubi - - once fluide - {0} oncia fluida - {0} once fluide - - - galloni - {0} gallone - {0} galloni + + megalitri + {0} megalitro + {0} megalitri ettolitri @@ -6623,27 +6807,64 @@ For terms of use, see http://www.unicode.org/copyright.html litri {0} litro {0} litri + {0} per litro - - megalitri - {0} megalitro - {0} megalitri + + decilitri + {0} decilitro + {0} decilitri + + + centilitri + {0} centilitro + {0} centilitri millilitri {0} millilitro {0} millilitri - - pinte - {0} pinta - {0} pinte + + pinte metriche + {0} pinta metrica + {0} pinte metriche + + + tazze metriche + {0} tazza metrica + {0} tazze metriche + + + acre-feet + {0} acre-foot + {0} acre-feet + + + galloni + {0} gallone + {0} galloni + {0} per gallone quarti {0} quarto {0} quarti + + pinte + {0} pinta + {0} pinte + + + tazze + {0} tazza + {0} tazze + + + once fluide + {0} oncia fluida + {0} once fluide + cucchiai da tavola {0} cucchiaio da tavola @@ -6654,6 +6875,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cucchiaio da tè {0} cucchiai da tè + + {0}E + {0}N + {0}S + {0}O + @@ -6669,6 +6896,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + riv + {0} riv + {0} riv + + + rad + {0} rad + {0} rad + + + ° + {0}° + {0}° + {0}′ @@ -6679,30 +6921,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - ° - {0}° - {0}° - - - rad - {0} rad - {0} rad - - - acri - {0} ac - {0} ac + + km² + {0} km² + {0} km² ettari {0} ha {0} ha + + + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + + + acri + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² piedi quadrati @@ -6713,91 +6967,106 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt L/km {0} L/km {0} L/km + + L/100km + {0} L/100km + {0} L/100km + mpg {0} mpg {0} mpg - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + sec. + {0} sec. + {0} secc. + + + anni + {0} anno + {0} anni + {0}/anno + + + mesi + {0} mese + {0} mesi + {0}/mese + + + settimane + {0} settimana + {0} settimane + {0}/settimana + giorni {0} giorno {0} giorni + {0}/giorno ore @@ -6805,47 +7074,33 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0}/h - - μs - {0} μs - {0} μs + + min + {0} min + {0} min + {0}/min + + + s + {0} s + {0} s + {0}/s ms {0} ms {0} ms - - min - {0} min - {0} min - - - mesi - {0} mese - {0} mesi + + μs + {0} μs + {0} μs ns {0} ns {0} ns - - sec - {0} sec - {0} sec - {0}/s - - - settimane - {0} settimana - {0} settimane - - - anni - {0} anno - {0} anni - A {0} A @@ -6866,6 +7121,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -6876,21 +7136,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + J + {0} J + {0} J + kWh {0} kWh @@ -6901,201 +7156,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + metri + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - piedi - {0} ft - {0} ft - - - pollici - {0} in - {0} in - - - km - {0} km - {0} km - - - anni luce - {0} al - {0} al - - - metri - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - miglia - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - pc - {0} pc - {0} pc - pm {0} pm {0} pm + + miglia + {0} mi + {0} mi + iarde {0} yd {0} yd + + piedi + {0} ft + {0} ft + {0}/ft + + + pollici + {0} in + {0} in + {0}/in + + + pc + {0} pc + {0} pc + + + anni luce + {0} al + {0} al + + + au + {0} au + {0} au + + + nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + lx {0} lx {0} lx - - carati - {0} kt - {0} kt - - - grammi - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + grammi + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - oz - {0} oz - {0} oz - - - ozt - {0} ozt - {0} ozt - - - lb - {0} lb - {0} lb + + µg + {0} µg + {0} µg tn {0} tn {0} tn + + lb + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0}/oz + + + ozt + {0} ozt + {0} ozt + + + carati + {0} kt + {0} kt + GW {0} GW {0} GW - - hp - {0} hp - {0} hp - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW W {0} W {0} W + + mW + {0} mW + {0} mW + + + hp + {0} hp + {0} hp + hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -7106,10 +7365,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kt - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar km/h @@ -7126,6 +7390,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + °C {0} °C @@ -7141,31 +7415,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - - - cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -7175,6 +7424,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -7186,25 +7442,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - c - {0} c - {0} c + + ft³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl + + in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml hl @@ -7215,27 +7466,64 @@ For terms of use, see http://www.unicode.org/copyright.html litri {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl ml {0} ml {0} ml - - pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0}/gal qt {0} qt {0} qt + + pt + {0} pt + {0} pt + + + c + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + tbsp {0} tbsp @@ -7246,6 +7534,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0}E + {0}N + {0}S + {0}O + @@ -7255,6 +7549,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}G {0}G + + {0}° + {0}° + {0}min {0}min @@ -7263,26 +7561,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}s {0}s - - {0}° - {0}° - - - {0}ac - {0}ac + + {0}km² + {0}km² {0}ha {0}ha - - {0}ft² - {0}ft² - - - {0}km² - {0}km² - {0}m² {0}m² @@ -7291,6 +7577,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mi² {0}mi² + + {0}ac + {0}ac + + + {0}ft² + {0}ft² + + + L/100km + {0} L/100km + {0} L/100km + + + anno + {0}anno + {0}anni + + + mese + {0}mesi + {0}mesi + + + sett. + {0}sett. + {0}sett. + giorno {0}gg @@ -7301,67 +7615,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0}h {0}h - - ms - {0}ms - {0}ms - min {0}min {0}min - - mese - {0}mesi - {0}mesi - s {0}s {0}s - - sett. - {0}sett. - {0}sett. - - - anno - {0}anno - {0}anni - - - cm - {0}cm - {0}cm - - - {0}ft - {0}ft - - - {0}″ - {0}″ + + ms + {0}ms + {0}ms km {0}km {0}km - - al - {0}al - {0}al - metro {0}m {0}m - - {0}mi - {0}mi + + cm + {0}cm + {0}cm mm @@ -7372,31 +7654,44 @@ For terms of use, see http://www.unicode.org/copyright.html {0}pm {0}pm + + {0}mi + {0}mi + {0}yd {0}yd - - g - {0}g - {0}g + + {0}ft + {0}ft + + + {0}″ + {0}″ + + + al + {0}al + {0}al kg {0}kg {0}kg - - {0}oz - {0}oz + + g + {0}g + {0}g {0}lb {0}lb - - {0}hp - {0}hp + + {0}oz + {0}oz {0}kW @@ -7406,6 +7701,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}W {0}W + + {0}hp + {0}hp + {0}hPa {0}hPa @@ -7433,8 +7732,8 @@ For terms of use, see http://www.unicode.org/copyright.html °C - {0}°C - {0}°C + {0} °C + {0} °C {0}°F @@ -7453,6 +7752,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}l {0}l + + {0}E + {0}N + {0}S + {0}O + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/it_CH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/it_CH.xml similarity index 89% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/it_CH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/it_CH.xml index 177474bf234..95f74ea5ab8 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/it_CH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/it_CH.xml @@ -1,13 +1,12 @@ - - - + @@ -31,7 +30,7 @@ For terms of use, see http://www.unicode.org/copyright.html - d-MMM-y G + d MMM y G @@ -94,6 +93,24 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + gennaio + febbraio + marzo + aprile + maggio + giugno + luglio + agosto + settembre + ottobre + novembre + dicembre + + + @@ -102,7 +119,7 @@ For terms of use, see http://www.unicode.org/copyright.html - d-MMM-y + d MMM y diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/it_IT.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/it_IT.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/it_IT.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/it_IT.xml index 230d22fc93c..65f21096041 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/it_IT.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/it_IT.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/it_SM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/it_SM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/it_SM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/it_SM.xml index 7d70beb63bc..8769e30cb5c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/it_SM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/it_SM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ja.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ja.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ja.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ja.xml index 8f0f8b164a6..fbb1898a101 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ja.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ja.xml @@ -1,13 +1,12 @@ - - - + @@ -59,11 +58,10 @@ For terms of use, see http://www.unicode.org/copyright.html アイマラ語 アゼルバイジャン語 アゼリー語 - 南アゼルバイジャン語 バシキール語 バルーチー語 バリ語 - バイエルン・オーストリア語 + バイエルン・オーストリア語 バサ語 バムン語 トバ・バタク語 @@ -76,6 +74,7 @@ For terms of use, see http://www.unicode.org/copyright.html バフット語 バダガ語 ブルガリア語 + 西バローチー語 ボージュプリー語 ビスラマ語 ビコル語 @@ -133,7 +132,7 @@ For terms of use, see http://www.unicode.org/copyright.html ダルガン語 タイタ語 ドイツ語 - 標準ドイツ語(スイス) + 標準ドイツ語 (スイス) デラウェア語 スレイビー語 ドグリブ語 @@ -167,7 +166,7 @@ For terms of use, see http://www.unicode.org/copyright.html 中英語 エスペラント語 スペイン語 - スペイン語(イベリア半島) + スペイン語 (イベリア半島) 中央アラスカ・ユピック語 エストニア語 バスク語 @@ -263,7 +262,7 @@ For terms of use, see http://www.unicode.org/copyright.html ユダヤ・アラビア語 ユトランド語 ジャワ語 - グルジア語 + ジョージア語 カラカルパク語 カビル語 カチン語 @@ -332,6 +331,7 @@ For terms of use, see http://www.unicode.org/copyright.html ラオ語 モンゴ語 ロジ語 + 北ロル語 リトアニア語 ラトガリア語 ルバ・カタンガ語 @@ -407,7 +407,7 @@ For terms of use, see http://www.unicode.org/copyright.html ノルウェー語 ノガイ語 古ノルド語 - ノヴィアル + ノヴィアル ンコ語 南ンデベレ語 北部ソト語 @@ -448,7 +448,7 @@ For terms of use, see http://www.unicode.org/copyright.html パシュトゥー語 パシュトゥ語 ポルトガル語 - ポルトガル語(イベリア半島) + ポルトガル語 (イベリア半島) ケチュア語 キチェ語 チンボラソ高地ケチュア語 @@ -486,6 +486,7 @@ For terms of use, see http://www.unicode.org/copyright.html スコットランド語 シンド語 サッサリ・サルデーニャ語 + 南部クルド語 北サーミ語 セネカ語 セナ語 @@ -528,8 +529,8 @@ For terms of use, see http://www.unicode.org/copyright.html シュメール語 スウェーデン語 スワヒリ語 + コンゴ・スワヒリ語 コモロ語 - コンゴ・スワヒリ語 古典シリア語 シリア語 シレジア語 @@ -597,6 +598,7 @@ For terms of use, see http://www.unicode.org/copyright.html ウォライタ語 ワライ語 ワショ語 + ワルピリ語 ウォロフ語 呉語 カルムイク語 @@ -662,8 +664,8 @@ For terms of use, see http://www.unicode.org/copyright.html - - + + @@ -833,7 +835,6 @@ For terms of use, see http://www.unicode.org/copyright.html アンギラ アルバニア アルメニア - オランダ領アンティル アンゴラ 南極 アルゼンチン @@ -914,7 +915,7 @@ For terms of use, see http://www.unicode.org/copyright.html イギリス 英国 グレナダ - グルジア + ジョージア 仏領ギアナ ガーンジー ガーナ @@ -1174,6 +1175,9 @@ For terms of use, see http://www.unicode.org/copyright.html 数値による並べ替え 強度による並べ替え 通貨 + 時間制(12 / 24) + 禁則処理 + 単位系 数値書式 タイムゾーン ロケールのバリアント @@ -1181,121 +1185,131 @@ For terms of use, see http://www.unicode.org/copyright.html 私用 - アラビア・インド数字 - ペルシア数字 - アルメニア数字 - アルメニア数字(小文字) - バリ数字 - ベンガル数字 - 繁体字中国語順(Big5) - ブラーフミー数字 - タイ仏教暦 - チャクマ数字 - チャム数字 - 中国暦 - コプト暦 - ダンギ暦 - デーヴァナーガリー数字 - 辞書順 - ユニコード照合順 - ヨーロッパ言語文字の並べ替え規則 - エチオピア数字 - エチオピア暦 - エチオピア創世紀元暦 - 財務用漢数字 - 全角数字 - 簡体字中国語順(GB2312) - グルジア数字 - 西暦(グレゴリオ暦) - ギリシャ数字 - ギリシャ数字(小文字) - グジャラート数字 - グルムキー数字 - 漢数字(位取り記数法) - 簡体漢数字 - 簡体大字 - 繁体漢数字 - 繁体大字 - ヘブライ数字 - ユダヤ暦 - すべてを区別して並べ替え - インド国定暦 - イスラム暦 - イスラム歴(定周期、公民紀元) - イスラム暦(サウジアラビア、月観測) - イスラム歴(定周期、天文紀元) - イスラム暦(ウンム・アルクラー) - ISO-8601 - 和暦 - ジャワ数字 - 漢数字 - 大字 - カヤー数字 - クメール数字 - カンナダ数字 - ラーンナー数字 - ラーンナー・タム数字 - ラオ数字 - 算用数字 - レプチャ数字 - リンブ数字 - 小文字優先で並べ替え - マラヤーラム数字 - モンゴル数字 - マニプリ数字 - ミャンマー数字 - ミャンマー・シャン数字 - 独自の記数法 - ンコ数字 - アクセント(順方向)で並べ替え - 大文字小文字を通常の順序で並べ替え - 大文字小文字を区別しないで並べ替え - 仮名を区別しないで並べ替え - 正規化しないで並べ替え - 数値を独立して並べ替え - 記号で並べ替え - オルチキ数字 - オリヤー数字 - オスマニア数字 - ペルシア暦 - 電話帳順 - 音声順による並べ替え - ピンイン - 基本文字のみで並べ替え - アクセント/大文字小文字/全角半角/仮名で並べ替え - リフォーム - 中華民国暦 - ローマ数字 - ローマ数字(小文字) - サウラーシュトラ数字 - 汎用検索 - ハングル語頭子音による並べ替え - アクセントで並べ替え - 記号を無視して並べ替え - シャーラダー数字 - ソラ・ソンペン数字 - 標準ソート順序 - 画数順 - スンダ数字 - タークリー数字 - 新タイ・ルー数字 - タミール数字 - タミル数字 - テルグ数字 - アクセント/大文字小文字/全角半角で並べ替え - タイ数字 - チベット数字 - トラディッショナル - 従来の記数法 - 部首順 - 大文字優先で並べ替え - ヴァイ文字の記数法 - アクセント(逆方向)で並べ替え - 大文字小文字を区別して並べ替え - 仮名を区別して並べ替え - Unicode 正規化で並べ替え - 数値を数値として並べ替え - 注音順 + タイ仏教暦 + 中国暦 + コプト暦 + ダンギ暦 + エチオピア暦 + エチオピア創世紀元暦 + 西暦(グレゴリオ暦) + ユダヤ暦 + インド国定暦 + イスラム暦 + イスラム歴(定周期、公民紀元) + イスラム暦(サウジアラビア、月観測) + イスラム歴(定周期、天文紀元) + イスラム暦(ウンム・アルクラー) + ISO-8601 + 和暦 + ペルシア暦 + 中華民国暦 + 記号で並べ替え + 記号を無視して並べ替え + アクセント(順方向)で並べ替え + アクセント(逆方向)で並べ替え + 小文字優先で並べ替え + 大文字小文字を通常の順序で並べ替え + 大文字優先で並べ替え + 大文字小文字を区別しないで並べ替え + 大文字小文字を区別して並べ替え + 仮名を区別しないで並べ替え + 仮名を区別して並べ替え + 繁体字中国語順(Big5) + 辞書順 + ユニコード照合順 + ヨーロッパ言語文字の並べ替え規則 + 簡体字中国語順(GB2312) + 電話帳順 + 音声順による並べ替え + ピンイン順 + リフォーム + 汎用検索 + ハングル語頭子音による並べ替え + 標準ソート順序 + 画数順 + トラディッショナル + 部首順 + 注音順 + 正規化しないで並べ替え + Unicode 正規化で並べ替え + 数値を独立して並べ替え + 数値を数値として並べ替え + すべてを区別して並べ替え + 基本文字のみで並べ替え + アクセント/大文字小文字/全角半角/仮名で並べ替え + アクセントで並べ替え + アクセント/大文字小文字/全角半角で並べ替え + 12時間制(0〜11) + 12時間制(1〜12) + 24時間制(0〜23) + 24時間制(1〜24) + 禁則処理(弱) + 禁則処理(標準) + 禁則処理(強) + メートル法 + ヤード・ポンド法 + 米慣習単位 + アラビア・インド数字 + ペルシア数字 + アルメニア数字 + アルメニア数字(小文字) + バリ数字 + ベンガル数字 + ブラーフミー数字 + チャクマ数字 + チャム数字 + デーヴァナーガリー数字 + エチオピア数字 + 財務用漢数字 + 全角数字 + ジョージア数字 + ギリシャ数字 + ギリシャ数字(小文字) + グジャラート数字 + グルムキー数字 + 漢数字(位取り記数法) + 簡体漢数字 + 簡体大字 + 繁体漢数字 + 繁体大字 + ヘブライ数字 + ジャワ数字 + 漢数字 + 大字 + カヤー数字 + クメール数字 + カンナダ数字 + ラーンナー数字 + ラーンナー・タム数字 + ラオ数字 + 算用数字 + レプチャ数字 + リンブ数字 + マラヤーラム数字 + モンゴル数字 + マニプリ数字 + ミャンマー数字 + ミャンマー・シャン数字 + 独自の記数法 + ンコ数字 + オルチキ数字 + オリヤー数字 + オスマニア数字 + ローマ数字 + ローマ数字(小文字) + サウラーシュトラ数字 + シャーラダー数字 + ソラ・ソンペン数字 + スンダ数字 + タークリー数字 + 新タイ・ルー数字 + タミール数字 + タミル数字 + テルグ数字 + タイ数字 + チベット数字 + 従来の記数法 + ヴァイ文字の記数法 BGN @@ -1321,10 +1335,10 @@ For terms of use, see http://www.unicode.org/copyright.html - [々 ゝ ゞ ー-ヾ ぁ あ ァア ぃ い ィイ ぅ う ゥウ ヴ ぇ え ェエ ぉ お ォオ か ヵ カ がガ きキ ぎギ くク ぐグ け ヶ ケ げゲ こコ ごゴ さサ ざザ しシ じジ すス ずズ せセ ぜゼ そソ ぞゾ たタ だダ ちチ ぢヂ っ つ ッツ づヅ てテ でデ とト どド なナ にニ ぬヌ ねネ のノ はハ ばバ ぱパ ひヒ びビ ぴピ ふフ ぶブ ぷプ へヘ べベ ぺペ ほホ ぼボ ぽポ まマ みミ むム めメ もモ ゃ や ャヤ ゅ ゆ ュユ ょ よ ョヨ らラ りリ るル れレ ろロ ゎ わ ヮワ ゐヰ ゑヱ をヲ んン 一 丁 七 万-下 不 与 丑 且 世 丘 丙 両 並 中 丸 丹 主 久 乏 乗 乙 九 乱 乳 乾 亀 了 予 争 事 二 互 五 井 亜 亡 交 亥 亨 享-亭 人 仁 今 介 仏 仕 他 付 仙 代-以 仮 仰 仲 件 任 企 伊 伏-休 会 伝 伯 伴 伸 伺 似 但 位-佐 体 何 余 作 佳 併 使 例 侍 供 依 価 侮 侯 侵 便 係 促 俊 俗 保 信 修 俳 俵 俸 俺 倉 個 倍 倒 候 借 倣 値 倫 倹 偉 偏 停 健 側-偶 偽 傍 傑 傘 備 催 債 傷 傾 働 像 僕 僚 僧 儀 億 儒 償 優 元-兆 先 光 克 免 兎 児 党 入 全 八-六 共 兵 具 典 兼 内 円 冊 再 冒 冗 写 冠 冬 冷 准 凍 凝 凡 処 凶 凸-出 刀 刃 分-刈 刊 刑 列 初 判 別 利 到 制-券 刺 刻 則 削 前 剖 剛 剣 剤 副 剰 割 創 劇 力 功 加 劣 助 努 励 労 効 劾 勅 勇 勉 動 勘 務 勝 募 勢 勤 勧 勲 勺 匁 包 化 北 匠 匹-医 匿 十 千 升 午 半 卑-協 南 単 博 占 卯-危 即-卵 卸 厄 厘 厚 原 厳 去 参 又 及-収 叔 取 受 叙 口-句 叫 召 可 台 史 右 号 司 各 合 吉 同-向 君 吟 否 含 吸 吹 呈-告 周 味 呼 命 和 咲 哀 品 員 哲 唆 唇 唐 唯 唱 商 問 啓 善 喚 喜 喝 喪 喫 営 嗣 嘆 嘉 嘱 器 噴 嚇 囚 四 回 因 団 困 囲 図 固 国 圏 園 土 圧 在 地 坂 均 坊 坑 坪 垂 型 垣 埋 城 域 執 培 基 埼 堀 堂 堅 堕 堤 堪 報 場 塀 塁 塊 塑 塔 塗 塚 塩 塾 境 墓 増 墜 墨 墳 墾 壁 壇 壊 壌 士 壬 壮 声-売 変 夏 夕 外 多 夜 夢 大 天-夫 央 失 奇-奉 奏 契 奔 奥 奨 奪 奮 女 奴 好 如-妄 妊 妙 妥 妨 妹 妻 姉 始 姓 委 姫 姻 姿 威 娘 娠 娯 婆 婚 婦 婿 媒 嫁 嫌 嫡 嬢 子 孔 字 存 孝 季 孤 学 孫 宅 宇-安 完 宗-定 宜 宝 実 客-室 宮 宰 害-家 容 宿 寂 寄-密 富 寒 寛 寝 察 寡 寧 審 寮 寸 寺 対 寿 封 専 射 将 尉-尋 導 小 少 尚 就 尺 尼-局 居 屈 届 屋 展 属 層 履 屯 山 岐 岡 岩 岬 岳 岸 峠 峡 峰 島 崇 崎 崩 川 州 巡 巣 工-巨 差 己 巳 巻 市 布 帆 希 帝 帥 師 席 帯 帰 帳 常 帽 幅 幕 幣 干-年 幸 幹 幻-幾 庁 広 床 序 底 店 庚 府 度 座 庫 庭 庶-庸 廃 廉 廊 延 廷 建 弁 弊 式 弐 弓-引 弘 弟 弦 弧 弱 張 強 弾 当 形 彩 彫 彰 影 役 彼 往 征 径 待 律 後 徐 徒 従 得 御 復 循 微 徳 徴 徹 心 必 忌 忍 志-忙 応 忠 快 念 怒 怖 思 怠 急 性 怪 恋 恐 恒 恥 恨 恩 恭 息 恵 悔 悟 悠 患 悦 悩 悪 悲 悼 情 惑 惜 惨 惰 想 愁 愉 意 愚 愛 感 慈 態 慌 慎 慕 慢 慣 慨 慮 慰 慶 憂 憎 憤 憩 憲 憶 憾 懇 懐 懲 懸 戊 戌 成-戒 戦 戯 戸 戻 房 所 扇 扉 手 才 打 払 扱 扶 批 承 技 抄 把 抑 投 抗 折 抜 択 披 抱 抵 抹 押 抽 担 拍 拐 拒 拓 拘 拙 招 拝 拠 拡 括 拷 拾 持 指 挑 挙 挟 振 挿 捕 捜 捨 据 掃 授 掌 排 掘 掛 採 探 接 控 推 措 掲 描 提 揚 換 握 揮 援 揺 損 搬 搭 携 搾 摂 摘 摩 撃 撤 撮 撲 擁 操 擦 擬 支 改 攻 放 政 故 敏 救 敗 教 敢 散 敬 数 整 敵 敷 文 斉 斎 斗 料 斜 斤 斥 断 新 方 施 旅 旋 族 旗 既 日 旧-早 旬 昆 昇 昌 明 易 昔 星 映 春 昨 昭 是 昼 時 晩 普 景 晴 晶 暁 暇 暑 暖 暗 暦 暫 暮 暴 曇 曜 曲 更 書 曹 替 最 月 有 服 朕 朗 望 朝 期 木 未-札 朱 朴 机 朽 杉 材 村 束 条 来 杯 東 松 板 析 林 枚 果 枝 枠 枢 枯 架 柄 某 染 柔 柱 柳 査 栄 栓 校 株 核 根 格 栽 桃 案 桑 桜 桟 梅 械 棄 棋 棒 棚 棟 森 棺 植 検 業 極 楼 楽 概 構 様 槽 標 模 権 横 樹 橋 機 欄 欠 次 欧 欲 欺 款 歌 歓 止 正 武 歩 歯 歳 歴 死 殉-残 殖 殴 段 殺 殻 殿 母 毎 毒 比 毛 氏 民 気 水 氷 永 汁 求 汎 汗 汚 江 池 決 汽 沈 沖 没 沢 河 沸 油 治 沼 沿 況 泉 泊 泌 法 泡-泣 泥 注 泰 泳 洋 洗 洞 津 洪 活 派 流 浄 浅 浜 浦 浪 浮 浴 海 浸 消 涙 涯 液 涼 淑 淡 深 混 添 清 渇-渉 渋 渓 減 渡 渦 温 測 港 湖 湯 湾-満 源 準 溝 溶 滅 滋 滑 滝 滞 滴 漁 漂 漆 漏 演 漠 漢 漫 漬 漸 潔 潜 潟 潤 潮 澄 激 濁 濃 濫 濯 瀬 火 灯 灰 災 炉 炊 炎 炭 点 為 烈 無 焦 然 焼 煙 照 煩 煮 熟 熱 燃 燥 爆 爵 父 片 版 牙 牛 牧 物 牲 特 犠 犬 犯 状 狂 狩 独 狭 猛 猟 猪 猫 献 猶 猿 獄 獣 獲 玄 率 玉 王 珍 珠 班 現 球 理 琴 環 璽 瓶 甘 甚 生 産 用 田-申 男 町 画 界 畑 畔 留 畜 畝 略 番 異 畳 疎 疑 疫 疲 疾 病 症 痘 痛 痢 痴 療 癒 癖 癸 発 登 白 百 的 皆 皇 皮 皿 盆 益 盗 盛 盟 監 盤 目 盲 直 相 盾 省 看 県 真 眠 眺 眼 着 睡 督 瞬 矛 矢 知 短 矯 石 砂 研 砕 砲 破 硝 硫 硬 碁 碑 確 磁 磨 礁 礎 示 礼 社 祈 祉 祖 祚 祝 神 祥 票 祭 禁 禄 禅 禍-福 秀 私 秋 科 秒 秘 租 秩 称 移 程 税 稚 種 稲 稼 稿 穀 穂 積 穏 穫 穴 究 空 突 窃 窒 窓 窮 窯 立 竜 章 童 端 競 竹 笑 笛 符 第 筆 等 筋 筒 答 策 箇 算 管 箱 節 範 築 篤 簡 簿 籍 米 粉 粋 粒 粗 粘 粛 粧 精 糖 糧 糸 系 糾 紀 約 紅 紋 納 純 紙-紛 素-索 紫 累 細 紳 紹 紺 終 組 経 結 絞 絡 給 統 絵 絶 絹 継 続 維 綱 網 綿 緊 総 緑 緒 線 締 編 緩 緯 練 縁 縄 縛 縦 縫 縮 績 繁 繊 織 繕 繭 繰 缶 罪 置 罰 署 罷 羅 羊 美 群 義 羽 翁 翌 習 翻 翼 老 考 者 耐 耕 耗 耳 聖 聞 聴 職 肉 肌 肖 肝 肢 肥 肩 肪 肯 育 肺 胃 胆 背 胎 胞 胴 胸 能 脂 脅 脈 脚 脱 脳 脹 腐 腕 腰 腸 腹 膚 膜 膨 臓 臣 臨 自 臭 至 致 興 舌 舎 舗 舞 舟 航 般 舶 船 艇 艦 良 色 芋 芝 花 芳 芸 芽 苗 若 苦 英 茂 茎 茶 草 荒 荘 荷 菊 菌 菓 菜 華 落 葉 著 葬 蒸 蓄 蔵 薄 薦 薪-薬 藤 藩 藻 虎 虐 虚 虜 虞 虫 蚊 蚕 蛇 蛍 蛮 融 血 衆 行 術 街 衛 衝 衡 衣 表 衰 衷 袋 被 裁 裂 装 裏 裕 補 裸 製 複 褐 褒 襟 襲 西 要 覆 覇 見 規 視 覚 覧 親 観 角 解 触 言 訂 計 討 訓 託 記 訟 訪 設 許 訳 訴 診 証 詐 詔 評 詞 詠 試 詩 詰-詳 誇 誉 誌 認 誓 誕 誘 語 誠 誤 説 読 誰 課 調 談 請 論 諭 諮 諸 諾 謀 謁 謄 謙 講 謝 謡 謹 識 譜 警 議 譲 護 谷 豆 豊 豚 象 豪 貝 貞 負-貢 貧-販 貫 責 貯 貴 買 貸 費 貿 賀 賃 賄 資 賊 賓 賛 賜 賞 賠 賢 賦 質 購 贈 赤 赦 走 赴 起 超 越 趣 足 距 跡 路 跳 践 踊 踏 躍 身 車 軌 軍 軒 軟 転 軸 軽 較 載 輝 輩 輪 輸 轄 辛 辞 辰-農 辺 込 迅 迎 近 返 迫 迭 述 迷 追 退 送 逃 逆 透 逐 逓 途 通 逝 速 造 連 逮 週 進 逸 遂 遅 遇 遊 運 遍 過 道-違 遠 遣 適 遭 遮 遵 遷 選 遺 避 還 邦 邪 邸 郊 郎 郡 部 郭 郵 郷 都 酉 酌 配 酒 酔 酢 酪 酬 酵 酷 酸 醜 醸 釈 里-量 金 針 釣 鈍 鈴 鉄 鉛 鉢 鉱 銀 銃 銅 銑 銘 銭 鋭 鋳 鋼 錘 錠 錬 錯 録 鍛 鎖 鎮 鏡 鐘 鑑 長 門 閉 開 閏 閑 間 関 閣 閥 閲 闘 阪 防 阻 附 降 限 陛 院-陥 陪 陰 陳 陵 陶 陸 険 陽 隅 隆 隊 階 随 隔 際 障 隠 隣 隷 隻 雄-雇 雉 雌 雑 離 難 雨 雪 雰 雲 零 雷 電 需 震 霊 霜 霧 露 青 静 非 面 革 靴 韓 音 韻 響 頂 頃 項 順 預-頒 領 頭 頻 頼 題 額 顔 顕 願 類 顧 風 飛 食 飢 飯 飲 飼-飾 養 餓 館 首 香 馬 駄-駆 駐 騎 騒 験 騰 驚 骨 髄 高 髪 鬼 魂 魅 魔 魚 鮮 鯨 鳥 鳴 鶏 鹿 麗 麦 麻 黄 黒 黙 鼓 鼠 鼻 齢] + [々 ゝヽ ゞヾ ー ぁァ あア ぃィ いイ ぅゥ うウ ヴ ぇェ えエ ぉォ おオ ヵ かカ がガ きキ ぎギ くク ぐグ ヶ けケ げゲ こコ ごゴ さサ ざザ しシ じジ すス ずズ せセ ぜゼ そソ ぞゾ たタ だダ ちチ ぢヂ っッ つツ づヅ てテ でデ とト どド なナ にニ ぬヌ ねネ のノ はハ ばバ ぱパ ひヒ びビ ぴピ ふフ ぶブ ぷプ へヘ べベ ぺペ ほホ ぼボ ぽポ まマ みミ むム めメ もモ ゃャ やヤ ゅュ ゆユ ょョ よヨ らラ りリ るル れレ ろロ ゎヮ わワ ゐヰ ゑヱ をヲ んン 一 丁 七 万-下 不 与 丑 且 世 丘 丙 両 並 中 丸 丹 主 久 乏 乗 乙 九 乱 乳 乾 亀 了 予 争 事 二 互 五 井 亜 亡 交 亥 亨 享-亭 人 仁 今 介 仏 仕 他 付 仙 代-以 仮 仰 仲 件 任 企 伊 伏-休 会 伝 伯 伴 伸 伺 似 但 位-佐 体 何 余 作 佳 併 使 例 侍 供 依 価 侮 侯 侵 便 係 促 俊 俗 保 信 修 俳 俵 俸 俺 倉 個 倍 倒 候 借 倣 値 倫 倹 偉 偏 停 健 側-偶 偽 傍 傑 傘 備 催 債 傷 傾 働 像 僕 僚 僧 儀 億 儒 償 優 元-兆 先 光 克 免 兎 児 党 入 全 八-六 共 兵 具 典 兼 内 円 冊 再 冒 冗 写 冠 冬 冷 准 凍 凝 凡 処 凶 凸-出 刀 刃 分-刈 刊 刑 列 初 判 別 利 到 制-券 刺 刻 則 削 前 剖 剛 剣 剤 副 剰 割 創 劇 力 功 加 劣 助 努 励 労 効 劾 勅 勇 勉 動 勘 務 勝 募 勢 勤 勧 勲 勺 匁 包 化 北 匠 匹-医 匿 十 千 升 午 半 卑-協 南 単 博 占 卯-危 即-卵 卸 厄 厘 厚 原 厳 去 参 又 及-収 叔 取 受 叙 口-句 叫 召 可 台 史 右 号 司 各 合 吉 同-向 君 吟 否 含 吸 吹 呈-告 周 味 呼 命 和 咲 哀 品 員 哲 唆 唇 唐 唯 唱 商 問 啓 善 喚 喜 喝 喪 喫 営 嗣 嘆 嘉 嘱 器 噴 嚇 囚 四 回 因 団 困 囲 図 固 国 圏 園 土 圧 在 地 坂 均 坊 坑 坪 垂 型 垣 埋 城 域 執 培 基 埼 堀 堂 堅 堕 堤 堪 報 場 塀 塁 塊 塑 塔 塗 塚 塩 塾 境 墓 増 墜 墨 墳 墾 壁 壇 壊 壌 士 壬 壮 声-売 変 夏 夕 外 多 夜 夢 大 天-夫 央 失 奇-奉 奏 契 奔 奥 奨 奪 奮 女 奴 好 如-妄 妊 妙 妥 妨 妹 妻 姉 始 姓 委 姫 姻 姿 威 娘 娠 娯 婆 婚 婦 婿 媒 嫁 嫌 嫡 嬢 子 孔 字 存 孝 季 孤 学 孫 宅 宇-安 完 宗-定 宜 宝 実 客-室 宮 宰 害-家 容 宿 寂 寄-密 富 寒 寛 寝 察 寡 寧 審 寮 寸 寺 対 寿 封 専 射 将 尉-尋 導 小 少 尚 就 尺 尼-局 居 屈 届 屋 展 属 層 履 屯 山 岐 岡 岩 岬 岳 岸 峠 峡 峰 島 崇 崎 崩 川 州 巡 巣 工-巨 差 己 巳 巻 市 布 帆 希 帝 帥 師 席 帯 帰 帳 常 帽 幅 幕 幣 干-年 幸 幹 幻-幾 庁 広 床 序 底 店 庚 府 度 座 庫 庭 庶-庸 廃 廉 廊 延 廷 建 弁 弊 式 弐 弓-引 弘 弟 弦 弧 弱 張 強 弾 当 形 彩 彫 彰 影 役 彼 往 征 径 待 律 後 徐 徒 従 得 御 復 循 微 徳 徴 徹 心 必 忌 忍 志-忙 応 忠 快 念 怒 怖 思 怠 急 性 怪 恋 恐 恒 恥 恨 恩 恭 息 恵 悔 悟 悠 患 悦 悩 悪 悲 悼 情 惑 惜 惨 惰 想 愁 愉 意 愚 愛 感 慈 態 慌 慎 慕 慢 慣 慨 慮 慰 慶 憂 憎 憤 憩 憲 憶 憾 懇 懐 懲 懸 戊 戌 成-戒 戦 戯 戸 戻 房 所 扇 扉 手 才 打 払 扱 扶 批 承 技 抄 把 抑 投 抗 折 抜 択 披 抱 抵 抹 押 抽 担 拍 拐 拒 拓 拘 拙 招 拝 拠 拡 括 拷 拾 持 指 挑 挙 挟 振 挿 捕 捜 捨 据 掃 授 掌 排 掘 掛 採 探 接 控 推 措 掲 描 提 揚 換 握 揮 援 揺 損 搬 搭 携 搾 摂 摘 摩 撃 撤 撮 撲 擁 操 擦 擬 支 改 攻 放 政 故 敏 救 敗 教 敢 散 敬 数 整 敵 敷 文 斉 斎 斗 料 斜 斤 斥 断 新 方 施 旅 旋 族 旗 既 日 旧-早 旬 昆 昇 昌 明 易 昔 星 映 春 昨 昭 是 昼 時 晩 普 景 晴 晶 暁 暇 暑 暖 暗 暦 暫 暮 暴 曇 曜 曲 更 書 曹 替 最 月 有 服 朕 朗 望 朝 期 木 未-札 朱 朴 机 朽 杉 材 村 束 条 来 杯 東 松 板 析 林 枚 果 枝 枠 枢 枯 架 柄 某 染 柔 柱 柳 査 栄 栓 校 株 核 根 格 栽 桃 案 桑 桜 桟 梅 械 棄 棋 棒 棚 棟 森 棺 植 検 業 極 楼 楽 概 構 様 槽 標 模 権 横 樹 橋 機 欄 欠 次 欧 欲 欺 款 歌 歓 止 正 武 歩 歯 歳 歴 死 殉-残 殖 殴 段 殺 殻 殿 母 毎 毒 比 毛 氏 民 気 水 氷 永 汁 求 汎 汗 汚 江 池 決 汽 沈 沖 没 沢 河 沸 油 治 沼 沿 況 泉 泊 泌 法 泡-泣 泥 注 泰 泳 洋 洗 洞 津 洪 活 派 流 浄 浅 浜 浦 浪 浮 浴 海 浸 消 涙 涯 液 涼 淑 淡 深 混 添 清 渇-渉 渋 渓 減 渡 渦 温 測 港 湖 湯 湾-満 源 準 溝 溶 滅 滋 滑 滝 滞 滴 漁 漂 漆 漏 演 漠 漢 漫 漬 漸 潔 潜 潟 潤 潮 澄 激 濁 濃 濫 濯 瀬 火 灯 灰 災 炉 炊 炎 炭 点 為 烈 無 焦 然 焼 煙 照 煩 煮 熟 熱 燃 燥 爆 爵 父 片 版 牙 牛 牧 物 牲 特 犠 犬 犯 状 狂 狩 独 狭 猛 猟 猪 猫 献 猶 猿 獄 獣 獲 玄 率 玉 王 珍 珠 班 現 球 理 琴 環 璽 瓶 甘 甚 生 産 用 田-申 男 町 画 界 畑 畔 留 畜 畝 略 番 異 畳 疎 疑 疫 疲 疾 病 症 痘 痛 痢 痴 療 癒 癖 癸 発 登 白 百 的 皆 皇 皮 皿 盆 益 盗 盛 盟 監 盤 目 盲 直 相 盾 省 看 県 真 眠 眺 眼 着 睡 督 瞬 矛 矢 知 短 矯 石 砂 研 砕 砲 破 硝 硫 硬 碁 碑 確 磁 磨 礁 礎 示 礼 社 祈 祉 祖 祚 祝 神 祥 票 祭 禁 禄 禅 禍-福 秀 私 秋 科 秒 秘 租 秩 称 移 程 税 稚 種 稲 稼 稿 穀 穂 積 穏 穫 穴 究 空 突 窃 窒 窓 窮 窯 立 竜 章 童 端 競 竹 笑 笛 符 第 筆 等 筋 筒 答 策 箇 算 管 箱 節 範 築 篤 簡 簿 籍 米 粉 粋 粒 粗 粘 粛 粧 精 糖 糧 糸 系 糾 紀 約 紅 紋 納 純 紙-紛 素-索 紫 累 細 紳 紹 紺 終 組 経 結 絞 絡 給 統 絵 絶 絹 継 続 維 綱 網 綿 緊 総 緑 緒 線 締 編 緩 緯 練 縁 縄 縛 縦 縫 縮 績 繁 繊 織 繕 繭 繰 缶 罪 置 罰 署 罷 羅 羊 美 群 義 羽 翁 翌 習 翻 翼 老 考 者 耐 耕 耗 耳 聖 聞 聴 職 肉 肌 肖 肝 肢 肥 肩 肪 肯 育 肺 胃 胆 背 胎 胞 胴 胸 能 脂 脅 脈 脚 脱 脳 脹 腐 腕 腰 腸 腹 膚 膜 膨 臓 臣 臨 自 臭 至 致 興 舌 舎 舗 舞 舟 航 般 舶 船 艇 艦 良 色 芋 芝 花 芳 芸 芽 苗 若 苦 英 茂 茎 茶 草 荒 荘 荷 菊 菌 菓 菜 華 落 葉 著 葬 蒸 蓄 蔵 薄 薦 薪-薬 藤 藩 藻 虎 虐 虚 虜 虞 虫 蚊 蚕 蛇 蛍 蛮 融 血 衆 行 術 街 衛 衝 衡 衣 表 衰 衷 袋 被 裁 裂 装 裏 裕 補 裸 製 複 褐 褒 襟 襲 西 要 覆 覇 見 規 視 覚 覧 親 観 角 解 触 言 訂 計 討 訓 託 記 訟 訪 設 許 訳 訴 診 証 詐 詔 評 詞 詠 試 詩 詰-詳 誇 誉 誌 認 誓 誕 誘 語 誠 誤 説 読 誰 課 調 談 請 論 諭 諮 諸 諾 謀 謁 謄 謙 講 謝 謡 謹 識 譜 警 議 譲 護 谷 豆 豊 豚 象 豪 貝 貞 負-貢 貧-販 貫 責 貯 貴 買 貸 費 貿 賀 賃 賄 資 賊 賓 賛 賜 賞 賠 賢 賦 質 購 贈 赤 赦 走 赴 起 超 越 趣 足 距 跡 路 跳 践 踊 踏 躍 身 車 軌 軍 軒 軟 転 軸 軽 較 載 輝 輩 輪 輸 轄 辛 辞 辰-農 辺 込 迅 迎 近 返 迫 迭 述 迷 追 退 送 逃 逆 透 逐 逓 途 通 逝 速 造 連 逮 週 進 逸 遂 遅 遇 遊 運 遍 過 道-違 遠 遣 適 遭 遮 遵 遷 選 遺 避 還 邦 邪 邸 郊 郎 郡 部 郭 郵 郷 都 酉 酌 配 酒 酔 酢 酪 酬 酵 酷 酸 醜 醸 釈 里-量 金 針 釣 鈍 鈴 鉄 鉛 鉢 鉱 銀 銃 銅 銑 銘 銭 鋭 鋳 鋼 錘 錠 錬 錯 録 鍛 鎖 鎮 鏡 鐘 鑑 長 門 閉 開 閏 閑 間 関 閣 閥 閲 闘 阪 防 阻 附 降 限 陛 院-陥 陪 陰 陳 陵 陶 陸 険 陽 隅 隆 隊 階 随 隔 際 障 隠 隣 隷 隻 雄-雇 雉 雌 雑 離 難 雨 雪 雰 雲 零 雷 電 需 震 霊 霜 霧 露 青 静 非 面 革 靴 韓 音 韻 響 頂 頃 項 順 預-頒 領 頭 頻 頼 題 額 顔 顕 願 類 顧 風 飛 食 飢 飯 飲 飼-飾 養 餓 館 首 香 馬 駄-駆 駐 騎 騒 験 騰 驚 骨 髄 高 髪 鬼 魂 魅 魔 魚 鮮 鯨 鳥 鳴 鶏 鹿 麗 麦 麻 黄 黒 黙 鼓 鼠 鼻 齢] [兌 拼 楔 錄 鳯] [あ か さ た な は ま や ら わ] - [‾ __ \-- ‐ — ― 〜 ・ ・ ,, 、、 ;; \:: !! ?? .. ‥ … 。。 ' ‘ ’ "" “ ” (( )) \[[ \]] \{{ \}} 〈 〉 《 》 「「 」」 『 』 【 】 〔 〕 ‖ § ¶ @@ ** // \\ \ \&& ## %% ‰ † ‡ ′ ″ 〃 ※] + [‾ __ \-- ‐ — ― 〜 ・ ・ ,, 、、 ;; \:: !! ?? .. ‥ … 。。 ' ‘ ’ "" “ ” (( )) \[[ \]] \{{ \}} 〈 〉 《 》 「「 」」 『 』 【 】 〔 〕 ‖ § ¶ @@ ** // \\\ \&& ## %% ‰ † ‡ ′ ″ 〃 ※] {0}… …{0} {0}…{1} @@ -1397,6 +1411,7 @@ For terms of use, see http://www.unicode.org/copyright.html M月d日 M月d日(E) M月d日EEEE + M月d日 mm:ss GGGGy年 GGGGy年 @@ -1409,6 +1424,7 @@ For terms of use, see http://www.unicode.org/copyright.html GGGGy年M月d日 GGGGy年M月d日(E) GGGGy年M月d日EEEE + GGGGy年M月 @@ -1699,6 +1715,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMMd日 MMMd日(E) MMMd日EEEE + MMMMd日 U年 U年M月d日 U年 @@ -1710,6 +1727,7 @@ For terms of use, see http://www.unicode.org/copyright.html U年MMMd日 U年MMMd日(E) U年MMMd日EEEE + U年MMMM U年QQQ U年QQQQ @@ -2246,7 +2264,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Gy/MM/dd + Gy/M/d @@ -2273,6 +2291,7 @@ For terms of use, see http://www.unicode.org/copyright.html d日 + ccc d日(E) d日EEEE Gy年 @@ -2294,6 +2313,7 @@ For terms of use, see http://www.unicode.org/copyright.html M月d日 M月d日(E) M月d日EEEE + M月d日 mm:ss Gy年 Gy年 @@ -2305,6 +2325,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gy年M月d日 Gy年M月d日(E) Gy年M月d日EEEE + Gy年M月 Gy/QQQ GyQQQQ @@ -2621,15 +2642,73 @@ For terms of use, see http://www.unicode.org/copyright.html - + + 真夜中 午前 正午 午後 + + + 夕方 + + 夜中 + + + 真夜中 + 午前 + 正午 + 午後 + + + 夕方 + + 夜中 + 真夜中 午前 正午 午後 + + + 夕方 + + 夜中 + + + + + 真夜中 + 午前 + 正午 + 午後 + + + 夕方 + + 夜中 + + + 真夜中 + 午前 + 正午 + 午後 + + + 夕方 + + 夜中 + + + 真夜中 + 午前 + 正午 + 午後 + + + 夕方 + + 夜中 @@ -2750,6 +2829,7 @@ For terms of use, see http://www.unicode.org/copyright.html M月d日 M月d日(E) M月d日EEEE + M月d日 mm:ss y年 y/M @@ -2761,6 +2841,7 @@ For terms of use, see http://www.unicode.org/copyright.html y年M月d日 y年M月d日(E) y年M月d日EEEE + y年M月 y/QQQ yQQQQ @@ -3222,6 +3303,7 @@ For terms of use, see http://www.unicode.org/copyright.html M月 M月d日 M月d日(E) + M月d日 Gy年 @@ -3723,7 +3805,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Gyy/MM/dd + GGGGGy/M/d @@ -3750,6 +3832,7 @@ For terms of use, see http://www.unicode.org/copyright.html d日 + ccc d日(E) d日EEEE Gy年 @@ -3771,6 +3854,7 @@ For terms of use, see http://www.unicode.org/copyright.html M月d日 M月d日(E) M月d日EEEE + M月d日 mm:ss Gy年 Gy年 @@ -3783,6 +3867,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gy年M月d日 Gy年M月d日(E) Gy年M月d日EEEE + Gy年M月 Gy/QQQ GyQQQQ @@ -3923,6 +4008,7 @@ For terms of use, see http://www.unicode.org/copyright.html M月 M月d日 M月d日(E) + M月d日 Gy年 @@ -3946,6 +4032,9 @@ For terms of use, see http://www.unicode.org/copyright.html + 昨年 + 今年 + 翌年 {0} 年後 @@ -3955,6 +4044,9 @@ For terms of use, see http://www.unicode.org/copyright.html + 昨年 + 今年 + 翌年 {0} 年後 @@ -4003,6 +4095,9 @@ For terms of use, see http://www.unicode.org/copyright.html + 先月 + 今月 + 翌月 {0} か月後 @@ -4012,6 +4107,9 @@ For terms of use, see http://www.unicode.org/copyright.html + 先月 + 今月 + 翌月 {0} か月後 @@ -4033,6 +4131,9 @@ For terms of use, see http://www.unicode.org/copyright.html + 先週 + 今週 + 翌週 {0} 週間後 @@ -4042,6 +4143,9 @@ For terms of use, see http://www.unicode.org/copyright.html + 先週 + 今週 + 翌週 {0} 週間後 @@ -4065,6 +4169,11 @@ For terms of use, see http://www.unicode.org/copyright.html + 一昨日 + 昨日 + 今日 + 明日 + 明後日 {0} 日後 @@ -4074,6 +4183,11 @@ For terms of use, see http://www.unicode.org/copyright.html + 一昨日 + 昨日 + 今日 + 明日 + 明後日 {0} 日後 @@ -5153,6 +5267,9 @@ For terms of use, see http://www.unicode.org/copyright.html ポートモレスビー + + ブーゲンビル + マニラ @@ -5237,6 +5354,9 @@ For terms of use, see http://www.unicode.org/copyright.html イルクーツク + + チタ + ヤクーツク @@ -5255,6 +5375,9 @@ For terms of use, see http://www.unicode.org/copyright.html マガダン + + スレドネコリムスク + カムチャッカ @@ -5626,9 +5749,9 @@ For terms of use, see http://www.unicode.org/copyright.html - アピーア時間 - アピーア標準時 - アピーア夏時間 + アピア時間 + アピア標準時 + アピア夏時間 @@ -5870,7 +5993,7 @@ For terms of use, see http://www.unicode.org/copyright.html - 極東ヨーロッパ時間 + 極東ヨーロッパ時間 @@ -5916,9 +6039,9 @@ For terms of use, see http://www.unicode.org/copyright.html - グルジア時間 - グルジア標準時 - グルジア夏時間 + ジョージア時間 + ジョージア標準時 + ジョージア夏時間 @@ -6528,7 +6651,7 @@ For terms of use, see http://www.unicode.org/copyright.html - 0千 + 0 0万 00万 000万 @@ -6544,7 +6667,7 @@ For terms of use, see http://www.unicode.org/copyright.html - 0千 + 0 0万 00万 000万 @@ -6582,6 +6705,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + 0 + ¤0万 + ¤00万 + ¤000万 + ¤0000万 + ¤0億 + ¤00億 + ¤000億 + ¤0000億 + ¤0兆 + ¤00兆 + ¤000兆 + + {0}{1} @@ -6592,7 +6731,7 @@ For terms of use, see http://www.unicode.org/copyright.html アラブ首長国連邦ディルハム - アラブ首長国連邦ディルハム + UAE ディルハム AED @@ -6629,6 +6768,7 @@ For terms of use, see http://www.unicode.org/copyright.html クワンザ クワンザ AOA + Kz アンゴラ クワンザ (1977–1991) @@ -6651,13 +6791,13 @@ For terms of use, see http://www.unicode.org/copyright.html ARA - アルゼンチン・ペソ・レイ(1970-1983) - アルゼンチン・ペソ・レイ(1970-1983) + アルゼンチン・ペソ・レイ(1970–1983) + アルゼンチン・ペソ・レイ(1970–1983) ARL - アルゼンチン・ペソ(1881-1970) - アルゼンチン・ペソ(1881-1970) + アルゼンチン・ペソ(1881–1970) + アルゼンチン・ペソ(1881–1970) ARM @@ -6706,10 +6846,11 @@ For terms of use, see http://www.unicode.org/copyright.html ボスニア マルク (BAM) ボスニア マルク (BAM) BAM + KM - ボスニア・ヘルツェゴビナ 新ディナール(1994-1997) - ボスニア・ヘルツェゴビナ 新ディナール(1994-1997) + ボスニア・ヘルツェゴビナ 新ディナール(1994–1997) + ボスニア・ヘルツェゴビナ 新ディナール(1994–1997) BAN @@ -6755,8 +6896,8 @@ For terms of use, see http://www.unicode.org/copyright.html BGN - ブルガリア レフ(1879-1952) - ブルガリア レフ(1879-1952) + ブルガリア レフ(1879–1952) + ブルガリア レフ(1879–1952) BGO @@ -6785,6 +6926,7 @@ For terms of use, see http://www.unicode.org/copyright.html ボリビア ボリビアーノ ボリビア ボリビアーノ BOB + Bs ボリビア ボリビアーノ (1863–1963) @@ -6833,8 +6975,8 @@ For terms of use, see http://www.unicode.org/copyright.html BRR - ブラジル クルゼイロ(1942-1967) - ブラジル クルゼイロ(1942-1967) + ブラジル クルゼイロ(1942–1967) + ブラジル クルゼイロ(1942–1967) BRZ @@ -6857,6 +6999,7 @@ For terms of use, see http://www.unicode.org/copyright.html ボツワナ プラ ボツワナ プラ BWP + P ベラルーシ 新ルーブル (1994–1999) @@ -6959,6 +7102,7 @@ For terms of use, see http://www.unicode.org/copyright.html キューバ 兌換ペソ キューバ 兌換ペソ CUC + $ キューバ ペソ @@ -6980,6 +7124,7 @@ For terms of use, see http://www.unicode.org/copyright.html チェコ コルナ チェコ コルナ CZK + 東ドイツ マルク @@ -7000,6 +7145,7 @@ For terms of use, see http://www.unicode.org/copyright.html デンマーク クローネ デンマーク クローネ DKK + kr ドミニカ ペソ @@ -7031,6 +7177,7 @@ For terms of use, see http://www.unicode.org/copyright.html エジプト ポンド エジプト ポンド EGP + エリトリア ナクファ @@ -7079,6 +7226,7 @@ For terms of use, see http://www.unicode.org/copyright.html フォークランド(マルビナス)諸島 ポンド フォークランド(マルビナス)諸島 ポンド FKP + £ フランス フラン @@ -7092,14 +7240,15 @@ For terms of use, see http://www.unicode.org/copyright.html £ - グルジア クーポン ラリ - グルジア クーポン ラリ + ジョージア クーポン ラリ + ジョージア クーポン ラリ GEK - グルジア ラリ - グルジア ラリ + ジョージア ラリ + ジョージア ラリ GEL + ガーナ セディ (1979–2007) @@ -7126,6 +7275,7 @@ For terms of use, see http://www.unicode.org/copyright.html ギニア フラン ギニア フラン GNF + FG ギニア シリー @@ -7146,6 +7296,7 @@ For terms of use, see http://www.unicode.org/copyright.html グアテマラ ケツァル グアテマラ ケツァル GTQ + Q ポルトガル領ギニア エスクード @@ -7173,6 +7324,7 @@ For terms of use, see http://www.unicode.org/copyright.html ホンジュラス レンピラ ホンジュラス レンピラ HNL + L クロアチア ディナール @@ -7183,6 +7335,7 @@ For terms of use, see http://www.unicode.org/copyright.html クロアチア クーナ クロアチア クーナ HRK + kn ハイチ グールド @@ -7193,11 +7346,13 @@ For terms of use, see http://www.unicode.org/copyright.html ハンガリー フォリント ハンガリー フォリント HUF + Ft インドネシア ルピア インドネシア ルピア IDR + Rp アイリッシュ ポンド @@ -7245,6 +7400,7 @@ For terms of use, see http://www.unicode.org/copyright.html アイスランド クローナ アイスランド クローナ ISK + kr イタリア リラ @@ -7288,27 +7444,29 @@ For terms of use, see http://www.unicode.org/copyright.html コモロ フラン コモロ フラン KMF + CF 北朝鮮 ウォン 北朝鮮 ウォン KPW + - 韓国 ファン(1953-1962) - 韓国 ファン(1953-1962) + 韓国 ファン(1953–1962) + 韓国 ファン(1953–1962) KRH - 韓国 ウォン(1945-1953) - 韓国 ウォン(1945-1953) + 韓国 ウォン(1945–1953) + 韓国 ウォン(1945–1953) KRO 韓国 ウォン 韓国 ウォン - - + + クウェート ディナール @@ -7337,11 +7495,13 @@ For terms of use, see http://www.unicode.org/copyright.html レバノン ポンド レバノン ポンド LBP + スリランカ ルピー スリランカ ルピー LKR + Rs リベリア ドル @@ -7423,6 +7583,7 @@ For terms of use, see http://www.unicode.org/copyright.html マダガスカル アリアリ マダガスカル アリアリ MGA + Ar マラガシ フラン @@ -7435,8 +7596,8 @@ For terms of use, see http://www.unicode.org/copyright.html MKD - マケドニア ディナール(1992-1993) - マケドニア ディナール(1992-1993) + マケドニア ディナール(1992–1993) + マケドニア ディナール(1992–1993) MKN @@ -7448,6 +7609,7 @@ For terms of use, see http://www.unicode.org/copyright.html ミャンマー チャット ミャンマー チャット MMK + K モンゴル トグログ @@ -7479,6 +7641,7 @@ For terms of use, see http://www.unicode.org/copyright.html モーリシャス ルピー モーリシャス ルピー MUR + Rs モルディブ諸島 ルピー @@ -7515,6 +7678,7 @@ For terms of use, see http://www.unicode.org/copyright.html マレーシア リンギット マレーシア リンギット MYR + RM モザンピーク エスクード @@ -7552,6 +7716,7 @@ For terms of use, see http://www.unicode.org/copyright.html ニカラグア コルドバ オロ ニカラグア コルドバ オロ NIO + C$ オランダ ギルダー @@ -7562,11 +7727,13 @@ For terms of use, see http://www.unicode.org/copyright.html ノルウェー クローネ ノルウェー クローネ NOK + kr ネパール ルピー ネパール ルピー NPR + Rs ニュージーランド ドル @@ -7614,11 +7781,13 @@ For terms of use, see http://www.unicode.org/copyright.html パキスタン ルピー パキスタン ルピー PKR + Rs ポーランド ズウォティ ポーランド ズウォティ PLN + ポーランド ズウォティ (1950–1995) @@ -7665,6 +7834,7 @@ For terms of use, see http://www.unicode.org/copyright.html ロシア ルーブル ロシア ルーブル RUB + ロシア ルーブル (1991–1998) @@ -7675,6 +7845,7 @@ For terms of use, see http://www.unicode.org/copyright.html ルワンダ フラン ルワンダ フラン RWF + RF サウジ リヤル @@ -7711,6 +7882,7 @@ For terms of use, see http://www.unicode.org/copyright.html スウェーデン クローナ スウェーデン クローナ SEK + kr シンガポール ドル @@ -7722,6 +7894,7 @@ For terms of use, see http://www.unicode.org/copyright.html セントヘレナ島 ポンド セントヘレナ島 ポンド SHP + £ スロベニア トラール @@ -7764,6 +7937,7 @@ For terms of use, see http://www.unicode.org/copyright.html サントメ・プリンシペ ドブラ サントメ・プリンシペ ドブラ STD + Db ソ連 ルーブル @@ -7779,6 +7953,7 @@ For terms of use, see http://www.unicode.org/copyright.html シリア ポンド シリア ポンド SYP + £ スワジランド リランゲニ @@ -7789,6 +7964,7 @@ For terms of use, see http://www.unicode.org/copyright.html タイ バーツ タイ バーツ ฿ + ฿ タジキスタン ルーブル @@ -7819,6 +7995,7 @@ For terms of use, see http://www.unicode.org/copyright.html トンガ パ・アンガ トンガ パ・アンガ TOP + T$ ティモール エスクード @@ -7835,6 +8012,7 @@ For terms of use, see http://www.unicode.org/copyright.html 新トルコリラ TRY + TL トリニダードトバゴ ドル @@ -7920,6 +8098,7 @@ For terms of use, see http://www.unicode.org/copyright.html ベネズエラ ボリバル ベネズエラ ボリバル VEF + Bs ベトナム ドン @@ -7928,8 +8107,8 @@ For terms of use, see http://www.unicode.org/copyright.html - ベトナム ドン(1978-1985) - ベトナム ドン(1978-1985) + ベトナム ドン(1978–1985) + ベトナム ドン(1978–1985) VNN @@ -7943,8 +8122,8 @@ For terms of use, see http://www.unicode.org/copyright.html WST - CFA フラン(BEAC) - CFA フラン(BEAC) + 中央アフリカ CFA フラン + 中央アフリカ CFA フラン FCFA @@ -7981,6 +8160,7 @@ For terms of use, see http://www.unicode.org/copyright.html 東カリブ ドル 東カリブ ドル EC$ + $ 特別引き出し権 @@ -8003,8 +8183,8 @@ For terms of use, see http://www.unicode.org/copyright.html XFU - CFA フラン(BCEAO) - CFA フラン(BCEAO) + 西アフリカ CFA フラン + 西アフリカ CFA フラン CFA @@ -8073,8 +8253,8 @@ For terms of use, see http://www.unicode.org/copyright.html YUN - ユーゴスラビア 改革ディナール(1992-1993) - ユーゴスラビア 改革ディナール(1992-1993) + ユーゴスラビア 改革ディナール(1992–1993) + ユーゴスラビア 改革ディナール(1992–1993) YUR @@ -8086,6 +8266,7 @@ For terms of use, see http://www.unicode.org/copyright.html 南アフリカ ランド 南アフリカ ランド ZAR + R ザンビア クワチャ (1968–2012) @@ -8096,6 +8277,7 @@ For terms of use, see http://www.unicode.org/copyright.html ザンビア クワチャ ザンビア クワチャ ZMW + ZK ザイール 新ザイール (1993–1998) @@ -8131,7 +8313,7 @@ For terms of use, see http://www.unicode.org/copyright.html - 毎{1} {0} + {0}毎{1} G フォース @@ -8141,6 +8323,18 @@ For terms of use, see http://www.unicode.org/copyright.html メートル毎秒毎秒 {0} メートル毎秒毎秒 + + 回転 + {0} 回転 + + + ラジアン + {0} ラジアン + + + + {0} 度 + {0} 分 @@ -8149,25 +8343,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} 秒 - - - {0} 度 - - - ラジアン - {0} ラジアン - - - エーカー - {0} エーカー + + 平方キロメートル + {0} 平方キロメートル ヘクタール {0} ヘクタール + + 平方メートル + {0} 平方メートル + {0}/平方メートル + 平方センチメートル {0} 平方センチメートル + {0}/平方センチメートル + + + 平方マイル + {0} 平方マイル + + + エーカー + {0} エーカー + + + 平方ヤード + {0} 平方ヤード 平方フィート @@ -8176,112 +8380,114 @@ For terms of use, see http://www.unicode.org/copyright.html 平方インチ {0} 平方インチ + {0}/平方インチ - - 平方キロメートル - {0} 平方キロメートル - - - 平方メートル - {0} 平方メートル - - - 平方マイル - {0} 平方マイル - - - 平方ヤード - {0} 平方ヤード + + + {0} 金 リットル毎キロメートル {0} リットル毎キロメートル + + リットル毎100キロメートル + {0} リットル毎100キロメートル + マイル毎ガロン {0} マイル毎ガロン - - ビット - {0} ビット - - - バイト - {0} バイト - - - ギガビット - {0} ギガビット - - - ギガバイト - {0} ギガバイト - - - キロビット - {0} キロビット - - - キロバイト - {0} キロバイト - - - メガビット - {0} メガビット - - - メガバイト - {0} メガバイト - - - テラビット - {0} テラビット - テラバイト {0} テラバイト + + テラビット + {0} テラビット + + + ギガバイト + {0} ギガバイト + + + ギガビット + {0} ギガビット + + + メガバイト + {0} メガバイト + + + メガビット + {0} メガビット + + + キロバイト + {0} キロバイト + + + キロビット + {0} キロビット + + + バイト + {0} バイト + + + ビット + {0} ビット + + + 世紀 + {0} 世紀 + + + + {0} 年 + {0}/年 + + + か月 + {0} か月 + {0}/月 + + + 週間 + {0} 週間 + {0}/週 + {0} 日 + {0}/日 時間 {0} 時間 {0}/時間 - - マイクロ秒 - {0} マイクロ秒 - - - ミリ秒 - {0} ミリ秒 - {0} 分 - - - か月 - {0} か月 - - - ナノ秒 - {0} ナノ秒 + {0}/分 {0} 秒 {0}/秒 - - 週間 - {0} 週間 + + ミリ秒 + {0} ミリ秒 - - - {0} 年 + + マイクロ秒 + {0} マイクロ秒 + + + ナノ秒 + {0} ナノ秒 アンペア @@ -8299,26 +8505,26 @@ For terms of use, see http://www.unicode.org/copyright.html ボルト {0} ボルト + + キロカロリー + {0} キロカロリー + - 熱力学カロリー - {0} 熱力学カロリー + カロリー + {0} カロリー カロリー {0} カロリー - - ジュール - {0} ジュール - - - キロカロリー - {0} キロカロリー - キロジュール {0} キロジュール + + ジュール + {0} ジュール + キロワット時 {0} キロワット時 @@ -8327,174 +8533,179 @@ For terms of use, see http://www.unicode.org/copyright.html ギガヘルツ {0} ギガヘルツ - - ヘルツ - {0} ヘルツ + + メガヘルツ + {0} メガヘルツ キロヘルツ {0} キロヘルツ - - メガヘルツ - {0} メガヘルツ + + ヘルツ + {0} ヘルツ - - 天文単位 - {0} 天文単位 + + キロメートル + {0} キロメートル + {0}/キロメートル - - センチメートル - {0} センチメートル + + メートル + {0} メートル + {0}/メートル デシメートル {0} デシメートル - - ファゾム - {0} ファゾム - - - フィート - {0} フィート - - - ハロン - {0} ハロン - - - インチ - {0} インチ - - - キロメートル - {0} キロメートル - - - 光年 - {0} 光年 - - - メートル - {0} メートル - - - マイクロメートル - {0} マイクロメートル - - - マイル - {0} マイル + + センチメートル + {0} センチメートル + {0}/センチメートル ミリメートル {0} ミリメートル + + マイクロメートル + {0} マイクロメートル + ナノメートル {0} ナノメートル - - 海里 - {0} 海里 - - - パーセク - {0} パーセク - ピコメートル {0} ピコメートル + + マイル + {0} マイル + ヤード {0} ヤード + + フィート + {0} フィート + {0}/フィート + + + インチ + {0} インチ + {0}/インチ + + + パーセク + {0} パーセク + + + 光年 + {0} 光年 + + + 天文単位 + {0} 天文単位 + + + ハロン + {0} ハロン + + + ファゾム + {0} ファゾム + + + 海里 + {0} 海里 + + + スカンジナビアマイル + {0} スカンジナビアマイル + ルクス {0} ルクス - - カラット - {0} カラット - - - グラム - {0} グラム - - - キログラム - {0} キログラム - メトリックトン {0} メトリックトン - - マイクログラム - {0} マイクログラム + + キログラム + {0} キログラム + {0}/キログラム + + + グラム + {0} グラム + {0}/グラム ミリグラム {0} ミリグラム - - オンス - {0} オンス - - - トロイオンス - {0} トロイオンス - - - ポンド - {0} ポンド - - - ストーン - {0} ストーン + + マイクログラム + {0} マイクログラム トン {0} トン + + ストーン + {0} ストーン + + + ポンド + {0} ポンド + {0}/ポンド + + + オンス + {0} オンス + {0}/オンス + + + トロイオンス + {0} トロイオンス + + + カラット + {0} カラット + ギガワット {0} ギガワット - - 馬力 - {0} 馬力 - - - キロワット - {0} キロワット - メガワット {0} メガワット - - ミリワット - {0} ミリワット + + キロワット + {0} キロワット ワット {0} ワット + + ミリワット + {0} ミリワット + + + 馬力 + {0} 馬力 + ヘクトパスカル {0} ヘクトパスカル - - 水銀柱インチ - {0} 水銀柱インチ - - - ミリバール - {0} ミリバール - 水銀柱ミリメートル {0} 水銀柱ミリメートル @@ -8503,9 +8714,13 @@ For terms of use, see http://www.unicode.org/copyright.html 重量ポンド毎平方インチ {0} 重量ポンド毎平方インチ - - - {0} 金 + + 水銀柱インチ + {0} 水銀柱インチ + + + ミリバール + {0} ミリバール キロメートル毎時 @@ -8519,6 +8734,14 @@ For terms of use, see http://www.unicode.org/copyright.html マイル毎時 時速 {0} マイル + + ノット + {0} ノット + + + + {0}度 + 摂氏 摂氏 {0} 度 @@ -8531,30 +8754,6 @@ For terms of use, see http://www.unicode.org/copyright.html ケルビン {0} ケルビン - - エーカーフィート - {0} エーカーフィート - - - ブッシェル - {0} ブッシェル - - - センチリットル - {0} センチリットル - - - 立方センチメートル - {0} 立方センチメートル - - - 立方フィート - {0} 立方フィート - - - 立方インチ - {0} 立方インチ - 立方キロメートル {0} 立方キロメートル @@ -8562,6 +8761,12 @@ For terms of use, see http://www.unicode.org/copyright.html 立方メートル {0} 立方メートル + {0}/立方メートル + + + 立方センチメートル + {0} 立方センチメートル + {0}/立方センチメートル 立方マイル @@ -8571,21 +8776,17 @@ For terms of use, see http://www.unicode.org/copyright.html 立方ヤード {0} 立方ヤード - - カップ - {0} カップ + + 立方フィート + {0} 立方フィート - - デシリットル - {0} デシリットル + + 立方インチ + {0} 立方インチ - - 液量オンス - {0} 液量オンス - - - ガロン - {0} ガロン + + メガリットル + {0} メガリットル ヘクトリットル @@ -8594,23 +8795,57 @@ For terms of use, see http://www.unicode.org/copyright.html リットル {0} リットル + {0}/リットル - - メガリットル - {0} メガリットル + + デシリットル + {0} デシリットル + + + センチリットル + {0} センチリットル ミリリットル {0} ミリリットル - - パイント - {0} パイント + + メトリックパイント + {0} メトリックパイント + + + メトリックカップ + {0} メトリックカップ + + + エーカーフィート + {0} エーカーフィート + + + ブッシェル + {0} ブッシェル + + + ガロン + {0} ガロン + {0}/ガロン クォート {0} クォート + + パイント + {0} パイント + + + カップ + {0} カップ + + + 液量オンス + {0} 液量オンス + 大さじ 大さじ {0} @@ -8619,6 +8854,12 @@ For terms of use, see http://www.unicode.org/copyright.html 小さじ 小さじ {0} + + 東経{0} + 北緯{0} + 南緯{0} + 西経{0} + @@ -8632,6 +8873,18 @@ For terms of use, see http://www.unicode.org/copyright.html メートル毎秒毎秒 {0} m/s² + + rev + {0} rev + + + ラジアン + {0} rad + + + + {0} 度 + {0} 分 @@ -8640,25 +8893,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} 秒 - - - {0} 度 - - - ラジアン - {0} rad - - - エーカー - {0} ac + + km² + {0} km² ヘクタール {0} ha + + + {0} m² + {0}/m² + cm² {0} cm² + {0}/cm² + + + 平方マイル + {0} mi² + + + エーカー + {0} ac + + + 平方ヤード + {0} yd² 平方フィート @@ -8667,112 +8930,114 @@ For terms of use, see http://www.unicode.org/copyright.html 平方インチ {0} in² + {0}/in² - - km² - {0} km² - - - - {0} m² - - - 平方マイル - {0} mi² - - - 平方ヤード - {0} yd² + + + {0} 金 - リットル毎キロメートル + L/km {0} L/km + + L/100km + {0} L/100km + - マイル毎ガロン + マイル/ガロン {0} mpg - - ビット - {0} bit - - - バイト - {0} byte - - - ギガビット - {0} Gb - - - GB - {0} GB - - - キロビット - {0} kb - - - KB - {0} KB - - - メガビット - {0} Mb - - - MB - {0} MB - - - テラビット - {0} Tb - テラバイト {0} TB + + テラビット + {0} Tb + + + GB + {0} GB + + + ギガビット + {0} Gb + + + MB + {0} MB + + + メガビット + {0} Mb + + + KB + {0} KB + + + キロビット + {0} kb + + + バイト + {0} byte + + + ビット + {0} bit + + + c + {0} c + + + + {0} 年 + {0}/年 + + + か月 + {0} か月 + {0}/月 + + + 週間 + {0} 週間 + {0}/週 + {0} 日 + {0}/日 時間 {0} 時間 {0}/時間 - - マイクロ秒 - {0} μs - - - ミリ秒 - {0} ms - {0} 分 - - - か月 - {0} か月 - - - ナノ秒 - {0} ns + {0}/分 {0} 秒 {0}/秒 - - 週間 - {0} 週間 + + ミリ秒 + {0} ms - - - {0} 年 + + マイクロ秒 + {0} μs + + + ナノ秒 + {0} ns アンペア @@ -8790,26 +9055,26 @@ For terms of use, see http://www.unicode.org/copyright.html ボルト {0} V + + kcal + {0} kcal + - 熱力学カロリー - {0} calth + cal + {0} cal cal {0} cal - - ジュール - {0} J - - - kcal - {0} kcal - キロジュール {0} kJ + + ジュール + {0} J + キロワット時 {0} kWh @@ -8818,174 +9083,179 @@ For terms of use, see http://www.unicode.org/copyright.html ギガヘルツ {0} GHz - - Hz - {0} Hz + + メガヘルツ + {0} MHz kHz {0} kHz - - メガヘルツ - {0} MHz + + Hz + {0} Hz - - 天文単位 - {0} au + + km + {0} km + {0}/km - - cm - {0} cm + + m + {0} m + {0}/m デシメートル {0} dm - - ファゾム - {0} fm - - - フィート - {0} ft - - - ハロン - {0} fur - - - インチ - {0} in - - - km - {0} km - - - 光年 - {0} 光年 - - - m - {0} m - - - マイクロメートル - {0} µm - - - マイル - {0} mi + + cm + {0} cm + {0}/cm mm {0} mm + + マイクロメートル + {0} µm + ナノメートル {0} nm - - 海里 - {0} 海里 - - - パーセク - {0} pc - ピコメートル {0} pm + + マイル + {0} mi + ヤード {0} yd + + フィート + {0} ft + {0}/ft + + + インチ + {0} in + {0}/in + + + パーセク + {0} pc + + + 光年 + {0} 光年 + + + 天文単位 + {0} au + + + ハロン + {0} fur + + + ファゾム + {0} fm + + + 海里 + {0} 海里 + + + スカンジナビアマイル + {0} smi + ルクス {0} lx - - カラット - {0} ct - - - グラム - {0} g - - - kg - {0} kg - メトリックトン {0} MT - - マイクログラム - {0} µg + + kg + {0} kg + {0}/kg + + + グラム + {0} g + {0}/g mg {0} mg - - オンス - {0} oz - - - トロイオンス - {0} oz t - - - ポンド - {0} lb - - - ストーン - {0} st + + マイクログラム + {0} µg トン {0} t + + ストーン + {0} st + + + ポンド + {0} lb + {0}/lb + + + オンス + {0} oz + {0}/oz + + + トロイオンス + {0} oz t + + + カラット + {0} ct + ギガワット {0} GW - - 馬力 - {0} 馬力 - - - キロワット - {0} kW - メガワット {0} MW - - ミリワット - {0} mW + + キロワット + {0} kW ワット {0} W + + ミリワット + {0} mW + + + 馬力 + {0} 馬力 + hPa {0} hPa - - 水銀柱インチ - {0} inHg - - - ミリバール - {0} mb - 水銀柱ミリメートル {0} mm Hg @@ -8994,9 +9264,13 @@ For terms of use, see http://www.unicode.org/copyright.html 重量ポンド毎平方インチ {0} psi - - - {0} 金 + + 水銀柱インチ + {0} inHg + + + ミリバール + {0} mb km/h @@ -9010,6 +9284,14 @@ For terms of use, see http://www.unicode.org/copyright.html マイル毎時 {0} mi/h + + kn + {0} kn + + + ° + {0}° + °C {0}°C @@ -9022,30 +9304,6 @@ For terms of use, see http://www.unicode.org/copyright.html K {0} K - - エーカーフィート - {0} ac ft - - - ブッシェル - {0} bu - - - センチリットル - {0} cL - - - cm³ - {0} cm³ - - - 立方フィート - {0} ft³ - - - 立方インチ - {0} in³ - km³ {0} km³ @@ -9053,6 +9311,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0}/cm³ 立方マイル @@ -9062,21 +9326,17 @@ For terms of use, see http://www.unicode.org/copyright.html 立方ヤード {0} yd³ - - カップ - {0} カップ + + 立方フィート + {0} ft³ - - デシリットル - {0} dL + + 立方インチ + {0} in³ - - 液量オンス - {0} fl oz - - - ガロン - {0} gal + + メガリットル + {0} ML ヘクトリットル @@ -9085,23 +9345,57 @@ For terms of use, see http://www.unicode.org/copyright.html リットル {0} l + {0}/l - - メガリットル - {0} ML + + デシリットル + {0} dL + + + センチリットル + {0} cL ml {0} ml - - パイント - {0} pt + + mpt + {0} mpt + + + mcup + {0} mc + + + エーカーフィート + {0} ac ft + + + ブッシェル + {0} bu + + + ガロン + {0} gal + {0}/gal クォート {0} qt + + パイント + {0} pt + + + カップ + {0} カップ + + + 液量オンス + {0} fl oz + 大さじ 大さじ {0} @@ -9110,6 +9404,12 @@ For terms of use, see http://www.unicode.org/copyright.html 小さじ 小さじ {0} + + {0}E + {0}N + {0}S + {0}W + @@ -9121,80 +9421,99 @@ For terms of use, see http://www.unicode.org/copyright.html {0}m/s² + + {0}rad + + + {0}° + {0}′ {0}″ - - {0}° - - - {0}rad - - - {0}ac + + {0}km² {0}ha + + {0}m² + {0}cm² + + {0}mi² + + + {0}ac + + + {0}yd² + {0}ft² {0}in² - - {0}km² - - - {0}m² - - - {0}mi² - - - {0}yd² + + {0}K {0}L/km + + L/100km + {0}L/100km + {0}mpg - - {0}b - - - {0}B - - - {0}Gb - - - {0}GB - - - {0}kb - - - {0}KB - - - {0}Mb - - - {0}MB + + {0}TB {0}Tb - - {0}TB + + {0}GB + + + {0}Gb + + + {0}MB + + + {0}Mb + + + {0}KB + + + {0}kb + + + {0}B + + + {0}b + + + + {0}年 + + + か月 + {0}か月 + + + 週間 + {0}週間 @@ -9204,37 +9523,25 @@ For terms of use, see http://www.unicode.org/copyright.html 時間 {0}時間 - - µs - {0}μs - - - ms - {0}ms - {0}分 - - か月 - {0}か月 - - - ns - {0}ns - {0}秒 - - 週間 - {0}週間 + + ms + {0}ms - - - {0}年 + + µs + {0}μs + + + ns + {0}ns {0}A @@ -9248,118 +9555,125 @@ For terms of use, see http://www.unicode.org/copyright.html {0}V + + {0}kcal + {0}calth {0}cal - - {0}J - - - {0}kcal - {0}kJ + + {0}J + {0}kWh {0}GHz - - {0}Hz + + {0}MHz {0}kHz - - {0}MHz - - - {0}au - - - cm - {0}cm - - - {0}dm - - - fm - {0}fm - - - {0}′ - - - fur - {0}fur - - - {0}″ + + {0}Hz km {0}km - - {0}光年 - m {0}m - - {0}µm + + {0}dm - - {0}マイル + + cm + {0}cm mm {0}mm + + {0}µm + {0}nm - - {0}海里 - - - {0}pc - {0}pm + + {0}マイル + {0}ヤード + + {0}′ + + + {0}″ + + + {0}pc + + + {0}光年 + + + {0}au + + + fur + {0}fur + + + fm + {0}fm + + + {0}海里 + {0}lx - - {0}ct - - - g - {0}g + + {0}MT kg {0}kg - - {0}MT + + g + {0}g + + + {0}mg {0}µg - - {0}mg + + {0}t + + + st + {0}st + + + {0}lb {0}oz @@ -9367,52 +9681,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0}oz t - - {0}lb - - - st - {0}st - - - {0}t + + {0}ct {0}GW - - {0}hp + + {0}MW {0}kW - - {0}MW + + {0}W {0}mW - - {0}W + + {0}hp hPa {0}hPa - - {0}" Hg - - - {0}mb - {0}mm Hg {0}psi - - {0}K + + {0}" Hg + + + {0}mb km/h @@ -9426,7 +9730,7 @@ For terms of use, see http://www.unicode.org/copyright.html °C - {0}° + {0}°C {0}°F @@ -9435,48 +9739,29 @@ For terms of use, see http://www.unicode.org/copyright.html K {0}K - - {0}ac ft - - - bu - {0}bu - - - {0}cL - - - {0}cm³ - - - {0}ft³ - - - {0}in³ - {0}km³ {0}m³ + + {0}cm³ + {0}mi³ {0}yd³ - - {0}カップ + + {0}ft³ - - {0}dL + + {0}in³ - - {0}fl oz - - - {0}gal + + {0}ML {0}hL @@ -9485,24 +9770,49 @@ For terms of use, see http://www.unicode.org/copyright.html l {0}l - - {0}ML + + {0}dL + + + {0}cL {0}ml - - {0}pt + + {0}ac ft + + + bu + {0}bu + + + {0}gal {0}qt + + {0}pt + + + {0}カップ + + + {0}fl oz + 大さじ{0} 小さじ{0} + + {0}E + {0}N + {0}S + {0}W + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ja_JP.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ja_JP.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ja_JP.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ja_JP.xml index 8348de09bfc..d0435a12533 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ja_JP.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ja_JP.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/jgo.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/jgo.xml similarity index 89% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/jgo.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/jgo.xml index 1cbfd7240a4..795325ed806 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/jgo.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/jgo.xml @@ -1,13 +1,12 @@ - - - + @@ -115,8 +114,8 @@ For terms of use, see http://www.unicode.org/copyright.html Pɛnɔ́mba - mɛlɛ́ꞌ-mɛkát - pɛnɔ́mba + mɛlɛ́ꞌ-mɛkát + pɛnɔ́mba @@ -342,6 +341,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + mbaꞌmbaꞌ + ŋka mbɔ́t nji + mbaꞌmbaꞌ ŋka mbɔ́t nji @@ -349,9 +352,13 @@ For terms of use, see http://www.unicode.org/copyright.html - + tsɛttsɛt mɛŋguꞌ mi ɛ́ lɛɛnɛ Kɛlísɛtɔ gɔ ńɔ́ tsɛttsɛt mɛŋguꞌ mi ɛ́ fúnɛ Kɛlísɛtɔ tɔ́ mɔ́ + + + BCE + CE @@ -463,7 +470,9 @@ For terms of use, see http://www.unicode.org/copyright.html + yesterday lɔꞋɔ + tomorrow Nǔu lɛ́Ꞌ {0} Nǔu lɛ́Ꞌ {0} @@ -546,6 +555,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0M + ¤ 0M + ¤ 00M + ¤ 00M + ¤ 000M + ¤ 000M + ¤ 0G + ¤ 0G + ¤ 00G + ¤ 00G + ¤ 000G + ¤ 000G + ¤ 0T + ¤ 0T + ¤ 00T + ¤ 00T + ¤ 000T + ¤ 000T + + @@ -568,6 +605,16 @@ For terms of use, see http://www.unicode.org/copyright.html + + ŋguꞋ + ŋguꞋ {0} + ŋguꞋ {0} + + + pɛsaŋ + pɛsaŋ {0} + pɛsaŋ {0} + lɛ́Ꞌ {0} lɛ́Ꞌ @@ -583,18 +630,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} minút {0} minút - - pɛsaŋ - pɛsaŋ {0} - pɛsaŋ {0} - - - ŋguꞋ - ŋguꞋ {0} - ŋguꞋ {0} - + + ŋguꞋ + + + pɛsaŋ + lɛ́Ꞌ @@ -604,12 +647,6 @@ For terms of use, see http://www.unicode.org/copyright.html minút - - pɛsaŋ - - - ŋguꞋ - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/jgo_CM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/jgo_CM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/jgo_CM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/jgo_CM.xml index 689b44c2cab..ac7ebb3b959 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/jgo_CM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/jgo_CM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/jmc.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/jmc.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/jmc.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/jmc.xml index 9f9e2586c62..36a473a4ce9 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/jmc.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/jmc.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antili za Uholanzi Angola Ajentina Samoa ya Marekani @@ -448,6 +446,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + utuko + kyiukonyi + utuko kyiukonyi @@ -489,22 +491,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -578,6 +580,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00 + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + @@ -758,3 +788,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/jmc_TZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/jmc_TZ.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/jmc_TZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/jmc_TZ.xml index c328ec7f0a4..4c9db4cdf6b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/jmc_TZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/jmc_TZ.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ka.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ka.xml similarity index 93% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ka.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ka.xml index 24b8dbdecec..8621a3deca8 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ka.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ka.xml @@ -1,13 +1,12 @@ - - - + @@ -48,6 +47,7 @@ For terms of use, see http://www.unicode.org/copyright.html ავადი აიმარა აზერბაიჯანული + აზერბაიჯანული ბაშკირული ბელუჯი ბალინური @@ -58,6 +58,7 @@ For terms of use, see http://www.unicode.org/copyright.html ბემბა ბენა ბულგარული + დასავლეთ ბელუჯი ბოჯპური ბამბარა ბენგალური @@ -239,6 +240,7 @@ For terms of use, see http://www.unicode.org/copyright.html ლაოსური მონგო ლოზი + ჩრდილოეთ ლური ლიტვური ლუბა-კატანგა ლუბა-კასაი @@ -281,12 +283,14 @@ For terms of use, see http://www.unicode.org/copyright.html ბირმული მიენე ერზია + მაზანდერანული ნაურუ ნეაპოლიტანური ნამა ნორვეგიული ბუკმოლი ჩრდილოეთ ნდებელე - ქვემოგერმანული + ქვემოგერმანული + ქვემოსაქსონური ნეპალური ნევარი ნიდერლანდური @@ -343,6 +347,7 @@ For terms of use, see http://www.unicode.org/copyright.html სარდინიული სიცილიური სინდჰური + სამხრეთ ქურთული ჩრდილოეთ საამური სენეკა სენა @@ -371,8 +376,8 @@ For terms of use, see http://www.unicode.org/copyright.html შუმერული შვედური სუაჰილი + კონგოს სუაჰილი კომორული - კონგოს სუაჰილი კლასიკური სირიული სირიული ტამილური @@ -403,6 +408,7 @@ For terms of use, see http://www.unicode.org/copyright.html ვიეტნამური ვუნჯო ველაითა + ვალპირი ვოლოფური ყალმუხური ქჰოსა @@ -621,7 +627,6 @@ For terms of use, see http://www.unicode.org/copyright.html ანგილია ალბანეთი სომხეთი - ნიდერლანდების ანტილები ანგოლა ანტარქტიკა არგენტინა @@ -951,90 +956,103 @@ For terms of use, see http://www.unicode.org/copyright.html კალენდარი დახარისხების თანმიმდევრობა ვალუტა + დროის სისტემა (12 ან 24) + სტრიქონის წყვეტის სტილი + საზომი სისტემა რიცხვები - არაბულ-ინდური ციფრები - გაფართოებული არაბულ-ინდური ციფრები - სომხური რიცხვები - სომხური ქვედა რეგისტრის რიცხვები - ბალიური ციფრები - ბენგალური ციფრები - ტრადიციული ჩინური - ბუდისტური კალენდარი - ჩამური ციფრები - ჩინური კალენდარი - კოპტური კალენდარი - კალენდარი დანგი - დევანაგარის ციფრები - ლექსიკონით - უნიკოდის ნაგულისხმევი დახარისხების თანმიმდევრობა - ეთიოპიური რიცხვები - ეთიოპიური კალენდარი - ეთიოპიური ამეთე ალემი კალენდარი - სრულსიგანიანი ციფრები - გამარტივებული ჩინური - ქართული რიცხვები - გრიგორიანული კალენდარი - ბერძნული რიცხვები - ბერძნული ქვედა რეგისტრის რიცხვები - გუჯარათული ციფრები - გურმუხული ციფრები - ჩინური ათობითი რიცხვები - გამარტივებული ჩინური რიცხვები - გამარტივებული ჩინური ფინანსური რიცხვები - ტრადიციული ჩინური რიცხვები - ტრადიციული ჩინური ფინანსური რიცხვები - ებრაული რიცხვები - ებრაული კალენდარი - ინდოეთის ეროვნული კალენდარი - ისლამური კალენდარი - ისლამური სამოქალაქო კალენდარი - ISO-8601 კალენდარი - იაპონური კალენდარი - იავური ციფრები - იაპონური რიცხვები - იაპონური ფინანსური რიცხვები - კაიაჰ-ლისი ციფრები - ქხმერული ციფრები - კანადური რიცხვები - ტაი თამის ჰორასი ციფრები - ტაი თამის თამისი ციფრები - ლაოსური ციფრები - დასავლური ციფრები - რონგ-რინგის ციფრები - ლიმბური ციფრები - მალაიალამური ციფრები - მონღოლური ციფრები - მანიპური ციფრები - მიანმური ციფრები - მიანმური შანი ციფრები - ნკოური ციფრები - ოლ-ჩიკის ციფრები - ორიული ციფრები - სპარსული კალენდარი - ტელეფონის წიგნით - პინ-ინი - რეფორმირებული - ჩინეთის რესპუბლიკის კალენდარი - რომაული ციფრები - რომაული ქვედა რეგისტრის რიცხვები - საურაშტრული ციფრები - ზოგადი დანიშნულების ძიება - ჰანგულის პირველი თანხმოვნით - სტანდარტული დახარისხების თანმიმდევრობა - შტრიხით - სუნდანური ციფრები - ახალი ტაი ლიუსი ციფრები - ტრადიციული ტამილური რიცხვები - ტამილური ციფრები - ტელუგუს ციფრები - ტაილანდური ციფრები - ტიბეტური ციფრები - ტრადიციული - ძირითადი შტრიხით - ვაიური ციფრები - ჟუინი + ბუდისტური კალენდარი + ჩინური კალენდარი + კოპტური კალენდარი + კალენდარი დანგი + ეთიოპიური კალენდარი + ეთიოპიური ამეთე ალემი კალენდარი + გრიგორიანული კალენდარი + ებრაული კალენდარი + ინდოეთის ეროვნული კალენდარი + ისლამური კალენდარი + ისლამური სამოქალაქო კალენდარი + ISO-8601 კალენდარი + იაპონური კალენდარი + სპარსული კალენდარი + ჩინეთის რესპუბლიკის კალენდარი + ტრადიციული ჩინური + ლექსიკონით + უნიკოდის ნაგულისხმევი დახარისხების თანმიმდევრობა + გამარტივებული ჩინური + ტელეფონის წიგნით + პინ-ინი + რეფორმირებული + ზოგადი დანიშნულების ძიება + ჰანგულის პირველი თანხმოვნით + სტანდარტული დახარისხების თანმიმდევრობა + შტრიხით + ტრადიციული + ძირითადი შტრიხით + ჟუინი + 12-საათიანი სისტემა (0-11) + 12-საათიანი სისტემა (1-12) + 24-საათიანი სისტემა (0-23) + 24-საათიანი სისტემა (1-24) + სტრიქონის რბილი წყვეტის სტილი + სტრიქონის ჩვეულებრივი წყვეტის სტილი + სტრიქონის ზედმიწევნითი წყვეტის სტილი + მეტრული სისტემა + ბრიტანული საზომი სისტემა + ამერიკული საზომი სისტემა + არაბულ-ინდური ციფრები + გაფართოებული არაბულ-ინდური ციფრები + სომხური რიცხვები + სომხური ქვედა რეგისტრის რიცხვები + ბალიური ციფრები + ბენგალური ციფრები + ჩამური ციფრები + დევანაგარის ციფრები + ეთიოპიური რიცხვები + სრულსიგანიანი ციფრები + ქართული რიცხვები + ბერძნული რიცხვები + ბერძნული ქვედა რეგისტრის რიცხვები + გუჯარათული ციფრები + გურმუხული ციფრები + ჩინური ათობითი რიცხვები + გამარტივებული ჩინური რიცხვები + გამარტივებული ჩინური ფინანსური რიცხვები + ტრადიციული ჩინური რიცხვები + ტრადიციული ჩინური ფინანსური რიცხვები + ებრაული რიცხვები + იავური ციფრები + იაპონური რიცხვები + იაპონური ფინანსური რიცხვები + კაიაჰ-ლისი ციფრები + ქხმერული ციფრები + კანადური რიცხვები + ტაი თამის ჰორასი ციფრები + ტაი თამის თამისი ციფრები + ლაოსური ციფრები + დასავლური ციფრები + რონგ-რინგის ციფრები + ლიმბური ციფრები + მალაიალამური ციფრები + მონღოლური ციფრები + მანიპური ციფრები + მიანმური ციფრები + მიანმური შანი ციფრები + ნკოური ციფრები + ოლ-ჩიკის ციფრები + ორიული ციფრები + რომაული ციფრები + რომაული ქვედა რეგისტრის რიცხვები + საურაშტრული ციფრები + სუნდანური ციფრები + ახალი ტაი ლიუსი ციფრები + ტრადიციული ტამილური რიცხვები + ტამილური ციფრები + ტელუგუს ციფრები + ტაილანდური ციფრები + ტიბეტური ციფრები + ვაიური ციფრები მეტრული @@ -1114,6 +1132,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d E y G MMM, y G @@ -1131,6 +1150,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d MMM E, d MMM + d MMMM mm:ss y G y G @@ -1140,6 +1160,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM, y G d MMM, y G E, d MMM, y G + MMMM y G QQQ, y G QQQQ, y G @@ -1454,19 +1475,66 @@ For terms of use, see http://www.unicode.org/copyright.html + შუაღამეს AM - შუადღე + შუადღ. PM + დილ. + ნაშუადღ. + საღ. + ღამ. + შუაღამეს + a + შუადღ. + p + დილას + ნაშუადღევს + საღამოს + ღამით + + + შუაღამეს + AM + შუადღეს + PM + დილით + ნაშუადღევს + საღამოს + ღამით + + + + + შუაღამე + AM + შუადღე + PM + დილა + ნაშუადღევი + საღამო + ღამე + + + შუაღამე a შუადღე p + დილა + ნაშუადღევი + საღამო + ღამე - AM + შუაღამე + შუადღემდე შუადღე - PM + შუადღ. შემდეგ + დილა + ნაშუადღევი + საღამო + ღამე @@ -1479,7 +1547,9 @@ For terms of use, see http://www.unicode.org/copyright.html ძვ. წ. + ჩვ. ერამდე ახ. წ. + ჩვ. ერა @@ -1495,7 +1565,7 @@ For terms of use, see http://www.unicode.org/copyright.html - d MMM, y + d MMM. y @@ -1529,7 +1599,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1}, {0} @@ -1539,7 +1609,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1}, {0} @@ -1551,34 +1621,40 @@ For terms of use, see http://www.unicode.org/copyright.html d ccc d E - E h:mm a - E HH:mm - E h:mm:ss a - E HH:mm:ss + E, h:mm a + E, HH:mm + E, h:mm:ss a + E, HH:mm:ss y G - MMM, y G - d MMM, y G - E, d MMM, y G + MMM. y G + d MMM. y G + E, d MMM. y G h a HH h:mm a HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d.M E, d.M LLL d MMM E, d MMM + d MMMM mm:ss y M.y d.M.y E, d.M.y - MMM, y - d MMM, y - E, d MMM, y + MMM. y + d MMM. y + E, d MMM. y + MMMM, y QQQ, y QQQQ, y @@ -1667,17 +1743,17 @@ For terms of use, see http://www.unicode.org/copyright.html d–d MMM, y - dd MM – dd MM, y - dd MMM, y – d MMM, y + dd MMM. – dd MMM. y + dd MMM. y – d MMM. y - E, d MMM – E, d MMM, y - E, d MMM – E, d MMM, y - E, d MMM, y – E, d MMM, y + E, d MMM. – E, d MMM. y + E, d MMM. – E, d MMM. y + E, d MMM. y – E, d MMM. y - MM – MM.y - MM.y – MM.y + MMMM – MMMM, y + MMMM y – MMMM y @@ -1974,6 +2050,9 @@ For terms of use, see http://www.unicode.org/copyright.html წ. + გასულ წელს + ამ წელს + მომავალ წელს {0} წელში {0} წელში @@ -1985,6 +2064,9 @@ For terms of use, see http://www.unicode.org/copyright.html წ. + გასულ წელს + ამ წელს + მომავალ წელს {0} წელში {0} წელში @@ -2043,6 +2125,9 @@ For terms of use, see http://www.unicode.org/copyright.html თვე + გასულ თვეს + ამ თვეში + მომავალ თვეს {0} თვეში {0} თვეში @@ -2054,6 +2139,9 @@ For terms of use, see http://www.unicode.org/copyright.html თვე + გასულ თვეს + ამ თვეში + მომავალ თვეს {0} თვეში {0} თვეში @@ -2079,6 +2167,9 @@ For terms of use, see http://www.unicode.org/copyright.html კვ. + გასულ კვირაში + ამ კვირაში + მომავალ კვირაში {0} კვირაში {0} კვირაში @@ -2090,6 +2181,9 @@ For terms of use, see http://www.unicode.org/copyright.html კვ. + გასულ კვირაში + ამ კვირაში + მომავალ კვირაში {0} კვირაში {0} კვირაში @@ -2117,6 +2211,11 @@ For terms of use, see http://www.unicode.org/copyright.html დღე + გუშინწინ + გუშინ + დღეს + ხვალ + ზეგ {0} დღეში {0} დღეში @@ -2128,6 +2227,11 @@ For terms of use, see http://www.unicode.org/copyright.html დღე + გუშინწინ + გუშინ + დღეს + ხვალ + ზეგ {0} დღეში {0} დღეში @@ -3227,6 +3331,9 @@ For terms of use, see http://www.unicode.org/copyright.html პორტ მორსბი + + ბუგენვილი + მანილა @@ -3311,6 +3418,9 @@ For terms of use, see http://www.unicode.org/copyright.html ირკუტსკი + + ჩიტა + იაკუტსკი @@ -3329,6 +3439,9 @@ For terms of use, see http://www.unicode.org/copyright.html მაგადანი + + სრედნეკოლიმსკი + კამჩატკა @@ -4591,6 +4704,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 ათ'.' ¤ + 0 ათ'.' ¤ + 00 ათ'.' ¤ + 00 ათ'.' ¤ + 000 ათ'.' ¤ + 000 ათ'.' ¤ + 0 მლნ'.' ¤ + 0 მლნ'.' ¤ + 00 მლნ'.' ¤ + 00 მლნ'.' ¤ + 000 მლნ'.' ¤ + 000 მლნ'.' ¤ + 0 მლრდ'.' ¤ + 0 მლრდ'.' ¤ + 00 მლრდ'.' ¤ + 00 მლრდ'.' ¤ + 000 მლრ'.' ¤ + 000 მლრ'.' ¤ + 0 ტრლ'.' ¤ + 0 ტრლ'.' ¤ + 00 ტრლ'.' ¤ + 00 ტრლ'.' ¤ + 000 ტრლ'.' ¤ + 000 ტრლ'.' ¤ + + {0} {1} {0} {1} @@ -4993,7 +5134,7 @@ For terms of use, see http://www.unicode.org/copyright.html ქართული ლარი ქართული ლარი ქართული ლარი - GEL + განური სედი @@ -5617,6 +5758,7 @@ For terms of use, see http://www.unicode.org/copyright.html ტაილანდური ბატი ტაილანდური ბატი THB + ฿ ტაჯიკური რუბლი @@ -5755,9 +5897,9 @@ For terms of use, see http://www.unicode.org/copyright.html WST - CFA ფრანკი (BEAC) - CFA ფრანკი (BEAC) - CFA ფრანკი (BEAC) + ცენტრალურ აფრიკული CFA ფრანკი + ცენტრალურ აფრიკული CFA ფრანკი + ცენტრალურ აფრიკული CFA ფრანკი FCFA @@ -5783,8 +5925,8 @@ For terms of use, see http://www.unicode.org/copyright.html (CFA) ფრანკი (BCEAO) - CFA ფრანკი (BCEAO) - CFA ფრანკი (BCEAO) + დასავლეთ აფრიკული CFA ფრანკი + დასავლეთ აფრიკული CFA ფრანკი CFA @@ -5864,6 +6006,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} მ/წმ² {0} მ/წმ² + + ბრუნვა + {0} ბრუნვა + {0} ბრუნვა + + + რადიანი + {0} რადიანი + {0} რადიანი + + + გრადუსი + {0} გრადუსი + {0} გრადუსი + მინუტი {0} მინუტი @@ -5874,30 +6031,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} სეკუნდი {0} სეკუნდი - - გრადუსი - {0} გრადუსი - {0} გრადუსი - - - რადიანი - {0} რადიანი - {0} რადიანი - - - აკრი - {0} აკრი - {0} აკრი + + კვადრატული კილომეტრი + {0} კვადრატული კილომეტრი + {0} კვადრატული კილომეტრი ჰექტარი {0} ჰექტარი {0} ჰექტარი + + კვადრატული მეტრი + {0} კვადრატული მეტრი + {0} კვადრატული მეტრი + {0} კვადრატულ მეტრში + კვადრატული სანტიმეტრი {0} კვადრატული სანტიმეტრი {0} კვადრატული სანტიმეტრი + {0} კვადრატულ სანტიმეტრში + + + კვადრატული მილი + {0} კვადრატული მილი + {0} კვადრატული მილი + + + აკრი + {0} აკრი + {0} აკრი + + + კვადრატული იარდი + {0} კვადრატული იარდი + {0} კვადრატული იარდი კვადრატული ფუტი @@ -5908,91 +6077,106 @@ For terms of use, see http://www.unicode.org/copyright.html კვადრატული დუიმი {0} კვადრატული დუიმი {0} კვადრატული დუიმი + {0} კვადრატულ დუიმში - - კვადრატული კილომეტრი - {0} კვადრატული კილომეტრი - {0} კვადრატული კილომეტრი - - - კვადრატული მეტრი - {0} კვადრატული მეტრი - {0} კვადრატული მეტრი - - - კვადრატული მილი - {0} კვადრატული მილი - {0} კვადრატული მილი - - - კვადრატული იარდი - {0} კვადრატული იარდი - {0} კვადრატული იარდი + + კარატი + {0} კარატი + {0} კარატი ლიტრი კილომეტრზე {0} ლიტრი კილომეტრზე {0} ლიტრი კილომეტრზე + + ლიტრი 100 კილომეტრში + {0} ლიტრი 100 კილომეტრში + {0} ლიტრი 100 კილომეტრში + მილი გალონზე {0} მილი გალონზე {0} მილი გალონზე - - ბიტი - {0} ბიტი - {0} ბიტი - - - ბაიტი - {0} ბაიტი - {0} ბაიტი - - - გიგაბიტი - {0} გიგაბიტი - {0} გიგაბიტი - - - გიგაბაიტი - {0} გიგაბაიტი - {0} გიგაბაიტი - - - კილობიტი - {0} კილობიტი - {0} კილობიტი - - - კილობაიტი - {0} კილობაიტი - {0} კილობაიტი - - - მეგაბიტი - {0} მეგაბიტი - {0} მეგაბიტი - - - მეგაბაიტი - {0} მეგაბაიტი - {0} მეგაბაიტი - - - ტერაბიტი - {0} ტერაბიტი - {0} ტერაბიტი - ტერაბაიტი {0} ტერაბაიტი {0} ტერაბაიტი + + ტერაბიტი + {0} ტერაბიტი + {0} ტერაბიტი + + + გიგაბაიტი + {0} გიგაბაიტი + {0} გიგაბაიტი + + + გიგაბიტი + {0} გიგაბიტი + {0} გიგაბიტი + + + მეგაბაიტი + {0} მეგაბაიტი + {0} მეგაბაიტი + + + მეგაბიტი + {0} მეგაბიტი + {0} მეგაბიტი + + + კილობაიტი + {0} კილობაიტი + {0} კილობაიტი + + + კილობიტი + {0} კილობიტი + {0} კილობიტი + + + ბაიტი + {0} ბაიტი + {0} ბაიტი + + + ბიტი + {0} ბიტი + {0} ბიტი + + + საუკუნე + {0} საუკუნე + {0} საუკუნე + + + წელი + {0} წელი + {0} წელი + {0} წელში + + + თვე + {0} თვე + {0} თვე + {0} თვეში + + + კვირა + {0} კვირა + {0} კვირა + {0} კვირაში + დღე {0} დღე {0} დღე + {0} დღეში საათი @@ -6000,30 +6184,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} საათი {0} საათში - - მიკროწამი - {0} მიკროწამი - {0} მიკროწამი - - - მილიწამი - {0} მილიწამი - {0} მილიწამი - წუთი {0} წუთი {0} წუთი - - - თვე - {0} თვე - {0} თვე - - - ნანოწამი - {0} ნანოწამი - {0} ნანოწამი + {0} წუთში წამი @@ -6031,15 +6196,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} წამი {0} წამში - - კვირა - {0} კვირა - {0} კვირა + + მილიწამი + {0} მილიწამი + {0} მილიწამი - - წელი - {0} წელი - {0} წელი + + მიკროწამი + {0} მიკროწამი + {0} მიკროწამი + + + ნანოწამი + {0} ნანოწამი + {0} ნანოწამი ამპერი @@ -6061,6 +6231,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ვოლტი {0} ვოლტი + + კილოკალორია + {0} კილოკალორია + {0} კილოკალორია + კალორია {0} კალორია @@ -6071,21 +6246,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} კალორია {0} კალორია - - ჯოული - {0} ჯოული - {0} ჯოული - - - კილოკალორია - {0} კილოკალორია - {0} კილოკალორია - კილოჯოული {0} კილოჯოული {0} კილოჯოული + + ჯოული + {0} ჯოული + {0} ჯოული + კილოვატ-საათი {0} კილოვატ-საათი @@ -6096,201 +6266,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} გიგაჰერცი {0} გიგაჰერცი - - ჰერცი - {0} ჰერცი - {0} ჰერცი + + მეგაჰერცი + {0} მეგაჰერცი + {0} მეგაჰერცი კილოჰერცი {0} კილოჰერცი {0} კილოჰერცი - - მეგაჰერცი - {0} მეგაჰერცი - {0} მეგაჰერცი + + ჰერცი + {0} ჰერცი + {0} ჰერცი - - ასტრონომიული ერთეული - {0} ასტრონომიული ერთეული - {0} ასტრონომიული ერთეული + + კილომეტრი + {0} კილომეტრი + {0} კილომეტრი + {0} კილომეტრში - - სანტიმეტრი - {0} სანტიმეტრი - {0} სანტიმეტრი + + მეტრი + {0} მეტრი + {0} მეტრი + {0} მეტრში დეციმეტრი {0} დეციმეტრი {0} დეციმეტრი - - ფუტი - {0} ფუტი - {0} ფუტი - - - დუიმი - {0} დუიმი - {0} დუიმი - - - კილომეტრი - {0} კილომეტრი - {0} კილომეტრი - - - სინათლის წელი - {0} სინათლის წელი - {0} სინათლის წელი - - - მეტრი - {0}მეტრი - {0}მეტრი - - - მიკრომეტრი - {0} მიკრომეტრი - {0} მიკრომეტრი - - - მილი - {0} მილი - {0} მილი + + სანტიმეტრი + {0} სანტიმეტრი + {0} სანტიმეტრი + {0} სანტიმეტრში მილიმეტრი {0} მილიმეტრი {0} მილიმეტრი + + მიკრომეტრი + {0} მიკრომეტრი + {0} მიკრომეტრი + ნანომეტრი {0} ნანომეტრი {0} ნანომეტრი - - საზღვაო მილი - {0} საზღვაო მილი - {0} საზღვაო მილი - - - პარსეკი - {0} პარსეკი - {0} პარსეკი - პიკომეტრი {0} პიკომეტრი {0} პიკომეტრი + + მილი + {0} მილი + {0} მილი + იარდი {0} იარდი {0} იარდი + + ფუტი + {0} ფუტი + {0} ფუტი + {0} ფუტში + + + დუიმი + {0} დუიმი + {0} დუიმი + {0} დუიმში + + + პარსეკი + {0} პარსეკი + {0} პარსეკი + + + სინათლის წელი + {0} სინათლის წელი + {0} სინათლის წელი + + + ასტრონომიული ერთეული + {0} ასტრონომიული ერთეული + {0} ასტრონომიული ერთეული + + + საზღვაო მილი + {0} საზღვაო მილი + {0} საზღვაო მილი + + + სკანდინავიური მილი + {0} სკანდინავიური მილი + {0} სკანდინავიური მილი + ლუქსი {0} ლუქსი {0} ლუქსი - - კარატი - {0} კარატი - {0} კარატი - - - გრამი - {0} გრამი - {0} გრამი - - - კილოგრამი - {0} კილოგრამი - {0} კილოგრამი - მეტრული ტონა {0} მეტრული ტონა {0} მეტრული ტონა - - მიკროგრამი - მიკროგრამი - {0} მიკროგრამი + + კილოგრამი + {0} კილოგრამი + {0} კილოგრამი + {0} კილოგრამში + + + გრამი + {0} გრამი + {0} გრამი + {0} გრამში მილიგრამი {0} მილიგრამი {0} მილიგრამი - - უნცია - {0} უნცია - {0} უნცია - - - ტრუას უნცია - {0} ტრუას უნცია - {0} ტრუას უნცია - - - ფუნტი - {0} ფუნტი - {0} ფუნტი + + მიკროგრამი + მიკროგრამი + {0} მიკროგრამი ტონა {0} ტონა {0} ტ + + ფუნტი + {0} ფუნტი + {0} ფუნტი + {0} ფუნტში + + + უნცია + {0} უნცია + {0} უნცია + {0} უნციაში + + + ტრუას უნცია + {0} ტრუას უნცია + {0} ტრუას უნცია + + + კარატი + {0} კარატი + {0} კარატი + გიგავატი {0} გიგავატი {0} გიგავატი - - ცხენის ძალა - {0} ცხენის ძალა - {0} ცხენის ძალა - - - კილოვატი - {0} კილოვატი - {0} კილოვატი - მეგავატი {0} მეგავატი {0} მეგავატი - - მილივატი - {0} მილივატი - {0} მილივატი + + კილოვატი + {0} კილოვატი + {0} კილოვატი ვატი {0} ვატი {0} ვატი + + მილივატი + {0} მილივატი + {0} მილივატი + + + ცხენის ძალა + {0} ცხენის ძალა + {0} ცხენის ძალა + ჰექტოპასკალი {0} ჰექტოპასკალი {0} ჰექტოპასკალი - - ვერცხლისწყლის დუიმი - {0} ვერცხლისწყლის დუიმი - {0} ვერცხლისწყლის დუიმი - - - მილიბარი - {0} მილიბარი - {0} მილიბარი - მილიმეტრი ვერცხლისწყლის სვეტისა {0} მილიმეტრი ვერცხლისწყლის სვეტისა @@ -6301,10 +6475,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ფუნტი კვადრატულ დუიმზე {0} ფუნტი კვადრატულ დუიმზე - - კარატი - {0} კარატი - {0} კარატი + + ვერცხლისწყლის დუიმი + {0} ვერცხლისწყლის დუიმი + {0} ვერცხლისწყლის დუიმი + + + მილიბარი + {0} მილიბარი + {0} მილიბარი კილომეტრი საათში @@ -6321,6 +6500,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} მილი საათში {0} მილი საათში + + კვანძი + {0} კვანძი + {0} კვანძი + + + ° + {0}° + {0}° + გრადუსი ცელსიუსით {0} გრადუსი ცელსიუსით @@ -6336,31 +6525,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} კელვინი {0} კელვინის გრადუსი - - აკრი-ფუტი - {0} აკრი-ფუტი - {0} აკრი-ფუტი - - - სანტილიტრი - {0} სანტილიტრი - {0} სანტილიტრი - - - კუბური სანტიმენტრი - {0} კუბური სანტიმენტრი - {0} კუბური სანტიმენტრი - - - კუბური ფუტი - {0} კუბური ფუტი - {0} კუბური ფუტი - - - კუბური დუიმი - {0} კუბური დუიმი - {0} კუბური დუიმი - კუბური კილომეტრი {0} კუბური კილომეტრი @@ -6370,6 +6534,13 @@ For terms of use, see http://www.unicode.org/copyright.html კუბური მეტრი {0} კუბური მეტრი {0} კუბური მეტრი + {0} კუბურ მეტრში + + + კუბური სანტიმენტრი + {0} კუბური სანტიმენტრი + {0} კუბური სანტიმენტრი + {0} კუბურ სანტიმეტრში კუბური მილი @@ -6381,25 +6552,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} კუბური იარდი {0} კუბური იარდი - - ჭიქა - {0} ჭიქა - {0} ჭიქა + + კუბური ფუტი + {0} კუბური ფუტი + {0} კუბური ფუტი - - დეცილიტრი - {0} დეცილიტრი - {0} დეცილიტრი + + კუბური დუიმი + {0} კუბური დუიმი + {0} კუბური დუიმი - - თხევადი უნცია - {0} თხევადი უნცია - {0} თხევადი უნცია - - - გალონი - {0} გალონი - {0} გალონი + + მეგალიტრი + {0} მეგალიტრი + {0} მეგალიტრი ჰექტოლიტრი @@ -6410,27 +6576,64 @@ For terms of use, see http://www.unicode.org/copyright.html ლიტრი {0} ლიტრი {0} ლიტრი + {0} ლიტრში - - მეგალიტრი - {0} მეგალიტრი - {0} მეგალიტრი + + დეცილიტრი + {0} დეცილიტრი + {0} დეცილიტრი + + + სანტილიტრი + {0} სანტილიტრი + {0} სანტილიტრი მილილიტრი {0} მილილიტრი {0} მილილიტრი - - პინტა - {0} პინტა - {0} პინტა + + მეტრული პინტა + {0} მეტრული პინტა + {0} მეტრული პინტა + + + მეტრული ჭიქა + {0} მეტრული ჭიქა + {0} მეტრული ჭიქა + + + აკრი-ფუტი + {0} აკრი-ფუტი + {0} აკრი-ფუტი + + + გალონი + {0} გალონი + {0} გალონი + {0} გალონში კვარტა {0} კვარტა {0} კვარტა + + პინტა + {0} პინტა + {0} პინტა + + + ჭიქა + {0} ჭიქა + {0} ჭიქა + + + თხევადი უნცია + {0} თხევადი უნცია + {0} თხევადი უნცია + სუფრის კოვზი {0} სუფრის კოვზი @@ -6441,6 +6644,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ჩაის კოვზი {0} ჩაის კოვზი + + {0} აღმოსავლეთით + {0} ჩრდილოეთით + {0} სამხრეთით + {0} დასავლეთით + @@ -6456,6 +6665,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} მ/წმ² {0} მ/წმ² + + ბრნ. + {0} ბრნ. + {0} ბრნ. + + + რადიანი + {0} რად. + {0} რად. + + + გრადუსი + {0}° + {0}° + მინუტი {0} მინუტი @@ -6466,30 +6690,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} სეკუნდი {0} სეკუნდი - - გრადუსი - {0}° - {0}° - - - რადიანი - {0} რად. - {0} რად. - - - აკრი - {0} აკრი - {0} აკრი + + კმ² + {0} კმ² + {0} კმ² ჰა {0} ჰა {0} ჰა + + მ² + {0} მ² + {0} მ² + {0}/მ² + სმ² {0} სმ² {0} სმ² + {0}/სმ² + + + მილი² + {0} მილი² + {0} მილი² + + + აკრი + {0} აკრი + {0} აკრი + + + იარდი² + {0} იარდი² + {0} იარდი² ფუტი² @@ -6500,91 +6736,106 @@ For terms of use, see http://www.unicode.org/copyright.html დუიმი² {0} დუიმი² {0} დუიმი² + {0}/დუიმი² - - კმ² - {0} კმ² - {0} კმ² - - - მ² - {0} მ² - {0} მ² - - - მილი² - {0} მილი² - {0} მილი² - - - იარდი² - {0} იარდი² - {0} იარდი² + + კარატი + {0} კარ. + {0} კარ. ლიტრი/კმ {0} ლ/კმ {0} ლ/კმ + + ლ/100კმ + {0} ლ/100კმ + {0} ლ/100კმ + მილი/გალ. {0} მილი/გალ. {0} მილი/გალ. - - ბიტი - {0} ბიტი - {0} ბიტი - - - ბაიტი - {0} ბაიტი - {0} ბაიტი - - - გბიტი - {0} გბიტი - {0} გბიტი - - - გბაიტი - {0} გბაიტი - {0} გბაიტი - - - კბიტი - {0} კბიტი - {0} კბიტი - - - კილობაიტი - {0} კბაიტი - {0} კბაიტი - - - მბიტი - {0} მბიტი - {0} მბიტი - - - მბაიტი - {0} მბაიტი - {0} მბაიტი - - - ტბიტი - {0} ტბიტი - {0} ტბიტი - ტბაიტი {0} ტბაიტი {0} ტბაიტი + + ტბიტი + {0} ტბიტი + {0} ტბიტი + + + გბაიტი + {0} გბაიტი + {0} გბაიტი + + + გბიტი + {0} გბიტი + {0} გბიტი + + + მბაიტი + {0} მბაიტი + {0} მბაიტი + + + მბიტი + {0} მბიტი + {0} მბიტი + + + კილობაიტი + {0} კბაიტი + {0} კბაიტი + + + კბიტი + {0} კბიტი + {0} კბიტი + + + ბაიტი + {0} ბაიტი + {0} ბაიტი + + + ბიტი + {0} ბიტი + {0} ბიტი + + + ს. + {0} ს. + {0} ს. + + + + {0} წ + {0} წ + {0}/წ + + + თვე + {0} თვე + {0} თვე + {0}/თვე + + + კვრ + {0} კვრ + {0} კვრ + {0}/კვრ + დღე {0} დღე {0} დღე + {0}/დღე სთ @@ -6592,30 +6843,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} სთ {0}/სთ - - მკწმ - {0} მკწმ - {0} მკწმ - - - მწმ - {0} მწმ - {0} მწმ - წთ {0} წთ {0} წთ - - - თვე - {0} თვე - {0} თვე - - - ნწმ - {0} ნწმ - {0} ნწმ + {0}/წთ წმ @@ -6623,15 +6855,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} წმ {0}/წმ - - კვრ - {0} კვრ - {0} კვრ + + მწმ + {0} მწმ + {0} მწმ - - - {0} წ - {0} წ + + მკწმ + {0} მკწმ + {0} მკწმ + + + ნწმ + {0} ნწმ + {0} ნწმ ამპ @@ -6653,6 +6890,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ვ {0} ვ + + კკალ + {0} კკალ + {0} კკალ + კალ {0} კალ @@ -6663,21 +6905,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} კალ {0} კალ - - ჯოული - {0} ჯ - {0} ჯ - - - კკალ - {0} კკალ - {0} კკალ - კჯ {0} კჯ {0} კჯ + + ჯოული + {0} ჯ + {0} ჯ + კვტსთ {0} კვტსთ @@ -6688,201 +6925,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} გჰც. {0} გჰც. - - ჰც. - {0} ჰც. - {0} ჰც. + + მჰც + {0} მჰც + {0} მჰც კჰც. {0} კჰც. {0} კჰც. - - მჰც - {0} მჰც - {0} მჰც + + ჰც. + {0} ჰც. + {0} ჰც. - - ა.ე. - {0} ა.ე. - {0} ა.ე. + + კმ + {0} კმ + {0} კმ + {0}/კმ - - სმ - {0} სმ - {0} სმ + + + {0} მ + {0} მ + {0}/მ დმ {0} დმ {0} დმ - - ფტ - {0} ფტ - {0} ფტ - - - დუიმი - {0} დუიმი - {0} დუიმი - - - კმ - {0} კმ - {0} კმ - - - სწ - {0} სწ - {0} სწ - - - - {0} მ - {0} მ - - - მკმ - {0} მკმ - {0} მკმ - - - მილი - {0} მილი - {0} მილი + + სმ + {0} სმ + {0} სმ + {0}/სმ მმ {0} მმ {0} მმ + + მკმ + {0} მკმ + {0} მკმ + ნმ {0} ნმ {0} ნმ - - საზღვაო მილი - {0} საზღვ. მილი - {0} საზღვ. მილი - - - პს - {0} პს - {0} პს - პმ {0} პმ {0} პმ + + მილი + {0} მილი + {0} მილი + იარდი {0} იარდი {0} იარდი + + ფტ + {0} ფტ + {0} ფტ + {0}/ფტ + + + დუიმი + {0} დუიმი + {0} დუიმი + {0}/დუიმი + + + პს + {0} პს + {0} პს + + + სწ + {0} სწ + {0} სწ + + + ა.ე. + {0} ა.ე. + {0} ა.ე. + + + საზღვაო მილი + {0} საზღვ. მილი + {0} საზღვ. მილი + + + სკანდ. მილი + {0} სკანდ. მილი + {0} სკანდ. მილი + ლუქსი {0} ლუქსი {0} ლუქსი - - კარატი - {0} კარ. - {0} კარ. - - - გრამი - {0} გ - {0} გ - - - კილოგრამი - {0} კგ - {0} კგ - მტ {0} მტ {0} მტ - - მკგ - {0} მკგ - {0} მკგ + + კილოგრამი + {0} კგ + {0} კგ + {0}/კგ + + + გრამი + {0} გ + {0} გ + {0}/გ მგ {0} მგ {0} მგ - - უნცია - {0} უნც - {0} უნც - - - ტრუას უნცია - {0} ტრ. უნც. - {0} ტრ. უნც. - - - ფუნტი - {0} ფნტ - {0} ფნტ + + მკგ + {0} მკგ + {0} მკგ ტონა {0} ტ {0} ტ + + ფუნტი + {0} ფნტ + {0} ფნტ + {0}/ფნტ + + + უნცია + {0} უნც + {0} უნც + {0}/უნც + + + ტრუას უნცია + {0} ტრ. უნც. + {0} ტრ. უნც. + + + კარატი + {0} კარ. + {0} კარ. + გვტ {0} გვტ {0} გვტ - - ცხ. ძ. - {0} ცხ. ძ. - {0} ცხ. ძ. - - - კვტ - {0} კვტ - {0} კვტ - მგვტ {0} მგვტ {0} მგვტ - - მლვტ - {0} მლვტ - {0} მლვტ + + კვტ + {0} კვტ + {0} კვტ ვტ {0} ვტ {0} ვტ + + მლვტ + {0} მლვტ + {0} მლვტ + + + ცხ. ძ. + {0} ცხ. ძ. + {0} ცხ. ძ. + ჰპა {0} ჰპა {0} ჰპა - - ვრც. დმ. - {0} ვრც. დმ. - {0} ვრც. დმ. - - - მბარი - {0} მბარი - {0} მბარი - მმ ვწყ. სვ. {0} მმ ვწყ. სვ. @@ -6893,10 +7134,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ფნტ. კვ. დმ. {0} ფნტ. კვ. დმ. - - კარატი - {0} კარ. - {0} კარ. + + ვრც. დმ. + {0} ვრც. დმ. + {0} ვრც. დმ. + + + მბარი + {0} მბარი + {0} მბარი კმ/სთ @@ -6913,6 +7159,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} მილი/სთ {0} მილი/სთ + + კვძ. + {0} კვძ. + {0} კვძ. + + + ° + {0}° + {0}° + °C {0}°C @@ -6928,31 +7184,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - აკრ.ფტ. - {0} აკრ.ფტ. - {0} აკრ.ფტ. - - - სლ - {0} სლ - {0} სლ - - - სმ³ - {0} სმ³ - {0} სმ³ - - - ფუტი³ - {0} ფტ³ - {0} ფტ³ - - - დუიმი³ - {0} დუიმი³ - {0} დუიმი³ - კუბური კილომეტრი {0} კმ³ @@ -6962,6 +7193,13 @@ For terms of use, see http://www.unicode.org/copyright.html მ³ {0} მ³ {0} მ³ + {0}/მ³ + + + სმ³ + {0} სმ³ + {0} სმ³ + {0}/სმ³ კუბური მილი @@ -6973,25 +7211,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} იარდი³ {0} იარდი³ - - ჭიქა - {0} ჭიქა - {0} ჭიქა + + ფუტი³ + {0} ფტ³ + {0} ფტ³ - - დლ - {0} დლ - {0} დლ + + დუიმი³ + {0} დუიმი³ + {0} დუიმი³ - - თხ. უნცია - {0} თხ. უნცია - {0} თხ. უნცია - - - გალონი - {0} გალონი - {0} გალონი + + მეგალ. + {0} მეგალ. + {0} მეგალ. ჰლ @@ -7002,27 +7235,64 @@ For terms of use, see http://www.unicode.org/copyright.html ლიტრი {0} ლ {0} ლ + {0}/ლ - - მეგალ. - {0} მეგალ. - {0} მეგალ. + + დლ + {0} დლ + {0} დლ + + + სლ + {0} სლ + {0} სლ მილილ. {0} მილილ. {0} მილილ. - - პინტა - {0} პინტა - {0} პინტა + + მეტრ. პინტა + {0} მეტრ. პინტა + {0} მეტრ. პინტა + + + მეტრ. ჭიქა + {0} მეტრ. ჭიქა + {0} მეტრ. ჭიქა + + + აკრ.ფტ. + {0} აკრ.ფტ. + {0} აკრ.ფტ. + + + გალონი + {0} გალონი + {0} გალონი + {0}/გალონი კვარტა {0} კვარტა {0} კვარტა + + პინტა + {0} პინტა + {0} პინტა + + + ჭიქა + {0} ჭიქა + {0} ჭიქა + + + თხ. უნცია + {0} თხ. უნცია + {0} თხ. უნცია + ს. კოვზი {0} ს. კოვზი @@ -7033,6 +7303,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ჩ. კოვზი {0} ჩ. კოვზი + + {0}აღმ. + {0}ჩრდ. + {0} სამხრ. + {0} დას. + @@ -7042,6 +7318,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ინ. ძ. {0} ინ. ძ. + + {0}° + {0}° + {0} წთ {0} წთ @@ -7050,26 +7330,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} წმ {0} წმ - - {0}° - {0}° - - - {0} აკრი - {0} აკრი + + {0} კმ² + {0} კმ² {0} ჰა {0} ჰა - - {0} ფტ² - {0} ფტ² - - - {0} კმ² - {0} კმ² - {0} მ² {0} მ² @@ -7078,6 +7346,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} მილი² {0} მილი² + + {0} აკრი + {0} აკრი + + + {0} ფტ² + {0} ფტ² + + + ლ/100კმ + {0}ლ/100კმ + {0}ლ/100კმ + + + + {0} წ + {0} წ + + + თვე + {0} თვე + {0} თვე + + + კვრ + {0} კვრ + {0} კვრ + დღე {0} დღე @@ -7088,66 +7384,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0}სთ {0}სთ - - მწმ - {0} მწმ - {0} მწმ - წთ {0}წთ {0}წთ - - თვე - {0} თვე - {0} თვე - წმ {0}წმ {0}წმ - - კვრ - {0} კვრ - {0} კვრ - - - - {0} წ - {0} წ - - - სმ - {0} სმ - {0} სმ - - - {0} ფტ - {0} ფტ - - - {0} დმ - {0} დმ + + მწმ + {0} მწმ + {0} მწმ კმ {0} კმ {0} კმ - - {0} სწ - {0} სწ - {0}მ {0}მ - - {0} მილი - {0} მილი + + სმ + {0} სმ + {0} სმ მმ @@ -7158,31 +7423,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} პმ {0} პმ + + {0} მილი + {0} მილი + {0} იარდი {0} იარდი - - გრამი - {0}გ - {0}გ + + {0} ფტ + {0} ფტ + + + {0} დმ + {0} დმ + + + {0} სწ + {0} სწ კგ {0}კგ {0}კგ - - {0} უნც - {0} უნც + + გრამი + {0}გ + {0}გ {0} ფნტ {0} ფნტ - - {0}ცხ.ძ. - {0}ცხ.ძ. + + {0} უნც + {0} უნც {0} კვტ @@ -7192,6 +7469,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ვტ {0} ვტ + + {0}ცხ.ძ. + {0}ცხ.ძ. + {0} ჰპა {0} ჰპა @@ -7239,6 +7520,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ლ {0}ლ + + {0}აღმ. + {0}ჩრდ. + {0} სამხრ. + {0} დას. + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ka_GE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ka_GE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ka_GE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ka_GE.xml index fa4c14bafbd..63e6b8a8962 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ka_GE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ka_GE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kab.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kab.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kab.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kab.xml index 077b817d8f4..692a09abf58 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kab.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kab.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Ungiya Lalbani Arminya - Antilles n Tmura-Yessakesren Ungula Arjuntin Samwa Tamarikanit @@ -447,6 +445,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + n tufat + n tmeddit + n tufat n tmeddit @@ -488,22 +490,22 @@ For terms of use, see http://www.unicode.org/copyright.html - HH:mm:ss zzzz + h:mm:ss a zzzz - HH:mm:ss z + h:mm:ss a z - HH:mm:ss + h:mm:ss a - HH:mm + h:mm a @@ -583,6 +585,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤ + + + 0K¤ + 0K¤ + 00K¤ + 00K¤ + 000K¤ + 000K¤ + 0M¤ + 0M¤ + 00M¤ + 00M¤ + 000M¤ + 000M¤ + 0G¤ + 0G¤ + 00G¤ + 00G¤ + 000G¤ + 000G¤ + 0T¤ + 0T¤ + 00T¤ + 00T¤ + 000T¤ + 000T¤ + + @@ -760,3 +790,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kab_DZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kab_DZ.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kab_DZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kab_DZ.xml index 8bcb671a56f..1f422dd8af5 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kab_DZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kab_DZ.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kam.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kam.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kam.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kam.xml index 36bff35fbff..7f7ea85f515 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kam.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kam.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antili za Uholanzi Angola Ajentina Samoa ya Marekani @@ -447,6 +445,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Ĩyakwakya + Ĩyawĩoo + Ĩyakwakya Ĩyawĩoo @@ -488,22 +490,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -583,6 +585,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤00K + ¤000K + ¤0M + ¤00M + ¤000M + ¤0G + ¤00G + ¤000G + ¤0T + ¤00T + ¤000T + + @@ -760,3 +778,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kam_KE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kam_KE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kam_KE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kam_KE.xml index f0c4d3d67e1..d699689f1d0 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kam_KE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kam_KE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kde.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kde.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kde.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kde.xml index 2e989d9e613..01c72075a32 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kde.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kde.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angwila Albania Almenia - Antili za Uholanzi Angola Adyentina Samoa ya Malekani @@ -447,6 +445,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Muhi + Chilo + Muhi Chilo @@ -488,22 +490,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -583,6 +585,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤00K + ¤000K + ¤0M + ¤00M + ¤000M + ¤0G + ¤00G + ¤000G + ¤0T + ¤00T + ¤000T + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kde_TZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kde_TZ.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kde_TZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kde_TZ.xml index 4d426a6c07d..7d9fe7ae77e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kde_TZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kde_TZ.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kea.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kea.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kea.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kea.xml index 21480f4a133..3c47b8913f0 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kea.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kea.xml @@ -1,13 +1,12 @@ - - - + @@ -29,11 +28,12 @@ For terms of use, see http://www.unicode.org/copyright.html asu aimara azerbaijanu + azeri baxkir bielorusu bemba bena - bulgaru + búlgaru bambara bengali tibetanu @@ -41,11 +41,13 @@ For terms of use, see http://www.unicode.org/copyright.html bodo bosniu katalãu + txetxenu xiga xeroki - kurdu sorani - córsiku + kurdu sentral + kórsiku txeku + txuvaxi gales dinamarkes taita @@ -63,7 +65,7 @@ For terms of use, see http://www.unicode.org/copyright.html ingles ingles australianu ingles kanadianu - ingles britanuku + ingles britaniku ingles (R.U.) ingles merkanu ingles (S.U.) @@ -100,7 +102,7 @@ For terms of use, see http://www.unicode.org/copyright.html aitianu úngaru arméniu - indoneziu + indonéziu ibo nuosu islandes @@ -111,16 +113,27 @@ For terms of use, see http://www.unicode.org/copyright.html matxame javanes jorjianu + kabila + kamba kabuverdianu + koira txiini + kikuiu kazak + groenlandes + kalenjin kmer kanares - kureanu + korianu + komi-permiak + konkani kaxmira + bafia kurdu + kórniku kirgiz latin luxemburges + luganda lausianu lituanes letãu @@ -136,6 +149,7 @@ For terms of use, see http://www.unicode.org/copyright.html nepales olandes flamengu + kuazio norueges nynorsk oromo oriya @@ -153,16 +167,18 @@ For terms of use, see http://www.unicode.org/copyright.html kiniaruanda sanskritu sindi + koiraboro seni singales slovaku sloveniu + inari sami somali albanes sérviu sundanes sueku suaíli - suaíli di Kongu + suaíli kongoles tamil telugu tajik @@ -172,6 +188,7 @@ For terms of use, see http://www.unicode.org/copyright.html tonganes turku tatar + tamazait di Atlas Sentral uigur ukranianu lingua diskonxedu @@ -188,14 +205,14 @@ For terms of use, see http://www.unicode.org/copyright.html sem konteudo linguistiku - - + + - + - + @@ -212,7 +229,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -232,30 +249,30 @@ For terms of use, see http://www.unicode.org/copyright.html Mundu - Afrika + Áfrika Merka di Norti Merka di Sul Oseania - Afrika Osidental + Áfrika Osidental Merka Sentral - Afrika Oriental - Norti di Afrika - Afrika Sentral - Sul di Afrika + Áfrika Oriental + Norti di Áfrika + Áfrika Sentral + Sul di Áfrika Merkas Norti di Merka Karaibas - Azia Oriental - Sul di Azia - Sudesti Aziatiku + Ázia Oriental + Sul di Ázia + Sudesti Aziátiku Europa di Sul - Australazia - Melanezia - Rejiãu di Mikronezia - Polinezia - Azia - Azia Sentral - Azia Osidental + Australázia + Melanézia + Rejiãu di Mikronézia + Polinézia + Ázia + Ázia Sentral + Ázia Osidental Europa Europa Oriental Europa di Norti @@ -269,7 +286,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angila Albania Armenia - Antilhas Olandeza Angola Antartika Arjentina @@ -291,8 +307,8 @@ For terms of use, see http://www.unicode.org/copyright.html Sãu Bartolomeu Bermudas Brunei - Bolivia - Karaibas olandes + Bolívia + Karaibas Olandezas Brazil Baamas Butãu @@ -314,7 +330,7 @@ For terms of use, see http://www.unicode.org/copyright.html Xili Kamarõis Xina - Kulombia + Kolômbia Ilha Kliperton Kosta Rika Kuba @@ -342,6 +358,7 @@ For terms of use, see http://www.unicode.org/copyright.html Finlandia Fidji Ilhas Malvinas + Ilhas Falkland (Ilhas Malvinas) Mikronezia Ilhas Faroe Fransa @@ -354,7 +371,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gernzi Gana Jibraltar - Gronelandia + Gronelándia Gambia Gine Guadalupi @@ -365,12 +382,12 @@ For terms of use, see http://www.unicode.org/copyright.html Guam Gine-Bisau Giana - Rejiãu Administrativu Special di Ong Kong - Ong Kong + Rejiãu Administrativu Special di Hong Kong + Hong Kong Ilha Heard i Ilhas McDonald Onduras Kroasia - Aiti + Aití Ungria Kanárias Indonezia @@ -431,7 +448,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ilhas Maurisia Maldivas Malaui - Mexiku + Méxiku Malazia Musambiki Namibia @@ -439,7 +456,7 @@ For terms of use, see http://www.unicode.org/copyright.html Nijer Ilhas Norfolk Nijeria - Nikaragua + Nikarágua Olanda Noruega Nepal @@ -447,7 +464,7 @@ For terms of use, see http://www.unicode.org/copyright.html Niue Nova Zilandia Oman - Panama + Panamá Peru Polinezia Franseza Papua-Nova Gine @@ -462,7 +479,7 @@ For terms of use, see http://www.unicode.org/copyright.html Palau Paraguai Katar - Oseania Insular + Ilhas di Oseania Runion Romenia Servia @@ -517,7 +534,7 @@ For terms of use, see http://www.unicode.org/copyright.html Sãu Bisenti i Granadinas Vinizuela Ilhas Virjens Britanikas - Ilhas Virjens Merkanu + Ilhas Virjens Merkanas Vietnam Vanuatu Ualis i Futuna @@ -530,9 +547,12 @@ For terms of use, see http://www.unicode.org/copyright.html Zimbabui Rejiãu Diskonxedu + + Kalendáriu + - Kalendariu Gregorianu - Numerus Arabikus + Kalendáriu Gregorianu + Númerus Arábikus Metriku @@ -618,8 +638,6 @@ For terms of use, see http://www.unicode.org/copyright.html E, d MMM y G h a HH - HH:mm - HH:mm:ss h:mm a HH:mm h:mm:ss a @@ -966,14 +984,16 @@ For terms of use, see http://www.unicode.org/copyright.html + + am + pm + a - m p am - mei-dia pm @@ -1071,8 +1091,6 @@ For terms of use, see http://www.unicode.org/copyright.html E, d 'di' MMM 'di' y G h a HH - HH:mm - HH:mm:ss h:mm a HH:mm h:mm:ss a @@ -1752,6 +1770,22 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤;(#,##0.00 ¤) + + + 0 mil ¤ + 00 mil ¤ + 000 mil ¤ + 0 M ¤ + 00 M ¤ + 000 M ¤ + 0 MM ¤ + 00 MM ¤ + 000 MM ¤ + 0 Bi ¤ + 00 Bi ¤ + 000 Bi ¤ + + {0} {1} @@ -2323,26 +2357,42 @@ For terms of use, see http://www.unicode.org/copyright.html métru pur sigundu kuadradu {0} métru pur sigundu kuadradu - - grau - {0} grau - radianu {0} radianu - - ákri - {0} ákri + + grau + {0} grau + + + kilómetru kuadradu + {0} kilómetru kuadradu ektar {0} ektar + + métru kuadradu + {0} métru kuadradu + sentímetru kuadradu {0} sentímetru kuadradu + + milha kuadradu + {0} milha kuadradu + + + ákri + {0} ákri + + + jarda kuadradu + {0} jarda kuadradu + pé kuadradu {0} pé kuadradu @@ -2351,21 +2401,9 @@ For terms of use, see http://www.unicode.org/copyright.html pulegada kuadradu {0} pulegada kuadradu - - kilómetru kuadradu - {0} kilómetru kuadradu - - - métru kuadradu - {0} métru kuadradu - - - milha kuadradu - {0} milha kuadradu - - - jarda kuadradu - {0} jarda kuadradu + + kilati + {0} kilati litru pur kilómetru @@ -2375,45 +2413,57 @@ For terms of use, see http://www.unicode.org/copyright.html milha pur galãu {0} milha pur galãu - - bit - {0} bit - - - byte - {0} byte - - - jigabit - {0} jigabit - - - jigabyte - {0} jigabyte - - - kilobit - {0} kilobit - - - kilobyte - {0} kilobyte - - - megabit - {0} megabit - - - megabyte - {0} megabyte + + terabyte + {0} terabyte terabit {0} terabit - - terabyte - {0} terabyte + + jigabyte + {0} jigabyte + + + jigabit + {0} jigabit + + + megabyte + {0} megabyte + + + megabit + {0} megabit + + + kilobyte + {0} kilobyte + + + kilobit + {0} kilobit + + + byte + {0} byte + + + bit + {0} bit + + + anu + {0} anu + + + mes + {0} mes + + + simana + {0} simana dia @@ -2424,50 +2474,66 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ora {0} pur ora - - mikrosigundu - {0} mikrosigundu - - - milisigundu - {0} milisigundu - minutu {0} minutu - - mes - {0} mes - - - nanosigundu - {0} nanosigundu - sigundu {0} sigundu {0} pur sigundu - - simana - {0} simana + + milisigundu + {0} milisigundu - - anu - {0} anu + + mikrosigundu + {0} mikrosigundu - - unidadi astronómiku - {0} unidadi astronómiku + + nanosigundu + {0} nanosigundu + + + kilómetru + {0} kilómetru + + + métru + {0} métru + + + desímetru + {0} desímetru sentímetru {0} sentímetru - - desímetru - {0} desímetru + + milímetru + {0} milímetru + + + mikrómetru + {0} mikrómetru + + + nanómetru + {0} nanómetru + + + pikómetru + {0} pikómetru + + + milha + {0} milha + + + jarda + {0} jarda @@ -2477,50 +2543,22 @@ For terms of use, see http://www.unicode.org/copyright.html pulegada {0} pulegada - - kilómetru - {0} kilómetru + + parsek + {0} parsek anu-lus {0} anu-lus - - métru - {0} métru - - - mikrómetru - {0} mikrómetru - - - milha - {0} milha - - - milímetru - {0} milímetru - - - nanómetru - {0} nanómetru + + unidadi astronómiku + {0} unidadi astronómiku milha náutiku {0} milha náutiku - - parsek - {0} parsek - - - pikómetru - {0} pikómetru - - - jarda - {0} jarda - lux {0} lux @@ -2528,10 +2566,6 @@ For terms of use, see http://www.unicode.org/copyright.html watt - - kilati - {0} kilati - kilómetru pur ora {0} kilómetru pur ora @@ -2544,26 +2578,6 @@ For terms of use, see http://www.unicode.org/copyright.html milha pur ora {0} milha pur ora - - ákri-pé - {0} ákri-pé - - - sentilitru - {0} sentilitru - - - sentímetru kúbiku - {0} sentímetru kúbiku - - - pé kúbiku - {0} pé kúbiku - - - pulegada kúbiku - {0} pulegada kúbiku - kilómetru kúbiku {0} kilómetru kúbiku @@ -2572,6 +2586,10 @@ For terms of use, see http://www.unicode.org/copyright.html métru kúbiku {0} métru kúbiku + + sentímetru kúbiku + {0} sentímetru kúbiku + milha kúbiku {0} milha kúbiku @@ -2580,21 +2598,17 @@ For terms of use, see http://www.unicode.org/copyright.html jarda kúbiku {0} jarda kúbiku - - xávina - {0} xávina + + pé kúbiku + {0} pé kúbiku - - desilitru - {0} desilitru + + pulegada kúbiku + {0} pulegada kúbiku - - ónsa fluídu - {0} ónsa fluídu - - - galãu - {0} galãu + + megalitru + {0} megalitru ektolitru @@ -2604,22 +2618,42 @@ For terms of use, see http://www.unicode.org/copyright.html litru {0} litru - - megalitru - {0} megalitru + + desilitru + {0} desilitru + + + sentilitru + {0} sentilitru mililitru {0} mililitru - - pint - {0} pint + + ákri-pé + {0} ákri-pé + + + galãu + {0} galãu kuart {0} kuart + + pint + {0} pint + + + xávina + {0} xávina + + + ónsa fluídu + {0} ónsa fluídu + kudjer di sopa {0} kudjer di sopa @@ -2638,6 +2672,14 @@ For terms of use, see http://www.unicode.org/copyright.html m/s² {0} m/s² + + rad + {0} rad + + + grau + {0}° + arcmin {0}′ @@ -2646,26 +2688,34 @@ For terms of use, see http://www.unicode.org/copyright.html arcsec {0}″ - - grau - {0}° - - - rad - {0} rad - - - ac - {0} ac + + km² + {0} km² ha {0} ha + + + {0} m² + cm² {0} cm² + + mi² + {0} mi² + + + ac + {0} ac + + + yd² + {0} yd² + ft² {0} ft² @@ -2674,21 +2724,9 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0} in² - - km² - {0} km² - - - - {0} m² - - - mi² - {0} mi² - - - yd² - {0} yd² + + kt + {0} kt l/km @@ -2698,45 +2736,57 @@ For terms of use, see http://www.unicode.org/copyright.html mpg {0} mpg - - b - {0} b - - - B - {0} B - - - Gb - {0} Gb - - - GB - {0} GB - - - Kb - {0} Kb - - - KB - {0} KB - - - Mb - {0} Mb - - - MB - {0} MB + + TB + {0} TB Tb {0} Tb - - TB - {0} TB + + GB + {0} GB + + + Gb + {0} Gb + + + MB + {0} MB + + + Mb + {0} Mb + + + KB + {0} KB + + + Kb + {0} Kb + + + B + {0} B + + + b + {0} b + + + anu + {0} anu + + + mes + {0} mes + + + sim. + {0} sim. dia @@ -2747,38 +2797,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0}/h - - μs - {0} μs - - - ms - {0} ms - min. {0} min. - - mes - {0} mes - - - ns - {0} ns - sig. {0} sig. {0}/s - - sim. - {0} sim. + + ms + {0} ms - - anu - {0} anu + + μs + {0} μs + + + ns + {0} ns amp @@ -2796,6 +2834,10 @@ For terms of use, see http://www.unicode.org/copyright.html volt {0} V + + kcal + {0} kcal + cal {0} cal @@ -2804,10 +2846,6 @@ For terms of use, see http://www.unicode.org/copyright.html Cal {0} Cal - - kcal - {0} kcal - kJ {0} kJ @@ -2820,29 +2858,57 @@ For terms of use, see http://www.unicode.org/copyright.html GHz {0} GHz - - Hz - {0} Hz + + MHz + {0} MHz kHz {0} kHz - - MHz - {0} MHz + + Hz + {0} Hz - - ua - {0} ua + + km + {0} km + + + m + {0} m + + + dm + {0} dm cm {0} cm - - dm - {0} dm + + mm + {0} mm + + + µm + {0} µm + + + nm + {0} nm + + + pm + {0} pm + + + mi + {0} mi + + + yd + {0} yd @@ -2852,72 +2918,49 @@ For terms of use, see http://www.unicode.org/copyright.html in {0} in - - km - {0} km + + pc + {0} pc anu-lus {0} anu-lus - - m - {0} m - - - µm - {0} µm - - - mi - {0} mi - - - mm - {0} mm - - - nm - {0} nm + + ua + {0} ua nmi {0} nmi - - pc - {0} pc - - - pm - {0} pm - - - yd - {0} yd - lux {0} lx - - {0} CD - - - {0} g - t {0} t - - µg - {0} µg + + {0} g mg {0} mg + + µg + {0} µg + + + tn + {0} tn + + + lb + {0} lb + oz {0} oz @@ -2926,46 +2969,33 @@ For terms of use, see http://www.unicode.org/copyright.html oz t {0} oz t - - lb - {0} lb - - - tn - {0} tn + + {0} CD GW {0} GW - - kW - {0} kW - MW {0} MW - - mW - {0} mW + + kW + {0} kW watt {0} W + + mW + {0} mW + hPa {0} hPa - - inHg - {0} inHg - - - mbar - {0} mbar - mm Hg {0} mm Hg @@ -2974,9 +3004,13 @@ For terms of use, see http://www.unicode.org/copyright.html psi {0} psi - - kt - {0} kt + + inHg + {0} inHg + + + mbar + {0} mbar km/h @@ -2994,26 +3028,6 @@ For terms of use, see http://www.unicode.org/copyright.html K {0} K - - ac ft - {0} ac ft - - - cl - {0} cl - - - cm³ - {0} cm³ - - - ft³ - {0} ft³ - - - in³ - {0} in³ - km³ {0} km³ @@ -3022,6 +3036,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ + + cm³ + {0} cm³ + mi³ {0} mi³ @@ -3030,21 +3048,17 @@ For terms of use, see http://www.unicode.org/copyright.html yd³ {0} yd³ - - xáv. - {0} xáv. + + ft³ + {0} ft³ - - dl - {0} dl + + in³ + {0} in³ - - fl oz - {0} fl oz - - - gal - {0} gal + + Ml + {0} Ml hl @@ -3054,22 +3068,42 @@ For terms of use, see http://www.unicode.org/copyright.html l {0} l - - Ml - {0} Ml + + dl + {0} dl + + + cl + {0} cl ml {0} ml - - pt - {0} pt + + ac ft + {0} ac ft + + + gal + {0} gal qt {0} qt + + pt + {0} pt + + + xáv. + {0} xáv. + + + fl oz + {0} fl oz + k.sp. {0} k.sp. @@ -3080,6 +3114,18 @@ For terms of use, see http://www.unicode.org/copyright.html + + anu + {0} anu + + + mes + {0} mes + + + sim. + {0} sim. + dia {0} dia @@ -3088,33 +3134,17 @@ For terms of use, see http://www.unicode.org/copyright.html ora {0} h - - ms - {0} ms - min. {0} min. - - mes - {0} mes - sig. {0} s - - sim. - {0} sim. - - - anu - {0} anu - - - cm - {0} cm + + ms + {0} ms km @@ -3124,17 +3154,21 @@ For terms of use, see http://www.unicode.org/copyright.html m {0} m + + cm + {0} cm + mm {0} mm - - {0} g - kg {0} kg + + {0} g + km/h {0} km/h @@ -3158,18 +3192,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0}, {1} {0}, {1} - {0} y {1} - {0} y {1} + {0} i {1} + {0} i {1} {0}, {1} {0}, {1} - {0} y {1} - {0} y {1} + {0} i {1} + {0} i {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} {0}, {1} {0}, {1} + {0}, {1} + {0}, {1} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kea_CV.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kea_CV.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kea_CV.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kea_CV.xml index e5798b7ff5c..5c43e7fd6f5 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kea_CV.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kea_CV.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/khq.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/khq.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/khq.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/khq.xml index 534056c8390..f93290b79a5 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/khq.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/khq.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angiiya Albaani Armeeni - Hollandu Antiiyey Laboo Angoola Argentine Ameriki Samoa @@ -447,6 +445,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Adduha + Aluula + Adduha Aluula @@ -579,6 +581,22 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤ + + + 0K¤ + 00K¤ + 000K¤ + 0M¤ + 00M¤ + 000M¤ + 0G¤ + 00G¤ + 000G¤ + 0T¤ + 00T¤ + 000T¤ + + @@ -758,3 +776,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/khq_ML.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/khq_ML.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/khq_ML.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/khq_ML.xml index b0ee19a5878..153e81ecc65 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/khq_ML.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/khq_ML.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ki.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ki.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ki.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ki.xml index 1fedeb283cb..ba3355f0777 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ki.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ki.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antili za Uholanzi Angola Ajentina Samoa ya Marekani @@ -448,6 +446,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Kiroko + Hwaĩ-inĩ + Kiroko Hwaĩ-inĩ @@ -489,22 +491,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -581,6 +583,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤00K + ¤000K + ¤0M + ¤00M + ¤000M + ¤0G + ¤00G + ¤000G + ¤0T + ¤00T + ¤000T + + @@ -758,3 +776,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ki_KE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ki_KE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ki_KE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ki_KE.xml index d1a12257643..dd154fc81ae 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ki_KE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ki_KE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kk.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kk.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kk.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kk.xml index e40e31e4a9b..f83c3ed79a7 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kk.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kk.xml @@ -1,13 +1,12 @@ - - - + @@ -18,244 +17,252 @@ For terms of use, see http://www.unicode.org/copyright.html абхаз тілі - африкаанс - агхем - акан - амхар + африкаанс тілі + агхем тілі + акан тілі + амхар тілі араб тілі қазіргі стандартты араб тілі - мапуче + мапуче тілі ассам тілі - асу + асу тілі Аймара әзірбайжан тілі + әзери тілі башқұрт тілі - беларус тілі - бемба - бена + беларусь тілі + бемба тілі + бена тілі болгар тілі - бамбара + батыс балучи тілі + бамбара тілі бенгал тілі тибет тілі бретон тілі бодо тілі босния тілі - каталан - кига + каталан тілі + шешен тілі + кига тілі чероки тілі сорани тілі - корсикан тілі + корсика тілі чех тілі - валлий - дат - таита + чуваш тілі + валлий тілі + дат тілі + таита тілі неміс тілі австриялық неміс тілі - неміс тілінің швейцариялық диалекті - зарма + швейцариялық жоғарғы неміс тілі + зарма тілі төменгі лужица тілі - дуала + дуала тілі Мальдив - диола - дзонг-кэ - ембу - эве + диола тілі + дзонг-кэ тілі + ембу тілі + эве тілі эфик грек тілі ағылшын тілі австралиялық ағылшын тілі канадалық ағылшын тілі британиялық ағылшын тілі - ағылшын тілі (Біріккен Корольдік) американдық ағылшын тілі - эсперанто + эсперанто тілі испан тілі латын американдық испан тілі ибериялық испан тілі мексикалық испан тілі эстон тілі - баск + баск тілі парсы тілі - фин - филиппин - фиджи - фарер + фин тілі + филиппин тілі + фиджи тілі + фарер тілі француз тілі канадалық француз тілі швейцариялық француз тілі - батыс фриз + батыс фриз тілі ирланд тілі - гагауз + гагауз тілі Солтүстік Шотландия - гали - гуарани + галисия тілі + гуарани тілі швейцариялық неміс тілі - гуджарати - гусии - мэнс - хауса - гавай - иврит - хинди - хорват - жоғарғы лужица - гаитян - венгер + гуджарати тілі + гусии тілі + мэнс тілі + хауса тілі + гавайи тілі + иврит тілі + хинди тілі + хорват тілі + жоғарғы лужица тілі + гаити тілі + венгр тілі армян тілі интерлингва - индонез тілі + индонезия тілі интерлингве - игбо + игбо тілі сычуан и тілі - исланд + исланд тілі итальян тілі - инуктитут + инуктитут тілі жапон тілі - нгомба - мачаме - ява + нгомба тілі + мачаме тілі + ява тілі грузин тілі - кабил - камба - маконде - кабувердиана - койра чини - кикуйю + кабил тілі + камба тілі + маконде тілі + кабувердиана тілі + койра чини тілі + кикуйю тілі қазақ тілі - калаалисут - каленжин - кхмер - каннада + калаалисут тілі + каленжин тілі + кхмер тілі + каннада тілі кәріс тілі - коми-пермь тілі - конкани + коми-пермяк тілі + конкани тілі кашмир тілі - шамбала - бафиа + шамбала тілі + бафиа тілі күрд тілі - корниш + корн тілі қырғыз тілі - латын + латын тілі ланги тілі - люксембург - ганда - лакота - лингала + люксембург тілі + ганда тілі + лакота тілі + лингала тілі лаос тілі + солтүстік люри тілі литва тілі - луба-катанга - луо - лухиа + луба-катанга тілі + луо тілі + лухиа тілі латыш тілі - масай - меру - морисиен - малагаси - макуа-меетто - мета - маори + масай тілі + меру тілі + морисиен тілі + малагаси тілі + макуа-меетто тілі + мета тілі + маори тілі македон тілі - малайялам + малаялам тілі моңғол тілі - мохоки - маратхи - малай - мальта - мунданг - бирман - нама - норвегиялық букмол - солтүстік ндебел - непал + могавк тілі + маратхи тілі + малай тілі + мальта тілі + мунданг тілі + бирма тілі + мазандеран тілі + нама тілі + норвегиялық букмол тілі + солтүстік ндебеле тілі + төменгі неміс тілі + төменгі саксон тілі + непал тілі нидерланд тілі фламанд тілі - квасио - норвегиялық нинорск + квасио тілі + норвегиялық нюнорск тілі норвег - нко + нко тілі Солтүстік сотхо - нуер + нуэр тілі ньянджа - нианколе + нианколе тілі окситан - оромо - ория + оромо тілі + ория тілі осетин - пенджаб + пенджаб тілі поляк тілі - пушту + пушту тілі португал тілі бразилиялық португал тілі еуропалық португал тілі - кечуа - киче - романш - рунди - румын + кечуа тілі + киче тілі + романш тілі + рунди тілі + румын тілі молдован тілі - ромбо + ромбо тілі орыс тілі - киньяруанда - руа - санскрит + киньяруанда тілі + руа тілі + санскрит тілі якут - самбуру - сангу - синдхи - солтүстік сами - сена - койраборо сенни - санго + самбуру тілі + сангу тілі + синдхи тілі + оңтүстік күрд тілі + солтүстік саам тілі + сена тілі + койраборо сенни тілі + санго тілі сербхорват - ташелхит - сингал - словак - словен - оңтүстік саами - луле саам - инари саам + ташелхит тілі + сингал тілі + словак тілі + словен тілі + оңтүстік саам тілі + луле саам тілі + инари саам тілі сколт саам - шона - сомали - албан + шона тілі + сомали тілі + албан тілі серб тілі сесото - судан - швед - суахили - конго суахили тілі - тамил - телугу - тесо + швед тілі + суахили тілі + конго суахили тілі + тамил тілі + телугу тілі + тесо тілі тәжік тілі - тай - тигринья - түрікмен + тай тілі + тигринья тілі + түрікмен тілі клингон - тонган - түрік + тонган тілі + түрік тілі татар тілі тви - тасавак + тасавак тілі орталық атлас тамасагихт тілі ұйғыр тілі украин тілі белгісіз тіл - урду - өзбек - вай - вьетнам - вунджо - волоф - ксоза - сога + урду тілі + өзбек тілі + вай тілі + вьетнам тілі + вунджо тілі + вальбири тілі + волоф тілі + кхоса тілі + сога тілі идиш - йоруба - марокколық стандартты тамазигхт + йоруба тілі + марокколық стандартты тамазигхт тілі қытай тілі жеңілдетілген қытай тілі дәстүрлі қытай тілі - зулу + зулу тілі тілдік мазмұны жоқ @@ -287,8 +294,8 @@ For terms of use, see http://www.unicode.org/copyright.html - - + + @@ -299,7 +306,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + Әлем @@ -313,7 +320,7 @@ For terms of use, see http://www.unicode.org/copyright.html Солтүстік Африка Орталық Африка Оңтүстік Африка - Америкалар + Солтүстік және Оңтүстік Америка Американың солтүстігі Кариб Шығыс Азия @@ -322,7 +329,7 @@ For terms of use, see http://www.unicode.org/copyright.html Оңтүстік Еуропа Австралазия Меланезия - Микронезия регионы + Микронезия аймағы Полинезия Азия Орталық Азия @@ -332,9 +339,9 @@ For terms of use, see http://www.unicode.org/copyright.html Солтүстік Еуропа Батыс Еуропа Латын Америкасы - Ғибадат аралы + Әскенжін аралы Андорра - Біріккен Араб Эмираттары + Біріккен Араб Әмірліктері Ауғанстан Антигуа мен Барбуда Ангилья @@ -343,12 +350,12 @@ For terms of use, see http://www.unicode.org/copyright.html Ангола Антарктика Аргентина - Американ Самоасы + Американдық Самоа Австрия Австралия Аруба Аланд аралдары - Әзербайжан + Әзірбайжан Босния және Герцеговина Барбадос Бангладеш @@ -371,7 +378,7 @@ For terms of use, see http://www.unicode.org/copyright.html Беларусь Белиз Канада - Кокос аралдары + Кокос (Килинг) аралдары Конго Конго Демократиялық Республикасы Орталық Африка Республикасы @@ -379,7 +386,7 @@ For terms of use, see http://www.unicode.org/copyright.html Конго Республикасы Швейцария Кот-д’Ивуар - Піл сүйегі жағалауы Республикасы + Піл Сүйегі Жағалауы Кук аралдары Чили Камерун @@ -417,8 +424,8 @@ For terms of use, see http://www.unicode.org/copyright.html Фарер аралдары Франция Габон - Бірікккен Корольдік - БК + Біріккен Корольдік + Біріккен Корольдік Гренада Грузия Француз Гвианасы @@ -431,14 +438,14 @@ For terms of use, see http://www.unicode.org/copyright.html Гваделупа Экваторлық Гвинея Греция - Оңтүстік Георгия және Оңтүстік Сандвичев аралы + Оңтүстік Георгия және Оңтүстік Сандвич аралдары Гватемала Гуам Гвинея-Бисау Гайана Қытай Халық Республикасының Гонг-Конг арнайы әкімшілік ауданы Гонконг - Херд аралы мен Макдональд аралы + Херд аралы мен Макдональд аралдары Гондурас Хорватия Гаити @@ -464,8 +471,8 @@ For terms of use, see http://www.unicode.org/copyright.html Кирибати Комор Сент-Китс және Невис - Оңтүстік Корея - Солтүстік Корея + Солтүстік Корея + Оңтүстік Корея Кувейт Кайман аралдары Қазақстан @@ -479,7 +486,7 @@ For terms of use, see http://www.unicode.org/copyright.html Литва Люксембург Латвия - Либия + Ливия Морокко Монако Молдова @@ -511,7 +518,7 @@ For terms of use, see http://www.unicode.org/copyright.html Норфолк аралы Нигерия Никарагуа - Голландия + Нидерланд Норвегия Непал Науру @@ -522,7 +529,7 @@ For terms of use, see http://www.unicode.org/copyright.html Перу Француз Полинезиясы Папуа — Жаңа Гвинея - Филиппиндер + Филиппин Пәкістан Польша Сен-Пьер және Микелон @@ -562,9 +569,9 @@ For terms of use, see http://www.unicode.org/copyright.html Сирия Свазиленд Тристан-да-Кунья - Туркс пен Кайкос + Теркс және Кайкос аралдары Чад - Францияның солтүстік аймағы + Францияның оңтүстік аймақтары Того Тайланд Тәжікстан @@ -581,13 +588,13 @@ For terms of use, see http://www.unicode.org/copyright.html Танзания Украина Уганда - АҚШ-тың ішкі кіші аралдары + АҚШ-тың сыртқы кіші аралдары АҚШ АҚШ Уругвай Өзбекстан Ватикан - Сент-Винсент және Гренадиндер + Сент-Винсент және Гренадин аралдары Венесуэла Британдық Виргин аралдары АҚШ-тың Виргин аралдары @@ -598,7 +605,7 @@ For terms of use, see http://www.unicode.org/copyright.html Косово Йемен Майотта - Оңтүстік Африка республикасы + Оңтүстік Африка Республикасы Замбия Зимбабве Белгісіз аймақ @@ -613,69 +620,82 @@ For terms of use, see http://www.unicode.org/copyright.html Күнтізбе Сұрыптау реті Валюта + Уақыт пішімі (12 не 24) + Жолды тасымалдау стилі + Өлшемдер жүйесі Сандар - Үнді-араб сандары - Үнді-араб сандарының кеңейтілген жүйесі - Армян сандары - Кіші әріппен берілген армян сандары - Бенгал сандары - Будда күнтізбесі - Қытай күнтізбесі - Данги күнтізбесі - Деванагари сандары - Әдепкі уникод сұрыптау реті - Эфиопия сандары - Эфиопия күнтізбесі - Сандардың толық пішімі - Грузин сандары - Грегориандық күнтізбе - Грек сандары - Кіші әріппен берілген грек сандары - Гуджарати сандары - Гурмукхи сандары - Қытай ондық сандары - Қарапайым қытай сандары - Қаржы саласындағы қарапайым қытай сандары - Дәстүрлі қытай сандары - Қаржы саласындағы дәстүрлі қытай сандары - Иврит сандары - Көне еврей күнтізбесі - Үндістанның ұлттық күнтізбесі - Ислам күнтізбесі - Ислам азаматтық күнтізбесі - ISO-8601 күнтізбесі - Жапон күнтізбесі - Жапон сандары - Қаржы саласындағы жапон сандары - Кхмер сандары - Каннада сандары - Лаос сандары - Батыс сандары - Малаялам - Мьянма сандары - Ория сандары - Парсы күнтізбесі - Мингуо күнтізбесі - Рим сандары - Кіші әріппен берілген рим сандары - Жалпы мақсаттағы іздеу - Стандартты сұрыптау реті - Дәстүрлі тамил сандары - Тамил сандары - Телугу сандары - Тай сандары - Тибет сандары + Будда күнтізбесі + Қытай күнтізбесі + Данги күнтізбесі + Эфиопия күнтізбесі + Грегориандық күнтізбе + Көне еврей күнтізбесі + Үндістанның ұлттық күнтізбесі + Ислам күнтізбесі + Ислам азаматтық күнтізбесі + ISO-8601 күнтізбесі + Жапон күнтізбесі + Парсы күнтізбесі + Мингуо күнтізбесі + Әдепкі уникод сұрыптау реті + Жалпы мақсаттағы іздеу + Стандартты сұрыптау реті + 12 сағаттық жүйе (0–11) + 12 сағаттық жүйе (1–12) + 24 сағаттық жүйе (0–23) + 24 сағаттық жүйе (1–24) + Жолды тасымалдаудың еркін стилі + Жолды тасымалдаудың қалыпты стилі + Жолды тасымалдаудың қатаң стилі + Метрлік жүйе + Империялық өлшемдер жүйесі + Американдық өлшемдер жүйесі + Үнді-араб сандары + Үнді-араб сандарының кеңейтілген жүйесі + Армян сандары + Кіші әріппен берілген армян сандары + Бенгал сандары + Деванагари сандары + Эфиопия сандары + Сандардың толық пішімі + Грузин сандары + Грек сандары + Кіші әріппен берілген грек сандары + Гуджарати сандары + Гурмукхи сандары + Қытай ондық сандары + Жеңілдетілген қытай сандары + Қаржы саласындағы жеңілдетілген қытай сандары + Дәстүрлі қытай сандары + Қаржы саласындағы дәстүрлі қытай сандары + Иврит сандары + Жапон сандары + Қаржы саласындағы жапон сандары + Кхмер сандары + Каннада сандары + Лаос сандары + Батыс сандары + Малаялам сандары + Мьянма сандары + Ория сандары + Рим сандары + Кіші әріппен берілген рим сандары + Дәстүрлі тамил сандары + Тамил сандары + Телугу сандары + Тай сандары + Тибет сандары - метрикалық жүйе - БК - АҚШ + Метрлік + Ағылшын + Американдық Тіл: {0} - Жазылуы: {0} + Жазу: {0} Аймақ: {0} @@ -693,10 +713,10 @@ For terms of use, see http://www.unicode.org/copyright.html ? - - " - - + « + » + + @@ -725,22 +745,22 @@ For terms of use, see http://www.unicode.org/copyright.html - EEEE, d MMMM y 'ж'. G + G y 'ж'. d MMMM, EEEE - d MMMM y 'ж'. G + G y 'ж'. d MMMM - dd.MM.y G + G dd.MM.y - dd.MM.y GGGGG + GGGGG dd.MM.y @@ -767,27 +787,30 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d, E - G y - G y MMM - G y MMM d - G y MMM d, E + G y 'ж'. + G y 'ж'. MMM + G y 'ж'. d MMM + G y 'ж'. d MMM, E L - MM-dd - MM-dd, E + dd.MM + dd.MM, E LLL - MMM d - MMM d, E - G y - G y - GGGGG y-MM - GGGGG y-MM-dd - GGGGG y-MM-dd, E - G y MMM - G y MMM d - G y MMM d, E - G y QQQ - G y QQQQ + d MMM + d MMM, E + d MMMM + G y 'ж'. + G y 'ж'. + GGGGG MM.y + GGGGG dd.MM.y + GGGGG dd.MM.y, E + G y 'ж'. MMM + G y 'ж'. d MMM + G y 'ж'. d MMM, E + G y 'ж'. MMMM + G y 'ж'. QQQ + G y 'ж'. QQQQ {0} - {1} @@ -830,8 +853,8 @@ For terms of use, see http://www.unicode.org/copyright.html dd.MM – dd.MM - E, dd.MM – E, dd.MM - E, dd.MM – E, dd.MM + dd.MM, E – dd.MM, E + dd.MM, E – dd.MM, E MMM–MMM @@ -841,43 +864,43 @@ For terms of use, see http://www.unicode.org/copyright.html d MMM – d MMM - E, d – E, d MMM - E, d MMM – E, d MMM + d (E) – d (E) MMM + d MMM, E – d MMM, E - y–y G + G y–y 'жж'. - MM.y – MM.y G - MM.y – MM.y G + GGGGG MM.y – MM.y + GGGGG MM.y – MM.y - dd.MM.y – dd.MM.y G - dd.MM.y – dd.MM.y G - dd.MM.y – dd.MM.y G + GGGGG dd.MM.y – dd.MM.y + GGGGG dd.MM.y – dd.MM.y + GGGGG dd.MM.y – dd.MM.y - E, dd.MM.y – E, dd.MM.y G - E, dd.MM.y – E, dd.MM.y G - E, dd.MM.y – E, dd.MM.y G + GGGGG dd.MM.y, E – dd.MM.y, E + GGGGG dd.MM.y, E – dd.MM.y, E + GGGGG dd.MM.y, E – dd.MM.y, E - MMM–MMM y 'ж'. G - MMM y 'ж'. - MMM y 'ж'. G + G y 'ж'. MMM–MMM + G y 'ж'. MMM – y 'ж'. MMM - d–d MMM y 'ж'. G - d MMM – d MMM y 'ж'. G - d MMM y 'ж'. - d MMM y 'ж'. G + G y 'ж'. d–d MMM + G y 'ж'. d MMM – d MMM + G y 'ж'. d MMM – y 'ж'. d MMM - E, d – E, d MMM y 'ж'. G - E, d MMM – E, d MMM y 'ж'. G - E, d MMM y 'ж'. - E, d MMM y 'ж'. G + G y 'ж'. d MMM, E – d MMM, E + G y 'ж'. d MMM, E – d MMM, E + G y 'ж'. d MMM, E – y 'ж'. d MMM, E - MMMM – MMMM y G - MMMM y – MMMM y G + G y 'ж'. MMMM – MMMM + G y 'ж'. MMMM – y 'ж'. MMMM @@ -897,7 +920,7 @@ For terms of use, see http://www.unicode.org/copyright.html қыр. қаз. қар. - желт. + жел. Қ @@ -930,18 +953,18 @@ For terms of use, see http://www.unicode.org/copyright.html - қаң. - ақп. - нау. - сәу. - мам. - мау. - шіл. - там. - қыр. - қаз. - қар. - желт. + Қаң. + Ақп. + Нау. + Сәу. + Мам. + Мау. + Шіл. + Там. + Қыр. + Қаз. + Қар. + Жел. Қ @@ -958,31 +981,31 @@ For terms of use, see http://www.unicode.org/copyright.html Ж - қаңтар - ақпан - наурыз - сәуір - мамыр - маусым - шілде - тамыз - қыркүйек - қазан - қараша - желтоқсан + Қаңтар + Ақпан + Наурыз + Сәуір + Мамыр + Маусым + Шілде + Тамыз + Қыркүйек + Қазан + Қараша + Желтоқсан - жек - дүй - сей - сәр - бей - жұма - сен + Жс + Дс + Сс + Ср + Бс + Жм + Сб Ж @@ -994,13 +1017,13 @@ For terms of use, see http://www.unicode.org/copyright.html С - жс - дс - сс - ср - бс - жм - сб + Жс + Дс + Сс + Ср + Бс + Жм + Сб жексенбі @@ -1014,13 +1037,13 @@ For terms of use, see http://www.unicode.org/copyright.html - жек - дүй - сей - сәр - бей - жұма - сб. + Жс + Дс + Сс + Ср + Бс + Жм + Сб Ж @@ -1032,78 +1055,130 @@ For terms of use, see http://www.unicode.org/copyright.html С - жс - дс - сс - ср - бс - жм - сб + Жс + Дс + Сс + Ср + Бс + Жм + Сб - жексенбі - дүйсенбі - сейсенбі - сәрсенбі - бейсенбі - жұма - сенбі + Жексенбі + Дүйсенбі + Сейсенбі + Сәрсенбі + Бейсенбі + Жұма + Сенбі - Т1 - Т2 - Т3 - Т4 + І ш. + ІІ ш. + ІІІ ш. + IV ш. - 1 - 2 - 3 - 4 + I + II + III + IV - 1-інші тоқсан - 2-інші тоқсан - 3-інші тоқсан - 4-інші тоқсан + І ширек + ІІ ширек + ІІІ ширек + IV ширек - Т1 - Т2 - Т3 - Т4 + І ш. + ІІ ш. + ІІІ ш. + IV ш. - 1 - 2 - 3 - 4 + I + II + III + IV - 1-інші тоқсан - 2-інші тоқсан - 3-інші тоқсан - 4-інші тоқсан + І ширек + ІІ ширек + ІІІ ширек + IV ширек + + түн жарымы + таңғы + түскі + түскі/кешкі + таңғы + түстен кейінгі + кешкі + түнгі + - тт - тс - кш + түн жарымы + таңғы + түскі + түскі/кешкі + таңғы + түстен кейінгі + кешкі + түнгі - таңертеңгі + түн жарымы + таңғы түскі - түстен кейінгі + түскі/кешкі + таңғы + түстен кейінгі + кешкі + түнгі + + + + + түн жарымы + таң + талтүс + түс/кеш + таң + түстен кейін + кеш + түн + + + түн жарымы + таң + талтүс + түс/кеш + таң + түстен кейін + кеш + түн + + + түн жарымы + таң + талтүс + түс/кеш + таң + түстен кейін + кеш + түн @@ -1111,33 +1186,31 @@ For terms of use, see http://www.unicode.org/copyright.html Біздің заманымызға дейін Біздің заманымыз - Жаңа заман б.з.д. б.з. - ж.з. - EEEE, d MMMM y + y 'ж'. d MMMM, EEEE - d MMMM y + y 'ж'. d MMMM - y, dd-MMM + y 'ж'. dd MMM - dd/MM/yy + dd.MM.yy @@ -1188,36 +1261,42 @@ For terms of use, see http://www.unicode.org/copyright.html d ccc d, E - E h:mm a + E, a h:mm E HH:mm - E h:mm:ss a + E, a h:mm:ss E HH:mm:ss - G y - G y MMM - G y MMM d - G y MMM d, E - h a + G y 'ж'. + G y 'ж'. MMM + G y 'ж'. d MMM + G y 'ж'. d MMM, E + a h HH - h:mm a + a h:mm HH:mm - h:mm:ss a + a h:mm:ss HH:mm:ss + a h:mm:ss v + HH:mm:ss v + a h:mm v + HH:mm v L - dd-MM - E, dd-MM + dd.MM + dd.MM, E LLL d MMM - E, d MMM + d MMM, E + d MMMM mm:ss y - MM-y - dd-MM-y - E, dd-MM-y - MMM y - d MMM y - E, d MMM y - y QQQ - y QQQQ + MM.y + dd.MM.y + dd.MM.y, E + y 'ж'. MMM + y 'ж'. d MMM + y 'ж'. d MMM, E + y 'ж'. MMMM + y 'ж'. QQQ + y 'ж'. QQQQ {0} {1} @@ -1228,14 +1307,14 @@ For terms of use, see http://www.unicode.org/copyright.html d–d - h a – h a + a h – a h a h–h HH–HH - h:mm a – h:mm a + a h:mm – a h:mm a h:mm–h:mm a h:mm–h:mm @@ -1244,7 +1323,7 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm–HH:mm - h:mm a – h:mm a v + a h:mm – a h:mm v a h:mm – h:mm v a h:mm – h:mm v @@ -1253,7 +1332,7 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm–HH:mm v - h a – h a v + a h – a h v a h – h v @@ -1267,8 +1346,8 @@ For terms of use, see http://www.unicode.org/copyright.html dd.MM – dd.MM - E, dd.MM – E, dd.MM - E, dd.MM – E, dd.MM + dd.MM, E – dd.MM, E + dd.MM, E – dd.MM, E MMM–MMM @@ -1278,8 +1357,8 @@ For terms of use, see http://www.unicode.org/copyright.html d MMM – d MMM - E, d – E, d MMM - E, d MMM – E, d MMM + d MMM, E – d MMM, E + d MMM, E – d MMM, E y–y @@ -1294,27 +1373,27 @@ For terms of use, see http://www.unicode.org/copyright.html dd.MM.y – dd.MM.y - E, dd.MM.y – E, dd.MM.y - E, dd.MM.y – E, dd.MM.y - E, dd.MM.y – E, dd.MM.y + dd.MM.y, E – dd.MM.y, E + dd.MM.y, E – dd.MM.y, E + dd.MM.y, E – dd.MM.y, E - MMM–MMM y 'ж'. - MMM y 'ж'. - MMM y 'ж'. + y 'ж'. MMM–MMM + y 'ж'. MMM – y 'ж'. MMM - d–d MMM y 'ж'. - d MMM – d MMM y 'ж'. - d MMM y 'ж'. - d MMM y 'ж'. + y 'ж'. d–d MMM + y 'ж'. d MMM – d MMM + y 'ж'. d MMM – y 'ж'. d MMM - E, d – E, d MMM y 'ж'. - E, d MMM – E, d MMM y 'ж'. - E, d MMM y 'ж'. - E, d MMM y 'ж'. + y 'ж'. d MMM, E – y 'ж'. d MMM, E + y 'ж'. d MMM, E – d MMM, E + y 'ж'. d MMM, E – y 'ж'. d MMM, E - MMMM – MMMM y - MMMM y – MMMM y + y 'ж'. MMMM – MMMM + y 'ж'. MMMM – y 'ж'. MMMM @@ -1322,10 +1401,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Кезең + дәуір - Жыл + жыл былтырғы жыл биылғы жыл келесі жыл @@ -1352,49 +1431,49 @@ For terms of use, see http://www.unicode.org/copyright.html ж. - +{0} ж. - +{0} ж. + {0} ж. кейін + {0} ж. кейін - -{0} ж. - -{0} ж. + {0} ж. бұрын + {0} ж. бұрын - Тоқсан + ширек - {0} тоқсаннан кейін - {0} тоқсаннан кейін + {0} ширектен кейін + {0} ширектен кейін - {0} тоқсан бұрын - {0} тоқсан бұрын + {0} ширек бұрын + {0} ширек бұрын - тоқ. + ш. - {0} тоқ. кейін - {0} тоқ. кейін + {0} ш. кейін + {0} ш. кейін - {0} тоқ. бұрын - {0} тоқ. бұрын + {0} ш. бұрын + {0} ш. бұрын - тоқ. + ш. - {0} тоқ.кейін - {0} тоқ.кейін + {0} ш. кейін + {0} ш. кейін - {0} тоқ. бұрын - {0} тоқ.бұрын + {0} ш. бұрын + {0} ш. бұрын - Ай + ай өткен ай осы ай келесі ай @@ -1409,6 +1488,9 @@ For terms of use, see http://www.unicode.org/copyright.html ай + өткен ай + осы ай + келесі ай {0} айдан кейін {0} айдан кейін @@ -1420,6 +1502,9 @@ For terms of use, see http://www.unicode.org/copyright.html ай + өткен ай + осы ай + келесі ай {0} айдан кейін {0} айдан кейін @@ -1430,7 +1515,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Апта + апта өткен апта осы апта келесі апта @@ -1457,12 +1542,12 @@ For terms of use, see http://www.unicode.org/copyright.html ап. - {0} ап.кейін - {0} ап.кейін + {0} ап. кейін + {0} ап. кейін - {0} ап.бұрын - {0} ап.бұрын + {0} ап. бұрын + {0} ап. бұрын @@ -1471,7 +1556,7 @@ For terms of use, see http://www.unicode.org/copyright.html кеше бүгін ертең - арғы күні + бүрсігүні {0} күннен кейін {0} күннен кейін @@ -1482,7 +1567,12 @@ For terms of use, see http://www.unicode.org/copyright.html - к + күн + алдыңғы күні + кеше + бүгін + ертең + бүрсігүні {0} күннен кейін {0} күннен кейін @@ -1493,7 +1583,12 @@ For terms of use, see http://www.unicode.org/copyright.html - к + күн + алдыңғы күні + кеше + бүгін + ертең + бүрсігүні {0} күннен кейін {0} күннен кейін @@ -1504,7 +1599,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Апта күні + апта күні өткен жексенбі @@ -1512,14 +1607,14 @@ For terms of use, see http://www.unicode.org/copyright.html келесі жексенбі - өткен жек - осы жек - келесі жек + өткен жек. + осы жек. + келесі жек. - өткен жк - осы жк - келесі жк + өткен жс + осы жс + келесі жс өткен дүйсенбі @@ -1527,9 +1622,9 @@ For terms of use, see http://www.unicode.org/copyright.html келесі дүйсенбі - өткен дүй - осы дүй - келесі дүй + өткен дүй. + осы дүй. + келесі дүй. өткен дс @@ -1542,9 +1637,9 @@ For terms of use, see http://www.unicode.org/copyright.html келесі сейсенбі - өткен сейс - осы сейс - келесі сейс + өткен сей. + осы сей. + келесі сей. өткен сс @@ -1557,9 +1652,9 @@ For terms of use, see http://www.unicode.org/copyright.html келесі сәрсенбі - өткен сәрс - осы сәрс - келесі сәрс + өткен сәр. + осы сәр. + келесі сәр. өткен ср @@ -1572,9 +1667,9 @@ For terms of use, see http://www.unicode.org/copyright.html келесі бейсенбі - өткен бейс - осы бейс - келесі бейс + өткен бей. + осы бей. + келесі бей. өткен бс @@ -1587,9 +1682,9 @@ For terms of use, see http://www.unicode.org/copyright.html келесі жұма - өткен жұма - осы жұма - келесі жұма + өткен жұм. + осы жұм. + келесі жұм. өткен жм @@ -1602,9 +1697,9 @@ For terms of use, see http://www.unicode.org/copyright.html келесі сенбі - өткен сен - осы сен - келесі сен + өткен сен. + осы сен. + келесі сен. өткен сб @@ -1612,10 +1707,10 @@ For terms of use, see http://www.unicode.org/copyright.html келесі сб - таңертеңгі/түстен кейінгі/кешкі + таңғы/түскі/кешкі - Сағат + сағат {0} сағаттан кейін {0} сағаттан кейін @@ -1628,27 +1723,27 @@ For terms of use, see http://www.unicode.org/copyright.html сағ. - {0} сағаттан кейін - {0} сағаттан кейін + {0} сағ. кейін + {0} сағ. кейін - {0} сағат бұрын - {0} сағат бұрын + {0} сағ. бұрын + {0} сағ. бұрын - с + сағ. - {0} сағ.кейін - {0} сағаттан кейін + {0} сағ. кейін + {0} сағ. кейін - {0} сағ.бұрын - {0} сағат бұрын + {0} сағ. бұрын + {0} сағ. бұрын - Минут + минут {0} минуттан кейін {0} минуттан кейін @@ -1661,27 +1756,27 @@ For terms of use, see http://www.unicode.org/copyright.html мин. - {0} минуттан кейін - {0} минуттан кейін + {0} мин. кейін + {0} мин. кейін - {0} минут бұрын - {0} минут бұрын + {0} мин. бұрын + {0} мин. бұрын - м + мин. - {0} мин.кейін - {0} мин.кейін + {0} мин. кейін + {0} мин. кейін - {0} мин.бұрын - {0} минут бұрын + {0} мин. бұрын + {0} мин. бұрын - Секунд + секунд қазір {0} секундтан кейін @@ -1695,42 +1790,42 @@ For terms of use, see http://www.unicode.org/copyright.html сек. - {0} секундтан кейін - {0} секундтан кейін + {0} сек. кейін + {0} сек. кейін - {0} секунд бұрын - {0} секунд бұрын + {0} сек. бұрын + {0} сек. бұрын - с + сек. - {0} сек.кейін - {0} сек.кейін + {0} сек. кейін + {0} сек. кейін - {0} сек.бұрын - {0} сек.бұрын + {0} сек. бұрын + {0} сек. бұрын - Уақыт белдеуі + уақыт белдеуі +HH:mm;-HH:mm - ГОУ{0} + GMT{0} GMT {0} уақыты - {0} күндізгі уақыты + {0} жазғы уақыты {0} стандартты уақыты {1} ({0}) - Белгісіз + Белгісіз қала - Андора + Андорра Дубай @@ -1739,10 +1834,10 @@ For terms of use, see http://www.unicode.org/copyright.html Кабул - Антгуа + Антигуа - Ангилиа + Ангилья Тирана @@ -1763,7 +1858,7 @@ For terms of use, see http://www.unicode.org/copyright.html Тролл - Сева + Сёва Моусон @@ -1781,31 +1876,31 @@ For terms of use, see http://www.unicode.org/copyright.html Дюмон-д’Юрвиль - Мак Мердо + Мак-Мердо - Рио Галлегос + Рио-Гальегос - Мендоза + Мендоса Сан-Хуан - Ушуаиа + Ушуайя - Ла Риоха + Ла-Риоха - Сан Луис + Сан-Луис Катамарка - Салта + Сальта Жужуй @@ -1817,7 +1912,7 @@ For terms of use, see http://www.unicode.org/copyright.html Кордоба - Буэнос Айрес + Буэнос-Айрес Паго-Паго @@ -1838,7 +1933,7 @@ For terms of use, see http://www.unicode.org/copyright.html Аделаида - Брокен Хилл + Брокен-Хилл Керри @@ -1862,7 +1957,7 @@ For terms of use, see http://www.unicode.org/copyright.html Маккуори - Лорд Хау, арал + Лорд-Хау аралы Аруба @@ -1886,7 +1981,7 @@ For terms of use, see http://www.unicode.org/copyright.html Брюссель - Уадагуду + Уагадугу София @@ -1904,7 +1999,7 @@ For terms of use, see http://www.unicode.org/copyright.html Сен-Бартелеми - Бермуда + Бермуд аралдары Бруней @@ -1919,13 +2014,13 @@ For terms of use, see http://www.unicode.org/copyright.html Эйрунепе - Риу Бранку + Риу-Бранку Порту-Велью - Бао Виста + Бао-Виста Манаус @@ -1937,7 +2032,7 @@ For terms of use, see http://www.unicode.org/copyright.html Сантарем - Кампо Гранде + Кампу-Гранди Белем @@ -1946,7 +2041,7 @@ For terms of use, see http://www.unicode.org/copyright.html Арагуаина - Сан Паулу + Сан-Паулу Баия @@ -1967,7 +2062,7 @@ For terms of use, see http://www.unicode.org/copyright.html Нассау - Тимбу + Тхимпху Габороне @@ -1979,7 +2074,7 @@ For terms of use, see http://www.unicode.org/copyright.html Белиз - Досон + Доусон Уайтхорс @@ -1991,7 +2086,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ванкувер - Досон Крик + Досон-Крик Крестон @@ -2003,10 +2098,10 @@ For terms of use, see http://www.unicode.org/copyright.html Эдмонтон - Свифт-Карент + Свифт-Керрент - Кембридж Бей + Кембридж-Бей Регина @@ -2024,7 +2119,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ранкин-Инлет - Корал Харбор + Корал-Харбор Тандер-Бей @@ -2054,7 +2149,7 @@ For terms of use, see http://www.unicode.org/copyright.html Глейс-Бей - Бланк Саблон + Бланк-Саблон Сент-Джонс @@ -2072,7 +2167,7 @@ For terms of use, see http://www.unicode.org/copyright.html Банги - Браззавил + Браззавиль Цюрих @@ -2084,7 +2179,7 @@ For terms of use, see http://www.unicode.org/copyright.html Раротонга - Пасха арала + Пасха аралы Сантьяго @@ -2114,10 +2209,10 @@ For terms of use, see http://www.unicode.org/copyright.html Курасао - Кристмас аралдары + Кристмас - Никосиа + Никосия Прага @@ -2138,7 +2233,7 @@ For terms of use, see http://www.unicode.org/copyright.html Доминика - Санто Доминго + Санто-Доминго Алжир @@ -2156,10 +2251,10 @@ For terms of use, see http://www.unicode.org/copyright.html Каир - Эл-Аюн + Эль-Аюн - Асмера + Асмара Канар аралдары @@ -2171,7 +2266,7 @@ For terms of use, see http://www.unicode.org/copyright.html Мадрид - Аддис Абеба + Аддис-Абеба Хелсинки @@ -2183,13 +2278,13 @@ For terms of use, see http://www.unicode.org/copyright.html Стенли - Трук + Чуук Понапе - Косрае + Косраэ Фарер аралдары @@ -2198,11 +2293,11 @@ For terms of use, see http://www.unicode.org/copyright.html Париж - Либревил + Либревиль - Ұлыбританиялық жазғы уақыт + Ұлыбритания жазғы уақыты Лондон @@ -2234,7 +2329,7 @@ For terms of use, see http://www.unicode.org/copyright.html Скорсбиссун - Денмарксхавн + Данмарксхавн Банжул @@ -2252,7 +2347,7 @@ For terms of use, see http://www.unicode.org/copyright.html Афина - Оңтүстік Джорджия + Оңтүстік Георгия Гватемала @@ -2282,7 +2377,7 @@ For terms of use, see http://www.unicode.org/copyright.html Будапешт - Жакарта + Джакарта Понтианак @@ -2291,11 +2386,11 @@ For terms of use, see http://www.unicode.org/copyright.html Макассар - Жайпур + Джаяпура - Ирландиаялық жазғы уақыт + Ирландия жазғы уақыты Дублин @@ -2303,7 +2398,7 @@ For terms of use, see http://www.unicode.org/copyright.html Иерусалим - Мэн, арал + Мэн аралы Калькутта @@ -2357,7 +2452,7 @@ For terms of use, see http://www.unicode.org/copyright.html Коморо - Сент Китс + Сент-Китс Пхеньян @@ -2402,7 +2497,7 @@ For terms of use, see http://www.unicode.org/copyright.html Коломбо - Монравия + Монровия Масеру @@ -2420,7 +2515,7 @@ For terms of use, see http://www.unicode.org/copyright.html Триполи - Кассабланка + Касабланка Монако @@ -2435,7 +2530,7 @@ For terms of use, see http://www.unicode.org/copyright.html Мариго - Антананариво + Антананариву Кваджалейн @@ -2474,7 +2569,7 @@ For terms of use, see http://www.unicode.org/copyright.html Нуакшот - Монсеррат + Монтсеррат Мальта @@ -2486,7 +2581,7 @@ For terms of use, see http://www.unicode.org/copyright.html Мальдив - Блантаир + Блантайр Тихуана @@ -2495,10 +2590,10 @@ For terms of use, see http://www.unicode.org/copyright.html Санта-Изабел - Эрмосилло + Эрмосильо - Мазалтан + Масатлан Чиуауа @@ -2585,13 +2680,16 @@ For terms of use, see http://www.unicode.org/copyright.html Таити - Маркиз аралдары + Маркиз Гамбье - Порт Морсби + Порт-Морсби + + + Бугенвиль Манила @@ -2630,7 +2728,7 @@ For terms of use, see http://www.unicode.org/copyright.html Палау - Асунсион + Асунсьон Катар @@ -2677,6 +2775,9 @@ For terms of use, see http://www.unicode.org/copyright.html Иркутск + + Чита + Якутск @@ -2695,6 +2796,9 @@ For terms of use, see http://www.unicode.org/copyright.html Магадан + + Среднеколымск + Камчатка @@ -2768,7 +2872,7 @@ For terms of use, see http://www.unicode.org/copyright.html Мбабане - Гранд Турк + Гранд-Тёрк Нджамена @@ -2801,10 +2905,10 @@ For terms of use, see http://www.unicode.org/copyright.html Тонгатапу - Стамбул + Ыстамбұл - Испания порты + Порт-оф-Спейн Фунафути @@ -2876,10 +2980,10 @@ For terms of use, see http://www.unicode.org/copyright.html Бьюла, Солтүстік Дакота - Нью Салем + Нью-Салем, Солтүстік Дакота - Солтүстік Дакота, Орталық + Сентер, Солтүстік Дакота Чикаго @@ -2891,7 +2995,7 @@ For terms of use, see http://www.unicode.org/copyright.html Винсенс, Индиана - Питерсберг + Питерсберг, Индиана Телл-Сити, Индиана @@ -2915,7 +3019,7 @@ For terms of use, see http://www.unicode.org/copyright.html Вивей, Индиана - Монтиселло, Кентуки + Монтичелло, Кентуки Детройт @@ -2936,7 +3040,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ватикан - Сент Винсент + Сент-Винсент Каракас @@ -2945,7 +3049,7 @@ For terms of use, see http://www.unicode.org/copyright.html Тортола - Сент Томас + Сент-Томас Хошимин @@ -2957,13 +3061,13 @@ For terms of use, see http://www.unicode.org/copyright.html Уоллис - Апия + Апиа Аден - Майорка + Майотта Йоханнесбург @@ -2976,7 +3080,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Ауғаныстан уақыты + Ауғанстан уақыты @@ -2997,15 +3101,15 @@ For terms of use, see http://www.unicode.org/copyright.html Батыс Африка уақыты - Батыс Африка стандарт уақыты - Батыс Африка жаздық уақыты + Батыс Африка стандартты уақыты + Батыс Африка жазғы уақыты Аляска уақыты Аляска стандартты уақыты - Аляска күндізгі уақыты + Аляска жазғы уақыты @@ -3017,30 +3121,30 @@ For terms of use, see http://www.unicode.org/copyright.html - Солтүстік Америка орталығының уақыты - Солтүстік Америка орталығының стандартты уақыты - Солтүстік Америка орталығының күндізгі уақыты + Солтүстік Америка орталық уақыты + Солтүстік Америка стандартты орталық уақыты + Солтүстік Америка жазғы орталық уақыты - Оңтүстік Америка шығыс бөлігінің уақыты - Оңтүстік Америка шығыс бөлігінің стандартты уақыты - Оңтүстік Америка шығыс бөлігінің күндізгі уақыты + Солтүстік Америка шығыс уақыты + Солтүстік Америка стандартты шығыс уақыты + Солтүстік Америка жазғы шығыс уақыты - Оңтүстік Америка таулы бөлігінің уақыты - Оңтүстік Америка таулы бөлігінің стандартты уақыты - Оңтүстік Америка таулы бөлігінің күндізгі уақыты + Солтүстік Америка тау уақыты + Солтүстік Америка стандартты тау уақыты + Солтүстік Америка жазғы тау уақыты - Тынық мұхитындағы Оңтүстік Америка уақыты - Тынық мұхитындағы Оңтүстік Америка стандартты уақыты - Тынық мұхитындағы Оңтүстік Америка жазғы уақыты + Солтүстік Америка Тынық мұхиты уақыты + Солтүстік Америка стандартты Тынық мұхиты уақыты + Солтүстік Америка жазғы Тынық мұхиты уақыты @@ -3054,7 +3158,7 @@ For terms of use, see http://www.unicode.org/copyright.html Сауд Арабиясы уақыты Сауд Арабиясы стандартты уақыты - Сауд Арабиясы күндізгі уақыты + Сауд Арабиясы жазғы уақыты @@ -3082,35 +3186,35 @@ For terms of use, see http://www.unicode.org/copyright.html Атлантика уақыты Атлантика стандартты уақыты - Атлантикалық жаздық уақыт + Атлантика жазғы уақыты Орталық Австралия уақыты - Австралияның орталық стандарт уақыты - Австралиялық орталық жаздық уақыт + Австралия стандартты орталық уақыты + Австралия жазғы орталық уақыты - Орталық Австралиялық батыс уақыты - Орталық Австралиялық батыс стандарт уақыты - Орталық Австралиялық батыс жаздық уақыты + Австралия орталық-батыс уақыты + Австралия стандартты орталық-батыс уақыты + Австралия жазғы орталық-батыс уақыты - Шығыс Австралиялық уақыт - Шығыс Австралиялық стандарт уақыты - Шығыс Австралиялық жаздық уақыт + Австралия шығыс уақыты + Австралия стандартты шығыс уақыты + Австралия жазғы шығыс уақыты - Батыс Австралиялық уақыт - Батыс Австралиялық стандарт уақыты - Батыс Австралиялық жаздық уақыт + Австралия батыс уақыты + Австралия стандартты батыс уақыты + Австралия жазғы батыс уақыты @@ -3165,7 +3269,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Чаморро уақыты + Чаморро стандартты уақыты @@ -3186,7 +3290,7 @@ For terms of use, see http://www.unicode.org/copyright.html Қытай уақыты Қытай стандартты уақыты - Қытай күндізгі уақыты + Қытай жазғы уақыты @@ -3224,7 +3328,7 @@ For terms of use, see http://www.unicode.org/copyright.html Куба уақыты Куба стандартты уақыты - Куба күндізгі уақыты + Куба жазғы уақыты @@ -3234,7 +3338,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Дюмон д’Юрвиль уақыты + Дюмон-д’Юрвиль уақыты @@ -3257,15 +3361,15 @@ For terms of use, see http://www.unicode.org/copyright.html Орталық Еуропа уақыты - Орталық Еуропа стандарт уақыты - Орталық Еуропа жаздық уақыты + Орталық Еуропа стандартты уақыты + Орталық Еуропа жазғы уақыты Шығыс Еуропа уақыты - Шығыс Еуропа стандарт уақыты - Шығыс Еуропа жаздық уақыты + Шығыс Еуропа стандартты уақыты + Шығыс Еуропа жазғы уақыты EET @@ -3275,14 +3379,14 @@ For terms of use, see http://www.unicode.org/copyright.html - Қашық Шығыс Еуропа Уақыты + Қиыр Шығыс Еуропа уақыты Батыс Еуропа уақыты - Батыс Еуропа стандарт уақыты - Батыс Еуропа жаздық уақыты + Батыс Еуропа стандартты уақыты + Батыс Еуропа жазғы уақыты @@ -3352,7 +3456,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Мексика шығанағы уақыты + Парсы шығанағы уақыты @@ -3383,7 +3487,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Үндістан уақыты + Үндістан стандартты уақыты @@ -3415,7 +3519,7 @@ For terms of use, see http://www.unicode.org/copyright.html Иран уақыты Иран стандартты уақыты - Иран күндізгі уақыты + Иран жазғы уақыты @@ -3429,14 +3533,14 @@ For terms of use, see http://www.unicode.org/copyright.html Израиль уақыты Израиль стандартты уақыты - Израиль күндізгі уақыты + Израиль жазғы уақыты Жапония уақыты Жапония стандартты уақыты - Жапония күндізгі уақыты + Жапония жазғы уақыты @@ -3453,7 +3557,7 @@ For terms of use, see http://www.unicode.org/copyright.html Корея уақыты Корея стандартты уақыты - Корея күндізгі уақыты + Корея жазғы уақыты @@ -3531,16 +3635,16 @@ For terms of use, see http://www.unicode.org/copyright.html - Солтүстік Мексика Уақыты - Солтүстік Мексика Стандартты Уақыты - Солтүстік Мексика Күндізгі Уақыты + Солтүстік Мексика уақыты + Солтүстік Мексика стандартты уақыты + Солтүстік Мексика жазғы уақыты - Мексика Тынық Мұхит Уақыты - Мексика Тынық Мұхит Стандартты Уақыты - Мексика Тынық Мұхит Күндізгі Уақыты + Мексика Тынық мұхит уақыты + Мексика стандартты Тынық мұхит уақыты + Мексика жазғы Тынық мұхит уақыты @@ -3583,7 +3687,7 @@ For terms of use, see http://www.unicode.org/copyright.html Жаңа Зеландия уақыты Жаңа Зеландия стандартты уақыты - Жаңа Зеландия күндізгі уақыты + Жаңа Зеландия жазғы уақыты @@ -3671,7 +3775,7 @@ For terms of use, see http://www.unicode.org/copyright.html Сен-Пьер және Микелон уақыты Сен-Пьер және Микелон стандартты уақыты - Сен-Пьер және Микелон күндізгі уақыты + Сен-Пьер және Микелон жазғы уақыты @@ -3705,7 +3809,7 @@ For terms of use, see http://www.unicode.org/copyright.html Самоа уақыты Самоа стандартты уақыты - Самоа күндізгі уақыты + Самоа жазғы уақыты @@ -3747,7 +3851,7 @@ For terms of use, see http://www.unicode.org/copyright.html Тайбэй уақыты Тайбэй стандартты уақыты - Тайбэй күндізгі уақыты + Тайбэй жазғы уақыты @@ -3880,14 +3984,42 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.### + + + 0 мың + 0 мың + 00 мың + 00 мың + 000 мың + 000 мың + 0 миллион + 0 миллион + 00 миллион + 00 миллион + 000 миллион + 000 миллион + 0 миллиард + 0 миллиард + 00 миллиард + 00 миллиард + 000 миллиард + 000 миллиард + 0 триллион + 0 триллион + 00 триллион + 00 триллион + 000 триллион + 000 триллион + + 0 мың 0 мың 00 мың 00 мың - 000м - 000М + 000 мың + 000 мың 0 млн 0 млн 00 млн @@ -3898,14 +4030,14 @@ For terms of use, see http://www.unicode.org/copyright.html 0 млрд 00 млрд 00 млрд - 000МЛ - 000Б + 000 млрд + 000 млрд 0 трлн 0 трлн 00 трлн 00 трлн - 000T - 000T + 000 трлн + 000 трлн @@ -3932,26 +4064,55 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 мың ¤ + 0 мың ¤ + 00 мың ¤ + 00 мың ¤ + 000 мың ¤ + 000 мың ¤ + 0 млн ¤ + 0 млн ¤ + 00 млн ¤ + 00 млн ¤ + 000 млн ¤ + 000 млн ¤ + 0 млрд ¤ + 0 млрд ¤ + 00 млрд ¤ + 00 млрд ¤ + 000 млрд ¤ + 000 млрд ¤ + 0 трлн ¤ + 0 трлн ¤ + 00 трлн ¤ + 00 трлн ¤ + 000 трлн ¤ + 000 трлн ¤ + + {0} {1} {0} {1} - Дихрам (БАЭ) - Дихрам (БАЭ) - Дихрам (БАЭ) + Біріккен Араб Әмірліктерінің дирхамы + БАӘ дирхамы + БАӘ дирхамы AED - Ауғаныстан афганиі - Ауғаныстан афганиі - Ауғаныстан афганиі + Ауғанстан афганиі + Ауғанстан афганиі + Ауғанстан афганиі AFN - Албания лекі - Албания лекі - Албания лекі + Албания легі + Албания легі + Албания легі + ALL Армения драмы @@ -3970,11 +4131,14 @@ For terms of use, see http://www.unicode.org/copyright.html Ангола кванзасы Ангола кванзасы AOA + Kz Аргентина песосы Аргентина песосы Аргентина песосы + ARS + $ Австралия доллары @@ -3984,9 +4148,9 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Арубан флоринсы - Арубан флоринсы - Арубан флоринсы + Аруба флорині + Аруба флорині + Аруба флорині AWG @@ -4002,6 +4166,8 @@ For terms of use, see http://www.unicode.org/copyright.html Босния және Герцеговина айырбасталмалы маркасы Босния және Герцеговина айырбасталмалы маркасы Босния және Герцеговина айырбасталмалы маркасы + BAM + KM Барбадос доллары @@ -4018,9 +4184,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Болгар леві - Болгар леві - Болгар леві + Болгария леві + Болгария леві + Болгария леві + BGN Бахрейн динары @@ -4052,9 +4219,15 @@ For terms of use, see http://www.unicode.org/copyright.html Боливия боливианосы Боливия боливианосы Боливия боливианосы + BOB + Bs Бразилия реалы + Бразилия реалы + Бразилия реалы + R$ + R$ Багам доллары @@ -4074,11 +4247,14 @@ For terms of use, see http://www.unicode.org/copyright.html Ботсвана пуласы Ботсвана пуласы BWP + P - Беларус рублі - Беларус рублі - Беларус рублі + Беларусь рублі + Беларусь рублі + Беларусь рублі + BYR + р. Белиз доллары @@ -4104,16 +4280,19 @@ For terms of use, see http://www.unicode.org/copyright.html Швейцария франкы Швейцария франкы Швейцария франкы + CHF Чили песосы Чили песосы Чили песосы + CLP + $ - Қытай юаны - Қытай юаны - Қытай юаны + Қытай юані + Қытай юані + Қытай юані CN¥ ¥ @@ -4121,11 +4300,13 @@ For terms of use, see http://www.unicode.org/copyright.html Колумбия песосы Колумбия песосы Колумбия песосы + COP + $ - Коста-рика колоны - Коста-рика колоны - Коста-рика колоны + Коста-Рика колоны + Коста-Рика колоны + Коста-Рика колоны CRC @@ -4134,6 +4315,7 @@ For terms of use, see http://www.unicode.org/copyright.html Куба айырбасталмалы песосы Куба айырбасталмалы песосы CUC + $ Куба песосы @@ -4149,9 +4331,11 @@ For terms of use, see http://www.unicode.org/copyright.html CVE - Чех кронасы - Чех кронасы - Чех кронасы + Чехия кронасы + Чехия кронасы + Чехия кронасы + CZK + Джибути франкы @@ -4163,6 +4347,8 @@ For terms of use, see http://www.unicode.org/copyright.html Дат кроны Дат кроны Дат кроны + DKK + kr Доминикан песосы @@ -4182,11 +4368,12 @@ For terms of use, see http://www.unicode.org/copyright.html Мысыр фунты Мысыр фунты EGP + - Эритрей накфасы - Эритрей накфасы - Эритрей накфасы + Эритрея накфасы + Эритрея накфасы + Эритрея накфасы ERN @@ -4197,6 +4384,10 @@ For terms of use, see http://www.unicode.org/copyright.html Еуро + еуро + еуро + + Фиджи доллары @@ -4209,15 +4400,22 @@ For terms of use, see http://www.unicode.org/copyright.html Фолкленд аралдарының фунты Фолкленд аралдарының фунты Фолкленд аралдарының фунты + FKP + £ Британия фунты + Британия фунты + Британия фунты + £ + £ Грузия лариі Грузия лариі Грузия лариі GEL + Гана седиі @@ -4229,6 +4427,8 @@ For terms of use, see http://www.unicode.org/copyright.html Гибралтар фунты Гибралтар фунты Гибралтар фунты + GIP + £ Гамбия даласиі @@ -4237,21 +4437,25 @@ For terms of use, see http://www.unicode.org/copyright.html GMD - Гвиней франкы - Гвиней франкы - Гвиней франкы + Гвинея франкы + Гвинея франкы + Гвинея франкы GNF + FG Гватемала кетсалі Гватемала кетсалі Гватемала кетсалі GTQ + Q Гайана доллары Гайана доллары Гайана доллары + GYD + $ Гонконг доллары @@ -4265,11 +4469,14 @@ For terms of use, see http://www.unicode.org/copyright.html Гондурас лемпираcы Гондурас лемпираcы HNL + L Хорватия кунасы Хорватия кунасы Хорватия кунасы + HRK + kn Гаити гурды @@ -4278,15 +4485,18 @@ For terms of use, see http://www.unicode.org/copyright.html HTG - Венгер форинты - Венгер форинты - Венгер форинты + Венгрия форинты + Венгрия форинты + Венгрия форинты + HUF + Ft - Индонезия рупиі - Индонезия рупиі - Индонезия рупиі + Индонезия рупиясы + Индонезия рупиясы + Индонезия рупиясы IDR + Rp Израиль жаңа шекелі @@ -4296,9 +4506,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Үнді рупиясы - Үнді рупиясы - Үнді рупиясы + Үндістан рупиясы + Үндістан рупиясы + Үндістан рупиясы @@ -4318,6 +4528,8 @@ For terms of use, see http://www.unicode.org/copyright.html Исландия кронасы Исландия кронасы Исландия кронасы + ISK + kr Ямайка доллары @@ -4327,15 +4539,15 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Йордания динары - Йордания динары - Йордания динары + Иордания динары + Иордания динары + Иордания динары JOD - Жапон иені - Жапон иені - Жапон иені + Жапония иенасы + Жапония иенасы + Жапония иенасы JP¥ ¥ @@ -4363,12 +4575,14 @@ For terms of use, see http://www.unicode.org/copyright.html Комор аралдары франкы Комор аралдары франкы KMF + CF Солтүстік Корея воны Солтүстік Корея воны Солтүстік Корея воны KPW + Оңтүстік Корея воны @@ -4409,12 +4623,14 @@ For terms of use, see http://www.unicode.org/copyright.html Ливан фунты Ливан фунты LBP + Шри-Ланка рупиясы Шри-Ланка рупиясы Шри-Ланка рупиясы LKR + Rs Либерия доллары @@ -4446,31 +4662,35 @@ For terms of use, see http://www.unicode.org/copyright.html MAD - Молдава лейі - Молдава лейі - Молдава лейі + Молдова лейі + Молдова лейі + Молдова лейі + MDL Малагаси ариариы Малагаси ариариы Малагаси ариариы MGA + Ar Македония динары Македония динары Македония динары + MKD Мьянма кьяты Мьянма кьяты Мьянма кьяты MMK + K - Моңғолия тугрикасы - Моңғолия тугрикасы - Моңғолия тугрикасы + Моңғолия тугригі + Моңғолия тугригі + Моңғолия тугригі MNT @@ -4491,6 +4711,7 @@ For terms of use, see http://www.unicode.org/copyright.html Маврикий рупиясы Маврикий рупиясы MUR + Rs Мальдив руфиясы @@ -4505,9 +4726,9 @@ For terms of use, see http://www.unicode.org/copyright.html MWK - Мексика пессосы - Мексика пессосы - Мексика пессосы + Мексика песосы + Мексика песосы + Мексика песосы MX$ $ @@ -4516,6 +4737,7 @@ For terms of use, see http://www.unicode.org/copyright.html Малайзия ринггиті Малайзия ринггиті MYR + RM Мозамбик метикалы @@ -4542,17 +4764,21 @@ For terms of use, see http://www.unicode.org/copyright.html Никарагуа кордобасы Никарагуа кордобасы NIO + C$ Норвегия кроны Норвегия кроны Норвегия кроны + NOK + kr - Непал рупиі - Непал рупиі - Непал рупиі + Непал рупиясы + Непал рупиясы + Непал рупиясы NPR + Rs Жаңа Зеландия доллары @@ -4577,6 +4803,7 @@ For terms of use, see http://www.unicode.org/copyright.html Перу жаңа солі Перу жаңа солі Перу жаңа солі + PEN Папуа - Жаңа Гвинея кинасы @@ -4592,20 +4819,25 @@ For terms of use, see http://www.unicode.org/copyright.html - Пәкістан рупиі - Пәкістан рупиі - Пәкістан рупиі + Пәкістан рупиясы + Пәкістан рупиясы + Пәкістан рупиясы PKR + Rs Польша злотасы Польша злотасы Польша злотасы + PLN + Парагвай гуараниі Парагвай гуараниі Парагвай гуараниі + PYG + Катар риалы @@ -4617,26 +4849,32 @@ For terms of use, see http://www.unicode.org/copyright.html Румыния лейі Румыния лейі Румыния лейі + RON Сербия динары Сербия динары Сербия динары + RSD - Ресей рубль - руб. + Ресей рублі + Ресей рублі + Ресей рублі + + Руанда франкы Руанда франкы Руанда франкы RWF + RF - Сауд Арабия риалы - Сауд Арабия риалы - Сауд Арабия риалы + Сауд Арабиясының риалы + Сауд Арабиясының риалы + Сауд Арабиясының риалы SAR @@ -4659,9 +4897,11 @@ For terms of use, see http://www.unicode.org/copyright.html SDG - Швед кроны - Швед кроны - Швед кроны + Швеция кроны + Швеция кроны + Швеция кроны + SEK + kr Сингапур доллары @@ -4675,6 +4915,7 @@ For terms of use, see http://www.unicode.org/copyright.html Әулие Елена аралы фунты Әулие Елена аралы фунты SHP + £ Сьерра-Леоне леонесы @@ -4692,6 +4933,8 @@ For terms of use, see http://www.unicode.org/copyright.html Суринам доллары Суринам доллары Суринам доллары + SRD + $ Оңтүстік Судан фунты @@ -4705,12 +4948,14 @@ For terms of use, see http://www.unicode.org/copyright.html Сант-Томе мен Принсипи добрасы Сант-Томе мен Принсипи добрасы STD + Db Сирия фунты Сирия фунты Сирия фунты SYP + £ Свазиленд лилангениі @@ -4723,6 +4968,7 @@ For terms of use, see http://www.unicode.org/copyright.html Тай баты Тай баты ฿ + ฿ Тәжікстан сомониі @@ -4747,6 +4993,7 @@ For terms of use, see http://www.unicode.org/copyright.html Тонга паангасы Тонга паангасы TOP + T$ Түрік лирасы @@ -4754,6 +5001,7 @@ For terms of use, see http://www.unicode.org/copyright.html Түрік лирасы TRY + TL Тринидад пен Тобаго доллары @@ -4779,6 +5027,8 @@ For terms of use, see http://www.unicode.org/copyright.html Украина гривнасы Украина гривнасы Украина гривнасы + UAH + Уганда шиллингі @@ -4797,6 +5047,8 @@ For terms of use, see http://www.unicode.org/copyright.html Уругвай песосы Уругвай песосы Уругвай песосы + UYU + $ Өзбекстан сомы @@ -4808,6 +5060,8 @@ For terms of use, see http://www.unicode.org/copyright.html Венесуэла боливары Венесуэла боливары Венесуэла боливары + VEF + Bs Вьетнам донгы @@ -4839,6 +5093,7 @@ For terms of use, see http://www.unicode.org/copyright.html Шығыс Кариб доллары Шығыс Кариб доллары EC$ + $ КФА ВСЕАО франкы @@ -4854,8 +5109,8 @@ For terms of use, see http://www.unicode.org/copyright.html Белгісіз валюта - Белгісіз валюта - Белгісіз валюта + (белгісіз валюта бірлігі) + (белгісіз валюта) Йемен риалы @@ -4868,12 +5123,14 @@ For terms of use, see http://www.unicode.org/copyright.html Оңтүстік Африка рэнді Оңтүстік Африка рэнді ZAR + R Замбия квачасы Замбия квачасы Замбия квачасы ZMW + ZK @@ -4884,7 +5141,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0}{1}қатынасы + {0}/{1} гравитациялық күш @@ -4892,13 +5149,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гравитациялық күш - шаршыланған секундқа шаққан метр - {0} метр/шаршыланған секунд - {0} метр/шаршыланған секунд + метр/шаршы секунд + {0} метр/шаршы секунд + {0} метр/шаршы секунд + + + айналым + {0} айналым + {0} айналым + + + радиан + {0} радиан + {0} радиан + + + градус + {0} градус + {0} градус минут - минут + {0} минут {0} минут @@ -4906,30 +5178,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} секунд {0} секунд - - градус - {0} градус - {0} градус - - - радиан - {0} радиан - {0} радиан - - - акр - {0} акр - {0} акр + + шаршы километр + {0} шаршы километр + {0} шаршы километр гектар {0} гектар {0} гектар + + шаршы метр + {0} шаршы метр + {0} шаршы метр + {0}/метр² + шаршы сантиметр {0} шаршы сантиметр {0} шаршы сантиметр + {0}/см² + + + шаршы миля + {0} шаршы миля + {0} шаршы миля + + + акр + {0} акр + {0} акр + + + шаршы ярд + {0} шаршы ярд + {0} шаршы ярд шаршы фут @@ -4940,139 +5224,140 @@ For terms of use, see http://www.unicode.org/copyright.html шаршы дюйм {0} шаршы дюйм {0} шаршы дюйм + {0}/дюйм² - - шаршы километр - {0} шаршы километр - {0} шаршы километр - - - шаршы метр - {0} шаршы метр - {0} шаршы метр - - - шаршы миля - {0} шаршы миля - {0} шаршы миля - - - шаршы ярд - {0} шаршы ярд - {0} шаршы ярд + + карат + {0} карат + {0} карат литр/километр {0} литр/километр {0} литр/километр + + литр/100 километр + {0} литр/100 километр + {0} литр/100 километр + миля/галлон {0} миля/галлон {0} миля/галллон - - бит - {0} бит - {0} бит - - - байт - {0} байт - {0} байт - - - гигабит - {0} гигабит - {0} гигабит - - - гигабайт - {0} гигабайт - {0} гигабайт - - - килобит - {0} килобит - {0} килобит - - - килобайт - {0} килобайт - {0} килобайт - - - мегабит - {0} мегабит - {0} мегабит - - - мегабайт - {0} мегабайт - {0} мегабайт - - - терабит - {0} терабит - {0} терабит - терабайт {0} терабайт {0} терабайт + + терабит + {0} терабит + {0} терабит + + + гигабайт + {0} гигабайт + {0} гигабайт + + + гигабит + {0} гигабит + {0} гигабит + + + мегабайт + {0} мегабайт + {0} мегабайт + + + мегабит + {0} мегабит + {0} мегабит + + + килобайт + {0} килобайт + {0} килобайт + + + килобит + {0} килобит + {0} килобит + + + байт + {0} байт + {0} байт + + + бит + {0} бит + {0} бит + + + ғасыр + {0} ғасыр + {0} ғасыр + + + жыл + {0} жыл + {0} жыл + жылына {0} + + + ай + {0} ай + {0} ай + айына {0} + + + апта + {0} апта + {0} апта + аптасына {0} + тәулік {0} тәулік {0} тәулік + тәулігіне {0} сағат {0} сағат {0} сағат - {0}/h + сағатына {0} - - микросекунд - {0} микросекунд - {0} микросекунд + + минут + {0} минут + {0} минут + минутына {0} + + + секунд + {0} секунд + {0} секунд + секундына {0} миллисекунд {0} миллисекунд {0} миллисекунд - - минут - {0} минут - {0} минут - - - ай - {0} ай - {0} ай + + микросекунд + {0} микросекунд + {0} микросекунд наносекунд {0} наносекунд {0} наносекунд - - секунд - {0} секунд - {0} секунд - {0}/s - - - апта - {0} апта - {0} апта - - - жыл - {0} жыл - {0} жыл - ампер {0} aмпер @@ -5084,15 +5369,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миллиампер - ом - {0} oм - {0} oм + Ом + {0} Ом + {0} Ом вольт {0} вольт {0} вольт + + килокалория + {0} килокалория + {0} килокалория + калория {0} калория @@ -5103,23 +5393,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Калория {0} Калория - - джоуль - {0} джоуль - {0} джоуль - - - килокалория - {0} килокалория - {0} килокалория - килоджоуль {0} килоджуоль {0} килоджоуль + + джоуль + {0} джоуль + {0} джоуль + - сағатқа шаққандағы киловатт + киловатт-сағат {0} киловатт-сағат {0} киловатт-сағат @@ -5128,216 +5413,225 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гигагерц {0} гигагерц - - герц - {0} герц - {0} герц + + мегагерц + {0} мегагерц + {0} мегагерц килогерц {0} килогерц {0} килогерц - - мегагерц - {0} мегагерц - {0} мегагерц - - - астрономиялық бірлік - {0} a.б. - {0} а.б. - - - сантиметр - {0} сантиметр - {0} сантиметр - - - дециметр - {0} дм - {0} дм - - - фут - {0} фут - {0} фут - - - дюйм - {0} дюйм - {0} дюйм + + герц + {0} герц + {0} герц километр {0} километр {0} километр - - - жарық жылы - {0} жарық жылы - {0} жарық жылы + {0}/километр метр {0} метр {0} метр + {0}/метр - - микрометр - {0} микрометр - {0} микрометр + + дециметр + {0} дециметр + {0} дециметр - - миля - {0} миля - {0} миля + + сантиметр + {0} сантиметр + {0} сантиметр + {0}/сантиметр миллиметр {0} миллиметр {0} миллиметр + + микрометр + {0} микрометр + {0} микрометр + нанометр {0} нанометр {0} нанометр - - теңіз милясы - {0} теңіз милясы - {0} теңіз милясы - - - парсек - {0} парсек - {0} парсек - пикометр {0} пикометр {0} пикометр + + миля + {0} миля + {0} миля + ярд {0} ярд {0} ярд + + фут + {0} фут + {0} фут + {0}/фут + + + дюйм + {0} дюйм + {0} дюйм + {0}/дюйм + + + парсек + {0} парсек + {0} парсек + + + жарық жылы + {0} жарық жылы + {0} жарық жылы + + + астрономиялық бірлік + {0} астрономиялық бірлік + {0} астрономиялық бірлік + + + теңіз милясы + {0} теңіз милясы + {0} теңіз милясы + + + скандинавиялық миля + {0} скандинавиялық миля + {0} скандинавиялық миля + люкс {0} люкс {0} люкс - - карат - {0} карат - {0} карат - - - грамм - {0} грамм - {0} грамм + + метрлік тонна + {0} метрлік тонна + {0} метрлік тонна килограмм {0} килограмм {0} килограмм + {0}/килограмм - - метр тонна - {0} метр тонна - {0} метр тонна - - - микрограмм - {0} микрограмм - {0} микрограмм + + грамм + {0} грамм + {0} грамм + {0}/грамм миллиграмм {0} миллиграмм {0} миллиграмм - - унция - {0} унция - {0} унция - - - трой унциясы - {0} трой унциясы - {0} трой унциясы - - - фунт - {0} фунт - {0} фунт + + микрограмм + {0} микрограмм + {0} микрограмм тонна {0} тонна {0} тонна + + фунт + {0} фунт + {0} фунт + {0}/фунт + + + унция + {0} унция + {0} унция + {0}/унция + + + трой унциясы + {0} трой унциясы + {0} трой унциясы + + + карат + {0} карат + {0} карат + гигаватт {0} гигаватт {0} гигаватт - - ат күші - {0} ат күші - {0} ат күші - - - киловатт - {0} киловатт - {0} киловатт - мегаватт {0} мегаватт {0} мегаватт - - милливатт - {0} милливатт - {0} милливатт + + киловатт + {0} киловатт + {0} киловатт ватт {0} ватт {0} ватт + + милливатт + {0} милливатт + {0} милливатт + + + ат күші + {0} ат күші + {0} ат күші + гектопаскаль {0} гектопаскаль {0} гектопаскаль + + сынап бағанасының миллиметрі + сынап бағанасының {0} миллиметрі + сынап бағанасының {0} миллиметрі + + + фунт/шаршы дюйм + {0} фунт/шаршы дюйм + {0} фунт/шаршы дюйм + - сынапты бағана дюймы - {0} сынапты бағана дюймы - {0} сынапты бағана дюймы + сынап бағанасының дюймы + сынап бағанасының {0} дюймы + сынап бағанасының {0} дюймы миллибар {0} миллибар {0} миллибар - - сынапты бағана миллиметрі - {0} сынапты бағана миллиметрі - {0} сынапты бағана миллиметрі - - - шаршы дюймға шаққандағы фунт - {0} фунт/шаршы дюйм - {0} фунт/шаршы дюйм - - - карат - {0} карат - {0} карат - километр/сағат {0} километр/сағат @@ -5353,46 +5647,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миля/сағат {0} миля/сағат + + түйін + {0} түйін + {0} түйін + + + ° + {0}° + {0}° + Цельсий градусы {0} Цельсий градусы {0} Цельсий градусы - Фаренгейт бойынша градус - {0} Фаренгейт бойынша градус - {0} Фаренгейт бойынша градус + Фаренгейт градусы + {0} Фаренгейт градусы + {0} Фаренгейт градусы кельвин {0} кельвин {0} кельвин - - акро-фут - {0} aкро-фут - {0} aкро-фут - - - сантилитр - {0} cантилитр - {0} cантилитр - - - текше сантиметр - {0} текше сантиметр - {0} текше сантиметр - - - текше фут - {0} текше фут - {0} текше фут - - - текше дюйм - {0} текше дюйм - {0} текше дюйм - текше километр {0} текше километр @@ -5402,6 +5681,13 @@ For terms of use, see http://www.unicode.org/copyright.html текше метр {0} текше метр {0} текше метр + {0}/метр³ + + + текше сантиметр + {0} текше сантиметр + {0} текше сантиметр + {0}/сантиметр³ текше миля @@ -5413,25 +5699,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} текше ярд {0} текше ярд - - кесе - {0} кесе - {0} кесе + + текше фут + {0} текше фут + {0} текше фут - - децилитр - {0} децилитр - {0} децилитр + + текше дюйм + {0} текше дюйм + {0} текше дюйм - - сұйық унция - {0} сұйық унция - {0} сұйық унция - - - галлон - {0} галлон - {0} галлон + + мегалитр + {0} мегалитр + {0} мегалитр гектолитр @@ -5442,37 +5723,80 @@ For terms of use, see http://www.unicode.org/copyright.html литр {0} литр {0} литр + {0}/литр - - мегалитр - {0} мегалитр - {0} мегалитр + + децилитр + {0} децилитр + {0} децилитр + + + сантилитр + {0} cантилитр + {0} cантилитр миллилитр {0} миллилитр {0} миллилитр - - пинта - {0} пинта - {0} пинта + + метрлік пинта + {0} метрлік пинта + {0} метрлік пинта + + + метрлік кесе + {0} метрлік кесе + {0} метрлік кесе + + + акро-фут + {0} aкро-фут + {0} aкро-фут + + + галлон + {0} галлон + {0} галлон + {0}/галлон кварта {0} кварта {0} кварта + + пинта + {0} пинта + {0} пинта + + + кесе + {0} кесе + {0} кесе + + + сұйық унция + {0} сұйық унция + {0} сұйық унция + ас қасық {0} ас қасық {0} ас қасық - шәй қасық - {0} шәй қасық - {0} шәй қасық + шай қасық + {0} шай қасық + {0} шай қасық + + {0} Ш + {0} С + {0} О + {0} Б + @@ -5480,48 +5804,75 @@ For terms of use, see http://www.unicode.org/copyright.html гравитациялық күш - {0} грав. күш - {0} грав. күш + {0} G + {0} G метр/сек² {0} м/с² {0} м/с² - - минут - {0}мин - {0}мин - - - секунд - {0}сек - {0}сек - - - градус - {0}градус - {0}градус + + айн. + {0} айн. + {0} айн. радиан {0} рад {0} рад - - акр - {0} акр - {0} акр + + градус + {0}° + {0}° + + + минут + {0} мин. + {0} мин. + + + секунд + {0} сек. + {0} сек. + + + км² + {0} км² + {0} км² гектар {0} га {0} га + + метр² + {0} м² + {0} м² + {0}/м² + cм² {0} cм² {0} cм² + {0}/см² + + + шаршы миля + {0} миля² + {0} миля² + + + акр + {0} акр + {0} акр + + + ярд² + {0} ярд² + {0} ярд² шаршы фут @@ -5532,139 +5883,140 @@ For terms of use, see http://www.unicode.org/copyright.html дюйм² {0} дюйм² {0} дюйм² + {0}/дюйм² - - шаршы километр - {0} км² - {0} км² - - - шаршы метр - {0} м² - {0} м² - - - шаршы миля - {0} миля² - {0} миля² - - - ярд² - {0} ярд² - {0} ярд² + + карат + {0} КТ + {0} КТ литр/км {0} л/км {0} л/км + + л/100 км + {0} л/100 км + {0} л/100 км + - миля/гал - {0} м/гал - {0} м/гал + миля/галллон + {0} mpg + {0} mpg - - бит - {0} бит - {0} бит - - - байт - {0} байт - {0} байт - - - Гб - {0} Гб - {0} Гб - - - ГБ - {0} ГБ - {0} ГБ - - - кбит - {0} кб - {0} кб - - - кБайт - {0} кБ - {0} кБ - - - Мбит - {0} Mб - {0} Mб - - - МБайт - {0} MБ - {0} MБ + + Тбайт + {0} TБ + {0} TБ Тбит {0} Tб {0} Tб - - ТБайт - {0} TБ - {0} TБ + + Гбайт + {0} ГБ + {0} ГБ + + + Гбит + {0} Гб + {0} Гб + + + Мбайт + {0} MБ + {0} MБ + + + Мбит + {0} Mб + {0} Mб + + + кбайт + {0} кБ + {0} кБ + + + кбит + {0} кб + {0} кб + + + байт + {0} байт + {0} байт + + + бит + {0} бит + {0} бит + + + ғ. + {0} ғ. + {0} ғ. + + + жыл + {0} ж. + {0} ж. + {0}/ж. + + + ай + {0} ай + {0} ай + {0}/ай + + + апта + {0} ап. + {0} ап. + {0}/ап. - тәулік - {0} тәулік - {0} тәулік + күн + {0} күн + {0} күн + {0}/күн сағат - {0} сағат - {0} сағат - {0}/h + {0} сағ. + {0} сағ. + {0}/сағ. + + + мин. + {0} мин. + {0} мин. + {0}/мин. + + + сек. + {0} сек. + {0} сек. + {0}/с + + + мсек. + {0} мс + {0} мс мкс {0} мкс {0} мкс - - миллисекунд - {0} мс - {0} мс - - - минут - {0} мин - {0} мин - - - ай - {0} ай - {0} ай - нс {0} нс {0} нс - - секунд - {0} секунд - {0} секунд - {0}/s - - - апта - {0} апта - {0} апта - - - жыл - {0} ж. - {0} ж. - А {0} A @@ -5676,15 +6028,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мA - ом - {0} ом - {0} ом + Ом + {0} Ом + {0} Ом вольт {0} В {0} В + + ккал + {0} ккал + {0} ккал + кал {0} кал @@ -5695,21 +6052,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Кал {0} Кал - - джоуль - {0} дж - {0} дж - - - ккал - {0} ккал - {0} ккал - килоджоуль {0} кДж {0} кДж + + джоуль + {0} Дж + {0} Дж + кВт-сағ {0} кВт-сағ @@ -5720,218 +6072,227 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ГГц {0} ГГц - - герц - {0} Гц - {0} Гц + + МГц + {0} MГц + {0} MГц кГц {0} кГц {0} кГц - - МГц - {0} MГц - {0} MГц + + Гц + {0} Гц + {0} Гц - - а.б. - {0} а.б. - {0} а.б. + + км + {0} км + {0} км + {0}/км - - сантиметр - {0} см - {0} см + + метр + {0} м + {0} м + {0}/м дм {0} дм {0} дм - - фут - {0} фут - {0} фут + + см + {0} см + {0} см + {0}/см - - дюйм - {0} дюйм - {0} дюйм - - - километр - {0} км - {0} км - - - жарық жылы - {0} жж - {0} жж - - - метр - {0} м - {0} м + + мм + {0} мм + {0} мм мкм {0} мкм {0} мкм - - миля - {0} миля - {0} миля - - - миллиметр - {0} мм - {0} мм - нм {0} нм {0} нм - - тмл - {0} тмл - {0} тмл - - - пк - {0} пк - {0} пк - пикометр {0} пм {0} пм + + миля + {0} миля + {0} миля + ярд {0} ярд {0} ярд + + фут + {0} фут + {0} фут + {0}/фут + + + дюйм + {0} дюйм + {0} дюйм + {0}/дюйм + + + парсек + {0} пк + {0} пк + + + жарық жылы + {0} ж. ж. + {0} ж. ж. + + + а.б. + {0} а.б. + {0} а.б. + + + nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + люкс {0} лк {0} лк - - КТ - {0} КТ - {0} КТ - - - грамм - {0} гр - {0} гр - - - килограмм - {0} кг - {0} кг - т {0} т {0} т - - мкг - {0} мкг - {0} мкг + + кг + {0} кг + {0} кг + {0}/кг + + + грамм + {0} г + {0} г + {0}/г мг {0} мг {0} мг - - унция - {0} унция - {0} унция - - - тр.ун - {0} тр.ун - {0} тр.ун - - - фунт - {0} фунт - {0} фунт + + мкг + {0} мкг + {0} мкг тонна {0} тн {0} тн + + фунт + {0} фунт + {0} фунт + {0}/фунт + + + унц. + {0} унц. + {0} унц. + {0}/унц. + + + тр. унц. + {0} тр. унц. + {0} тр. унц. + + + карат + {0} КТ + {0} КТ + ГВт {0} ГВт {0} ГВт - - ат күші - {0} ат күші - {0} ат күші - - - киловатт - {0}кВт - {0}кВт - МВт {0} МВт {0} МВт - - мвт - {0} мвт - {0} мвт + + киловатт + {0} кВт + {0} кВт ватт {0} Вт {0} Вт + + мВт + {0} мВт + {0} мВт + + + а. к. + {0} а. к. + {0} а. к. + гектопаскаль {0} гПа {0} гПа - - сынапты бағана дюймы - {0} с.б.д. - {0} с.б.д. - - - миллибар - {0} мб - {0} мб - с.б.мм. {0} с.б.мм. {0} с.б.мм. - фт/шд - {0} фт/шд - {0} фт/шд + psi + {0} psi + {0} psi - - карат - {0} кт - {0} кт + + in Hg + {0} inHg + {0} inHg + + + мбар + {0} мб + {0} мб - километр/сағат + км/сағ {0} км/сағ {0} км/сағ @@ -5945,13 +6306,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миля/сағ {0} миля/сағ + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + Цельсий градусы {0}°C {0}°C - Фаренгейт бойынша градус + Фаренгейт градусы {0}°F {0}°F @@ -5960,20 +6331,32 @@ For terms of use, see http://www.unicode.org/copyright.html {0} К {0} К - - акро фт - {0} aк фт - {0} aк фт + + км³ + {0} км³ + {0} км³ - - сл - {0} cл - {0} cл + + м³ + {0} м³ + {0} м³ + {0}/м³ cм³ {0} cм³ {0} cм³ + {0}/см³ + + + миля³ + {0} миля³ + {0} миля³ + + + ярд³ + {0} ярд³ + {0} ярд³ фут³ @@ -5985,45 +6368,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} дюйм³ {0} дюйм³ - - текше километр - {0} км³ - {0} км³ - - - м³ - {0} м³ - {0} м³ - - - текше миля - {0} миля³ - {0} миля³ - - - ярд³ - {0} ярд³ - {0} ярд³ - - - кесе - {0} к - {0} к - - - дл - {0} дц - {0} дц - - - сқ унц - {0} сқ унц - {0} сқ унц - - - гал - {0} гал - {0} гал + + Мл + {0} Мл + {0} Мл гл @@ -6034,37 +6382,80 @@ For terms of use, see http://www.unicode.org/copyright.html литр {0} л {0} л + {0}/л - - МЛ - {0} МЛ - {0} МЛ + + дл + {0} дл + {0} дл + + + сл + {0} cл + {0} cл - мЛ - {0} мЛ - {0} мЛ + мл + {0} мл + {0} мл - - пт - {0} пт - {0} пт + + mpt + {0} mpt + {0} mpt + + + м. кесе + {0} mc + {0} mc + + + aкро-фут + {0} aкро-фут + {0} aкро-фут + + + gal + {0} gal + {0} gal + {0}/gal - кв - {0} кв - {0} кв + qt + {0} qt + {0} qt + + + пинта + {0} pt + {0} pt + + + кесе + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz - ақ - {0} ақ - {0} ақ + ас қ. + {0} ас қ. + {0} ас қ. - шқ - {0} шқ - {0} шқ + ш. қ. + {0} ш. қ. + {0} ш. қ. + + {0} Ш + {0} С + {0} О + {0} Б + @@ -6074,6 +6465,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} г {0} г + + {0}° + {0}° + {0}′ {0}′ @@ -6082,26 +6477,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} акр - {0} акр + + {0} км² + {0} км² {0} га {0} га - - {0} фут² - {0} фут² - - - {0} км² - {0} км² - {0} м² {0} м² @@ -6110,51 +6493,91 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миля² {0} миля² - - тәулік - {0} т - {0}т + + {0} акр + {0} акр - - сағат - {0} сағат - {0} сағат + + {0} фут² + {0} фут² - - миллисекунд - {0} мс - {0} мс + + л/100 км + {0} л/100 км + {0} л/100 км - - минут - {0} мин - {0} мин + + ж. + {0} ж. + {0} ж. ай {0} ай {0} ай - - секунд - {0} сек. - {0} сек. - - апта - {0} апта - {0} апта + ап. + {0} ап. + {0} ап. - - жыл - {0} ж. - {0} ж. + + күн + {0} к. + {0} к. + + + сағ. + {0} сағ. + {0} сағ. + + + мин. + {0} мин. + {0} мин. + + + с + {0} с + {0} с + + + мс + {0} мс + {0} мс + + + км + {0} км + {0} км + + + метр + {0} м + {0} м - сантиметр + см {0} см {0} см + + мм + {0} мм + {0} мм + + + {0} пм + {0} пм + + + {0} миля + {0} миля + + + {0} ярд + {0} ярд + {0} фут {0} фут @@ -6163,58 +6586,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} дюйм {0} дюйм - - километр - {0} км - {0} км - {0} ly {0} ly - - метр - {0} м - {0} м - - - {0} миля - {0} миля - - - миллиметр - {0} мм - {0} мм - - - {0} пм - {0} пм - - - {0} ярд - {0} ярд - - - грамм - {0} гр - {0} гр - - килограмм + кг {0} кг {0} кг - - {0} унция - {0} унция + + грамм + {0} г + {0} г {0} фунт {0} фунт - - {0} ат күші - {0} ат күші + + {0} унция + {0} унция {0}кВт @@ -6224,6 +6616,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Вт {0} Вт + + {0} ат күші + {0} ат күші + {0} гПа {0} гПа @@ -6237,7 +6633,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мб - километр/сағат + км/сағ {0} км/сағ {0} км/сағ @@ -6250,9 +6646,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миля/сағ - Цельсий градусы - {0}° - {0}° + °C + {0}°C + {0}°C {0}°F @@ -6271,6 +6667,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} л {0} л + + {0} Ш + {0} С + {0} О + {0} Б + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kk_Cyrl_KZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kk_KZ.xml similarity index 65% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kk_Cyrl_KZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kk_KZ.xml index 217ef8f3e0f..a5dd30c50c4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kk_Cyrl_KZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kk_KZ.xml @@ -1,15 +1,14 @@ - - - + - - + - + - + @@ -277,9 +277,9 @@ For terms of use, see http://www.unicode.org/copyright.html - + - + @@ -287,38 +287,38 @@ For terms of use, see http://www.unicode.org/copyright.html - + - + - - - + + + ពិភពលោក អាហ្វ្រិក អាមេរិក​ខាង​ជើង អាមេរិក​ខាង​ត្បូង - មហា​សមុទ្រ - អាព្រិក​ខាង​លិច + អូសេអានី + អាហ្វ្រិក​ខាង​លិច អាមេរិក​កណ្ដាល - អាព្រិក​ខាង​កើត - អាព្រិក​ខាង​ជើង - អាព្រិក​កណ្ដាល - អាព្រិក​ខាង​ត្បូង + អាហ្វ្រិកខាងកើត + អាហ្វ្រិក​ខាង​ជើង + អាហ្វ្រិក​កណ្តាល + អាហ្វ្រិកភាគខាងត្បូង អាមេរិក អាមេរិក​ភាគ​ខាង​ជើង ការ៉ាប៊ីន អាស៊ី​ខាង​កើត អាស៊ី​ខាង​ត្បូង - អាស៊ី អាគ្នេយ៍ + អាស៊ីអាគ្នេយ៍ អឺរ៉ុប​ខាង​ត្បូង អូស្ត្រាឡាស៊ី - មេឡែណេស៊ី + មេឡាណេស៊ី តំបន់​មីក្រូណេស៊ី ប៉ូលីណេស៊ី អាស៊ី @@ -331,22 +331,22 @@ For terms of use, see http://www.unicode.org/copyright.html អាមេរិក​ឡាទីន កោះ​អាសេនសិន អង់ដូរ៉ា - អេមីរ៉ែទអារ៉ាប់រួម + អារ៉ាប់រួម អាហ្វហ្គានីស្ថាន អង់ទីគ័រ និង​បាបុយដា អង់កូឡា អាល់បានី អារមេនី អង់ហ្គោឡា - អង់តាទីកា + អង់តាក់ទិក អាហ្សង់ទីន - សៅម៉ៅ អាមេរិក + សាម៉ូអាអាមេរិក អូទ្រីស អូស្ត្រាលី អារូបា កោះ​អាឡាំង អាហ៊្សែរបែហ្សង់ - បូស្ន៉ី + បូស្នី និងហឺហ្សីហ្គូវីណា បារបាដូស បង់ក្លាដេស្ហ បែលហ្ស៉ិក @@ -357,7 +357,7 @@ For terms of use, see http://www.unicode.org/copyright.html បេណាំង សង់ បាតេឡេម៉ី ប៊ឺមុយដា - ព្រុយណេ + ប្រ៊ុយណេ បូលីវី ហុល្លង់ ការ៉ាប៊ីន ប្រេស៊ីល @@ -388,11 +388,11 @@ For terms of use, see http://www.unicode.org/copyright.html កាបវែរ កូរ៉ាកៅ កោះ​គ្រីស្មាស - ស៉ីពរ៍ + ស៊ីពរ៍ សាធារណរដ្ឋឆេក អាល្លឺម៉ង់ ឌៀហ្គោហ្គាស៊ី - ហ្ស៉ីបូទី + ហ្ស៊ីបូទី ដាណឺម៉ាក ដូមីនីកា សាធារណរដ្ឋដូមីនីកែន @@ -400,7 +400,7 @@ For terms of use, see http://www.unicode.org/copyright.html ជឺតា និង​ម៉េលីឡា អេក្វាឌ័រ អេស្តូនី - អេហ្ស៉ីប + អេហ្ស៊ីប សាហារ៉ាខាងលិច អេរីទ្រា អេស្ប៉ាញ @@ -410,15 +410,15 @@ For terms of use, see http://www.unicode.org/copyright.html ហ្វីជី កោះ​ហ្វក់ឡែន កោះ​ហ្វក់ឡែន (Islas Malvinas) - មិក្រូនេស៊ី + មីក្រូនេស៊ី កោះ​ហ្វារ៉ូ បារាំង ហ្គាបុង ចក្រភព​អង់គ្លេស ច.អ. - ហ្គ្រើណាដ + ហ្គ្រីណាដា ហ្សកហ្ស៉ី - ហ្វ្វេន​ហ្គៀណា + ហ្គៀណាបារាំង ហ្គេនស៊ី ហ្គាណា ហ្គីប្រាលតា @@ -452,7 +452,7 @@ For terms of use, see http://www.unicode.org/copyright.html អ៊ីស្លង់ អ៊ីតាលី ជឺស៊ី - ហ្សាម៉ាអ៉ិគ + ចាម៉ៃកា ហ៊្សកដានី ជប៉ុន កេនយ៉ា @@ -465,7 +465,7 @@ For terms of use, see http://www.unicode.org/copyright.html កូរ៉េ​ខាង​ត្បូង គុយវ៉ែត កោះ​កៃម៉ង់ - កាហ្សាក់ស្តាង់់ + កាហ្សាក់ស្តង់់ ឡាវ លីបង់ សង់​លូសៀ @@ -484,8 +484,8 @@ For terms of use, see http://www.unicode.org/copyright.html សង់​ម៉ាទីន ម៉ាដាហ្កាស្ការ កោះ​ម៉ាស់សល - ម៉ាសេដន - ម៉ាសេដ្វាន + ម៉ាសេដូនា + ម៉ាសេដូនា (FYROM) ម៉ាលី មីយ៉ាន់ម៉ា (ភូមា) ម៉ុងហ្គោលី @@ -517,11 +517,11 @@ For terms of use, see http://www.unicode.org/copyright.html អូម៉ង់ ប៉ាណាម៉ា ប៉េរូ - ហ្វ្រេន​ប៉ូលី​ណេស៊ី - ប៉ាពូអានូវែលហ្គីណេ + ប៉ូលី​ណេស៊ី​បារាំង + ប៉ាពួញ៉ូហ្គីណេ ហ្វីលីពីន ប៉ាគីស្ថាន - ប៉ូលូញ + ប៉ូឡូញ សង់ព្យែរ និង​មីគីឡុង កោះ​ភីតខារិន ព័រតូរីកូ @@ -530,11 +530,11 @@ For terms of use, see http://www.unicode.org/copyright.html ព័រទុយហ្កាល់ ផៅឡូ ប៉ារ៉ាហ្គាយ - កាតារ - អៅលីយីង អុកស៊ីន + កាតា + តំបន់ជាយអូសេអានី រ៉េអ៊ុយ៉ុង រូម៉ានី - សើប + ស៊ែប រុស្ស៊ី រវ៉ាន់ដា អារ៉ាប៊ីសាអ៊ូឌីត @@ -553,18 +553,18 @@ For terms of use, see http://www.unicode.org/copyright.html សូម៉ាលី សូរីណាម ស៊ូដង់​ខាង​ត្បូង - សៅ​តុំ និង​ព្រីនស៊ីប៉េ + សៅ​តូមេ និង​ព្រីនស៊ីប៉េ អែលសាល់វ៉ាឌ័រ សីង​ម៉ាធីន ស៊ីរី - សូហ្ស៉ីឡង់ + ស្វាហ្ស៊ីឡង់ ទ្រីស្តង់​ដា​ចូនហា កោះ​កៃកូស និងទូក ឆាដ ដែន​បារាំង​ខាង​ត្បូង - តូហ្គូ + តូហ្គោ ថៃ - តាដហ្ស៉ីគីស្តង់ + តាជីគីស្តង់ តូខេឡៅ ទីម័រ ទីម័រ​ខាង​កើត @@ -581,7 +581,7 @@ For terms of use, see http://www.unicode.org/copyright.html កោះ​អៅឡាយីង​អាមេរិក សហរដ្ឋអាមេរិក ស.រ.អ - អ៊ុយរុយហ្គាយ + អ៊ុយរ៉ាហ្គាយ អ៊ូហ្សបេគីស្តង់ ទីក្រុងវ៉ាទីកង់ សាំង​វីនសេន និង​ឌឹ​ហ្គ្រីណាឌីនីស @@ -589,73 +589,86 @@ For terms of use, see http://www.unicode.org/copyright.html កោះ​វឺជិន​ចក្រភព​អង់គ្លេស កោះ​វឺជីន​អាមេរិក វៀតណាម - វ៉ាន់ណៅទូ + វ៉ានូអាទូ វ៉ាលីស និង​ហ្វូទូណា - សាមូអា + សា​ម៉ូអា កូសូវ៉ូ យេមែន ម៉ាយុត - អាព្រិក​ភាគ​ខាង​ត្បូង + អាហ្វ្រិកខាងត្បូង ហ្សាំប៊ី - ហ្ស៊ីមបាបវ៉េ - មិន​ស្គាល់​តំបន់ + ហ្ស៊ីមបាវ៉េ + តំបន់មិនស្គាល់ ប្រតិទិន លំដាប់​តម្រៀប រូបិយប័ណ្ណ + វដ្តម៉ោង (12 vs 24) + របៀបចុះបន្ទាត់ + ប្រព័ន្ធវាស់វែង លេខ - លេខ​ឥណ្ឌា-អារ៉ាប់ - លេខ​ឥណ្ឌា-អារ៉ាប់​ពង្រីក - លេខ​អាមេនី - លេខ​តូច​អាមេនី - លេខ​បង់ក្លាដែស - ប្រតិទិន​ពុទ្ធសាសនិក - ប្រតិទិន​ចិន - ប្រតិទិន​ dangi - លេខ​ឌីវ៉ាណាការី - លំដាប់​តម្រៀប​យូនីកូដ​លំនាំដើម - លេខ​អេត្យូពី - ប្រតិទិន​អេត្យូពី - លេខ​ទទឹង​ពេញ - លេខ​ហ្សកហ្សី - ប្រតិទិន​ហ្សកហ្ស៊ី - លេខ​ក្រិក - លេខ​តូច​ក្រិក - លេខ​ហ្កុយ៉ារាទី - លេខ​កុមុឃី - លេខ​ទសភាគ​ចិន - លេខ​ចិន​អក្សរ​កាត់ - លេខ​ហិរញ្ញវត្ថុ​ចិន​អក្សរ​កាត់ - លេខ​ចិន​អក្សរ​ពេញ - លេខ​ហិរញ្ញវត្ថុ​ចិន​អក្សរ​ពេញ - លេខ​អ៊ីស្រាអែល - ប្រតិទិន​ហេប្រិ - ប្រតិទិន​អ៊ិស្លាម - ប្រតិទិន ISO-8601 - ប្រតិទិន​ជប៉ុន - លេខ​ជប៉ុន - លេខ​ហិរញ្ញវត្ថុ​ជប៉ុន - លេខ​ខ្មែរ - លេខ Kannada - លេខ​ឡាវ - លេខ​បច្ចឹម​ប្រទេស - លេខ​មលយាល័ម - លេខ​ភូមា - លេខ​អូរីយ៉ា - ប្រតិទិន Persian - ប្រតិទិន Minguo - លេខ​រ៉ូមាំង - លេខ​តូច​រ៉ូមាំង - ស្វែងរក​ទូទៅ - លំដាប់​តម្រៀប​ស្តង់ដារ - លេខ​តាមីល - លេខ​តាមីល - លេខ​តេលុគុ - លេខ​ថៃ - លេខ​តៃប៉ិ + ប្រតិទិកពុទ្ធសាសនា + ប្រតិទិន​ចិន + ប្រតិទិនកូរ៉េ + ប្រតិទិន​អេត្យូពី + ប្រតិទិន​ហ្សកហ្ស៊ី + ប្រតិទិនហេប្រឺ + ប្រតិទិនអ៊ីស្លាម + ប្រតិទិន ISO-8601 + ប្រតិទិន​ជប៉ុន + ប្រតិទិនពែក្ស + ប្រតិទិនមីងគ័រ + លំដាប់​តម្រៀប​យូនីកូដ​លំនាំដើម + ស្វែងរក​ទូទៅ + លំដាប់​តម្រៀប​ស្តង់ដារ + ប្រព័ន្ធ 12 ម៉ោង (0–11) + ប្រព័ន្ធ 12 ម៉ោង (1–12) + ប្រព័ន្ធ 24 ម៉ោង (0–23) + ប្រព័ន្ធ 24 ម៉ោង (1–24) + របៀបចុះបន្ទាត់ខ្លី + របៀបចុះបន្ទាត់ធម្មតា + របៀបចុះបន្ទាត់តឹងរឹង + ប្រព័ន្ធវាស់វែងម៉ាទ្រិក + ប្រព័ន្ធវាស់វែងចក្រព័ទ្ធ + ប្រព័ន្ធវាស់វែងអាមេរិក + លេខ​ឥណ្ឌា-អារ៉ាប់ + លេខ​ឥណ្ឌា-អារ៉ាប់​ពង្រីក + លេខ​អាមេនី + លេខ​តូច​អាមេនី + លេខ​បង់ក្លាដែស + លេខ​ឌីវ៉ាណាការី + លេខ​អេត្យូពី + លេខ​ទទឹង​ពេញ + លេខ​ហ្សកហ្សី + លេខ​ក្រិក + លេខ​តូច​ក្រិក + លេខ​ហ្កុយ៉ារាទី + លេខ​កុមុឃី + លេខ​ទសភាគ​ចិន + លេខ​ចិន​អក្សរ​កាត់ + លេខ​ហិរញ្ញវត្ថុ​ចិន​អក្សរ​កាត់ + លេខ​ចិន​អក្សរ​ពេញ + លេខ​ហិរញ្ញវត្ថុ​ចិន​អក្សរ​ពេញ + លេខហេប្រឺ + លេខ​ជប៉ុន + លេខ​ហិរញ្ញវត្ថុ​ជប៉ុន + លេខ​ខ្មែរ + លេខកន្នដ + លេខ​ឡាវ + លេខ​បច្ចឹម​ប្រទេស + លេខ​មលយាល័ម + លេខ​ភូមា + លេខ​អូរីយ៉ា + លេខ​រ៉ូមាំង + លេខ​តូច​រ៉ូមាំង + លេខ​តាមីល + លេខ​តាមីល + លេខ​តេលុគុ + លេខ​ថៃ + លេខទីបេ រង្វាស់​ប្រវែង @@ -670,7 +683,7 @@ For terms of use, see http://www.unicode.org/copyright.html [\u17D0 ៈ \u17CB \u17C9 \u17CA \u17CD ក ខ គ ឃ ង ច ឆ ជ ឈ ញ ដ ឋ ឌ ឍ ណ ត ថ ទ ធ ន ប ផ ព ភ ម យ រ ឫ ឬ ល ឭ ឮ វ ស ហ ឡ អ {អា} ឥ ឦ ឧ {ឧក} ឩ ឪ ឯ ឰ ឱ ឲ ឳ ា \u17B7 \u17B8 \u17B9 \u17BA \u17BB \u17BC \u17BD ើ ឿ ៀ េ ែ ៃ ោ ៅ \u17C6 ះ \u17D2] - [\u17CC \u17CE \u17CF \u17D1 \u17B4 \u17B5 \u200B ឝ ឞ] + [\u17B4\u17B5\u200B \u17CC \u17CE \u17CF \u17D1 ឝ ឞ] [ក ខ គ ឃ ង ច ឆ ជ ឈ ញ ដ ឋ ឌ ឍ ណ ត ថ ទ ធ ន ប ផ ព ភ ម យ រ ឫ ឬ ល ឭ ឮ វ ស ហ ឡ អ ឥ ឦ ឧ ឩ ឪ ឯ ឰ ឱ ឳ] [\- , ៖ ! ? . ។ ៕ ‘ ’ " “ ” ( ) \[ \] \{ \} ៙ ៚] {0}… @@ -742,6 +755,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d E y G MMM y G @@ -759,6 +773,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d MMM E d MMM + MMMM d mm:ss y G y G @@ -768,6 +783,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y G d MMM y G E, d MMM y G + G y MMMM QQQ y G QQQQ y G @@ -963,7 +979,7 @@ For terms of use, see http://www.unicode.org/copyright.html អាទិត្យ - ចន្ទ + ច័ន្ទ អង្គារ ពុធ ព្រហស្បតិ៍ @@ -971,17 +987,17 @@ For terms of use, see http://www.unicode.org/copyright.html សៅរ៍ - 1 - 2 - 3 - 4 - 5 - 6 - 7 + អា + + + ពុ + ព្រ + សុ + អាទិត្យ - ចន្ទ + ច័ន្ទ អង្គារ ពុធ ព្រហស្បតិ៍ @@ -990,7 +1006,7 @@ For terms of use, see http://www.unicode.org/copyright.html អាទិត្យ - ចន្ទ + ច័ន្ទ អង្គារ ពុធ ព្រហស្បតិ៍ @@ -1001,7 +1017,7 @@ For terms of use, see http://www.unicode.org/copyright.html អាទិត្យ - ចន្ទ + ច័ន្ទ អង្គារ ពុធ ព្រហស្បតិ៍ @@ -1009,17 +1025,17 @@ For terms of use, see http://www.unicode.org/copyright.html សៅរ៍ - 1 - 2 - 3 - 4 - 5 - 6 - 7 + អា + + + ពុ + ព្រ + សុ + អាទិត្យ - ចន្ទ + ច័ន្ទ អង្គារ ពុធ ព្រហស្បតិ៍ @@ -1028,7 +1044,7 @@ For terms of use, see http://www.unicode.org/copyright.html អាទិត្យ - ចន្ទ + ច័ន្ទ អង្គារ ពុធ ព្រហស្បតិ៍ @@ -1040,56 +1056,108 @@ For terms of use, see http://www.unicode.org/copyright.html - ត្រីមាសទី ១ - ត្រីមាសទី ២ - ត្រីមាសទី ៣ - ត្រីមាសទី ៤ + ត្រីមាសទី 1 + ត្រីមាសទី 2 + ត្រីមាសទី 3 + ត្រីមាសទី 4 - - - - + 1 + 2 + 3 + 4 - ត្រីមាសទី ១ - ត្រីមាសទី ២ - ត្រីមាសទី ៣ - ត្រីមាសទី ៤ + ត្រីមាសទី 1 + ត្រីមាសទី 2 + ត្រីមាសទី 3 + ត្រីមាសទី 4 - ត្រីមាសទី ១ - ត្រីមាសទី ២ - ត្រីមាសទី ៣ - ត្រីមាសទី ៤ + ត្រីមាសទី 1 + ត្រីមាសទី 2 + ត្រីមាសទី 3 + ត្រីមាសទី 4 - - - - + 1 + 2 + 3 + 4 - ត្រីមាសទី ១ - ត្រីមាសទី ២ - ត្រីមាសទី ៣ - ត្រីមាសទី ៤ + ត្រីមាសទី 1 + ត្រីមាសទី 2 + ត្រីមាសទី 3 + ត្រីមាសទី 4 - + + អាធ្រាត្រ ព្រឹក ថ្ងៃ ល្ងាច + ព្រឹក + រសៀល + ល្ងាច + យប់ + + + កណ្តាលអាធ្រាត្រ + ព្រឹក + ថ្ងៃត្រង់ + ល្ងាច + ព្រឹក + រសៀល + ល្ងាច + យប់ + អាធ្រាត្រ ព្រឹក ថ្ងៃ ល្ងាច + ព្រឹក + រសៀល + ល្ងាច + យប់ + + + + + កណ្តាលអាធ្រាត្រ + ព្រឹក + ថ្ងៃ​ត្រង់ + ល្ងាច + ព្រឹក + រសៀល + ល្ងាច + យប់ + + + កណ្តាលអាធ្រាត្រ + ព្រឹក + ថ្ងៃ​ត្រង់ + ល្ងាច + ព្រឹក + រសៀល + ល្ងាច + យប់ + + + កណ្តាលអាធ្រាត្រ + ព្រឹក + ថ្ងៃ​ត្រង់ + ល្ងាច + ព្រឹក + រសៀល + ល្ងាច + យប់ @@ -1186,12 +1254,17 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d-M E d MMM LLL d MMM E d MMM + MMMM d mm:ss y M-y @@ -1200,6 +1273,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y d MMM y E d MMM y + MMMM y QQQ y QQQQ y @@ -1322,6 +1396,9 @@ For terms of use, see http://www.unicode.org/copyright.html ឆ្នាំ + ឆ្នាំ​មុន + ឆ្នាំ​នេះ + ឆ្នាំ​ក្រោយ ក្នុង​រយៈ​ពេល {0} ឆ្នាំ @@ -1331,6 +1408,9 @@ For terms of use, see http://www.unicode.org/copyright.html ឆ្នាំ + ឆ្នាំ​មុន + ឆ្នាំ​នេះ + ឆ្នាំ​ក្រោយ ក្នុង​រយៈ​ពេល {0} ឆ្នាំ @@ -1340,6 +1420,9 @@ For terms of use, see http://www.unicode.org/copyright.html ត្រីមាស + ត្រីមាស​មុន + ត្រីមាស​នេះ + ត្រីមាស​ក្រោយ ក្នុង​រយៈ​ពេល {0} ត្រីមាស @@ -1349,6 +1432,9 @@ For terms of use, see http://www.unicode.org/copyright.html ត្រីមាស + ត្រីមាស​មុន + ត្រីមាស​នេះ + ត្រីមាស​ក្រោយ ក្នុង​រយៈ​ពេល {0} ត្រីមាស @@ -1358,6 +1444,9 @@ For terms of use, see http://www.unicode.org/copyright.html ត្រីមាស + ត្រីមាស​មុន + ត្រីមាស​នេះ + ត្រីមាស​ក្រោយ ក្នុង​រយៈ​ពេល {0} ត្រីមាស @@ -1379,6 +1468,9 @@ For terms of use, see http://www.unicode.org/copyright.html ខែ + ខែ​មុន + ខែ​នេះ + ខែ​ក្រោយ ក្នុង​រយៈ​ពេល {0} ខែ @@ -1388,6 +1480,9 @@ For terms of use, see http://www.unicode.org/copyright.html ខែ + ខែ​មុន + ខែ​នេះ + ខែ​ក្រោយ ក្នុង​រយៈ​ពេល {0} ខែ @@ -1409,6 +1504,9 @@ For terms of use, see http://www.unicode.org/copyright.html សប្ដាហ៍ + សប្ដាហ៍​មុន + សប្ដាហ៍​នេះ + សប្ដាហ៍​ក្រោយ ក្នុង​រយៈ​ពេល {0} សប្ដាហ៍ @@ -1418,6 +1516,9 @@ For terms of use, see http://www.unicode.org/copyright.html សប្ដាហ៍ + សប្ដាហ៍​មុន + សប្ដាហ៍​នេះ + សប្ដាហ៍​ក្រោយ ក្នុង​រយៈ​ពេល {0} សប្ដាហ៍ @@ -1441,6 +1542,11 @@ For terms of use, see http://www.unicode.org/copyright.html ថ្ងៃ + ម្សិល​ម៉្ងៃ + ម្សិលមិញ + ថ្ងៃ​នេះ + ថ្ងៃស្អែក + ​ខាន​ស្អែក ក្នុង​រយៈ​ពេល {0} ថ្ងៃ @@ -1450,6 +1556,11 @@ For terms of use, see http://www.unicode.org/copyright.html ថ្ងៃ + ម្សិល​ម៉្ងៃ + ម្សិលមិញ + ថ្ងៃ​នេះ + ថ្ងៃស្អែក + ​ខាន​ស្អែក ក្នុងពេល {0} ថ្ងៃ @@ -1651,16 +1762,16 @@ For terms of use, see http://www.unicode.org/copyright.html - តំបន់​ពេល​វេលា + ល្វែងម៉ោង +HH:mm;-HH:mm - ម៉ោង​សកល{0} + ម៉ោង​សកល {0} ម៉ោង​សកល ម៉ោង​នៅ​ {0} - ម៉ោង​ពេល​ថ្ងៃ​នៅ​{0} - ម៉ោង​ស្តង់ដារ​នៅ​{0} + ម៉ោង​ពេល​ថ្ងៃ​នៅ​ {0} + ម៉ោង​ស្តង់ដារ​នៅ ​{0} {1} ({0}) ទីក្រុង​មិនស្គាល់ @@ -1696,7 +1807,7 @@ For terms of use, see http://www.unicode.org/copyright.html ផាល់ម័រ - Troll + ត្រូល ស៊ីយ៉ូវ៉ា @@ -1780,7 +1891,7 @@ For terms of use, see http://www.unicode.org/copyright.html ខូរៀ - ម៉ែលប៊ើន + ម៉េលប៊ន ហូបាត @@ -1789,10 +1900,10 @@ For terms of use, see http://www.unicode.org/copyright.html លីនឌីម៉ែន - ស៊ីតនី + ស៊ីដនី - ប្រីសបាណេ + ប្រីសប៊ែន ម៉ាកខ្វារី @@ -2227,7 +2338,7 @@ For terms of use, see http://www.unicode.org/copyright.html ម៉ាកាសសារ - យ៉ាវ៉ាភូរ៉ា + ចាយ៉ាភូរ៉ា @@ -2251,7 +2362,7 @@ For terms of use, see http://www.unicode.org/copyright.html បាកដាដ - តេហេរ៉ង់ + តេអេរ៉ង់ រីក្យាវីក @@ -2389,7 +2500,7 @@ For terms of use, see http://www.unicode.org/copyright.html រ៉ង់ហ្គូន - + ហូវ អ៊ូឡង់បាទ័រ @@ -2461,7 +2572,7 @@ For terms of use, see http://www.unicode.org/copyright.html ខានខុន - គូឡាឡាំពួ + កូឡាឡាំពួរ ឃឺតចីង @@ -2494,7 +2605,7 @@ For terms of use, see http://www.unicode.org/copyright.html អូស្លូ - កដ្ឋមណ្ឌូ + កាត់ម៉ាន់ឌូ ណៅរ៉ូ @@ -2506,7 +2617,7 @@ For terms of use, see http://www.unicode.org/copyright.html ចាថាំ - អាអ៊ុកឡែន + អកលែន ម៉ាស្កាត @@ -2529,6 +2640,9 @@ For terms of use, see http://www.unicode.org/copyright.html ព័រម៉ូរេសប៊ី + + បូហ្គែនវីល + ម៉ានីល @@ -2613,6 +2727,9 @@ For terms of use, see http://www.unicode.org/copyright.html អ៊ីឃឺត + + ឈីតា + យ៉ាកូត @@ -2631,6 +2748,9 @@ For terms of use, see http://www.unicode.org/copyright.html ម៉ាហ្គាដាន + + ស្រីតនីកូលីម + កាំឆាតកា @@ -3072,7 +3192,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ម៉ោង​នៅ​ប៊ូតង់ + ម៉ោងនៅប៊ូតាន @@ -3089,7 +3209,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ម៉ោង​នៅ​ដារូសាឡឹម​ប្រុយណេ + ម៉ោងនៅប្រ៊ុយណេដារូសាឡឹម @@ -3113,9 +3233,9 @@ For terms of use, see http://www.unicode.org/copyright.html - ម៉ោង​នៅ​ស៊ីលី - ម៉ោង​ស្តង់ដារ​នៅ​ស៊ីលី - ម៉ោង​រដូវ​ក្ដៅ​នៅ​ស៊ីលី + ម៉ោងនៅឈីលី + ម៉ោងស្តង់ដារនៅឈីលី + ម៉ោងរដូវក្តៅនៅឈីលី @@ -3206,7 +3326,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ម៉ោង​នៅ​អឺរ៉ុប​ភាគ​ខាង​កើត​ឆ្ងាយ + ម៉ោង​នៅ​ចុងភាគ​ខាង​កើត​អឺរ៉ុប​ @@ -3269,16 +3389,16 @@ For terms of use, see http://www.unicode.org/copyright.html - ម៉ោង​​នៅ​ហ្គ្រោអង់ឡង់​ខាង​កើត - ម៉ោង​​​ស្តង់ដារ​នៅ​ហ្គ្រោអង់ឡង់​​​ខាង​កើត - ម៉ោង​រដូវ​ក្ដៅ​នៅ​ហ្គ្រោអង់ឡង់​​ខាង​កើត + ម៉ោង​​នៅ​ហ្គ្រីនលែន​ខាង​កើត + ម៉ោង​​​ស្តង់ដារ​នៅ​​ហ្គ្រីនលែន​ខាង​កើត + ម៉ោង​រដូវ​ក្ដៅ​នៅ​ហ្គ្រីនលែនខាង​កើត - ម៉ោង​​នៅ​ហ្គ្រោអង់ឡង់​​ខាងលិច - ម៉ោង​​​ស្តង់ដារ​នៅ​ហ្គ្រោអង់ឡង់​​ខាង​លិច - ម៉ោង​រដូវ​ក្ដៅ​​នៅ​ហ្គ្រោអង់ឡង់​ខាង​​លិច + ម៉ោងនៅហ្គ្រីនលែនខាងលិច + ម៉ោងស្តង់ដារនៅហ្គ្រីនលែនខាងលិច + ម៉ោងរដូវក្តៅនៅហ្គ្រីនលែនខាងលិច @@ -3401,7 +3521,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ម៉ោង​នៅ​ឃឺកីស្តង់ + ម៉ោងនៅគៀរហ្គីស្តង់ @@ -3500,7 +3620,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ម៉ោង​នៅ​ណេប៉ាល់ + ម៉ោងនៅនេប៉ាល់ @@ -3617,7 +3737,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ម៉ោង​នៅ​អ៊ុយនៀន + ម៉ោងនៅរេអ៊ុយ៉ុង @@ -3683,7 +3803,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ម៉ោង​នៅ​តាស៊ីគីស្តង់ + ម៉ោងនៅតាជីគីស្តង់ @@ -3868,12 +3988,28 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0ពាន់ + ¤0​មឺុន + ¤0សែន + ¤0លាន + ¤0​ដប់​លាន + ¤0​រយលាន + ¤0​កោដិ + ¤0​ដប់​កោដិ + ¤0​រយ​កោដិ + ¤0​ពាន់​កោដិ + ¤0​មឺុន​កោដិ + ¤0​សែន​កោដិ + + {0} {1} - ឌៀរហាំ​អេមីរ៉ាតអារ៉ាប់រួម - ឌៀរហាំ អេមីរ៉ាតអារ៉ាប់រួម + ឌៀរហាំ​អារ៉ាប់រួម + ឌៀរហាំ​អារ៉ាប់រួម AED @@ -3900,10 +4036,11 @@ For terms of use, see http://www.unicode.org/copyright.html ក្វាន់ហ្សា​អង់ហ្គោឡា ក្វាន់ហ្សា​អង់ហ្គោឡា AOA + Kz - ប៉ឺហ្សូ​អាហ្សង់ទីន - ប៉ឺហ្សូ​អាហ្សង់ទីន + ប៉េសួអាហ្សង់ទីន + ប៉េសូអាហ្សង់ទីន ARS $ @@ -3927,6 +4064,7 @@ For terms of use, see http://www.unicode.org/copyright.html ម៉ាក​អាច​បម្លែង​បាន​បូស្នី ម៉ាក​អាច​បម្លែង​បាន​បូស្នី BAM + KM ដុល្លារ​បាបាដុស @@ -3971,6 +4109,7 @@ For terms of use, see http://www.unicode.org/copyright.html បូលីវីណូ​បូលីវី បូលីវីណូ​បូលីវី BOB + Bs រៀល​ប្រេស៊ីល @@ -3985,14 +4124,15 @@ For terms of use, see http://www.unicode.org/copyright.html $ - ញូលត្រឹម​ប៊ូតង់ - ញូលត្រឹម​ប៊ូតង់ + ញូលត្រឹម​ប៊ូតាន + ញូលត្រឹម​ប៊ូតាន BTN ពូឡា​បុតស្វាណា ពូឡា​បុតស្វាណា BWP + P រ៉ូបល​បេឡារុស @@ -4018,13 +4158,13 @@ For terms of use, see http://www.unicode.org/copyright.html CDF - ហ្វ្រង់ ស្វីស - ហ្វ្រង់ ស្វីស + ហ្វ្រង់ស្វីស + ហ្វ្រង់ស្វីស CHF - ប៉ឺហ្សូ​ស៊ីលី - ប៉ឺហ្សូ​ស៊ីលី + ប៉េសូឈីលី + ប៉េសូឈីលី CLP $ @@ -4035,8 +4175,8 @@ For terms of use, see http://www.unicode.org/copyright.html ¥ - ប៉ឺហ្សូ​កូឡុំប៊ី - ប៉ឺហ្សូ​កូឡុំប៊ី + ប៉េសូកូឡុំប៊ី + ប៉េសូកូឡុំប៊ី COP $ @@ -4047,13 +4187,14 @@ For terms of use, see http://www.unicode.org/copyright.html - ប៉ឺហ្សូ​អាច​បម្លែង​បាន​គុយបា - ប៉ឺហ្សូ​អាច​បម្លែង​បាន​គុយបា + ប៉េសូ​គុយបាអាច​បម្លែង​បាន + ប៉េសូ​គុយបាអាច​បម្លែង​បាន CUC + $ - ប៉ឺហ្សូ​គុយបា - ប៉ឺហ្សូ​គុយបា + ប៉េសូគុយបា + ប៉េសូគុយបា CUP $ @@ -4066,6 +4207,7 @@ For terms of use, see http://www.unicode.org/copyright.html កូរុណា​សាធារណៈ​ឆេក កូរុណា​សាធារណៈ​ឆេក CZK + ហ្វ្រង់​ជីប៊ូទី @@ -4076,10 +4218,11 @@ For terms of use, see http://www.unicode.org/copyright.html ក្រូណេ​ដាណាម៉ាក់ ក្រូណេ​ដាណាម៉ាក់ DKK + kr - ប៉ឺហ្សូ​ដូមីនីក - ប៉ឺហ្សូ​ដូមីនីក + ប៉េសូដូមីនីក + ប៉េសូដូមីនីក DOP $ @@ -4089,13 +4232,14 @@ For terms of use, see http://www.unicode.org/copyright.html DZD - ផោន​​អេហ្សីប - ផោន​​អេហ្សីប + ផោនអេហ្ស៊ីប + ផោនអេហ្ស៊ីប EGP + - ណាក់ហ្វា​អេរីត្រេ - ណាក់ហ្វា​អេរីត្រេ + ណាក់ហ្វាអេរីទ្រា + ណាក់ហ្វាអេរីទ្រា ERN @@ -4119,10 +4263,11 @@ For terms of use, see http://www.unicode.org/copyright.html ផោន​កោះ​ហ្វក់ឡែន ផោន​កោះ​ហ្វក់ឡែន FKP + £ - ផោនស្ទែរលិញ​ចក្រភព​អង់គ្លេស - ផោនស្ទែរលិញ​ចក្រភព​អង់គ្លេស + ផោនចក្រភពអង់គ្លេស + ផោនចក្រភពអង់គ្លេស £ £ @@ -4130,6 +4275,7 @@ For terms of use, see http://www.unicode.org/copyright.html ឡារី​​ហ្សកហ្ស៊ី ឡារី​​ហ្សកហ្ស៊ី GEL + ស៊ីឌី​ហ្គាណា @@ -4143,19 +4289,21 @@ For terms of use, see http://www.unicode.org/copyright.html £ - ដាឡាស៊ី​ហ្គំប៊ី - ដាឡាស៊ី​ហ្គំប៊ី + ដាឡាស៊ី​ហ្គាំប៊ី + ដាឡាស៊ី​ហ្គាំប៊ី GMD ហ្វ្រង់​ហ្គីណេ ហ្វ្រង់ ហ្គីណេ GNF + FG ហ្គីស្សាល​ក្វាតេម៉ាឡា ហ្គីស្សាល​ក្វាតេម៉ាឡា GTQ + Q ដុល្លារ​ហ្គីយ៉ាន @@ -4173,11 +4321,13 @@ For terms of use, see http://www.unicode.org/copyright.html លិមពីរ៉ា​ហុងឌូរ៉ាស លិមពីរ៉ា​ហុងឌូរ៉ាស HNL + L គូណា​ក្រូអាត គូណា​ក្រូអាត HRK + kn គោឌី​ហៃទី @@ -4188,11 +4338,13 @@ For terms of use, see http://www.unicode.org/copyright.html ហ្វូរីន​ហុងគ្រី ហ្វូរីន​ហុងគ្រី HUF + Ft - រ៉ូពីឥណ្ឌូណេស៊ី - រ៉ូពីឥណ្ឌូនេស៊ី + រូពីឥណ្ឌូណេស៊ី + រូពីឥណ្ឌូណេស៊ី IDR + Rp ស្ស៊ីហ្គែល​អ៊ីស្រាអែល @@ -4201,8 +4353,8 @@ For terms of use, see http://www.unicode.org/copyright.html - រ៉ូពី​ឥណ្ឌា - រ៉ូពី​ឥណ្ឌា + រូពីឥណ្ឌា + រូពីឥណ្ឌា @@ -4258,15 +4410,17 @@ For terms of use, see http://www.unicode.org/copyright.html ហ្វ្រង់​កូម័រ ហ្វ្រង់​កូម័រ KMF + CF - វូន​កូរ៉េ​ខាង​ជើង - វូន​កូរ៉េ​ខាង​ជើង + វ៉ុនកូរ៉េខាងជើង + វ៉ុនកូរ៉េខាងជើង KPW + - វូន​កូរ៉េ​ខាង​ត្បូង - វូន​កូរ៉េ​ខាង​ត្បូង + វ៉ុនកូរ៉េខាងត្បូង + វ៉ុនកូរ៉េខាងត្បូង @@ -4297,11 +4451,13 @@ For terms of use, see http://www.unicode.org/copyright.html ផោន​លីបង់ ផោន​លីបង់ LBP + - រ៉ូពី​ស្រីលង្ការ - រ៉ូពី​ស្រីលង្ការ + រូពីស្រីលង្កា + រូពីស្រីលង្កា LKR + Rs ដុល្លារ​លីប៊ី @@ -4338,16 +4494,18 @@ For terms of use, see http://www.unicode.org/copyright.html អារៀរី​ម៉ាឡាហ្គាស៊ី អារៀរី​ម៉ាឡាហ្គាស៊ី MGA + Ar - ឌីណា​ម៉ាសេដ្វាន - ឌីណា​ម៉ាសេដ្វាន + ឌីណាម៉ាសេដូនី + ឌីណាម៉ាសេដូនី MKD គីយ៉ាត​ភូមា គីយ៉ាត​ភូមា MMK + K ទូរីក​ម៉ុងហ្គោលី @@ -4366,9 +4524,10 @@ For terms of use, see http://www.unicode.org/copyright.html MRO - រ៉ូពី​ម៉ូរីតានី - រ៉ូពី​ម៉ូរីតានី + រូពីម៉ូរីតានី + រូពីម៉ូរីតានី MUR + Rs រ៉ូហ្វីយ៉ា​ម៉ាល់ឌីវ @@ -4381,8 +4540,8 @@ For terms of use, see http://www.unicode.org/copyright.html MWK - ប៉ីហ្សូ​ម៉ិកស៉ិក - ប៉ីហ្សូ​ម៉ិកស៉ិក + ប៉េសូម៉ិកសិក + ប៉េសូម៉ិកសិក MX$ $ @@ -4390,6 +4549,7 @@ For terms of use, see http://www.unicode.org/copyright.html រីងហ្គីត​ម៉ាឡេស៊ី រីងហ្គីត​ម៉ាឡេស៊ី MYR + RM មីទីខល​ម៉ូសំប៊ិក @@ -4412,6 +4572,7 @@ For terms of use, see http://www.unicode.org/copyright.html ខឌូបា​នីការ៉ាហ្គា ខឌូបា​នីការ៉ាហ្គា NIO + C$ ក្រូណេ​ន័រវ៉េ @@ -4419,9 +4580,10 @@ For terms of use, see http://www.unicode.org/copyright.html NOK - រ៉ូពី​នេប៉ាល់ - រ៉ូពី​នេប៉ាល់ + រូពីនេប៉ាល់ + រូពីនេប៉ាល់ NPR + Rs ដុល្លារ​នូវែលសេឡង់ @@ -4445,25 +4607,27 @@ For terms of use, see http://www.unicode.org/copyright.html PEN - គីណា​ប៉ាពូនូហ្គីណេ - គីណា​ប៉ាពូនូហ្គីណេ + គីណាប៉ាពួញូហ្គីណេ + គីណាប៉ាពួញូហ្គីណេ PGK - ប៉ឺហ្សូ​ហ្វីលីពីន - ប៉ឺហ្សូ​ហ្វីលីពីន + ប៉េសូហ្វីលីពីន + ប៉េសូហ្វីលីពីន PHP - រ៉ូពី​ប៉ាគីស្ថាន - រ៉ូពី​ប៉ាគីស្ថាន + រូពីប៉ាគីស្ថាន + រូពីប៉ាគីស្ថាន PKR + Rs ហ្សូទី​ប៉ូឡូញ ហ្សូទី​ប៉ូឡូញ PLN + ហ្គូរីនី​ប៉ារ៉ាហ្គាយ @@ -4482,19 +4646,21 @@ For terms of use, see http://www.unicode.org/copyright.html RON - ឌីណា​សើប - ឌីណា​សើប + ឌីណាស៊ែប + ឌីណាស៊ែប RSD រ៉ូបល​រុស្ស៊ី រ៉ូបល​រុស្ស៊ី RUB + ហ្វ្រង់​រវ៉ាន់ដា ហ្វ្រង់​រវ៉ាន់ដា RWF + RF រីយ៉ាល​អារ៉ាប៊ីសាអូឌីត @@ -4508,8 +4674,8 @@ For terms of use, see http://www.unicode.org/copyright.html $ - រ៉ូពី​សីស្ហែល - រ៉ូពី​សីស្ហែល + រូពី​សីស្ហែល + រូពី​សីស្ហែល SCR @@ -4521,6 +4687,7 @@ For terms of use, see http://www.unicode.org/copyright.html ក្រូណា​ស៊ុយអែត ក្រូណា​ស៊ុយអែត SEK + kr ដុល្លារ​​សិង្ហបូរី @@ -4532,6 +4699,7 @@ For terms of use, see http://www.unicode.org/copyright.html ផោន​សាំងហេឡេណា ផោន​សាំងហេឡេណា SHP + £ លីអ៊ុន​សៀរ៉ាឡេអូន @@ -4559,11 +4727,13 @@ For terms of use, see http://www.unicode.org/copyright.html ឌូប្រា​សៅតូម៉េ និងប្រាំងស៊ីប ឌូប្រា​សៅតូម៉េ និងប្រាំងស៊ីប STD + Db ផោន​ស៊ីរី ផោន​ស៊ីរី SYP + £ លីឡាងហ្គីនី​ស្វាស៊ីឡង់ @@ -4574,6 +4744,7 @@ For terms of use, see http://www.unicode.org/copyright.html បាត​ថៃ បាត​ថៃ ฿ + ฿ សូមុនី​តាហ្ស៊ីគីស្ថាន @@ -4586,20 +4757,22 @@ For terms of use, see http://www.unicode.org/copyright.html TMT - ឌីណា​ទុយនីស៊ី - ឌីណា​ទុយនីស៊ី + ឌីណាទុយនេស៊ី + ឌីណាទុយនេស៊ី TND ប៉ាអង់កា​តុងហ្គា ប៉ាអង់កា​តុងហ្គា TOP + T$ - លីរ៉ា​ទួគី - លីរ៉ា​ទួគី + លីរ៉ាទួរគី + លីរ៉ាទួរគី TRY + TL ដុល្លារ​ទ្រីនីដាដ និងតូបាហ្គោ @@ -4636,8 +4809,8 @@ For terms of use, see http://www.unicode.org/copyright.html $ - ប៉ឺហ្សូអ៊ុយរូហ្គាយ - ប៉ឺហ្សូអ៊ុយរូហ្គាយ + ប៉េសូអ៊ុយរូហ្គាយ + ប៉េសូអ៊ុយរូហ្គាយ UYU $ @@ -4650,6 +4823,7 @@ For terms of use, see http://www.unicode.org/copyright.html ប៊ូលីវ៉ា​វ៉េណេស៊ុយអេឡា ប៊ូលីវ៉ា​វ៉េណេស៊ុយអេឡា VEF + Bs ដុង​វៀតណាម @@ -4658,8 +4832,8 @@ For terms of use, see http://www.unicode.org/copyright.html - វ៉ាទូ​វ៉ានូទូ - វ៉ាទូ​វ៉ានូទូ + វ៉ាទូវ៉ានូអាទូ + វ៉ាទូវ៉ានូអាទូ VUV @@ -4668,18 +4842,19 @@ For terms of use, see http://www.unicode.org/copyright.html WST - ហ្វ្រង់ BEAC CFA - ហ្វ្រង់ BEAC CFA + ហ្វ្រង់ CFA អាហ្វ្រិកកណ្តាល + ហ្វ្រង់ CFA អាហ្វ្រិកកណ្តាល FCFA ដុល្លារ​ការ៉ាប៊ីន​ខាង​កើត ដុល្លារ​ការ៉ាប៊ីន​ខាង​កើត EC$ + $ - ហ្វ្រង់ BCEAO CFA - ហ្វ្រង់ BCEAO CFA + ហ្វ្រង់ CFA អាហ្វ្រិកខាងលិច + ហ្វ្រង់ CFA អាហ្វ្រិកខាងលិច CFA @@ -4697,17 +4872,19 @@ For terms of use, see http://www.unicode.org/copyright.html YER - រ៉ង់​អាព្រិក​ខាង​ត្បូង - រ៉ង់​អាព្រិក​ខាង​ត្បូង + រ៉ង់អាហ្វ្រិកខាងត្បូង + រ៉ង់អាហ្វ្រិកខាងត្បូង ZAR + R ក្វាចា សំប៊ី (1968–2012) - ក្វាចា​សំប៊ី - ក្វាចា​សំប៊ី + ក្វាចាហ្សំប៊ី + ក្វាចាហ្សំប៊ី ZMW + ZK @@ -4718,7 +4895,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0}​ក្នុង​មួយ​{1} + {0}​ ក្នុង​មួយ​ {1} កម្លាំង​ទំនាញ @@ -4728,6 +4905,18 @@ For terms of use, see http://www.unicode.org/copyright.html ម៉ែត្រ​ក្នុង​មួយ​វិនាទី​ការ៉េ {0} ម៉ែត្រ​ក្នុង​មួយ​វិនាទី​ការ៉េ + + រង្វិលជុំ + {0} រង្វិលជុំ + + + រ៉ាដ្យង់ + {0} រ៉ាដ្យង់ + + + ដឺក្រេ + {0} ដឺក្រេ + arcminutes {0} arcminutes @@ -4736,139 +4925,151 @@ For terms of use, see http://www.unicode.org/copyright.html arcseconds {0} arcseconds - - ដឺក្រេ - {0} ដឺក្រេ - - - រ៉ាដ្យង់ - {0} រ៉ាដ្យង់ - - - អា - {0} អា + + គីឡូម៉ែត្រ​ការ៉េ + {0} គីឡូម៉ែត្រ​ការ៉េ ហិកតា {0} ហិកតា + + ម៉ែត្រ​ការ៉េ + {0} ម៉ែត្រ​ការ៉េ + {0} ក្នុងមួយម៉ែត្រការ៉េ + សង់ទីម៉ែត្រការ៉េ {0} សង់ទីម៉ែត្រការ៉េ + {0} ក្នុងមួយសង់ទីម៉ែត្រការ៉េ + + + ម៉ាយការ៉េ + {0} ម៉ាយការ៉េ + + + អា + {0} អា + + + យ៉ាត​ការ៉េ + {0} យ៉ាត​ការ៉េ ហ្វីត​ការ៉េ {0} ហ្វីត​ការ៉េ - អ៊ិន្ឈ៍ការ៉េ - {0} អ៊ិន្ឈ៍ការ៉េ + អ៊ីញការ៉េ + {0} អ៊ីញការ៉េ + {0} ក្នុងមួយអ៊ីញការ៉េ - - គីឡូម៉ែត្រ​ការ៉េ - {0} គីឡូម៉ែត្រ​ការ៉េ - - - ម៉ែត្រ​ការ៉េ - {0} ម៉ែត្រ​ការ៉េ - - - ម៉ាយល៍​ការ៉េ - {0} ម៉ាយល៍​ការ៉េ - - - យ៉ាត​ការ៉េ - {0} យ៉ាត​ការ៉េ + + ការ៉ាត់ + {0} ការ៉ាត់ លីត្រ​ក្នុង​មួយ​គីឡូម៉ែត្រ {0} លីត្រ​ក្នុង​មួយ​គីឡូម៉ែត្រ + + លីត្រក្នុង 100 គីឡូម៉ែត្រ + {0} លីត្រក្នុង 100 គីឡូម៉ែត្រ + - ម៉ាយល៍​ក្នុង​មួយ​ហ្គាឡុង - {0} ម៉ាយល៍​ក្នុង​មួយ​ហ្គាឡុង - - - ប៊ីត - {0} ប៊ីត - - - បៃ - {0} បៃ - - - ជីកាប៊ីត - {0} ជីកាប៊ីត - - - ជីកាបៃ - {0} ជីកាបៃ - - - គីឡូប៊ីត - {0} គីឡូប៊ីត - - - គីឡូបៃ - {0} គីឡូបៃ - - - មេហ្គាប៊ីត - {0} មេហ្គាប៊ីត - - - មេហ្គាបៃ - {0} មេហ្គាបៃ - - - តេរ៉ាប៊ីត - {0} តេរ៉ាប៊ីត + ម៉ាយក្នុង​មួយ​ហ្គាឡុង + {0} ម៉ាយក្នុង​មួយ​ហ្គាឡុង តេរ៉ាបៃ {0} តេរ៉ាបៃ + + តេរ៉ាប៊ីត + {0} តេរ៉ាប៊ីត + + + ជីកាបៃ + {0} ជីកាបៃ + + + ជីកាប៊ីត + {0} ជីកាប៊ីត + + + មេហ្គាបៃ + {0} មេហ្គាបៃ + + + មេហ្គាប៊ីត + {0} មេហ្គាប៊ីត + + + គីឡូបៃ + {0} គីឡូបៃ + + + គីឡូប៊ីត + {0} គីឡូប៊ីត + + + បៃ + {0} បៃ + + + ប៊ីត + {0} ប៊ីត + + + សតវត្ស + {0} សតវត្ស + + + ឆ្នាំ + {0} ឆ្នាំ + {0} ក្នុងមួយឆ្នាំ + + + ខែ + {0} ខែ + {0} ក្នុងមួយខែ + + + សប្ដាហ៍ + {0} សប្ដាហ៍ + {0} ក្នុងមួយសប្តាហ៍ + ថ្ងៃ {0} ថ្ងៃ + {0} ក្នុងមួយថ្ងៃ ម៉ោង {0} ម៉ោង {0} ក្នុង​មួយ​ម៉ោង - - មីក្រូ​វិនាទី - {0} មីក្រូ​វិនាទី - - - មិល្លី​វិនាទី - {0} មិល្លី​វិនាទី - នាទី {0} នាទី - - - ខែ - {0} ខែ - - - ណាណូវិនាទី - {0} ណាណូវិនាទី + {0} ក្នុងមួយនាទី វិនាទី {0} វិនាទី {0} ក្នុង​មួយ​វិនាទី - - សប្ដាហ៍ - {0} សប្ដាហ៍ + + មិល្លី​វិនាទី + {0} មិល្លី​វិនាទី - - ឆ្នាំ - {0} ឆ្នាំ + + មីក្រូ​វិនាទី + {0} មីក្រូ​វិនាទី + + + ណាណូវិនាទី + {0} ណាណូវិនាទី អំពែរ @@ -4886,6 +5087,10 @@ For terms of use, see http://www.unicode.org/copyright.html វ៉ុល {0} វ៉ុល + + គីឡូកាឡូរី + {0} គីឡូកាឡូរី + កាឡូរី {0} កាឡូរី @@ -4894,17 +5099,13 @@ For terms of use, see http://www.unicode.org/copyright.html កាឡូរី {0} កាឡូរី - - joules - {0} joules - - - គីឡូកាឡូរី - {0} គីឡូកាឡូរី - - kilojoules - {0} kilojoules + គីឡូស៊ូល + {0} គីឡូស៊ូល + + + ស៊ូល + {0} ស៊ូល គីឡូវ៉ាត់​ម៉ោង @@ -4914,173 +5115,182 @@ For terms of use, see http://www.unicode.org/copyright.html ជីកាហឺត {0} ជីកាហឺត - - ហឺត - {0} ហឺត + + មេហ្គា​ហឺត + {0} មេហ្គា​ហឺត គីឡូហឺត {0} គីឡូហឺត - - មេហ្គា​ហឺត - {0} មេហ្គា​ហឺត + + ហឺត + {0} ហឺត - - ឯកតា astronomical - {0} ឯកតា astronomical + + គីឡូម៉ែត្រ + {0} គីឡូម៉ែត្រ + {0} ក្នុងមួយគីឡូម៉ែត្រ - - សង់ទីម៉ែត្រ - {0} សង់ទីម៉ែត្រ + + ម៉ែត្រ + {0} ម៉ែត្រ + {0} ក្នុងមួយម៉ែត្រ ដេសីុម៉ែត្រ {0} ដេសីុម៉ែត្រ - - ហ្វីត - {0} ហ្វីត - - - អ៊ិន្ឈ៍ - {0} អ៊ិន្ឈ៍ - - - គីឡូម៉ែត្រ - {0} គីឡូម៉ែត្រ - - - ឆ្នាំ​ពន្លឺ - {0} ឆ្នាំ​ពន្លឺ - - - ម៉ែត្រ - {0} ម៉ែត្រ - - - មីក្រូ​ម៉ែត្រ - {0} មីក្រូ​ម៉ែត្រ - - - ម៉ាយល៍ - {0} ម៉ាយល៍ + + សង់ទីម៉ែត្រ + {0} សង់ទីម៉ែត្រ + {0} ក្នុងមួយសង់ទីម៉ែត្រ មិល្លីម៉ែត្រ {0} មិល្លីម៉ែត្រ + + មីក្រូ​ម៉ែត្រ + {0} មីក្រូ​ម៉ែត្រ + ណាណូម៉ែត្រ {0} ណាណូម៉ែត្រ - - nautical miles - {0} nautical miles - - - parsecs - {0} parsecs - ពីកូម៉ែត្រ {0} ពីកូម៉ែត្រ + + ម៉ាយ + {0} ម៉ាយ + យ៉ាត {0} យ៉ាត + + ហ្វីត + {0} ហ្វីត + {0} ក្នុងមួយហ៊្វូត + + + អ៊ីញ + {0} អ៊ីញ + {0} ក្នុងមួយអ៊ីញ + + + ផាសិក + {0} ផាសិក + + + ឆ្នាំ​ពន្លឺ + {0} ឆ្នាំ​ពន្លឺ + + + ឯកតាលំហ + {0} ឯកតាលំហ + + + ណូទិកម៉ាយ + {0} ណូទិកម៉ាយ + + + ម៉ាយស្កង់ឌីណាវ + {0} ម៉ាយស្កង់ឌីណាវ + lux {0} lux - - ការ៉ាត់ - {0} ការ៉ាត់ - - - ក្រាម - {0} ក្រាម - - - គីឡូក្រាម - {0} គីឡូក្រាម - រង្វាស់​តោន {0} រង្វាស់​តោន - - មីក្រូក្រាម - {0} មីក្រូក្រាម + + គីឡូក្រាម + {0} គីឡូក្រាម + {0} ក្នុងមួយគីឡូក្រាម + + + ក្រាម + {0} ក្រាម + {0} ក្នុងមួយក្រាម មិល្លីក្រាម {0} មិល្លីក្រាម - - អោនស៍ - {0} អោនស៍ - - - ត្រយ​អោន - {0} ត្រយ​អោន - - - ផោន - {0} ផោន + + មីក្រូក្រាម + {0} មីក្រូក្រាម តោន {0} តោន + + ផោន + {0} ផោន + {0} ក្នុងមួយផោន + + + អោន + {0} អោន + {0} ក្នុងមួយអោន + + + ត្រយ​អោន + {0} ត្រយ​អោន + + + ការ៉ាត់ + {0} ការ៉ាត់ + ជីកាវ៉ាត់ {0} ជីកាវ៉ាត់ - - សេះ - {0} សេះ - - - គីឡូវ៉ាត់ - {0} គីឡូវ៉ាត់ - មេកាវ៉ាត់ {0} មេកាវ៉ាត់ - - មិល្លីវ៉ាត់ - {0} មិល្លីវ៉ាត់ + + គីឡូវ៉ាត់ + {0} គីឡូវ៉ាត់ វ៉ាត់ {0} វ៉ាត់ + + មិល្លីវ៉ាត់ + {0} មិល្លីវ៉ាត់ + + + សេះ + {0} សេះ + ហិចតូប៉ាស្កាល់ {0} ហិចតូប៉ាស្កាល់ - - អ៊ិន្ឈ៍​នៃ​បារត - {0} អ៊ិន្ឈ៍​នៃ​បារត - - - មិល្លីបារ - {0} មិល្លីបារ - មិល្លីម៉ែត្រនៃ​បារត {0} មិល្លីម៉ែត្រនៃ​បារត - ផោន​ក្នុង​មួយ​អ៊ិន្ឈ៍​ការ៉េ - {0} ផោន​ក្នុង​មួយ​អ៊ិន្ឈ៍​ការ៉េ + ផោន​ក្នុង​មួយ​អ៊ីញ​ការ៉េ + {0} ផោន​ក្នុង​មួយ​អ៊ីញ​ការ៉េ - - ការ៉ាត់ - {0} ការ៉ាត់ + + អ៊ីញនៃបារត + {0} អ៊ីញនៃបារត + + + មិល្លីបារ + {0} មិល្លីបារ គីឡូម៉ែត្រ​ក្នុង​មួយ​ម៉ោង @@ -5091,8 +5301,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ម៉ែត្រ​ក្នុង​មួយ​វិនាទី - ម៉ាយល៍​ក្នុង​មួយ​ម៉ោង - {0} ម៉ាយល៍​ក្នុង​មួយ​ម៉ោង + ម៉ាយ​ក្នុង​មួយ​ម៉ោង + {0} ម៉ាយក្នុងមួយម៉ោង + + + ណត់ + {0} ណត់ + + + ° + {0}° អង្សាសេ @@ -5106,57 +5324,39 @@ For terms of use, see http://www.unicode.org/copyright.html អង្សា​ខែលវិន {0} អង្សា​ខែលវិន - - acre-feet - {0} acre-feet - - - សង់ទីលីត្រ - {0} សង់ទីលីត្រ - - - សង់ទីម៉ែត្រ​គីប - {0} សង់ទីម៉ែត្រ​គីប - - - ហ្វីត​គីប - {0} ហ្វីត​គីប - - - អ៊ិន្ឈ៍​គីប - {0} អ៊ិន្ឈ៍​គីប - - គីឡូម៉ែត្រ​គីប - {0} គីឡូម៉ែត្រ​គីប + គីឡូម៉ែត្រ​គូប + {0} គីឡូម៉ែត្រ​គូប - ម៉ែត្រ​គីប - {0} ម៉ែត្រ​គីប + ម៉ែត្រគូប + {0} ម៉ែត្រគូប + {0} ក្នុងមួយម៉ែត្រគូប + + + សង់ទីម៉ែត្រគូប + {0} សង់ទីម៉ែត្រគូប + {0} ក្នុងមួយសង់ទីម៉ែត្រគូប - ម៉ាយល៍​គីប - {0} ម៉ាយល៍​គីប + ម៉ាយគូប + {0} ម៉ាយគូប - យ៉ាត​គីប - {0} យ៉ាត​គីប + យ៉ាតគូប + {0} យ៉ាតគូប - - ពែង - {0} ពែង + + ហ្វីត​គូប + {0} ហ្វីត​គូប - - ដេសីុលីត្រ - {0} ដេសីុលីត្រ + + អ៊ីញគូប + {0} អ៊ីញគូប - - អោន​វត្ថុ​រាវ - {0} អោន​វត្ថុ​រាវ - - - ហ្គាឡុង - {0} ហ្គាឡុង + + មេកាលីត្រ + {0} មេកាលីត្រ ហិកតូលីត្រ @@ -5165,23 +5365,53 @@ For terms of use, see http://www.unicode.org/copyright.html លីត្រ {0} លីត្រ + {0} ក្នុងមួយលីត្រ - - មេកាលីត្រ - {0} មេកាលីត្រ + + ដេសីុលីត្រ + {0} ដេសីុលីត្រ + + + សង់ទីលីត្រ + {0} សង់ទីលីត្រ មិល្លីលីត្រ {0} មិល្លីលីត្រ - - pints - {0} pints + + រង្វាស់ភីន + {0} រង្វាស់ភីន + + + រង្វាស់ពែង + {0} រង្វាស់ពែង + + + អាហ្វីត + {0} អាហ្វីត + + + ហ្គាឡុង + {0} ហ្គាឡុង + {0} ក្នុងមួយហ្គាឡុង ក្វាត {0} ក្វាត + + ភីន + {0} ភីន + + + ពែង + {0} ពែង + + + អោន​វត្ថុ​រាវ + {0} អោន​វត្ថុ​រាវ + ស្លាបព្រា​បាយ {0} ស្លាបព្រា​បាយ @@ -5190,6 +5420,12 @@ For terms of use, see http://www.unicode.org/copyright.html ស្លាបព្រា​កាហ្វេ {0} ស្លាបព្រា​កាហ្វេ + + {0}កើត + {0}ជើង + {0}ត្បូង + {0}លិច + @@ -5203,6 +5439,18 @@ For terms of use, see http://www.unicode.org/copyright.html ម៉ែត្រ​/​វិនាទី​ការ៉េ {0} m/s² + + rev + {0} rev + + + រ៉ាដ្យង់ + {0} rad + + + ដឺក្រេ + {0}° + arcmin {0} arcmins @@ -5211,139 +5459,151 @@ For terms of use, see http://www.unicode.org/copyright.html arcsecs {0} arcsecs - - ដឺក្រេ - {0}° - - - រ៉ាដ្យង់ - {0} rad - - - អា - {0} ac + + km² + {0} km² ហិកតា {0} ha + + + {0} m² + {0}/m² + cm² {0} cm² - - - ហ្វីត​ការ៉េ - {0} ft² - - - អ៊ិន្ឈ៍ការ៉េ - {0} in² - - - km² - {0} km² - - - ម៉ែត្រ​ការ៉េ - {0} m² + {0}/cm² - ម៉ាយល៍​ការ៉េ + mi² {0} mi² + + អា + {0} ac + yd² {0} yd² + + ft² + {0} ft² + + + អ៊ីញការ៉េ + {0} in² + {0}/in² + + + ការ៉ាត់ + {0} kt + L/km {0} L/km + + L/100km + {0} L/100km + - ម៉ាយល៍​/​ហ្គាឡុង + ម៉ាយ​/​ហ្គាឡុង {0} mpg - - ប៊ីត - {0} ប៊ីត - - - បៃ - {0} បៃ - - - ជីកាប៊ីត - {0} ជីកាប៊ីត - - - ជីកាបៃ - {0} ជីកាបៃ - - - គីឡូប៊ីត - {0} គីឡូប៊ីត - - - គីឡូបៃ - {0} គីឡូបៃ - - - មេហ្គាប៊ីត - {0} មេហ្គាប៊ីត - - - មេហ្គាបៃ - {0} មេហ្គាបៃ + + TB + {0} TB - តេរ៉ាប៊ីត - {0} តេរ៉ាប៊ីត + Tb + {0} Tb - - តេរ៉ាបៃ - {0} តេរ៉ាបៃ + + GB + {0} GB + + + Gb + {0} Gb + + + MB + {0} MB + + + Mb + {0} Mb + + + kB + {0} kB + + + kb + {0} kb + + + byte + {0} byte + + + bit + {0} bit + + + ស.វ + {0} ស.វ + + + ឆ្នាំ + {0} ឆ្នាំ + {0}/ឆ្នាំ + + + ខែ + {0} ខែ + {0}/ខែ + + + សប្ដាហ៍ + {0} សប្ដាហ៍ + {0}/សប្តាហ៍ ថ្ងៃ {0} ថ្ងៃ + {0}/ថ្ងៃ ម៉ោង {0} ម៉ោង {0} ក្នុង​មួយ​ម៉ោង - - មីក្រូ​វិនាទី - {0} μs - - - មិល្លី​វិនាទី - {0} ms - នាទី {0} នាទី - - - ខែ - {0} ខែ - - - ណាណូវិនាទី - {0} ns + {0}/នាទី វិនាទី {0} វិនាទី {0} ក្នុង​មួយ​វិនាទី - - សប្ដាហ៍ - {0} សប្ដាហ៍ + + មិល្លី​វិនាទី + {0} ms - - ឆ្នាំ - {0} ឆ្នាំ + + មីក្រូ​វិនាទី + {0} μs + + + ណាណូវិនាទី + {0} ns អំពែរ @@ -5361,6 +5621,10 @@ For terms of use, see http://www.unicode.org/copyright.html វ៉ុល {0} V + + kcal + {0} kcal + cal {0} cal @@ -5369,182 +5633,183 @@ For terms of use, see http://www.unicode.org/copyright.html Cal {0} Cal - - joules - {0} J - - - kcal - {0} kcal - - kilojoule + គីឡូស៊ូល {0} kJ + + ស៊ូល + {0} J + - គីឡូវ៉ាត់​ម៉ោង + kWh {0} kWh GHz {0} GHz - - Hz - {0} Hz + + MHz + {0} MHz kHz {0} kHz - - MHz - {0} MHz + + Hz + {0} Hz - - ឯកតា astronomical - {0} au + + km + {0} km + {0}/km - - សង់ទីម៉ែត្រ - {0} cm + + ម៉ែត្រ + {0} m + {0}/m dm {0} dm - - ហ្វីត - {0} ft + + cm + {0} cm + {0}/cm - - អ៊ិន្ឈ៍ - {0} in - - - km - {0} km - - - ឆ្នាំ​ពន្លឺ - {0} ly - - - ម៉ែត្រ - {0} m + + មិល្លីម៉ែត្រ + {0} មិល្លីម៉ែត្រ មីក្រូ​ម៉ែត្រ {0} µm - - ម៉ាយល៍ - {0} mi - - - mm - {0} mm - nm {0} nm - - nmi - {0} nmi - - - parsecs - {0} pc - pm {0} pm + + ម៉ាយ + {0} mi + យ៉ាត {0} yd + + ហ្វីត + {0} ft + {0}/ft + + + អ៊ីញ + {0} in + {0}/in + + + ផាសិក + {0} pc + + + ឆ្នាំ​ពន្លឺ + {0} ly + + + au + {0} au + + + nmi + {0} nmi + + + smi + {0} smi + lux {0} lx - - ការ៉ាត់ - {0} ការ៉ាត់ - - - ក្រាម - {0} g - - - kg - {0} kg - t {0} t - - µg - {0} µg + + kg + {0} kg + {0}/kg + + + ក្រាម + {0} g + {0}/g mg {0} mg - - oz - {0} oz - - - oz troy - {0} oz t - - - ផោន - {0} lb + + µg + {0} µg តោន {0} tn + + ផោន + {0} lb + {0}/lb + + + oz + {0} oz + {0}/oz + + + oz troy + {0} oz t + + + ការ៉ាត់ + {0} CD + GW {0} GW - - hp - {0} hp - - - kW - {0} kW - MW {0} MW - - មិល្លីវ៉ាត់ - {0} mW + + kW + {0} kW វ៉ាត់ {0} W + + mW + {0} mW + + + hp + {0} hp + - ហិចតូប៉ាស្កាល់ + hPa {0} hPa - - inHg - {0} inHg - - - មិល្លីបារ - {0} មិល្លីបារ - mm Hg {0} mm Hg @@ -5553,54 +5818,46 @@ For terms of use, see http://www.unicode.org/copyright.html psi {0} psi - - ការ៉ាត់ - {0} kt + + inHg + {0} inHg + + + mbar + {0} mbar - គីឡូម៉ែត្រ​/​ម៉ោង - {0} km/h + km/h + {0} kph ម៉ែត្រ​/​វិនាទី - {0} ម៉ែត្រ​/​វិនាទី + {0} m/s - ម៉ាយល៍​/​ម៉ោង - {0} ម៉ាយល៍​​ម៉ោង + ម៉ាយ​/​ម៉ោង + {0} mph + + + kn + {0} kn + + + ° + {0}° អង្សាសេ {0}°C - អង្សា​ហ្វារិនហៃ + °F {0}°F K {0} K - - acre ft - {0} ac ft - - - សង់ទីលីត្រ - {0} សង់ទីលីត្រ - - - សង់ទីម៉ែត្រ​គីប - {0} cm³ - - - ហ្វីត​គីប - {0} ft³ - - - អ៊ិន្ឈ៍​គីប - {0} in³ - km³ {0} km³ @@ -5608,30 +5865,32 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0}/cm³ mi³ {0} mi³ - យ៉ាត​គីប + យ៉ាតគូប {0} yd³ - - ពែង - {0} ពែង + + ហ្វីត​គូប + {0} ft³ - - dL - {0} dL + + អ៊ីញគូប + {0} in³ - - fl oz - {0} fl oz - - - gal - {0} gal + + ML + {0} ML hL @@ -5639,32 +5898,68 @@ For terms of use, see http://www.unicode.org/copyright.html លីត្រ - {0} l + {0} L + {0}/l - - ML - {0} ML + + dL + {0} dL + + + cL + {0} cL mL {0} mL - - pints - {0} pt + + mpt + {0} mpt + + + mcup + {0} mc + + + អាហ្វីត + {0} ac ft + + + gal + {0} gal + {0}/gal - qt + qts {0} qt + + ភីន + {0} pt + + + ពែង + {0} c + + + fl oz + {0} fl oz + - ស្លាបព្រា​បាយ + tbsp {0} tbsp - ស្លាបព្រា​កាហ្វេ + tsp {0} tsp + + {0}កើត + {0}ជើង + {0}ត្បូង + {0}លិច + @@ -5673,33 +5968,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ក.ទ. + + {0}° + {0}′ {0}″ - - {0}° - - - {0} អា + + {0} គ.ម². {0} ហ. - - {0} ហ្វ². - - - {0} គ.ម². - {0} ម². {0} ម៉². + + {0} អា + + + {0} ហ្វ². + + + L/100km + {0}L/100km + + + ឆ្នាំ + {0} ឆ្នាំ + + + ខែ + {0} ខែ + + + សប្ដាហ៍ + {0} សប្ដាហ៍ + ថ្ងៃ {0} ថ្ងៃ @@ -5708,53 +6019,29 @@ For terms of use, see http://www.unicode.org/copyright.html ម៉ោង {0} ម៉ោង - - មិល្លី​វិនាទី - {0}ms - នាទី {0} នាទី - - ខែ - {0} ខែ - វិនាទី {0} វិនាទី - - សប្ដាហ៍ - {0} សប្ដាហ៍ - - - ឆ្នាំ - {0} ឆ្នាំ - - - cm - {0} cm - - - {0}′ - - - {0}″ + + មិល្លី​វិនាទី + {0}ms km {0} km - - {0} ឆ្នាំ​ពន្លឺ - ម៉ែត្រ {0} m - - {0} ម៉. + + cm + {0} cm mm @@ -5763,25 +6050,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ព.ម. + + {0} ម៉. + {0} យ៉. - - ក្រាម - {0}g + + {0}′ + + + {0}″ + + + {0} ឆ្នាំ​ពន្លឺ kg {0}kg - - {0} អ. + + ក្រាម + {0}g {0}# - - {0} សេះ + + {0} អ. {0} គ.វ. @@ -5789,6 +6085,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0} វ. + + {0} សេះ + {0} hPa @@ -5799,7 +6098,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ម.ប. - គីឡូម៉ែត្រ​/​ម៉ោង + km/h {0} kph @@ -5823,8 +6122,14 @@ For terms of use, see http://www.unicode.org/copyright.html លីត្រ - {0}l + {0}L + + {0}កើត + {0}ជើង + {0}ត្បូង + {0}លិច + h:mm @@ -5840,14 +6145,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}, {1} {0}, {1} - {0} {1} + {0} និង {1} {0} និង​{1} {0} {1} {0} {1} - {0} និង {1} - {0} និង {1} + {0} {1} + {0} {1} {0} {1} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/km_KH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/km_KH.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/km_KH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/km_KH.xml index 1c63c9d7c20..de1f93c3955 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/km_KH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/km_KH.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kn.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kn.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kn.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kn.xml index 4221dec03d1..35ae3147631 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kn.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kn.xml @@ -1,13 +1,12 @@ - - - + @@ -59,6 +58,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಬೆಂಬಾ ಬೆನ ಬಲ್ಗೇರಿಯನ್ + ಪಶ್ಚಿಮ ಬಲೊಚಿ ಭೋಜಪುರಿ ಬಿಸ್ಲಾಮಾ ಬಿಕೊಲ್ @@ -276,6 +276,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಲಾವೋ ಮೊಂಗೋ ಲೋಝಿ + lrc ಲಿಥುವೇನಿಯನ್ ಲೂಬಾ-ಕಟಾಂಗಾ ಲುಬ-ಲುಲಾ @@ -321,6 +322,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಮಾರ್ವಾಡಿ ಬರ್ಮೀಸ್ ಎರ್‌ಝ್ಯಾ + mzn ನೌರು ನಿಯಾಪೊಲಿಟನ್ ನಮ @@ -402,6 +404,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಸಿಸಿಲಿಯನ್ ಸ್ಕೋಟ್ಸ್ ಸಿಂಧಿ + ದಕ್ಷಿಣ ಕುರ್ದಿಶ್ ಉತ್ತರ ಸಾಮಿ ಸೆನ ಸೆಲ್ಕಪ್ @@ -436,8 +439,8 @@ For terms of use, see http://www.unicode.org/copyright.html ಸುಮೇರಿಯನ್ ಸ್ವೀಡಿಷ್ ಸ್ವಹಿಲಿ + ಕಾಂಗೊ ಸ್ವಹಿಲಿ ಕೊಮೊರಿಯನ್ - ಕಾಂಗೊ ಸ್ವಹಿಲಿ ಶಾಸ್ತ್ರೀಯ ಸಿರಿಯಕ್ ಸಿರಿಯಕ್ ತಮಿಳು @@ -491,6 +494,7 @@ For terms of use, see http://www.unicode.org/copyright.html ವಲಾಮೋ ವರಾಯ್ ವಾಷೋ + ವಾರ್ಲ್‌ಪಿರಿ ವೋಲೋಫ್ ಕಲ್‌ಮೈಕ್ ಕ್ಸೋಸ @@ -687,7 +691,6 @@ For terms of use, see http://www.unicode.org/copyright.html ಆಂಗುಯಿಲ್ಲಾ ಅಲ್ಬೇನಿಯಾ ಅರ್ಮೇನಿಯಾ - ನೆದರ್‌ಲ್ಯಾಂಡ್ ಅಂಗೋಲಾ ಅಂಟಾರ್ಟಿಕಾ ಅರ್ಜೆಂಟಿನಾ @@ -784,7 +787,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಗುಯಾಮ್ ಗಿನಿ-ಬಿಸ್ಸಾವ್ ಗಯಾನಾ - ಹಾಂಕ್‌ ಕಾಂಗ್ SAR ಚೈನಾ + ಹಾಂಗ್ ಕಾಂಗ್ SAR ಚೈನಾ ಹಾಂಗ್ ಕಾಂಗ್ ಹರ್ಡ್ ದ್ವೀಪ ಮತ್ತು ಮ್ಯಾಕ್‍ಡೊನಾಲ್ಡ್ ದ್ವೀಪಗಳು ಹೊಂಡುರಾಸ್ @@ -967,6 +970,9 @@ For terms of use, see http://www.unicode.org/copyright.html ಸಂಖ್ಯೆ ವಿಂಗಡಣೆ ವಿಂಗಡಣೆ ಸಾಮರ್ಥ್ಯ ಕರೆನ್ಸಿ + ಗಂಟೆ ಚಕ್ರ (12 ವಿರುದ್ಧ 24) + ಲೈನ್ ಬ್ರೇಕ್ ಶೈಲಿ + ಮಾಪನ ವ್ಯವಸ್ಥೆ ಸಂಖ್ಯೆಗಳು ಸಮಯ ವಲಯ ಸ್ಥಳೀಯ ಭಿನ್ನತೆ @@ -974,95 +980,105 @@ For terms of use, see http://www.unicode.org/copyright.html ಖಾಸಗಿ ಬಳಕೆ - ಅರೇಬಿಕ್-ಇಂಡಿಕ್ ಅಂಕೆಗಳು - ವಿಸ್ತರಿಸಲಾದ ಅರೇಬಿಕ್-ಇಂಡಿಕ್ ಅಂಕೆಗಳು - ಆರ್ಮೇನಿಯಾದ ಸಂಖ್ಯೆಗಳು - ಅರ್ಮೇನಿಯಾದ ಸಣ್ಣಕ್ಷರ ಸಂಖ್ಯೆಗಳು - ಬಂಗಾಳಿ ಅಂಕೆಗಳು - ಸಾಂಪ್ರದಾಯಿಕ ಚೀನಾದ ಅನುಕ್ರಮ ವಿನ್ಯಾಸ - ದೊಡ್ಡ ಐದು - ಬೌದ್ಧರ ಕ್ಯಾಲೆಂಡರ್ - ಚೈನೀಸ್ ಕ್ಯಾಲೆಂಡರ್ - ಕೋಪ್ಟಿಕ್ ಕ್ಯಾಲೆಂಡರ್ - ಡಾಂಗಿ ಕ್ಯಾಲೆಂಡರ್ - ದೇವನಾಗರಿ ಅಂಕೆಗಳು - ಡಿಕ್ಷನರಿ ಅನುಕ್ರಮ ವಿನ್ಯಾಸ - ಡೀಫಾಲ್ಟ್ ಯೂನಿಕೋಡ್ ವಿಂಗಡಣೆ ಕ್ರಮ - ಇಥಿಯೋಪಿಯಾದ ಸಂಖ್ಯೆಗಳು - ಇಥಿಯೋಪಿಕ್ ಕ್ಯಾಲೆಂಡರ್ - ಇಥಿಯೋಪಿಕ್ ಅಮೆಟೆ ಅಲೆಮ್ ಕ್ಯಾಲೆಂಡರ್ - ಆರ್ಥಿಕ ಸಂಖ್ಯೆಗಳು - ಪೂರ್ಣ ಅಗಲವಾದ ಸಂಖ್ಯೆಗಳು - ಸರಳೀಕೃತ ಚೈನೀಸ್ ವಿಂಗಡಣೆ ಕ್ರಮ - GB2312 - ಜಾರ್ಜಿಯಾದ ಸಂಖ್ಯೆಗಳು - ಗ್ರೆಗೋರಿಯನ್ ಕ್ಯಾಲೆಂಡರ್ - ಗ್ರೀಕ್ ಸಂಖ್ಯೆಗಳು - ಗ್ರೀಕ್ ಲೋವರ್‌ಕೇಸ್ ಸಂಖ್ಯೆಗಳು - ಗುಜರಾತಿ ಅಂಕೆಗಳು - ಗುರ್ಮುಖಿ ಅಂಕೆಗಳು - ಚೀನಾದ ದಶಮಾಂಶ ಸಂಖ್ಯೆಗಳು - ಸರಳೀಕೃತ ಚೀನಾದ ಸಂಖ್ಯೆಗಳು - ಸರಳೀಕೃತ ಚೀನಾದ ಆರ್ಥಿಕ ಸಂಖ್ಯೆಗಳು - ಸಾಂಪ್ರದಾಯಿಕ ಚೀನಾ ಸಂಖ್ಯೆಗಳು - ಸಾಂಪ್ರದಾಯಿಕ ಚೀನಾದ ಆರ್ಥಿಕ ಸಂಖ್ಯೆಗಳು - ಹೀಬ್ರೂ ಸಂಖ್ಯೆಗಳು - ಹೀಬ್ರೂ ಕ್ಯಾಲೆಂಡರ್ - ಎಲ್ಲವನ್ನೂ ವಿಂಗಡಿಸಿ - ಭಾರತೀಯ ರಾಷ್ಟ್ರೀಯ ಕ್ಯಾಲೆಂಡರ್ - ಇಸ್ಲಾಮಿಕ್ ಕ್ಯಾಲೆಂಡರ್ - ಇಸ್ಲಾಮಿಕ್-ಸಿವಿಲ್ ಕ್ಯಾಲೆಂಡರ್ - ISO-8601 ಕ್ಯಾಲೆಂಡರ್ - ಜಪಾನೀಸ್ ಕ್ಯಾಲೆಂಡರ್ - ಜಪಾನೀ ಸಂಖ್ಯೆಗಳು - ಜಪಾನೀ ಆರ್ಥಿಕ ಸಂಖ್ಯೆಗಳು - ಖಮೆ ಅಂಕೆಗಳು - ಕನ್ನಡ ಅಂಕೆಗಳು - ಲಾವೋ ಅಂಕೆಗಳು - ಪಾಶ್ಚಿಮಾತ್ಯ ಅಂಕೆಗಳು - ಮೊದಲು ಲೋವರ್‌ಕೇಸ್ ಅನ್ನು ವಿಂಗಡಿಸಿ - ಮಲಯಾಳಂನ ಅಂಕೆಗಳು - ಮಂಗೋಲಿಯಾದ ಅಂಕೆಗಳು - ಮ್ಯಾನ್ಮಾರ್ ಅಂಕೆಗಳು - ಸ್ಥಳೀಯ ಅಂಕೆಗಳು - ಉಚ್ಛಾರಣೆಯನ್ನು ಸಾಮಾನ್ಯವಾಗಿ ವಿಂಗಡಿಸಿ - ಸಾಮಾನ್ಯ ಕೇಸ್ ಕ್ರಮವನ್ನು ವಿಂಗಡಿಸಿ - ಕೇಸ್ ಇನ್‌ಸೆಂಟೀವ್ ಅನ್ನು ವಿಂಗಡಿಸಿ - ಕಾನಾ ಅನ್ನು ಬೇರೆಯಾಗಿ ವಿಂಗಡಿಸಿ - ಸಾಮಾನ್ಯ ಸ್ಥಿತಿಯನ್ನು ಹೊರತುಪಡಿಸಿ ವಿಂಗಡಿಸಿ - ಅಂಕೆಗಳನ್ನು ಪ್ರತ್ಯೇಕವಾಗಿ ವಿಂಗಡಿಸಿ - ಚಿಹ್ನೆಗಳನ್ನು ವಿಂಗಡಿಸಿ - ಒರಿಯಾ ಅಂಕೆಗಳು - ಪರ್ಷಿಯನ್ ಕ್ಯಾಲೆಂಡರ್ - ಫೋನ್‌ಬುಕ್ ವಿಂಗಡಣೆ ಕ್ರಮ - ಉಚ್ಛಾರಣಾನುರೂಪವಾಗಿ ವಿಂಗಡಣೆ ಕ್ರಮ - ಪಿನ್‌ಯಿನ್ ವಿಂಗಡಣೆ ಕ್ರಮ - ವಿಂಗಡಣೆ ಆಧರಿಸಿದ ಅಕ್ಷರಗಳನ್ನು ಮಾತ್ರ - ಉಚ್ಛಾರಣೆ/ಕೇಸ್/ಅಳತೆ/ಕಾನಾ ವಿಂಗಡಿಸಿ - ಪರಿಷ್ಕೃತ ಅನುಕ್ರಮ ವಿನ್ಯಾಸ - ಮಿಂಗೋ ಕ್ಯಾಲೆಂಡರ್ - ರೋಮನ್ ಸಂಖ್ಯೆಗಳು - ರೋಮನ್ ಲೋವರ್‌ಕೇಸ್ ಸಂಖ್ಯೆಗಳು - ಸಾಮಾನ್ಯ- ಉದ್ದೇಶ ಹುಡುಕಾಟ - ಹಂಗುಲ್ ಆದ್ಯಕ್ಷರ ವ್ಯಂಜನದ ಮೂಲಕ ಹುಡುಕಿ - ಉಚ್ಛಾರಣೆಗಳನ್ನು ವಿಂಗಡಿಸಿ - ನಿರ್ಲಕ್ಷಿಸಿದ ಚಿಹ್ನೆಗಳನ್ನು ವಿಂಗಡಿಸಿ - ಪ್ರಮಾಣೀಕೃತ ವಿಂಗಡಣೆ ಕ್ರಮ - ಸ್ಟ್ರೋಕ್ ವಿಂಗಡಣೆ ಕ್ರಮ - ಸಾಂಪ್ರದಾಯಿಕ ತಮಿಳು ಸಂಖ್ಯೆಗಳು - ತಮಿಳು ಅಂಕೆಗಳು - ತೆಲುಗು ಅಂಕೆಗಳು - ಉಚ್ಛಾರಣೆ/ಕೇಸ್/ಅಳತೆ ವಿಂಗಡಿಸಿ - ಥಾಯ್ ಅಂಕೆಗಳು - ಟಿಬೇಟಿಯನ್ ಅಂಕೆಗಳು - ಸಾಂಪ್ರದಾಯಿಕ ವಿಂಗಡಣೆ ಕ್ರಮ - ಸಾಂಪ್ರದಾಯಿಕ ಸಂಖ್ಯೆಗಳು - ರ್ಯಾಡಿಕಲ್-ಸ್ಟ್ರೋಕ್ ವಿಂಗಡಣೆ ಕ್ರಮ - ಮೊದಲು ಅಪ್ಪರ್‌ಕೇಸ್ ಅನ್ನು ವಿಂಗಡಿಸಿ - ವಾಯ್ ಅಂಕೆಗಳು - ತಿರುಗು ಮುರುಗಾದ ಉಚ್ಛಾರಣೆಗಳನ್ನು ವಿಂಗಡಿಸಿ - ಕೇಸ್‌ ಸೆನ್ಸಿಟೀವ್‌‌ ವಿಂಗಡಿಸಿ - ಕಾನಾ ಅನ್ನು ಬೇರೆಯಾಗಿ ವಿಂಗಡಿಸಿ - ಸಾಮಾನ್ಯವಾದ ಯೂನಿಕೋಡ್ ಅನ್ನು ವಿಂಗಡಿಸಿ - ಅಂಕೆಗಳನ್ನು ಸಂಖ್ಯಾತ್ಮಕವಾಗಿ ವಿಂಗಡಿಸಿ + ಬೌದ್ಧರ ಕ್ಯಾಲೆಂಡರ್ + ಚೈನೀಸ್ ಕ್ಯಾಲೆಂಡರ್ + ಕೋಪ್ಟಿಕ್ ಕ್ಯಾಲೆಂಡರ್ + ಡಾಂಗಿ ಕ್ಯಾಲೆಂಡರ್ + ಇಥಿಯೋಪಿಕ್ ಕ್ಯಾಲೆಂಡರ್ + ಇಥಿಯೋಪಿಕ್ ಅಮೆಟೆ ಅಲೆಮ್ ಕ್ಯಾಲೆಂಡರ್ + ಗ್ರೆಗೋರಿಯನ್ ಕ್ಯಾಲೆಂಡರ್ + ಹೀಬ್ರೂ ಕ್ಯಾಲೆಂಡರ್ + ಭಾರತೀಯ ರಾಷ್ಟ್ರೀಯ ಕ್ಯಾಲೆಂಡರ್ + ಇಸ್ಲಾಮಿಕ್ ಕ್ಯಾಲೆಂಡರ್ + ಇಸ್ಲಾಮಿಕ್-ಸಿವಿಲ್ ಕ್ಯಾಲೆಂಡರ್ + ISO-8601 ಕ್ಯಾಲೆಂಡರ್ + ಜಪಾನೀಸ್ ಕ್ಯಾಲೆಂಡರ್ + ಪರ್ಷಿಯನ್ ಕ್ಯಾಲೆಂಡರ್ + ಮಿಂಗೋ ಕ್ಯಾಲೆಂಡರ್ + ಚಿಹ್ನೆಗಳನ್ನು ವಿಂಗಡಿಸಿ + ನಿರ್ಲಕ್ಷಿಸಿದ ಚಿಹ್ನೆಗಳನ್ನು ವಿಂಗಡಿಸಿ + ಉಚ್ಛಾರಣೆಯನ್ನು ಸಾಮಾನ್ಯವಾಗಿ ವಿಂಗಡಿಸಿ + ತಿರುಗು ಮುರುಗಾದ ಉಚ್ಛಾರಣೆಗಳನ್ನು ವಿಂಗಡಿಸಿ + ಮೊದಲು ಲೋವರ್‌ಕೇಸ್ ಅನ್ನು ವಿಂಗಡಿಸಿ + ಸಾಮಾನ್ಯ ಕೇಸ್ ಕ್ರಮವನ್ನು ವಿಂಗಡಿಸಿ + ಮೊದಲು ಅಪ್ಪರ್‌ಕೇಸ್ ಅನ್ನು ವಿಂಗಡಿಸಿ + ಕೇಸ್ ಇನ್‌ಸೆಂಟೀವ್ ಅನ್ನು ವಿಂಗಡಿಸಿ + ಕೇಸ್‌ ಸೆನ್ಸಿಟೀವ್‌‌ ವಿಂಗಡಿಸಿ + ಕಾನಾ ಅನ್ನು ಬೇರೆಯಾಗಿ ವಿಂಗಡಿಸಿ + ಕಾನಾ ಅನ್ನು ಬೇರೆಯಾಗಿ ವಿಂಗಡಿಸಿ + ಸಾಂಪ್ರದಾಯಿಕ ಚೀನಾದ ಅನುಕ್ರಮ ವಿನ್ಯಾಸ - ದೊಡ್ಡ ಐದು + ಡಿಕ್ಷನರಿ ಅನುಕ್ರಮ ವಿನ್ಯಾಸ + ಡೀಫಾಲ್ಟ್ ಯೂನಿಕೋಡ್ ವಿಂಗಡಣೆ ಕ್ರಮ + ಸರಳೀಕೃತ ಚೈನೀಸ್ ವಿಂಗಡಣೆ ಕ್ರಮ - GB2312 + ಫೋನ್‌ಬುಕ್ ವಿಂಗಡಣೆ ಕ್ರಮ + ಉಚ್ಛಾರಣಾನುರೂಪವಾಗಿ ವಿಂಗಡಣೆ ಕ್ರಮ + ಪಿನ್‌ಯಿನ್ ವಿಂಗಡಣೆ ಕ್ರಮ + ಪರಿಷ್ಕೃತ ಅನುಕ್ರಮ ವಿನ್ಯಾಸ + ಸಾಮಾನ್ಯ- ಉದ್ದೇಶ ಹುಡುಕಾಟ + ಹಂಗುಲ್ ಆದ್ಯಕ್ಷರ ವ್ಯಂಜನದ ಮೂಲಕ ಹುಡುಕಿ + ಪ್ರಮಾಣೀಕೃತ ವಿಂಗಡಣೆ ಕ್ರಮ + ಸ್ಟ್ರೋಕ್ ವಿಂಗಡಣೆ ಕ್ರಮ + ಸಾಂಪ್ರದಾಯಿಕ ವಿಂಗಡಣೆ ಕ್ರಮ + ರ್ಯಾಡಿಕಲ್-ಸ್ಟ್ರೋಕ್ ವಿಂಗಡಣೆ ಕ್ರಮ + ಸಾಮಾನ್ಯ ಸ್ಥಿತಿಯನ್ನು ಹೊರತುಪಡಿಸಿ ವಿಂಗಡಿಸಿ + ಸಾಮಾನ್ಯವಾದ ಯೂನಿಕೋಡ್ ಅನ್ನು ವಿಂಗಡಿಸಿ + ಅಂಕೆಗಳನ್ನು ಪ್ರತ್ಯೇಕವಾಗಿ ವಿಂಗಡಿಸಿ + ಅಂಕೆಗಳನ್ನು ಸಂಖ್ಯಾತ್ಮಕವಾಗಿ ವಿಂಗಡಿಸಿ + ಎಲ್ಲವನ್ನೂ ವಿಂಗಡಿಸಿ + ವಿಂಗಡಣೆ ಆಧರಿಸಿದ ಅಕ್ಷರಗಳನ್ನು ಮಾತ್ರ + ಉಚ್ಛಾರಣೆ/ಕೇಸ್/ಅಳತೆ/ಕಾನಾ ವಿಂಗಡಿಸಿ + ಉಚ್ಛಾರಣೆಗಳನ್ನು ವಿಂಗಡಿಸಿ + ಉಚ್ಛಾರಣೆ/ಕೇಸ್/ಅಳತೆ ವಿಂಗಡಿಸಿ + 12 ಗಂಟೆ ವ್ಯವಸ್ಥೆ (0–11) + 24 ಗಂಟೆ ವ್ಯವಸ್ಥೆ (0–23) + 24 ಗಂಟೆ ವ್ಯವಸ್ಥೆ (0–23) + 24 ಗಂಟೆ ವ್ಯವಸ್ಥೆ (1–24) + ಲೂಸ್ ಲೈನ್ ಬ್ರೇಕ್ ಶೈಲಿ + ಸಾಮಾನ್ಯ ಲೈನ್ ಬ್ರೇಕ್ ಶೈಲಿ + ಕಡ್ಡಾಯ ಲೈನ್ ಬ್ರೇಕ್ ಶೈಲಿ + ಮೆಟ್ರಿಕ್ ವ್ಯವಸ್ಥೆ + ಇಂಪಿರಿಯಲ್ ಮಾಪನ ವ್ಯವಸ್ಥೆ + ಯುಎಸ್ ಮಾಪನ ವ್ಯವಸ್ಥೆ + ಅರೇಬಿಕ್-ಇಂಡಿಕ್ ಅಂಕೆಗಳು + ವಿಸ್ತರಿಸಲಾದ ಅರೇಬಿಕ್-ಇಂಡಿಕ್ ಅಂಕೆಗಳು + ಆರ್ಮೇನಿಯಾದ ಸಂಖ್ಯೆಗಳು + ಅರ್ಮೇನಿಯಾದ ಸಣ್ಣಕ್ಷರ ಸಂಖ್ಯೆಗಳು + ಬಂಗಾಳಿ ಅಂಕೆಗಳು + ದೇವನಾಗರಿ ಅಂಕೆಗಳು + ಇಥಿಯೋಪಿಯಾದ ಸಂಖ್ಯೆಗಳು + ಆರ್ಥಿಕ ಸಂಖ್ಯೆಗಳು + ಪೂರ್ಣ ಅಗಲವಾದ ಸಂಖ್ಯೆಗಳು + ಜಾರ್ಜಿಯಾದ ಸಂಖ್ಯೆಗಳು + ಗ್ರೀಕ್ ಸಂಖ್ಯೆಗಳು + ಗ್ರೀಕ್ ಲೋವರ್‌ಕೇಸ್ ಸಂಖ್ಯೆಗಳು + ಗುಜರಾತಿ ಅಂಕೆಗಳು + ಗುರ್ಮುಖಿ ಅಂಕೆಗಳು + ಚೀನಾದ ದಶಮಾಂಶ ಸಂಖ್ಯೆಗಳು + ಸರಳೀಕೃತ ಚೀನಾದ ಸಂಖ್ಯೆಗಳು + ಸರಳೀಕೃತ ಚೀನಾದ ಆರ್ಥಿಕ ಸಂಖ್ಯೆಗಳು + ಸಾಂಪ್ರದಾಯಿಕ ಚೀನಾ ಸಂಖ್ಯೆಗಳು + ಸಾಂಪ್ರದಾಯಿಕ ಚೀನಾದ ಆರ್ಥಿಕ ಸಂಖ್ಯೆಗಳು + ಹೀಬ್ರೂ ಸಂಖ್ಯೆಗಳು + ಜಪಾನೀ ಸಂಖ್ಯೆಗಳು + ಜಪಾನೀ ಆರ್ಥಿಕ ಸಂಖ್ಯೆಗಳು + ಖಮೆ ಅಂಕೆಗಳು + ಕನ್ನಡ ಅಂಕೆಗಳು + ಲಾವೋ ಅಂಕೆಗಳು + ಪಾಶ್ಚಿಮಾತ್ಯ ಅಂಕೆಗಳು + ಮಲಯಾಳಂನ ಅಂಕೆಗಳು + ಮಂಗೋಲಿಯಾದ ಅಂಕೆಗಳು + ಮ್ಯಾನ್ಮಾರ್ ಅಂಕೆಗಳು + ಸ್ಥಳೀಯ ಅಂಕೆಗಳು + ಒರಿಯಾ ಅಂಕೆಗಳು + ರೋಮನ್ ಸಂಖ್ಯೆಗಳು + ರೋಮನ್ ಲೋವರ್‌ಕೇಸ್ ಸಂಖ್ಯೆಗಳು + ಸಾಂಪ್ರದಾಯಿಕ ತಮಿಳು ಸಂಖ್ಯೆಗಳು + ತಮಿಳು ಅಂಕೆಗಳು + ತೆಲುಗು ಅಂಕೆಗಳು + ಥಾಯ್ ಅಂಕೆಗಳು + ಟಿಬೇಟಿಯನ್ ಅಂಕೆಗಳು + ಸಾಂಪ್ರದಾಯಿಕ ಸಂಖ್ಯೆಗಳು + ವಾಯ್ ಅಂಕೆಗಳು BGN @@ -1089,7 +1105,7 @@ For terms of use, see http://www.unicode.org/copyright.html [\u0CBC ೦ ೧ ೨ ೩ ೪ ೫ ೬ ೭ ೮ ೯ ಅ ಆ ಇ ಈ ಉ ಊ ಋ ೠ ಌ ೡ ಎ ಏ ಐ ಒ ಓ ಔ ಂ ಃ ಕ ಖ ಗ ಘ ಙ ಚ ಛ ಜ ಝ ಞ ಟ ಠ ಡ ಢ ಣ ತ ಥ ದ ಧ ನ ಪ ಫ ಬ ಭ ಮ ಯ ರ ಱ ಲ ವ ಶ ಷ ಸ ಹ ಳ ಽ ಾ \u0CBF ೀ ು ೂ ೃ ೄ \u0CC6 ೇ ೈ ೊ ೋ \u0CCC \u0CCD ೕ ೖ] - [ೞ \u200C\u200D] + [\u200C\u200D ೞ] [ಅ ಆ ಇ ಈ ಉ ಊ ಋ ೠ ಌ ೡ ಎ ಏ ಐ ಒ ಓ ಔ ಕ ಖ ಗ ಘ ಙ ಚ ಛ ಜ ಝ ಞ ಟ ಠ ಡ ಢ ಣ ತ ಥ ದ ಧ ನ ಪ ಫ ಬ ಭ ಮ ಯ ರ ಱ ಲ ವ ಶ ಷ ಸ ಹ ಳ ೞ] [\- ‐ – — , ; \: ! ? . … ' ‘ ’ " “ ” ( ) \[ \] @ * / \& # ′ ″] {0}… @@ -1154,6 +1170,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d E G y G y MMM @@ -1498,18 +1515,60 @@ For terms of use, see http://www.unicode.org/copyright.html + ಮಧ್ಯ ರಾತ್ರಿ AM PM + ಬೆಳಗ್ಗೆ + ಮಧ್ಯಾಹ್ನ + ಸಂಜೆ + ರಾತ್ರಿ + ಮಧ್ಯರಾತ್ರಿ ಪೂ - + ಬೆಳಗ್ಗೆ + ಮಧ್ಯಾಹ್ನ + ಸಂಜೆ + ರಾತ್ರಿ + ಮಧ್ಯ ರಾತ್ರಿ ಪೂರ್ವಾಹ್ನ - ಮಧ್ಯಾಹ್ನ ಅಪರಾಹ್ನ + ಬೆಳಗ್ಗೆ + ಮಧ್ಯಾಹ್ನ + ಸಂಜೆ + ರಾತ್ರಿ + + + + + ಮಧ್ಯರಾತ್ರಿ + AM + PM + ಬೆಳಗ್ಗೆ + ಮಧ್ಯಾಹ್ನ + ಸಂಜೆ + ರಾತ್ರಿ + + + ಮಧ್ಯರಾತ್ರಿ + AM + PM + ಬೆಳಗ್ಗೆ + ಮಧ್ಯಾಹ್ನ + ಸಂಜೆ + ರಾತ್ರಿ + + + ಮಧ್ಯರಾತ್ರಿ + ಪೂರ್ವಾಹ್ನ + ಅಪರಾಹ್ನ + ಬೆಳಗ್ಗೆ + ಮಧ್ಯಾಹ್ನ + ಸಂಜೆ + ರಾತ್ರಿ @@ -1545,7 +1604,7 @@ For terms of use, see http://www.unicode.org/copyright.html - M/d/yy + d/M/yy @@ -1610,8 +1669,12 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L - M/d + d/M d/M, E dd-MM LLL @@ -1621,7 +1684,7 @@ For terms of use, see http://www.unicode.org/copyright.html mm:ss y M/y - M/d/y + d/M/y E, M/d/y MM-y MMM y @@ -1690,8 +1753,8 @@ For terms of use, see http://www.unicode.org/copyright.html d MMM – d MMM - E, MMM d – E, MMM d - d MMM, E – d MMM, E + MMM d, E – MMM d, E + MMM d, E – MMM d, E y–y @@ -1752,6 +1815,9 @@ For terms of use, see http://www.unicode.org/copyright.html ವರ್ಷ + ಕಳೆದ ವರ್ಷ + ಈ ವರ್ಷ + ಮುಂದಿನ ವರ್ಷ {0} ವರ್ಷದಲ್ಲಿ {0} ವರ್ಷಗಳಲ್ಲಿ @@ -1763,6 +1829,9 @@ For terms of use, see http://www.unicode.org/copyright.html ವರ್ಷ + ಕಳೆದ ವರ್ಷ + ಈ ವರ್ಷ + ಮುಂದಿನ ವರ್ಷ {0} ವರ್ಷದಲ್ಲಿ {0} ವರ್ಷಗಳಲ್ಲಿ @@ -1774,6 +1843,9 @@ For terms of use, see http://www.unicode.org/copyright.html ತ್ರೈಮಾಸಿಕ + ಕಳೆದ ತ್ರೈಮಾಸಿಕ + ಈ ತ್ರೈಮಾಸಿಕ + ಮುಂದಿನ ತ್ರೈಮಾಸಿಕ {0} ತ್ರೈಮಾಸಿಕದಲ್ಲಿ {0} ತ್ರೈಮಾಸಿಕಗಳಲ್ಲಿ @@ -1785,6 +1857,9 @@ For terms of use, see http://www.unicode.org/copyright.html ತ್ರೈಮಾಸಿಕ + ಕಳೆದ ತ್ರೈಮಾಸಿಕ + ಈ ತ್ರೈಮಾಸಿಕ + ಮುಂದಿನ ತ್ರೈಮಾಸಿಕ {0} ತ್ರೈ.ಮಾ.ದಲ್ಲಿ {0} ತ್ರೈ.ಮಾ.ಗಳಲ್ಲಿ @@ -1796,6 +1871,9 @@ For terms of use, see http://www.unicode.org/copyright.html ತ್ರೈಮಾಸಿಕ + ಕಳೆದ ತ್ರೈಮಾಸಿಕ + ಈ ತ್ರೈಮಾಸಿಕ + ಮುಂದಿನ ತ್ರೈಮಾಸಿಕ +{0} ತ್ರೈ +{0} ತ್ರೈ @@ -1821,6 +1899,9 @@ For terms of use, see http://www.unicode.org/copyright.html ತಿಂಗಳು + ಕಳೆದ ತಿಂಗಳು + ಈ ತಿಂಗಳು + ಮುಂದಿನ ತಿಂಗಳು {0} ತಿಂಗಳಲ್ಲಿ {0} ತಿಂಗಳುಗಳಲ್ಲಿ @@ -1832,6 +1913,9 @@ For terms of use, see http://www.unicode.org/copyright.html ತಿಂಗಳು + ಕಳೆದ ತಿಂಗಳು + ಈ ತಿಂಗಳು + ಮುಂದಿನ ತಿಂಗಳು {0} ತಿಂಗಳಲ್ಲಿ {0} ತಿಂಗಳುಗಳಲ್ಲಿ @@ -1857,6 +1941,9 @@ For terms of use, see http://www.unicode.org/copyright.html ವಾರ + ಕಳೆದ ವಾರ + ಈ ವಾರ + ಮುಂದಿನ ವಾರ {0} ವಾರದಲ್ಲಿ {0} ವಾರಗಳಲ್ಲಿ @@ -1868,6 +1955,9 @@ For terms of use, see http://www.unicode.org/copyright.html ವಾರ + ಕಳೆದ ವಾರ + ಈ ವಾರ + ಮುಂದಿನ ವಾರ {0} ವಾರದಲ್ಲಿ {0} ವಾರಗಳಲ್ಲಿ @@ -1895,6 +1985,11 @@ For terms of use, see http://www.unicode.org/copyright.html ದಿನ + ಮೊನ್ನೆ + ನಿನ್ನೆ + ಇಂದು + ನಾಳೆ + ನಾಡಿದ್ದು {0} ದಿನದಲ್ಲಿ {0} ದಿನಗಳಲ್ಲಿ @@ -1905,7 +2000,12 @@ For terms of use, see http://www.unicode.org/copyright.html - ದಿ + ದಿನ + ಮೊನ್ನೆ + ನಿನ್ನೆ + ಇಂದು + ನಾಳೆ + ನಾಡಿದ್ದು {0} ದಿನದಲ್ಲಿ {0} ದಿನಗಳಲ್ಲಿ @@ -2196,7 +2296,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಮ್ಯಾಕ್‍ಮುರ್ಡೊ - ರಿಯೋ ಗಯೇಗೋ + ರಿಯೋ ಗಲ್ಲೆಗೊಸ್ ಮೆಂಡೊಜಾ @@ -3005,6 +3105,9 @@ For terms of use, see http://www.unicode.org/copyright.html ಪೋರ್ಟ್ ಮೋರಿಸ್‌ಬೈ + + ಬೌಗೆನ್‍ವಿಲ್ಲೆ + ಮನಿಲಾ @@ -3089,6 +3192,9 @@ For terms of use, see http://www.unicode.org/copyright.html ಇರ್‌ಕುಟ್ಸ್ + + ಚಿಟ + ಯಕುಟ್ಸ್ಕ್ @@ -3107,6 +3213,9 @@ For terms of use, see http://www.unicode.org/copyright.html ಮಗದನ್‌ + + ಸ್ರೇದ್ನೇಕೋಲೀಮಸ್ಕ + ಕಮ್ಚತ್ಕ @@ -3848,12 +3957,12 @@ For terms of use, see http://www.unicode.org/copyright.html - ಮಧ್ಯ ಇಂಡೋನೇಷಿಯ ಸಮಯ + ಮಧ್ಯ ಇಂಡೋನೇಷಿಯಾ ಸಮಯ - ಪೂರ್ವ ಇಂಡೋನೇಷಿಯ ಸಮಯ + ಪೂರ್ವ ಇಂಡೋನೇಷಿಯಾ ಸಮಯ @@ -3920,7 +4029,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ಕ್ರಸ್ನಿಯಾರ್ಕ್ಸ್ ಸಮಯ + ಕ್ರಾಸ್‌ನೊಯಾರ್ಸ್ಕ್ ಸಮಯ ಕ್ರಾಸ್‌ನೊಯಾರ್ಸ್ಕ್ ಪ್ರಮಾಣಿತ ಸಮಯ ಕ್ರಾಸ್‌ನೊಯಾರ್ಸ್ಕ್ ಬೇಸಿಗೆ ಸಮಯ @@ -4203,7 +4312,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ಸಿಂಗಪುರ್ ಪ್ರಮಾಣಿತ ಸಮಯ + ಸಿಂಗಾಪುರ್ ಪ್ರಮಾಣಿತ ಸಮಯ @@ -4449,6 +4558,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0ಸಾ + ¤0ಸಾ + ¤00ಸಾ + ¤00ಸಾ + ¤000ಸಾ + ¤000ಸಾ + ¤0ಮಿ + ¤0ಮಿ + ¤00ಮಿ + ¤00ಮಿ + ¤000ಮಿ + ¤000ಮಿ + ¤0ಬಿ + ¤0ಬಿ + ¤00ಬಿ + ¤00ಬಿ + ¤000ಬಿ + ¤000ಬಿ + ¤0ಟ್ರಿ + ¤0ಟ್ರಿ + ¤00ಟ್ರಿ + ¤00ಟ್ರಿ + ¤000ಟ್ರಿ + ¤000ಟ್ರಿ + + {0} {1} {0} {1} @@ -4462,7 +4599,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಅಫ್‌ಘನ್ ಅಫಗಾನಿ ಅಫ್‌ಘನ್ ಅಫಗಾನಿ - ಅಫ್‌ಘನ್ ಅಫಗಾನಿ + ಅಫ್‌ಘನ್ ಅಫಗಾನಿಗಳು AFN @@ -4474,7 +4611,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಅರ್ಮೆನಿಯನ್ ಡ್ರಾಮ್ ಅರ್ಮೆನಿಯನ್ ಡ್ರಾಮ್ - ಅರ್‌ಮೇನಿಯನ್ ಡ್ರಾಮ್ + ಅರ್‌ಮೇನಿಯನ್ ಡ್ರಾಮ್‌ಗಳು AMD @@ -4488,6 +4625,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಅಂಗೋಲಾದ ಕ್ವಾನ್ಝಾ ಅಂಗೋಲಾದ ಕ್ವಾನ್ಝಾಗಳು AOA + Kz ಅರ್ಜೆಂಟಿನಾ ಪೆಸೊ @@ -4520,6 +4658,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಬೋಸ್ನಿಯಾ-ಹರ್ಜ್‌ಗೋವಿನ ಪರಿವರ್ತನೀಯ ಗುರುತು ಬೋಸ್ನಿಯಾ-ಹರ್ಜ್‌ಗೋವಿನ ಪರಿವರ್ತನೀಯ ಗುರುತುಗಳು BAM + KM ಬರ್ಬಾಡಿಯನ್ ಡಾಲರ್ @@ -4531,7 +4670,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಬಾಂಗ್ಲಾದೇಶದ ಟಾಕಾ ಬಾಂಗ್ಲಾದೇಶದ ಟಾಕಾ - ಬಾಂಗ್ಲಾದೇಶದ ಟಾಕಾ + ಬಾಂಗ್ಲಾದೇಶದ ಟಾಕಾಗಳು BDT @@ -4563,7 +4702,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಬ್ರೂನಿ ಡಾಲರ್ ಬ್ರೂನಿ ಡಾಲರ್ - ಬ್ರೂನಿ ಡಾಲರ್ + ಬ್ರೂನಿ ಡಾಲರ್‌ಗಳು BND $ @@ -4572,6 +4711,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಬೊಲಿವಿಯಾದ ಬೊಲಿವಿಯಾನೊ ಬೊಲಿವಿಯಾದ ಬೊಲಿವಿಯಾನೊಗಳು BOB + Bs ಬ್ರೆಜಿಲಿಯನ್‌ ರಿಯಲ್ @@ -4590,7 +4730,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಭೂತಾನೀಸ್ ನುಲ್ತರಮ್ ಭೂತಾನೀಸ್ ನುಲ್ತರಮ್ - ಭೂತಾನೀಸ್ ನುಲ್ತರಮ್ + ಭೂತಾನೀಸ್ ನುಲ್ತರಮ್‌ಗಳು BTN @@ -4598,6 +4738,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಬೋಟ್ಸ್‌ವಾನನ್ ಪುಲಾ ಬೋಟ್ಸ್‌ವಾನನ್ ಪುಲಾಗಳು BWP + P ಬೆಲಾರುಸಿಯನ್ ರೂಬಲ್ @@ -4649,7 +4790,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಕೊಲೊಂಬಿಯೋದ ಪೆಸೊ ಕೊಲೊಂಬಿಯೋದ ಪೆಸೊ - ಕೊಲೊಂಬಿಯೋದ ಪೆಸೊ + ಕೊಲೊಂಬಿಯೋದ ಪೆಸೊಗಳು COP $ @@ -4665,6 +4806,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಕ್ಯೂಬಾದ ಪರಿವರ್ತನೀಯ ಪೆಸೊ ಕ್ಯೂಬಾದ ಪರಿವರ್ತನೀಯ ಪೆಸೊಗಳು CUC + $ ಕ್ಯೂಬಾದ ಪೆಸೊ @@ -4684,6 +4826,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಝೆಕ್ ಗಣರಾಜ್ಯ ಕೊರೂನ ಝೆಕ್ ಗಣರಾಜ್ಯ ಕೊರೂನಗಳು CZK + ಜಿಬೊಟಿಯನ್ ಫ್ರಾಂಕ್ @@ -4696,6 +4839,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಡ್ಯಾನಿಶ್ ಕ್ರೋನ್ ಡ್ಯಾನಿಶ್ ಕ್ರೋನ್ DKK + kr ಡೊಮಿನಿಕನ್ ಪೆಸೊ @@ -4715,6 +4859,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಈಜಿಪ್ಷಿಯನ್ ಪೌಂಡ್‍ ಈಜಿಪ್ಷಿಯನ್ ಪೌಂಡ್‍ಗಳು EGP + ಎರಿತ್ರಿಯನ್ ನಕ್ಫಾ @@ -4747,11 +4892,12 @@ For terms of use, see http://www.unicode.org/copyright.html ಫಾಲ್ಕ್‌ಲ್ಯಾಂಡ್ ದ್ವೀಪಗಳ ಪೌಂಡ್ ಫಾಲ್ಕ್‌ಲ್ಯಾಂಡ್ ದ್ವೀಪಗಳ ಪೌಂಡ್‍ಗಳು FKP + £ - ಬ್ರಿಟೀಷ್ ಪೌಂಡ್ ಸ್ಟೆರ್ಲಿಂಗ್ + ಬ್ರಿಟೀಷ್ ಪೌಂಡ್ ಬ್ರಿಟೀಷ್ ಪೌಂಡ್ ಸ್ಟೆರ್ಲಿಂಗ್ - ಬ್ರಿಟೀಷ್ ಪೌಂಡ್ ಸ್ಟೆರ್ಲಿಂಗ್ + ಬ್ರಿಟೀಷ್ ಪೌಂಡ್‍ಗಳು £ £ @@ -4760,6 +4906,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಜಾರ್ಜಿಯಾದ ಲಾರಿ ಜಾರ್ಜಿಯಾದ ಲಾರಿ GEL + ಘಾನಾದ ಸೆದಿ @@ -4785,12 +4932,14 @@ For terms of use, see http://www.unicode.org/copyright.html ಗಿನಿಯನ್ ಫ್ರಾಂಕ್ ಗಿನಿಯನ್ ಫ್ರಾಂಕ್‌ಗಳು GNF + FG ಗ್ವಾಟೆಮಾಲಾದ ಕುಯಿಟ್ಸಲ್‌‌ ಗ್ವಾಟೆಮಾಲಾದ ಕುಯಿಟ್ಸಲ್‌‌ ಗ್ವಾಟೆಮಾಲಾದ ಕುಯಿಟ್ಸಲ್‌‌‍ಗಳು GTQ + Q ಗುಯಾನೀಸ್‌ ಡಾಲರ್‌ @@ -4802,7 +4951,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಹಾಂಗ್ ಕಾಂಗ್ ಡಾಲರ್ ಹಾಂಗ್ ಕಾಂಗ್ ಡಾಲರ್ - ಹಾಂಗ್ ಕಾಂಗ್ ಡಾಲರ್ + ಹಾಂಗ್ ಕಾಂಗ್ ಡಾಲರ್‌ಗಳು HK$ $ @@ -4811,12 +4960,14 @@ For terms of use, see http://www.unicode.org/copyright.html ಹೊಂಡುರಾನ್‌ ಲೆಂಪಿರಾ ಹೊಂಡುರಾನ್‌ ಲೆಂಪಿರಾಗಳು HNL + L ಕ್ರೊಯೆಷ್ಯಾದ ಕೂನಾ ಕ್ರೊಯೆಷ್ಯಾದ ಕೂನಾ ಕ್ರೊಯೆಷ್ಯಾದ ಕೂನಾಗಳು HRK + kn ಹೈಟಿಯ ಗೋರ್ದೆ @@ -4829,12 +4980,14 @@ For terms of use, see http://www.unicode.org/copyright.html ಹಂಗೇರಿಯನ್ ಫೋರಿಂಟ್ ಹಂಗೇರಿಯನ್ ಫೋರಿಂಟ್‍ಗಳು HUF + Ft ಇಂಡೊನೇಷ್ಯಾ ರುಪೈ ಇಂಡೊನೇಷ್ಯಾ ರುಪೈ ಇಂಡೊನೇಷ್ಯಾ ರುಪೈ IDR + Rp ಇಸ್ರೇಲಿ ನ್ಯೂ ಶೇಖಲ್ @@ -4844,9 +4997,9 @@ For terms of use, see http://www.unicode.org/copyright.html - ಭಾರತೀಯ ರುಪಾಯಿ - ಭಾರತೀಯ ರುಪಾಯಿ - ಭಾರತೀಯ ರುಪಾಯಿ + ಭಾರತೀಯ ರೂಪಾಯಿ + ಭಾರತೀಯ ರೂಪಾಯಿ + ಭಾರತೀಯ ರೂಪಾಯಿಗಳು @@ -4859,7 +5012,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಇರಾನಿಯನ್ ರಿಯಲ್ ಇರಾನಿಯನ್ ರಿಯಲ್ - ಇರಾನಿಯನ್ ರಿಯಲ್ + ಇರಾನಿಯನ್ ರಿಯಲ್‌ಗಳು IRR @@ -4867,6 +5020,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಐಸ್‌ಲ್ಯಾಂಡಿಕ್ ಕ್ರೋನಾ ಐಸ್‌ಲ್ಯಾಂಡಿಕ್ ಕ್ರೋನಾ ISK + kr ಜಮೈಕನ್ ಡಾಲರ್ @@ -4903,7 +5057,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಕಾಂಬೋಡಿಯನ್ ರಿಯಲ್ ಕಾಂಬೋಡಿಯನ್ ರಿಯಲ್ - ಕಾಂಬೋಡಿಯನ್ ರಿಯಲ್ + ಕಾಂಬೋಡಿಯನ್ ರಿಯಲ್‍ಗಳು KHR @@ -4912,12 +5066,14 @@ For terms of use, see http://www.unicode.org/copyright.html ಕೊಮೊರಿಯನ್ ಫ್ರಾಂಕ್ ಕೊಮೊರಿಯನ್ ಫ್ರಾಂಕ್‍ಗಳು KMF + CF ಉತ್ತರ ಕೊರಿಯನ್ ವೋನ್ ಉತ್ತರ ಕೊರಿಯನ್ ವೋನ್ ಉತ್ತರ ಕೊರಿಯನ್ ವೋನ್ KPW + ದಕ್ಷಿಣ ಕೊರಿಯನ್ ವೊನ್ @@ -4949,7 +5105,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಲೋಟಿಯನ್ ಕಿಪ್ ಲೋಟಿಯನ್ ಕಿಪ್ - ಲೋಟಿಯನ್ ಕಿಪ್ + ಲೋಟಿಯನ್ ಕಿಪ್‍ಗಳು LAK @@ -4958,12 +5114,14 @@ For terms of use, see http://www.unicode.org/copyright.html ಲೆಬೆನೀಸ್ ಪೌಂಡ್ ಲೆಬೆನೀಸ್ ಪೌಂಡ್‍ಗಳು LBP + ಶ್ರೀಲಂಕಾದ ರುಪೀ ಶ್ರೀಲಂಕಾದ ರುಪೀ - ಶ್ರೀಲಂಕಾದ ರುಪೀ + ಶ್ರೀಲಂಕಾದ ರುಪೀಗಳು LKR + Rs ಲಿಬೇರಿಯನ್ ಡಾಲರ್ @@ -5010,6 +5168,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಮಲಗಾಸಿ ಅರಿಯಾರಿ ಮಲಗಾಸಿ ಅರಿಯಾರಿಗಳು MGA + Ar ಮೆಸಡೋನಿಯನ್ ದಿನಾರ್ @@ -5020,20 +5179,21 @@ For terms of use, see http://www.unicode.org/copyright.html ಮ್ಯಾನ್ಮಾರ್ ಕ್ಯಾಟ್ ಮ್ಯಾನ್ಮಾರ್ ಕ್ಯಾಟ್ - ಮ್ಯಾನ್ಮಾರ್ ಕ್ಯಾಟ್ + ಮ್ಯಾನ್ಮಾರ್ ಕ್ಯಾಟ್‍ಗಳು MMK + K ಮಂಗೋಲಿಯಾದ ತುಗ್ರಿಕ್‌‌ ಮಂಗೋಲಿಯಾದ ತುಗ್ರಿಕ್‌‌ - ಮಂಗೋಲಿಯಾದ ತುಗ್ರಿಕ್‌‌ + ಮಂಗೋಲಿಯಾದ ತುಗ್ರಿಕ್‌‌‌ಗಳು MNT ಮಕ್ಯೂದ ಪಟಕಾ ಮಕ್ಯೂದ ಪಟಕಾ - ಮಕ್ಯೂದ ಪಟಕಾ + ಮಕ್ಯೂದ ಪಟಕಾಗಳು MOP @@ -5047,11 +5207,12 @@ For terms of use, see http://www.unicode.org/copyright.html ಮಾರಿಷಿಯನ್ ರುಪಿ ಮಾರಿಷಿಯನ್ ರುಪಿಗಳು MUR + Rs ಮಾಲ್ಡೀವಿಯನ್ ರುಫಿಯಾ ಮಾಲ್ಡೀವಿಯನ್ ರುಫಿಯಾ - ಮಾಲ್ಡೀವಿಯನ್ ರುಫಿಯಾ + ಮಾಲ್ಡೀವಿಯನ್ ರುಫಿಯಾಗಳು MVR @@ -5070,8 +5231,9 @@ For terms of use, see http://www.unicode.org/copyright.html ಮಲೇಶಿಯನ್ ರಿಂಗಿಟ್ಟ್ ಮಲೇಶಿಯನ್ ರಿಂಗಿಟ್ಟ್ - ಮಲೇಶಿಯನ್ ರಿಂಗಿಟ್ಟ್ + ಮಲೇಶಿಯನ್ ರಿಂಗಿಟ್ಟ್‌ಗಳು MYR + RM ಮೊಝಾಂಬಿಕನ್ ಮೆಟಿಕಲ್ @@ -5098,18 +5260,21 @@ For terms of use, see http://www.unicode.org/copyright.html ನಿಕಾರಗ್ವಾದ ಕರ್ದೊಬಾ ನಿಕಾರಗ್ವಾದ ಕರ್ದೊಬಾಗಳು NIO + C$ ನಾರ್ವೇಯ ಕ್ರೋನ್ ನಾರ್ವೇಯ ಕ್ರೋನ್ ನಾರ್ವೇಯ ಕ್ರೋನರ್ NOK + kr ನೇಪಾಳದ ರುಪೀ ನೇಪಾಳದ ರುಪೀ - ನೇಪಾಳದ ರುಪೀ + ನೇಪಾಳದ ರುಪೀಗಳು NPR + Rs ನ್ಯೂಜಿಲ್ಯಾಂಡ್ ಡಾಲರ್ @@ -5145,21 +5310,23 @@ For terms of use, see http://www.unicode.org/copyright.html ಫಿಲಿಪ್ಪೈನ್ ಪೆಸೊ ಫಿಲಿಪ್ಪೈನ್ ಪೆಸೊ - ಫಿಲಿಪ್ಪೈನ್ ಪೆಸೊ + ಫಿಲಿಪ್ಪೈನ್ ಪೆಸೊಗಳು PHP ಪಾಕಿಸ್ತಾನದ ರುಪೀ ಪಾಕಿಸ್ತಾನದ ರುಪೀ - ಪಾಕಿಸ್ತಾನದ ರುಪೀ + ಪಾಕಿಸ್ತಾನದ ರುಪೀಗಳು PKR + Rs ಪೊಲಿಶ್ ಝ್ಲೋಟಿ ಪೊಲಿಶ್ ಝ್ಲೋಟಿ ಪೊಲಿಶ್ ಝ್ಲೋಟಿಗಳು PLN + ಪೆರುಗ್ವೇಯ ಗ್ವಾರನೀ @@ -5191,12 +5358,14 @@ For terms of use, see http://www.unicode.org/copyright.html ರಶಿಯನ್ ರೂಬಲ್ ರಶಿಯನ್ ರೂಬಲ್‍ಗಳು RUB + ರುವಾಂಡನ್ ಫ್ರಾಂಕ್ ರುವಾಂಡನ್ ಫ್ರಾಂಕ್ ರುವಾಂಡನ್ ಫ್ರಾಂಕ್‍ಗಳು RWF + RF ಸೌದಿ ರಿಯಾಲ್ @@ -5228,11 +5397,12 @@ For terms of use, see http://www.unicode.org/copyright.html ಸ್ವೀಡಿಷ್ ಕ್ರೋನಾ ಸ್ವೀಡಿಶ್ ಕ್ರೋನರ್ SEK + kr ಸಿಂಗಾಪುರ್ ಡಾಲರ್‌ ಸಿಂಗಾಪುರ್ ಡಾಲರ್‌ - ಸಿಂಗಾಪುರ್ ಡಾಲರ್‌ + ಸಿಂಗಾಪುರ್ ಡಾಲರ್‌‌ಗಳು SGD $ @@ -5241,6 +5411,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಸೇಂಟ್ ಹೆಲೇನಾ ಪೌಂಡ್ ಸೇಂಟ್ ಹೆಲೇನಾ ಪೌಂಡ್ SHP + £ ಸಿಯೆರಾ ಲಿಯೋನಿಯನ್ ಲಿಯೋನ್ @@ -5273,17 +5444,19 @@ For terms of use, see http://www.unicode.org/copyright.html ಸಾವೊ ಟೋಮ್ ಮತ್ತು ಪ್ರಿನ್ಸಿಪ್ ದೊಬ್ರಾ ಸಾವೊ ಟೋಮ್ ಮತ್ತು ಪ್ರಿನ್ಸಿಪ್ ದೊಬ್ರಾಗಳು STD + Db ಸಿರಿಯನ್ ಪೌಂಡ್ ಸಿರಿಯನ್ ಪೌಂಡ್ ಸಿರಿಯನ್ ಪೌಂಡ್‌ಗಳು SYP + £ ಸ್ವಾಜಿ ಲಿಲಂಗೆನಿ ಸ್ವಾಜಿ ಲಿಲಂಗೆನಿ - ಸ್ವಾಜಿ ಲಿಲಂಗೆನಿಗಳು + ಸ್ವಾಜಿ ಎಮಲಂಗೆನಿ SZL @@ -5291,6 +5464,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಥಾಯ್ ಬಹ್ತ್ ಥಾಯ್ ಬಹ್ತ್ ฿ + ฿ ತಜಕಿಸ್ತಾನಿ ಸೊಮೋನಿ @@ -5315,6 +5489,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಟೊಂಗಾ ಪಾಂಗ ಟೊಂಗಾ ಪಾಂಗ TOP + T$ ಟರ್ಕಿಶ್ ಲಿರಾ @@ -5322,6 +5497,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಟರ್ಕಿಶ್ ಲಿರಾ TRY + TL ಟ್ರಿನಿಡಾಡ್ ಮತ್ತು ಟೊಬಾಗೊ ಡಾಲರ್ @@ -5333,7 +5509,7 @@ For terms of use, see http://www.unicode.org/copyright.html ನ್ಯೂ ತೈವಾನ್ ಡಾಲರ್ ನ್ಯೂ ತೈವಾನ್ ಡಾಲರ್ - ನ್ಯೂ ತೈವಾನ್ ಡಾಲರ್ + ನ್ಯೂ ತೈವಾನ್ ಡಾಲರ್‌ಗಳು NT$ NT$ @@ -5373,7 +5549,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಉಜ್ಬೇಕಿಸ್ತಾನ್ ಸೊಮ್ ಉಜ್ಬೇಕಿಸ್ತಾನ್ ಸೊಮ್ - ಉಜ್ಬೇಕಿಸ್ತಾನ್ ಸೊಮ್‍ಗಳು + ಉಜ್ಬೇಕಿಸ್ತಾನ್ ಸೊಮ್ UZS @@ -5381,6 +5557,7 @@ For terms of use, see http://www.unicode.org/copyright.html ವೆನಿಜುಲಿಯನ್ ಬೊಲಿವರ್ ವೆನಿಜುಲಿಯನ್ ಬೊಲಿವರ್‌ಗಳು VEF + Bs ವಿಯೆಟ್ನಾಮೀಸ್ ಡಾಂಗ್ @@ -5412,15 +5589,16 @@ For terms of use, see http://www.unicode.org/copyright.html ಪೂರ್ವ ಕೆರೀಬಿಯನ್ ಡಾಲರ್ ಪೂರ್ವ ಕೆರೀಬಿಯನ್ ಡಾಲರ್‌ಗಳು EC$ + $ CFA ಫ್ರಾಂಕ್ BCEAO - CFA ಫ್ರಾಂಕ್ BCEAO + ಪಶ್ಚಿಮ ಆಫ್ರಿಕಾದ [CFA] ಫ್ರಾಂಕ್‌ CFA ಫ್ರಾಂಕ್ BCEAO CFA - CFP ಫ್ರಾಂಕ್ + [CFP] ಫ್ರಾಂಕ್ CFP ಫ್ರಾಂಕ್ CFP ಫ್ರಾಂಕ್ CFPF @@ -5441,6 +5619,7 @@ For terms of use, see http://www.unicode.org/copyright.html ದಕ್ಷಿಣ ಆಫ್ರಿಕನ್ ರಾಂಡ್ ದಕ್ಷಿಣ ಆಫ್ರಿಕನ್ ರಾಂಡ್ ZAR + R ಜಾಂಬಿಯಾ ಕ್ವಾಚ (1968–2012) @@ -5450,6 +5629,7 @@ For terms of use, see http://www.unicode.org/copyright.html ಜಾಂಬಿಯಾ ಕ್ವಾಚ ಜಾಂಬಿಯಾ ಕ್ವಾಚಗಳು ZMW + ZK @@ -5460,7 +5640,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0}/{1} + {0} ಪ್ರತಿ {1} ಗೆ ಜಿ-ಫೋರ್ಸ್ @@ -5468,9 +5648,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಜಿ-ಫೋರ್ಸ್ - ಪ್ರತಿ ಎರಡು ಸೆಕೆಂಡಿಗೆ ಮೀಟರ್‌ಗಳು - {0} ಪ್ರತಿ ಎರಡು ಸೆಕೆಂಡಿಗೆ ಮೀಟರ್‌ಗಳು - {0} ಪ್ರತಿ ಎರಡು ಸೆಕೆಂಡಿಗೆ ಮೀಟರ್‌‌ಗಳು + ಮೀಟರ್‌ಗಳು ಪ್ರತಿ ಸೆಕೆಂಡ್‌ ಸ್ಕ್ವೇರ್‌ಗಳಿಗೆ + {0} ಮೀಟರ್‌ ಪ್ರತಿ ಸೆಕೆಂಡ್‌ ಸ್ಕ್ವೇರ್‌ಗಳಿಗೆ + {0} ಮೀಟರ್‌ಗಳು ಪ್ರತಿ ಸೆಕೆಂಡ್‌ ಸ್ಕ್ವೇರ್‌ಗಳಿಗೆ + + + ಕ್ರಾಂತಿ + {0} ಕ್ರಾಂತಿ + {0} ಕ್ರಾಂತಿಗಳು + + + ರೇಡಿಯಾನ್‌ಗಳು + {0} ರೇಡಿಯಾನ್‌ + {0} ರೇಡಿಯಾನ್‌ಗಳು + + + ಡಿಗ್ರಿಗಳು + {0}ಡಿಗ್ರಿ + {0}ಡಿಗ್ರಿಗಳು ನಿಮಿಷಗಳು @@ -5482,30 +5677,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಸೆಕೆಂಡ್ {0} ಸೆಕೆಂಡುಗಳು - - ಡಿಗ್ರಿಗಳು - {0}ಡಿಗ್ರಿ - {0}ಡಿಗ್ರಿಗಳು - - - ರೇಡಿಯಾನ್‌ಗಳು - {0} ರೇಡಿಯಾನ್‌ - {0} ರೇಡಿಯಾನ್‌ಗಳು - - - ಎಕರೆಗಳು - {0} ಎಕರೆ - {0} ಎಕರೆಗಳು + + ಚದರ ಕಿಲೋಮೀಟರ್‌ಗಳು + {0} ಚದರ ಕಿಲೋಮೀಟರ್ + {0} ಚದರ ಕಿಲೋಮೀಟರ್‌ಗಳು ಹೆಕ್ಟೇರುಗಳು {0} ಹೆಕ್ಟೇರ್ {0} ಹೆಕ್ಟೇರುಗಳು + + ಚದರ ಮೀಟರ್‌ಗಳು + {0} ಚದರ ಮೀಟರ್ + {0} ಚದರ ಮೀಟರ್‌ಗಳು + {0} ಚದರ ಮೀಟರ್‌ಗೆ + ಚದರ ಸೆಂಟಿಮೀಟರ್‌ಗಳು {0} ಚದರ ಸೆಂಟಿಮೀಟರ್ {0} ಚದರ ಸೆಂಟಿಮೀಟರ್‌ಗಳು + {0} ಪ್ರತಿ ಚದರ ಸೆಂಟಿಮೀಟರ್‌‌ಗೆ + + + ಚದರ ಮೈಲುಗಳು + {0} ಚದರ ಮೈಲು + {0} ಚದರ ಮೈಲುಗಳು + + + ಎಕರೆಗಳು + {0} ಎಕರೆ + {0} ಎಕರೆಗಳು + + + ಚದರ ಗಜಗಳು + {0} ಚದರ ಗಜ + {0} ಚದರ ಗಜಗಳು ಚದರಡಿ @@ -5516,91 +5723,106 @@ For terms of use, see http://www.unicode.org/copyright.html ಚದರ ಅಂಗುಲಗಳು {0} ಚದರ ಅಂಗುಲ {0} ಚದರ ಅಂಗುಲಗಳು + {0} ಚದರ ಅಂಗುಲಕ್ಕೆ - - ಚದರ ಕಿಲೋಮೀಟರ್‌ಗಳು - {0} ಚದರ ಕಿಲೋಮೀಟರ್ - {0} ಚದರ ಕಿಲೋಮೀಟರ್‌ಗಳು - - - ಚದರ ಮೀಟರ್‌ಗಳು - {0} ಚದರ ಮೀಟರ್ - {0} ಚದರ ಮೀಟರ್‌ಗಳು - - - ಚದರ ಮೈಲುಗಳು - {0} ಚದರ ಮೈಲು - {0} ಚದರ ಮೈಲುಗಳು - - - ಚದರ ಗಜಗಳು - {0} ಚದರ ಗಜ - {0} ಚದರ ಗಜಗಳು + + ಕಾರಟ್‌ಗಳು + {0} ಕಾರಟ್‌ + {0} ಕಾರಟ್‌ಗಳು - ಪ್ರತಿ ಕಿಲೋಮೀಟರ್‌ಗೆ ಲೀಟರ್‌ಗಳು - {0} ಪ್ರತಿಕಿಲೋಮೀಟರ್‌ಗೆ ಲೀಟರ್‌ + ಲೀಟರ್ ಪ್ರತಿ ಕಿಲೋಮೀಟರ್‌ಗೆ + {0} ಲೀಟರ್ ಪ್ರತಿ ಕಿಲೋಮೀಟರ್‌ಗೆ {0} ಪ್ರತಿ ಕಿಲೋಮೀಟರ್‌‌ಗೆ ಲೀಟರ್‌ಗಳು + + L/100km + {0} ಲೀಟರ್‌ಗಳು ಪ್ರತಿ 100 ಕಿಲೋಮೀಟರ್‌ಗಳಿಗೆ + {0} ಲೀಟರ್‌ಗಳು ಪ್ರತಿ 100 ಕಿಲೋಮೀಟರ್‌ಗಳಿಗೆ + ಪ್ರತಿ ಗ್ಯಾಲನ್‌‌ಗೆ ಮೈಲಿಗಳು {0} ಪ್ರತಿ ಗ್ಯಾಲನ್‌‌ಗೆ ಮೈಲಿ {0} ಪ್ರತಿ ಗ್ಯಾಲನ್‌ಗೆ ಮೈಲಿಗಳು - - ಬಿಟ್‌ಗಳು - {0} ಬಿಟ್‌ - {0} ಬಿಟ್‍ಗಳು - - - ಬೈಟ್‌ಗಳು - {0} ಬೈಟ್‌ - {0} ಬೈಟ್‌ಗಳು - - - ಗಿಗಾಬಿಟ್‌ಗಳು - {0} ಗಿಗಾಬಿಟ್‌ - {0} ಗಿಗಾಬಿಟ್‌ಗಳು - - - ಗಿಗಾಬೈಟ್‌ಗಳು - {0} ಗಿಗಾಬೈಟ್‌ - {0} ಗಿಗಾಬೈಟ್‌ಗಳು - - - ಕಿಲೋಬಿಟ್‌ಗಳು - {0} ಕಿಲೋಬಿಟ್‌ - {0} ಕಿಲೋಬಿಟ್‌ಗಳು - - - ಕಿಲೋಬೈಟ್‌ಗಳು - {0} ಕಿಲೋಬೈಟ್‌ - {0} ಕಿಲೋಬೈಟ್‌ಗಳು - - - ಮೆಗಾಬಿಟ್‌ಗಳು - {0} ಮೆಗಾಬಿಟ್‌ - {0} ಮೆಗಾಬಿಟ್‌ಗಳು - - - ಮೆಗಾಬೈಟ್‌ಗಳು - {0} ಮೆಗಾಬೈಟ್‌ - {0} ಮೆಗಾಬೈಟ್‌ಗಳು + + ಟೆರಾಬೈಟ್‌ಗಳು + {0} ಟೆರಾಬೈಟ್‌ + {0} ಟೆರಾಬೈಟ್‌ಗಳು ಟೆರಾಬಿಟ್‌ಗಳು {0} ಟೆರಾಬಿಟ್‌ {0} ಟೆರಾಬಿಟ್‌ಗಳು - - ಟೆರಾಬೈಟ್‌ಗಳು - {0} ಟೆರಾಬೈಟ್‌ - {0} ಟೆರಾಬೈಟ್‌ಗಳು + + ಗಿಗಾಬೈಟ್‌ಗಳು + {0} ಗಿಗಾಬೈಟ್‌ + {0} ಗಿಗಾಬೈಟ್‌ಗಳು + + + ಗಿಗಾಬಿಟ್‌ಗಳು + {0} ಗಿಗಾಬಿಟ್‌ + {0} ಗಿಗಾಬಿಟ್‌ಗಳು + + + ಮೆಗಾಬೈಟ್‌ಗಳು + {0} ಮೆಗಾಬೈಟ್‌ + {0} ಮೆಗಾಬೈಟ್‌ಗಳು + + + ಮೆಗಾಬಿಟ್‌ಗಳು + {0} ಮೆಗಾಬಿಟ್‌ + {0} ಮೆಗಾಬಿಟ್‌ಗಳು + + + ಕಿಲೋಬೈಟ್‌ಗಳು + {0} ಕಿಲೋಬೈಟ್‌ + {0} ಕಿಲೋಬೈಟ್‌ಗಳು + + + ಕಿಲೋಬಿಟ್‌ಗಳು + {0} ಕಿಲೋಬಿಟ್‌ + {0} ಕಿಲೋಬಿಟ್‌ಗಳು + + + ಬೈಟ್‌ಗಳು + {0} ಬೈಟ್‌ + {0} ಬೈಟ್‌ಗಳು + + + ಬಿಟ್‌ಗಳು + {0} ಬಿಟ್‌ + {0} ಬಿಟ್‍ಗಳು + + + ಶತಮಾನಗಳು + {0} ಶತಮಾನ + {0}ಶತಮಾನಗಳು + + + ವರ್ಷಗಳು + {0} ವರ್ಷ + {0} ವರ್ಷಗಳು + {0} ಪ್ರತಿ ವರ್ಷಕ್ಕೆ + + + ತಿಂಗಳು + {0} ತಿಂಗಳು + {0} ತಿಂಗಳು + {0} ಪ್ರತಿ ತಿಂಗಳಿಗೆ + + + ವಾರಗಳು + {0} ವಾರಗಳು + {0} ವಾರಗಳು + {0} ಪ್ರತಿ ವಾರಕ್ಕೆ ದಿನಗಳು {0} ದಿನ {0} ದಿನಗಳು + {0} ಪ್ರತಿ ದಿನಕ್ಕೆ ಗಂಟೆಗಳು @@ -5608,30 +5830,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಗಂಟೆಗಳು {0} ಪ್ರತಿ ಗಂಟೆ - - ಮೈಕ್ರೊಸೆಕೆಂಡುಗಳು - {0} ಮೈಕ್ರೊಸೆಕೆಂಡ್ - {0} ಮೈಕ್ರೊಸೆಕೆಂಡುಗಳು - - - ಮಿಲಿಸೆಕೆಂಡುಗಳು - {0} ಮಿಲಿಸೆಕೆಂಡ್ - {0} ಮಿಲಿಸೆಕೆಂಡುಗಳು - ನಿಮಿಷಗಳು {0} ನಿಮಿಷ {0} ನಿಮಿಷಗಳು - - - ತಿಂಗಳು - {0} ತಿಂಗಳು - {0} ತಿಂಗಳು - - - ನ್ಯಾನೊಸೆಕೆಂಡುಗಳು - {0} ನ್ಯಾನೊಸೆಕೆಂಡ್ - {0} ನ್ಯಾನೊಸೆಕೆಂಡುಗಳು + {0} ಪ್ರತಿ ನಿಮಿಷಕ್ಕೆ ಸೆಕೆಂಡುಗಳು @@ -5639,15 +5842,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಸೆಕೆಂಡುಗಳು {0} ಪ್ರತಿ ಸೆಕೆಂಡ್ - - ವಾರಗಳು - {0} ವಾರಗಳು - {0} ವಾರಗಳು + + ಮಿಲಿಸೆಕೆಂಡುಗಳು + {0} ಮಿಲಿಸೆಕೆಂಡ್ + {0} ಮಿಲಿಸೆಕೆಂಡುಗಳು - - ವರ್ಷಗಳು - {0} ವರ್ಷ - {0} ವರ್ಷಗಳು + + ಮೈಕ್ರೊಸೆಕೆಂಡುಗಳು + {0} ಮೈಕ್ರೊಸೆಕೆಂಡ್ + {0} ಮೈಕ್ರೊಸೆಕೆಂಡುಗಳು + + + ನ್ಯಾನೊಸೆಕೆಂಡುಗಳು + {0} ನ್ಯಾನೊಸೆಕೆಂಡ್ + {0} ನ್ಯಾನೊಸೆಕೆಂಡುಗಳು ಆಂಪೇರ್‌ಗಳು @@ -5669,6 +5877,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ವೋಲ್ಟ್‌ {0} ವೋಲ್ಟ್‌ಗಳು + + ಕಿಲೋಕ್ಯಾಲೋರಿಗಳು + {0} ಕಿಲೋಕ್ಯಾಲೋರಿ + {0} ಕಿಲೋಕ್ಯಾಲೋರಿಗಳು + ಕ್ಯಾಲೋರಿಗಳು {0} ಕ್ಯಾಲೋರಿ @@ -5679,21 +5892,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಕ್ಯಾಲೋರಿ {0} ಕ್ಯಾಲೋರಿಗಳು - - ಜೌಲ್‌ಗಳು - {0} ಜೌಲ್‌ - {0} ಜೌಲ್‌ಗಳು - - - ಕಿಲೋಕ್ಯಾಲೋರಿಗಳು - {0} ಕಿಲೋಕ್ಯಾಲೋರಿ - {0} ಕಿಲೋಕ್ಯಾಲೋರಿಗಳು - ಕಿಲೋಜೌಲ್‌‌ಗಳು {0} ಕಿಲೋಜೌಲ್‌ {0} ಕಿಲೋಜೌಲ್‌ಗಳು + + ಜೌಲ್‌ಗಳು + {0} ಜೌಲ್‌ + {0} ಜೌಲ್‌ಗಳು + ಕಿಲೋವ್ಯಾಟ್‌-ಗಂಟೆಗಳು {0} ಕಿಲೋವ್ಯಾಟ್‌-ಗಂಟೆ @@ -5704,201 +5912,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಗಿಗಾಹರ್ಟ್ಸ್‌ {0} ಗಿಗಾಹರ್ಟ್ಸ್‌ - - ಹರ್ಟ್ಸ್‌ - {0} ಹರ್ಟ್ಸ್‌ - {0} ಹರ್ಟ್ಸ್‌ + + ಮೆಗಾಹರ್ಟ್ಸ್ + {0} ಮೆಗಾಹರ್ಟ್ಸ್ + {0} ಮೆಗಾಹರ್ಟ್ಸ್ ಕಿಲೋಹರ್ಟ್ಸ್‌ {0} ಕಿಲೋಹರ್ಟ್ಸ್‌ {0} ಕಿಲೋಹರ್ಟ್ಸ್‌ - - ಮೆಗಾಹರ್ಟ್ಸ್ - {0} ಮೆಗಾಹರ್ಟ್ಸ್ - {0} ಮೆಗಾಹರ್ಟ್ಸ್ + + ಹರ್ಟ್ಸ್‌ + {0} ಹರ್ಟ್ಸ್‌ + {0} ಹರ್ಟ್ಸ್‌ - - ಅಸ್ಟ್ರಾನಾಮಿಕಲ್ ಯೂನಿಟ್‌ಗಳು - {0} ಅಸ್ಟ್ರಾನಾಮಿಕಲ್ ಯೂನಿಟ್ - {0} ಅಸ್ಟ್ರಾನಾಮಿಕಲ್ ಯೂನಿಟ್‌ಗಳು + + ಕಿಲೋಮೀಟರ್‌ಗಳು + {0} ಕಿಲೋಮೀಟರ್ + {0} ಕಿಲೋಮೀಟರ್‌ಗಳು + {0} ಪ್ರತಿ ಕಿಲೋಮೀಟ‍ರ್‌ಗೆ - - ಸೆಂಟಿಮೀಟರ್‌ಗಳು - {0} ಸೆಂಟಿಮೀಟರ್ - {0} ಸೆಂಟಿಮೀಟರ್‌ಗಳು + + ಮೀಟರ್‌ಗಳು + {0} ಮೀಟರ್ + {0} ಮೀಟರ್‌ಗಳು + {0} ಪ್ರತಿ ಮೀಟರ್‌ಗೆ ಡೆಸಿಮೀಟರ್‌ಗಳು {0} ಡೆಸಿಮೀಟರ್ {0} ಡೆಸಿಮೀಟರ್‌ಗಳು - - ಅಡಿ - {0} ಅಡಿ - {0} ಅಡಿ - - - ಅಂಗುಲಗಳು - {0} ಅಂಗುಲ - {0} ಅಂಗುಲಗಳು - - - ಕಿಲೋಮೀಟರ್‌ಗಳು - {0} ಕಿಲೋಮೀಟರ್ - {0} ಕಿಲೋಮೀಟರ್‌ಗಳು - - - ಬೆಳಕಿನ ವರ್ಷಗಳು - {0} ಬೆಳಕಿನ ವರ್ಷ - {0} ಬೆಳಕಿನ ವರ್ಷಗಳು - - - ಮೀಟರ್‌ಗಳು - {0} ಮೀಟರ್ - {0} ಮೀಟರ್‌ಗಳು - - - ಮೈಕ್ರೊಮೀಟರ್‌ಗಳು - {0} ಮೈಕ್ರೊಮೀಟರ್ - {0} ಮೈಕ್ರೊಮೀಟರ್‌ಗಳು - - - ಮೈಲುಗಳು - {0} ಮೈಲು - {0} ಮೈಲುಗಳು + + ಸೆಂಟಿಮೀಟರ್‌ಗಳು + {0} ಸೆಂಟಿಮೀಟರ್ + {0} ಸೆಂಟಿಮೀಟರ್‌ಗಳು + {0} ಪ್ರತಿ ಸೆಂಟಿಮೀಟರ್‌ಗೆ ಮಿಲಿಮೀಟರ್‌ಗಳು {0} ಮಿಲಿಮೀಟರ್ {0} ಮಿಲಿಮೀಟರ್‌ಗಳು + + ಮೈಕ್ರೊಮೀಟರ್‌ಗಳು + {0} ಮೈಕ್ರೊಮೀಟರ್ + {0} ಮೈಕ್ರೊಮೀಟರ್‌ಗಳು + ನ್ಯಾನೊಮೀಟರ್‌‌ಗಳು {0} ನ್ಯಾನೊಮೀಟರ್‌ {0} ನ್ಯಾನೊಮೀಟರ್‌‌ಗಳು - - ನಾಟಿಕಲ್ ಮೈಲುಗಳು - {0} ನಾಟಿಕಲ್ ಮೈಲು - {0} ನಾಟಿಕಲ್ ಮೈಲುಗಳು - - - ಪಾರ್‌‍ಸೆಕೆಂ - {0} ಪಾರ್‌ಸೆಕೆಂ - {0} ಪಾರ್‌ಸೆಕೆಂ - ಪಿಕೋಮೀಟರ್‌ಗಳು {0} ಪಿಕೋಮೀಟರ್ {0} ಪಿಕೋಮೀಟರ್‌ಗಳು + + ಮೈಲುಗಳು + {0} ಮೈಲು + {0} ಮೈಲುಗಳು + ಗಜಗಳು {0} ಗಜ {0} ಗಜಗಳು + + ಅಡಿ + {0} ಅಡಿ + {0} ಅಡಿ + {0} ಪ್ರತಿ ಅಡಿಗೆ + + + ಅಂಗುಲಗಳು + {0} ಅಂಗುಲ + {0} ಅಂಗುಲಗಳು + {0} ಪ್ರತಿ ಅಂಗುಲಕ್ಕೆ + + + ಪಾರ್‌‍ಸೆಕೆಂ + {0} ಪಾರ್‌ಸೆಕೆಂ + {0} ಪಾರ್‌ಸೆಕೆಂ + + + ಬೆಳಕಿನ ವರ್ಷಗಳು + {0} ಬೆಳಕಿನ ವರ್ಷ + {0} ಬೆಳಕಿನ ವರ್ಷಗಳು + + + ಅಸ್ಟ್ರಾನಾಮಿಕಲ್ ಯೂನಿಟ್‌ಗಳು + {0} ಅಸ್ಟ್ರಾನಾಮಿಕಲ್ ಯೂನಿಟ್ + {0} ಅಸ್ಟ್ರಾನಾಮಿಕಲ್ ಯೂನಿಟ್‌ಗಳು + + + ನಾಟಿಕಲ್ ಮೈಲುಗಳು + {0} ನಾಟಿಕಲ್ ಮೈಲು + {0} ನಾಟಿಕಲ್ ಮೈಲುಗಳು + + + ಸ್ಕ್ಯಾಂಡಿನೇವಿಯನ್-ಮೈಲು + {0} ಸ್ಕ್ಯಾಂಡಿನೇವಿಯನ್-ಮೈಲು + {0} ಸ್ಕ್ಯಾಂಡಿನೇವಿಯನ್-ಮೈಲುಗಳು + ಲಕ್ಸ್‌‌ {0} ಲಕ್ಸ್‌‌ {0} ಲಕ್ಸ್‌‌ - - ಕ್ಯಾರೆಟ್‌ಗಳು - {0} ಕ್ಯಾರೆಟ್‌ - {0} ಕ್ಯಾರೆಟ್‌ಗಳು - - - ಗ್ರಾಂಗಳು - {0} ಗ್ರಾಂ - {0} ಗ್ರಾಂಗಳು - - - ಕಿಲೋಗ್ರಾಂಗಳು - {0} ಕಿಲೋಗ್ರಾಂ - {0} ಕಿಲೋಗ್ರಾಂಗಳು - ಮೆಟ್ರಿಕ್‌‌ ಟನ್‌ಗಳು {0} ಮೆಟ್ರಿಕ್‌ ಟನ್‌ {0} ಮೆಟ್ರಿಕ್‌‌ ಟನ್‌‌ಗಳು - - ಮೈಕ್ರೋ ಗ್ರಾಂಗಳು - {0} ಮೈಕ್ರೋ ಗ್ರಾಂ - {0} ಮೈಕ್ರೋ ಗ್ರಾಂಗಳು + + ಕಿಲೋಗ್ರಾಂಗಳು + {0} ಕಿಲೋಗ್ರಾಂ + {0} ಕಿಲೋಗ್ರಾಂಗಳು + {0} ಪ್ರತಿ ಕಿಲೋಗ್ರಾಂಗೆ + + + ಗ್ರಾಂಗಳು + {0} ಗ್ರಾಂ + {0} ಗ್ರಾಂಗಳು + {0} ಪ್ರತಿ ಗ್ರಾಂಗೆ ಮಿಲಿ ಗ್ರಾಂಗಳು {0} ಮಿಲಿ ಗ್ರಾಂ {0} ಮಿಲಿ ಗ್ರಾಂಗಳು - - ಔನ್ಸ್‌ಗಳು - {0} ಔನ್ಸ್ - {0} ಔನ್ಸ್‌ಗಳು - - - ಟ್ರಾಯ್ ಔನ್ಸ್ - {0} ಟ್ರಾಯ್ ಔನ್ಸ್ - {0} ಟ್ರಾಯ್ ಔನ್ಸ್ - - - ಪೌಂಡ್‌ಗಳು - {0} ಪೌಂಡ್ - {0} ಪೌಂಡ್‌ಗಳು + + ಮೈಕ್ರೋ ಗ್ರಾಂಗಳು + {0} ಮೈಕ್ರೋ ಗ್ರಾಂ + {0} ಮೈಕ್ರೋ ಗ್ರಾಂಗಳು ಟನ್‌ಗಳು {0} ಟನ್‌ {0} ಟನ್‌ಗಳು + + ಪೌಂಡ್‌ಗಳು + {0} ಪೌಂಡ್ + {0} ಪೌಂಡ್‌ಗಳು + {0} ಪ್ರತಿ ಪೌಂಡ್‌ಗೆ + + + ಔನ್ಸ್‌ಗಳು + {0} ಔನ್ಸ್ + {0} ಔನ್ಸ್‌ಗಳು + {0} ಪ್ರತಿ ಔನ್ಸ್‌ಗೆ + + + ಟ್ರಾಯ್ ಔನ್ಸ್‌ಗಳು + {0} ಟ್ರಾಯ್ ಔನ್ಸ್ + {0} ಟ್ರಾಯ್ ಔನ್ಸ್‌ಗಳು + + + ಕ್ಯಾರೆಟ್‌ಗಳು + {0} ಕ್ಯಾರೆಟ್‌ + {0} ಕ್ಯಾರೆಟ್‌ಗಳು + ಗಿಗಾವ್ಯಾಟ್‌ಗಳು {0} ಗಿಗಾವ್ಯಾಟ್‌ {0} ಗಿಗಾವ್ಯಾಟ್‌ಗಳು - - ಹಾರ್ಸ್‌ಪವರ್ - {0} ಹಾರ್ಸ್‌ಪವರ್ - {0} ಹಾರ್ಸ್‌ಪವರ್ - - - ಕಿಲೋವ್ಯಾಟ್‌ಗಳು - {0} ಕಿಲೋವ್ಯಾಟ್ - {0} ಕಿಲೋವ್ಯಾಟ್‌ಗಳು - ಮೆಗಾವ್ಯಾಟ್‌ಗಳು {0} ಮೆಗಾವ್ಯಾಟ್‌ {0} ಮೆಗಾವ್ಯಾಟ್‌ಗಳು - - ಮಿಲಿವ್ಯಾಟ್‌ಗಳು - {0} ಮಿಲಿವ್ಯಾಟ್‌ - {0} ಮಿಲಿವ್ಯಾಟ್‌ಗಳು + + ಕಿಲೋವ್ಯಾಟ್‌ಗಳು + {0} ಕಿಲೋವ್ಯಾಟ್ + {0} ಕಿಲೋವ್ಯಾಟ್‌ಗಳು ವ್ಯಾಟ್‌ಗಳು {0} ವ್ಯಾಟ್ {0} ವ್ಯಾಟ್‌ಗಳು + + ಮಿಲಿವ್ಯಾಟ್‌ಗಳು + {0} ಮಿಲಿವ್ಯಾಟ್‌ + {0} ಮಿಲಿವ್ಯಾಟ್‌ಗಳು + + + ಹಾರ್ಸ್‌ಪವರ್ + {0} ಹಾರ್ಸ್‌ಪವರ್ + {0} ಹಾರ್ಸ್‌ಪವರ್ + ಹೆಕ್ಟೋಪ್ಯಾಸ್ಕಲ್‌ಗಳು {0} ಹೆಕ್ಟೋಪ್ಯಾಸ್ಕಲ್ {0} ಹೆಕ್ಟೋಪ್ಯಾಸ್ಕಲ್‌ಗಳು - - ಮರ್ಕ್ಯುರಿ ಅಂಗುಲಗಳು - {0} ಮರ್ಕ್ಯುರಿ ಅಂಗುಲ - {0} ಮರ್ಕ್ಯುರಿ ಅಂಗುಲಗಳು - - - ಮಿಲಿಬಾರ್‌ಗಳು - {0} ಮಿಲಿಬಾರ್ - {0} ಮಿಲಿಬಾರ್‌ಗಳು - ಮರ್ಕ್ಯುರಿ ಮಿಲಿಮೀಟರ್‌ಗಳು {0} ಮರ್ಕ್ಯುರಿ ಮಿಲಿಮೀಟರ್‌ @@ -5909,26 +6121,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಪ್ರತಿ ಚದರ ಇಂಚಿಗೆ ಪೌಂಡ್‌ {0} ಪ್ರತಿ ಚದರ ಇಂಚಿಗೆ ಪೌಂಡ್‌ಗಳು - - ಕಾರಟ್‌ಗಳು - {0} ಕಾರಟ್‌ - {0} ಕಾರಟ್‌ಗಳು + + ಮರ್ಕ್ಯುರಿ ಅಂಗುಲಗಳು + {0} ಮರ್ಕ್ಯುರಿ ಅಂಗುಲ + {0} ಮರ್ಕ್ಯುರಿ ಅಂಗುಲಗಳು + + + ಮಿಲಿಬಾರ್‌ಗಳು + {0} ಮಿಲಿಬಾರ್ + {0} ಮಿಲಿಬಾರ್‌ಗಳು ಗಂಟೆಗೆ ಕಿಲೋಮೀಟರ್‌ಗಳು - {0} ಗಂಟೆಗೆ ಕಿಲೋಮೀಟರ್ - {0} ಗಂಟೆಗೆ ಕಿಲೋಮೀಟರ್‌ಗಳು + {0} ಕಿಲೋಮಿಟರ್ ಪ್ರತಿ ಗಂಟೆಗೆ + {0} ಕಿಲೋಮಿಟರ್‌ಗಳು ಪ್ರತಿ ಗಂಟೆಗೆ - ಪ್ರತಿ ಸೆಕೆಂಡಿಗೆ ಮೀಟರ್‌ಗಳು - {0} ಪ್ರತಿ ಸೆಕೆಂಡಿಗೆ ಮೀಟರ್ - {0} ಪ್ರತಿ ಸೆಕೆಂಡಿಗೆ ಮೀಟರ್‌ಗಳು + ಮೀಟರ್‌ಗಳು ಪ್ರತಿ ಸೆಕೆಂಡ್‌ಗೆ + {0} ಮೀಟರ್‌ ಪ್ರತಿ ಸೆಕೆಂಡ್‌ಗೆ + {0} ಮೀಟರ್‌ಗಳು ಪ್ರತಿ ಸೆಕೆಂಡ್‌ಗೆ - ಗಂಟೆಗೆ ಮೈಲುಗಳು - {0} ಗಂಟೆಗೆ ಮೈಲು + ಮೈಲುಗಳು ಪ್ರತಿ ಗಂಟೆಗೆ + {0} ಮೈಲು ಪ್ರತಿ ಗಂಟೆಗೆ {0} ಗಂಟೆಗೆ ಮೈಲುಗಳು + + ನಾಟ್ + {0} ನಾಟ್ + {0} ನಾಟ್‌ಗಳು + + + ° + {0}° + {0}° + ಡಿಗ್ರಿ ಸೆಲ್ಶಿಯಸ್ {0} ಡಿಗ್ರಿ ಸೆಲ್ಶಿಯಸ್ @@ -5940,34 +6167,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ಡಿಗ್ರಿ ಫ್ಯಾರೆನ್‌ಹಿಟ್ - ಕೆಲ್ವಿನ್ + ಕೆಲ್ವಿನ್‌ಗಳು {0} ಕೆಲ್ವಿನ್ - {0} ಕೆಲ್ವಿನ್ - - - ಎಕರೆ-ಅಡಿ - {0} ಎಕರೆ-ಅಡಿ - {0} ಎಕರೆ-ಅಡಿ - - - ಸೆಂಟಿಲೀಟರ್‌ಗಳು - {0} ಸೆಂಟಿಲೀಟರ್ - {0} ಸೆಂಟಿಲೀಟರ್‌ಗಳು - - - ಕ್ಯೂಬಿಕ್ ಸೆಂಟಿಮೀಟರ್‌ಗಳು - {0} ಕ್ಯೂಬಿಕ್ ಸೆಂಟಿಮೀಟರ್ - {0} ಕ್ಯೂಬಿಕ್ ಸೆಂಟಿಮೀಟರ್‌ಗಳು - - - ಘನ ಅಡಿ - {0} ಘನ ಅಡಿ - {0} ಘನ ಅಡಿ - - - ಘನ ಅಂಗುಲಗಳು - {0} ಘನ ಅಂಗುಲ - {0} ಘನ ಅಂಗುಲಗಳು + {0} ಕೆಲ್ವಿನ್‍ಗಳು ಘನ ಕಿಲೋಮೀಟರ್‌ಗಳು @@ -5978,6 +6180,13 @@ For terms of use, see http://www.unicode.org/copyright.html ಘನ ಮೀಟರುಗಳು {0} ಘನ ಮೀಟರ್ {0} ಘನ ಮೀಟರುಗಳು + {0} ಪ್ರತಿ ಘನ ಮೀಟರುಗಳಿಗೆ + + + ಕ್ಯೂಬಿಕ್ ಸೆಂಟಿಮೀಟರ್‌ಗಳು + {0} ಕ್ಯೂಬಿಕ್ ಸೆಂಟಿಮೀಟರ್ + {0} ಕ್ಯೂಬಿಕ್ ಸೆಂಟಿಮೀಟರ್‌ಗಳು + {0} ಪ್ರತಿ ಕ್ಯೂಬಿಕ್ ಸೆಂಟಿಮೀಟರ್‌ಗಳಿಗೆ ಘನ ಮೈಲುಗಳು @@ -5989,25 +6198,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಘನ ಗಜ {0} ಘನ ಗಜಗಳು - - ಕಪ್‍ಗಳು - {0} ಕಪ್‍ - {0} ಕಪ್‍ಗಳು + + ಘನ ಅಡಿ + {0} ಘನ ಅಡಿ + {0} ಘನ ಅಡಿ - - ಡೆಸಿಲೀಟರ್‌ಗಳು - {0} ಡೆಸಿಲೀಟರ್‌ - {0} ಡೆಸಿಲೀಟರ್‌‌ಗಳು + + ಘನ ಅಂಗುಲಗಳು + {0} ಘನ ಅಂಗುಲ + {0} ಘನ ಅಂಗುಲಗಳು - - ಫ್ಲೂಡ್ ಔನ್ಸ್‌ಗಳು - {0} ಫ್ಲೂಡ್ ಔನ್ಸ್‌ - {0} ಫ್ಲೂಡ್ ಔನ್ಸ್‌ಗಳು - - - ಗ್ಯಾಲನ್‌‌ಗಳು - {0} ಗ್ಯಾಲನ್‌ - {0} ಗ್ಯಾಲನ್‌ಗಳು + + ಮೆಗಾ ಲೀಟರ್‌ಗಳು + {0} ಮೆಗಾ ಲೀಟರ್‌ + {0} ಮೆಗಾ ಲೀಟರ್‌‌ಗಳು ಹೆಕ್ಟೋಲೀಟರ್‌ಗಳು @@ -6018,27 +6222,64 @@ For terms of use, see http://www.unicode.org/copyright.html ಲೀಟರ್‌‌ಗಳು {0} ಲೀಟರ್ {0} ಲೀಟರ್‌ಗಳು + {0} ಪ್ರತಿ ಲೀಟರ್‌ಗೆ - - ಮೆಗಾ ಲೀಟರ್‌ಗಳು - {0} ಮೆಗಾ ಲೀಟರ್‌ - {0} ಮೆಗಾ ಲೀಟರ್‌‌ಗಳು + + ಡೆಸಿಲೀಟರ್‌ಗಳು + {0} ಡೆಸಿಲೀಟರ್‌ + {0} ಡೆಸಿಲೀಟರ್‌‌ಗಳು + + + ಸೆಂಟಿಲೀಟರ್‌ಗಳು + {0} ಸೆಂಟಿಲೀಟರ್ + {0} ಸೆಂಟಿಲೀಟರ್‌ಗಳು ಮಿಲಿಲೀಟರ್‌ಗಳು {0} ಮಿಲಿಲೀಟರ್ {0} ಮಿಲಿಲೀಟರ್‌ಗಳು - - ಪಿಂಟ್‌ಗಳು - {0} ಪಿಂಟ್‌ - {0} ಪಿಂಟ್‌ಗಳು + + ಮೆಟ್ರಿಕ್ ಪಿಂಟ್‌ಗಳು + {0} ಮೆಟ್ರಿಕ್ ಪಿಂಟ್ + {0} ಮೆಟ್ರಿಕ್ ಪಿಂಟ್‌ಗಳು + + + ಮೆಟ್ರಿಕ್‌ ಕಪ್‌ + {0} ಮೆಟ್ರಿಕ್‌ ಕಪ್‌ + {0} ಮೆಟ್ರಿಕ್‌ ಕಪ್‌ಗಳು + + + ಎಕರೆ-ಅಡಿ + {0} ಎಕರೆ-ಅಡಿ + {0} ಎಕರೆ-ಅಡಿ + + + ಗ್ಯಾಲನ್‌‌ಗಳು + {0} ಗ್ಯಾಲನ್‌ + {0} ಗ್ಯಾಲನ್‌ಗಳು + {0} ಪ್ರತಿ ಗ್ಯಾಲನ್‍ಗೆ ಕಾಲುಭಾಗಗಳು {0} ಕಾಲುಭಾಗ {0} ಕಾಲುಭಾಗಗಳು + + ಪಿಂಟ್‌ಗಳು + {0} ಪಿಂಟ್‌ + {0} ಪಿಂಟ್‌ಗಳು + + + ಕಪ್‍ಗಳು + {0} ಕಪ್‍ + {0} ಕಪ್‍ಗಳು + + + ಫ್ಲೂಡ್ ಔನ್ಸ್‌ಗಳು + {0} ಫ್ಲೂಡ್ ಔನ್ಸ್‌ + {0} ಫ್ಲೂಡ್ ಔನ್ಸ್‌ಗಳು + ಟೇಬಲ್ ಸ್ಪೂನ್‍ಗಳು {0} ಟೇಬಲ್ ಸ್ಪೂನ್‍ @@ -6049,6 +6290,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಟೀ ಸ್ಪೂನ್‍ {0} ಟೀ ಸ್ಪೂನ್‍ಗಳು + + {0}ಪೂ + {0}ಉ + {0}ದ + {0}ಪ + @@ -6064,6 +6311,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಮೀ/ಸೆ² {0} ಮೀ/ಸೆ² + + ಕ್ರಾಂ + {0} ಕ್ರಾಂ + {0} ಕ್ರಾಂ + + + ರೇಡಿ. + {0} ರೇಡಿ. + {0} ರೇಡಿ + + + ಡಿಗ್ರಿಗಳು + {0} ಡಿ. + {0} ಡಿ. + ನಿ. {0} ನಿ. @@ -6074,30 +6336,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಸೆಕೆಂ {0} ಸೆಕೆಂ.ಗಳು - - ಡಿಗ್ರಿಗಳು - {0} ಡಿ. - {0} ಡಿ. - - - ರೇಡಿ. - {0} ರೇಡಿ. - {0} ರೇಡಿ - - - ಎಕರೆಗಳು - {0} ಎಕ. - {0} ಎಕ. + + ಕಿಮೀ² + {0} ಕಿಮೀ² + {0} ಕಿಮೀ² ಹೆಕ್ಟೇರುಗಳು {0} ಹೆ. {0} ಹೆ. + + ಚದರ ಮೀಟರ್‌ಗಳು + {0} ಮೀ² + {0} ಮೀ² + {0}/ಮೀ²ಗೆ + ಸೆಂ.ಮೀ² {0} ಸೆಂ.ಮೀ² {0} ಸೆಂ.ಮೀ² + {0}/ಸೆಂ.ಮೀ² + + + ಚದರ ಮೈಲುಗಳು + {0} ಚ.ಮೀ. + {0} ಚ.ಮೀ. + + + ಎಕರೆಗಳು + {0} ಎಕ. + {0} ಎಕ. + + + ಗಜಗಳು² + {0} ಗ² + {0} ಗ² ಚದರಡಿ @@ -6108,139 +6382,140 @@ For terms of use, see http://www.unicode.org/copyright.html ಅಂಗುಲಗಳು² {0} ಅಂ² {0} ಅಂ² + {0}/ಅಂ²ಕ್ಕೆ - - ಕಿಮೀ² - {0} ಕಿಮೀ² - {0} ಕಿಮೀ² - - - ಚದರ ಮೀಟರ್‌ಗಳು - {0} ಮೀ² - {0} ಮೀ² - - - ಚದರ ಮೈಲುಗಳು - {0} ಚ.ಮೀ. - {0} ಚ.ಮೀ. - - - ಗಜಗಳು² - {0} ಗ² - {0} ಗ² + + ಕಾರ. + {0} ಕಾರ. + {0} ಕಾರ. ಲೀ/ಕಿ.ಮೀ {0} ಲೀ/ಕಿ.ಮೀ {0} ಲೀ/ಕಿ.ಮೀ + + L/100km + {0} ಲೀ/100ಕಿ.ಮೀ + {0} ಲೀ/100ಕಿ.ಮೀ + ಮೈ/ಗ್ಯಾ {0} ಪ್ರ.ಗ್ಯಾ.ಮೈ. {0} ಪ್ರ.ಗ್ಯಾ.ಮೈ. - - ಬಿ. - {0} ಬಿ. - {0} ಬಿ. - - - ಬೈ. - {0} ಬೈ. - {0} ಬೈ. - - - ಗಿ.ಬಿ. - {0} ಗಿ.ಬಿ. - {0} ಗಿ.ಬಿ. - - - ಗಿ.ಬೈ. - {0} ಗಿ.ಬೈ. - {0} ಗಿ.ಬೈ. - - - ಕಿ.ಬಿ. - {0} ಕಿ.ಬಿ. - {0} ಕಿ.ಬಿ. - - - ಕಿ.ಬೈ. - {0} ಕಿ.ಬೈ. - {0} ಕಿ.ಬೈ. - - - ಮೆ.ಬಿ. - {0} ಮೆ.ಬಿ. - {0} ಮೆ.ಬಿ. - - - ಮೆ.ಬೈ. - {0} ಮೆ.ಬೈ. - {0} ಮೆ.ಬೈ. - - - ಟೆ.ಬಿ. - {0} ಟೆ.ಬಿ. - {0} ಟೆ.ಬಿ. - ಟೆ.ಬೈ. {0} ಟೆ.ಬೈ. {0} ಟೆ.ಬೈ. + + ಟೆ.ಬಿ. + {0} ಟೆ.ಬಿ. + {0} ಟೆ.ಬಿ. + + + ಗಿ.ಬೈ. + {0} ಗಿ.ಬೈ. + {0} ಗಿ.ಬೈ. + + + ಗಿ.ಬಿ. + {0} ಗಿ.ಬಿ. + {0} ಗಿ.ಬಿ. + + + ಮೆ.ಬೈ. + {0} ಮೆ.ಬೈ. + {0} ಮೆ.ಬೈ. + + + ಮೆ.ಬಿ. + {0} ಮೆ.ಬಿ. + {0} ಮೆ.ಬಿ. + + + ಕಿ.ಬೈ. + {0} ಕಿ.ಬೈ. + {0} ಕಿ.ಬೈ. + + + ಕಿ.ಬಿ. + {0} ಕಿ.ಬಿ. + {0} ಕಿ.ಬಿ. + + + ಬೈ. + {0} ಬೈ. + {0} ಬೈ. + + + ಬಿ. + {0} ಬಿ. + {0} ಬಿ. + + + + {0} ಶ + {0} ಶ + + + ವರ್ಷಗಳು + {0} ವರ್ಷ + {0} ವರ್ಷಗಳು + {0}/ವ + + + ತಿಂಗಳು + {0} ತಿಂ. + {0} ತಿಂ. + {0}/ತಿ + + + ವಾರಗಳು + {0} ವಾರ + {0} ವಾರಗಳು + {0}/ವಾ + ದಿನಗಳು {0} ದಿನ {0} ದಿನಗಳು + {0}/ದಿ ಗಂಟೆಗಳು {0} ಗಂ. {0} ಗಂ. - {0}ph + {0}/ಗಂ - - μsecs - {0} μs - {0} μs + + ನಿಮಿಷಗಳು + {0} ನಿಮಿ + {0} ನಿಮಿ + {0}/ನಿಮಿ + + + ಸೆಕೆಂಡುಗಳು + {0} ಸೆಕೆಂ + {0} ಸೆಕೆಂ + {0}/ಸೆ ಮಿಲಿಸೆಕೆಂಡುಗಳು {0} ಮಿ.ಸೆ. {0} ಮಿ.ಸೆ. - - ನಿಮಿಷಗಳು - {0} ನಿಮಿ - {0} ನಿಮಿ - - - ತಿಂಗಳು - {0} ತಿಂ. - {0} ತಿಂ. + + μsecs + {0} μs + {0} μs ನ್ಯಾ.ಸೆ {0} ನ್ಯಾ.ಸೆ {0} ನ್ಯಾ.ಸೆ - - ಸೆಕೆಂಡುಗಳು - {0} ಸೆಕೆಂ - {0} ಸೆಕೆಂ - {0}ps - - - ವಾರಗಳು - {0} ವಾರ - {0} ವಾರಗಳು - - - ವರ್ಷಗಳು - {0} ವರ್ಷ - {0} ವರ್ಷಗಳು - ಆಂ. {0} ಆಂ. @@ -6261,6 +6536,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ವೋ {0} ವೋ. + + ಕಿ.ಕ್ಯಾ + {0} ಕಿ.ಕ್ಯಾ + {0} ಕಿ.ಕ್ಯಾ + ಕ್ಯಾಲೊ {0} ಕ್ಯಾಲೊ @@ -6271,21 +6551,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಕ್ಯಾ {0} ಕ್ಯಾ - - ಜೌಲ್‌ಗಳು - {0} ಜೌ - {0} ಜೌ - - - ಕಿ.ಕ್ಯಾ - {0} ಕಿ.ಕ್ಯಾ - {0} ಕಿ.ಕ್ಯಾ - ಕಿ.ಜೌ {0} ಕಿ.ಜೌ {0} ಕಿ.ಜೌ + + ಜೌಲ್‌ಗಳು + {0} ಜೌ + {0} ಜೌ + ಕಿ.ವ್ಯಾ-ಗಂ {0} ಕಿ.ವ್ಯಾ.ಗಂ @@ -6296,201 +6571,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಗಿ.ಹ {0} ಗಿ.ಹ - - ಹರ್ಟ್ಸ್‌ - {0} ಹರ್ಟ್ಸ್‌ - {0} ಹರ್ಟ್ಸ್‌ + + ಮೆ.ಹ + {0} ಮೆ.ಹ + {0} ಮೆ.ಹ ಕಿ.ಹ {0} ಕಿ.ಹ {0} ಕಿ.ಹ - - ಮೆ.ಹ - {0} ಮೆ.ಹ - {0} ಮೆ.ಹ + + ಹರ್ಟ್ಸ್‌ + {0} ಹರ್ಟ್ಸ್‌ + {0} ಹರ್ಟ್ಸ್‌ - - ಅ.ಯೂ - {0} ಅ.ಯೂ - {0} ಅ.ಯೂ + + ಕಿಲೋಮೀಟರ್‌ಗಳು + {0} ಕಿಮೀ + {0} ಕಿಮೀ + {0}/ಕಿ.ಮೀ - - ಸೆಮೀ - {0} ಸೆಮೀ - {0} ಸೆಮೀ + + ಮೀಟರ್‌ಗಳು + {0} ಮೀ + {0} ಮೀ + {0}/ಮೀ ಡೆಮೀ {0} ಡೆಮೀ {0} ಡೆಮೀ - - ಅಡಿ - {0} ಅ - {0} ಅ - - - ಅಂಗುಲಗಳು - {0} ಅಂ - {0} ಅಂ - - - ಕಿಲೋಮೀಟರ್‌ಗಳು - {0} ಕಿಮೀ - {0} ಕಿಮೀ - - - ಬೆಳಕಿನ ವರ್ಷ - {0} ಬೆ.ವರ್ಷ - {0} ಬೆ.ವರ್ಷ - - - ಮೀಟರ್‌ಗಳು - {0} ಮೀ - {0} ಮೀ - - - µmeters - {0} µm - {0} µm - - - ಮೈಲುಗಳು - {0} ಮೈ. - {0} ಮೈ. + + ಸೆಮೀ + {0} ಸೆಮೀ + {0} ಸೆಮೀ + {0}/ಸೆಂಮೀ ಮಿಮೀ {0} ಮಿಮೀ {0} ಮಿಮೀ + + µmeters + {0} µm + {0} µm + ನ್ಯಾ.ಮೀ {0} ನ್ಯಾ.ಮೀ {0} ನ್ಯಾ.ಮೀ - - ನಾ.ಮೈ - {0} ನಾ.ಮೈ - {0} ನಾ.ಮೈ - - - ಪಾರ್‌ಸೆಕೆಂ.ಗಳು - {0} ಪಾ.ಸೆ - {0} ಪಾ.ಸೆ - ಪಿ.ಮೀ {0} ಪಿ.ಮೀ {0} ಪಿ.ಮೀ + + ಮೈಲುಗಳು + {0} ಮೈ. + {0} ಮೈ. + ಗಜಗಳು {0} ಗ {0} ಗ + + ಅಡಿ + {0} ಅ + {0} ಅ + {0}/ಅ + + + ಅಂಗುಲಗಳು + {0} ಅಂ + {0} ಅಂ + {0}/ಅಂ + + + ಪಾರ್‌ಸೆಕೆಂ.ಗಳು + {0} ಪಾ.ಸೆ + {0} ಪಾ.ಸೆ + + + ಬೆಳಕಿನ ವರ್ಷಗಳು + {0} ಬೆ.ವರ್ಷ + {0} ಬೆ.ವರ್ಷ + + + ಅ.ಯೂ + {0} ಅ.ಯೂ + {0} ಅ.ಯೂ + + + ನಾ.ಮೈ + {0} ನಾ.ಮೈ + {0} ನಾ.ಮೈ + + + ಸ್ಕ್ಯಾಂ.ಮೈ + {0} ಸ್ಕ್ಯಾಂ.ಮೈ + {0} ಸ್ಕ್ಯಾಂ.ಮೈ + ಲ. {0} ಲ. {0} ಲ. - - ಕ್ಯಾರೆಟ್‌ಗಳು - {0} ಕ್ಯಾರೆ - {0} ಕ್ಯಾರೆ - - - ಗ್ರಾಂಗಳು - {0} ಗ್ರಾ - {0} ಗ್ರಾ + + + {0} ಮೆಟ್ರಿಕ್‌ ಟನ್‌ + {0} ಮೆಟ್ರಿಕ್‌‌ ಟನ್‌‌ಗಳು ಕೆಜಿ {0} ಕೆಜಿ {0} ಕೆಜಿ + {0}/ಕೆಜಿ - - ಮೆಟ್ರಿಕ್‌‌ ಟನ್‌ಗಳು - {0} ಮೆಟ್ರಿಕ್‌ ಟನ್‌ - {0} ಮೆಟ್ರಿಕ್‌‌ ಟನ್‌‌ಗಳು - - - ಮೈ.ಗ್ರಾಂ - {0} ಮೈ.ಗ್ರಾಂ - {0} ಮೈ.ಗ್ರಾಂ + + ಗ್ರಾಂಗಳು + {0} ಗ್ರಾ + {0} ಗ್ರಾ + {0}/ಗ್ರಾ ಮಿ.ಗ್ರಾಂ {0} ಮಿ.ಗ್ರಾಂ {0} ಮಿ.ಗ್ರಾಂ - - - {0} ಔ - {0} ಔ - - - ಟ್ರಾ.ಔ - {0} ಟ್ರಾ.ಔ - {0} ಟ್ರಾ.ಔ - - - ಪೌಂ - {0} ಪೌಂ - {0} ಪೌಂ + + ಮೈ.ಗ್ರಾಂ + {0} ಮೈ.ಗ್ರಾಂ + {0} ಮೈ.ಗ್ರಾಂ ಟನ್‍ಗಳು {0} ಟನ್‌ {0} ಟನ್‌ + + ಪೌಂ + {0} ಪೌಂ + {0} ಪೌಂ + {0}/ಪೌಂ + + + + {0} ಔ + {0} ಔ + {0}/ ಔ + + + ಟ್ರಾ.ಔ + {0} ಟ್ರಾ.ಔ + {0} ಟ್ರಾ.ಔ + + + ಕ್ಯಾರೆಟ್‌ಗಳು + {0} ಕ್ಯಾರೆ + {0} ಕ್ಯಾರೆ + ಗಿ.ವ್ಯಾ {0} ಗಿ.ವ್ಯಾ {0} ಗಿ.ವ್ಯಾ - - ಹೆಚ್‌ಪಿ - {0} ಹೆಚ್‌ಪಿ - {0} ಹೆಚ್‌ಪಿ - - - ಕಿ.ವ್ಯಾ - {0} ಕಿ.ವ್ಯಾ - {0} ಕಿ.ವ್ಯಾ - ಮೆ.ವ್ಯಾ {0} ಮೆ.ವ್ಯಾ {0} ಮೆ.ವ್ಯಾ - - ಮಿ.ವ್ಯಾ - {0} ಮಿ.ವ್ಯಾ - {0} ಮಿ.ವ್ಯಾ + + ಕಿ.ವ್ಯಾ + {0} ಕಿ.ವ್ಯಾ + {0} ಕಿ.ವ್ಯಾ ವ್ಯಾಟ್‌ಗಳು {0} ವ್ಯಾ. {0} ವ್ಯಾ. + + ಮಿ.ವ್ಯಾ + {0} ಮಿ.ವ್ಯಾ + {0} ಮಿ.ವ್ಯಾ + + + ಹೆಚ್‌ಪಿ + {0} ಹೆಚ್‌ಪಿ + {0} ಹೆಚ್‌ಪಿ + ಹೆ.ಪ್ಯಾ. {0} ಹೆ.ಪ್ಯಾ {0} ಹೆ.ಪ್ಯಾ - - ಮರ್ಕ್ಯು.ಅಂ. - {0} ಮರ್ಕ್ಯು. ಅಂ. - {0} ಮರ್ಕ್ಯು. ಅಂ. - - - ಮಿ.ಬಾರ್‌ - {0} ಮಿ.ಬಾರ್ - {0} ಮಿ.ಬಾರ್ - ಮರ್ಕ್ಯು.ಮಿ.ಮೀ. {0} ಮರ್ಕ್ಯು.ಮಿ.ಮೀ. @@ -6501,10 +6780,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಪ್ರ.ಚ.ಇಂ.ಪೌಂ. {0} ಪ್ರ.ಚ.ಇಂ.ಪೌಂ. - - ಕಾರ. - {0} ಕಾರ. - {0} ಕಾರ. + + ಮರ್ಕ್ಯು.ಅಂ. + {0} ಮರ್ಕ್ಯು. ಅಂ. + {0} ಮರ್ಕ್ಯು. ಅಂ. + + + ಮಿ.ಬಾರ್‌ + {0} ಮಿ.ಬಾರ್ + {0} ಮಿ.ಬಾರ್ ಕಿ.ಮೀ/ಗಂ @@ -6521,6 +6805,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಮೈ/ಗಂ {0} ಮೈ/ಗಂ + + ನಾ + {0} ನಾ + {0} ನಾ + + + ° + {0}° + {0}° + ಡಿ.ಸೆ. {0}°ಸೆ @@ -6532,34 +6826,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0}°ಫ್ಯಾ - K - {0} K - {0} K - - - ಎಕರೆ ಅಡಿ - {0} ಎ. ಅ - {0} ಎ. ಅ - - - ಸೆಂ.ಲೀ - {0} ಸೆಂ.ಲೀ - {0} ಸೆಂ.ಲೀ - - - ಸೆಮೀ³ - {0} ಸೆಮೀ³ - {0} ಸೆಮೀ³ - - - ಅಡಿ³ - {0} ಅಡಿ³ - {0} ಅಡಿ³ - - - ಅಂಗುಲಗಳು³ - {0} ಅಂ³ - {0} ಅಂ³ + ಕೆ + {0} ಕೆ + {0} ಕೆ ಕಿಮೀ³ @@ -6570,6 +6839,13 @@ For terms of use, see http://www.unicode.org/copyright.html ಮೀ³ {0} ಮೀ³ {0} ಮೀ³ + {0}/ಮೀ³ + + + ಸೆಮೀ³ + {0} ಸೆಮೀ³ + {0} ಸೆಮೀ³ + {0}/ಸೆಮೀ³ ಮೈ³ @@ -6581,25 +6857,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಗಜ³ {0} ಗಜ³ - - ಕಪ್‍ಗಳು - {0} ಕ - {0} ಕ + + ಅಡಿ³ + {0} ಅಡಿ³ + {0} ಅಡಿ³ - - ಡೆ.ಲೀ - {0} ಡೆ.ಲೀ - {0} ಡೆ.ಲೀ + + ಅಂಗುಲಗಳು³ + {0} ಅಂ³ + {0} ಅಂ³ - - ಫ್ಲೂ.ಔ - {0} ಫ್ಲೂ.ಔ - {0} ಫ್ಲೂ.ಔ - - - ಗ್ಯಾ - {0} ಗ್ಯಾ - {0} ಗ್ಯಾ + + ಮೆ.ಲೀ + {0} ಮೆ.ಲೀ + {0} ಮೆ.ಲೀ ಹೆ.ಲೀ @@ -6610,27 +6881,64 @@ For terms of use, see http://www.unicode.org/copyright.html ಲೀಟರ್‌ಗಳು {0} ಲೀ {0} ಲೀ + {0}/ಲೀ - - ಮೆ.ಲೀ - {0} ಮೆ.ಲೀ - {0} ಮೆ.ಲೀ + + ಡೆ.ಲೀ + {0} ಡೆ.ಲೀ + {0} ಡೆ.ಲೀ + + + ಸೆಂ.ಲೀ + {0} ಸೆಂ.ಲೀ + {0} ಸೆಂ.ಲೀ ಮಿ.ಲೀ {0} ಮಿ.ಲೀ {0} ಮಿ.ಲೀ - - ಪಿಂಟ್‍ಗಳು - {0} ಪಿಂಟ್‌ - {0} ಪಿಂಟ್‌ + + ಮೆ.ಪಿಂ + {0} ಮೆ.ಪಿಂ + {0} ಮೆ.ಪಿಂ + + + ಮೆ.ಕಪ್‌ + {0} ಮೆ.ಕಪ್‌ + {0} ಮೆ.ಕ + + + ಎಕರೆ ಅಡಿ + {0} ಎ. ಅ + {0} ಎ. ಅ + + + ಗ್ಯಾ + {0} ಗ್ಯಾ + {0} ಗ್ಯಾ + {0}/ಗ್ಯಾ ಕಾ.ಭಾ {0} ಕಾ.ಭಾ {0} ಕಾ.ಭಾ + + ಪಿಂಟ್‍ಗಳು + {0} ಪಿಂಟ್‌ + {0} ಪಿಂಟ್‌ + + + ಕಪ್‍ಗಳು + {0} ಕ + {0} ಕ + + + ಫ್ಲೂ.ಔ + {0} ಫ್ಲೂ.ಔ + {0} ಫ್ಲೂ.ಔ + ಟೇ.ಸ್ಪೂ {0} ಟೇ.ಸ್ಪೂ @@ -6641,6 +6949,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ಟೀ ಸ್ಪೂ {0} ಟೀ ಸ್ಪೂ + + {0}ಪೂ + {0}ಉ + {0}ದ + {0}ಪ + @@ -6650,6 +6964,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ಜಿ-ಫೋ. {0}ಜಿ-ಫೋ. + + {0}° + {0}° + {0}ನಿ. {0}ನಿ. @@ -6658,26 +6976,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ಸೆಕೆಂ {0}ಸೆಕೆಂ - - {0}° - {0}° - - - {0} ಎಕ. - {0} ಎಕ. + + {0} ಚ.ಕಿಮೀ. + {0} ಚ.ಕಿಮೀ. {0} ಹೆ. {0} ಹೆ. - - {0}ಚ.ಅ - {0}ಚ.ಅ - - - {0} ಚ.ಕಿಮೀ. - {0} ಚ.ಕಿಮೀ. - {0} ಮೀ² {0} ಮೀ² @@ -6686,6 +6992,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ಚ.ಮೀ. {0}ಚ.ಮೀ. + + {0} ಎಕ. + {0} ಎಕ. + + + {0}ಚ.ಅ + {0}ಚ.ಅ + + + ಲೀ/100ಕಿ.ಮೀ + {0}L/100km + {0}L/100km + + + ವರ್ಷಗಳು + {0}ವ + {0}ವ + + + ತಿಂಗಳು + {0}ತಿಂ. + {0}ತಿಂ. + + + ವಾರ + {0}ವಾರ + {0}ವಾರ + ದಿನ {0}ದಿನ @@ -6696,66 +7030,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ಗಂ. {0}ಗಂ. - - ಮಿ.ಸೆ. - {0}ಮಿ.ಸೆ. - {0}ಮಿ.ಸೆ. - ನಿಮಿಷ {0}ನಿಮಿ {0}ನಿಮಿ - - ತಿಂಗಳು - {0}ತಿಂ. - {0}ತಿಂ. - ಸೆಕೆಂ {0}ಸೆಕೆಂ {0} ಸೆಕೆಂ - - ವಾರ - {0}ವಾರ - {0}ವಾರ - - - ವರ್ಷಗಳು - {0}ವ - {0}ವ - - - ಸೆಮೀ - {0} ಸೆಮೀ - {0} ಸೆಮೀ - - - {0} ′ - {0} ′ - - - {0} ″ - {0} ″ + + ಮಿ.ಸೆ. + {0}ಮಿ.ಸೆ. + {0}ಮಿ.ಸೆ. ಕಿಮೀ {0}ಕಿಮೀ {0}ಕಿಮೀ - - {0}ಹಗು. ವ. - {0}ಹಗು. ವ. - ಮೀಟರ್‌ಗಳು {0}ಮೀ {0}ಮೀ - - {0}ಮೈ. - {0}ಮೈ. + + ಸೆಮೀ + {0} ಸೆಮೀ + {0} ಸೆಮೀ ಮಿಮೀ @@ -6766,31 +7069,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ಪಿಎಂ {0}ಪಿಎಂ + + {0}ಮೈ. + {0}ಮೈ. + {0}ಗ {0} ಗ - - ಗ್ರಾಂಗಳು - {0}ಗ್ರಾ - {0}ಗ್ರಾ + + {0} ′ + {0} ′ + + + {0} ″ + {0} ″ + + + {0}ಹಗು. ವ. + {0}ಹಗು. ವ. ಕೆಜಿ {0}ಕೆಜಿ {0}ಕೆಜಿ - - {0}ಔ - {0}ಔ + + ಗ್ರಾಂ + {0}ಗ್ರಾ + {0}ಗ್ರಾ {0}# {0}# - - {0}ಹೆಚ್‌ಪಿ - {0}ಹೆಚ್‌ಪಿ + + {0}ಔ + {0}ಔ {0}ಕಿ.ವ್ಯಾ @@ -6800,6 +7115,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ವ್ಯಾ. {0}ವ್ಯಾ. + + {0}ಹೆಚ್‌ಪಿ + {0}ಹೆಚ್‌ಪಿ + {0}ಹೆ.ಪ್ಯಾ {0}ಹೆ.ಪ್ಯಾ @@ -6847,6 +7166,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ಲೀ {0}ಲೀ + + {0}ಪೂ + {0}ಉ + {0}ದ + {0}ಪ + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kn_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kn_IN.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kn_IN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kn_IN.xml index 5e9f7945ef1..189fc9e4fd6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kn_IN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kn_IN.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ko.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ko.xml similarity index 88% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ko.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ko.xml index 69a55df41b9..c61a1269218 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ko.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ko.xml @@ -1,13 +1,12 @@ - - - + @@ -46,15 +45,14 @@ For terms of use, see http://www.unicode.org/copyright.html 아라와크어 모로코 아랍어 이집트 아랍어 - 아샘어 - 아수어 + 아삼어 + 아수어 아스투리아어 아바릭어 아와히어 아이마라어 아제르바이잔어 아제리어 - 남아제르바이잔어 바슈키르어 발루치어 발리어 @@ -67,6 +65,7 @@ For terms of use, see http://www.unicode.org/copyright.html 베나어 바푸트어 불가리아어 + 서부 발로치어 호즈푸리어 비슬라마어 비콜어 @@ -91,7 +90,7 @@ For terms of use, see http://www.unicode.org/copyright.html 카도어 카리브어 카유가어 - 아삼어 + 앗삼어 체첸어 세부아노어 치가어 @@ -118,20 +117,20 @@ For terms of use, see http://www.unicode.org/copyright.html 덴마크어 다코타어 다르그와어 - 타이타어 + 타이타어 독일어 - 고지 독일어 (스위스) + 고지 독일어(스위스) 델라웨어어 슬라브어 도그리브어 딩카어 - 자르마어 + 자르마어 도그리어 저지 소르비아어 - 드와라어 + 두알라어 중세 네덜란드어 디베히어 - 졸라 포니어 + 졸라 포니어 드율라어 종카어 다장가어 @@ -144,13 +143,9 @@ For terms of use, see http://www.unicode.org/copyright.html 엘람어 영어 영어(호주) - 영어 (캐나다) - 영어 (영국식) 영어, 중세 에스페란토어 스페인어 - 중남미 스페인어 - 유럽식 스페인어 에스토니아어 바스크어 이원도어 @@ -164,14 +159,12 @@ For terms of use, see http://www.unicode.org/copyright.html 페로어 폰어 프랑스어 - 프랑스어 (캐나다) - 프랑스어 (스위스) 중세 프랑스어 고대 프랑스어 북부 프리슬란드어 동부 프리슬란드어 프리우리안어 - 프리지아어 + 서프리지아어 아일랜드어 가어 가가우스어 @@ -194,7 +187,7 @@ For terms of use, see http://www.unicode.org/copyright.html 그리스어, 고대 독일어(스위스) 구자라트어 - 구시어 + 구시어 맹크스어 그위친어 하우사어 @@ -245,25 +238,25 @@ For terms of use, see http://www.unicode.org/copyright.html 카바르디어 카넴부어 티얍어 - 마콘데어 + 마콘데어 크리올어 코로어 콩고어 카시어 호탄어 - 코이라 친니어 + 코이라 친니어 코와르어 키쿠유어 쿠안야마어 카자흐어 카코어 그린란드어 - 칼렌진어 + 칼렌진어 캄보디아어 킴분두어 칸나다어 한국어 - 코미페르먀크어 + 코미페르먀크어 코카니어 코스라이엔어 크펠레어 @@ -272,7 +265,7 @@ For terms of use, see http://www.unicode.org/copyright.html 카렐리야어 쿠르크어 카슈미르어 - 샴발라어 + 샴발라어 바피아어 콜로그니안어 쿠르드어 @@ -283,7 +276,7 @@ For terms of use, see http://www.unicode.org/copyright.html 키르기스어 라틴어 라디노어 - 랑기어 + 랑기어 라한다어 람바어 룩셈부르크어 @@ -296,6 +289,7 @@ For terms of use, see http://www.unicode.org/copyright.html 라오어 몽구어 로지어 + 북부 루리어 리투아니아어 루바-카탄가어 루바-룰루아어 @@ -303,7 +297,7 @@ For terms of use, see http://www.unicode.org/copyright.html 룬다어 루오어 루샤이어 - 루야어 + 루야어 라트비아어 마두라어 마파어 @@ -316,11 +310,11 @@ For terms of use, see http://www.unicode.org/copyright.html 모크샤어 만다르어 멘데어 - 메루어 - 모리스얀어 + 메루어 + 모리스얀어 말라가시어 아일랜드어, 중세 - 마크후와-메토어 + 마크후와-메토어 메타어 마셜제도어 마오리어 @@ -337,7 +331,7 @@ For terms of use, see http://www.unicode.org/copyright.html 서부 마리어 말레이어 몰타어 - 문당어 + 문당어 다중 언어 크리크어 미란데어 @@ -345,10 +339,10 @@ For terms of use, see http://www.unicode.org/copyright.html 버마어 미예네어 엘즈야어 - 마잔데라니어 + 마잔데라니어 나우루어 나폴리어 - 나마어 + 나마어 노르웨이어(보크말) 북부 은데벨레어 저지 독일어 @@ -359,7 +353,7 @@ For terms of use, see http://www.unicode.org/copyright.html 니웨언어 네덜란드어 플라망어 - 크와시오어 + 크와시오어 노르웨이어(니노르스크) 느기엠본어 노르웨이어 @@ -368,7 +362,7 @@ For terms of use, see http://www.unicode.org/copyright.html 응코어 남부 은데벨레어 소토어 (북부) - 누에르어 + 누에르어 나바호어 네와르어 (고전) 니안자어; 치츄어; 츄어 @@ -398,47 +392,46 @@ For terms of use, see http://www.unicode.org/copyright.html 고대 프로방스어 파슈토어 포르투갈어 - 포르투갈어 (브라질) - 유럽식 포르투갈어 케추아어 키체어 라자스탄어 라파뉴이 라로통가어 - 레토로만어 + 로만시어 룬디어 루마니아어 몰도바어 - 롬보어 + 롬보어 집시어 어근 러시아어 루신어 아로마니아어 르완다어 - 르와어 + 르와어 산스크리트어 산다웨어 야큐트어 사마리아 아랍어 - 삼부루어 + 삼부루어 사사크어 산탈리어 느감바이어 - 상구어 + 상구어 사르디니아어 시칠리아어 스코틀랜드어 신디어 + 남부 쿠르드어 북부 사미어 세네카어 - 세나어 + 세나어 셀쿠프어 - 코이야보로 세니어 + 코이야보로 세니어 산고어 아일랜드, 고대 세르비아-크로아티아어 - 타셸히트어 + 타셸히트어 샨어 차디언 아라비아어 스리랑카어 @@ -467,14 +460,14 @@ For terms of use, see http://www.unicode.org/copyright.html 수메르어 스웨덴어 스와힐리어 + 콩고 스와힐리어 코모로어 - 콩고 스와힐리어 시리아어 (고전) 시리아어 타밀어 텔루구어 팀니어 - 테조어 + 테조어 테레노어 테툼어 타지크어 @@ -502,10 +495,10 @@ For terms of use, see http://www.unicode.org/copyright.html 툼부카어 투발루어 트위어 - 타사와크어 + 타사와크어 타히티어 투비니안어 - 중앙모로코 타마지트어 + 중앙 모로코 타마지트어 우드말트어 위구르어 유가리틱어 @@ -519,16 +512,17 @@ For terms of use, see http://www.unicode.org/copyright.html 베트남어 볼라퓌크어 보틱어 - 분조어 + 분조어 왈론어 월저어 와라모어 와라이어 와쇼어 - 올로프어 + 왈피리어 + 월로프어 칼미크어 코사어 - 소가어 + 소가어 야오족어 얍페세어 양본어 @@ -540,10 +534,8 @@ For terms of use, see http://www.unicode.org/copyright.html 사포테크어 블리스 심볼 제나가어 - 표준 모로코 타마제크어 + 표준 모로코 타마지트어 중국어 - 중국어(간체) - 중국어(번체) 줄루어 주니어 언어 관련 내용 없음 @@ -553,7 +545,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -597,9 +589,9 @@ For terms of use, see http://www.unicode.org/copyright.html - + - + @@ -722,7 +714,7 @@ For terms of use, see http://www.unicode.org/copyright.html 북아메리카 남아메리카(남미) 오세아니아 - 서아프리카 + 서부 아프리카 중앙 아메리카 동부 아프리카 북부 아프리카 @@ -747,15 +739,14 @@ For terms of use, see http://www.unicode.org/copyright.html 북유럽 서유럽 라틴 아메리카 - 어센션 섬 + 어센션 섬 안도라 - 아랍에미리트 연합 + 아랍에미리트 아프가니스탄 앤티가 바부다 앵귈라 알바니아 아르메니아 - 네덜란드령 안틸레스 앙골라 남극 대륙 아르헨티나 @@ -787,7 +778,7 @@ For terms of use, see http://www.unicode.org/copyright.html 벨라루스 벨리즈 캐나다 - 코코스제도 + 코코스 제도 콩고-킨샤사 콩고민주공화국 중앙 아프리카 공화국 @@ -795,7 +786,8 @@ For terms of use, see http://www.unicode.org/copyright.html 콩고 공화국 스위스 코트디부아르 - 쿡제도 + 아이보리 코스트 + 쿡 제도 칠레 카메룬 중국 @@ -822,7 +814,7 @@ For terms of use, see http://www.unicode.org/copyright.html 서사하라 에리트리아 스페인 - 이디오피아 + 에티오피아 유럽 연합 핀란드 피지 @@ -851,7 +843,7 @@ For terms of use, see http://www.unicode.org/copyright.html 기니비사우 가이아나 - 홍콩, 중국 특별행정구 + 홍콩(중국 특별행정구) 홍콩 허드 맥도널드 제도 온두라스 @@ -882,7 +874,7 @@ For terms of use, see http://www.unicode.org/copyright.html 조선민주주의인민공화국 대한민국 쿠웨이트 - 케이맨제도 + 케이맨 제도 카자흐스탄 라오스 레바논 @@ -899,15 +891,15 @@ For terms of use, see http://www.unicode.org/copyright.html 모나코 몰도바 몬테네그로 - 생 마르탱 + 생마르탱 마다가스카르 - 마샬 군도 + 마셜 제도 마케도니아 마케도니아(FYROM) 말리 미얀마 몽골 - 마카오, 중국 특별행정구 + 마카오(중국 특별행정구) 마카오 북마리아나제도 마르티니크 @@ -1000,7 +992,7 @@ For terms of use, see http://www.unicode.org/copyright.html 미국 우루과이 우즈베키스탄 - 바티칸시국 + 바티칸 시국 세인트빈센트그레나딘 베네수엘라 영국령 버진아일랜드 @@ -1081,6 +1073,9 @@ For terms of use, see http://www.unicode.org/copyright.html 숫자 정렬 정렬 강도 통화 + 시간표시법(12시, 24시) + 줄바꿈 스타일 + 계량법 숫자 시간대 방언 @@ -1088,112 +1083,123 @@ For terms of use, see http://www.unicode.org/copyright.html 공개 여부 - 아라비아-인도식 숫자 - 확장형 아라비아-인도식 숫자 - 아르메니아 숫자 - 아르메니아 소문자 숫자 - 발리 숫자 - 뱅골 숫자 - 중국어 번체 정렬 순서 (Big5) - 브라미 숫자 - 불교력 - 챠크마 숫자 - 참 숫자 - 중국력 - 콥트력 - 단기력 - 데바나가리 숫자 - 사전 정렬순 - 기본 유니코드 정렬 순서 - 에티오피아 숫자 - 에티오피아력 - 에티오피아 아메테 알렘력 - 재무 숫자 - 전체 숫자 - 중국어 간체 정렬 순서 (GB2312) - 그루지아 숫자 - 태양력 - 그리스 숫자 - 그리스어 소문자 숫자 - 구자라트 숫자 - 굴묵키 숫자 - 중국어 십진 숫자 - 중국어 간체 숫자 - 중국어 간체 재무 숫자 - 중국어 번체 숫자 - 중국어 번체 재무 숫자 - 히브리 숫자 - 히브리력 - 모두 정렬 - 인도력 - 이슬람력 - 이슬람 상용력 - ISO-8601 달력 - 일본력 - 자바 숫자 - 일본 숫자 - 일본 재무 숫자 - 카야 리식 숫자 - 크메르 숫자 - 칸나다 숫자 - 타이 탐 호라 숫자 - 타이 탐탐 숫자 - 라오 숫자 - 서양 숫자 - 렙차 숫자 - 림부 숫자 - 첫 소문자 정렬 - 말라얄람 숫자 - 몽골 숫자 - 메이테이 마옉 숫자 - 미얀마 숫자 - 미얀마 샨 숫자 - 기본 숫자 - 악센트 일반 정렬 - 일반 대/소문자 정렬 순서 - 대/소문자 무시 정렬 - 가나 별도 정렬 - 표준화 없이 정렬 - 숫자별 정렬 - 기호 정렬 - 올치키 숫자 - 오리야 숫자 - 오스마냐 숫자 - 페르시안력 - 전화번호부순 - 소리나는 대로 정렬 순서 - 병음순 - 기본 문자만 정렬 - 악센트/대소문자/전반각/가나 정렬 - 개정 정렬순 - 대만력 - 로마 숫자 - 로마 소문자 숫자 - 사우라슈트라 숫자 - 범용 검색 - 한글 자음으로 검색 - 악센트 정렬 - 기호 무시 정렬 - 샤라다 숫자 - 표준 정렬 순서 - 자획순 - 순다 숫자 - 타밀어 숫자 - 타밀 숫자 - 텔루구 숫자 - 악센트/대소문자/전반각 정렬 - 태국 숫자 - 티벳 숫자 - 전통 역법 - 전통적인 숫자 - 부수순 - 대문자 우선 정렬 - 바이 숫자 - 악센트 역순 정렬 - 대/소문자 구분 정렬 - 가나를 다르게 정렬 - 유니코드 표준화 정렬 - 숫자 정렬 + 불교력 + 중국력 + 콥트력 + 단기력 + 에티오피아력 + 에티오피아 아메테 알렘력 + 태양력 + 히브리력 + 인도력 + 이슬람력 + 이슬람 상용력 + ISO-8601 달력 + 일본력 + 페르시안력 + 대만력 + 기호 정렬 + 기호 무시 정렬 + 악센트 일반 정렬 + 악센트 역순 정렬 + 첫 소문자 정렬 + 일반 대/소문자 정렬 순서 + 대문자 우선 정렬 + 대/소문자 무시 정렬 + 대/소문자 구분 정렬 + 가나 별도 정렬 + 가나를 다르게 정렬 + 중국어 번체 정렬 순서 (Big5) + 사전 정렬순 + 기본 유니코드 정렬 순서 + 중국어 간체 정렬 순서 (GB2312) + 전화번호부순 + 소리나는 대로 정렬 순서 + 병음순 + 개정 정렬순 + 범용 검색 + 한글 자음으로 검색 + 표준 정렬 순서 + 자획순 + 전통 역법 + 부수순 + 주음순 + 표준화 없이 정렬 + 유니코드 표준화 정렬 + 숫자별 정렬 + 숫자 정렬 + 모두 정렬 + 기본 문자만 정렬 + 악센트/대소문자/전반각/가나 정렬 + 악센트 정렬 + 악센트/대소문자/전반각 정렬 + 12시간제(0–11) + 12시간제(1–12) + 24시간제(0–23) + 24시간제(1–24) + 줄바꿈 - 넓게 + 줄바꿈 - 보통 + 줄바꿈 - 좁게 + 미터법 + 야드파운드법 + 미국 계량법 + 아라비아-인도식 숫자 + 확장형 아라비아-인도식 숫자 + 아르메니아 숫자 + 아르메니아 소문자 숫자 + 발리 숫자 + 뱅골 숫자 + 브라미 숫자 + 챠크마 숫자 + 참 숫자 + 데바나가리 숫자 + 에티오피아 숫자 + 재무 숫자 + 전체 숫자 + 그루지아 숫자 + 그리스 숫자 + 그리스어 소문자 숫자 + 구자라트 숫자 + 굴묵키 숫자 + 중국어 십진 숫자 + 중국어 간체 숫자 + 중국어 간체 재무 숫자 + 중국어 번체 숫자 + 중국어 번체 재무 숫자 + 히브리 숫자 + 자바 숫자 + 일본 숫자 + 일본 재무 숫자 + 카야 리식 숫자 + 크메르 숫자 + 칸나다 숫자 + 타이 탐 호라 숫자 + 타이 탐탐 숫자 + 라오 숫자 + 서양 숫자 + 렙차 숫자 + 림부 숫자 + 말라얄람 숫자 + 몽골 숫자 + 메이테이 마옉 숫자 + 미얀마 숫자 + 미얀마 샨 숫자 + 기본 숫자 + 올치키 숫자 + 오리야 숫자 + 오스마냐 숫자 + 로마 숫자 + 로마 소문자 숫자 + 사우라슈트라 숫자 + 샤라다 숫자 + 순다 숫자 + 타밀어 숫자 + 타밀 숫자 + 텔루구 숫자 + 태국 숫자 + 티벳 숫자 + 전통적인 숫자 + 바이 숫자 미국 지명위원회(BGN) @@ -1455,6 +1461,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM d일 MMM d일 (E) MMM d일 EEEE + MMMM d일 U년 U. M. d. U년 @@ -1466,6 +1473,7 @@ For terms of use, see http://www.unicode.org/copyright.html U년 MMM d일 U년 MMM d일 (E) U년 MMM d일 EEEE + U년 MMMM U년 QQQ U년 QQQQ @@ -1489,6 +1497,21 @@ For terms of use, see http://www.unicode.org/copyright.html 미스라 나시 + + 투트 + 바바흐 + 하투르 + 키야흐크 + 투바흐 + 암쉬르 + 바라마트 + 바라문다흐 + 바샨스 + 바우나흐 + 아비브 + 미스라 + 나시 + @@ -1649,6 +1672,20 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + + + + + + + + + + + @@ -1763,6 +1800,20 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + + + + + + + + + + + @@ -1807,6 +1858,21 @@ For terms of use, see http://www.unicode.org/copyright.html 내하세 파구맨 + + 매스캐램 + 테켐트 + 헤다르 + 타흐사스 + 테르 + 얘카티트 + 매가비트 + 미야지야 + 겐보트 + 새네 + 함레 + 내하세 + 파구맨 + @@ -1888,13 +1954,14 @@ For terms of use, see http://www.unicode.org/copyright.html d일 + ccc d일 (E) d일 EEEE G y년 - G y년 MMM - G y년 MMM d일 - G y년 MMM d일 (E) - G y년 MMM d일 EEEE + G y년 MMM월 + G y년 MMM월 d일 + G y년 MMM월 d일 (E) + G y년 MMM월 d일 EEEE a h시 H시 HH:mm:ss @@ -1907,9 +1974,10 @@ For terms of use, see http://www.unicode.org/copyright.html M. d. (E) M. d. EEEE LLL - MMM d일 - MMM d일 (E) - MMM d일 EEEE + MMM월 d일 + MMM월 d일 (E) + MMM월 d일 EEEE + MMMM월 d일 mm:ss G y년 G y년 @@ -1917,10 +1985,11 @@ For terms of use, see http://www.unicode.org/copyright.html G y. M. d. G y. M. d. (E) G y. M. d. EEEE - G y년 MMM - G y년 MMM d일 - G y년 MMM d일 (E) - G y년 MMM d일 EEEE + G y년 MMM월 + G y년 MMM월 d일 + G y년 MMM월 d일 (E) + G y년 MMM월 d일 EEEE + G y년 MMMM월 G y년 QQQ G y년 QQQQ @@ -1988,7 +2057,7 @@ For terms of use, see http://www.unicode.org/copyright.html M월 d일 EEEE ~ M월 d일 EEEE - LLLL–LLLL + LLLL ~ LLLL G y년 ~ y년 @@ -2246,28 +2315,88 @@ For terms of use, see http://www.unicode.org/copyright.html - - 오전 + + 자정 + AM 정오 - 오후 + PM + 새벽 + 오전 + 오후 + 저녁 + + + + 자정 + AM + 정오 + PM + 새벽 + 오전 + 오후 + 저녁 + + 자정 오전 정오 오후 + 새벽 + 오전 + 오후 + 저녁 + + + + + + 자정 + 오전 + 정오 + 오후 + 새벽 + 오전 + 오후 + 저녁 + + + + 자정 + AM + 정오 + PM + 새벽 + 오전 + 오후 + 저녁 + + + + 자정 + 오전 + 정오 + 오후 + 새벽 + 오전 + 오후 + 저녁 + - 기원전 - 서기 - - 기원전 BCE 서기 CE + + + BC + BCE + AD + CE @@ -2368,6 +2497,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM d일 MMM d일 (E) MMM d일 EEEE + MMMM d일 mm:ss mm:ss y년 @@ -2380,11 +2510,12 @@ For terms of use, see http://www.unicode.org/copyright.html y년 MMM d일 y년 MMM d일 (E) y년 MMM d일 EEEE + y년 MMMM y년 QQQ y년 QQQQ - {0} {1} + {0} {1} {0} ~ {1} @@ -2510,6 +2641,22 @@ For terms of use, see http://www.unicode.org/copyright.html 압월 엘룰월 + + 디스리월 + 말케스월 + 기슬르월 + 데벳월 + 스밧월 + 아달월 1 + 아달월 + 아달월 2 + 닛산월 + 이야르월 + 시완월 + 담무르월 + 압월 + 엘룰월 + @@ -2553,6 +2700,40 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + 무하람 + 사파르 + 라비 알 아왈 + 라비 알 쎄니 + 주마다 알 아왈 + 주마다 알 쎄니 + 라잡 + 쉐아반 + 라마단 + 쉐왈 + 듀 알 까다 + 듀 알 히자 + + + + + 무하람 + 사파르 + 라비 알 아왈 + 라비 알 쎄니 + 주마다 알 아왈 + 주마다 알 쎄니 + 라잡 + 쉐아반 + 라마단 + 쉐왈 + 듀 알 까다 + 듀 알 히자 + + + AH @@ -2802,6 +2983,70 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + + 화르바딘 + 오르디베헤쉬트 + 호르다드 + 티르 + 모르다드 + 샤흐리바르 + 메흐르 + 아반 + 아자르 + 다이 + 바흐만 + 에스판드 + + + 화르바딘 + 오르디베헤쉬트 + 호르다드 + 티르 + 모르다드 + 샤흐리바르 + 메흐르 + 아반 + 아자르 + 다이 + 바흐만 + 에스판드 + + + + + 화르바딘 + 오르디베헤쉬트 + 호르다드 + 티르 + 모르다드 + 샤흐리바르 + 메흐르 + 아반 + 아자르 + 다이 + 바흐만 + 에스판드 + + + 화르바딘 + 오르디베헤쉬트 + 호르다드 + 티르 + 모르다드 + 샤흐리바르 + 메흐르 + 아반 + 아자르 + 다이 + 바흐만 + 에스판드 + + + + @@ -2818,8 +3063,8 @@ For terms of use, see http://www.unicode.org/copyright.html 작년 - 올해 - 내년 + 올해 + 내년 {0}년 후 @@ -3645,7 +3890,7 @@ For terms of use, see http://www.unicode.org/copyright.html - 영국 일광 절약 시간 + 영국 하계 표준시 런던 @@ -4036,6 +4281,9 @@ For terms of use, see http://www.unicode.org/copyright.html 포트모르즈비 + + 부갱빌 + 마닐라 @@ -4120,6 +4368,9 @@ For terms of use, see http://www.unicode.org/copyright.html 이르쿠츠크 + + 치타 + 야쿠츠크 @@ -4138,6 +4389,9 @@ For terms of use, see http://www.unicode.org/copyright.html 마가단 + + 스레드네콜림스크 + 캄차카 @@ -4462,7 +4716,7 @@ For terms of use, see http://www.unicode.org/copyright.html 알마티 표준 시간 알마티 표준 표준시 - 알마티 서머 타임 + 알마티 하계 표준시 @@ -4504,7 +4758,7 @@ For terms of use, see http://www.unicode.org/copyright.html 아나디리 시간 아나디리 표준시 - 아나디리 서머 타임 + 아나디리 하계 표준시 @@ -4518,14 +4772,14 @@ For terms of use, see http://www.unicode.org/copyright.html 악타우 표준 시간 악타우 표준 표준시 - 악타우 서머 타임 + 악타우 하계 표준시 악퇴베 표준 시간 악퇴베 표준 표준시 - 악퇴베 서머 타임 + 악퇴베 하계 표준시 @@ -4565,7 +4819,7 @@ For terms of use, see http://www.unicode.org/copyright.html - 중앙 오스트레일리아 시간 + 오스트레일리아 중부 시간 오스트레일리아 중부 표준시 오스트레일리아 중부 하계 표준시 @@ -4579,14 +4833,14 @@ For terms of use, see http://www.unicode.org/copyright.html - 동부 오스트레일리아 시간 + 오스트레일리아 동부 시간 오스트레일리아 동부 표준시 오스트레일리아 동부 하계 표준시 - 서부 오스트레일리아 시간 + 오스트레일리아 서부 시간 오스트레일리아 서부 표준시 오스트레일리아 서부 하계 표준시 @@ -4700,7 +4954,7 @@ For terms of use, see http://www.unicode.org/copyright.html 쿡 제도 시간 쿡 제도 표준시 - 쿡 제도 절반 서머 타임 + 쿡 제도 절반 하계 표준시 @@ -4741,14 +4995,14 @@ For terms of use, see http://www.unicode.org/copyright.html 중부 유럽 시간 중부 유럽 표준시 - 중부유럽 하계 표준시 + 중부 유럽 하계 표준시 - 동부유럽 시간 - 동부유럽 표준시 - 동부유럽 하계 표준시 + 동유럽 시간 + 동유럽 표준시 + 동유럽 하계 표준시 @@ -4760,21 +5014,21 @@ For terms of use, see http://www.unicode.org/copyright.html 서유럽 시간 서유럽 표준시 - 서유럽 서머 타임 + 서유럽 하계 표준시 - 포클랜드 시간 + 포클랜드 제도 시간 포클랜드 제도 표준시 - 포클랜드 하계 표준시 + 포클랜드 제도 하계 표준시 피지 시간 피지 표준시 - 피지 서머 타임 + 피지 하계 표준시 @@ -4926,7 +5180,7 @@ For terms of use, see http://www.unicode.org/copyright.html 페트로파블롭스크-캄차츠키 시간 페트로파블롭스크-캄차츠키 표준시 - 페트로파블롭스크-캄차츠키 서머 타임 + 페트로파블롭스크-캄차츠키 하계 표준시 @@ -4984,7 +5238,7 @@ For terms of use, see http://www.unicode.org/copyright.html 마카오 시간 마카오 표준 시간 - 마카오 서머 타임 + 마카오 하계 표준시 @@ -5078,7 +5332,7 @@ For terms of use, see http://www.unicode.org/copyright.html 뉴칼레도니아 시간 뉴칼레도니아 표준시 - 뉴 칼레도니아 하계 표준시 + 뉴칼레도니아 하계 표준시 @@ -5135,7 +5389,7 @@ For terms of use, see http://www.unicode.org/copyright.html 파키스탄 시간 파키스탄 표준시 - 파키스탄 서머 타임 + 파키스탄 하계 표준시 @@ -5195,7 +5449,7 @@ For terms of use, see http://www.unicode.org/copyright.html 키질로르다 시간 키질로르다 표준 시간 - 키질로르다 서머 타임 + 키질로르다 하계 표준시 @@ -5219,7 +5473,7 @@ For terms of use, see http://www.unicode.org/copyright.html 사마라 시간 사마라 표준시 - 사마라 서머 타임 + 사마라 하계 표준시 @@ -5285,7 +5539,7 @@ For terms of use, see http://www.unicode.org/copyright.html 통가 시간 통가 표준시 - 통가 서머 타임 + 통가 하계 표준시 @@ -5323,7 +5577,7 @@ For terms of use, see http://www.unicode.org/copyright.html 바누아투 시간 바누아투 표준시 - 바누아투 서머 타임 + 바누아투 하계 표준시 @@ -5404,7 +5658,7 @@ For terms of use, see http://www.unicode.org/copyright.html - 0000 + 0 0만 00만 000만 @@ -5420,7 +5674,7 @@ For terms of use, see http://www.unicode.org/copyright.html - 0000 + 0 0만 00만 000만 @@ -5445,7 +5699,7 @@ For terms of use, see http://www.unicode.org/copyright.html - #,##0% + #,##0% @@ -5455,10 +5709,26 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00 - ¤#,##0.00;(¤#,##0.00) + ¤#,##0.00;(¤#,##0.00) - {0}{1} + + + 0 + ¤0만 + ¤00만 + ¤000만 + ¤0000만 + ¤0억 + ¤00억 + ¤000억 + ¤0000억 + ¤0조 + ¤00조 + ¤000조 + + + {0} {1} @@ -5496,6 +5766,7 @@ For terms of use, see http://www.unicode.org/copyright.html 앙골라 콴자 앙골라 콴자 AOA + Kz 앙골라 콴자 (1977–1990) @@ -5553,6 +5824,7 @@ For terms of use, see http://www.unicode.org/copyright.html 보스니아-헤르체고비나 태환 마르크 보스니아-헤르체고비나 태환 마르크 BAM + KM 보스니아-헤르체고비나 신디나르 (1994–1997) @@ -5618,6 +5890,7 @@ For terms of use, see http://www.unicode.org/copyright.html 볼리비아노 볼리비아노 BOB + Bs 볼리비아 볼리비아노 (1863–1963) @@ -5670,6 +5943,7 @@ For terms of use, see http://www.unicode.org/copyright.html 보츠와나 폴라 보츠와나 폴라 BWP + P 벨라루스 신권 루블 (1994–1999) @@ -5751,6 +6025,7 @@ For terms of use, see http://www.unicode.org/copyright.html 쿠바 태환 페소 쿠바 태환 페소 CUC + $ 쿠바 페소 @@ -5770,6 +6045,7 @@ For terms of use, see http://www.unicode.org/copyright.html 체코 공화국 코루나 체코 공화국 코루나 CZK + 동독 오스트마르크 @@ -5786,6 +6062,7 @@ For terms of use, see http://www.unicode.org/copyright.html 덴마크 크로네 덴마크 크로네 DKK + kr 도미니카 페소 @@ -5811,6 +6088,7 @@ For terms of use, see http://www.unicode.org/copyright.html 이집트 파운드 이집트 파운드 EGP + 에리트리아 나크파 @@ -5827,8 +6105,8 @@ For terms of use, see http://www.unicode.org/copyright.html 스페인 페세타 - 이디오피아 비르 - 이디오피아 비르 + 에티오피아 비르 + 에티오피아 비르 ETB @@ -5850,6 +6128,7 @@ For terms of use, see http://www.unicode.org/copyright.html 포클랜드제도 파운드 포클랜드제도 파운드 FKP + £ 프랑스 프랑 @@ -5867,6 +6146,7 @@ For terms of use, see http://www.unicode.org/copyright.html 조지아 라리 조지아 라리 GEL + 가나 시디 (1979–2007) @@ -5891,6 +6171,7 @@ For terms of use, see http://www.unicode.org/copyright.html 기니 프랑 기니 프랑 GNF + FG 기니 시리 @@ -5905,6 +6186,7 @@ For terms of use, see http://www.unicode.org/copyright.html 과테말라 케트살 과테말라 케트살 GTQ + Q 포르투갈령 기니 에스쿠도 @@ -5928,6 +6210,7 @@ For terms of use, see http://www.unicode.org/copyright.html 온두라스 렘피라 온두라스 렘피라 HNL + L 크로아티아 디나르 @@ -5936,6 +6219,7 @@ For terms of use, see http://www.unicode.org/copyright.html 크로아티아 쿠나 크로아티아 쿠나 HRK + kn 하이티 구르드 @@ -5946,11 +6230,13 @@ For terms of use, see http://www.unicode.org/copyright.html 헝가리 포린트 헝가리 포린트 HUF + Ft 인도네시아 루피아 인도네시아 루피아 IDR + Rp 아일랜드 파운드 @@ -5984,6 +6270,7 @@ For terms of use, see http://www.unicode.org/copyright.html 아이슬란드 크로나 아이슬란드 크로나 ISK + kr 이탈리아 리라 @@ -6025,11 +6312,13 @@ For terms of use, see http://www.unicode.org/copyright.html 코모르 프랑 코모르 프랑 KMF + CF 조선 민주주의 인민 공화국 원 조선 민주주의 인민 공화국 원 KPW + 대한민국 환 (1953–1962) @@ -6067,11 +6356,13 @@ For terms of use, see http://www.unicode.org/copyright.html 레바논 파운드 레바논 파운드 LBP + 스리랑카 루피 스리랑카 루피 LKR + Rs 라이베리아 달러 @@ -6135,6 +6426,7 @@ For terms of use, see http://www.unicode.org/copyright.html 마다가스카르 아리아리 마다가스카르 아리아리 MGA + Ar 마다가스카르 프랑 @@ -6151,6 +6443,7 @@ For terms of use, see http://www.unicode.org/copyright.html 미얀마 키얏 미얀마 키얏 MMK + K 몽골 투그릭 @@ -6178,6 +6471,7 @@ For terms of use, see http://www.unicode.org/copyright.html 모리셔스 루피 모리셔스 루피 MUR + Rs 몰디브 제도 루피아 @@ -6205,6 +6499,7 @@ For terms of use, see http://www.unicode.org/copyright.html 말레이시아 링깃 말레이시아 링깃 MYR + RM 모잠비크 에스쿠도 @@ -6236,6 +6531,7 @@ For terms of use, see http://www.unicode.org/copyright.html 니카라과 코르도바 오로 니카라과 코르도바 오로 NIO + C$ 네델란드 길더 @@ -6244,11 +6540,13 @@ For terms of use, see http://www.unicode.org/copyright.html 노르웨이 크로네 노르웨이 크로네 NOK + kr 네팔 루피 네팔 루피 NPR + Rs 뉴질랜드 달러 @@ -6292,11 +6590,13 @@ For terms of use, see http://www.unicode.org/copyright.html 파키스탄 루피 파키스탄 루피 PKR + Rs 폴란드 즐로티 폴란드 즐로티 PLN + 폴란드 즐로티 (1950–1995) @@ -6335,6 +6635,7 @@ For terms of use, see http://www.unicode.org/copyright.html 러시아 루블 러시아 루블 RUB + 러시아 루블 (1991–1998) @@ -6343,6 +6644,7 @@ For terms of use, see http://www.unicode.org/copyright.html 르완다 프랑 르완다 프랑 RWF + RF 사우디아라비아 리얄 @@ -6375,6 +6677,7 @@ For terms of use, see http://www.unicode.org/copyright.html 스웨덴 크로나 스웨덴 크로나 SEK + kr 싱가폴 달러 @@ -6386,6 +6689,7 @@ For terms of use, see http://www.unicode.org/copyright.html 세인트헬레나 파운드 세인트헬레나 파운드 SHP + £ 슬로베니아 톨라르 @@ -6422,6 +6726,7 @@ For terms of use, see http://www.unicode.org/copyright.html 상투메 프린시페 도브라 상투메 프린시페 도브라 STD + Db 소련 루블 @@ -6433,6 +6738,7 @@ For terms of use, see http://www.unicode.org/copyright.html 시리아 파운드 시리아 파운드 SYP + £ 스와질란드 릴랑게니 @@ -6443,6 +6749,7 @@ For terms of use, see http://www.unicode.org/copyright.html 태국 바트 태국 바트 ฿ + ฿ 타지키스탄 루블 @@ -6469,6 +6776,7 @@ For terms of use, see http://www.unicode.org/copyright.html 통가 파앙가 통가 파앙가 TOP + T$ 티모르 에스쿠도 @@ -6481,6 +6789,7 @@ For terms of use, see http://www.unicode.org/copyright.html 신 터키 리라 TRY + TL 트리니다드 토바고 달러 @@ -6552,6 +6861,7 @@ For terms of use, see http://www.unicode.org/copyright.html 베네수엘라 볼리바르 베네수엘라 볼리바르 VEF + Bs 베트남 동 @@ -6599,6 +6909,7 @@ For terms of use, see http://www.unicode.org/copyright.html 동카리브 달러 동카리브 달러 EC$ + $ 특별인출권 @@ -6636,7 +6947,7 @@ For terms of use, see http://www.unicode.org/copyright.html 알 수 없는 통화단위 - 알 수 없는 통화단위 + (알 수 없는 통화단위) 예멘 디나르 @@ -6662,6 +6973,7 @@ For terms of use, see http://www.unicode.org/copyright.html 남아프리카 랜드 남아프리카 랜드 ZAR + R 쟘비아 콰쳐 (1968–2012) @@ -6670,6 +6982,7 @@ For terms of use, see http://www.unicode.org/copyright.html 잠비아 콰쳐 잠비아 콰쳐 ZMW + ZK 자이르 신권 자이르 @@ -6688,8 +7001,8 @@ For terms of use, see http://www.unicode.org/copyright.html - {0}+ - {0}-{1} + {0}+ + {0}~{1} @@ -6702,8 +7015,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} 중력가속도 - m/s² - {0}m/s² + 제곱 초당 미터 + {0}제곱 초당 미터 + + + 회전 + {0}회전 + + + 라디안 + {0}라디안 + + + + {0}도 분각 @@ -6713,25 +7038,35 @@ For terms of use, see http://www.unicode.org/copyright.html 각초 {0}각초 - - - {0}도 - - - 라디안 - {0}라디안 - - - 에이커 - {0}에이커 + + 제곱킬로미터 + {0}제곱킬로미터 헥타르 {0}헥타르 + + 제곱미터 + {0}제곱미터 + 제곱미터당 {0} + 제곱센티미터 {0}제곱센티미터 + 제곱센티미터당 {0} + + + 제곱마일 + {0}제곱마일 + + + 에이커 + {0}에이커 + + + 제곱야드 + {0}제곱야드 제곱피트 @@ -6740,113 +7075,115 @@ For terms of use, see http://www.unicode.org/copyright.html 제곱인치 {0}제곱인치 + 제곱인치당 {0} - - 제곱킬로미터 - {0}제곱킬로미터 - - - 제곱미터 - {0}제곱미터 - - - 제곱마일 - {0}제곱마일 - - - 제곱야드 - {0}제곱야드 + + 캐럿 + {0}캐럿 킬로미터당 리터 킬로미터당 {0}리터 + + 100킬로미터당 리터 + 100킬로미터당 {0}리터 + 갤런당 마일 갤런당 {0}마일 - - 비트 - {0}비트 - - - 바이트 - {0}바이트 - - - 기가비트 - {0}기가비트 - - - 기가바이트 - {0}기가바이트 - - - 킬로비트 - {0}킬로비트 - - - 킬로바이트 - {0}킬로바이트 - - - 메가비트 - {0}메가비트 - - - 메가바이트 - {0}메가바이트 - - - 테라비트 - {0}테라비트 - 테라바이트 {0}테라바이트 + + 테라비트 + {0}테라비트 + + + 기가바이트 + {0}기가바이트 + + + 기가비트 + {0}기가비트 + + + 메가바이트 + {0}메가바이트 + + + 메가비트 + {0}메가비트 + + + 킬로바이트 + {0}킬로바이트 + + + 킬로비트 + {0}킬로비트 + + + 바이트 + {0}바이트 + + + 비트 + {0}비트 + + + 세기 + {0}세기 + + + + {0}년 + 연당 {0} + + + 개월 + {0}개월 + 월당 {0} + + + + {0}주 + 주당 {0} + - {0}일 + {0}일 + 일당 {0} 시간 - {0}시간 - {0}/h + {0}시간 + 시간당 {0} + + + + {0}분 + 분당 {0} + + + + {0}초 + 초당 {0} + + + 밀리초 + {0}밀리초 마이크로초 {0}마이크로초 - - 밀리초 - {0}밀리초 - - - - {0}분 - - - 개월 - {0}개월 - 나노초 {0}나노초 - - - {0}초 - {0}/s - - - - {0}주 - - - - {0}년 - 암페어 {0}암페어 @@ -6863,6 +7200,10 @@ For terms of use, see http://www.unicode.org/copyright.html 볼트 {0}볼트 + + 킬로칼로리 + {0}킬로칼로리 + 칼로리 {0}칼로리 @@ -6871,18 +7212,14 @@ For terms of use, see http://www.unicode.org/copyright.html 칼로리 {0}칼로리 - - - {0}줄 - - - 킬로칼로리 - {0}킬로칼로리 - 킬로줄 {0}킬로줄 + + + {0}줄 + 킬로와트시 {0}킬로와트시 @@ -6891,162 +7228,167 @@ For terms of use, see http://www.unicode.org/copyright.html 기가헤르츠 {0}기가헤르츠 - - 헤르츠 - {0}헤르츠 + + 메가헤르츠 + {0}메가헤르츠 킬로헤르츠 {0}킬로헤르츠 - - 메가헤르츠 - {0}메가헤르츠 + + 헤르츠 + {0}헤르츠 - - 천문 단위 - {0} 천문 단위 + + 킬로미터 + {0}킬로미터 + 킬로미터당 {0} - - 센티미터 - {0}센티미터 + + 미터 + {0}미터 + 미터당 {0} 데시미터 {0}데시미터 - - 피트 - {0}피트 - - - 인치 - {0}인치 - - - 킬로미터 - {0}킬로미터 - - - 광년 - {0}광년 - - - 미터 - {0}미터 - - - 마이크로미터 - {0}마이크로미터 - - - 마일 - {0}마일 + + 센티미터 + {0}센티미터 + 센티미터당 {0} 밀리미터 {0}밀리미터 + + 마이크로미터 + {0}마이크로미터 + 나노미터 {0}나노미터 - - 해리 - {0}해리 - - - 파섹 - {0}파섹 - 피코미터 {0}피코미터 + + 마일 + {0}마일 + 야드 {0}야드 + + 피트 + {0}피트 + 피트당 {0} + + + 인치 + {0}인치 + 인치당 {0} + + + 파섹 + {0}파섹 + + + 광년 + {0}광년 + + + 천문 단위 + {0}천문 단위 + + + 해리 + {0}해리 + + + 스칸디나비아 마일 + {0}스칸디나비아 마일 + 룩스 {0}룩스 - - 캐럿 - {0}캐럿 - - - 그램 - {0}그램 - - - 킬로그램 - {0}킬로그램 - 메트릭 톤 {0}메트릭 톤 - - 마이크로그램 - {0}마이크로그램 + + 킬로그램 + {0}킬로그램 + 킬로그램당 {0} + + + 그램 + {0}그램 + 그램당 {0} 밀리그램 {0}밀리그램 - - 온스 - {0}온스 - - - 트로이 온스 - {0}트로이 온스 - - - 파운드 - {0}파운드 + + 마이크로그램 + {0}마이크로그램 {0}톤 + + 파운드 + {0}파운드 + 파운드당 {0} + + + 온스 + {0}온스 + 온스당 {0} + + + 트로이 온스 + {0}트로이 온스 + + + 캐럿 + {0}캐럿 + 기가와트 {0}기가와트 - - 마력 - {0}마력 - - - 킬로와트 - {0}킬로와트 - 메가와트 {0}메가와트 - - 밀리와트 - {0}밀리와트 + + 킬로와트 + {0}킬로와트 와트 {0}와트 + + 밀리와트 + {0}밀리와트 + + + 마력 + {0}마력 + 헥토파스칼 {0}헥토파스칼 - - 수은주인치 - {0}수은주인치 - - - 밀리바 - {0}밀리바 - 수은주밀리미터 {0}수은주밀리미터 @@ -7055,54 +7397,46 @@ For terms of use, see http://www.unicode.org/copyright.html 제곱인치당 파운드 {0}제곱인치당 파운드 - - 캐럿 - {0}캐럿 + + 수은주인치 + {0}수은주인치 + + + 밀리바 + {0}밀리바 - km/h - 시속 {0}킬로미터 + 시간당 킬로미터 + 시속 {0}킬로미터 m/s - 초속 {0}미터 + 초속 {0}미터 mi/h - 시속 {0}마일 + 시속 {0}마일 + + + 노트 + {0}노트 + + + + {0}도 - °C + 섭씨 섭씨 {0}도 - °F + 화씨 화씨 {0}도 켈빈 {0}켈빈 - - 에이커 피트 - {0}에이커 피트 - - - 센티리터 - {0}센티리터 - - - 세제곱센티미터 - {0}세제곱센티미터 - - - 세제곱피트 - {0}세제곱피트 - - - 세제곱인치 - {0}세제곱인치 - 세제곱킬로미터 {0}세제곱킬로미터 @@ -7110,6 +7444,12 @@ For terms of use, see http://www.unicode.org/copyright.html 세제곱미터 {0}세제곱미터 + 세제곱미터당 {0} + + + 세제곱센티미터 + {0}세제곱센티미터 + 세제곱센티미터당 {0} 세제곱마일 @@ -7119,21 +7459,17 @@ For terms of use, see http://www.unicode.org/copyright.html 세제곱야드 {0}세제곱야드 - - - {0}컵 + + 세제곱피트 + {0}세제곱피트 - - 데시리터 - {0}데시리터 + + 세제곱인치 + {0}세제곱인치 - - 액량 온스 - {0}액량 온스 - - - 갤런 - {0}갤런 + + 메가리터 + {0}메가리터 헥토리터 @@ -7142,23 +7478,53 @@ For terms of use, see http://www.unicode.org/copyright.html 리터 {0}리터 + 리터당 {0} - - 메가리터 - {0}메가리터 + + 데시리터 + {0}데시리터 + + + 센티리터 + {0}센티리터 밀리리터 {0}밀리리터 - - 파인트 - {0}파인트 + + 미터식 파인트 + {0}미터식 파인트 + + + 미터식 컵 + {0}미터식 컵 + + + 에이커 피트 + {0}에이커 피트 + + + 갤런 + {0}갤런 + 갤런당 {0} 쿼트 {0}쿼트 + + 파인트 + {0}파인트 + + + + {0}컵 + + + 액량 온스 + {0}액량 온스 + 테이블스푼 {0}테이블스푼 @@ -7167,19 +7533,37 @@ For terms of use, see http://www.unicode.org/copyright.html 티스푼 {0}티스푼 + + 동경 {0} + 북위 {0} + 남위 {0} + 서경 {0} + {0}/{1} - 중력가속도 + g-force {0}G m/s² {0}m/s² + + rev + {0}rev + + + rad + {0}rad + + + ° + {0}° + {0}′ @@ -7188,140 +7572,152 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ - - ° - {0}° - - - rad - {0}rad - - - 에이커 - {0}에이커 + + km² + {0}km² - 헥타르 - {0}ha + ha + {0}ha + + + + {0}m² + {0}/m² cm² {0}cm² - - - 제곱피트 - {0}ft² - - - in² - {0}in² - - - km² - {0}km² - - - - {0}m² + {0}/cm² mi² - {0}mi² + {0}mi² + + + ac + {0}ac yd² {0}yd² + + ft² + {0}ft² + + + in² + {0}in² + {0}/in² + + + kt + {0}kt + L/km {0}L/km + + L/100km + {0}L/100km + mpg {0}mpg - - bit - {0}bit - - - byte - {0}byte - - - Gbit - {0}Gb - - - GByte - {0}GB - - - kbit - {0}kb - - - kB - {0}kB - - - Mbit - {0}Mb - - - MB - {0}MB + + TByte + {0}TB Tbit {0}Tb - - TByte - {0}TB + + GByte + {0}GB + + + Gbit + {0}Gb + + + MB + {0}MB + + + Mbit + {0}Mb + + + kB + {0}kB + + + kbit + {0}kb + + + byte + {0}byte + + + bit + {0}bit + + + C + {0}C + + + + {0}년 + {0}/년 + + + 개월 + {0}개월 + {0}/월 + + + + {0}주 + {0}/주 - {0}일 + {0}일 + {0}/일 시간 - {0}시간 + {0}시간 {0}/h - - μs - {0}μs + + + {0}분 + {0}/min + + + + {0}초 + {0}/s 밀리초 {0}ms - - - {0}분 - - - 개월 - {0}개월 + + μs + {0}μs ns {0}ns - - - {0}초 - {0}/s - - - - {0}주 - - - - {0}년 - amp {0}A @@ -7338,6 +7734,10 @@ For terms of use, see http://www.unicode.org/copyright.html volt {0}V + + kcal + {0}kcal + cal {0}cal @@ -7346,18 +7746,14 @@ For terms of use, see http://www.unicode.org/copyright.html Cal {0}Cal - - - {0}줄 - - - kcal - {0}kcal - kJ {0}kJ + + + {0}줄 + kWh {0}kWh @@ -7366,162 +7762,167 @@ For terms of use, see http://www.unicode.org/copyright.html GHz {0}GHz - - Hz - {0}Hz + + MHz + {0}MHz kHz {0}kHz - - MHz - {0}MHz + + Hz + {0}Hz - - au - {0}au + + km + {0}km + {0}/km - - cm - {0}cm + + m + {0}m + {0}/m dm {0}dm - - 피트 - {0}ft - - - in - {0}in - - - km - {0}km - - - ly - {0}ly - - - 미터 - {0}m - - - µm - {0}µm - - - 마일 - {0}mil + + cm + {0}cm + {0}/cm mm {0}mm + + µm + {0}µm + nm {0}nm + + pm + {0}pm + + + mi + {0}mi + + + yd + {0}야드 + + + ft + {0}ft + {0}/ft + + + in + {0}in + {0}/in + + + pc + {0}pc + + + ly + {0}ly + + + au + {0}au + nmi {0}nmi - - 파섹 - {0}pc - - - pm - {0}pm - - - 야드 - {0}야드 + + smi + {0}smi lx {0}lx - - CD - {0}CD - - - 그램 - {0}g - - - kg - {0}kg - t {0}t - - µg - {0}µg + + kg + {0}kg + {0}/kg + + + 그램 + {0}g + {0}/g mg {0}mg - - oz - {0}oz - - - oz t - {0}oz t - - - lb - {0}lb + + µg + {0}µg tn {0}tn + + lb + {0}lb + {0}/lb + + + oz + {0}oz + {0}/oz + + + oz t + {0}oz t + + + CD + {0}CD + GW {0}GW - - hp - {0}HP - - - kW - {0}kW - MW {0}MW - - mW - {0}mW + + kW + {0}kW w {0}W + + mW + {0}mW + + + hp + {0}hp + hPa {0}hPa - - inHg - {0}inHg - - - mbar - {0}mb - mm Hg {0}mm Hg @@ -7530,13 +7931,17 @@ For terms of use, see http://www.unicode.org/copyright.html psi {0}psi - - kt - {0}kt + + inHg + {0}inHg + + + mbar + {0}mb km/h - 시속 {0}km + {0}km/h m/s @@ -7546,6 +7951,14 @@ For terms of use, see http://www.unicode.org/copyright.html mi/h 시속 {0}mi + + kn + {0}kn + + + ° + {0}° + °C {0}°C @@ -7558,26 +7971,6 @@ For terms of use, see http://www.unicode.org/copyright.html K {0}K - - ac ft - {0}ac ft - - - cL - {0}cL - - - cm³ - {0}cm³ - - - ft³ - {0}ft³ - - - in³ - {0}in³ - km³ {0}km³ @@ -7585,6 +7978,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}m³ + {0}/m³ + + + cm³ + {0}cm³ + {0}/cm³ mi³ @@ -7594,21 +7993,17 @@ For terms of use, see http://www.unicode.org/copyright.html yd³ {0}yd³ - - - {0}컵 + + ft³ + {0}ft³ - - dL - {0}dL + + in³ + {0}in³ - - fl oz - {0}fl oz - - - gal - {0}gal + + ML + {0}ML hL @@ -7617,23 +8012,53 @@ For terms of use, see http://www.unicode.org/copyright.html 리터 {0}L + {0}/L - - ML - {0}ML + + dL + {0}dL + + + cL + {0}cL mL {0}mL - - pt - {0}pt + + mpt + {0}mpt + + + mcup + {0}mc + + + ac ft + {0}ac ft + + + gal + {0}gal + {0}/gal qt {0}qt + + pt + {0}pt + + + + {0}컵 + + + fl oz + {0}fl oz + tbsp {0}tbsp @@ -7642,6 +8067,12 @@ For terms of use, see http://www.unicode.org/copyright.html tsp {0}tsp + + {0}E + {0}N + {0}S + {0}W + @@ -7650,88 +8081,80 @@ For terms of use, see http://www.unicode.org/copyright.html {0}G + + {0}° + {0}′ {0}″ - - {0}° - - - {0}ac + + {0}km² {0}ha - - {0}ft² - - - {0}km² - {0}m² {0}mi² + + {0}ac + + + {0}ft² + + + L/100km + {0}L/100km + + + + {0}년 + + + 개월 + {0}개월 + + + + {0}주 + - {0}일 + {0}일 시간 {0}시간 + + + {0}분 + + + + {0}초 + ms {0}ms - - - {0}분 + + km + {0}km - - 개월 - {0}개월 - - - - {0}초 - - - - {0}주 - - - - {0}년 + + m + {0}m cm - {0}cm - - - {0}′ - - - {0}″ - - - km - {0}km - - - {0}ly - - - 미터 - {0}m - - - {0}mi + {0}cm mm @@ -7740,25 +8163,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0}pm + + {0}mi + {0}yd - - 그램 - {0}g + + {0}′ + + + {0}″ + + + {0}ly kg - {0}kg + {0}kg - - {0}oz + + g + {0}g {0}lb - - {0}HP + + {0}oz {0}kW @@ -7766,6 +8198,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0}W + + {0}HP + {0}hPa @@ -7799,9 +8234,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mi³ - 리터 + {0}ℓ + + {0}E + {0}N + {0}S + {0}W + h:mm @@ -7815,28 +8256,28 @@ For terms of use, see http://www.unicode.org/copyright.html - {0}, {1} - {0}, {1} + {0}, {1} + {0}, {1} {0} 및 {1} {0} 및 {1} - {0} {1} - {0} {1} - {0} {1} - {0} {1} + {0} {1} + {0} {1} + {0} {1} + {0} {1} - {0} {1} - {0} {1} - {0} {1} - {0} {1} + {0} {1} + {0} {1} + {0} {1} + {0} {1} - {0} {1} - {0} {1} - {0} {1} - {0} {1} + {0} {1} + {0} {1} + {0} {1} + {0} {1} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ko_KP.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ko_KP.xml similarity index 78% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ko_KP.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ko_KP.xml index 9eedbb5fb9e..2f9700e4b1c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ko_KP.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ko_KP.xml @@ -1,13 +1,12 @@ - - - + @@ -23,3 +22,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ko_KR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ko_KR.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ko_KR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ko_KR.xml index 35d3d7f9e7e..18f7abc9690 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ko_KR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ko_KR.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kok.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kok.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kok.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kok.xml index 1a93212df5f..647aa71a0e5 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kok.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kok.xml @@ -1,13 +1,12 @@ - - - + @@ -230,6 +229,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + म.पू. + म.नं. + म.पू. म.नं. @@ -324,6 +327,23 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##,##0.00 + + + ¤ 0K + ¤ 00K + ¤ 000K + ¤ 0M + ¤ 00M + ¤ 000M + ¤ 0G + ¤ 00G + ¤ 000G + ¤ 0T + ¤ 00T + ¤ 000T + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kok_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kok_IN.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kok_IN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kok_IN.xml index 1ef6bb09eda..177ae17d050 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/kok_IN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/kok_IN.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ks.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ks.xml similarity index 98% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ks.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ks.xml index ebe5ce13ee3..1ffa9ed0219 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ks.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ks.xml @@ -1,13 +1,12 @@ - - - + @@ -613,7 +612,6 @@ For terms of use, see http://www.unicode.org/copyright.html انگوئیلا اٮ۪لبانِیا اَرمانِیا - نَیدَرلینٛڑٕس اٮ۪نٹَیلٕس انگولا اینٹارٹِکا أرجَنٹینا @@ -883,19 +881,19 @@ For terms of use, see http://www.unicode.org/copyright.html ضَرب - رٮ۪وٲتی چیٖنی تِرتیٖب - بُدَن ہُنٛد کیلنڑَر - چیٖنی کیلَنڑَر - گرگوریَن کیلنڑَر - ہِبرِو کیلنڑَر - اِسلٲمی کیلنڑَر - اِسلٲمی اِجتمٲیی کیلنڑَر - جاپٲنۍ کیلنڑَر - فون بُک تَرتیٖب - آسان بَناونہٕ آمُت چیٖنی پیٖنیَن تَرتیٖب - جموٗریٲتی چیٖنی کیلَنڑَر - رٮ۪وٲتی چیٖنی سٹروک تَرتیٖب - رٮ۪وٲتی تَرتیٖب + بُدَن ہُنٛد کیلنڑَر + چیٖنی کیلَنڑَر + گرگوریَن کیلنڑَر + ہِبرِو کیلنڑَر + اِسلٲمی کیلنڑَر + اِسلٲمی اِجتمٲیی کیلنڑَر + جاپٲنۍ کیلنڑَر + جموٗریٲتی چیٖنی کیلَنڑَر + رٮ۪وٲتی چیٖنی تِرتیٖب + فون بُک تَرتیٖب + آسان بَناونہٕ آمُت چیٖنی پیٖنیَن تَرتیٖب + رٮ۪وٲتی چیٖنی سٹروک تَرتیٖب + رٮ۪وٲتی تَرتیٖب میٖٹرِک @@ -964,7 +962,6 @@ For terms of use, see http://www.unicode.org/copyright.html d - EEEE,dd MMMM GGGGy Gy MMM Gy MMM d, Gy @@ -1155,7 +1152,6 @@ For terms of use, see http://www.unicode.org/copyright.html d - EEEE,dd MMMM GGGGy Gy MMM Gy MMM d, Gy @@ -3327,6 +3323,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##,##0.00 + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0M + ¤ 0M + ¤ 00M + ¤ 00M + ¤ 000M + ¤ 000M + ¤ 0G + ¤ 0G + ¤ 00G + ¤ 00G + ¤ 000G + ¤ 000G + ¤ 0T + ¤ 0T + ¤ 00T + ¤ 00T + ¤ 000T + ¤ 000T + + @@ -4086,6 +4110,21 @@ For terms of use, see http://www.unicode.org/copyright.html + + ؤری + {0} ؤری + {0} ؤری + + + ریٚتھ + {0} ریٚتھ + {0} ریٚتھ + + + ہَفتہٕ + {0} ہَفتہٕ + {0} ہَفتہٕ + دۄہ {0} دۄہ @@ -4101,28 +4140,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} مِنَٹ {0} مِنَٹ - - ریٚتھ - {0} ریٚتھ - {0} ریٚتھ - سیٚکَنٛڈ {0} سیٚکَنٛڈ {0} سیٚکَنٛڈ - - ہَفتہٕ - {0} ہَفتہٕ - {0} ہَفتہٕ - - - ؤری - {0} ؤری - {0} ؤری - + + ؤری + + + ریٚتھ + + + ہَفتہٕ + دۄہ @@ -4132,18 +4165,9 @@ For terms of use, see http://www.unicode.org/copyright.html مِنَٹ - - ریٚتھ - سیٚکَنٛڈ - - ہَفتہٕ - - - ؤری - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ks_Arab_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ks_IN.xml similarity index 65% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ks_Arab_IN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ks_IN.xml index 1894fae26ed..88b1afc0eb4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ks_Arab_IN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ks_IN.xml @@ -1,15 +1,14 @@ - - - + - - + @@ -252,7 +259,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -584,61 +591,74 @@ For terms of use, see http://www.unicode.org/copyright.html Белгисиз регион - календарь - иреттөө тартиби - валюта + Жылнаама + Иргөө тартиби + Валюта + Саат мерчеми (12/24) + Саптарды ажыратуу стили + Өлчөө тутуму сандар - араб-индус сандары - кеңейтилген араб-индус сандары - армян сандары - армян сандары (саптык жазылыш) - бенгали сандары - буддачылык календары - кытай календары - данги каленендары - деванагари сандары - баштапкы уникод ирети - эфиоп сандары - эфиоп календары - толук эндүү сандар - грузин сандары - григориан календары - грек сандары - грек сандары (саптык жазылыш) - гужарати сандары - гурмухи сандары - кытай ондук сандары - жөнөкөйлөштүрүлгөн кытай сандары - жөнөкөйлөштүрүлгөн кытай финансы сандары - салттуу кытай сандары - салттуу кытай финансы сандары - иврит сандары - иврит календары - ислам календары - ИСО-8601 календары - япон календары - япон сандары - япон финансы сандары - кмер сандары - каннада сандары - лао сандары - батыш сандары - малайалам сандары - мйанмар сандары - ория сандары - перс календары - мингуо календары - роман сандары - роман сандары (саптык жазылыш) - жалпы издөө - иреттөө стандарты - салттуу тамил сандары - тамил сандары - телугу сандары - тай сандары - тибет сандары + Будда жылнаамасы + Кытай жылнаамасы + Данги жылнаамасы + Эфиоп жылнаамасы + Григориан жылнаамасы + Иврит жылнаамасы + Ислам жылнаамасы + ИСО-8601 жылнаамасы + Жапон жылнаамасы + Перс жылнаамасы + Мингуо жылнаамасы + Демейки Unicode иргөө тартиби + Жалпы издөө + Стандарттуу иргөө тартиби + 12 сааттык тутум (0–11) + 12 сааттык тутум (1–12) + 24 сааттык тутум (0–23) + 24 сааттык тутум (1–24) + Саптардын арасы кенен + Саптардын арасы орточо + Саптардын арасы тыкыс + Метрикалык тутум + Британ империясынын өлчөө тутуму + АКШнын өлчөө тутуму + араб-индус сандары + кеңейтилген араб-индус сандары + армян сандары + армян сандары (саптык жазылыш) + бенгали сандары + деванагари сандары + эфиоп сандары + толук эндүү сандар + грузин сандары + грек сандары + грек сандары (саптык жазылыш) + гужарати сандары + гурмухи сандары + кытай ондук сандары + жөнөкөйлөштүрүлгөн кытай сандары + жөнөкөйлөштүрүлгөн кытай финансы сандары + салттуу кытай сандары + салттуу кытай финансы сандары + иврит сандары + япон сандары + япон финансы сандары + кмер сандары + каннада сандары + лао сандары + батыш сандары + малайалам сандары + мйанмар сандары + ория сандары + роман сандары + роман сандары (саптык жазылыш) + салттуу тамил сандары + тамил сандары + телугу сандары + тай сандары + тибет сандары Сандык @@ -651,7 +671,7 @@ For terms of use, see http://www.unicode.org/copyright.html Басмаканалык - метрикалык + Метрикалык өлчөө тутуму Британия АКШ @@ -728,6 +748,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d, E G y G y MMM @@ -739,6 +760,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d-MMM d-MMM, E + MMMM d y-G y-G GGGGG y-MM @@ -747,6 +769,7 @@ For terms of use, see http://www.unicode.org/copyright.html G y-'ж'. MMM G y-'ж'. d-MMM G y-'ж'. d-MMM, E + G y MMMM G y-'ж'. QQQ G y-'ж'. QQQQ @@ -1056,15 +1079,67 @@ For terms of use, see http://www.unicode.org/copyright.html + + түн ортосу + тң + чак түш + тк + эртең менен + түштөн кийин + кечинде + түн ичинде + + түн орт тң чт тк + эртң мн + түшт кйн + кечк + түн + түн ортосу таңкы чак түш - түштөн кийин + түштөн кийинки + эртең менен + түштөн кийин + кечинде + түн ичинде + + + + + түн ортосу + тң + чак түш + тк + эртең менен + түштөн кийин + кечкурун + түн + + + түн ортосу + тң + чак түш + тк + эртең менен + түштөн кийин + кечкурун + түн + + + түн ортосу + таңкы + чак түш + түштөн кийинки + эртең менен + түштөн кийин + кечкурун + түн @@ -1078,7 +1153,7 @@ For terms of use, see http://www.unicode.org/copyright.html б.з. - б.з. ч. + б.з.ч. б.з. @@ -1165,12 +1240,17 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L dd-MM dd-MM, E LLL d-MMM d-MMM, E + MMMM d mm:ss y y-MM @@ -1179,6 +1259,7 @@ For terms of use, see http://www.unicode.org/copyright.html y-'ж'. MMM y-'ж'. d-MMM y-'ж'. d-MMM, E + y MMMM y-'ж'., QQQ y-'ж'., QQQQ @@ -1303,6 +1384,9 @@ For terms of use, see http://www.unicode.org/copyright.html ж. + былтыр + быйыл + эмдиги жылы {0} жыл. кийин {0} жыл. кийин @@ -1314,6 +1398,9 @@ For terms of use, see http://www.unicode.org/copyright.html ж. + былтыр + быйыл + эмдиги жылы {0} жыл. кийин {0} жыл. кийин @@ -1325,6 +1412,9 @@ For terms of use, see http://www.unicode.org/copyright.html чейрек + акыркы чейрек + бул чейрек + кийинки чейрек кийинки {0} чейректе кийинки {0} чейректе @@ -1336,6 +1426,9 @@ For terms of use, see http://www.unicode.org/copyright.html чейр. + акыркы чейр. + бул чейр. + кийинки чейр. кийинки {0} чейр. кийинки {0} чейр. @@ -1347,6 +1440,9 @@ For terms of use, see http://www.unicode.org/copyright.html чейр. + акыркы чейр. + бул чейр. + кийинки чейр. +{0} чейр. +{0} чейр. @@ -1372,6 +1468,9 @@ For terms of use, see http://www.unicode.org/copyright.html ай + өткөн айда + бул айда + эмдиги айда {0} айдан кийин {0} айдан кийин @@ -1383,6 +1482,9 @@ For terms of use, see http://www.unicode.org/copyright.html ай + өткөн айда + бул айда + эмдиги айда +{0} ай +{0} ай @@ -1408,6 +1510,9 @@ For terms of use, see http://www.unicode.org/copyright.html апта + өткөн апт. + ушул апт. + келерки апт. {0} апт. кийин {0} апт. кийин @@ -1419,6 +1524,9 @@ For terms of use, see http://www.unicode.org/copyright.html апта + өткөн апт. + ушул апт. + келерки апт. +{0} апт. +{0} апт. @@ -1446,6 +1554,11 @@ For terms of use, see http://www.unicode.org/copyright.html күн + мурдагы күнү + кечээ + бүгүн + эртеӊ + бүрсүгүнү {0} күндөн кийин {0} күндөн кийин @@ -1457,6 +1570,11 @@ For terms of use, see http://www.unicode.org/copyright.html күн + мурдагы күнү + кечээ + бүгүн + эртеӊ + бүрсүгүнү +{0} күн +{0} күн @@ -1512,7 +1630,7 @@ For terms of use, see http://www.unicode.org/copyright.html өткөн шш. ушул шш. - ушул шш. + келерки шейш. өткөн шаршембиде @@ -1589,7 +1707,7 @@ For terms of use, see http://www.unicode.org/copyright.html - с. + ст {0} саат. кийин {0} саат. кийин @@ -1600,7 +1718,7 @@ For terms of use, see http://www.unicode.org/copyright.html - с + ст +{0} с. +{0} с. @@ -1678,7 +1796,7 @@ For terms of use, see http://www.unicode.org/copyright.html - саат алкагы + убакыт алкагы @@ -2258,7 +2376,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Ирландия жайкы убактысы + Ирландия стандарттык убакыты Дублин @@ -2446,7 +2564,7 @@ For terms of use, see http://www.unicode.org/copyright.html Маврикий - Малдивз + Мальдив аралдары Блантайр @@ -2556,6 +2674,9 @@ For terms of use, see http://www.unicode.org/copyright.html Порт Моэрсби + + Бугенвиль + Манила @@ -2640,6 +2761,9 @@ For terms of use, see http://www.unicode.org/copyright.html Иркутск + + Чита + Якутск @@ -2658,6 +2782,9 @@ For terms of use, see http://www.unicode.org/copyright.html Магадан + + Среднеколымск + Камчатка @@ -2746,7 +2873,7 @@ For terms of use, see http://www.unicode.org/copyright.html Бангкок - Дүйшөмбү + Душанбе Факаофо @@ -3052,28 +3179,28 @@ For terms of use, see http://www.unicode.org/copyright.html Австралия борбордук убактысы Австралия борбордук стандарт убактысы - Австралия борбордук үнөмдөө убактысы + Австралия борбордук күндүзгү убактысы Австралия борбордук батыш убактысы Австралия борбордук батыш стандарт убактысы - Австралия борбордук батыш үнөмдөө убактысы + Австралия борбордук чыгыш күндүзгү убактысы Австралия чыгыш убактысы Австралия чыгыш стандарт убактысы - Австралия чыгыш үнөмдөө убактысы + Австралия чыгыш күндүзгү убактысы Австралия батыш убактысы Австралия батыш стандарт убактысы - Австралия батыш үнөмдөө убактысы + Австралия батыш күндүзгү убактысы @@ -3135,7 +3262,7 @@ For terms of use, see http://www.unicode.org/copyright.html Чатам убактысы Чатам стандарт убактысы - Чатам үнөмдөө убактысы + Чатам күндүзгү убактысы @@ -3149,7 +3276,7 @@ For terms of use, see http://www.unicode.org/copyright.html Кытай убактысы Кытай стандарт убактысы - Кытай үнөмдөө убактысы + Кытай күндүзгү убактысы @@ -3187,7 +3314,7 @@ For terms of use, see http://www.unicode.org/copyright.html Куба убактысы Куба стандарт убактысы - Куба үнөмдөө убактысы + Куба жайкы убактысы @@ -3259,7 +3386,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Френч Гуйана убактысы + Француз Гвиана убактысы @@ -3315,7 +3442,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Гуйана убактысы + Гвиана убактысы @@ -3327,9 +3454,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Гоӊ Коӊ убактысы - Гоӊ Коӊ стандарт убактысы - Гоӊ Коӊ жайкы убактысы + Гонконг убактысы + Гонконг стандарт убактысы + Гонконг жайкы убактысы @@ -3373,7 +3500,7 @@ For terms of use, see http://www.unicode.org/copyright.html Иран убактысы Иран стандарт убактысы - Иран үнөмдөө убактысы + Иран күндүзгү убактысы @@ -3387,14 +3514,14 @@ For terms of use, see http://www.unicode.org/copyright.html Израил убактысы Израил стандарт убактысы - Израил үнөмдөө убактысы + Израил күндүзгү убакыты Жапан убактысы Жапан стандарт убактысы - Жапан үнөмдөө убактысы + Жапан күндүзгү убактысы @@ -3411,7 +3538,7 @@ For terms of use, see http://www.unicode.org/copyright.html Корея убактысы Корея стандарт убактысы - Корея үнөмдөө убактысы + Корея күндүзгү убактысы @@ -3440,7 +3567,7 @@ For terms of use, see http://www.unicode.org/copyright.html Лорд Хау убактысы Лорд Хау стандарт убактысы - Лорд Хау үнөмдөө убактысы + Лорд Хау күндүзгү убактысы @@ -3462,7 +3589,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Малдив убактысы + Мальдив убактысы @@ -3484,7 +3611,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Мосон убактысы + Моусон убактысы @@ -3541,7 +3668,7 @@ For terms of use, see http://www.unicode.org/copyright.html Жаӊы Зеландия убактысы Жаӊы Зеландия стандарт убактысы - Жаӊы Зеландия үнөмдөө убактысы + Жаңы Зеландия күндүзгү убактысы @@ -3615,9 +3742,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Филиппинз убактысы - Филиппинз стандарт убактысы - Филиппинз жайкы убактысы + Филиппин аралдарынын убактысы + Филиппин аралдарынын стандарт убактысы + Филиппин аралдарынын жайкы убактысы @@ -3705,7 +3832,7 @@ For terms of use, see http://www.unicode.org/copyright.html Тайпей убактысы Тайпей стандарт убактысы - Тайпей үнөмдөө убактысы + Тайпей күндүзгү убактысы @@ -3814,6 +3941,10 @@ For terms of use, see http://www.unicode.org/copyright.html + latn + + latn + 1 , @@ -3914,6 +4045,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 миӊ ¤ + 0 миӊ ¤ + 00 миӊ ¤ + 00 миӊ ¤ + 000 миӊ ¤ + 000 миӊ ¤ + 0 млн ¤ + 0 млн ¤ + 00 млн ¤ + 00 млн ¤ + 000 млн ¤ + 000 млн ¤ + 0 млд ¤ + 0 млд ¤ + 00 млд ¤ + 00 млд ¤ + 000 млд ¤ + 000 млд ¤ + 0 трн ¤ + 0 трн ¤ + 00 трн ¤ + 00 трн ¤ + 000 трн ¤ + 000 трн ¤ + + {0} {1} {0} {1} @@ -3922,31 +4081,38 @@ For terms of use, see http://www.unicode.org/copyright.html Бириккен Араб Эмираттары дирхамы БАЭ дирхамы БАЭ дирхамы + AED Афганстан афганиси Афганстан афганиси Афганстан афганиси + AFN албан леги албан леги албан леги + ALL Армения драмы Армения драмы Армения драмы + AMD нидерланд-антил гулдени нидерланд-антил гулдени нидерланд-антил гулдени + ANG Ангола кванзасы Ангола кванзасы Ангола кванзасы + AOA + Kz аргентина песосу @@ -3960,33 +4126,40 @@ For terms of use, see http://www.unicode.org/copyright.html Австралия доллары Австралия доллары AUD + $ аруба флорини аруба флорини аруба флорини + AWG Азербайжан манаты Азербайжан манаты Азербайжан манаты + AZN босния-герцоговина жүгүртөлмөлүү маркасы босния-герцоговина жүгүртөлмөлүү маркасы босния-герцоговина жүгүртөлмөлүү маркасы BAM + KM барбадос доллары барбадос доллары барбадос доллары BBD + $ Бангладеш такасы Бангладеш такасы Бангладеш такасы + BDT + болгар левиси @@ -3998,28 +4171,34 @@ For terms of use, see http://www.unicode.org/copyright.html Бахрейн динары Бахрейн динары Бахрейн динары + BHD Бурунди франкы Бурунди франкы Бурунди франкы + BIF бермуд доллары бермуд доллары бермуд доллары BMD + BD$ Бруней доллары Бруней доллары Бруней доллары + BND + $ боливия боливианосу боливия боливианосу боливия боливианосу BOB + Bs бразилия реалы @@ -4032,39 +4211,48 @@ For terms of use, see http://www.unicode.org/copyright.html багама доллары багама доллары багама доллары + BSD + B$ Бутан нгултруму Бутан нгултруму Бутан нгултруму + BTN Ботсвана пуласы Ботсвана пуласы Ботсвана пуласы + BWP + P беларусь рублу беларусь рублу беларусь рублу BYR + р. белиз доллары белиз доллары белиз доллары BZD + BZ$ канада доллары канада доллары канада долларлары CAD + C$ Конго франкы Конго франкы Конго франкы + CDF швейцария франкы @@ -4084,6 +4272,7 @@ For terms of use, see http://www.unicode.org/copyright.html Кытай юаны Кытай юаны CN¥ + ¥ колумбия песосу @@ -4096,16 +4285,22 @@ For terms of use, see http://www.unicode.org/copyright.html коста-рика колону коста-рика колону коста-рика колону + CRC + куба жүгүртүлмөлүү песосу куба жүгүртүлмөлүү песосу куба жүгүртүлмөлүү песосу + CUC + $ куба песосу куба песосу куба песосу + CUP + $ Кабо-Верде эскудосу @@ -4118,42 +4313,52 @@ For terms of use, see http://www.unicode.org/copyright.html чех кронасы чех кронасы CZK + Жибути франкы Жибути франкы Жибути франкы + DJF дания крону дания крону дания крону DKK + kr доминикан песосу доминикан песосу доминикан песосу + DOP + RD$ - Алжир динары - Алжир динары - Алжир динары + алжир динары + алжир динары + алжир динары + DZD - Мисир фунту - Мисир фунту - Мисир фунту + египет фунту + египет фунту + египет фунту + EGP + LE Эритреа накфасы Эритреа накфасы Эритреа накфасы + ERN Эфиопия бирри Эфиопия бирри Эфиопия бирри + ETB Евро @@ -4166,17 +4371,20 @@ For terms of use, see http://www.unicode.org/copyright.html Фижи доллары Фижи доллары Фижи доллары + FJD + $ фолкленд аралдарынын фунту фолкленд аралдарынын фунту фолкленд аралдарынын фунту FKP + £ - британия фунт - британия фунт - британия фунт + британия фунт стерлинги + британия фунт стерлинги + британия фунт стерлинги GBP £ @@ -4184,6 +4392,8 @@ For terms of use, see http://www.unicode.org/copyright.html Грузия лариси Грузия лариси Грузия лариси + GEL + Гана седиси @@ -4196,6 +4406,7 @@ For terms of use, see http://www.unicode.org/copyright.html гибралтар фунту гибралтар фунту GIP + £ Гамбия даласиси @@ -4208,12 +4419,14 @@ For terms of use, see http://www.unicode.org/copyright.html Гине франкы Гине франкы GNF + FG гватемала кетсалы гватемала кетсалы гватемала кетсалы GTQ + Q гуйана доллары @@ -4223,87 +4436,104 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Гоӊ Коӊ доллары - Гоӊ Коӊ доллары - Гоӊ Коӊ доллары + Гонконг доллары + Гонконг доллары + Гонконг доллары HKD + HK$ гондурас лемпирасы гондурас лемпирасы гондурас лемпирасы HNL + L хорват кунасы хорват кунасы хорват кунасы HRK + Kn гаити гурдусу гаити гурдусу гаити гурдусу + HTG венгр форинти венгр форинти венгр форинти HUF + Ft Индонезия рупийасы Индонезия рупийасы Индонезия рупийасы + IDR + Rp Израил жаӊы шегели Израил жаӊы шегели Израил жаӊы шегели ILS + Индия руписи Индия руписи Индия руписи INR + Ирак динары Ирак динары Ирак динары + IQD Иран риалы Иран риалы Иран риалы + IRR исландия крону исландия крону исландия крону ISK + kr ямайка доллары ямайка доллары ямайка доллары + JMD + J$ Йордания динары Йордания динары Йордания динары + JOD Жапан йени Жапан йени Жапан йени JP¥ + ¥ Кения шиллинги Кения шиллинги Кения шиллинги + KES Кыргызстан сому @@ -4315,52 +4545,70 @@ For terms of use, see http://www.unicode.org/copyright.html Камбожа риели Камбожа риели Камбожа риели + KHR + Коморос франкы Коморос франкы Коморос франкы + KMF + CF Түндүк Корея уону Түндүк Корея уону Түндүк Корея уону + KPW + Түштүк Корея уону Түштүк Корея уону Түштүк Корея уону KRW + Кувейт динары Кувейт динары Кувейт динары + KWD кайман доллары кайман доллары кайман доллары + KYD + $ Казакстан теӊгеси Казакстан теӊгеси Казакстан теӊгеси + KZT + Лаос киби Лаос киби Лаос киби + LAK + Ливан фунту Ливан фунту Ливан фунту + LBP + Шри Ланка руписи Шри Ланка руписи Шри Ланка руписи + LKR + Rs Либерия доллары @@ -4382,24 +4630,29 @@ For terms of use, see http://www.unicode.org/copyright.html LVL - Ливия динары - Ливия динары - Ливия динары + ливия динары + ливия динары + ливия динары + LYD - Марокко дирхамы - Марокко дирхамы - Марокко дирхамы + марокко дирхамы + марокко дирхамы + марокко дирхамы + MAD молдован лейи молдован лейи молдован лейи + MDL Мадагаскар ариариси Мадагаскар ариариси Мадагаскар ариариси + MGA + Ar македон денары @@ -4411,16 +4664,21 @@ For terms of use, see http://www.unicode.org/copyright.html Мйанмар кйаты Мйанмар кйаты Мйанмар кйаты + MMK + K Монгол тугриги Монгол тугриги Монгол тугриги + MNT + Макау патакасы Макау патакасы Макау патакасы + MOP Мавритания угиясы @@ -4432,37 +4690,47 @@ For terms of use, see http://www.unicode.org/copyright.html Мавританий руписи Мавританий руписи Мавританий руписи + MUR + Rs - Малдив Руфийасы - Малдив Руфийасы - Малдив Руфийасы + Малдив руфийасы + Малдив руфийасы + Малдив руфийасы + MVR Малави квачасы Малави квачасы Малави квачасы + MWK мексика песосу мексика песосу мексика песосу MXN + $ Малайзия ринггити Малайзия ринггити Малайзия ринггити + MYR + RM Мозамбик метикалы Мозамбик метикалы Мозамбик метикалы + MZN Намибия доллары Намибия доллары Намибия доллары + NAD + $ Нигерия найрасы @@ -4475,28 +4743,35 @@ For terms of use, see http://www.unicode.org/copyright.html никарагуа кордобасы никарагуа кордобасы никарагуа кордобасы + NIO + C$ норвегия крону норвегия крону норвегия крону NOK + kr Непал руписи Непал руписи Непал руписи + NPR + Rs Жаӊы Зеландия доллары Жаӊы Зеландия доллары Жаӊы Зеландия доллары NZD + $ Оман риалы Оман риалы Оман риалы + OMR панама балбоасы @@ -4520,17 +4795,22 @@ For terms of use, see http://www.unicode.org/copyright.html Филиппин песосу Филиппин песосу Филиппин песосу + PHP + Пакистан руписи Пакистан руписи Пакистан руписи + PKR + Rs польша злотыйы польша злотыйы польша злотыйы PLN + парагвай гуараниси @@ -4543,6 +4823,7 @@ For terms of use, see http://www.unicode.org/copyright.html Катар риалы Катар риалы Катар риалы + QAR румын лейи @@ -4561,16 +4842,20 @@ For terms of use, see http://www.unicode.org/copyright.html орус рублу орус рублу RUB + Руанда франкы Руанда франкы Руанда франкы + RWF + RF Сауд риалы Сауд риалы Сауд риалы + SAR Соломон доллары @@ -4583,28 +4868,34 @@ For terms of use, see http://www.unicode.org/copyright.html Сейшел руписи Сейшел руписи Сейшел руписи + SCR - Судан фунту - Судан фунту - Судан фунту + судан фунту + судан фунту + судан фунту + SDG швеция крону швеция крону швеция крону SEK + kr Сингапур доллары Сингапур доллары Сингапур доллары + SGD + $ Ыйык Елена фунту Ыйык Елена фунту Ыйык Елена фунту SHP + £ Сиерра-Леоне леонеси @@ -4616,6 +4907,7 @@ For terms of use, see http://www.unicode.org/copyright.html Сомали шиллинги Сомали шиллинги Сомали шиллинги + SOS суринам доллары @@ -4628,80 +4920,101 @@ For terms of use, see http://www.unicode.org/copyright.html Түштүк Судан фунту Түштүк Судан фунту Түштүк Судан фунту + SSP + £ Сао Томе жана Принсипе добрасы Сао Томе жана Принсипе добрасы Сао Томе жана Принсипе добрасы + STD + Db Сирия фунту Сирия фунту Сирия фунту + SYP + £ Свази лилангени Свази лилангени Свази эмалангени + SZL Тай баты Тай баты Тай баты ฿ + ฿ Тажикстан сомониси Тажикстан сомониси Тажикстан сомониси + TJS Түркмөнстан манаты Түркмөнстан манаты Түркмөнстан манаты + TMT - Тунис динары - Тунис динары - Тунис динары + тунис динары + тунис динары + тунис динары + TND Тонга паангасы Тонга паангасы Тонга паангасы + TOP + T$ Түркия лирасы Түркия лирасы Түркия лирасы + TRY + + TL тринидад жана тобаго доллары тринидад жана тобаго доллары тринидад жана тобаго доллары TTD + TT$ Тайвань жаӊы доллары Тайвань жаӊы доллары Тайвань жаӊы доллары TWD + NT$ Танзания шиллинги Танзания шиллинги Танзания шиллинги + TZS украин гривени украин гривени украин гривени UAH + Уганда шиллинги Уганда шиллинги Уганда шиллинги + UGX АКШ доллары @@ -4721,28 +5034,33 @@ For terms of use, see http://www.unicode.org/copyright.html Өзбекстан сому Өзбекстан сому Өзбекстан сому + UZS венесуэла боливары венесуэла боливары венесуэла боливары VEF + Bs Вьетнам доӊу Вьетнам доӊу Вьетнам доӊу + Вануату ватусу Вануату ватусу Вануату ватусу + VUV Самоа таласы Самоа таласы Самоа таласы + WST КФА ВЕАС франкы @@ -4755,6 +5073,7 @@ For terms of use, see http://www.unicode.org/copyright.html чыгыш кариб доллары чыгыш кариб доллары XCD + $ КФА ВСЕАО франкы @@ -4770,23 +5089,28 @@ For terms of use, see http://www.unicode.org/copyright.html Белгисиз акча - Белгисиз акча - Белгисиз акча + (белгисиз акча бирдиги) + (белгисиз акча) Йемен риалы Йемен риалы Йемен риалы + YER Түштүк Африка ранды Түштүк Африка ранды Түштүк Африка ранды + ZAR + R Замбия квачасы Замбия квачасы Замбия квачасы + ZMW + ZK @@ -4797,7 +5121,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0}/{1} + {1}/{0} оордук күчүнүн ылдамдануусу @@ -4805,44 +5129,71 @@ For terms of use, see http://www.unicode.org/copyright.html {0} оордук күчү - метр/квадраттык секунд - {0} метр/квадраттык секунд - {0} метр/квадраттык секунд + квадраттык секундасына метр + квадраттык секундасына {0} метр + квадраттык секундасына {0} метр - - - {0}′ - {0}′ - - - арксекунд - {0}″ - {0}″ - - - градус - {0} градус - {0} градус + + rev + {0} rev + {0} rev радиан {0} радиан {0} радиан - - акр - {0} акр - {0} акр + + градус + {0} градус + {0} градус + + + аркмүнөт + {0} аркмүнөт + {0} аркмүнөт + + + арксекунд + {0} арксекунд + {0} арксекунд + + + чарчы километр + {0} чарчы километр + {0} чарчы километр гектар {0} гектар {0} гектар + + чарчы метр + {0} чарчы метр + {0} чарчы метр + чарчы метрине {0} + чарчы сантиметр {0} чарчы сантиметр {0} чарчы сантиметр + чарчы сантиметрине {0} + + + чарчы мил + {0} чарчы мил + {0} чарчы мил + + + акр + {0} акр + {0} акр + + + чарчы ярд + {0} чарчы ярд + {0} чарчы ярд чарчы фут @@ -4853,139 +5204,140 @@ For terms of use, see http://www.unicode.org/copyright.html чарчы дюйм {0} чарчы дюйм {0} чарчы дюйм + чарчы дюймуна {0} - - чарчы километр - {0} чарчы километр - {0} чарчы километр - - - чарчы метр - {0} чарчы метр - {0} чарчы метр - - - чарчы мил - {0} чарчы мил - {0} чарчы мил - - - чарчы ярд - {0} чарчы ярд - {0} чарчы ярд + + карат + {0} карат + {0} карат - л/км - {0} л/км - {0} л/км + километрине литр + километрине {0} литр + километрине {0} литр + + + 100 километрге литр + 100 километрге {0} литр + 100 километрге {0} литр милге/галон {0} милге/галон {0} милге/галон - - бит - {0} бит - {0} бит - - - байт - {0} байт - {0} байт - - - гигабит - {0} гигабит - {0} гигабит - - - гигабайт - {0} гигабайт - {0} гигабайт - - - килобит - {0} килобит - {0} килобит - - - килобайт - {0} килобайт - {0} килобайт - - - мегабит - {0} мегабит - {0} мегабит - - - мегабайт - {0} мегабайт - {0} мегабайт + + терабайт + {0} терабайт + {0} терабайт терабит {0} терабит {0} терабит - - терабайт - {0} терабайт - {0} терабайт + + гигабайт + {0} гигабайт + {0} гигабайт + + + гигабит + {0} гигабит + {0} гигабит + + + мегабайт + {0} мегабайт + {0} мегабайт + + + мегабит + {0} мегабит + {0} мегабит + + + килобайт + {0} килобайт + {0} килобайт + + + килобит + {0} килобит + {0} килобит + + + байт + {0} байт + {0} байт + + + бит + {0} бит + {0} бит + + + кылым + {0} кылым + {0} кылым + + + жыл + {0} жыл + {0} жыл + жылына {0} + + + ай + {0} ай + {0} ай + айына {0} + + + апта + {0} апта + {0} апта + аптасына {0} күн {0} күн {0} күн + күнүнө {0} саат {0} саат {0} саат - {0} саатына + саатына {0} - - микросекунд - {0} микросекунд - {0} микросекунд + + мүнөт + {0} мүнөт + {0} мүнөт + мүнөтүнө {0} + + + секунд + {0} секунд + {0} секунд + секундуна {0} миллисекунд {0} миллисекунд {0} миллисекунд - - мүнөт - {0} мүнөт - {0} мүнөт - - - ай - {0} ай - {0} ай + + микросекунд + {0} микросекунд + {0} микросекунд наносекунд {0} наносекунд {0} наносекунд - - секунд - {0} секунд - {0} секунд - {0} секундуна - - - апта - {0} апта - {0} апта - - - жыл - {0} жыл - {0} жыл - ампер {0} ампер @@ -5006,6 +5358,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} вольт {0} вольт + + килокалория + {0} килокалория + {0} килокалория + калория {0} калория @@ -5016,21 +5373,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Калория {0} Калория - - жоул - {0} жоул - {0} жоул - - - килокалория - {0} килокалория - {0} килокалория - киложоул {0} киложоул {0} киложоул + + жоул + {0} жоул + {0} жоул + килловат-саат {0} килловат-саат @@ -5041,230 +5393,249 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гигагерц {0} гигагерц - - герц - {0} герц - {0} герц + + мегагерц + {0} мегагерц + {0} мегагерц килогерц {0} килогерц {0} килогерц - - мегагерц - {0} мегагерц - {0} мегагерц + + герц + {0} герц + {0} герц - - астрономикалык бирдик - {0} астрономикалык бирдик - {0} астрономикалык бирдик + + километр + {0} километр + {0} километр + километрине {0} - - сантиметр - {0} сантиметр - {0} сантиметр + + метр + {0} метр + {0} метр + метрине {0} дм {0} дм {0} дм - - фут - {0} фут - {0} фут - - - дюйм - {0} дюйм - {0} дюйм - - - километр - {0} километр - {0} километр - - - жарык жыл - {0} жарык жыл - {0} жарык жыл - - - метр - {0} метр - {0} метр - - - микрометр - микрометр - {0} микрометр - - - мил - {0} мил - {0} мил + + сантиметр + {0} сантиметр + {0} сантиметр + сантиметрине {0} миллиметр {0} миллиметр {0} миллиметр + + микрометр + микрометр + {0} микрометр + нанометр {0} нанометр {0} нанометр - - деңиз мили - {0} деңиз мили - {0} деңиз мили - - - парсек - {0} парсек - {0} парсек - пикометр {0} пикометр {0} пикометр + + мил + {0} мил + {0} мил + ярд {0} ярд {0} ярд + + фут + {0} фут + {0} фут + футуна {0} + + + дюйм + {0} дюйм + {0} дюйм + дюймуна {0} + + + парсек + {0} парсек + {0} парсек + + + жарык жыл + {0} жарык жыл + {0} жарык жыл + + + астрономикалык бирдик + {0} астрономикалык бирдик + {0} астрономикалык бирдик + + + деңиз мили + {0} деңиз мили + {0} деңиз мили + + + smi + {0} smi + {0} smi + люкс {0} люкс {0} люкс - - карат - {0} карат - {0} карат - - - грамм - {0} грамм - {0} грамм - - - килограмм - {0} килограмм - {0} килограмм - метр тонна {0} метр тонна {0} метр тонна - - микрограмм - {0} микрограмм - {0} микрограмм + + килограмм + {0} килограмм + {0} килограмм + килограммына {0} + + + грамм + {0} грамм + {0} грамм + граммына {0} миллиграмм {0} миллиграмм {0} миллиграмм - - унция - {0} унция - {0} унция - - - троя унциясы - {0} троя унциясы - {0} троя унциясы - - - фунт - {0} фунт - {0} фунт + + микрограмм + {0} микрограмм + {0} микрограмм тонна {0} тонна {0} тонна + + фунт + {0} фунт + {0} фунт + фунтуна {0} + + + унция + {0} унция + {0} унция + унциясына {0} + + + троя унциясы + {0} троя унциясы + {0} троя унциясы + + + карат + {0} карат + {0} карат + гигаватт {0} гигаватт {0} гигаватт - - аттын күчү - {0} аттын күчү - {0} аттын күчү - - - киловатт - {0} киловатт - {0} киловатт - мегаватт {0} мегаватт {0} мегаватт - - милливатт - {0} милливатт - {0} милливатт + + киловатт + {0} киловатт + {0} киловатт ватт {0} ватт {0} ватт + + милливатт + {0} милливатт + {0} милливатт + + + аттын күчү + {0} аттын күчү + {0} аттын күчү + гектопаскаль {0} гектопаскаль {0} гектопаскаль + + миллиметр сымап мамычасы + {0} миллиметр сымап мамычасы + {0} миллиметр сымап мамычасы + + + чарчы дюймга фунт + чарчы дюймга {0} фунт + чарчы дюймга {0} фунт + - дүйм сымап мамычасы - {0} дүйм сымап мамычасы - {0} дүйм сымап мамычасы + дюйм сымап мамычасы + {0} дюйм сымап мамычасы + {0} дюйм сымап мамычасы миллибар {0} миллибар {0} миллибар - - сымап мамычасынын миллиметри - {0} сымап мамычасынын миллиметри - {0} сымап мамычасынын миллиметри - - - фунт чарчы дюймга - {0} фунт чарчы дюймга - {0} фунт чарчы дюймга - - - карат - {0} карат - {0} карат - саатына километр саатына {0} километр саатына {0} километр - метр/секунд - {0} метр/секунд - {0} метр/секунд + секундасына метр + секундасына {0} метр + секундасына {0} метр - мил/саат - {0} мил/саат - {0} мил/саат + милине саат + саатына {0} миль + саатына {0} миль + + + түйүн + {0} түйүн + {0} түйүн + + + ° + {0}° + {0}° Цельсий градусу @@ -5281,31 +5652,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Келвин градусу {0} Келвин градусу - - акр-фут - {0} акр-фут - {0} акр-фут - - - сантилитр - {0} сантилитр - {0} сантилитр - - - куб сантиметр - {0} куб сантиметр - {0} куб сантиметр - - - куб фут - {0} куб фут - {0} куб фут - - - куб дюйм - {0} куб дюйм - {0} куб дюйм - куб километр {0} куб километр @@ -5315,6 +5661,13 @@ For terms of use, see http://www.unicode.org/copyright.html куб метр {0} куб метр {0} куб метр + куб метрине {0} + + + куб сантиметр + {0} куб сантиметр + {0} куб сантиметр + куб сантиметрине {0} куб мил @@ -5326,25 +5679,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} куб ярд {0} куб ярд - - чөйчөк - {0} чөйчөк - {0} чөйчөк + + куб фут + {0} куб фут + {0} куб фут - - декалитр - {0} декалитр - {0} декалитр + + куб дюйм + {0} куб дюйм + {0} куб дюйм - - суюк унция - {0} суюк унция - {0} суюк унция - - - галон - {0} галон - {0} гал + + мегалитр + {0} мегалитр + {0} мегалитр гектолитр @@ -5355,27 +5703,64 @@ For terms of use, see http://www.unicode.org/copyright.html литр {0} литр {0} литр + литрине {0} - - мегалитр - {0} мегалитр - {0} мегалитр + + децилитр + {0} децилитр + {0} децилитр + + + сантилитр + {0} сантилитр + {0} сантилитр миллилитр {0} миллилитр {0} миллилитр - - пинта - {0} пинта - {0} пинта + + метрикалык пинта + {0} метрикалык пинта + {0} метрикалык пинта + + + mcup + {0} mc + {0} mc + + + акр-фут + {0} акр-фут + {0} акр-фут + + + галон + {0} галон + {0} гал + галонуна {0} кварта {0} кварта {0} кварта + + пинта + {0} пинта + {0} пинта + + + чөйчөк + {0} чөйчөк + {0} чөйчөк + + + суюк унция + {0} суюк унция + {0} суюк унция + чоң кашык {0} чоң кашык @@ -5386,10 +5771,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} чай кашык {0} чай кашык + + {0}Ч + {0}Тн + {0}Тш + {0}Б + - {0}/{1} + {1}/{0} оордук күчүнүн ылдамдануусу @@ -5401,40 +5792,67 @@ For terms of use, see http://www.unicode.org/copyright.html {0} м/сек² {0} м/сек² - - - {0}′ - {0}′ - - - - {0}″ - {0}″ - - - градус - {0}° - {0}° + + rev + {0} rev + {0} rev рад. {0} рад {0} рад. - - акр - {0} акр - {0} акр + + градус + {0}° + {0}° + + + аркмүн + {0} аркмүн + {0} аркмүн + + + арксек + {0} арксек + {0} арксек + + + км² + {0} км² + {0} км² гектар {0} га {0} га + + метр² + {0} м² + {0} м² + м²/{0} + см² {0} см² {0} см² + см²/{0} + + + чарчы мил + {0} мл² + {0} мл² + + + акр + {0} акр + {0} акр + + + ярд² + {0} ярд² + {0} ярд² чарчы фут @@ -5445,139 +5863,140 @@ For terms of use, see http://www.unicode.org/copyright.html дюйм² {0} дюйм² {0} дюйм² + дюйм²/{0} - - км² - {0} км² - {0} км² - - - метр² - {0} м² - {0} м² - - - чарчы мил - {0} мл² - {0} мл² - - - ярд² - {0} ярд² - {0} ярд² + + карат + {0} кт + {0} кт - л/км + км/литр {0} л/км {0} л/км + + 100 км/л + 100 км/{0} л + 100 км/{0} л + мил/гал {0} мил/гал {0} мил/гал - - бит - {0} бит - {0} бит - - - байт - {0} байт - {0} байт - - - Гбит - {0} Гб - {0} Гб - - - Гбайт - {0} ГБ - {0} ГБ - - - кбит - {0} кб - {0} кб - - - кБайт - {0} кБ - {0} кБ - - - Мбит - {0} Мб - {0} Мб - - - МБайт - {0} МБ - {0} МБ + + ТБайт + {0} ТБ + {0} ТБ Тбит {0} Тб {0} Тб - - ТБайт - {0} ТБ - {0} ТБ + + Гбайт + {0} ГБ + {0} ГБ + + + Гбит + {0} Гб + {0} Гб + + + МБайт + {0} МБ + {0} МБ + + + Мбит + {0} Мб + {0} Мб + + + кБайт + {0} кБ + {0} кБ + + + кбит + {0} кб + {0} кб + + + байт + {0} байт + {0} байт + + + бит + {0} бит + {0} бит + + + к. + {0} к. + {0} к. + + + жыл + {0} ж. + {0} ж. + ж/{0} + + + ай + {0} ай + {0} ай + а/{0} + + + апта + {0} апт + {0} апт + апт/{0} күн {0} күн {0} күн + күн/{0} саат - {0} с - {0} с - {0}/с + {0} ст + {0} ст + ст/{0} - - μсек - {0}μс - {0}μс + + мүнөт + {0} мүн + {0} мүн + мүн/{0} + + + секунд + {0} сек + {0} сек + сек/{0} миллисекунд {0} мс {0} мс - - мүнөт - {0} мүн - {0} мүн - - - ай - {0} ай - {0} ай + + μсек + {0}μс + {0}μс наносек {0} нс {0} нс - - секунд - {0} сек - {0} сек - {0}/сек - - - апта - {0} ап - {0} ап - - - жыл - {0} ж. - {0} ж. - амп {0} A @@ -5598,6 +6017,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + ккал + {0} ккал + {0} ккал + кал {0} кал @@ -5608,21 +6032,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Кал {0} Кал - - жоул - {0} ж - {0} ж - - - ккал - {0} ккал - {0} ккал - киложоул {0} кж {0} кж + + жоул + {0} ж + {0} ж + кВ-саат {0} кВ-саат @@ -5633,193 +6052,217 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Ггц {0} Ггц - - Гц - {0} Гц - {0} Гц + + МГЦ + {0} МГЦ + {0} МГЦ кГц {0} кГц {0} кГц - - МГЦ - {0} МГЦ - {0} МГЦ + + Гц + {0} Гц + {0} Гц - - а. б. - {0} а.б. - {0} а.б. + + км + {0} км + {0} км + км/{0} - - см - {0} см - {0} см + + метр + {0} м + {0} м + м/{0} дм {0} дм {0} дм - - фут - {0} фут - {0} фут - - - дюйм - {0} дюйм - {0} дюйм - - - км - {0} км - {0} км - - - жарык жыл - {0} жар.ж. - {0} жар.ж. - - - метр - {0} м - {0} м - - - µметр - {0} µм - {0} µм - - - мил - {0} мил - {0} мил + + см + {0} см + {0} см + см/{0} миллиметр {0} мм {0} мм + + µметр + {0} µм + {0} µм + нм {0} нм {0} нм - - дең. мил. - {0} дең. мил. - {0} дең. мил. - - - парсек - {0} пк - {0} пк - пм {0} пм {0} пм + + мил + {0} мил + {0} мил + ярд {0} ярд {0} ярд + + фут + {0} фут + {0} фут + ф/{0} + + + дюйм + {0} дюйм + {0} дюйм + д/{0} + + + парсек + {0} пк + {0} пк + + + жарык жыл + {0} жар.ж. + {0} жар.ж. + + + а. б. + {0} а.б. + {0} а.б. + + + дең. мил. + {0} дең. мил. + {0} дең. мил. + + + smi + {0} smi + {0} smi + люкс {0} лк {0} лк - - карат - {0} кар. - {0} кар. - - - грамм - {0} г - {0} г - - - килограмм - {0} кг - {0} кг - т {0} т {0} т - - мкг - {0} мкг - {0} мкг + + килограмм + {0} кг + {0} кг + кг/{0} + + + грамм + {0} гр + {0} гр + гр/{0} мг {0} мг {0} мг - - унц. - {0} унц. - {0} унц. - - - тр. унц. - {0} тр. унц. - {0} тр. унц. - - - фунт - {0} фунт - {0} фунт + + мкг + {0} мкг + {0} мкг тонна {0} тон. {0} тон. + + фунт + {0} фунт + {0} фунт + фунт/{0} + + + унц. + {0} унц. + {0} унц. + унц/{0} + + + тр. унц. + {0} тр. унц. + {0} тр. унц. + + + карат + {0} кар. + {0} кар. + ГВт {0} ГВт {0} ГВт - - а.к. - {0} а.к. - {0} а.к. - - - кВт - {0} кВт - {0} кВт - МВт {0} МВт {0} МВт - - мвт - {0} мвт - {0} мвт + + кВт + {0} кВт + {0} кВт ватт {0} Вт {0} Вт + + мвт + {0} мвт + {0} мвт + + + а.к. + {0} а.к. + {0} а.к. + hPa {0} гПа {0} гПа + + мм.с.м. + {0} мм.с. м. + {0} мм.с. м. + + + фчд + {0} фчд + {0} фчд + - дүйм сымап мамычасы + дюйм сымап мамычасы {0} inHg {0} inHg @@ -5828,21 +6271,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мбар {0} мбар - - с. м. мм - {0} с. м. мм - {0} с. м. мм - - - фчд - {0} фчд - {0} фчд - - - карат - {0} кт - {0} кт - км/саат {0} км/с @@ -5854,10 +6282,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} м/сек. - мил/саат + миль/саат {0} мил/с {0} мил/с + + тн + {0} тн + {0} тн + + + ° + {0}° + {0}° + Цельсий град. {0}°C @@ -5873,31 +6311,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - акр-фут - {0} ак. фт. - {0} ак. фт. - - - сЛ - {0} сЛ - {0} сЛ - - - см³ - {0} см³ - {0} см³ - - - фут³ - {0} фут³ - {0} фут³ - - - дюйм³ - {0} дюйм³ - {0} дюйм³ - куб километр {0} км³ @@ -5907,6 +6320,13 @@ For terms of use, see http://www.unicode.org/copyright.html м³ {0} м³ {0} м³ + м³/{0} + + + см³ + {0} см³ + {0} см³ + см³/{0} мил³ @@ -5918,25 +6338,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ярд³ {0} ярд³ - - чөйчөк - {0} чөй. - {0} чөй. + + фут³ + {0} фут³ + {0} фут³ - - дал - {0} дал - {0} дал + + дюйм³ + {0} дюйм³ + {0} дюйм³ - - с. унц. - {0} с. унц. - {0} с. унц. - - - гал - {0} гал - {0} гал + + мгл + {0} мгл + {0} мгл гл @@ -5947,26 +6362,63 @@ For terms of use, see http://www.unicode.org/copyright.html литр {0} л {0} л + л/{0} - - Мл - {0} Мл - {0} Мл + + дл + {0} дл + {0} дл + + + сЛ + {0} сЛ + {0} сЛ - мЛ - {0} мЛ - {0} мЛ + мл + {0} мл + {0} мл + + + мпт + {0} мпт + {0} мпт + + + mcup + {0} mc + {0} mc + + + акр-фут + {0} ак. фт. + {0} ак. фт. + + + гал + {0} гал + {0} гал + гал/{0} + + + квр + {0} квр + {0} квр пт {0} пт {0} пт - - квр - {0} квр - {0} квр + + чөйчөк + {0} чөй. + {0} чөй. + + + с. унц. + {0} с. унц. + {0} с. унц. чоң каш. @@ -5978,15 +6430,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} чай каш. {0} чай каш. + + {0}Ч + {0}Тн + {0}Тш + {0}Б + - {0}/{1} + {1}/{0} {0} о.к. {0} о.к. + + {0}° + {0}° + {0}′ {0}′ @@ -5995,26 +6457,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} акр - {0} акр + + {0} км² + {0} км² {0} га {0} га - - {0} фут² - {0} фут² - - - {0} км² - {0} км² - {0} м² {0} м² @@ -6023,76 +6473,73 @@ For terms of use, see http://www.unicode.org/copyright.html {0} чак² {0} чак² - - күн - {0} к - {0} к + + {0} акр + {0} акр - - саат - {0} с - {0} с + + {0} фут² + {0} фут² - - миллисек - {0} мс - {0} мс - - - мүн - {0} мүн - {0} мүн - - - ай - {0} ай - {0} ай - - - сек - {0} сек - {0} сек - - - ап - {0} ап - {0} ап + + 100 км/л + 100 км/{0}л + 100 км/{0}л жыл {0} ж. {0} ж. - - см - {0} см - {0} см + + ай + {0} ай + {0} ай - - {0} фут - {0} фут + + апт + {0} ап + {0} ап - - {0} д - {0} д + + күн + {0} кн + {0} кн + + + саат + {0} ст + {0} ст + + + мүн + {0} мүн + {0} мүн + + + сек + {0} сек + {0} сек + + + миллисек + {0} мс + {0} мс км {0} км {0} км - - {0} жар.ж. - {0} жар.ж. - метр {0}м {0}м - - {0} чак - {0} чак + + см + {0} см + {0} см мм @@ -6103,31 +6550,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} пм {0} пм + + {0} чак + {0} чак + {0} ярд {0} ярд - - грамм - {0} г - {0} г + + {0} фут + {0} фут + + + {0} д + {0} д + + + {0} жар.ж. + {0} жар.ж. килограмм {0} кг {0} кг - - {0} унция - {0} унция + + грамм + {0} гр + {0} гр {0} фунт {0} фунт - - {0} ат - {0} ат + + {0} унция + {0} унция {0} кВт @@ -6137,6 +6596,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Вт {0} Вт + + {0} ат + {0} ат + {0} гПа {0} гПа @@ -6184,6 +6647,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} л {0} л + + {0}Ч + {0}Тн + {0}Тш + {0}Б + h:mm @@ -6208,6 +6677,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}, {1} {0}, {1} + + {0} {1} + {0} {1} + {0} {1} + {0} {1} + {0}, {1} {0}, {1} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ky_Cyrl_KG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ky_KG.xml similarity index 65% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ky_Cyrl_KG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ky_KG.xml index fb7aa5caf79..37a1dc6a958 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ky_Cyrl_KG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ky_KG.xml @@ -1,15 +1,14 @@ - - - + - - + @@ -575,7 +578,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -624,8 +627,8 @@ For terms of use, see http://www.unicode.org/copyright.html - - + + @@ -702,7 +705,7 @@ For terms of use, see http://www.unicode.org/copyright.html ອາຟຣິກາ ອາເມລິກາເໜືອ ອາເມລິກາໃຕ້ - ໂອຊີເນຍ + ໂອຊີອານີ ອາຟຣິກາຕາເວັນຕົກ ອາເມລິກາກາງ ອາຟຣິກາຕາເວັນອອກ @@ -710,19 +713,19 @@ For terms of use, see http://www.unicode.org/copyright.html ອາຟຣິກາກາງ ອາຟຣິກາໃຕ້ ອາເມຣິກາ - ອາເມລິກາສ່ວນເໜືອ + ພາກເໜືອອາເມລີກາ ຄາຣິບບຽນ - ເອເຊຍຕາເວັນອອກ - ເອເຊຍໃຕ້ - ເອເຊຍຕາເວັນອອກສ່ຽງໃຕ້ + ອາຊີຕາເວັນອອກ + ອາຊີໄຕ້ + ອາຊີຕາເວັນອອກສ່ຽງໄຕ້ ຢູໂຣບໃຕ້ - ອອສເຕຣເລເຊຍ + ໂອດສະຕາລີ ເມລານີເຊຍ ເຂດໄມໂຄຣເນຊຽນ ໂພລີນີເຊຍ - ເອເຊຍ - ເອເຊຍກາງ - ເອເຊຍຕາເວັນຕົກ + ອາຊີ + ອາຊີກາງ + ອາຊີຕາເວັນຕົກ ຢູໂຣບ ຢູໂຣບຕາເວັນອອກ ຢູໂຣບເໜືອ @@ -736,12 +739,11 @@ For terms of use, see http://www.unicode.org/copyright.html ແອນກຸຍລາ ແອວເບເນຍ ອາເມເນຍ - ເນເທີແລນແອນເທິນ ອັນໂກລາ ແອນຕາດຕິກາ ອາເຈນທິນາ ອາເມຣິກາ ຊາມົວ - ອອສເທຣຍ + ໂອຕາລິກ ອອສເຕຣເລຍ ອໍຣູບາ ຫມູ່ເກາະໂອລັນ @@ -749,9 +751,9 @@ For terms of use, see http://www.unicode.org/copyright.html ບອດສະເນຍ ແລະ ແຮສໂກວີນາ ບາບາໂດສ ບັງກະລາເທດ - ເບວຢຽມ + ແບລຊິກ ເບີກິນາ ຟາໂຊ - ບັງກາເຣຍ + ບູລກາຣິ ບາເຣນ ບູຣຸນດິ ເບນິນ @@ -760,14 +762,14 @@ For terms of use, see http://www.unicode.org/copyright.html ບຣູໄນ ໂບລິເວຍ ຄາຣິບບຽນ ເນເທີແລນ - ບຣາຊິວ + ບະເລຊີນ ບາຮາມາສ ພູຖານ ເກາະບູເວດ ບອດສະວານາ ເບວບາຣຸສ ເບລີຊ - ແຄນາດາ + ການາດາ ຫມູ່ເກາະໂກໂກສ ຄອງໂກ - ຄິນຊາຊາ ຄອງໂກ (ສາທາລະນະລັດປະຊາທິປະໄຕ) @@ -778,13 +780,13 @@ For terms of use, see http://www.unicode.org/copyright.html ໂຄຕີ ວົວ ໄອໂວຣີ ໂຄທ ໝູ່ເກາະຄຸກ - ຊິລີ + ຈີເລ ຄາເມຣູນ ຈີນ ໂຄລົມເບຍ ເກາະຄລິບເປີຕັນ ໂຄສຕາ ຣິກາ - ຄິວບາ + ກຸຍບາ ເຄບ ເວີດ ຄູຣາຊາວ ເກາະຄຣິສມາດ @@ -798,7 +800,7 @@ For terms of use, see http://www.unicode.org/copyright.html ສາທາລະນະລັດ ໂດມິນິກັນ ອັລຈິເຣຍ ເຊວຕາ ແລະເມລິນລາ - ເອກກວາດໍ + ເອກວາດໍ ເອສໂຕເນຍ ອີຢິບ ຊາຮາຣາຕາເວັນຕົກ @@ -806,7 +808,7 @@ For terms of use, see http://www.unicode.org/copyright.html ສະເປນ ອີທິໂອເປຍ ສະຫະພາບຢູໂຣບ - ຟິນແລນ + ຝຽກລັງ ຟິຈິ ຫມູ່ເກາະຟອກແລນ ໝູ່ເກາະຟອກແລນ (ອິສລາສ ມາວິນນາສ) @@ -863,7 +865,7 @@ For terms of use, see http://www.unicode.org/copyright.html ເຊນ ຄິດ ແລະ ເນວິສ ເກົາຫລີເໜືອ ເກົາຫລີໃຕ້ - ຄູເວດ + ກູເວດ ເຄແມນ ໄອແລນ ຄາຊັກສະຖານ ລາວ @@ -874,7 +876,7 @@ For terms of use, see http://www.unicode.org/copyright.html ລິເບີເຣຍ ເລໂຊໂທ ລິທົວເນຍ - ລຸກແຊມເບີກ + ລຸກຊຳບົວ ລັດເວຍ ລິເບຍ ໂມຣັອກໂຄ @@ -888,7 +890,7 @@ For terms of use, see http://www.unicode.org/copyright.html ແມຊິໂດເນຍ (FYROM) ມາລິ ມຽນມາ (ເບີມາ) - ມອງໂກເລຍ + ມົງໂກລີ ມາເກົ້າ ເຂດປົກຄອງພິເສດ ຈີນ ມາເກົ້າ ຫມູ່ເກາະມາແຊວຕອນເຫນືອ @@ -899,7 +901,7 @@ For terms of use, see http://www.unicode.org/copyright.html ມົວຣິຊຽສ ມັນດິຟ ມາລາວີ - ເມັກຊິໂກ + ແມັກຊີໂກ ມາເລເຊຍ ໂມແຊມບິກ ນາມີເບຍ @@ -909,7 +911,7 @@ For terms of use, see http://www.unicode.org/copyright.html ໄນຈີເຣຍ ນິກຄາຣາກົວ ເນເທີແລນ - ນໍເວ + ນອກແວ໊ ເນປານ ນາອູຣູ ນີອູເອ @@ -921,7 +923,7 @@ For terms of use, see http://www.unicode.org/copyright.html ປາປົວນິວກີນີ ຟິລິບປິນ ປາກິສຖານ - ໂປແລນ + ໂປໂລຍ ເຊນ ປີແອ ມິເກວລອນ ໝູ່ເກາະພິດແຄນ ເພືອໂຕ ຣິໂກ @@ -933,7 +935,7 @@ For terms of use, see http://www.unicode.org/copyright.html ກາຕາ ເຂດຫ່າງໄກໂອຊີເນຍ ເຣອູນິຍົງ - ໂຣແມເນຍ + ໂຣມານີ ເຊີເບຍ ຣັດເຊຍ ຣວັນດາ @@ -950,7 +952,7 @@ For terms of use, see http://www.unicode.org/copyright.html ເຊຍຣາ ລີໂອນ ແຊນ ມາຣິໂນ ເຊນີໂກລ - ໂຊມາເລຍ + ໂຊມາລີ ຊູຣິນາມ ຊູດານໃຕ້ ເຊົາທູເມ ແລະ ພຣິນຊິບ @@ -1061,90 +1063,103 @@ For terms of use, see http://www.unicode.org/copyright.html ປະຕິທິນ ຮຽງລຳດັບ - ເງິນຕາ + ສະກຸນເງິນ + ຮອບວຽນຊົວໂມງ( 12 ຫຼື 24) + ຮູບແບບການຍຸດຜອນຕາມເສັ້ນຕົງ + ລະບົບການວັດແທກ ຕົວເລກ - ຕົວເລກອາຣາບິກ-ອິນດິກ - ຕົວເລກອາຣາບິກ-ອິນດິກຕົວເຕັມ - ຕົວເລກອາເມນຽນ - ຕົວເລກອາເມນຽນຕົວພິມນ້ອຍ - ຕົວເລກບາລີ - ຕົວເລກເບັງກາລີ - ລຽງຕາມອັກສອນຈີນດັ້ງເດີມ - ປະຕິທິນພຸດ - ຕົວເລກຊຣາມ - ປະຕິທິນຈີນ - ປະຕິທິນຄັອບຕິກ - ປະ​ຕິ​ທິນ​ດັງ​ກີ - ຕົວເລກເນວັນເນກາຣີ - ລຽງຕາມພົດຈະນານຸກົມ - ຮຽງຕາມລຳດັບຢູນິໂຄດເລີ່ມຕົ້ນ - ຕົວເລກເອທິໂອປິກ - ປະຕິທິນເອທິໂອເປຍ - ປະຕິທິນປີໂອເອທິໂອເປຍ - ຕົວເລກຄວາມກວ້າງເຕັມ - ລຽງຕາມອັກສອນຈີນປະຍຸກ - ຕົວເລກຈໍຈຽນ - ປະຕິທິນເກຣໂກຣຽນ - ຕົວເລກກຣີກ - ຕົວເລກກຣີກຕົວພິມນ້ອຍ - ຕົວເລກກຸຈາລາຕິ - ຕົວເລກກົວມູຄິ - ຕົວເລກທົດສະນິນົມຈີນ - ຕົວເລກຈີນແບບຮຽບງ່າຍ - ຕົວເລກທາງການເງິນແບບຮຽບງ່າຍຂອງຈີນ - ຕົວເລກຈີນແບບດັ້ງເດີມ - ຕົວເລກທາງການເງິນແບບດັ້ງເດີມຂອງຈີນ - ຕົວເລກຮິບຣິວ - ປະ​ຕິ​ທິນ​ຮີບ​ຣິວ - ປະຕິທິນແຫ່ງຊາດອິນເດຍ - ປະຕິທິນອິສະລາມ - ປະຕິທິນອິດສະລາມ - ປະ​ຕິ​ທິນ ISO-8601 - ປະຕິທິນຍີ່ປຸ່ນ - ຕົວເລກຊົວ - ຕົວເລກຍີ່ປຸ່ນ - ຕົວເລກທາງການເງິນຂອງຍີ່ປຸ່ນ - ຕົວເລກກາຢາ - ຕົວເລກຂະໝຽນ - ຕົວເລກແຄນນາດາ - ຕົວເລກໄທທຳໂຮລາ - ຕົວເລກໄທທຳທຳ - ຕົວເລກລາວ - ຕົວເລກຕາເວັນຕົກ - ຕົວເລກເລຊາ - ຕົວເລກລິມບູ - ຕົວເລກມາເລອາລຳ - ຕົວເລກມ່ອງໂກເລຍ - ຕົວເລກເມໄຕມາເຢກ - ຕົວເລກມຽນມາ - ຕົວເລກຊານພະມ້າ - ຕົວເລກເອັນໂກ້ - ຕົວເລກໂອລຈິກິ - ຕົວເລກໂອຣິຢາ - ປະຕິທິນເປີຊຽນ - ລຽງຕາມສະໝຸດໂທລະສັບ - ລຽງຕາມການອອກສຽງພາສາຈີນ - ລຽງຕາມລຳດັບສຸດທ້າຍ - ປະຕິທິນໄຕ້ຫວັນ - ຕົວເລກໂຣມັນ - ຕົວເລກໂຣມັນຕົວພິມນ້ອຍ - ຕົວເລກເສົາລັດທາ - ການຊອກຫາທົ່ວໄປ - ຄົ້ນຫາຕາມພະຍັນຊະນະຂຶ້ນຕົ້ນທີ່ເປັນຮັງກີຣ - ຮຽງຕາມມາດຕະຖານ - ລຽງຕາມການລາກເສັ້ນ - ຕົວເລກຊຸນດາ - ຕົວເລກໄຕລື້ໃໝ່ - ຕົວເລກທາມິວແບບດັ້ງເດີມ - ຕົວເລກທາມິວ - ຕົວເລກເຕລູກູ - ຕົວເລກໄທ - ຕົວເລກທິເບດ - ລຽງຕາມແບບດັ້ງເດີມ - ລຽງລຳດັບຕາມຈຳນວນຂີດ - ຕົວເລກໃນລະບົບໄວ + ປະຕິທິນ ພຸດທະສັງກາດ + ປະຕິທິນຈີນ + ປະຕິທິນຄັອບຕິກ + ປະ​ຕິ​ທິນ​ດັງ​ກີ + ປະຕິທິນເອທິໂອເປຍ + ປະຕິທິນປີໂອເອທິໂອເປຍ + ປະຕິທິນເກຣໂກຣຽນ + ປະ​ຕິ​ທິນ​ຮີບ​ຣິວ + ປະຕິທິນແຫ່ງຊາດອິນເດຍ + ປະຕິທິນອິສະລາມ + ປະຕິທິນອິດສະລາມ + ປະ​ຕິ​ທິນ ISO-8601 + ປະຕິທິນຍີ່ປຸ່ນ + ປະຕິທິນເປີຊຽນ + ປະຕິທິນໄຕ້ຫວັນ + ລຽງຕາມອັກສອນຈີນດັ້ງເດີມ + ລຽງຕາມພົດຈະນານຸກົມ + ຮຽງຕາມລຳດັບຢູນິໂຄດເລີ່ມຕົ້ນ + ລຽງຕາມອັກສອນຈີນປະຍຸກ + ລຽງຕາມສະໝຸດໂທລະສັບ + ລຽງຕາມການອອກສຽງພາສາຈີນ + ລຽງຕາມລຳດັບສຸດທ້າຍ + ການຊອກຫາທົ່ວໄປ + ຄົ້ນຫາຕາມພະຍັນຊະນະຂຶ້ນຕົ້ນທີ່ເປັນຮັງກີຣ + ຮຽງຕາມມາດຕະຖານ + ລຽງຕາມການລາກເສັ້ນ + ລຽງຕາມແບບດັ້ງເດີມ + ລຽງລຳດັບຕາມຈຳນວນຂີດ + ຕາມລະບົບ 12 ຊົວໂມງ (0–11) + ຕາມລະບົບ 12 ຊົວໂມງ (1–12) + ຕາມລະບົບ 24 ຊົວໂມງ (0–23) + ຕາມລະບົບ 24 ຊົວໂມງ (1–24) + ຮູບແບບການຍຸດຜອນຕາມເສັ້ນລວມ + ຮູບແບບການຍຸດຜອນຕາມປົກກະຕິ + ຮູບແບບການຍຸດຜອນແບບເຄັ່ມຫງວດ + ລະບົບແມັດຕິດ + ລະບົບການວັດແທກແບບຕາເວັນຕົກ + ລະບົບການວັດແທກແບບສະຫະລັດ + ຕົວເລກອາຣາບິກ-ອິນດິກ + ຕົວເລກອາຣາບິກ-ອິນດິກຕົວເຕັມ + ຕົວເລກອາເມນຽນ + ຕົວເລກອາເມນຽນຕົວພິມນ້ອຍ + ຕົວເລກບາລີ + ຕົວເລກເບັງກາລີ + ຕົວເລກຊຣາມ + ຕົວເລກເນວັນເນກາຣີ + ຕົວເລກເອທິໂອປິກ + ຕົວເລກຄວາມກວ້າງເຕັມ + ຕົວເລກຈໍຈຽນ + ຕົວເລກກຣີກ + ຕົວເລກກຣີກຕົວພິມນ້ອຍ + ຕົວເລກກຸຈາລາຕິ + ຕົວເລກກົວມູຄິ + ຕົວເລກທົດສະນິນົມຈີນ + ຕົວເລກຈີນແບບຮຽບງ່າຍ + ຕົວເລກທາງການເງິນແບບຮຽບງ່າຍຂອງຈີນ + ຕົວເລກຈີນແບບດັ້ງເດີມ + ຕົວເລກທາງການເງິນແບບດັ້ງເດີມຂອງຈີນ + ຕົວເລກຮິບຣິວ + ຕົວເລກຊົວ + ຕົວເລກຍີ່ປຸ່ນ + ຕົວເລກທາງການເງິນຂອງຍີ່ປຸ່ນ + ຕົວເລກກາຢາ + ຕົວເລກຂະໝຽນ + ຕົວເລກແຄນນາດາ + ຕົວເລກໄທທຳໂຮລາ + ຕົວເລກໄທທຳທຳ + ຕົວເລກລາວ + ຕົວເລກຕາເວັນຕົກ + ຕົວເລກເລຊາ + ຕົວເລກລິມບູ + ຕົວເລກມາເລອາລຳ + ຕົວເລກມ່ອງໂກເລຍ + ຕົວເລກເມໄຕມາເຢກ + ຕົວເລກມຽນມາ + ຕົວເລກຊານພະມ້າ + ຕົວເລກເອັນໂກ້ + ຕົວເລກໂອລຈິກິ + ຕົວເລກໂອຣິຢາ + ຕົວເລກໂຣມັນ + ຕົວເລກໂຣມັນຕົວພິມນ້ອຍ + ຕົວເລກເສົາລັດທາ + ຕົວເລກຊຸນດາ + ຕົວເລກໄຕລື້ໃໝ່ + ຕົວເລກທາມິວແບບດັ້ງເດີມ + ຕົວເລກທາມິວ + ຕົວເລກເຕລູກູ + ຕົວເລກໄທ + ຕົວເລກທິເບດ + ຕົວເລກໃນລະບົບໄວ ເມທຣິກ @@ -1167,7 +1182,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} … … {0} {0} … {1} - ຂໍ້ມູນເພີ່ມເຕີມ + ? @@ -1644,11 +1659,12 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d G y - G MMM y + MMM y G G d MMM y - G E, d MMM y + E, MMM d, y G h ໂມງa HH h:mm a @@ -1661,6 +1677,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d MMM E d MMM + MMMM d mm:ss G y G y @@ -1670,6 +1687,7 @@ For terms of use, see http://www.unicode.org/copyright.html G MMM y G d MMM y E, G d MMM y + G y MMMM G QQQ y G y QQQQ @@ -1983,15 +2001,67 @@ For terms of use, see http://www.unicode.org/copyright.html - - ກທ - - ຫຼທ - - + + ທ່ຽງຄືນ ກ່ອນທ່ຽງ ທ່ຽງ ຫຼັງທ່ຽງ + ຕອນເຊົ້າ + ຕອນບ່າຍ + ຕອນແລງ + ກາງຄືນ + + + ທ່ຽງຄືນ + ຕອນເຊົ້າ + + ຫຼທ + ຕອນເຊົ້າ + ຕອນທ່ຽງ + ຕອນແລງ + ກາງຄືນ1 + + + ທ່ຽງຄືນ + ກ່ອນທ່ຽງ + ທ່ຽງ + ຫຼັງທ່ຽງ + ຕອນເຊົ້າ + ຕອນບ່າຍ + ຕອນແລງ + ຕອນກາງຄືນ + + + + + ທ່ຽງ​ຄືນ + ກ່ອນທ່ຽງ + ຕອນທ່ຽງ + ຫຼັງທ່ຽງ + ​ເຊົ້າ + ສວຍ + ແລງ + ​ກາງ​ຄືນ + + + ທ່ຽງ​ຄືນ + ກທ + ຕອນທ່ຽງ + ຫຼທ + ​ເຊົ້າ + ສວຍ + ແລງ + ​ກາງ​ຄືນ + + + ທ່ຽງ​ຄືນ + ກ່ອນທ່ຽງ + ຕອນທ່ຽງ + ຫຼັງທ່ຽງ + ​ເຊົ້າ + ສວຍ + ແລງ + ​ກາງ​ຄືນ @@ -2004,7 +2074,9 @@ For terms of use, see http://www.unicode.org/copyright.html ກ່ອນ ຄ.ສ. + ກ່ອນຍຸກ ຄ.ສ ຄ.ສ. + ຍຸກ ຄ.ສ @@ -2090,12 +2162,17 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d/M E, d/M LLL d MMM E d MMM + MMMM d mm:ss y M/y @@ -2104,6 +2181,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y d MMM y E, d MMM y + y MMMM QQQ y QQQQ y @@ -2234,9 +2312,9 @@ For terms of use, see http://www.unicode.org/copyright.html ຊີວັດ ອາດາ I ອາດາ - ອາດ II + ອາດາ II ນິດຊານ - ອີຍາ + ອີຍາຣ ສີວານ ຕາມູ ເອບ @@ -2270,7 +2348,7 @@ For terms of use, see http://www.unicode.org/copyright.html ອາດາ ອາດາ II ນິດຊານ - ອີຍາ + ອີຍາຣ ສີວານ ຕາມູ ເອບ @@ -2415,8 +2493,8 @@ For terms of use, see http://www.unicode.org/copyright.html ມຸຣະຮອມ ຊາຟາຣ - ຮາບີ 1 - ຮາບີ 2 + ຮອດບີ 1 + ຮອດບີ 2 ຈຸມາດາ 1 ຈຸມາດາ 2 ຮາຈັບ @@ -2459,8 +2537,8 @@ For terms of use, see http://www.unicode.org/copyright.html ມຸຣະຮອມ ຊາຟາຣ - ຮາບີ 1 - ຮາບີ 2 + ຮອດບີ 1 + ຮອດບີ 2 ຈຸມາດາ 1 ຈຸມາດາ 2 ຮາຈັບ @@ -2803,7 +2881,7 @@ For terms of use, see http://www.unicode.org/copyright.html ອໍຣດີບີເຫຣດ ຄໍຣເດດ ແຕຣ - ມໍຣດາເ + ມໍຣເດດ ຊາຣຫິວາ ເມີ ອາບານ @@ -2890,9 +2968,24 @@ For terms of use, see http://www.unicode.org/copyright.html ປ. + + ໃນອີກ {0} ປີ + + + {0} ປີກ່ອນ + + + + ປ. + + ໃນອີກ {0} ປີ + + + {0} ປີກ່ອນ + - ຄວດເຕີ + ໄຕມາດ ໃນອີກ {0} ຄວດເຕີ @@ -2901,7 +2994,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ຄຕ. + ຕມ. ໃນອີກ {0} ຄຕ. @@ -2910,7 +3003,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ຄຕ. + ຕມ. +{0} ຄຕ. @@ -2942,10 +3035,10 @@ For terms of use, see http://www.unicode.org/copyright.html ດ. - +{0} ດ. + ໃນອີກ {0} ດ. - -{0} ດ. + {0} ດ. ກ່ອນ @@ -2975,7 +3068,7 @@ For terms of use, see http://www.unicode.org/copyright.html +{0} ອທ. - -{0} ອທ. + {0} ອທ. ກ່ອນ @@ -2994,6 +3087,11 @@ For terms of use, see http://www.unicode.org/copyright.html ມື້ + ມື້ກ່ອນ + ມື້ວານ + ມື້ນີ້ + ມື້ອື່ນ + ມື້ຮື ໃນອີກ {0} ມື້ @@ -3003,6 +3101,11 @@ For terms of use, see http://www.unicode.org/copyright.html ມື້ + ມື້ກ່ອນ + ມື້ວານ + ມື້ນີ້ + ມື້ອື່ນ + ມື້ຮື ໃນອີກ {0} ມື້ @@ -3019,9 +3122,9 @@ For terms of use, see http://www.unicode.org/copyright.html ວັນອາທິດໜ້າ - ອາທິດແລ້ວ - ອາທິດນີ້ - ອາທິດໜ້າ + ວັນທິດແລ້ວ + ວັນອາທິດນີ້ + ວັນອາທິດໜ້າ ອາ. ແລ້ວ @@ -3216,7 +3319,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} (+0) {1} ({0}) - ບໍ່ຮູ້ຈັກ + ບໍ່ຮູ້ຊື່ເມືອງ ອິນດໍຣາ @@ -3368,6 +3471,9 @@ For terms of use, see http://www.unicode.org/copyright.html ບາເບດອສ + + ດາຫ໌ກາ + ບຣັສເຊວ @@ -4079,6 +4185,9 @@ For terms of use, see http://www.unicode.org/copyright.html ພອດ ມໍເຣສບີ + + ເວລາຕາມເຂດບູນກຽນວິວ + ມານີລາ @@ -4163,6 +4272,9 @@ For terms of use, see http://www.unicode.org/copyright.html ອີຄຸສຄ໌ + + ຊີຕ່າ + ຢາຄຸທຊ໌ @@ -4181,6 +4293,9 @@ For terms of use, see http://www.unicode.org/copyright.html ມາກາແດນ + + ສຣິລເນັກໂກລີດ + ຄາມຊາດກາ @@ -4498,7 +4613,7 @@ For terms of use, see http://www.unicode.org/copyright.html ເວລາອະແລສກາ ເວລາມາດຕະຖານອະແລສກາ - ເວລາຕອນທ່ຽງຂອງອະແລສກາ + ເວລາກາງເວັນອະແລສກາ @@ -4510,16 +4625,16 @@ For terms of use, see http://www.unicode.org/copyright.html - ເວ​ລາ​ອາ​ເມ​ຊອນ + ເວລາຕາມເຂດອາເມຊອນ ເວ​ລາ​ມາດ​ຕະ​ຖານອາ​ເມ​ຊອນ ເວ​ລາ​ລະ​ດູ​ຮ້ອນອາ​ເມ​ຊອນ - ເວລາຕອນທ່ຽງ - ເວລາມາດຕະຖານ - ເວລາຕອນທ່ຽງຂອງອາເມລິກາເໝືອ + ເວລາກາງ + ເວລາມາດຕະຖານກາງ + ເວລາກາງເວັນກາງ @@ -4533,14 +4648,14 @@ For terms of use, see http://www.unicode.org/copyright.html ເວລາແຖບພູເຂົາ ເວລາມາດຕະຖານແຖບພູເຂົາ - ເວລາຕອນທ່ຽງແຖວພູເຂົາ + ເວລາກາງເວັນແຖວພູເຂົາ ເວລາປາຊີຟິກ ເວລາມາດຕະຖານຂອງປາຊີຟິກ - ເວລາຕອນທ່ຽງຂອງປາຊີຟິກ + ເວລາກາງເວັນຂອງປາຊີຟິກ @@ -4596,7 +4711,7 @@ For terms of use, see http://www.unicode.org/copyright.html ເວລາຂອງອາແລນຕິກ ເວລາມາດຕະຖານຂອງອາແລນຕິກ - ເວລາຕອນທ່ຽງຂອງອາແລນຕິກ + ເວລາກາງເວັນຂອງອາແລນຕິກ @@ -4660,9 +4775,9 @@ For terms of use, see http://www.unicode.org/copyright.html - ເວລາເບຣຊີເລຍ + ເວລາຕາມເຂດບຣາຊິເລຍ ເວລາມາດຕາຖານເບຣຊີເລຍ - ເວລາລະດູຮ້ອນເບຣຊີເລຍ + ເວລາຕາມເຂດລະດູຮ້ອນຕາມເຂດບຣາຊີເລຍ @@ -5510,6 +5625,25 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;¤-#,##0.00 + + ¤#,##0.00;¤-#,##0.00 + + + + + ¤0 ພັນ + ¤00 ພັນ + ¤000 ກີບ + ¤0 ລ້ານ + ¤00 ລ້ານ + ¤000 ລ້ານ + ¤0 ຕື້ + ¤00 ຕື້ + ¤000 ຕື້ + ¤0 ລ້ານລ້ານ + ¤00 ລ້ານລ້ານ + ¤000 ລ້ານລ້ານ + {0} {1} @@ -5549,6 +5683,7 @@ For terms of use, see http://www.unicode.org/copyright.html ແອງ​ໂກ​ລັນ ຄວນ​ຊາ ແອງ​ໂກ​ລັນ ຄວນ​ຊາ AOA + Kz ກວານຊາ ແອງໂກລາ (1977–1991) @@ -5606,6 +5741,7 @@ For terms of use, see http://www.unicode.org/copyright.html ບອ​ສ​ເນຍ-ເຮີ​ເຊ​ໂກວິ​ນາ ຄອນ​ເວີດ​ຕິ​ໂບ ມາກ ບອ​ສ​ເນຍ-ເຮີ​ເຊ​ໂກວິ​ນາ ຄອນ​ເວີດ​ຕິ​ໂບ ມາກ BAM + KM ດີນາໃໝ່ ບອສເນຍ ເຮີເຊໂບວີນາ(1994–1997) @@ -5639,6 +5775,7 @@ For terms of use, see http://www.unicode.org/copyright.html ບັງ​ກາ​ຣຽນ ເລບ + ເລບ ບູນກາຣີ BGN @@ -5670,6 +5807,7 @@ For terms of use, see http://www.unicode.org/copyright.html ໂບ​ລິ​ວຽນ ໂບ​ລິ​ເວຍ​ໂນ ໂບ​ລິ​ວຽນ ໂບ​ລິ​ເວຍ​ໂນ BOB + Bs ໂລລິເວຍໂນ ໂລລິເວຍ (1863–1963) @@ -5722,6 +5860,7 @@ For terms of use, see http://www.unicode.org/copyright.html ບອດ​ສະ​ວາ​ນານ ພູ​ລາ ບອດ​ສະ​ວາ​ນານ ພູ​ລາ BWP + P ຣູໂບ ເບຣາຣຸສ ໃໝ່(1994–1999) @@ -5803,6 +5942,7 @@ For terms of use, see http://www.unicode.org/copyright.html ຄິວແບນ ຄອນເວີດຕິໂບ ເປໂຊ ຄິວແບນ ຄອນເວີດຕິໂບ ເປໂຊ CUC + $ ຄິວແບນ ເປໂຊ @@ -5822,6 +5962,7 @@ For terms of use, see http://www.unicode.org/copyright.html ໂຄ​ຣູ​ນາ ເຊກ ໂຄ​ຣູ​ນາ ເຊກ CZK + ມາກ ເຢຍລະມັນ ຕາເວັນອອກ @@ -5838,6 +5979,7 @@ For terms of use, see http://www.unicode.org/copyright.html ແດນ​ນິ​ຊ ໂຄຣນ ແດນ​ນິ​ຊ ໂຄຣນເນີ DKK + kr ໂດ​ມິ​ນິ​ກັນ ເປ​ໂຊ @@ -5863,6 +6005,7 @@ For terms of use, see http://www.unicode.org/copyright.html ອີ​ຢິບ​ທຽນ ພາວດ໌ ອີ​ຢິບ​ທຽນ ພາວດ໌ EGP + ອິ​ຣິ​ທຣຽນ ແນກ​ຟ​າ @@ -5895,19 +6038,21 @@ For terms of use, see http://www.unicode.org/copyright.html ຟິ​ຈຽນ ໂດ​ລ່າ ຟິ​ຈຽນ ໂດ​ລ່າ + FJD $ ຟອ​ລ໌ກ​ແລນ ໄອ​ແລນ​ສ໌ ພາວ​ດ໌ ຟອ​ລ໌ກ​ແລນ ໄອ​ແລນ​ສ໌ ພາວ​ດ໌ FKP + £ ຟຣັງ ຝຣັ່ງ - ພາວ​ດ໌ ສະ​ເຕີ​ຣິງ (ອັງ​ກິດ) - ພາວ​ດ໌ ສະ​ເຕີ​ຣິງ (ອັງ​ກິດ) + ປອນ ສະ​ເຕີ​ຣິງ (ອັງ​ກິດ) + ປອນ ສະເຕີຣິງ (ອັງກິດ) £ £ @@ -5918,6 +6063,7 @@ For terms of use, see http://www.unicode.org/copyright.html ຈໍ​ຈຽນ ລາ​ຣິ ຈໍ​ຈຽນ ລາ​ຣິ GEL + ລາຣີ ເຊດີ ການາ (1979–2007) @@ -5942,6 +6088,7 @@ For terms of use, see http://www.unicode.org/copyright.html ກິ​ນຽນ ຟຣັງ ກິ​ນຽນ ຟຣັງ GNF + FG ໄຊລິ ກີນີ @@ -5956,6 +6103,7 @@ For terms of use, see http://www.unicode.org/copyright.html ກົວເຕມາລານ ເຄັດຊອນ ເຄັດຊອນ GTQ + Q ເອສກູໂດ ກີນີໂປຕູເກດ @@ -5979,6 +6127,7 @@ For terms of use, see http://www.unicode.org/copyright.html ຮອນດູແຣນ ເລມພິຣາ ຮອນດູແຣນ ເລມພິຣາ HNL + L ດີນາ ໂຄຣເອເຊຍ @@ -5987,20 +6136,24 @@ For terms of use, see http://www.unicode.org/copyright.html ໂຄຣ​ເອ​ທຽນ ຄູ​ນາ ໂຄຣ​ເອ​ທຽນ ຄູ​ນາ HRK + kn ໄຮ​ຕຽນ ກົວ​ເດ + ໄຮ​ຕຽນ ກົວ​ເດ HTG ຮັງ​ກາ​ຣຽນ ຟໍ​ຣິນ ຮັງ​ກາ​ຣຽນ ຟໍ​ຣິນ HUF + Ft ອິນ​ໂດ​ເນ​ຊຽນ ໂດ​ລ່າ ອິນ​ໂດ​ເນ​ຊຽນ ໂດ​ລ່າ IDR + Rp ປອນ ໄອຣິຊ @@ -6034,6 +6187,7 @@ For terms of use, see http://www.unicode.org/copyright.html ໄອ​ສ໌​ແລນ​ດິກ ໂຄຣ​ນາ ໄອ​ສ໌​ແລນ​ດິກ ໂຄຣ​ນາ ISK + kr ລິຣາ ອີຕາລີ @@ -6075,11 +6229,13 @@ For terms of use, see http://www.unicode.org/copyright.html ໂຄ​ໂມ​ຣຽນ ຟຣັງ ໂຄ​ໂມ​ຣຽນ ຟຣັງ KMF + CF ເກົາ​ຫລີ​ເໜືອ ວອນ ເກົາ​ຫລີ​ເໜືອ ວອນ KPW + ຮາວານ ເກົາຫຼີເນື້ @@ -6120,11 +6276,13 @@ For terms of use, see http://www.unicode.org/copyright.html ເລ​ບາ​ນີ​ສ ພາວດ໌ ເລ​ບາ​ນີ​ສ ພາວດ໌ LBP + ສີ​ລັງ​ກາ ຣູ​ປີ ສີ​ລັງ​ກາ ຣູ​ປີ LKR + Rs ລິ​ເບີ​ຣຽນ ໂດ​ລ່າ @@ -6188,6 +6346,7 @@ For terms of use, see http://www.unicode.org/copyright.html ມາ​ລາ​ກາ​ຊີ ອາ​ເຣຍ​ຣີ ມາ​ລາ​ກາ​ຊີ ອາ​ເຣຍ​ຣີ MGA + Ar ຟຣັງ ມາດາກັດສະກາ @@ -6207,6 +6366,7 @@ For terms of use, see http://www.unicode.org/copyright.html ມຽນ​ມາ ຈ໊າດ ມຽນ​ມາ ຈ໊າດ MMK + K ມອງ​ໂກ​ລຽນ ຕູກຣິກ @@ -6234,6 +6394,7 @@ For terms of use, see http://www.unicode.org/copyright.html ເມົາ​ຣິ​ທຽນ ຣູ​ປີ ເມົາ​ຣິ​ທຽນ ຣູ​ປີ MUR + Rs ມັ​ລ​ດິ​ວຽນ ຣູ​ຟິ​ຢາ @@ -6261,6 +6422,7 @@ For terms of use, see http://www.unicode.org/copyright.html ມາ​ເລ​ເຊຍ ຣິງ​ກິດ ມາ​ເລ​ເຊຍ ຣິງ​ກິດ MYR + RM ເອສກູໂດ ໂມຊຳບິກ @@ -6292,6 +6454,7 @@ For terms of use, see http://www.unicode.org/copyright.html ນິກາຣາກວນ ໂຄໂດບາ ນິກາຣາກວນ ໂຄໂດບາ NIO + C$ ກິລເດີ ເນເທີແລນ @@ -6300,11 +6463,13 @@ For terms of use, see http://www.unicode.org/copyright.html ນໍ​ເວ​ກຽນ ​ໂຄຣນ ນໍ​ເວ​ກຽນ ​ໂຄຣນ NOK + kr ເນ​ປານ ຣູ​ປີ ເນ​ປານ ຣູ​ປີ NPR + Rs ນິວ​ຊີ​ແລນ ໂດ​ລ່າ @@ -6348,11 +6513,13 @@ For terms of use, see http://www.unicode.org/copyright.html ປາ​ກິ​ສຖານ ຣູ​ປີ ປາ​ກິ​ສຖານ ຣູ​ປີ PKR + Rs ໂປ​ລິ​ຊ ຊະ​ລໍ​ຕີ ໂປ​ລິ​ຊ ຊະ​ລໍ​ຕີ PLN + ຊະລອສຕີ ໂປແລນ (1950–1995) @@ -6362,6 +6529,7 @@ For terms of use, see http://www.unicode.org/copyright.html ກວາຣານີ ປາຣາກວາຍ + ກວາຣານີ ປາຣາກວາຍ PYG @@ -6390,6 +6558,7 @@ For terms of use, see http://www.unicode.org/copyright.html ຣັສ​ຊຽນ ຣູ​ເບິນ ຣັສ​ຊຽນ ຣູ​ເບິນ RUB + ຣູໂບ ຣັດເຊຍ (1991–1998) @@ -6398,6 +6567,7 @@ For terms of use, see http://www.unicode.org/copyright.html ຣະ​ວັນ​ດັນ ຟຣັງ ຣະ​ວັນ​ດັນ ຟຣັງ RWF + RF ຊາ​ອູ​ດິ ຣິ​ຢອນ @@ -6430,6 +6600,7 @@ For terms of use, see http://www.unicode.org/copyright.html ສະ​ວີ​ດິ​ຊ ໂຄຣ​ນາ ສະ​ວີ​ດິ​ຊ ໂຄຣ​ນາ SEK + kr ສິງ​ກະ​ໂປ ໂດ​ລ່າ @@ -6441,6 +6612,7 @@ For terms of use, see http://www.unicode.org/copyright.html ເຊນ ເຮ​ເລ​ນາ ພາວດ໌ ເຊນ ເຮ​ເລ​ນາ ພາວດ໌ SHP + £ ໂຕລາ ສະໂລວິເນຍ @@ -6477,6 +6649,7 @@ For terms of use, see http://www.unicode.org/copyright.html ເຊົາ ໂທ​ເມ ແອນ ພ​ຣິນ​ຊິ​ປີ ໂດບຣາ ເຊົາ ໂທ​ເມ ແອນ ພ​ຣິນ​ຊິ​ປີ ໂດບຣາ STD + Db ຣູໂບ ໂຊວຽດ @@ -6488,6 +6661,7 @@ For terms of use, see http://www.unicode.org/copyright.html ຊີ​ຣຽນ ພາວດ໌ ຊີ​ຣຽນ ພາວດ໌ SYP + £ ສະ​ວາ​ຊິ ລິ​ລັນ​ກິ​ນີ @@ -6498,6 +6672,7 @@ For terms of use, see http://www.unicode.org/copyright.html ໄທ ບາດ ໄທ ບາດ ฿ + ฿ ຣູໂບ ຕັຈີກິສຖານ @@ -6524,6 +6699,7 @@ For terms of use, see http://www.unicode.org/copyright.html ຕອງ​ກັນ ປາ​ອັງ​ກາ ຕອງ​ກັນ ປາ​ອັງ​ກາ TOP + T$ ເອສກູໂດ ຕີມໍ @@ -6536,6 +6712,7 @@ For terms of use, see http://www.unicode.org/copyright.html ເຕີ​ກິ​ຊ ລິ​ຣາ TRY + TL ທ​ຣິ​ນິ​ແດດ ແອນ ໂທ​ບາ​ໂກ ໂດ​ລ່າ @@ -6545,6 +6722,7 @@ For terms of use, see http://www.unicode.org/copyright.html ນິວ ໄຕ້​ຫວັນ ໂດ​ລ່າ + ນິວ ໄຕ້​ຫວັນ ໂດ​ລ່າ NT$ NT$ @@ -6606,6 +6784,7 @@ For terms of use, see http://www.unicode.org/copyright.html ເວ​ເນ​ຊູ​ເອ​ລັນ ໂບ​ລິ​ວາ ເວ​ເນ​ຊູ​ເອ​ລັນ ໂບ​ລິ​ວາ VEF + Bs ຫວຽດ​ນາມ ດົງ @@ -6628,6 +6807,7 @@ For terms of use, see http://www.unicode.org/copyright.html ຟຣັງ ເຊຟານ ທະນາຄານລັດອາຟຣິກາກາງ + ຟຣັງ ເຊຟານ ທະນາຄານລັດອາຟຣິກາກາງ FCFA @@ -6652,6 +6832,7 @@ For terms of use, see http://www.unicode.org/copyright.html ອີ​ສ ຄາ​ຣິ​ບຽນ ໂດ​ລ່າ ອີ​ສ ຄາ​ຣິ​ບຽນ ໂດ​ລ່າ EC$ + $ ສິດທິຖອນເງິນພິເສດ @@ -6667,6 +6848,7 @@ For terms of use, see http://www.unicode.org/copyright.html ຟັງເຊຟານ ອາຟຣິກາຕາເວັນຕົກ + ຟັງເຊຟານ ອາຟຣິກາຕາເວັນຕົກ CFA @@ -6717,6 +6899,7 @@ For terms of use, see http://www.unicode.org/copyright.html ເຊົາທ໌ ອາ​ຟຣິ​ກັນ ແຣນດ໌ ເຊົາທ໌ ອາ​ຟຣິ​ກັນ ແຣນດ໌ ZAR + R ຄວາຊາ ຊັມເບຍ (1968–2012) @@ -6725,6 +6908,7 @@ For terms of use, see http://www.unicode.org/copyright.html ແຊມ​ບຽນ ຄວາ​ຊາ ແຊມ​ບຽນ ຄວາ​ຊາ ZMW + ZK ແຊ ຄອງໂກໃໝ່ @@ -6753,13 +6937,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ຕໍ່ {1} - ແຮງຈີ - {0} ແຮງຈີ + ແຮງຕົກຕາມລຳພັງ + {0} ແຮງຕົກຕາມລຳພັງ m/s² {0} m/s² + + rev + {0} rev + + + radians + {0} radians + + + ອົງສາ + {0} ອົງສາ + arcminutes {0} ນາທີ @@ -6768,25 +6964,35 @@ For terms of use, see http://www.unicode.org/copyright.html arcseconds {0} ວິນາທີ - - ອົງສາ - {0} ອົງສາ - - - radians - {0} radians - - - ເອເຄີ - {0} ເອເຄີ + + ກິໂລຕາແມັດ + {0} ກິໂລຕາແມັດ ເຮັກຕາ {0} ເຮັກຕາ + + ຕາແມັດ + {0} ຕາແມັດ + {0} ຕໍ່ຕາແມັດ + - ຕາຊັງຕີແມັດ - {0} ຕາຊັງຕາແມັດ + ຊັງຕີຕາແມັດ + {0} ຊັງຕີຕາແມັດ + {0} ຕໍ່ຊັງຕີຕາແມັດ + + + ຕາ​ລາງໄມລ໌ + {0} ຕາ​ລາງໄມລ໌ + + + ເອເຄີ + {0} ເອເຄີ + + + square yards + {0} ຕາລາງຢາດ ຕາ​ຟຸດ @@ -6795,111 +7001,114 @@ For terms of use, see http://www.unicode.org/copyright.html ຕານິ້ວ {0} ຕາລາງນິ້ວ + {0} ຕໍ່ຕາລາງນິ້ວ - - ກິໂລຕາແມັດ - {0} ກິໂລຕາແມັດ - - - ຕາແມັດ - {0} ຕາແມັດ - - - ຕາ​ໄມລ໌ - {0} ຕາ​ໄມລ໌ - - - square yards - {0} ຕາລາງຢາດ + + ກະຣັດ + {0} ກະຣັດ + ລ/ກມ {0} ລິດຕໍ່ກິໂລແມັດ + + ລິດ ຕໍ່ 100 ກິໂລເເມັດ + {0} ລິດຕໍ່ 100 ກີໂລແມັດ + ໄມລ໌ຕໍ່ແກລອນ {0} ໄມລ໌ຕໍ່ແກລອນ - - bit - {0} bit - - - byte - {0} byte - - - Gb - {0} Gb - - - GB - {0} GB - - - kb - {0} kb - - - kB - {0} kB - - - Mb - {0} Mb - - - MB - {0} MB + + TB + {0} TB Tb {0} Tb - - TB - {0} TB + + GB + {0} GB + + + Gb + {0} Gb + + + MB + {0} MB + + + Mb + {0} Mb + + + kB + {0} kB + + + kb + {0} kb + + + byte + {0} byte + + + bit + {0} bit + + + ສັດຕະວັດ + {0} ສັດຕະວັດ + + + ປີ + {0} ປີ + {0} /ປີ + + + ເດືອນ + {0} ເດືອນ + {0}/ເດືອນ + + + ອາທິດ + {0} ອາທິດ + {0} ຕໍ່ອາທິດ ມື້ {0} ມື້ + {0} ຕໍ່ມື້ ຊົ່ວໂມງ {0} ຊົ່ວໂມງ {0} ຕໍ່ຊົ່ວໂມງ - - ໄມ​ໂຄຣ​ວິ​ນາ​ທີ - {0} ໄມ​ໂຄຣ​ວິ​ນາ​ທີ - - - ມິນລີວິນາທີ - {0} ມິນລີວິນາທີ - ນາທີ {0} ນາທີ - - - ເດືອນ - {0} ເດືອນ - - - ນາ​ໂນ​ວິ​ນາ​ທີ - {0} ນາ​ໂນ​ວິ​ນາ​ທີ + {0} ຕໍ່ນາທີ ວິນາທີ {0} ວິນາທີ {0} ຕໍ່ວິນາທີ - - ອາທິດ - {0} ອາທິດ + + ມິນລີວິນາທີ + {0} ມິນລີວິນາທີ - - ປີ - {0} ປີ + + ໄມ​ໂຄຣ​ວິ​ນາ​ທີ + {0} ໄມ​ໂຄຣ​ວິ​ນາ​ທີ + + + ນາ​ໂນ​ວິ​ນາ​ທີ + {0} ນາ​ໂນ​ວິ​ນາ​ທີ amp @@ -6917,6 +7126,10 @@ For terms of use, see http://www.unicode.org/copyright.html volt {0} V + + kcal + {0} kcal + cal {0} cal @@ -6925,18 +7138,14 @@ For terms of use, see http://www.unicode.org/copyright.html Cal {0} Cal - - joule - {0} J - - - kcal - {0} kcal - kJ {0} kJ + + joule + {0} J + kWh {0} kWh @@ -6945,160 +7154,167 @@ For terms of use, see http://www.unicode.org/copyright.html GHz {0} GHz - - Hz - {0} Hz + + MHz + {0} MHz kHz {0} kHz - - MHz - {0} MHz - - - astronomical units - {0} astronomical units - - - ຊັງຕີແມັດ - {0} ຊັງຕີແມັດ - - - {0} decimeters - - - ຟຸດ - {0} ຟຸດ - - - ນິ້ວ - {0} ນິ້ວ + + Hz + {0} Hz ກິໂລແມັດ {0} ກິໂລແມັດ - - - ປີແສງ - {0} ປີແສງ + {0} ຕໍ່ກິໂລແມັດ ແມັດ {0} ແມັດ + {0} ຕໍ່ແມັດ - - micrometers - {0} micrometers + + ເດຊີແມັດ + {0} ເດຊີແມັດ - - ໄມ - {0} ໄມ + + ຊັງຕີແມັດ + {0} ຊັງຕີແມັດ + {0} ຕໍ່ຊັງຕີແມັດ ມິນລິແມັດ {0} ມິນລິແມັດ + + micrometers + {0} micrometers + ນາໂນແມັດ {0} ນາໂນແມັດ - - {0} nautical miles - - - parsecs - {0} parsecs - ປິໂກແມັດ {0} ປິໂກແມັດ + + ໄມ + {0} ໄມ + ຫລາ {0} ຫລາ + + ຟຸດ + {0} ຟຸດ + {0} ຕໍ່ຟຸດ + + + ນິ້ວ + {0} ນິ້ວ + {0} ຕໍ່ນິ້ວ + + + parsecs + {0} parsecs + + + ປີແສງ + {0} ປີແສງ + + + astronomical units + {0} astronomical units + + + ໄມລ໌ທະເລ + {0} ໄມລ໌ທະເລ + + + ໄມລ໌ສະກັງດີນາວຽນ + {0} ໄມລ໌ສະກັງດີນາວຽນ + lux {0} lux - - CD - {0} CD - - - ກຣາມ - {0} ກຣາມ - - - ກິໂລກຣາມ - {0} ກິໂລກຣາມ - t {0} t - - µg - {0} µg + + ກິໂລກຣາມ + {0} ກິໂລກຣາມ + {0}/kg + + + ກຣາມ + {0} ກຣາມ + {0}/g mg {0} mg - - ອອນ - {0} ອອນ - - - oz t - {0} oz t - - - ປອນ - {0} ປອນ + + µg + {0} µg tn {0} tn + + ປອນ + {0} ປອນ + {0}/lb + + + ອອນ + {0} ອອນ + {0} ຕໍ່ ອອນ + + + oz t + {0} oz t + + + CD + {0} CD + GW {0} GW - - ແຮງມ້າ - {0} ແຮງມ້າ - - - ກິໂລວັດ - {0} ກິໂລວັດ - MW {0} MW - - mW - {0} mW + + ກິໂລວັດ + {0} ກິໂລວັດ ວັດ {0} ວັດ + + mW + {0} mW + + + ແຮງມ້າ + {0} ແຮງມ້າ + hectopascals {0} hectopascals - - inches of mercury - {0} inches of mercury - - - ມິນລິບາ - {0} ມິນລິບາ - mm Hg {0} mm Hg @@ -7107,9 +7323,13 @@ For terms of use, see http://www.unicode.org/copyright.html pounds per square inch {0} pounds per square inch - - ກະຣັດ - {0} ກະຣັດ + + in Hg + {0} inches of mercury + + + ມິນລິບາ + {0} ມິນລິບາ ກິໂລແມັດຕໍ່ຊົ່ວໂມງ @@ -7123,6 +7343,14 @@ For terms of use, see http://www.unicode.org/copyright.html ໄມລ໌ຕໍ່ຊົ່ວໂມງ {0} ໄມລ໌ຕໍ່ຊົ່ວໂມງ + + knot + {0} knots + + + ° + {0}° + ອົງສາເຊວຊຽສ {0} ອົງສາເຊວຊຽສ @@ -7135,33 +7363,19 @@ For terms of use, see http://www.unicode.org/copyright.html ອົງສາເຄວິນ {0} ອົງສາເຄວິນ - - ac ft - {0} ac ft - - - cL - {0} cL - - - cm³ - {0} cm³ - - - ft³ - {0} ft³ - - - in³ - {0} in³ - ກິໂລແມັດກ້ອນ {0} ກິໂລແມັດກ້ອນ - - {0} m³ + ແມັດກ້ອນ + {0} ແມັດກ້ອນ + {0} ຕໍ່ມ³ + + + cm³ + {0} cm³ + {0}/cm³ ໄມລ໌ກ້ອນ @@ -7171,21 +7385,17 @@ For terms of use, see http://www.unicode.org/copyright.html yd³ {0} yd³ - - cup - {0} c + + ft³ + {0} ft³ - - dL - {0} dL + + in³ + {0} in³ - - fl oz - {0} fl oz - - - gal - {0} gal + + ML + {0} ML hL @@ -7194,23 +7404,53 @@ For terms of use, see http://www.unicode.org/copyright.html ລິດ {0} ລິດ + {0} ຕໍ່ລິດ - - ML - {0} ML + + dL + {0} dL + + + cL + {0} cL mL {0} mL - - pt - {0} pt + + metric pints + {0} metric pints + + + mcup + {0} metric cups + + + ac ft + {0} ac ft + + + gal + {0} gal + {0} per gallon qt {0} qt + + pt + {0} pt + + + cup + {0} c + + + fl oz + {0} fl oz + tbsp {0} tbsp @@ -7219,19 +7459,37 @@ For terms of use, see http://www.unicode.org/copyright.html tsp {0} tsp + + {0}E + {0}N + {0}S + {0}W + {0}/{1} - ແຮງຈີ + ແຮງຕົກຕາມລຳພັງ {0} G m/s² {0} m/s² + + rev + {0} rev + + + radians + {0} rad + + + ອົງສາ + {0} ອົງສາ + arcmins {0} arcmins @@ -7240,25 +7498,35 @@ For terms of use, see http://www.unicode.org/copyright.html arcsecs {0} arcsecs - - ອົງສາ - {0} ອົງສາ - - - radians - {0} rad - - - ເອເຄີ - {0} ເອເຄີ + + ກມ² + {0} ກມ² ເຮັກຕາ {0} ຮຕ. + + ແມັດ² + {0} ມ² + {0}/ມ² + ຊມ² {0} ຊມ² + {0}/ຊມ² + + + sq miles + {0} mi² + + + ເອເຄີ + {0} ເອເຄີ + + + yards² + {0} yd² ຟຸດ² @@ -7267,112 +7535,114 @@ For terms of use, see http://www.unicode.org/copyright.html ນິ້ວ² {0} in² + {0}/in² - - ກມ² - {0} ກມ² - - - ແມັດ² - {0} ແມັດ² - - - sq miles - {0} mi² - - - yards² - {0} yd² + + ກະຣັດ + {0} kt ລ/ກມ {0} ລ/ກມ + + ລ/ 100 ກມ + {0} L/100km + ໄມລ໌/ແກລ {0} mpg - - bit - {0} bit - - - byte - {0} byte - - - Gb - {0} Gb - - - GB - {0} GB - - - kb - {0} kb - - - kB - {0} kB - - - Mb - {0} Mb - - - MB - {0} MB - - - Tb - {0} Tb - TB {0} TB + + Tb + {0} Tb + + + GB + {0} GB + + + Gb + {0} Gb + + + MB + {0} MB + + + Mb + {0} Mb + + + kB + {0} kB + + + kb + {0} kb + + + byte + {0} byte + + + bit + {0} bit + + + c + {0} c + + + ປີ + {0} ປີ + {0}/y + + + ເດືອນ + {0} ດ. + {0}/ເດືອນ + + + ອາທິດ + {0} ອທ. + {0}/ອາທິດ + ມື້ {0} ມື້ + {0}/ມື້ ຊົ່ວໂມງ {0} ຊມ. {0}/ຊມ. - - μວິ - {0} μວິ - - - ມິນລີວິ - {0} ມລວ - ນທ. {0} ນທ. - - - ເດືອນ - {0} ດ. - - - ນາ​ໂນ​ວິ​ - {0} ນນ​ວິ + {0}/ນາທີ ວິ. {0} ວິ. {0}/ວິ. - - ອາທິດ - {0} ອທ. + + ມິນລີວິ + {0} ມລວ - - ປີ - {0} ປີ + + μວິ + {0} μວິ + + + ນາ​ໂນ​ວິ​ + {0} ນນ​ວິ amp @@ -7390,6 +7660,10 @@ For terms of use, see http://www.unicode.org/copyright.html volt {0} V + + kcal + {0} kcal + cal {0} cal @@ -7398,18 +7672,14 @@ For terms of use, see http://www.unicode.org/copyright.html Cal {0} Cal - - joule - {0} J - - - kcal - {0} kcal - kJ {0} kJ + + joule + {0} J + kWh {0} kWh @@ -7418,162 +7688,167 @@ For terms of use, see http://www.unicode.org/copyright.html GHz {0} GHz - - Hz - {0} Hz + + MHz + {0} MHz kHz {0} kHz - - MHz - {0} MHz + + Hz + {0} Hz - - au - {0} au + + ກມ + {0} ກມ + {0}/ກິໂລແມັດ - - ຊມ - {0} ຊມ + + ແມັດ + {0} ມ + {0}/ແມັດ dm {0} dm - - ຟຸດ - {0} ຟ - - - ນິ້ວ - {0} ນິ - - - ກມ - {0} ກມ - - - ປີແສງ - {0} ປສ - - - ແມັດ - {0} ມ - - - µm - {0} µm - - - ໄມ - {0} ໄມ + + ຊມ + {0} ຊມ + {0}/ຊັງຕີແມັດ ມມ {0} ມມ + + µm + {0} µm + nm {0} nm - - nmi - {0} nmi - - - parsecs - {0} pc - pm {0} pm + + ໄມ + {0} ໄມ + ຫລາ {0} ຫລາ + + ຟຸດ + {0} ຟ + {0}/ຟຸດ + + + ນິ້ວ + {0} ນິ + {0}/ນີວ + + + parsecs + {0} pc + + + ປີແສງ + {0} ປສ + + + au + {0} au + + + nmi + {0} nmi + + + smi + {0} smi + lux {0} lx - - CD - {0} CD - - - ກຣາມ - {0} ກຼ - - - ກິໂລກຣາມ - {0} ກິໂລ - t {0} t - - µg - {0} µg + + ກິໂລກຣາມ + {0} ກິໂລ + {0}/kg + + + ກຣາມ + {0} ກຼ + {0}/g mg {0} mg - - ອອນ - {0} ອ - - - oz t - {0} oz t - - - ປອນ - {0} ປ + + µg + {0} µg tn {0} tn + + ປອນ + {0} ປ + {0}/lb + + + ອອນ + {0} ອ + {0}/oz + + + oz t + {0} oz t + + + CD + {0} CD + GW {0} GW - - ແຮງມ້າ - {0} hp - - - ກິໂລວັດ - {0} ກລ. ວັດ - MW {0} MW - - mW - {0} mW + + ກິໂລວັດ + {0} ກລ. ວັດ ວັດ {0} ວັດ + + mW + {0} mW + + + ແຮງມ້າ + {0} hp + hPA {0} hPA - - in Hg - {0} in Hg - - - mbar - {0} mbar - mm Hg {0} mm Hg @@ -7582,9 +7857,13 @@ For terms of use, see http://www.unicode.org/copyright.html psi {0} psi - - ກະຣັດ - {0} kt + + in Hg + {0} in Hg + + + mbar + {0} mbar ກມ/ຊມ @@ -7598,6 +7877,14 @@ For terms of use, see http://www.unicode.org/copyright.html ໄມລ໌/ຊົ່ວໂມງ {0} ມ/ຊມ + + kn + {0} kn + + + ° + {0}° + ອົງ​ສາ ຊ. {0} ອົງສາ ຊີ. @@ -7610,33 +7897,19 @@ For terms of use, see http://www.unicode.org/copyright.html ອົງສາ ເຄ. {0}°K - - ac ft - {0} ac ft - - - cL - {0} cL - - - cm³ - {0} cm³ - - - ft³ - {0} ft³ - - - in³ - {0} in³ - km³ {0} km³ - - {0} m³ + ມ³ + {0} ມ³ + {0}/ມ³ + + + cm³ + {0} cm³ + {0}/cm³ mi³ @@ -7646,21 +7919,17 @@ For terms of use, see http://www.unicode.org/copyright.html yd³ {0} yd³ - - cup - {0} c + + ft³ + {0} ft³ - - dL - {0} dL + + in³ + {0} in³ - - fl oz - {0} fl oz - - - gal - {0} gal + + ML + {0} ML hL @@ -7669,23 +7938,53 @@ For terms of use, see http://www.unicode.org/copyright.html ລິດ {0} ລິດ + {0}/l - - ML - {0} ML + + dL + {0} dL + + + cL + {0} cL mL {0} mL - - pt - {0} pt + + mpt + {0} mpt + + + mcup + {0} mc + + + ac ft + {0} ac ft + + + gal + {0} gal + {0}/gal qt {0} qt + + pt + {0} pt + + + cup + {0} c + + + fl oz + {0} fl oz + tbsp {0} tbsp @@ -7694,33 +7993,33 @@ For terms of use, see http://www.unicode.org/copyright.html tsp {0} tsp + + {0}E + {0}N + {0}S + {0}W + {0}/{1} + + {0}° + {0}′ {0}″ - - {0}° - - - {0} ac - - - {0} ຮຕ - - - {0} ft² - ກມ² {0} ກມ² + + {0} ຮຕ + ແມັດ² {0} ແມັດ² @@ -7728,6 +8027,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² + + {0} ac + + + {0} ft² + + + ລ/ 100 ກມ + {0} ລ / 100 ກມ + + + ປີ + {0} ປ + + + ເດືອນ + {0} ດ. + + + ອທ. + {0} ອທ. + ມື້ {0} ມ. @@ -7736,57 +8057,29 @@ For terms of use, see http://www.unicode.org/copyright.html ຊົ່ວໂມງ {0} ຊມ - - ມລວ - {0} ມລ. ວິ. - ນທ. {0} ນທ - - ເດືອນ - {0} ດ. - ວິ. {0} ວິ - - ອທ. - {0} ອທ. - - - ປີ - {0} ປ - - - ຊມ - {0} ຊມ - - - ຟຸດ - {0} ຟ - - - ນິ້ວ - {0} ນ + + ມລວ + {0} ມລ. ວິ. ກມ {0} ກມ - - ປີແສງ - {0} ປສ - ແມັດ {0} ມ - - ໄມ - {0} ໄມ + + ຊມ + {0} ຊມ ມມ @@ -7796,26 +8089,39 @@ For terms of use, see http://www.unicode.org/copyright.html pm {0} pm + + ໄມ + {0} ໄມ + ຫລາ {0} ຫລາ - - ກຣາມ - {0} ກຼ + + ຟຸດ + {0} ຟ + + + ນິ້ວ + {0} ນ + + + ປີແສງ + {0} ປສ ກິໂລກຣາມ {0} ກລ - - {0} ອ + + ກຣາມ + {0} ກຼ {0} ປ - - {0} hp + + {0} ອ {0} kW @@ -7823,6 +8129,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W + + {0} hp + hPA {0} hPA @@ -7863,6 +8172,12 @@ For terms of use, see http://www.unicode.org/copyright.html ລິດ {0} ລ + + {0}E + {0}N + {0}S + {0}W + h:mm @@ -7887,11 +8202,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0}, {1} {0}, {1} + + {0} {1} + {0} {1} + {0} {1} + {0} {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + - ແມ່ນ - ບໍ່ແມ່ນ + yes:y + no:n diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lo_LA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lo_LA.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lo_LA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lo_LA.xml index aa6cb4819a4..174f5dc3efd 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lo_LA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lo_LA.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lrc.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lrc.xml new file mode 100644 index 00000000000..8c0ebee7d46 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lrc.xml @@ -0,0 +1,855 @@ + + + + + + + + + + + {0} ({1}) + {0}, {1} + {0}: {1} + + + آذأربایئجانی + آفریکانس + آقئم + آکان + أمھأری + أرأڤی + عروی مدرن + ماپوٙچئ + آسامی + آسوٙ + آذأربایئجانی ھارگە + آذأری + آذأری ھارگە + باشکیری + بئلاروٙسی + بیما + بئنا + بولغاری + بألوٙچی أقتوٙنئشین + بامبارا + بأنگالی + تأبأتی + بئرئتون + بودو + بوسنیایی + کاتالان + چئچئنی + چیگا + چوروٙکی + کوردی سوٙرانی + کوریسکان + چواشی + ڤئلزی + دانمارکی + تایتا + آلمانی + آلمانی ئوتریشی + آلمانی سوٙییسی + زارما + سوربی ھاری + دوٙالا + جولا فوٙنیی + زوٙنگخا + ئمبو + ئڤئ + یوٙنانی + ئینگیلیسی + ئینگیلیسی ئوستارالیایی + ئینگیلیسی کانادایی + ئینگیلیسی بئریتانیایی + ئینگیلیسی بئریتانیا گأپ + ئینگیلیسی ئمریکایی + ئینگیلیسی ئمریکایی + ئسپئرانتو + ئسپانیایی + ئسپانیایی ئمریکا لاتین + ئسپانیایی ئوروٙپا + ئسپانیایی مئکزیک + ئستونیایی + باسکی + فارسی + فأنلاندی + فیلیپینی + فیجی + فاروٙسی + فآرانسئ ئی + فآرانسئ ئی کانادا + فآرانسئ ئی سوٙییس + فئریسی أفتونئشین + ئیرلأندی + گاگائوز + گالیسی + گوٙآرانی + آلمانی سوٙئیسی + گوجأراتی + گوٙسی + مانکس + ھائوسا + ھاڤایی + عئبری + ھئنی + کوروڤاتی + سوربی ڤارو + ھاییتی + مأجاری + أرمأنی + أندونئزیایی + ئیگبو + سی چوان یی + ئیسلأندی + ئیتالیایی + ئینوکتیتوٙت + جاپوٙنی + نئگوٙمبا + ماچامئ + جاڤئ یی + گورجی + کابیلئ + کامبا + ماکوٙندئ + کاباردینو + کی یورا چینی + کیکیوٙ + قأزاق + کالالیسوٙت + کالئجین + خئمئر + کاناد + کورئ یی + کومی پئرمیاک + کوٙنکانی + کأشمیری + شامبالا + بافیا + کوردی کورمانجی + کورنیش + قئرقیزی + لاتین + لانگی + لوٙکزامبوٙرگی + گاندا + لاکوٙتا + لینگالا + لاو + لۊری شومالی + لیتوڤانیایی + لوٙبا کاتانگا + لوٙ + لوٙئیا + لاتوڤیایی + ماسایی + مئرو + موٙریسی + مالاگاشی + ماخوڤا میتو + مئتاٛ + مائوری + مأقدوٙنی + مالایام + موغولی + موٙھاڤک + مأراتی + مالایی + مالتی + موٙندانگ + بئرمئ یی + مازأندأرانی + ناما + نورڤئجی بوٙکمال + نئدئبئلئ شومالی + آلمانی ھاری + آلمانی ھارگە جا + نئپالی + ھولأندی + فئلاماندی + کئڤاسیوٙ + نورڤئجی نینورسک + نئکوٙ + نیوٙئر + نیان کوٙلئ + ئوروموٙ + ئوریا + پأنجابی + لأھئستانی + پأشتوٙ + پورتئغالی + پورتئغالی بئرئزیل + پورتئغالی ئوروٙپایی + کوچوٙا + کیچی + رومانش + راندی + رومانیایی + رومانیایی مولداڤی + رومبو + روٙسی + کینیاروآندا + رئڤا + سانسکئریت + سامبوٙروٙ + سانگوٙ + سئندی + کوردی ھارگە + سامی شومالی + سئنا + کیارابورو سئنی + سانگو + تاچئلھیت + سینھالا + ئسلوڤاکی + ئسلوڤئنیایی + سامی ھارگە + لۉلئ سامی + ئیناری سامی + ئسکولت سامی + شونا + سوٙمالی + آلبانی + سئربی + سوٙدانی + سوٙئدی + سأڤاحیلی + سأڤاحیلی کونگو + تامیل + تئلئگو + تئسو + تاجیکی + تایلأندی + تیگرینیا + تورکأمأنی + توٙنگان + تورکی + تاتار + تاساڤاق + تامازیغ مینجایی + ئویغوٙر + ئوکراینی + زوٙن نادیار + ئوردوٙ + ئوزبأکی + ڤای + ڤییئتنامی + ڤوٙنجوٙ + ڤارلپیری + ڤولوف + خوٙسا + سوٙگا + یوروبا + تامازیغ مأراکئشی + چینی + چینی سادە بیە + چینی سونأتی + زولو + بی نئشوٙ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + دونیا + ئفریقا + ئمریکا شومالی + ئمریکا ھارگە + ھوم پئڤأند جأھوٙن آڤ + مینجا ئمریکا + ئمریکا + ئمریکا ڤارو + کارائیب + آسیا + ئوروٙپا + ئمریکا لاتین + بئرئزیل + چین + آلمان + فأرانسە + بیریتانیا گأپ + ھئن + ئیتالیا + جاپوٙن + روٙسیە + ڤولاتیا یأکاگئرتە + راساگە نادیار + + + تأقڤیم گأرئگوٙری + کوٙلاتی ئستاندارد + أدأدیا عأرأڤی + عأدأدیا لاتین + + + مئتری + بئریتانیا گأپ + ڤولاتیا یأکاگئرته + + + {0} + {0} + {0} + + + + + right-to-left + top-to-bottom + + + + [\u0659 \u065B آ أ ؤ ئ ا ب پ ت ث ج چ ح خ د ذ ر ز ژ س ش ص ض ط ظ ع غ ف ڤ ق ک گ ل م ن ھ ە و ۉ ۊ ی ؽ] + [\u200B\u200C\u200D\u200E\u200F \u064B \u064C \u064D \u064E \u064F \u0650 \u0651 \u0652 \u0654 إ ة ك ه ى ي] + [آ ا ب پ ت ث ج چ ح خ د ذ ر ز ژ س ش ص ض ط ظ ع غ ف ق ک گ ل م ن ھ و ی] + [\- ‐ ، ٫ ٬ ؛ \: ! ؟ . … ‹ › « » ( ) \[ \] * / \\] + + + + + + + + + + + + + + G y MMMM d, EEEE + + + + + G y MMMM d + + + + + G y MMM d + + + + + GGGGG y-MM-dd + + + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + {0} – {1} + + + + + + + + جانڤیە + فئڤریە + مارس + آڤریل + مئی + جوٙأن + جوٙلا + آگوست + سئپتامر + ئوکتوڤر + نوڤامر + دئسامر + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + جانڤیە + فئڤریە + مارس + آڤریل + مئی + جوٙأن + جوٙلا + آگوست + سئپتامر + ئوکتوڤر + نوڤامر + دئسامر + + + + + جانڤیە + فئڤریە + مارس + آڤریل + مئی + جوٙأن + جوٙلا + آگوست + سئپتامر + ئوکتوڤر + نوڤامر + دئسامر + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + جانڤیە + فئڤریە + مارس + آڤریل + مئی + جوٙأن + جوٙلا + آگوست + سئپتامر + ئوکتوڤر + نوڤامر + دئسامر + + + + + + + Q1 + Q2 + Q3 + Q4 + + + 1 + 2 + 3 + 4 + + + Q1 + Q2 + Q3 + Q4 + + + + + چارأک أڤأل + Q2 + Q3 + Q4 + + + 1 + 2 + 3 + 4 + + + چارأک أڤأل + چارأک دویوم + چارأک سئیوم + چارأک چاروم + + + + + + + AM + PM + + + AM + PM + + + + + + BCE + CE + + + + + + y MMMM d, EEEE + + + + + y MMMM d + + + + + y MMM d + + + + + y-MM-dd + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + {0} – {1} + + + + + + + سأرۉ + + + سال + + + سال + + + سال + + + چارأک + + + چارأک + + + چارأک + + + ما + + + ما + + + ما + + + ھأفتە + + + ھأفتە + + + ھأفتە + + + روٙز + دیروٙز + أمروٙ + شوٙصوٙ + + + روٙز + + + روٙز + + + روٙز ھأفتە + + + گات روٙز + + + ساأت + + + ساأت + + + ساأت + + + دئیقە + + + دئیقە + + + دئیقە + + + ثانیە + + + ثانیە + + + ثانیە + + + راساگە + + + + {0} + + نادیار + + + + گاٛت مینجاٛیی + گاٛت مینجاٛیی ئستاٛنداٛرد + روٙشنایی نئهادار روٙز + + + + + + arabext + + arabext + + + . + , + % + + + - + + + + + #,##0.### + + + + + + + #E0 + + + + + + + #,##0% + + + + + + + ¤ #,##0.00 + + + {0} {1} + + + + رئال بئرئزیل + رئال بئرئزیل + R$ + R$ + + + یوان چین + یوان چین + CN¥ + ¥ + + + یورو + یورو + + + + + پوند بئریتانیا + پوند بئریتانیا + £ + £ + + + روٙپیه هئن + روٙپیه هئن + + + + + یئن جاپوٙن + یئن جاپوٙن + JP¥ + ¥ + + + روٙبل روٙسیه + روٙبل روٙسیه + RUB + + + + USD + USD + US$ + $ + + + پیل نادیار + پیل نادیار + + + + + + h:mm + + + h:mm:ss + + + m:ss + + + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + + + هأری:ه + نه:ن + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lrc_IQ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lrc_IQ.xml new file mode 100644 index 00000000000..52e937f752b --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lrc_IQ.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lrc_IR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lrc_IR.xml new file mode 100644 index 00000000000..2e90b81285b --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lrc_IR.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lt.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lt.xml similarity index 93% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lt.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lt.xml index fb1b4f68cc5..b60b4be7db3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lt.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lt.xml @@ -1,13 +1,12 @@ - - - + @@ -59,7 +58,6 @@ For terms of use, see http://www.unicode.org/copyright.html aimarų azerbaidžaniečių azeri - pietų Azerbaidžano baškirų baluči balinezų @@ -76,6 +74,7 @@ For terms of use, see http://www.unicode.org/copyright.html bafutų badaga bulgarų + vakarų beludžių baučpuri bislama bikolų @@ -337,6 +336,7 @@ For terms of use, see http://www.unicode.org/copyright.html laosiečių mongo lozi + šiaurės luri lietuvių latgalių luba katanga @@ -398,6 +398,7 @@ For terms of use, see http://www.unicode.org/copyright.html Norvegijos rašytinė – būkmolų šiaurės ndebelų Žemutinės Vokietijos + Žemutinės Saksonijos (Nyderlandai) nepaliečių nevari ndongų @@ -491,6 +492,7 @@ For terms of use, see http://www.unicode.org/copyright.html škotų sindų sasaresų sardinų + pietų kurdų šiaurės samių senecų senų @@ -533,8 +535,8 @@ For terms of use, see http://www.unicode.org/copyright.html šumerų švedų suahilių + Kongo suahilių Komorų - Kongo suahilių klasikinė siriečių sirų sileziečių @@ -601,6 +603,7 @@ For terms of use, see http://www.unicode.org/copyright.html valamo varai vašo + valrpiri volofų kinų kalbos vu tarmė kalmukų @@ -837,7 +840,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angilija Albanija Armėnija - Olandijos Antilai Angola Antarktida Argentina @@ -877,6 +879,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kongo Respublika Šveicarija Dramblio Kaulo Krantas + Dramblio Kaulo Kranto Respublika Kuko Salos Čilė Kamerūnas @@ -1146,6 +1149,9 @@ For terms of use, see http://www.unicode.org/copyright.html Skaitinis rikiavimas Rikiavimo intensyvumas valiuta + valandų ciklas (12 ir 24) + teksto laužymo stilius + matų sistema skaičiai Laiko juosta Lokalės variantas @@ -1153,121 +1159,131 @@ For terms of use, see http://www.unicode.org/copyright.html Naudoti privačiai - arabų-indų skaitmenys - išplėstiniai arabų-indų skaitmenys - armėnų skaitmenys - armėnų skaitmenys mažosiomis raidėmis - bali skaitmenys - bengalų skaitmenys - įprasta kiniška rūšiavimo tvarka - Big5 - Brahmi skaitmenys - budistų kalendorius - Čakmų skaitmenys - cham skaitmenys - kinų kalendorius - koptų kalendorius - dangi kalendorius - devanagari skaitmenys - žodyno rūšiavimo tvarka - numatytasis unikodo rikiavimas - rūšiavimo tvarka daugiakalbės Europos dokumentų - Etiopijos skaitmenys - Etiopijos kalendorius - Etiopijos „Amete Alem“ kalendorius - Finansiniai skaičiai - viso pločio skaitmenys - supaprastinta kiniška rūšiavimo tvarka - GB2312 - gruzinų skaitmenys - Grigaliaus kalendorius - graikų skaitmenys - graikų skaitmenys mažosiomis raidėmis - gudžaratų skaitmenys - gurmuki skaitmenys - kinų dešimtainiai skaitmenys - supaprastintos kinų k. skaitmenys - supaprastintos kinų k. finans. skaitmenys - tradicinės kinų k. skaitmenys - tradicinės kinų k. finans. skaitmenys - hebrajų skaitmenys - hebrajų kalendorius - Rikiuoti viską - nacionalinis indų kalendorius - islamo kalendorius - Islamo kalendorius (lentelinis, pilietinė era) - Islamo kalendorius (Saudo Arabija) - Islamo kalendorius (lentelinis, astronominė era) - Islamo kalendorius (Umm al-Qura) - ISO 8601 kalendorius - japonų kalendorius - javiečių skaitmenys - japonų skaitmenys - japonų finans. skaitmenys - Kayah Li skaitmenys - khmerų skaitmenys - kanadų skaitmenys - Tai Tham Hora skaitmenys - Tai Tham Tham skaitmenys - laosiečių skaitmenys - lotyniški skaitmenys - Lepcha skaitmenys - Limbu skaitmenys - Rikiuoti suteikiant pirmumą mažosioms raidėms - malajalių skaitmenys - mongolų skaitmenys - Meetei Mayek skaitmenys - mianmariečių skaitmenys - Myanmar Shan skaitmenys - Vietiniai skaitmenys - N’Ko skaitmenys - Rikiuoti diakritinius ženklus įprastai - Rikiuoti įprasta didžiųjų ir mažųjų raidžių tvarka - Rikiuoti neskiriant didžiųjų ir mažųjų raidžių - Rikiuoti kanos ženklus atskirai - Rikiuoti nenormalizuojant - Rikiuoti skaitmenis atskirai - Rikiuoti simbolius - Ol Chiki skaitmenys - orijų skaitmenys - Osmanų skaitmenys - persų kalendorius - telefonų knygos rūšiavimo tvarka - Fonetinė rikiavimo tvarka - supaprastinta kiniškų hieroglifų rūšiavimo tvarka - Rikiuoti tik pagal pamatines raides - Rikiuoti pagal didžiąsias ir mažąsias raides / plotį / diakritinius / kanos ženklus - reformuota rūšiavimo tvarka - Kinijos Respublikos kalendorius - romėniški skaitmenys - romėniški skaitmenys mažosiomis raidėmis - Sauraštrų skaitmenys - bendroji paieška - ieškoti pagal hangul pirmines priebalses - Rikiuoti diakritinius ženklus - Rikiuoti nepaisant simbolių - Šaradų skaitmenys - Sora Sompeng skaitmenys - standartinis rikiavimas - Įprasta kiniško požymio rūšiavimo tvarka - Sudaniečių skaitmenys - Takri skaitmenys - Naujieji Tai Lue skaitmenys - tradicinės tamilų skaitmenys - tamilų skaitmenys - telugų skaitmenys - Rikiuoti pagal diakritinius ženklus / didžiąsias ir mažąsias raides / plotį - tajų skaitmenys - tibetiečių skaitmenys - įprasta rūšiavimo tvarka - Tradiciniai skaičiai - Šaknies ženklų ir brūkšnių rūšiavimo tvarka - Rikiuoti suteikiant pirmumą didžiosioms raidėms - vai skaitmenys - Rikiuoti diakritinius ženklus atvirkščiai - Rikiuoti skiriant didžiąsias ir mažąsias raides - Rikiuoti kanos ženklus kitaip - Rikiuoti normalizuojant unikodą - Rikiuoti skaitmenis pagal skaičius - Zhuyin rikiavimo tvarka + budistų kalendorius + kinų kalendorius + koptų kalendorius + dangi kalendorius + Etiopijos kalendorius + Etiopijos „Amete Alem“ kalendorius + Grigaliaus kalendorius + hebrajų kalendorius + nacionalinis indų kalendorius + islamo kalendorius + Islamo kalendorius (lentelinis, pilietinė era) + Islamo kalendorius (Saudo Arabija) + Islamo kalendorius (lentelinis, astronominė era) + Islamo kalendorius (Umm al-Qura) + ISO 8601 kalendorius + japonų kalendorius + persų kalendorius + Kinijos Respublikos kalendorius + Rikiuoti simbolius + Rikiuoti nepaisant simbolių + Rikiuoti diakritinius ženklus įprastai + Rikiuoti diakritinius ženklus atvirkščiai + Rikiuoti suteikiant pirmumą mažosioms raidėms + Rikiuoti įprasta didžiųjų ir mažųjų raidžių tvarka + Rikiuoti suteikiant pirmumą didžiosioms raidėms + Rikiuoti neskiriant didžiųjų ir mažųjų raidžių + Rikiuoti skiriant didžiąsias ir mažąsias raides + Rikiuoti kanos ženklus atskirai + Rikiuoti kanos ženklus kitaip + įprasta kiniška rūšiavimo tvarka - Big5 + žodyno rūšiavimo tvarka + numatytasis unikodo rikiavimas + rūšiavimo tvarka daugiakalbės Europos dokumentų + supaprastinta kiniška rūšiavimo tvarka - GB2312 + telefonų knygos rūšiavimo tvarka + Fonetinė rikiavimo tvarka + supaprastinta kiniškų hieroglifų rūšiavimo tvarka + reformuota rūšiavimo tvarka + bendroji paieška + ieškoti pagal hangul pirmines priebalses + standartinis rikiavimas + Įprasta kiniško požymio rūšiavimo tvarka + įprasta rūšiavimo tvarka + Šaknies ženklų ir brūkšnių rūšiavimo tvarka + Zhuyin rikiavimo tvarka + Rikiuoti nenormalizuojant + Rikiuoti normalizuojant unikodą + Rikiuoti skaitmenis atskirai + Rikiuoti skaitmenis pagal skaičius + Rikiuoti viską + Rikiuoti tik pagal pamatines raides + Rikiuoti pagal didžiąsias ir mažąsias raides / plotį / diakritinius / kanos ženklus + Rikiuoti diakritinius ženklus + Rikiuoti pagal diakritinius ženklus / didžiąsias ir mažąsias raides / plotį + 12 valandų sistema (0–11) + 12 valandų sistema (1–12) + 24 valandų sistema (0–23) + 24 valandų sistema (1–24) + laisvas teksto laužymo stilius + įprastas teksto laužymo stilius + griežtas teksto laužymo stilius + metrinė sistema + angliška matų sistema + amerikietiška matų sistema + arabų-indų skaitmenys + išplėstiniai arabų-indų skaitmenys + armėnų skaitmenys + armėnų skaitmenys mažosiomis raidėmis + bali skaitmenys + bengalų skaitmenys + Brahmi skaitmenys + Čakmų skaitmenys + cham skaitmenys + devanagari skaitmenys + Etiopijos skaitmenys + Finansiniai skaičiai + viso pločio skaitmenys + gruzinų skaitmenys + graikų skaitmenys + graikų skaitmenys mažosiomis raidėmis + gudžaratų skaitmenys + gurmuki skaitmenys + kinų dešimtainiai skaitmenys + supaprastintos kinų k. skaitmenys + supaprastintos kinų k. finans. skaitmenys + tradicinės kinų k. skaitmenys + tradicinės kinų k. finans. skaitmenys + hebrajų skaitmenys + javiečių skaitmenys + japonų skaitmenys + japonų finans. skaitmenys + Kayah Li skaitmenys + khmerų skaitmenys + kanadų skaitmenys + Tai Tham Hora skaitmenys + Tai Tham Tham skaitmenys + laosiečių skaitmenys + lotyniški skaitmenys + Lepcha skaitmenys + Limbu skaitmenys + malajalių skaitmenys + mongolų skaitmenys + Meetei Mayek skaitmenys + mianmariečių skaitmenys + Myanmar Shan skaitmenys + Vietiniai skaitmenys + N’Ko skaitmenys + Ol Chiki skaitmenys + orijų skaitmenys + Osmanų skaitmenys + romėniški skaitmenys + romėniški skaitmenys mažosiomis raidėmis + Sauraštrų skaitmenys + Šaradų skaitmenys + Sora Sompeng skaitmenys + Sudaniečių skaitmenys + Takri skaitmenys + Naujieji Tai Lue skaitmenys + tradicinės tamilų skaitmenys + tamilų skaitmenys + telugų skaitmenys + tajų skaitmenys + tibetiečių skaitmenys + Tradiciniai skaičiai + vai skaitmenys BGN simboliai @@ -2340,6 +2356,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d, E y G y MMM G @@ -2358,6 +2375,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL MMM-d MMM-d, E + MMMM d mm:ss y G y G @@ -2367,6 +2385,7 @@ For terms of use, see http://www.unicode.org/copyright.html y MMM G y MMM d G y MMM d G, E + G y MMMM y G QQQ y G QQQQ @@ -2681,18 +2700,66 @@ For terms of use, see http://www.unicode.org/copyright.html - pr.p. - pop. - - - pr.p. - perpiet - pop. - - + vidurnaktis priešpiet perpiet popiet + rytas + popietė + vakaras + naktis + + + vidurnaktis + pr. p. + perpiet + pop. + rytas + popietė + vakaras + naktis + + + vidurnaktis + priešpiet + perpiet + popiet + rytas + popietė + vakaras + naktis + + + + + vidurnaktis + priešpiet + vidurdienis + popiet + rytas + diena + vakaras + naktis + + + vidurnaktis + pr. p. + vidurdienis + pop. + rytas + diena + vakaras + naktis + + + vidurnaktis + priešpiet + vidurdienis + popiet + rytas + diena + vakaras + naktis @@ -2789,19 +2856,23 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm, E hh:mm:ss a, E HH:mm:ss, E - y G + y 'm'. G y-MM G y-MM-dd G y-MM-dd G, E - y G LLLL - y G MMMM d - y G MMMM d, E + y 'm'. G, LLLL + y 'm'. G MMMM d 'd'. + y 'm'. G MMMM d 'd'., E hh a HH hh:mm a HH:mm hh:mm:ss a HH:mm:ss + hh:mm:ss a; v + HH:mm:ss; v + hh:mm a; v + HH:mm; v MM MM-d MM-dd, E @@ -2810,8 +2881,8 @@ For terms of use, see http://www.unicode.org/copyright.html MM-dd MM-dd, E LLLL - MMMM d - MMMM d, E + MMMM d 'd'. + MMMM d 'd'., E mm:ss y y-MM @@ -2820,9 +2891,9 @@ For terms of use, see http://www.unicode.org/copyright.html y-MM y-MM-dd y-MM-dd, E - y LLLL - y MMMM d - y MMMM d, E + y 'm'. LLLL + y 'm'. MMMM d 'd'. + y 'm'. MMMM d 'd'., E y QQQ y QQQQ @@ -2878,15 +2949,15 @@ For terms of use, see http://www.unicode.org/copyright.html MM-dd, E – MM-dd, E - MM–MM + LLL–LLL - MM-dd – MM-dd - MM-dd – MM-dd + MMM d–d + MMM d – MMM d - MM-dd, E – MM-dd, E - MM-dd, E – MM-dd, E + MMM d, E – MMM d, E + MMM d, E – MMM d, E LLLL–LLLL @@ -2917,22 +2988,22 @@ For terms of use, see http://www.unicode.org/copyright.html y-MM-dd, E – y-MM-dd, E - y-MM – y-MM - y-MM – y-MM + y MMM–MMM + y MMM – y MMM - y-MM-dd – y-MM-dd - y-MM-dd – y-MM-dd - y-MM-dd – y-MM-dd + y MMM d–d + y MMM d – MMM d + y MMM d – y MMM d - y-MM-dd, E – y-MM-dd, E - y-MM-dd, E – y-MM-dd, E - y-MM-dd, E – y-MM-dd, E + y MMM d, E – MMM d, E + y MMM d, E – MMM d, E + y MMM d, E – y MMM d, E y LLLL–LLLL - y LLLL – LLLL + y LLLL – y LLLL y MMMM d–d @@ -3608,10 +3679,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Era + era - Metai + metai praėjusiais metais šiais metais kitais metais @@ -3659,7 +3730,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Ketvirtis + ketvirtis po {0} ketvirčio po {0} ketvirčių @@ -3704,7 +3775,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Mėnuo + mėnuo praėjusį mėnesį šį mėnesį kitą mėnesį @@ -3752,7 +3823,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Savaitė + savaitė praėjusią savaitę šią savaitę kitą savaitę @@ -3800,7 +3871,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Diena + diena užvakar vakar šiandien @@ -3850,7 +3921,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Savaitės diena + savaitės diena praėjusį sekmadienį @@ -3958,10 +4029,10 @@ For terms of use, see http://www.unicode.org/copyright.html kitą šešt. - Iki pietų / po pietų + iki pietų / po pietų - Valanda + valanda po {0} valandos po {0} valandų @@ -4006,7 +4077,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Minutė + minutė po {0} minutės po {0} minučių @@ -4051,7 +4122,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Sekundė + sekundė dabar po {0} sekundės @@ -4097,7 +4168,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Laiko juosta + laiko juosta @@ -4975,6 +5046,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Morsbis + + Bugenvilis + Manila @@ -5059,6 +5133,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutskas + + Čita + Jakutskas @@ -5077,6 +5154,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadanas + + Srednekolymskas + Kamčiatka @@ -6469,6 +6549,58 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 tūkst'.' ¤ + 0 tūkst'.' ¤ + 0 tūkst'.' ¤ + 0 tūkst'.' ¤ + 00 tūkst'.' ¤ + 00 tūkst'.' ¤ + 00 tūkst'.' ¤ + 00 tūkst'.' ¤ + 000 tūkst'.' ¤ + 000 tūkst'.' ¤ + 000 tūkst'.' ¤ + 000 tūkst'.' ¤ + 0 mln'.' ¤ + 0 mln'.' ¤ + 0 mln'.' ¤ + 0 mln'.' ¤ + 00 mln'.' ¤ + 00 mln'.' ¤ + 00 mln'.' ¤ + 00 mln'.' ¤ + 000 mln'.' ¤ + 000 mln'.' ¤ + 000 mln'.' ¤ + 000 mln'.' ¤ + 0 mlrd'.' ¤ + 0 mlrd'.' ¤ + 0 mlrd'.' ¤ + 0 mlrd'.' ¤ + 00 mlrd'.' ¤ + 00 mlrd'.' ¤ + 00 mlrd'.' ¤ + 00 mlrd'.' ¤ + 000 mlrd'.' ¤ + 000 mlrd'.' ¤ + 000 mlrd'.' ¤ + 000 mlrd'.' ¤ + 0 trln'.' ¤ + 0 trln'.' ¤ + 0 trln'.' ¤ + 0 trln'.' ¤ + 00 trln'.' ¤ + 00 trln'.' ¤ + 00 trln'.' ¤ + 00 trln'.' ¤ + 000 trln'.' ¤ + 000 trln'.' ¤ + 000 trln'.' ¤ + 000 trln'.' ¤ + + {0} {1} {0} {1} {0} {1} @@ -6543,6 +6675,7 @@ For terms of use, see http://www.unicode.org/copyright.html Angolos kvanzos Angolos kvanzų AOA + Kz Angolos kvanza (1977–1990) @@ -6655,6 +6788,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bosnijos ir Hercegovinos konvertuojamosios markės Bosnijos ir Hercegovinos konvertuojamųjų markių BAM + KM Bosnijos ir Hercegovinos naujasis dinaras (1994–1997) @@ -6772,6 +6906,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bolivijos bolivijano Bolivijos bolivijanų BOB + Bs Bolivijos bolivijanas (1863–1963) @@ -6876,6 +7011,7 @@ For terms of use, see http://www.unicode.org/copyright.html Botsvanos pulos Botsvanos pulų BWP + P Baltarusijos naujasis rublis (1994–1999) @@ -7026,6 +7162,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kubos konvertuojamojo peso Kubos konvertuojamųjų pesų CUC + $ Kubos pesas @@ -7058,6 +7195,7 @@ For terms of use, see http://www.unicode.org/copyright.html Čekijos kronos Čekijos kronų CZK + Rytų Vokietijos markė @@ -7088,6 +7226,7 @@ For terms of use, see http://www.unicode.org/copyright.html Danijos kronos Danijos kronų DKK + kr Dominikos pesas @@ -7134,6 +7273,7 @@ For terms of use, see http://www.unicode.org/copyright.html Egipto svaro Egipto svarų EGP + Eritrėjos nakfa @@ -7178,6 +7318,8 @@ For terms of use, see http://www.unicode.org/copyright.html eurai euro eurų + + Suomijos markė @@ -7202,6 +7344,7 @@ For terms of use, see http://www.unicode.org/copyright.html Falklando salų svaro Falklando salų svarų FKP + £ Prancūzijos frankas @@ -7233,6 +7376,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gruzijos lario Gruzijos larių GEL + Ganos sedis (1979–2007) @@ -7273,6 +7417,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gvinėjos franko Gvinėjos frankų GNF + FG Guinean sylis @@ -7302,6 +7447,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gvatemalos ketcalio Gvatemalos ketcalių GTQ + Q Portugalų Gvinėjos eskudas @@ -7342,6 +7488,7 @@ For terms of use, see http://www.unicode.org/copyright.html Hondūro lempiros Hondūro lempirų HNL + L Kroatijos dinaras @@ -7357,6 +7504,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kroatijos kunos Kroatijos kunų HRK + kn Haičio gurdas @@ -7373,6 +7521,7 @@ For terms of use, see http://www.unicode.org/copyright.html Vengrijos forinto Vengrijos forintų HUF + Ft Indonezijos rupija @@ -7381,6 +7530,7 @@ For terms of use, see http://www.unicode.org/copyright.html Indonezijos rupijos Indonezijos rupijų IDR + Rp Airijos svaras @@ -7451,6 +7601,7 @@ For terms of use, see http://www.unicode.org/copyright.html Islandijos kronos Islandijos kronų ISK + kr Italijos lira @@ -7483,7 +7634,7 @@ For terms of use, see http://www.unicode.org/copyright.html Japonijos jenos Japonijos jenų JPY - JPY + ¥ Kenijos šilingas @@ -7517,6 +7668,7 @@ For terms of use, see http://www.unicode.org/copyright.html Komoro franko Komoro frankų KMF + CF Šiaurės Korėjos vonas @@ -7525,6 +7677,7 @@ For terms of use, see http://www.unicode.org/copyright.html Šiaurės Korėjos vono Šiaurės Korėjos vonų KPW + Pietų Korėjos hwanas (1953–1962) @@ -7573,7 +7726,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kazachstano tengės Kazachstano tengių KZT - KZT + Laoso kipas @@ -7591,6 +7744,7 @@ For terms of use, see http://www.unicode.org/copyright.html Libano svaro Libano svarų LBP + Šri Lankos rupija @@ -7599,6 +7753,7 @@ For terms of use, see http://www.unicode.org/copyright.html Šri Lankos rupijos Šri Lankos rupijų LKR + Rs Liberijos doleris @@ -7719,6 +7874,7 @@ For terms of use, see http://www.unicode.org/copyright.html Madagaskaro ariario Madagaskaro ariarių MGA + Ar Madagaskaro frankas @@ -7756,6 +7912,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mianmaro kijato Mianmaro kijatų MMK + K Mongolijos tugrikas @@ -7803,6 +7960,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mauricijaus rupijos Mauricijaus rupijų MUR + Rs Maldyvų rupija @@ -7857,6 +8015,7 @@ For terms of use, see http://www.unicode.org/copyright.html Malaizijos ringito Malaizijos ringitų MYR + RM Mozambiko eskudas @@ -7912,6 +8071,7 @@ For terms of use, see http://www.unicode.org/copyright.html Nikaragvos kordobos Nikaragvos kordobų NIO + C$ Nyderlandų guldenas @@ -7927,6 +8087,7 @@ For terms of use, see http://www.unicode.org/copyright.html Norvegijos kronos Norvegijos kronų NOK + kr Nepalo rupija @@ -7935,6 +8096,7 @@ For terms of use, see http://www.unicode.org/copyright.html Nepalo rupijos Nepalo rupijų NPR + Rs Naujosios Zelandijos doleris @@ -8007,6 +8169,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pakistano rupijos Pakistano rupijų PKR + Rs Lenkijos zlotas @@ -8015,6 +8178,7 @@ For terms of use, see http://www.unicode.org/copyright.html Lenkijos zloto Lenkijos zlotų PLN + zl Lenkijos zlotas (1950–1995) @@ -8084,6 +8248,7 @@ For terms of use, see http://www.unicode.org/copyright.html Rusijos rublio Rusijos rublių RUB + rb @@ -8100,6 +8265,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ruandos franko Ruandos frankų RWF + RF Saudo Arabijos rijalas @@ -8155,6 +8321,7 @@ For terms of use, see http://www.unicode.org/copyright.html Švedijos kronos Švedijos kronų SEK + kr Singapūro doleris @@ -8172,6 +8339,7 @@ For terms of use, see http://www.unicode.org/copyright.html Šv. Elenos salų svaro Šv. Elenos salų svarų SHP + £ Slovėnijos tolaras @@ -8235,6 +8403,7 @@ For terms of use, see http://www.unicode.org/copyright.html San Tomės ir Principės dobros Sao Tomės ir Principės dobrų STD + Db Sovietų rublis @@ -8257,6 +8426,7 @@ For terms of use, see http://www.unicode.org/copyright.html Sirijos svaro Sirijos svarų SYP + £ Svazilando lilangenis @@ -8273,6 +8443,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tailando bato Tailando batų THB + ฿ Tadžikistano rublis @@ -8319,6 +8490,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tongo paangos Tongo paangų TOP + T$ Timoro eskudas @@ -8407,7 +8579,7 @@ For terms of use, see http://www.unicode.org/copyright.html JAV doleriai JAV dolerio JAV dolerių - dol. + USD $ @@ -8469,6 +8641,7 @@ For terms of use, see http://www.unicode.org/copyright.html Venesuelos bolivaro Venesuelos bolivarų VEF + Bs Vietnamo dongas @@ -8559,6 +8732,7 @@ For terms of use, see http://www.unicode.org/copyright.html Rytų Karibų dolerio Rytų Karibų dolerių XCD + $ SDR tarptautinis valiutos fondas @@ -8706,6 +8880,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pietų Afrikos Respublikos rando Pietų Afrikos Respublikos randų ZAR + R Zambijos kvača (1968–2012) @@ -8721,6 +8896,7 @@ For terms of use, see http://www.unicode.org/copyright.html Zambijos kvačos Zambijos kvačų ZMW + ZK Zairo naujasis zairas (1993–1998) @@ -8766,7 +8942,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0} per {1} + {0}/{1} laisvojo kritimo pagreičiai @@ -8782,6 +8958,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metro per kvadratinę sekundę {0} metrų per kvadratinę sekundę + + pilnas apsisukimas + {0} pilnas apsisukimas + {0} pilni apsisukimai + {0} pilno apsisukimo + {0} pilnų apsisukimų + + + radianai + {0} radianas + {0} radianai + {0} radiano + {0} radianų + + + laipsniai + {0} laipsnis + {0} laipsniai + {0} laipsnio + {0} laipsnių + kampo minutės {0} kampo minutė @@ -8796,26 +8993,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kampo sekundės {0} kampo sekundžių - - laipsniai - {0} laipsnis - {0} laipsniai - {0} laipsnio - {0} laipsnių - - - radianai - {0} radianas - {0} radianai - {0} radiano - {0} radianų - - - akrai - {0} akras - {0} akrai - {0} akro - {0} akrų + + kvadratiniai kilometrai + {0} kvadratinis kilometras + {0} kvadratiniai kilometrai + {0} kvadratinio kilometro + {0} kvadratinių kilometrų hektarai @@ -8824,12 +9007,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hektaro {0} hektarų + + kvadratiniai metrai + {0} kvadratinis metras + {0} kvadratiniai metrai + {0} kvadratinio metro + {0} kvadratinių metrų + {0}/m² + kvadratiniai centimetrai {0} kvadratinis centimetras {0} kvadratiniai centimetrai {0} kvadratinio centimetro {0} kvadratinių centimetrų + {0}/cm² + + + kvadratinės mylios + {0} kvadratinė mylia + {0} kvadratinės mylios + {0} kvadratinės mylios + {0} kvadratinių mylių + + + akrai + {0} akras + {0} akrai + {0} akro + {0} akrų + + + kvadratiniai jardai + {0} kvadratinis jardas + {0} kvadratiniai jardai + {0} kvadratinio jardo + {0} yd² kvadratinės pėdos @@ -8844,34 +9057,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kvadratiniai coliai {0} kvadratinio colio {0} kvadratinių colių + {0}/in² - - kvadratiniai kilometrai - {0} kvadratinis kilometras - {0} kvadratiniai kilometrai - {0} kvadratinio kilometro - {0} kvadratinių kilometrų - - - kvadratiniai metrai - {0} kvadratinis metras - {0} kvadratiniai metrai - {0} kvadratinio metro - {0} kvadratinių metrų - - - kvadratinės mylios - {0} kvadratinė mylia - {0} kvadratinės mylios - {0} kvadratinės mylios - {0} kvadratinių mylių - - - kvadratiniai jardai - {0} kvadratinis jardas - {0} kvadratiniai jardai - {0} kvadratinio jardo - {0} yd² + + karatai + {0} karatas + {0} karatai + {0} karato + {0} karatų litrai kilometrui @@ -8880,6 +9073,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litro kilometrui {0} litrų kilometrui + + litrai 100 kilometrų + {0} litras 100 kilometrų + {0} litrai 100 kilometrų + {0} litro 100 kilometrų + {0} litrų 100 kilometrų + mylios už galoną {0} mylia už galoną @@ -8887,69 +9087,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mylios už galoną {0} mylių už galoną - - bitai - {0} bitas - {0} bitai - {0} bito - {0} bitų - - - baitai - {0} baitas - {0} baitai - {0} baito - {0} baitų - - - gigabitai - {0} gigabitas - {0} gigabitai - {0} gigabito - {0} gigabitų - - - gigabaitai - {0} gigabaitas - {0} gigabaitai - {0} gigabaito - {0} gigabaitų - - - kilobitai - {0} kilobitas - {0} kilobitai - {0} kilobito - {0} kilobitų - - - kilobaitai - {0} kilobaitas - {0} kilobaitai - {0} kilobaito - {0} kilobaitų - - - megabitai - {0} megabitas - {0} megabitai - {0} megabito - {0} megabitų - - - megabaitai - {0} megabaitas - {0} megabaitai - {0} megabaito - {0} megabaitų - - - terabitai - {0} terabitas - {0} terabitai - {0} terabito - {0} terabitų - terabaitai {0} terabaitas @@ -8957,12 +9094,107 @@ For terms of use, see http://www.unicode.org/copyright.html {0} terabaito {0} terabaitų + + terabitai + {0} terabitas + {0} terabitai + {0} terabito + {0} terabitų + + + gigabaitai + {0} gigabaitas + {0} gigabaitai + {0} gigabaito + {0} gigabaitų + + + gigabitai + {0} gigabitas + {0} gigabitai + {0} gigabito + {0} gigabitų + + + megabaitai + {0} megabaitas + {0} megabaitai + {0} megabaito + {0} megabaitų + + + megabitai + {0} megabitas + {0} megabitai + {0} megabito + {0} megabitų + + + kilobaitai + {0} kilobaitas + {0} kilobaitai + {0} kilobaito + {0} kilobaitų + + + kilobitai + {0} kilobitas + {0} kilobitai + {0} kilobito + {0} kilobitų + + + baitai + {0} baitas + {0} baitai + {0} baito + {0} baitų + + + bitai + {0} bitas + {0} bitai + {0} bito + {0} bitų + + + amžiai + {0} amžius + {0} amžiai + {0} amžiaus + {0} amžių + + + metai + {0} metai + {0} metai + {0} metų + {0} metų + {0} per metus + + + mėnesiai + {0} mėnuo + {0} mėnesiai + {0} mėnesio + {0} mėnesių + {0} per mėnesį + + + savaitės + {0} savaitė + {0} savaitės + {0} savaitės + {0} savaičių + {0} per savaitę + dienos {0} diena {0} dienos {0} dienos {0} dienų + {0} per dieną valandos @@ -8972,40 +9204,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} valandų {0}/h - - mikrosekundės - {0} mikrosekundė - {0} mikrosekundės - {0} mikrosekundės - {0} mikrosekundžių - - - milisekundės - {0} milisekundė - {0} milisekundės - {0} milisekundės - {0} milisekundžių - minutės {0} minutė {0} minutės {0} minutės {0} minučių - - - mėnesiai - {0} mėnuo - {0} mėnesiai - {0} mėnesio - {0} mėnesių - - - nanosekundės - {0} nanosekundė - {0} nanosekundės - {0} nanosekundės - {0} nanosekundžių + {0} per minutę sekundės @@ -9015,19 +9220,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sekundžių {0}/s - - savaitės - {0} savaitė - {0} savaitės - {0} savaitės - {0} savaičių + + milisekundės + {0} milisekundė + {0} milisekundės + {0} milisekundės + {0} milisekundžių - - metai - {0} metai - {0} metai - {0} metų - {0} metų + + mikrosekundės + {0} mikrosekundė + {0} mikrosekundės + {0} mikrosekundės + {0} mikrosekundžių + + + nanosekundės + {0} nanosekundė + {0} nanosekundės + {0} nanosekundės + {0} nanosekundžių amperai @@ -9057,6 +9269,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volto {0} voltų + + kilokalorijos + {0} kilokalorija + {0} kilokalorijos + {0} kilokalorijos + {0} kilokalorijų + kalorijos {0} kalorija @@ -9071,20 +9290,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kalorijos {0} kalorijų - - džauliai - {0} džaulis - {0} džauliai - {0} džaulio - {0} džaulių - - - kilokalorijos - {0} kilokalorija - {0} kilokalorijos - {0} kilokalorijos - {0} kilokalorijų - kilodžauliai {0} kilodžaulis @@ -9092,6 +9297,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilodžaulio {0} kilodžaulių + + džauliai + {0} džaulis + {0} džauliai + {0} džaulio + {0} džaulių + kilovatvalandės {0} kilovatvalandė @@ -9106,12 +9318,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigaherco {0} gigahercų - - hercai - {0} hercas - {0} hercai - {0} herco - {0} hercų + + megahercai + {0} megahercas + {0} megahercai + {0} megaherco + {0} megahercų kilohercai @@ -9120,26 +9332,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kiloherco {0} kilohercų - - megahercai - {0} megahercas - {0} megahercai - {0} megaherco - {0} megahercų + + hercai + {0} hercas + {0} hercai + {0} herco + {0} hercų - - astronominiai vienetai - {0} astronominis vienetas - {0} astronominiai vienetai - {0} astronominio vieneto - {0} astronominių vienetų + + kilometrai + {0} kilometras + {0} kilometrai + {0} kilometro + {0} kilometrų + {0}/km - - centimetrai - {0} centimetras - {0} centimetrai - {0} centimetro - {0} centimetrų + + metrai + {0} metras + {0} metrai + {0} metro + {0} metrų + {0}/m decimetrai @@ -9148,68 +9362,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} decimetro {0} decimetrų - - fadomai - {0} fadomas - {0} fadomai - {0} fadomo - {0} ftm - - - pėdos - {0} pėda - {0} pėdos - {0} pėdos - {0} pėdų - - - furlongai - {0} furlongas - {0} furlongai - {0} furlongo - {0} furlongų - - - coliai - {0} colis - {0} coliai - {0} colio - {0} colių - - - kilometrai - {0} kilometras - {0} kilometrai - {0} kilometro - {0} kilometrų - - - šviesmečiai - {0} šviesmetis - {0} šviesmečiai - {0} šviesmečio - {0} šviesmečių - - - metrai - {0} metras - {0} metrai - {0} metro - {0} metrų - - - mikrometrai - {0} mikrometras - {0} mikrometrai - {0} mikrometro - {0} mikrometrų - - - mylios - {0} mylia - {0} mylios - {0} mylios - {0} mylių + + centimetrai + {0} centimetras + {0} centimetrai + {0} centimetro + {0} centimetrų + {0}/cm milimetrai @@ -9218,6 +9377,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milimetro {0} milimetrų + + mikrometrai + {0} mikrometras + {0} mikrometrai + {0} mikrometro + {0} mikrometrų + nanometrai {0} nanometras @@ -9225,20 +9391,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nanometro {0} nanometrų - - jūrmylės - {0} jūrmylė - {0} jūrmylės - {0} jūrmylės - {0} jūrmylių - - - parsekas - {0} parsekas - {0} parsekai - {0} parseko - {0} parsekų - pikometrai {0} pikometras @@ -9246,6 +9398,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pikometro {0} pikometrų + + mylios + {0} mylia + {0} mylios + {0} mylios + {0} mylių + jardai {0} jardas @@ -9253,6 +9412,71 @@ For terms of use, see http://www.unicode.org/copyright.html {0} jardo {0} jardų + + pėdos + {0} pėda + {0} pėdos + {0} pėdos + {0} pėdų + {0}/ft + + + coliai + {0} colis + {0} coliai + {0} colio + {0} colių + {0}/in + + + parsekas + {0} parsekas + {0} parsekai + {0} parseko + {0} parsekų + + + šviesmečiai + {0} šviesmetis + {0} šviesmečiai + {0} šviesmečio + {0} šviesmečių + + + astronominiai vienetai + {0} astronominis vienetas + {0} astronominiai vienetai + {0} astronominio vieneto + {0} astronominių vienetų + + + furlongai + {0} furlongas + {0} furlongai + {0} furlongo + {0} furlongų + + + fadomai + {0} fadomas + {0} fadomai + {0} fadomo + {0} ftm + + + jūrmylės + {0} jūrmylė + {0} jūrmylės + {0} jūrmylės + {0} jūrmylių + + + ilgoji mylia + {0} ilgoji mylia + {0} ilgosios mylios + {0} ilgosios mylios + {0} ilgųjų mylių + liuksai {0} liuksas @@ -9260,27 +9484,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} liukso {0} liuksų - - karatai - {0} karatas - {0} karatai - {0} karato - {0} karatų - - - gramai - {0} gramas - {0} gramai - {0} gramo - {0} gramų - - - kilogramai - {0} kilogramas - {0} kilogramai - {0} kilogramo - {0} kilogramų - metrinės tonos {0} metrinė tona @@ -9288,12 +9491,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metrinės tonos {0} metrinių tonų - - mikrogramai - {0} mikrogramas - {0} mikrogramai - {0} mikrogramo - {0} mikrogramų + + kilogramai + {0} kilogramas + {0} kilogramai + {0} kilogramo + {0} kilogramų + {0}/kg + + + gramai + {0} gramas + {0} gramai + {0} gramo + {0} gramų + {0}/g miligramai @@ -9302,33 +9514,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} miligramo {0} miligramų - - uncijos - {0} uncija - {0} uncijos - {0} uncijos - {0} uncijų - - - Trojos uncijos - {0} Trojos uncija - {0} Trojos uncijos - {0} Trojos uncijos - {0} Trojos uncijų - - - svarai - {0} svaras - {0} svarai - {0} svaro - {0} svarų - - - stonai - {0} stonas - {0} stonai - {0} stono - {0} stonų + + mikrogramai + {0} mikrogramas + {0} mikrogramai + {0} mikrogramo + {0} mikrogramų tonos @@ -9337,6 +9528,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tonos {0} tonų + + stonai + {0} stonas + {0} stonai + {0} stono + {0} stonų + + + svarai + {0} svaras + {0} svarai + {0} svaro + {0} svarų + {0}/lb + + + uncijos + {0} uncija + {0} uncijos + {0} uncijos + {0} uncijų + {0}/oz + + + Trojos uncijos + {0} Trojos uncija + {0} Trojos uncijos + {0} Trojos uncijos + {0} Trojos uncijų + + + karatai + {0} karatas + {0} karatai + {0} karato + {0} karatų + gigavatai {0} gigavatas @@ -9344,20 +9572,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigavato {0} gigavatų - - arklio galios - {0} arklio galia - {0} arklio galios - {0} arklio galios - {0} arklio galių - - - kilovatai - {0} kilovatas - {0} kilovatai - {0} kilovato - {0} kilovatų - megavatai {0} megavatas @@ -9365,12 +9579,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} megavato {0} megavatų - - milivatai - {0} milivatas - {0} milivatai - {0} milivato - {0} milivatų + + kilovatai + {0} kilovatas + {0} kilovatai + {0} kilovato + {0} kilovatų vatai @@ -9379,6 +9593,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} vato {0} vatų + + milivatai + {0} milivatas + {0} milivatai + {0} milivato + {0} milivatų + + + arklio galios + {0} arklio galia + {0} arklio galios + {0} arklio galios + {0} arklio galių + hektopaskaliai {0} hektopaskalis @@ -9386,20 +9614,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hektopaskalio {0} hektopaskalių - - gyvsidabrio stulpelio coliai - {0} gyvsidabrio stulpelio colis - {0} gyvsidabrio stulpelio coliai - {0} gyvsidabrio stulpelio colio - {0} gyvsidabrio stulpelio colių - - - milbaras - {0} milibaras - {0} milibarai - {0} milibaro - {0} milibarų - gysidabrio stulpelio milimetrai {0} gysidabrio stulpelio milimetras @@ -9414,12 +9628,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} svaro kv. colyje {0} svarų kv. colyje - - karatai - {0} karatas - {0} karatai - {0} karato - {0} karatų + + gyvsidabrio stulpelio coliai + {0} gyvsidabrio stulpelio colis + {0} gyvsidabrio stulpelio coliai + {0} gyvsidabrio stulpelio colio + {0} gyvsidabrio stulpelio colių + + + milibarai + {0} milibaras + {0} milibarai + {0} milibaro + {0} milibarų kilometrai per valandą @@ -9442,6 +9663,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mylios per valandą {0} mylių per valandą + + mazgas + {0} mazgas + {0} mazgai + {0} mazgo + {0} mazgų + + + ° + {0}° + {0}° + {0}° + {0}° + Celsijaus laipsniai {0} Celsijaus laipsnis @@ -9463,48 +9698,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvino {0} kelvinų - - pėdos akre - {0} pėda akre - {0} pėdos akre - {0} pėdos akre - {0} pėdų akre - - - bušeliai - {0} bušelis - {0} bušeliai - {0} bušelio - {0} bušelių - - - centilitrai - {0} centilitras - {0} centilitrai - {0} centilitro - {0} centilitrų - - - kubiniai centimetrai - {0} kubinis centimetras - {0} kubiniai centimetrai - {0} kubinio centimetro - {0} kubinių centimetrų - - - kubinės pėdos - {0} kubinė pėda - {0} kubinės pėdos - {0} kubinės pėdos - {0} kubinių pėdų - - - kubiniai coliai - {0} kubinis colis - {0} kubiniai coliai - {0} kubinio colio - {0} kubinių colių - kubiniai kilometrai {0} kubinis kilometras @@ -9518,6 +9711,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubiniai metrai {0} kubinio metro {0} kubinių metrų + {0}/m³ + + + kubiniai centimetrai + {0} kubinis centimetras + {0} kubiniai centimetrai + {0} kubinio centimetro + {0} kubinių centimetrų + {0}/cm³ kubinės mylios @@ -9533,33 +9735,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubinio jardo {0} kubinių jardų - - stiklinės - {0} stiklinė - {0} stiklinės - {0} stiklinės - {0} stiklinių + + kubinės pėdos + {0} kubinė pėda + {0} kubinės pėdos + {0} kubinės pėdos + {0} kubinių pėdų - - decilitrai - {0} decilitras - {0} decilitrai - {0} decilitro - {0} decilitrų + + kubiniai coliai + {0} kubinis colis + {0} kubiniai coliai + {0} kubinio colio + {0} kubinių colių - - skysčio uncijos - {0} skysčio uncija - {0} skysčio uncijos - {0} skysčio uncijos - {0} skysčio uncijų - - - galonai - {0} galonas - {0} galonai - {0} galono - {0} galonų + + megalitrai + {0} megalitras + {0} megalitrai + {0} megalitro + {0} megalitrų hektolitrai @@ -9574,13 +9769,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litrai {0} litro {0} litrų + {0}/l - - megalitrai - {0} megalitras - {0} megalitrai - {0} megalitro - {0} megalitrų + + decilitrai + {0} decilitras + {0} decilitrai + {0} decilitro + {0} decilitrų + + + centilitrai + {0} centilitras + {0} centilitrai + {0} centilitro + {0} centilitrų mililitrai @@ -9589,12 +9792,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mililitro {0} mililitrų - - pintos - {0} pinta - {0} pintos - {0} pintos - {0} pintų + + metrinės pintos + {0} metrinė pinta + {0} metrinės pintos + {0} metrinės pintos + {0} metrinių pintų + + + matavimo puodeliai + {0} matavimo puodelis + {0} matavimo puodeliai + {0} matavimo puodelio + {0} matavimo puodelių + + + pėdos akre + {0} pėda akre + {0} pėdos akre + {0} pėdos akre + {0} pėdų akre + + + bušeliai + {0} bušelis + {0} bušeliai + {0} bušelio + {0} bušelių + + + galonai + {0} galonas + {0} galonai + {0} galono + {0} galonų + {0}/gal kvortos @@ -9603,6 +9835,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kvortos {0} kvortų + + pintos + {0} pinta + {0} pintos + {0} pintos + {0} pintų + + + stiklinės + {0} stiklinė + {0} stiklinės + {0} stiklinės + {0} stiklinių + + + skysčio uncijos + {0} skysčio uncija + {0} skysčio uncijos + {0} skysčio uncijos + {0} skysčio uncijų + valgomieji šaukštai {0} valgomasis šaukštas @@ -9617,6 +9870,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} arbatinio šaukštelio {0} arbatinių šaukštelių + + {0} E + {0} N + {0} S + {0} W + @@ -9636,6 +9895,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + apsisuk. + {0} apsisuk. + {0} apsisuk. + {0} apsisuk. + {0} apsisuk. + + + rad + {0} rad + {0} rad + {0} rad + {0} rad + + + laipsniai + {0}° + {0}° + {0}° + {0}° + kampo minutės {0}′ @@ -9650,40 +9930,56 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - laipsniai - {0}° - {0}° - {0}° - {0}° - - - rad - {0} rad - {0} rad - {0} rad - {0} rad - - - a. - {0} a. - {0} a. - {0} a. - {0} a. + + kv. km + {0} kv. km + {0} kv. km + {0} kv. km + {0} kv. km - ha + hektarai {0} ha {0} ha {0} ha {0} ha + + kv. m + {0} kv. m + {0} kv. m + {0} kv. m + {0} kv. m + {0}/m² + cm² {0} cm² {0} cm² {0} cm² {0} cm² + {0}/cm² + + + kv. mylios + {0} kv. my + {0} kv. my + {0} kv. my + {0} kv. my + + + akrai + {0} a. + {0} a. + {0} a. + {0} a. + + + yd² + {0} yd² + {0} yd² + {0} yd² + {0} yd² kv. pėda @@ -9698,34 +9994,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² {0} in² + {0}/in² - - kv. km - {0} kv. km - {0} kv. km - {0} kv. km - {0} kv. km - - - kv. m - {0} kv. m - {0} kv. m - {0} kv. m - {0} kv. m - - - kv. my - {0} kv. my - {0} kv. my - {0} kv. my - {0} kv. my - - - yd² - {0} yd² - {0} yd² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt + {0} kt + {0} kt l/km @@ -9734,6 +10010,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l/km {0} l/km + + l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km + mi/gal {0} mi/gal @@ -9741,69 +10024,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/gal {0} mi/gal - - bitai - {0} bitas - {0} bitai - {0} bito - {0} bitų - - - B - {0} B - {0} B - {0} B - {0} B - - - Gb - {0} Gb - {0} Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - {0} Tb - {0} Tb - TB {0} TB @@ -9811,12 +10031,107 @@ For terms of use, see http://www.unicode.org/copyright.html {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + {0} kb + {0} kb + + + B + {0} B + {0} B + {0} B + {0} B + + + bitai + {0} b + {0} b + {0} b + {0} b + + + a. + {0} a. + {0} a. + {0} a. + {0} a. + + + metai + {0} m. + {0} m. + {0} m. + {0} m. + {0}/m. + + + mėnesiai + {0} mėn. + {0} mėn. + {0} mėn. + {0} mėn. + {0}/mėn. + + + savaitės + {0} sav. + {0} sav. + {0} sav. + {0} sav. + {0}/sav. + dienos {0} d. {0} d. {0} d. {0} d. + {0}/d. valandos @@ -9826,40 +10141,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} val. {0}/h - - μs - {0} μs - {0} μs - {0} μs - {0} μs - - - milisek. - {0} ms - {0} ms - {0} ms - {0} ms - min. {0} min. {0} min. {0} min. {0} min. - - - mėnesiai - {0} mėn. - {0} mėn. - {0} mėn. - {0} mėn. - - - nanosek. - {0} ns - {0} ns - {0} ns - {0} ns + {0}/min. sek. @@ -9869,19 +10157,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sek. {0}/s - - savaitės - {0} sav. - {0} sav. - {0} sav. - {0} sav. + + milisek. + {0} ms + {0} ms + {0} ms + {0} ms - - metai - {0} m. - {0} m. - {0} m. - {0} m. + + μs + {0} μs + {0} μs + {0} μs + {0} μs + + + nanosek. + {0} ns + {0} ns + {0} ns + {0} ns A @@ -9911,6 +10206,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + {0} kcal + {0} kcal + cal {0} cal @@ -9925,20 +10227,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cal {0} cal - - J - {0} J - {0} J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - {0} kcal - {0} kcal - kJ {0} kJ @@ -9946,6 +10234,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kJ {0} kJ + + J + {0} J + {0} J + {0} J + {0} J + kWh {0} kWh @@ -9960,12 +10255,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz + {0} MHz + {0} MHz kHz @@ -9974,26 +10269,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz + {0} Hz + {0} Hz - - AV - {0} AV - {0} AV - {0} AV - {0} AV + + km + {0} km + {0} km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm - {0} cm - {0} cm + + m + {0} m + {0} m + {0} m + {0} m + {0}/m dm @@ -10002,68 +10299,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dm {0} dm - - ftm - {0} ftm - {0} ftm - {0} ftm - {0} ftm - - - pėda - {0} ft - {0} ft - {0} ft - {0} ft - - - fur - {0} fur - {0} fur - {0} fur - {0} fur - - - coliai - {0} in - {0} in - {0} in - {0} in - - - km - {0} km - {0} km - {0} km - {0} km - - - šviesmečiai - {0} šm. - {0} šm. - {0} šm. - {0} šm. - - - m - {0} m - {0} m - {0} m - {0} m - - - µm - {0} µm - {0} µm - {0} µm - {0} µm - - - mi - {0} mi - {0} mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0} cm + {0} cm + {0}/cm mm @@ -10072,6 +10314,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mm {0} mm + + µm + {0} µm + {0} µm + {0} µm + {0} µm + nm {0} nm @@ -10079,20 +10328,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nm {0} nm - - M - {0} M - {0} M - {0} M - {0} M - - - pc - {0} pc - {0} pc - {0} pc - {0} pc - pm {0} pm @@ -10100,6 +10335,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + mi + {0} mi + {0} mi + {0} mi + {0} mi + yd {0} yd @@ -10107,6 +10349,71 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd {0} yd + + pėda + {0} ft + {0} ft + {0} ft + {0} ft + {0}/ft + + + coliai + {0} in + {0} in + {0} in + {0} in + {0}/in + + + pc + {0} pc + {0} pc + {0} pc + {0} pc + + + šviesmečiai + {0} šm. + {0} šm. + {0} šm. + {0} šm. + + + AV + {0} AV + {0} AV + {0} AV + {0} AV + + + fur + {0} fur + {0} fur + {0} fur + {0} fur + + + ftm + {0} ftm + {0} ftm + {0} ftm + {0} ftm + + + M + {0} M + {0} M + {0} M + {0} M + + + IM + {0} IM + {0} IM + {0} IM + {0} IM + lx {0} lx @@ -10114,27 +10421,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lx {0} lx - - ct - {0} ct - {0} ct - {0} ct - {0} ct - - - g - {0} g - {0} g - {0} g - {0} g - - - kg - {0} kg - {0} kg - {0} kg - {0} kg - mt {0} mt @@ -10142,12 +10428,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mt {0} mt - - µg - {0} µg - {0} µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0} kg + {0} kg + {0}/kg + + + g + {0} g + {0} g + {0} g + {0} g + {0}/g mg @@ -10156,33 +10451,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mg {0} mg - - oz - {0} oz - {0} oz - {0} oz - {0} oz - - - ozt - {0} ozt - {0} ozt - {0} ozt - {0} ozt - - - lb - {0} lb - {0} lb - {0} lb - {0} lb - - - st - {0} st - {0} st - {0} st - {0} st + + µg + {0} µg + {0} µg + {0} µg + {0} µg t @@ -10191,6 +10465,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} t {0} t + + st + {0} st + {0} st + {0} st + {0} st + + + lb + {0} lb + {0} lb + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0} oz + {0} oz + {0}/oz + + + ozt + {0} ozt + {0} ozt + {0} ozt + {0} ozt + + + ct + {0} ct + {0} ct + {0} ct + {0} ct + GW {0} GW @@ -10198,20 +10509,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GW {0} GW - - AG - {0} AG - {0} AG - {0} AG - {0} AG - - - kW - {0} kW - {0} kW - {0} kW - {0} kW - MW {0} MW @@ -10219,12 +10516,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} MW {0} MW - - mW - {0} mW - {0} mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW + {0} kW + {0} kW W @@ -10233,6 +10530,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + mW + {0} mW + {0} mW + {0} mW + {0} mW + + + AG + {0} AG + {0} AG + {0} AG + {0} AG + hPa {0} hPa @@ -10240,20 +10551,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -10268,12 +10565,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lb in² {0} lb in² - - kt - {0} kt - {0} kt - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar + {0} mbar + {0} mbar km/val. @@ -10296,6 +10600,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + mazgas + {0} KN + {0} KN + {0} KN + {0} KN + + + ° + {0}° + {0}° + {0}° + {0}° + °C {0}°C @@ -10317,48 +10635,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ft akre - {0} ft akre - {0} ft akre - {0} ft akre - {0} ft akre - - - bu - {0} bu - {0} bu - {0} bu - {0} bu - - - cl - {0} cl - {0} cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -10372,6 +10648,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -10387,33 +10672,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - stikl. - {0} stikl. - {0} stikl. - {0} stikl. - {0} stikl. + + ft³ + {0} ft³ + {0} ft³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl - {0} dl - {0} dl + + in³ + {0} in³ + {0} in³ + {0} in³ + {0} in³ - - skysčio oz - {0} skysčio oz - {0} skysčio oz - {0} skysčio oz - {0} skysčio oz - - - gal - {0} gal - {0} gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml + {0} Ml + {0} Ml hl @@ -10428,13 +10706,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl + {0} cl + {0} cl ml @@ -10443,12 +10729,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ml {0} ml - - pt - {0} pt - {0} pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + {0} mpt + {0} mpt + + + mat. puodelis + {0} mat. puodelis + {0} mat. puodeliai + {0} mat. puodelio + {0} mat. puodelių + + + pėda akre + {0} ft akre + {0} ft akre + {0} ft akre + {0} ft akre + + + bu + {0} bu + {0} bu + {0} bu + {0} bu + + + gal + {0} gal + {0} gal + {0} gal + {0} gal + {0}/gal kvortos @@ -10457,6 +10772,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kvortos {0} kvortų + + pintos + {0} pt + {0} pt + {0} pt + {0} pt + + + stikl. + {0} stikl. + {0} stikl. + {0} stikl. + {0} stikl. + + + skysčio oz + {0} skysčio oz + {0} skysčio oz + {0} skysčio oz + {0} skysčio oz + v. š. {0} v. š. @@ -10471,6 +10807,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} a. š. {0} a. š. + + {0} E + {0} N + {0} S + {0} W + @@ -10482,6 +10824,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}° + {0}° + {0}′ {0}′ @@ -10494,17 +10842,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - {0}° - {0}° - - - {0} akr. - {0} akr. - {0} akr. - {0} akr. + + {0} km² + {0} km² + {0} km² + {0} km² {0}ha @@ -10512,18 +10854,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ha {0}ha - - {0} ft² - {0} ft² - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} km² - {0} km² - {0} m² {0} m² @@ -10536,12 +10866,52 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} akr. + {0} akr. + {0} akr. + {0} akr. + + + {0} ft² + {0} ft² + {0} ft² + {0} ft² + + + l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km + {0} mi/gal {0} mi/gal {0} mi/gal {0} mi/gal + + metai + {0} m. + {0} m. + {0} m. + {0} m. + + + mėnuo + {0} mėn. + {0} mėn. + {0} mėn. + {0} mėn. + + + sav. + {0} sav. + {0} sav. + {0} sav. + {0} sav. + diena {0} d. @@ -10556,13 +10926,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0} h - - milisek. - {0} ms - {0} ms - {0} ms - {0} ms - min. {0} min. @@ -10570,13 +10933,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} min. {0} min. - - mėnuo - {0} mėn. - {0} mėn. - {0} mėn. - {0} mėn. - sek. {0} s @@ -10584,52 +10940,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} s {0} s - - sav. - {0} sav. - {0} sav. - {0} sav. - {0} sav. - - - metai - {0} m. - {0} m. - {0} m. - {0} m. - - - cm - {0} cm - {0} cm - {0} cm - {0} cm - - - ftm - {0} ftm - {0} ftm - {0} ftm - {0} ftm - - - {0} ft - {0} ft - {0} ft - {0} ft - - - fur - {0} fur - {0} fur - {0} fur - {0} fur - - - {0} in - {0} in - {0} in - {0} in + + milisek. + {0} ms + {0} ms + {0} ms + {0} ms km @@ -10638,12 +10954,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} km {0} km - - {0} šm. - {0} šm. - {0} šm. - {0} šm. - m {0} m @@ -10651,11 +10961,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m {0} m - - {0} my - {0} my - {0} my - {0} my + + cm + {0} cm + {0} cm + {0} cm + {0} cm mm @@ -10670,18 +10981,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} my + {0} my + {0} my + {0} my + {0} yd {0} yd {0} yd {0} yd - - g - {0} g - {0} g - {0} g - {0} g + + {0} ft + {0} ft + {0} ft + {0} ft + + + {0} in + {0} in + {0} in + {0} in + + + {0} šm. + {0} šm. + {0} šm. + {0} šm. + + + fur + {0} fur + {0} fur + {0} fur + {0} fur + + + ftm + {0} ftm + {0} ftm + {0} ftm + {0} ftm kg @@ -10690,17 +11032,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kg {0} kg - - {0} oz - {0} oz - {0} oz - {0} oz - - - {0} lb - {0} lb - {0} lb - {0} lb + + g + {0} g + {0} g + {0} g + {0} g st @@ -10709,11 +11046,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} st {0} st - - {0} AG - {0} AG - {0} AG - {0} AG + + {0} lb + {0} lb + {0} lb + {0} lb + + + {0} oz + {0} oz + {0} oz + {0} oz {0} kW @@ -10727,12 +11070,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} AG + {0} AG + {0} AG + {0} AG + {0} hPa {0} hPa {0} hPa {0} hPa + + {0} mm Hg + {0} mm Hg + {0} mm Hg + {0} mm Hg + {0} inHg {0} inHg @@ -10745,12 +11100,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mbar {0} mbar - - {0} mm Hg - {0} mm Hg - {0} mm Hg - {0} mm Hg - km/h {0} km/h @@ -10790,6 +11139,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K + + {0} km³ + {0} km³ + {0} km³ + {0} km³ + + + {0} mi³ + {0} mi³ + {0} mi³ + {0} mi³ + + + litrai + {0} l + {0} l + {0} l + {0} l + ft akre {0} ft akre @@ -10804,17 +11172,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} bu {0} bu - - {0} km³ - {0} km³ - {0} km³ - {0} km³ - - - {0} mi³ - {0} mi³ - {0} mi³ - {0} mi³ + + {0} kvorta + {0} kvortos + {0} kvortos + {0} kvortų {0} fl oz @@ -10822,19 +11184,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} fl oz {0} fl oz - - l - {0} l - {0} l - {0} l - {0} l - - - {0} kvorta - {0} kvortos - {0} kvortos - {0} kvortų - + + {0} E + {0} N + {0} S + {0} W + hh:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lt_LT.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lt_LT.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lt_LT.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lt_LT.xml index 77d4d4301c9..289213966a9 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lt_LT.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lt_LT.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lu.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lu.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lu.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lu.xml index 88ab627d1a9..3a16da80930 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lu.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lu.xml @@ -1,13 +1,12 @@ - - - + @@ -64,7 +63,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angiye Alubani Ameni - Antiye wa Olande Angola Alijantine Samoa wa Ameriki @@ -447,6 +445,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Dinda + Dilolo + Dinda Dilolo @@ -592,6 +594,22 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤ + + + 0K¤ + 00K¤ + 000K¤ + 0M¤ + 00M¤ + 000M¤ + 0G¤ + 00G¤ + 000G¤ + 0T¤ + 00T¤ + 000T¤ + + @@ -772,3 +790,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lu_CD.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lu_CD.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lu_CD.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lu_CD.xml index ad154a2b3ed..02ac4e70887 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lu_CD.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lu_CD.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/luo.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/luo.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/luo.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/luo.xml index 6bcab345782..07e742c93a8 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/luo.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/luo.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Netherlands Antilles Angola Argentina American Samoa @@ -448,6 +446,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + OD + OT + OD OT @@ -489,22 +491,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -581,6 +583,22 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤ + + + 0K¤ + 00K¤ + 000K¤ + 0M¤ + 00M¤ + 000M¤ + 0G¤ + 00G¤ + 000G¤ + 0T¤ + 00T¤ + 000T¤ + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/luo_KE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/luo_KE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/luo_KE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/luo_KE.xml index eb7e4dc89d3..25d15d68749 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/luo_KE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/luo_KE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/luy.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/luy.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/luy.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/luy.xml index 252229096b5..c755ff3e2e6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/luy.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/luy.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antili za Uholanzi Angola Ajentina Samoa lya Marekani @@ -450,6 +448,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + a.m. + p.m. + a.m. p.m. @@ -491,22 +493,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -583,6 +585,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;¤- #,##0.00 + + + ¤0K + ¤00K + ¤000K + ¤0M + ¤00M + ¤000M + ¤0G + ¤00G + ¤000G + ¤0T + ¤00T + ¤000T + + @@ -760,3 +778,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/luy_KE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/luy_KE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/luy_KE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/luy_KE.xml index 4a10ed860f5..1addecfe1fe 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/luy_KE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/luy_KE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lv.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lv.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lv.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lv.xml index a15d86e01c8..c16bc5ba067 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lv.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lv.xml @@ -1,13 +1,12 @@ - - - + @@ -50,6 +49,7 @@ For terms of use, see http://www.unicode.org/copyright.html aimaru azerbaidžāņu azerbaidžāņu + dienvidazerbaidžāņu baškīru beludžu baliešu @@ -62,6 +62,7 @@ For terms of use, see http://www.unicode.org/copyright.html bena bafutu bulgāru + rietumbeludžu bhodžpūru bišlamā bikolu @@ -288,6 +289,7 @@ For terms of use, see http://www.unicode.org/copyright.html laosiešu mongu lozu + ziemeļluru lietuviešu lubakatanga lubalulva @@ -336,12 +338,14 @@ For terms of use, see http://www.unicode.org/copyright.html birmiešu mjenu erzju + mazanderāņu nauruiešu neapoliešu nama norvēģu bukmols ziemeļndebelu lejasvācu + lejassakšu nepāliešu nevaru ndongu @@ -418,6 +422,7 @@ For terms of use, see http://www.unicode.org/copyright.html sicīliešu skotu sindhu + dienvidkurdu ziemeļsāmu seneku senu @@ -455,8 +460,8 @@ For terms of use, see http://www.unicode.org/copyright.html šumeru zviedru svahili + Kongo svahili komoru - Kongo svahili klasiskā sīriešu sīriešu tamilu @@ -511,6 +516,7 @@ For terms of use, see http://www.unicode.org/copyright.html valamu varaju vašo + varlpirī volofu kalmiku khosu @@ -653,7 +659,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angilja Albānija Armēnija - Nīderlandes Antiļas Angola Antarktika Argentīna @@ -949,6 +954,9 @@ For terms of use, see http://www.unicode.org/copyright.html Kārtošana skaitliskā secībā Kārtošanas pakāpe Valūta + Stundu formāts (12 vai 24) + Rindiņas pārtraukuma stils + mērvienību sistēma Cipari Laika josla Lokalizācijas variants @@ -956,96 +964,106 @@ For terms of use, see http://www.unicode.org/copyright.html Personīgai lietošanai - Arābu-indiešu cipari - Izvērstie arābu-indiešu cipari - Armēņu cipari - Mazie armēņu cipari - Bengāļu cipari - tradicionālās ķīniešu valodas kārtošanas secība - Big5 - budistu kalendārs - ķīniešu kalendārs - Koptu kalendārs - dangi kalendārs - Devanāgarī cipari - Vārdnīcas kārtošanas secība - Noklusējuma unikoda kārtošanas secība - kārtošanas secība daudzvalodu Eiropas dokumentiem - Etiopiešu cipari - etiopiešu kalendārs - Etiopiešu kalendārs - Finanšu cipari - Pilna platuma cipari - vienkāršotās ķīniešu valodas kārtošanas secība - GB2312 - Gruzīnu cipari - Gregora kalendārs - Grieķu cipari - Mazie grieķu cipari - Gudžaratu cipari - Gurmuki cipari - Ķīniešu decimāldaļskaitļi - Vienkāršotie ķīniešu cipari - Vienkāršotie ķīniešu cipari finanšu dokumentiem - Tradicionālie ķīniešu cipari - Tradicionālie ķīniešu cipari finanšu dokumentiem - Ivrita cipari - ebreju kalendārs - Kārtot visus - Indijas nacionālais kalendārs - islāma kalendārs - islāma pilsoņu kalendārs - ISO 8601 kalendārs - japāņu kalendārs - Japāņu cipari - Japāņu cipari finanšu dokumentiem - Khmeru cipari - Kannadu cipari - Laosiešu cipari - Arābu cipari - Kārtot pēc pirmā mazā burta - Malajalu cipari - Mongoļu cipari - Birmiešu cipari - Vietējie cipari - Kārtot diakritiskās zīmes parastā secībā - Kārtot burtu reģistra parastā secībā - Kārtot reģistrnejutīgas rakstzīmes - Kārtot kana rakstzīmes atsevišķi - Kārtot bez normalizēšanas - Kārtot ciparus atsevišķi - Kārtot simbolus - Oriju cipari - persiešu kalendārs - tālruņu grāmatas kārtošanas secība - Fonētiskā kārtošanas secība - piņjiņa kārtošanas secība - Kārtot tikai pamata burtus - Kārtot diakritiskās zīmes/reģistrjutīgās rakstzīmes/rakstzīmes pēc platuma/Kana rakstzīmes - Reformētā kārtošanas secība - Ķīnas Republikas kalendārs - Romiešu cipari - Mazie romiešu cipari - Vispārīga meklēšana - Meklēt pēc Hangul sākuma līdzskaņa - Kārtot diakritiskās zīmes - Kārtot, ignorējot simbolus - Standarta kārtošanas secība - Stroke kārtošanas secība - Tamilu tradicionālie cipari - Tamilu cipari - Telugu cipari - Kārtot diakritiskās zīmes/reģistrjutīgās rakstzīmes/rakstzīmes pēc platuma - Tajiešu cipari - Tibetiešu cipari - tradicionālā kārtošanas secība - Tradicionālā ciparu sistēma - Radikālā kārtošanas secība pēc vilkumu skaita - Kārtot pēc pirmā lielā burta - VAI cipari - Kārtot diakritiskās zīmes apgrieztā secībā - Kārtot reģistrjutīgās rakstzīmes - Kārtot kana rakstzīmes, norādot atšķirības - Kārtot unikodu normalizējot - Kārtot ciparus skaitliskā secībā + budistu kalendārs + ķīniešu kalendārs + Koptu kalendārs + dangi kalendārs + etiopiešu kalendārs + Etiopiešu kalendārs + Gregora kalendārs + ebreju kalendārs + Indijas nacionālais kalendārs + islāma kalendārs + islāma pilsoņu kalendārs + ISO 8601 kalendārs + japāņu kalendārs + persiešu kalendārs + Ķīnas Republikas kalendārs + Kārtot simbolus + Kārtot, ignorējot simbolus + Kārtot diakritiskās zīmes parastā secībā + Kārtot diakritiskās zīmes apgrieztā secībā + Kārtot pēc pirmā mazā burta + Kārtot burtu reģistra parastā secībā + Kārtot pēc pirmā lielā burta + Kārtot reģistrnejutīgas rakstzīmes + Kārtot reģistrjutīgās rakstzīmes + Kārtot kana rakstzīmes atsevišķi + Kārtot kana rakstzīmes, norādot atšķirības + tradicionālās ķīniešu valodas kārtošanas secība - Big5 + Vārdnīcas kārtošanas secība + Noklusējuma unikoda kārtošanas secība + kārtošanas secība daudzvalodu Eiropas dokumentiem + vienkāršotās ķīniešu valodas kārtošanas secība - GB2312 + tālruņu grāmatas kārtošanas secība + Fonētiskā kārtošanas secība + piņjiņa kārtošanas secība + Reformētā kārtošanas secība + Vispārīga meklēšana + Meklēt pēc Hangul sākuma līdzskaņa + Standarta kārtošanas secība + Stroke kārtošanas secība + tradicionālā kārtošanas secība + Radikālā kārtošanas secība pēc vilkumu skaita + Kārtot bez normalizēšanas + Kārtot unikodu normalizējot + Kārtot ciparus atsevišķi + Kārtot ciparus skaitliskā secībā + Kārtot visus + Kārtot tikai pamata burtus + Kārtot diakritiskās zīmes/reģistrjutīgās rakstzīmes/rakstzīmes pēc platuma/Kana rakstzīmes + Kārtot diakritiskās zīmes + Kārtot diakritiskās zīmes/reģistrjutīgās rakstzīmes/rakstzīmes pēc platuma + 12 stundu sistēma (0–11) + 12 stundu sistēma (1–12) + 24 stundu sistēma (0–23) + 24 stundu sistēma (1–24) + Brīvais rindiņas pārtraukuma stils + Parastais rindiņas pārtraukuma stils + Stingrais rindiņas pārtraukuma stils + metriskā sistēma + britu mērvienību sistēma + amerikāņu mērvienību sistēma + Arābu-indiešu cipari + Izvērstie arābu-indiešu cipari + Armēņu cipari + Mazie armēņu cipari + Bengāļu cipari + Devanāgarī cipari + Etiopiešu cipari + Finanšu cipari + Pilna platuma cipari + Gruzīnu cipari + Grieķu cipari + Mazie grieķu cipari + Gudžaratu cipari + Gurmuki cipari + Ķīniešu decimāldaļskaitļi + Vienkāršotie ķīniešu cipari + Vienkāršotie ķīniešu cipari finanšu dokumentiem + Tradicionālie ķīniešu cipari + Tradicionālie ķīniešu cipari finanšu dokumentiem + Ivrita cipari + Japāņu cipari + Japāņu cipari finanšu dokumentiem + Khmeru cipari + Kannadu cipari + Laosiešu cipari + Arābu cipari + Malajalu cipari + Mongoļu cipari + Birmiešu cipari + Vietējie cipari + Oriju cipari + Romiešu cipari + Mazie romiešu cipari + Tamilu tradicionālie cipari + Tamilu cipari + Telugu cipari + Tajiešu cipari + Tibetiešu cipari + Tradicionālā ciparu sistēma + VAI cipari BGN @@ -1117,12 +1135,12 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} 'plkst.' {0} + {1} 'plkst'. {0} - {1} 'plkst.' {0} + {1} 'plkst'. {0} @@ -1137,6 +1155,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E, d. y. 'g'. G y. 'g'. MMM G @@ -1479,15 +1498,66 @@ For terms of use, see http://www.unicode.org/copyright.html + + pusnaktī + priekšp. + pusd. + pēcp. + no rīta + pēcpusd. + vakarā + naktī + + pusnaktī + priekšp. + pusd. + pēcp. + no rīta + pēcpusdienā + vakarā + naktī + + + pusnaktī + priekšpusdienā + pusdienlaikā + pēcpusdienā + no rīta + pēcpusdienā + vakarā + naktī + + + + + pusnakts + priekšp. + pēcpusd. + rīts + pēcpusdiena + vakars + nakts + + + pusnakts priekšp. pusd. pēcp. + rīts + pēcpusdiena + vakars + nakts - priekšpusdienā - pusdienlaikā - pēcpusdienā + pusnakts + priekšpusdienā + pusdienlaiks + pēcpusdiena + rīts + pēcpusdiena + vakars + nakts @@ -1590,6 +1660,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L dd.MM. E, dd.MM. @@ -1756,10 +1830,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Ēra + ēra - Gads + gads pagājušajā gadā šajā gadā nākamajā gadā @@ -1840,7 +1914,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Mēnesis + mēnesis pagājušajā mēnesī šajā mēnesī nākamajā mēnesī @@ -2076,10 +2150,10 @@ For terms of use, see http://www.unicode.org/copyright.html nāk. sestd. - Priekšpusdienā/pēcpusdienā + priekšpusdienā/pēcpusdienā - Stundas + stundas pēc {0} stundām pēc {0} stundas @@ -2118,7 +2192,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Minūtes + minūtes pēc {0} minūtēm pēc {0} minūtes @@ -2157,7 +2231,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Sekundes + sekundes tagad pēc {0} sekundēm @@ -2197,7 +2271,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Laika josla + laika josla @@ -3075,6 +3149,9 @@ For terms of use, see http://www.unicode.org/copyright.html Portmorsbi + + Bugeinvile + Manila @@ -3159,6 +3236,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutska + + Čita + Jakutska @@ -3177,6 +3257,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadana + + Sredņekolimska + Kamčatka @@ -4492,10 +4575,50 @@ For terms of use, see http://www.unicode.org/copyright.html - ¤#0.00 + #0.00 ¤ - ¤#0.00 + #0.00 ¤ + + + + + ¤0 tūkst'.' + ¤0 tūkst'.' + ¤0 tūkst'.' + ¤00 tūkst'.' + ¤00 tūkst'.' + ¤00 tūkst'.' + ¤000 tūkst'.' + ¤000 tūkst'.' + ¤000 tūkst'.' + ¤0 milj'.' + ¤0 milj'.' + ¤0 milj'.' + ¤00 milj'.' + ¤00 milj'.' + ¤00 milj'.' + ¤000 milj'.' + ¤000 milj'.' + ¤000 milj'.' + ¤0 mljrd'.' + ¤0 mljrd'.' + ¤0 mljrd'.' + ¤00 mljrd'.' + ¤00 mljrd'.' + ¤00 mljrd'.' + ¤000 mljrd'.' + ¤000 mljrd'.' + ¤000 mljrd'.' + ¤0 trilj'.' + ¤0 trilj'.' + ¤0 trilj'.' + ¤00 trilj'.' + ¤00 trilj'.' + ¤00 trilj'.' + ¤000 trilj'.' + ¤000 trilj'.' + ¤000 trilj'.' {0} {1} @@ -4590,6 +4713,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bosnijas un Hercogovinas marka Bosnijas un Hercogovinas markas BAM + KM Barbadosas dolārs @@ -4656,6 +4780,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bolīvijas boliviano Bolīvijas boliviano BOB + Bs Brazīlijas reāls @@ -4766,6 +4891,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kubas konvertējamais peso Kubas konvertējamie peso CUC + $ Kubas peso @@ -4791,6 +4917,7 @@ For terms of use, see http://www.unicode.org/copyright.html Čehijas krona Čehijas kronas CZK + Vācijas marka @@ -4808,6 +4935,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dānijas krona Dānijas kronas DKK + kr Dominikānas peso @@ -4833,6 +4961,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ēģiptes mārciņa Ēģiptes mārciņas EGP + Eritrejas nakfa @@ -4876,6 +5005,7 @@ For terms of use, see http://www.unicode.org/copyright.html Folklenda Salu mārciņa Folklenda Salu mārciņas FKP + £ Francijas franks @@ -4894,6 +5024,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gruzijas lari Gruzijas lari GEL + Ganas sedi @@ -4923,6 +5054,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gvinejas franks Gvinejas franki GNF + FG Grieķijas drahma @@ -4933,6 +5065,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gvatemalas ketsals Gvatemalas ketsali GTQ + Q Gajānas dolārs @@ -4956,6 +5089,7 @@ For terms of use, see http://www.unicode.org/copyright.html Hondurasas lempīra Hondurasas lempīras HNL + L Horvātijas kuna @@ -4963,6 +5097,7 @@ For terms of use, see http://www.unicode.org/copyright.html Horvātijas kuna Horvātijas kunas HRK + kn Haiti gurds @@ -4977,6 +5112,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ungārijas forints Ungārijas forinti HUF + Ft Indonēzijas rūpija @@ -5024,6 +5160,7 @@ For terms of use, see http://www.unicode.org/copyright.html Īslandes krona Īslandes kronas ISK + kr Itālijas lira @@ -5318,6 +5455,7 @@ For terms of use, see http://www.unicode.org/copyright.html Nikaragvas kordoba Nikaragvas kordobas NIO + C$ Nīderlandes guldenis @@ -5328,6 +5466,7 @@ For terms of use, see http://www.unicode.org/copyright.html Norvēģijas krona Norvēģijas kronas NOK + kr Nepālas rūpija @@ -5393,6 +5532,7 @@ For terms of use, see http://www.unicode.org/copyright.html Polijas zlots Polijas zloti PLN + Portugāles eskudo @@ -5438,6 +5578,7 @@ For terms of use, see http://www.unicode.org/copyright.html Krievijas rublis Krievijas rubļi RUB + Ruandas franks @@ -5481,6 +5622,7 @@ For terms of use, see http://www.unicode.org/copyright.html Zviedrijas krona Zviedrijas kronas SEK + kr Singapūras dolārs @@ -5496,6 +5638,7 @@ For terms of use, see http://www.unicode.org/copyright.html Sv.Helēnas salas mārciņa Sv.Helēnas salas mārciņas SHP + £ Slovēnijas tolars @@ -5688,6 +5831,7 @@ For terms of use, see http://www.unicode.org/copyright.html Venecuēlas bolivārs Venecuēlas bolivāri VEF + Bs Vjetnamas dongi @@ -5757,6 +5901,7 @@ For terms of use, see http://www.unicode.org/copyright.html Austrumkarību dolārs Austrumkarību dolāri EC$ + $ Speciālās aizņēmuma tiesības @@ -5868,6 +6013,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metrs sekundē kvadrātā {0} metri sekundē kvadrātā + + apgrieziens + {0} apgriezieni + {0} apgrieziens + {0} apgriezieni + + + radiāni + {0} radiāni + {0} radiāns + {0} radiāni + + + grādi + {0} grādi + {0} grāds + {0} grādi + leņķa minūtes {0} leņķa minūtes @@ -5880,23 +6043,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} leņķa sekunde {0} leņķa sekundes - - grādi - {0} grādi - {0} grāds - {0} grādi - - - radiāni - {0} radiāni - {0} radiāns - {0} radiāni - - - akri - {0} akri - {0} akrs - {0} akri + + kvadrātkilometri + {0} kvadrātkilometri + {0} kvadrātkilometrs + {0} kvadrātkilometri hektāri @@ -5904,11 +6055,37 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hektārs {0} hektāri + + kvadrātmetri + {0} kvadrātmetri + {0} kvadrātmetrs + {0} kvadrātmetri + {0} uz kvadrātmetru + kvadrātcentimetri {0} kvadrātcentimetri {0} kvadrātcentimetrs {0} kvadrātcentimetri + {0} uz kvadrātcentimetru + + + kvadrātjūdzes + {0} kvadrātjūdzes + {0} kvadrātjūdze + {0} kvadrātjūdzes + + + akri + {0} akri + {0} akrs + {0} akri + + + kvadrātjardi + {0} kvadrātjardi + {0} kvadrātjards + {0} kvadrātjardi kvadrātpēdas @@ -5921,30 +6098,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kvadrātcollas {0} kvadrātcolla {0} kvadrātcollas + {0} uz kvadrātcollu - - kvadrātkilometri - {0} kvadrātkilometri - {0} kvadrātkilometrs - {0} kvadrātkilometri - - - kvadrātmetri - {0} kvadrātmetri - {0} kvadrātmetrs - {0} kvadrātmetri - - - kvadrātjūdzes - {0} kvadrātjūdzes - {0} kvadrātjūdze - {0} kvadrātjūdzes - - - kvadrātjardi - {0} kvadrātjardi - {0} kvadrātjards - {0} kvadrātjardi + + karāti + {0} karāti + {0} karāts + {0} karāti litri uz kilometru @@ -5952,77 +6112,110 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litrs uz kilometru {0} litri uz kilometru + + litri uz 100 kilometriem + {0} litri uz 100 kilometriem + {0} litrs uz 100 kilometriem + {0} litri uz 100 kilometriem + jūdzes ar galonu {0} jūdzes ar galonu {0} jūdze ar galonu {0} jūdzes ar galonu - - biti - {0} biti - {0} bits - {0} biti - - - baiti - {0} baiti - {0} baits - {0} baiti - - - gigabiti - {0} gigabiti - {0} gigabits - {0} gigabiti - - - gigabaiti - {0} gigabaiti - {0} gigabaits - {0} gigabaiti - - - kilobiti - {0} kilobiti - {0} kilobits - {0} kilobiti - - - kilobaiti - {0} kilobaiti - {0} kilobaits - {0} kilobaiti - - - megabiti - {0} megabiti - {0} megabits - {0} megabiti - - - megabaiti - {0} megabaiti - {0} megabaits - {0} megabaits - - - terabiti - {0} terabiti - {0} terabits - {0} terabiti - terabaiti {0} terabaiti {0} terabaits {0} terabaiti + + terabiti + {0} terabiti + {0} terabits + {0} terabiti + + + gigabaiti + {0} gigabaiti + {0} gigabaits + {0} gigabaiti + + + gigabiti + {0} gigabiti + {0} gigabits + {0} gigabiti + + + megabaiti + {0} megabaiti + {0} megabaits + {0} megabaits + + + megabiti + {0} megabiti + {0} megabits + {0} megabiti + + + kilobaiti + {0} kilobaiti + {0} kilobaits + {0} kilobaiti + + + kilobiti + {0} kilobiti + {0} kilobits + {0} kilobiti + + + baiti + {0} baiti + {0} baits + {0} baiti + + + biti + {0} biti + {0} bits + {0} biti + + + gadsimti + {0} gadsimti + {0} gadsimts + {0} gadsimti + + + gadi + {0} gadi + {0} gads + {0} gadi + + + mēneši + {0} mēneši + {0} mēnesis + {0} mēneši + {0} mēnesī + + + nedēļas + {0} nedēļas + {0} nedēļa + {0} nedēļas + {0} nedēļā + dienas {0} dienas {0} diena {0} dienas + {0} dienā stundas @@ -6031,35 +6224,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} stundas {0} stundā - - mikrosekundes - {0} mikrosekundes - {0} mikrosekunde - {0} mikrosekundes - - - milisekundes - {0} milisekundes - {0} milisekunde - {0} milisekundes - minūtes {0} minūtes {0} minūte {0} minūtes - - - mēneši - {0} mēneši - {0} mēnesis - {0} mēneši - - - nanosekundes - {0} nanosekundes - {0} nanosekunde - {0} nanosekundes + {0}/minūtē sekundes @@ -6068,17 +6238,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sekundes {0} sekundē - - nedēļas - {0} nedēļas - {0} nedēļa - {0} nedēļas + + milisekundes + {0} milisekundes + {0} milisekunde + {0} milisekundes - - gadi - {0} gadi - {0} gads - {0} gadi + + mikrosekundes + {0} mikrosekundes + {0} mikrosekunde + {0} mikrosekundes + + + nanosekundes + {0} nanosekundes + {0} nanosekunde + {0} nanosekundes ampēri @@ -6104,6 +6280,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volts {0} volti + + kilokalorijas + {0} kilokalorijas + {0} kilokalorija + {0} kilokalorijas + kalorijas {0} kalorijas @@ -6116,24 +6298,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kalorija {0} kalorijas - - džouli - {0} džouli - {0} džouls - {0} džouli - - - kilokalorijas - {0} kilokalorijas - {0} kilokalorija - {0} kilokalorijas - kilodžouli {0} kilodžouli {0} kilodžouls {0} kilodžouli + + džouli + {0} džouli + {0} džouls + {0} džouli + kilovatstundas {0} kilovatstundas @@ -6146,11 +6322,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigahercs {0} gigaherci - - herci - {0} herci - {0} hercs - {0} herci + + megaherci + {0} megaherci + {0} megahercs + {0} megaherci kiloherci @@ -6158,23 +6334,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilohercs {0} kiloherci - - megaherci - {0} megaherci - {0} megahercs - {0} megaherci + + herci + {0} herci + {0} hercs + {0} herci - - astronomiskās vienības - {0} astronomiskās vienības - {0} astronomiskā vienība - {0} astronomiskās vienības + + kilometri + {0} kilometri + {0} kilometrs + {0} kilometri + {0} kilometrā - - centimetri - {0} centimetri - {0} centimetrs - {0} centimetri + + metri + {0} metri + {0} metrs + {0} metri + {0} metrā decimetri @@ -6182,47 +6360,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} decimetrs {0} decimetri - - pēdas - {0} pēdas - {0} pēda - {0} pēdas - - - collas - {0} collas - {0} colla - {0} collas - - - kilometri - {0} kilometri - {0} kilometrs - {0} kilometri - - - gaismas gadi - {0} gaismas gadi - {0} gaismas gads - {0} gaismas gadi - - - metri - {0} metri - {0} metrs - {0} metri - - - mikrometri - {0} mikrometri - {0} mikrometrs - {0} mikrometri - - - jūdzes - {0} jūdzes - {0} jūdze - {0} jūdzes + + centimetri + {0} centimetri + {0} centimetrs + {0} centimetri + {0} centimetrā milimetri @@ -6230,71 +6373,105 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milimetrs {0} milimetri + + mikrometri + {0} mikrometri + {0} mikrometrs + {0} mikrometri + nanometri {0} nanometri {0} nanometrs {0} nanometri - - jūras jūdzes - {0} jūras jūdzes - {0} jūras jūdze - {0} jūras jūdzes - - - parseki - {0} parseki - {0} parseks - {0} parseki - pikometri {0} pikometri {0} pikometrs {0} pikometri + + jūdzes + {0} jūdzes + {0} jūdze + {0} jūdzes + jardi {0} jardi {0} jards {0} jardi + + pēdas + {0} pēdas + {0} pēda + {0} pēdas + {0} pēdā + + + collas + {0} collas + {0} colla + {0} collas + {0} collā + + + parseki + {0} parseki + {0} parseks + {0} parseki + + + gaismas gadi + {0} gaismas gadi + {0} gaismas gads + {0} gaismas gadi + + + astronomiskās vienības + {0} astronomiskās vienības + {0} astronomiskā vienība + {0} astronomiskās vienības + + + jūras jūdzes + {0} jūras jūdzes + {0} jūras jūdze + {0} jūras jūdzes + + + skandināvu jūdze + {0} skandināvu jūdzes + {0} skandināvu jūdze + {0} skandināvu jūdzes + lukss {0} luksi {0} lukss {0} luksi - - karāti - {0} karāti - {0} karāts - {0} karāti - - - grami - {0} grami - {0} grams - {0} grami - - - kilogrami - {0} kilogrami - {0} kilograms - {0} kilogrami - metriskās tonnas {0} metriskās tonnas {0} metriskā tonna {0} metriskās tonnas - - mikrogrami - {0} mikrogrami - {0} mikrograms - {0} mikrogrami + + kilogrami + {0} kilogrami + {0} kilograms + {0} kilogrami + {0}/kg + + + grami + {0} grami + {0} grams + {0} grami + {0}/g miligrami @@ -6302,23 +6479,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} miligrams {0} miligrami - - unces - {0} unces - {0} unce - {0} unces - - - Trojas unces - {0} Trojas unces - {0} Trojas unce - {0} Trojas unces - - - mārciņas - {0} mārciņas - {0} mārciņa - {0} mārciņas + + mikrogrami + {0} mikrogrami + {0} mikrograms + {0} mikrogrami tonnas @@ -6326,35 +6491,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tonna {0} tonnas + + mārciņas + {0} mārciņas + {0} mārciņa + {0} mārciņas + {0}/mārc. + + + unces + {0} unces + {0} unce + {0} unces + {0}/unce + + + Trojas unces + {0} Trojas unces + {0} Trojas unce + {0} Trojas unces + + + karāti + {0} karāti + {0} karāts + {0} karāti + gigavati {0} gigavati {0} gigavats {0} gigavati - - zirgspēki - {0} zirgspēki - {0} zirgspēks - {0} zirgspēki - - - kilovati - {0} kilovati - {0} kilovats - {0} kilovati - megavati {0} megavati {0} megavats {0} megavati - - milivati - {0} milivati - {0} milivats - {0} milivati + + kilovati + {0} kilovati + {0} kilovats + {0} kilovati vati @@ -6362,24 +6541,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} vats {0} vati + + milivati + {0} milivati + {0} milivats + {0} milivati + + + zirgspēki + {0} zirgspēki + {0} zirgspēks + {0} zirgspēki + hektopaskāli {0} hektopaskāli {0} hektopaskāls {0} hektopaskāli - - dzīvsudraba staba collas - {0} dzīvsudraba staba collas - {0} dzīvsudraba staba colla - {0} dzīvsudraba staba collas - - - milibāri - {0} milibāri - {0} milibārs - {0} milibāri - dzīvsudraba staba milimetri {0} dzīvsudraba staba milimetri @@ -6392,11 +6571,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mārciņa uz kvadrātcollu {0} mārciņas uz kvadrātcollu - - karāti - {0} karāti - {0} karāts - {0} karāti + + dzīvsudraba staba collas + {0} dzīvsudraba staba collas + {0} dzīvsudraba staba colla + {0} dzīvsudraba staba collas + + + milibāri + {0} milibāri + {0} milibārs + {0} milibāri kilometri stundā @@ -6416,6 +6601,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} jūdze stundā {0} jūdzes stundā + + mezgls + {0} mezgli + {0} mezgls + {0} mezgli + + + ° + {0}° + {0}° + {0}° + Celsija grādi {0} Celsija grādi @@ -6434,36 +6631,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvins {0} kelvini - - akrpēdas - {0} akrpēdas - {0} akrpēda - {0} akrpēdas - - - centilitri - {0} centilitri - {0} centilitrs - {0} centilitri - - - kubikcentimetri - {0} kubikcentimetri - {0} kubikcentimetrs - {0} kubikcentimetri - - - kubikpēdas - {0} kubikpēdas - {0} kubikpēda - {0} kubikpēdas - - - kubikcollas - {0} kubikcollas - {0} kubikcolla - {0} kubikcollas - kubikkilometri {0} kubikkilometri @@ -6475,6 +6642,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubikmetri {0} kubikmetrs {0} kubikmetri + {0} uz kubikmetru + + + kubikcentimetri + {0} kubikcentimetri + {0} kubikcentimetrs + {0} kubikcentimetri + {0} uz kubikcentimetru kubikjūdzes @@ -6488,29 +6663,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubikjards {0} kubikjardi - - glāzes - {0} glāzes - {0} glāze - {0} glāzes + + kubikpēdas + {0} kubikpēdas + {0} kubikpēda + {0} kubikpēdas - - decilitri - {0} decilitri - {0} decilitrs - {0} decilitri + + kubikcollas + {0} kubikcollas + {0} kubikcolla + {0} kubikcollas - - šķidruma unces - {0} šķidruma unces - {0} šķidruma unce - {0} šķidruma unces - - - galoni - {0} galoni - {0} galons - {0} galoni + + megalitri + {0} megalitri + {0} megalitrs + {0} megalitri hektolitri @@ -6523,12 +6692,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litri {0} litrs {0} litri + {0} uz litru - - megalitri - {0} megalitri - {0} megalitrs - {0} megalitri + + decilitri + {0} decilitri + {0} decilitrs + {0} decilitri + + + centilitri + {0} centilitri + {0} centilitrs + {0} centilitri mililitri @@ -6536,11 +6712,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mililitrs {0} mililitri - - pintes - {0} pintes - {0} pinte - {0} pintes + + metriskās pintes + {0} metriskās pintes + {0} metriskā pinte + {0} metriskās pintes + + + akrpēdas + {0} akrpēdas + {0} akrpēda + {0} akrpēdas + + + galoni + {0} galoni + {0} galons + {0} galoni + {0}/gal. kvartas @@ -6548,6 +6737,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kvarta {0} kvartas + + pintes + {0} pintes + {0} pinte + {0} pintes + + + glāzes + {0} glāzes + {0} glāze + {0} glāzes + + + šķidruma unces + {0} šķidruma unces + {0} šķidruma unce + {0} šķidruma unces + ēdamkarotes {0} ēdamkarotes @@ -6560,6 +6767,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tējkarote {0} tējkarotes + + {0}A + {0}Z + {0}D + {0}R + @@ -6577,6 +6790,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + apgr. + {0} apgr. + {0} apgr. + {0} apgr. + + + rad + {0} rad + {0} rad + {0} rad + + + ° + {0}° + {0}° + {0}° + {0}′ @@ -6589,23 +6820,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - ° - {0}° - {0}° - {0}° - - - rad - {0} rad - {0} rad - {0} rad - - - ac - {0} ac - {0} ac - {0} ac + + km² + {0} km² + {0} km² + {0} km² ha @@ -6613,11 +6832,37 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha + + + {0} m² + {0} m² + {0} m² + {0} uz m² + cm² {0} cm² {0} cm² {0} cm² + {0} uz cm² + + + mi² + {0} mi² + {0} mi² + {0} mi² + + + ac + {0} ac + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² + {0} yd² ft² @@ -6630,30 +6875,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² {0} in² + {0} uz collu² - - km² - {0} km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt + {0} kt l/km @@ -6661,77 +6889,111 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l/km {0} l/km + + l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km + mpg {0} mpg {0} mpg {0} mpg - - b - {0} b - {0} b - {0} b - - - B - {0} B - {0} B - {0} B - - - Gb - {0} Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - {0} GB - - - Kb - {0} Kb - {0} Kb - {0} Kb - - - KB - {0} KB - {0} KB - {0} KB - - - Mb - {0} Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + {0} Mb + + + KB + {0} KB + {0} KB + {0} KB + + + Kb + {0} Kb + {0} Kb + {0} Kb + + + B + {0} B + {0} B + {0} B + + + b + {0} b + {0} b + {0} b + + + gs. + {0} gs. + {0} gs. + {0} gs. + + + g. + {0} g. + {0} g. + {0} g. + {0}/g. + + + mēneši + {0} mēn. + {0} mēn. + {0} mēn. + {0}/mēn. + + + ned. + {0} ned. + {0} ned. + {0} ned. + {0}/ned. + d. {0} d. {0} d. {0} d. + {0}/d. st. @@ -6740,35 +7002,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} st. {0}/st. - - μs - {0} μs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - {0} ms - min. {0} min. {0} min. {0} min. - - - mēneši - {0} mēn. - {0} mēn. - {0} mēn. - - - ns - {0} ns - {0} ns - {0} ns + {0}/min. sek. @@ -6777,17 +7016,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sek. {0}/sek. - - ned. - {0} ned. - {0} ned. - {0} ned. + + ms + {0} ms + {0} ms + {0} ms - - g. - {0} g. - {0} g. - {0} g. + + μs + {0} μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns + {0} ns A @@ -6813,6 +7058,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + {0} kcal + cal {0} cal @@ -6825,24 +7076,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cal {0} cal - - J - {0} J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ {0} kJ + + J + {0} J + {0} J + {0} J + kWh {0} kWh @@ -6855,11 +7100,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz + {0} MHz kHz @@ -6867,23 +7112,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz + {0} Hz - - a.v. - {0} a.v. - {0} a.v. - {0} a.v. + + kilometri + {0} km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm - {0} cm + + m + {0} m + {0} m + {0} m + {0}/m dm @@ -6891,47 +7138,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dm {0} dm - - ft - {0} ft - {0} ft - {0} ft - - - c. - {0} c. - {0} c. - {0} c. - - - kilometri - {0} km - {0} km - {0} km - - - g.g. - {0} g.g. - {0} g.g. - {0} g.g. - - - m - {0} m - {0} m - {0} m - - - µm - {0} µm - {0} µm - {0} µm - - - mi - {0} mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0} cm + {0}/cm mm @@ -6939,71 +7151,105 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mm {0} mm + + µm + {0} µm + {0} µm + {0} µm + nm {0} nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - {0} nmi - - - pc - {0} pc - {0} pc - {0} pc - pm {0} pm {0} pm {0} pm + + mi + {0} mi + {0} mi + {0} mi + yd {0} yd {0} yd {0} yd + + ft + {0} ft + {0} ft + {0} ft + {0}/pēda + + + c. + {0} c. + {0} c. + {0} c. + {0}/colla + + + pc + {0} pc + {0} pc + {0} pc + + + g.g. + {0} g.g. + {0} g.g. + {0} g.g. + + + a.v. + {0} a.v. + {0} a.v. + {0} a.v. + + + nmi + {0} nmi + {0} nmi + {0} nmi + + + skandināvu jūdze + {0} skandināvu jūdzes + {0} skandināvu jūdze + {0} skandināvu jūdzes + lx {0} lx {0} lx {0} lx - - CD - {0} CD - {0} CD - {0} CD - - - g - {0} g - {0} g - {0} g - - - kg - {0} kg - {0} kg - {0} kg - t {0} t {0} t {0} t - - µg - {0} µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0} kg + {0}/kg + + + g + {0} g + {0} g + {0} g + {0}/g mg @@ -7011,23 +7257,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mg {0} mg - - oz - {0} oz - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb - {0} lb + + µg + {0} µg + {0} µg + {0} µg tonnas @@ -7035,35 +7269,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tonna {0} tonnas + + lb + {0} lb + {0} lb + {0} lb + {0}/mārc. + + + oz + {0} oz + {0} oz + {0} oz + {0}/unce + + + oz t + {0} oz t + {0} oz t + {0} oz t + + + CD + {0} CD + {0} CD + {0} CD + GW {0} GW {0} GW {0} GW - - ZS - {0} ZS - {0} ZS - {0} ZS - - - kW - {0} kW - {0} kW - {0} kW - MW {0} MW {0} MW {0} MW - - mW - {0} mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW + {0} kW W @@ -7071,24 +7319,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + mW + {0} mW + {0} mW + {0} mW + + + ZS + {0} ZS + {0} ZS + {0} ZS + hPa {0} hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - {0} mbar - mmHg {0} mmHg @@ -7101,11 +7349,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kt - {0} kt - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar + {0} mbar km/st. @@ -7125,6 +7379,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + mezgls + {0} mezgli + {0} mezgls + {0} mezgli + + + ° + {0}° + {0}° + {0}° + °C {0} °C @@ -7143,36 +7409,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - {0} ac ft - - - cl - {0} cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -7184,6 +7420,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -7197,29 +7441,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - gl. - {0} gl. - {0} gl. - {0} gl. + + ft³ + {0} ft³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl - {0} dl + + in³ + {0} in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML + {0} ML hl @@ -7232,12 +7470,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l {0} l + {0}/l - - ML - {0} ML - {0} ML - {0} ML + + dl + {0} dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl + {0} cl ml @@ -7245,11 +7490,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ml {0} ml - - pt - {0} pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + {0} mpt + + + metr.gl. + {0} metr.gl. + {0} metr.gl. + {0} metr.gl. + + + ac ft + {0} ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0} gal + {0}/gal. qt @@ -7257,6 +7521,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} qt {0} qt + + pt + {0} pt + {0} pt + {0} pt + + + gl. + {0} gl. + {0} gl. + {0} gl. + + + fl oz + {0} fl oz + {0} fl oz + {0} fl oz + ĒK {0} ĒK @@ -7269,6 +7551,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} TK {0} TK + + {0}A + {0}Z + {0}D + {0}R + @@ -7279,6 +7567,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}G {0}G + + {0}° + {0}° + {0}° + {0}′ {0}′ @@ -7289,31 +7582,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - {0}° - - - {0}ac - {0}ac - {0}ac + + {0}km² + {0}km² + {0}km² {0}ha {0}ha {0}ha - - {0}ft² - {0}ft² - {0}ft² - - - {0}km² - {0}km² - {0}km² - {0}m² {0}m² @@ -7324,6 +7602,40 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mi² {0}mi² + + {0}ac + {0}ac + {0}ac + + + {0}ft² + {0}ft² + {0}ft² + + + l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km + + + g. + {0}g. + {0}g. + {0}g. + + + mēn. + {0} mēn. + {0} mēn. + {0} mēn. + + + ned. + {0} ned. + {0} ned. + {0} ned. + d. {0}d @@ -7336,57 +7648,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0}h {0}h - - ms - {0}ms - {0}ms - {0}ms - min {0} min {0} min {0} min - - mēn. - {0} mēn. - {0} mēn. - {0} mēn. - s {0}s {0}s {0}s - - ned. - {0} ned. - {0} ned. - {0} ned. - - - g. - {0}g. - {0}g. - {0}g. - - - cm - {0}cm - {0}cm - {0}cm - - - {0}ft - {0}ft - {0}ft - - - {0}in - {0}in - {0}in + + ms + {0}ms + {0}ms + {0}ms km @@ -7394,22 +7672,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0}km {0}km - - g.g. - {0}g.g. - {0}g.g. - {0}g.g. - m {0}m {0}m {0}m - - {0}mi - {0}mi - {0}mi + + cm + {0}cm + {0}cm + {0}cm mm @@ -7422,16 +7695,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0}pm {0}pm + + {0}mi + {0}mi + {0}mi + {0}yd {0}yd {0}yd - - g - {0}g - {0}g - {0}g + + {0}ft + {0}ft + {0}ft + + + {0}in + {0}in + {0}in + + + g.g. + {0}g.g. + {0}g.g. + {0}g.g. kg @@ -7439,20 +7727,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0}kg {0}kg - - {0}oz - {0}oz - {0}oz + + g + {0}g + {0}g + {0}g {0}lb {0}lb {0}lb - - {0} ZS - {0} ZS - {0} ZS + + {0}oz + {0}oz + {0}oz {0}kW @@ -7464,6 +7753,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}W {0}W + + {0} ZS + {0} ZS + {0} ZS + {0}hPa {0}hPa @@ -7522,6 +7816,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}l {0}l + + {0}A + {0}Z + {0}D + {0}R + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lv_LV.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lv_LV.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lv_LV.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lv_LV.xml index ad6761cc5eb..be283190449 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/lv_LV.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/lv_LV.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mas.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mas.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mas.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mas.xml index 7a5d4b40757..426be014eb7 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mas.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mas.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antili za Uholanzi Angola Ajentina Samoa ya Marekani @@ -435,6 +433,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Ɛnkakɛnyá + Ɛndámâ + Ɛnkakɛnyá Ɛndámâ @@ -476,22 +478,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -571,6 +573,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mas_KE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mas_KE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mas_KE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mas_KE.xml index 71baaee3c45..db770291677 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mas_KE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mas_KE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mas_TZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mas_TZ.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mas_TZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mas_TZ.xml index 096164a82d4..ccffd10f8e8 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mas_TZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mas_TZ.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mer.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mer.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mer.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mer.xml index 2035cc9475e..eda88b2b568 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mer.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mer.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Alubania Armenia - Antili cia Holandi Angola Ajentina Samoa ya Amerika @@ -441,6 +439,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + + ŨG + ŨG @@ -482,22 +484,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -577,6 +579,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤00K + ¤000K + ¤0M + ¤00M + ¤000M + ¤0G + ¤00G + ¤000G + ¤0T + ¤00T + ¤000T + + @@ -754,3 +772,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mer_KE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mer_KE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mer_KE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mer_KE.xml index 1dd136e0ca1..f855872f23a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mer_KE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mer_KE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mfe.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mfe.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mfe.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mfe.xml index 72a9695dc36..4cc60977e43 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mfe.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mfe.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albani Armeni - Antiy neerlande Angola Larzantinn Samoa amerikin @@ -567,6 +565,24 @@ For terms of use, see http://www.unicode.org/copyright.html   + + + + ¤ 0K + ¤ 00K + ¤ 000K + ¤ 0M + ¤ 00M + ¤ 000M + ¤ 0G + ¤ 00G + ¤ 000G + ¤ 0T + ¤ 00T + ¤ 000T + + + dirham Emira arab ini diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mfe_MU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mfe_MU.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mfe_MU.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mfe_MU.xml index 433450b3307..2edfb3460dd 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mfe_MU.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mfe_MU.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mg.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mg.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mg.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mg.xml index f7571b95c14..b1b141a1f9a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mg.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mg.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Vondronosy karaiba holandey Angola Arzantina Samoa amerikanina @@ -567,6 +565,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00 + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mg_MG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mg_MG.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mg_MG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mg_MG.xml index 5525b88db50..8753c6562a2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mg_MG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mg_MG.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mgh.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mgh.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mgh.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mgh.xml index d79b7844b34..d34e41c4ce6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mgh.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mgh.xml @@ -1,13 +1,12 @@ - - - + @@ -338,6 +337,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + wichishu + mchochil’l + wichishu mchochil’l @@ -379,22 +382,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -464,6 +467,24 @@ For terms of use, see http://www.unicode.org/copyright.html , . + + + + ¤ 0K + ¤ 00K + ¤ 000K + ¤ 0M + ¤ 00M + ¤ 000M + ¤ 0G + ¤ 00G + ¤ 000G + ¤ 0T + ¤ 00T + ¤ 000T + + + MTn diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mgh_MZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mgh_MZ.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mgh_MZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mgh_MZ.xml index 91d19ed999f..5132394ec09 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mgh_MZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mgh_MZ.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mgo.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mgo.xml similarity index 88% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mgo.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mgo.xml index 8fcf2eee863..49cd2f4f9a6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mgo.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mgo.xml @@ -1,13 +1,12 @@ - - - + @@ -25,8 +24,8 @@ For terms of use, see http://www.unicode.org/copyright.html aba aben tisɔ̀ - ngàb mə̀kala - inu + ngàb mə̀kala + inu {0} @@ -275,6 +274,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + AM + PM + AM PM @@ -492,6 +495,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0M + ¤ 0M + ¤ 00M + ¤ 00M + ¤ 000M + ¤ 000M + ¤ 0G + ¤ 0G + ¤ 00G + ¤ 00G + ¤ 000G + ¤ 000G + ¤ 0T + ¤ 0T + ¤ 00T + ¤ 00T + ¤ 000T + ¤ 000T + + {0} {1} {0} {1} @@ -507,6 +538,11 @@ For terms of use, see http://www.unicode.org/copyright.html + + m + {0} m + {0} m + d {0} d @@ -522,11 +558,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} min {0} min - - m - {0} m - {0} m - s {0} s @@ -534,6 +565,9 @@ For terms of use, see http://www.unicode.org/copyright.html + + m + d @@ -543,9 +577,6 @@ For terms of use, see http://www.unicode.org/copyright.html min - - m - s @@ -558,3 +589,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mgo_CM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mgo_CM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mgo_CM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mgo_CM.xml index f8c493ffad1..ec52d2d08be 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mgo_CM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mgo_CM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mk.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mk.xml similarity index 90% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mk.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mk.xml index 7d4364f038c..1bdc7d7471b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mk.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mk.xml @@ -1,13 +1,12 @@ - - - + @@ -59,7 +58,6 @@ For terms of use, see http://www.unicode.org/copyright.html ајмарски азербејџански азерски - јужноазербејџански башкирски белуџиски балиски @@ -76,6 +74,7 @@ For terms of use, see http://www.unicode.org/copyright.html бафут бадага бугарски + западен балочи боџпури бислама биколски @@ -117,7 +116,7 @@ For terms of use, see http://www.unicode.org/copyright.html чипевјански черокиски чејенски - сорански курдски + централен курдски корзикански коптски капизнон @@ -243,7 +242,7 @@ For terms of use, see http://www.unicode.org/copyright.html индонезиски окцидентал игбо - носу + сичуан ји инупијачки илокански ингушки @@ -311,7 +310,7 @@ For terms of use, see http://www.unicode.org/copyright.html кутенајски коми корнски - киргиски + киргистански латински ладино ланги @@ -330,6 +329,7 @@ For terms of use, see http://www.unicode.org/copyright.html лаошки монго лози + севернолуриски литвански латгалски луба-катанга @@ -397,6 +397,7 @@ For terms of use, see http://www.unicode.org/copyright.html ниуејски ао холандски + фламански квазио норвешки нинорск нгиембун @@ -481,6 +482,7 @@ For terms of use, see http://www.unicode.org/copyright.html шкотски германски синди сасарски сардински + јужнокурдски севернолапонски сенека сена @@ -523,8 +525,8 @@ For terms of use, see http://www.unicode.org/copyright.html сумерски шведски свахили + конгоански свахили коморијански - конгоански свахили класичен сириски сириски шлезиски @@ -591,6 +593,7 @@ For terms of use, see http://www.unicode.org/copyright.html воламо варајски вашо + варлпири волофски ву калмички @@ -826,7 +829,6 @@ For terms of use, see http://www.unicode.org/copyright.html Ангвила Албанија Ерменија - Холандски Антили Ангола Антарктик Аргентина @@ -866,7 +868,7 @@ For terms of use, see http://www.unicode.org/copyright.html Конго (Република) Швајцарија Брегот на Слоновата Коска - Брег на Слоновата Коска + Брег на Слонова Коска Кукови Острови Чиле Камерун @@ -1080,7 +1082,7 @@ For terms of use, see http://www.unicode.org/copyright.html Американски Девствени Острови Виетнам Вануату - Волис и Футуна + Валис и Футуна Самоа Косово Јемен @@ -1098,68 +1100,81 @@ For terms of use, see http://www.unicode.org/copyright.html Календар Подредување Валута + Часовен циклус (12 или 24) + Стил за разделување редови + Мерен систем Броеви - Арапски-индиски цифри - Проширени арапско-индиски цифри - Ерменски броеви - Ерменски мали броеви - Бенгалски цифри - Традиционално кинеско сортирање - Будистички календар - Кинески календар - Коптски календар - Дангиски календар - деванагарски цифри - Стандардно сортирање во уникод - Етиопски броеви - Етиопски календар - Етиопски Амет Алем календар - Цифри со целосна ширина - Поедноставено кинеско сортирање - Грузиски броеви - Грегоријански календар - Грчки броеви - Грчки мали броеви - Гуџарати цифри - Гурмуки цифри - Кинески децимални броеви - Поедноставени кинески броеви - Поедноставени кинески финансиски броеви - Традиционални кинески броеви - Традиционални кинески финансиски броеви - Хебрејски броеви - Еврејски календар - Индиски национален календар - Исламски календар - Исламски граѓански календар - Календар ISO-8601 - Јапонски календар - Јапонски броеви - Јапонски финансиски броеви - Кмерски цифри - Канада цифри - Лаошки цифри - Арапски броеви - Малајаламски цифри - Мјанмарски цифри - Оријски цифри - Персиски календар - Азбучен редослед - Сортирање Pinyin - Календар на Република Кина - Римски броеви - Римски мали броеви - Општо пребарување - Стандардно сортирање - Ритмички редослед - Традиционални тамилски броеви - Тамилски цифри - Телугу цифри - Тајландски цифри - Тибетски цифри - Традиционално сортирање + Будистички календар + Кинески календар + Коптски календар + Дангиски календар + Етиопски календар + Етиопски Амет Алем календар + Грегоријански календар + Еврејски календар + Индиски национален календар + Исламски календар + Исламски граѓански календар + Календар ISO-8601 + Јапонски календар + Персиски календар + Мингуо-календар + Традиционално кинеско сортирање + Стандардно сортирање во уникод + Поедноставено кинеско сортирање + Азбучен редослед + Сортирање Pinyin + Општо пребарување + Стандардно сортирање + Ритмички редослед + Традиционално сортирање + 12-часовен систем (0-11) + 12-часовен систем (1-12) + 24-часовен систем (0-23) + 24-часовен систем (1-24) + Допустлив стил за разделување редови + Нормален стил за разделување редови + Строг стил за разделување редови + Метрички систем + Империјален мерен систем + Американски мерен систем + Арапско-индиски цифри + Проширени арапско-индиски цифри + Ерменски броеви + Ерменски мали броеви + Бенгалски цифри + деванагарски цифри + Етиопски броеви + Цифри со целосна ширина + Грузиски броеви + Грчки броеви + Грчки мали броеви + Гуџарати цифри + Гурмуки цифри + Кинески децимални броеви + Поедноставени кинески броеви + Поедноставени кинески финансиски броеви + Традиционални кинески броеви + Традиционални кинески финансиски броеви + Хебрејски броеви + Јапонски броеви + Јапонски финансиски броеви + Кмерски цифри + Канада цифри + Лаошки цифри + Арапски броеви + Малајаламски цифри + Мјанмарски цифри + Оријски цифри + Римски броеви + Римски мали броеви + Традиционални тамилски броеви + Тамилски цифри + Телугу цифри + Тајландски цифри + Тибетски цифри метрички @@ -1239,6 +1254,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + E d E y 'г'. G MMM y 'г'. G @@ -1584,15 +1600,73 @@ For terms of use, see http://www.unicode.org/copyright.html - - прет. - напл. - попл. - - + + полноќ претпладне на пладне попладне + наутро + претпладне + попладне + навечер + ноќе + + + полн. + прет. + напл. + попл. + утро + прет. + попл. + веч. + полн. + + + полноќ + претпладне + на пладне + попладне + наутро + претпладне + попладне + навечер + по полноќ + + + + + полноќ + претпладне + пладне + попладне + наутро + претпладне + попладне + навечер + по полноќ + + + полноќ + прет. + пладне + попл. + наутро + претпладне + попладне + навечер + по полноќ + + + на полноќ + претпладне + напладне + попладне + наутро + претпладне + попладне + навечер + по полноќ @@ -1607,7 +1681,7 @@ For terms of use, see http://www.unicode.org/copyright.html н.е. - пр. н.е. + пр.н.е. н.е. @@ -1679,7 +1753,7 @@ For terms of use, see http://www.unicode.org/copyright.html d ccc - E, d + d E E h:mm a E HH:mm E h:mm:ss a @@ -1694,6 +1768,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d.M dd.M @@ -1821,7 +1899,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Ера + ера година @@ -1839,6 +1917,9 @@ For terms of use, see http://www.unicode.org/copyright.html год. + минатата година + оваа година + следната година за {0} година за {0} години @@ -1850,13 +1931,16 @@ For terms of use, see http://www.unicode.org/copyright.html год. + минатата година + оваа година + следната година - За {0} години - За {0} години + за {0} години + за {0} години - Пред {0} години - Пред {0} години + пред {0} години + пред {0} години @@ -1873,11 +1957,11 @@ For terms of use, see http://www.unicode.org/copyright.html тромес. - за {0} тромесечје + за {0} тромес. за {0} тромесечја - пред {0} тромесечје + пред {0} тромес. пред {0} тромесечја @@ -1893,7 +1977,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Месец + месец минатиот месец овој месец следниот месец @@ -1908,6 +1992,9 @@ For terms of use, see http://www.unicode.org/copyright.html мес. + минатиот месец + овој месец + следниот месец за {0} месец за {0} месеци @@ -1919,6 +2006,9 @@ For terms of use, see http://www.unicode.org/copyright.html мес. + минатиот месец + овој месец + следниот месец за {0} месец за {0} месеци @@ -1929,7 +2019,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Недела + недела минатата седмица оваа седмица следната седмица @@ -1944,6 +2034,9 @@ For terms of use, see http://www.unicode.org/copyright.html сед. + минатата седмица + оваа седмица + следната седмица за {0} седмица за {0} седмици @@ -1955,6 +2048,9 @@ For terms of use, see http://www.unicode.org/copyright.html сед. + минатата седмица + оваа седмица + следната седмица за {0} седмица за {0} седмици @@ -1982,6 +2078,11 @@ For terms of use, see http://www.unicode.org/copyright.html ден + завчера + вчера + денес + утре + задутре за {0} ден за {0} дена @@ -1993,6 +2094,11 @@ For terms of use, see http://www.unicode.org/copyright.html ден + завчера + вчера + денес + утре + задутре за {0} ден за {0} дена @@ -2003,7 +2109,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Ден во неделата + ден во неделата минатата недела @@ -2041,7 +2147,7 @@ For terms of use, see http://www.unicode.org/copyright.html следниот вторник - минатиот вторник + мин. вт. овој вторник следниот вторник @@ -2114,7 +2220,7 @@ For terms of use, see http://www.unicode.org/copyright.html претпладне/попладне - Час + час за {0} час за {0} часа @@ -2147,7 +2253,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Минута + минута за {0} минута за {0} минути @@ -2180,7 +2286,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Секунда + секунда сега за {0} секунда @@ -2214,7 +2320,7 @@ For terms of use, see http://www.unicode.org/copyright.html - зона + временска зона @@ -2226,7 +2332,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} (+0) {1} ({0}) - Непознато + Непознат град Андора @@ -2794,7 +2900,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Ирско летно време + Ирско стандардно време Даблин @@ -3092,6 +3198,9 @@ For terms of use, see http://www.unicode.org/copyright.html Порт Морсби + + Буганвил + Манила @@ -3176,6 +3285,9 @@ For terms of use, see http://www.unicode.org/copyright.html Иркутск + + Чита + Јакутск @@ -3194,6 +3306,9 @@ For terms of use, see http://www.unicode.org/copyright.html Магадан + + Среднеколимск + Камчатка @@ -3315,7 +3430,7 @@ For terms of use, see http://www.unicode.org/copyright.html Дар ес Салам - Ужгород + Ужхород Киев @@ -4491,6 +4606,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0 илј'.' + ¤ 0 илј'.' + ¤ 00 илј'.' + ¤ 00 илј'.' + ¤ 000 илј'.' + ¤ 000 илј'.' + ¤ 0 мил'.' + ¤ 0 мил'.' + ¤ 00 мил'.' + ¤ 00 мил'.' + ¤ 000 М + ¤ 000 М + ¤ 0 милј'.' + ¤ 0 милј'.' + ¤ 00 милј'.' + ¤ 00 милј'.' + ¤ 000 мј'.' + ¤ 000 милј'.' + ¤ 0 трил'.' + ¤ 0 трил'.' + ¤ 00 трил'.' + ¤ 00 трил'.' + ¤ 000 трил'.' + ¤ 000 трил'.' + + {0} {1} {0} {1} @@ -4514,9 +4657,9 @@ For terms of use, see http://www.unicode.org/copyright.html AFN - Албански Лек - Албански Лек - Албански Лек + Албански лек + Албански лек + Албански леки ALL @@ -4534,8 +4677,9 @@ For terms of use, see http://www.unicode.org/copyright.html Анголска Кванза Анголска Кванза - Анголска Кванза + Анголски кванзи AOA + Kz Анголска Кванза (1977–1990) @@ -4581,12 +4725,13 @@ For terms of use, see http://www.unicode.org/copyright.html Босанско-Херцеговска конвертибилна марка Босанско-Херцеговска конвертибилна марка - Босанско-Херцеговска конвертибилна марка + Босанско-Херцеговски конвертибилни марки BAM + KM Барбадоски долар - Барбадоски Долар + Барбадоски долар Барбадоски долари BBD $ @@ -4623,9 +4768,9 @@ For terms of use, see http://www.unicode.org/copyright.html BHD - Бурундиски Франк - Бурундиски Франк - Бурундиски Франк + Бурундиски франк + Бурундиски франк + Бурундиски франци BIF @@ -4647,6 +4792,7 @@ For terms of use, see http://www.unicode.org/copyright.html Боливиски боливиани Боливиски боливиани BOB + Bs Бразилски реал @@ -4673,14 +4819,15 @@ For terms of use, see http://www.unicode.org/copyright.html Боцванска Пула Боцванска Пула BWP + P Белоруска нова рубља (1994–1999) Белоруска рубља - Белоруска Рубља - Белоруска Рубља + Белоруска рубља + Белоруски рубљи BYR р. @@ -4707,7 +4854,7 @@ For terms of use, see http://www.unicode.org/copyright.html Швајцарски Франк Швајцарски Франк - Швајцарски Франк + Швајцарски франци CHF @@ -4746,6 +4893,7 @@ For terms of use, see http://www.unicode.org/copyright.html Кубански пезос (конвертибилен) Кубански пезоси (конвертибилни) CUC + $ Кубански пезос @@ -4768,6 +4916,7 @@ For terms of use, see http://www.unicode.org/copyright.html Чешка корона Чешка корона CZK + Германска Марка @@ -4783,6 +4932,7 @@ For terms of use, see http://www.unicode.org/copyright.html Данска круна Данска круна DKK + kr Доминикански Пезос @@ -4792,20 +4942,21 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Алжирски Динар - Алжирски Динар - Алжирски Динар + Алжирски динар + Алжирски динар + Алжирски динари DZD - Египетска Фунта - Египетска Фунта - Египетска Фунта + Египетска фунта + Египетска фунта + Египетски фунти EGP + - Еритрејска Накфа - Еритрејска Накфа + Еритрејска накфа + Еритрејска накфа Еритрејски Накфи ERN @@ -4813,9 +4964,9 @@ For terms of use, see http://www.unicode.org/copyright.html Шпанска Пезета - Етиописки Бир - Етиописки Бир - Етиописки Бир + Етиописки бир + Етиописки бир + Етиописки бири ETB @@ -4840,6 +4991,7 @@ For terms of use, see http://www.unicode.org/copyright.html Фолкландски фунти Фолкландски фунти FKP + £ Француски франк @@ -4847,7 +4999,7 @@ For terms of use, see http://www.unicode.org/copyright.html Британска Фунта Британска Фунта - Британска Фунта + Британски фунти GBP £ @@ -4856,6 +5008,7 @@ For terms of use, see http://www.unicode.org/copyright.html Грузиски лари Грузиски лари GEL + Ганајски Седи @@ -4869,7 +5022,7 @@ For terms of use, see http://www.unicode.org/copyright.html Гибралтарска фунта Гибралтарска фунта - Гибралтарска фунта + Гибралтарски фунти GIP £ @@ -4882,8 +5035,9 @@ For terms of use, see http://www.unicode.org/copyright.html Гвинејски франк Гвинејски франк - Гвинејски франк + Гвинејски франци GNF + FG Грчка драхма @@ -4893,6 +5047,7 @@ For terms of use, see http://www.unicode.org/copyright.html Гватемалски кветцал Гватемалски кветцал GTQ + Q Гвинејски Бисау пезос @@ -4916,15 +5071,17 @@ For terms of use, see http://www.unicode.org/copyright.html Хондурски лемпири Хондурски лемпири HNL + L Хрватски динар - Хрватска Куна - Хрватска Куна - Хрватска Куна + Хрватска куна + Хрватска куна + Хрватски куни HRK + kn Хаитски гурд @@ -4937,12 +5094,14 @@ For terms of use, see http://www.unicode.org/copyright.html Унгарска форинта Унгарска форинта HUF + Ft Индонезиска рупија Индонезиска рупија Индонезиска рупија IDR + Rp Ирска фунта @@ -4979,8 +5138,9 @@ For terms of use, see http://www.unicode.org/copyright.html Исландска крона Исландска крона - Исландска крона + Исландски крони ISK + kr Италијанска лира @@ -5008,7 +5168,7 @@ For terms of use, see http://www.unicode.org/copyright.html Кениски шилинг Кениски шилинг - Кениски шилинг + Кениски шилинзи KES @@ -5025,16 +5185,18 @@ For terms of use, see http://www.unicode.org/copyright.html - Коморски долар - Коморски долар - Коморски долар + Коморски франк + Коморски франк + Коморски франци KMF + CF Северно корејски вон Северно корејски вон Северно корејски вон KPW + Јужно корејски вон @@ -5075,12 +5237,14 @@ For terms of use, see http://www.unicode.org/copyright.html Либанска фунта Либанска фунта LBP + Шриланканска рупија Шриланканска рупија Шриланканска рупија LKR + Rs Либериски долар @@ -5116,13 +5280,13 @@ For terms of use, see http://www.unicode.org/copyright.html Либијски динар Либијски динар - Либијски динар + Либијски динари LYD Марокански Дирхам Марокански Дирхам - Марокански Дирхам + Марокански дирхами MAD @@ -5139,11 +5303,12 @@ For terms of use, see http://www.unicode.org/copyright.html Малагасиски ариари Малагасиски ариари MGA + Ar Македонски денар Македонски денар - Македонски денар + Македонски денари ден @@ -5154,6 +5319,7 @@ For terms of use, see http://www.unicode.org/copyright.html Мјанмарски киат Мјанмарски киати MMK + K Монголиски тугрик @@ -5185,6 +5351,7 @@ For terms of use, see http://www.unicode.org/copyright.html Мавританска рупија Мавритански рупии MUR + Rs Малдивиска руфија @@ -5213,6 +5380,7 @@ For terms of use, see http://www.unicode.org/copyright.html Малазиски рингит Малазиски рингит MYR + RM Мозамбиско ескудо @@ -5222,8 +5390,8 @@ For terms of use, see http://www.unicode.org/copyright.html Мозамбиски метикал - Мозамбиски метикали - Мозамбиски метикал + Мозамбиски метикал + Мозамбиски метикали MZN @@ -5236,7 +5404,7 @@ For terms of use, see http://www.unicode.org/copyright.html Нигериска наира Нигериска наира - Нигериска наира + Нигериски наири NGN @@ -5250,6 +5418,7 @@ For terms of use, see http://www.unicode.org/copyright.html Никарагванска кордоба Никарагвански кордоби NIO + C$ Холандски гилдер @@ -5257,14 +5426,16 @@ For terms of use, see http://www.unicode.org/copyright.html Норвешка круна Норвешка круна - Норвешка круна + Норвешки круни NOK + kr Непалска рупија Непалска рупија Непалска рупија NPR + Rs Новозеландски долар @@ -5312,12 +5483,14 @@ For terms of use, see http://www.unicode.org/copyright.html Пакистанска рупија Пакистанска рупија PKR + Rs Полска злота Полска злота - Полска злота + Полски злоти PLN + Полска злота (1950–1995) @@ -5352,14 +5525,15 @@ For terms of use, see http://www.unicode.org/copyright.html Српски динар Српски динар - Српски динар + Српски динари RSD Руска рубља Руска рубља - Руска рубља + Руски рубљи RUB + Руска рубља (1991–1998) @@ -5367,8 +5541,9 @@ For terms of use, see http://www.unicode.org/copyright.html Руандски франк Руандски франк - Руандски франк + Руандски франци RWF + RF Саудиски ријал @@ -5404,8 +5579,9 @@ For terms of use, see http://www.unicode.org/copyright.html Шведска круна Шведска круна - Шведска круна + Шведски круни SEK + kr Сингапурски долар @@ -5419,6 +5595,7 @@ For terms of use, see http://www.unicode.org/copyright.html Фунта на Света Елена Фунти на Света Елена SHP + £ Словенечки толар @@ -5429,12 +5606,12 @@ For terms of use, see http://www.unicode.org/copyright.html Сиералеонско леоне Сиералеонско леоне - Сиералеонско леоне + Сиералеонски леони SLL Сомалијски шилинг - Сомалијски шилинзи + Сомалијски шилинг Сомалијски шилинзи SOS @@ -5460,6 +5637,7 @@ For terms of use, see http://www.unicode.org/copyright.html Добра на Сао Томе и Принсипе Добри на Сао Томе и Принсипе STD + Db Советска рубља @@ -5472,6 +5650,7 @@ For terms of use, see http://www.unicode.org/copyright.html Сиријска фунта Сиријска фунта SYP + £ Свазилендски лиланген @@ -5484,6 +5663,7 @@ For terms of use, see http://www.unicode.org/copyright.html Таи бат Таи бат THB + ฿ Таџикистанска рубља @@ -5514,6 +5694,7 @@ For terms of use, see http://www.unicode.org/copyright.html Тонганска панга Тонганска панга TOP + T$ Тиморски ескудо @@ -5529,6 +5710,7 @@ For terms of use, see http://www.unicode.org/copyright.html Турски лири TRY + TL Долар на Тринидад и Тобаго @@ -5547,13 +5729,13 @@ For terms of use, see http://www.unicode.org/copyright.html Танзаниски шилинг Танзаниски шилинг - Танзаниски шилинг + Танзаниски шилинзи TZS Украинска хривнија Украинска хривнија - Украинска хривнија + Украински хривнии UAH @@ -5563,7 +5745,7 @@ For terms of use, see http://www.unicode.org/copyright.html Угандиски шилинг Угандиски шилинг - Угандиски шилинг + Угандиски шилинзи UGX @@ -5605,6 +5787,7 @@ For terms of use, see http://www.unicode.org/copyright.html Венецуелски боливар Венецуелски боливари VEF + Bs Виетнамски донг @@ -5626,9 +5809,9 @@ For terms of use, see http://www.unicode.org/copyright.html WST - XAF - XAF - XAF + Централноафрикански франк + Централноафрикански франк + Централноафрикански франци FCFA @@ -5636,11 +5819,12 @@ For terms of use, see http://www.unicode.org/copyright.html Источно карибиски долар Источно карибиски долар EC$ + $ - XOF - XOF - XOF + Западноафрикански франк + Западноафрикански франк + Западноафрикански франци CFA @@ -5677,6 +5861,7 @@ For terms of use, see http://www.unicode.org/copyright.html Јужно афрички ранд Јужно афрички ранд ZAR + R Замбијска квача (1968–2012) @@ -5684,8 +5869,9 @@ For terms of use, see http://www.unicode.org/copyright.html Замбијска квача Замбијска квача - Замбијска квача + Замбијски квачи ZMW + ZK Заирско новозаире @@ -5717,6 +5903,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} метар во секунда на квадрат {0} метри во секунда на квадрат + + револуција + {0} револуција + {0} револуции + + + радијани + {0} радијан + {0} радијани + + + степени + {0} степен + {0} степени + минути {0} минута @@ -5727,30 +5928,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} секунда {0} секунди - - степени - {0} степен - {0} степени - - - радијани - {0} радијан - {0} радијани - - - акри - {0} акр - {0} акри + + квадратни километри + {0} квадратен километар + {0} квадратни километри хектари {0} хектар {0} хектари + + квадратни метри + {0} квадратен метар + {0} квадратни метри + {0} по метар квадратен + квадратни сантиметри {0} квадратен сантиметар {0} квадратни сантиметри + {0} по квадратен сантиметар + + + квадратни милји + {0} квадратна милја + {0} квадратни милји + + + акри + {0} акр + {0} акри + + + квадратни јарди + {0} квадратен јард + {0} квадратни јарди квадратни стапки @@ -5761,91 +5974,106 @@ For terms of use, see http://www.unicode.org/copyright.html квадратни инчи {0} квадратен инч {0} квадратни инчи + {0} по квадратен инч - - квадратни километри - {0} квадратен километар - {0} квадратни километри - - - квадратни метри - {0} квадратен метар - {0} квадратни метри - - - квадратни милји - {0} квадратна милја - {0} квадратни милји - - - квадратни јарди - {0} квадратен јард - {0} квадратни јарди + + карат + {0} карат + {0} карати литри на километар {0} литар на километар {0} литри на километар + + литри на 100 километри + {0} литар на 100 километри + {0} литри на 100 километри + милји на галон {0} милја на галон {0} милји на галон - - битови - {0} бит - {0} битови - - - бајти - {0} бајт - {0} бајти - - - гигабитови - {0} гигабит - {0} гигабитови - - - гигабајти - {0} гигабајт - {0} гигабајти - - - килобитови - {0} килобит - {0} килобитови - - - килобајти - {0} килобајт - {0} килобајти - - - мегабитови - {0} мегабит - {0} мегабитови - - - мегабајти - {0} мегабајт - {0} мегабајти - - - терабитови - {0} терабит - {0} терабитови - терабајти {0} терабајт {0} терабајти + + терабитови + {0} терабит + {0} терабитови + + + гигабајти + {0} гигабајт + {0} гигабајти + + + гигабитови + {0} гигабит + {0} гигабитови + + + мегабајти + {0} мегабајт + {0} мегабајти + + + мегабитови + {0} мегабит + {0} мегабитови + + + килобајти + {0} килобајт + {0} килобајти + + + килобитови + {0} килобит + {0} килобитови + + + бајти + {0} бајт + {0} бајти + + + битови + {0} бит + {0} битови + + + векови + {0} век + {0} векови + + + години + {0} година + {0} години + {0} годишно + + + месеци + {0} месец + {0} месеци + {0} месечно + + + седмици + {0} седмица + {0} седмици + {0} неделно + дена {0} ден {0} дена + {0} дневно часа @@ -5853,30 +6081,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} часа {0} на час - - микросекунди - {0} микросекунда - {0} микросекунди - - - милисекунди - {0} милисекунда - {0} милисекунди - минути {0} минута {0} минути - - - месеци - {0} месец - {0} месеци - - - наносекунди - {0} наносекунда - {0} наносекунди + {0} на минута секунди @@ -5884,15 +6093,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} секунди {0} во секунда - - седмици - {0} седмица - {0} седмици + + милисекунди + {0} милисекунда + {0} милисекунди - - години - {0} година - {0} години + + микросекунди + {0} микросекунда + {0} микросекунди + + + наносекунди + {0} наносекунда + {0} наносекунди ампери @@ -5914,6 +6128,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} волт {0} волти + + килокалории + {0} килокалорија + {0} килокалории + калории {0} калорија @@ -5924,21 +6143,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} калорија {0} калории - - џули - {0} џул - {0} џули - - - килокалории - {0} килокалорија - {0} килокалории - килоџули {0} килоџул {0} килоџули + + џули + {0} џул + {0} џули + киловат-часови {0} киловат-час @@ -5949,216 +6163,220 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гигахерц {0} гигахерци - - херц - {0} херц - {0} херци + + мегахерц + {0} мегахерц + {0} мегахерци килохерц {0} килохерц {0} килохерци - - мегахерц - {0} мегахерц - {0} мегахерци + + херц + {0} херц + {0} херци - - астрономски единици - {0} астрономска единица - {0} астрономски единици + + километри + {0} километар + {0} километри + {0} на километар - - сантиметри - {0} сантиметар - {0} сантиметри + + метри + {0} метар + {0} метри + {0} на метар дециметри {0} дециметар {0} дециметри - - фатоми - {0} фатом - {0} фатоми - - - стапки - {0} стапка - {0} стапки - - - фурлонзи - {0} фурлонг - {0} фурлонзи - - - инчи - {0} инч - {0} инчи - - - километри - {0} километар - {0} километри - - - светлосни години - {0} светлосна година - {0} светлосни години - - - метри - {0} метар - {0} метри - - - микрометри - {0} микрометар - {0} микрометри - - - милји - {0} милја - {0} милји + + сантиметри + {0} сантиметар + {0} сантиметри + {0} на сантиметар милиметри {0} милиметар {0} милиметри + + микрометри + {0} микрометар + {0} микрометри + нанометри {0} нанометар {0} нанометри - - наутички милји - {0} наутичка милја - {0} наутички милји - - - парсеци - {0} парсек - {0} парсеци - пикометри {0} пикометар {0} пикометри + + милји + {0} милја + {0} милји + јарди {0} јард {0} јарди + + стапки + {0} стапка + {0} стапки + {0} на стапка + + + инчи + {0} инч + {0} инчи + {0} на инч + + + парсеци + {0} парсек + {0} парсеци + + + светлосни години + {0} светлосна година + {0} светлосни години + + + астрономски единици + {0} астрономска единица + {0} астрономски единици + + + фурлонзи + {0} фурлонг + {0} фурлонзи + + + фатоми + {0} фатом + {0} фатоми + + + наутички милји + {0} наутичка милја + {0} наутички милји + + + скандинавска милја + {0} скандинавска милја + {0} скандинавски милји + лукс {0} лукс {0} лукса - - карати - {0} карат - {0} карати - - - грама - {0} грам - {0} грама - - - килограми - {0} килограм - {0} килограми - метрички тони {0} метрички тон {0} метрички тони - - микрограми - {0} микрограм - {0} микрограми + + килограми + {0} килограм + {0} килограми + {0} од килограм + + + грама + {0} грам + {0} грама + {0} од грам милиграми {0} милиграм {0} милиграми - - унци - {0} унца - {0} унци - - - тројски унци - {0} тројска унца - {0} тројски унци - - - фунти - {0} фунта - {0} фунти - - - стоуни - {0} стоун - {0} стоуни + + микрограми + {0} микрограм + {0} микрограми тони {0} тон {0} тони + + стоуни + {0} стоун + {0} стоуни + + + фунти + {0} фунта + {0} фунти + {0} од фунта + + + унци + {0} унца + {0} унци + {0} од унца + + + тројски унци + {0} тројска унца + {0} тројски унци + + + карати + {0} карат + {0} карати + гигавати {0} гигават {0} гигавати - - коњски сили - {0} коњска сила - {0} коњски сили - - - киловати - {0} киловат - {0} киловати - мегавати {0} мегават {0} мегавати - - миливати - {0} миливат - {0} миливати + + киловати + {0} киловат + {0} киловати вати {0} ват {0} вати + + миливати + {0} миливат + {0} миливати + + + коњски сили + {0} коњска сила + {0} коњски сили + хектопаскали {0} хектопаскал {0} хектопаскали - - инчи жива - {0} инч жива - {0} инчи жива - - - милибари - {0} милибар - {0} милибари - милиметри жива {0} милиметар жива @@ -6169,10 +6387,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} фунта на квадратен инч {0} фунти на квадратен инч - - карат - {0} карат - {0} карати + + инчи жива + {0} инч жива + {0} инчи жива + + + милибари + {0} милибар + {0} милибари километри на час @@ -6189,6 +6412,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} милја на час {0} милји на час + + јазол + {0} јазол + {0} јазли + + + ° + {0}° + {0}° + целзиусови степени {0} целзиусов степен @@ -6204,36 +6437,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} келвин {0} келвини - - акр-стапки - {0} акр-стапка - {0} акр-стапки - - - бушели - {0} бушел - {0} бушели - - - сантилитри - {0} сантилитар - {0} сантилитри - - - кубни сантиметри - {0} кубен сантиметар - {0} кубни сантиметри - - - кубни стапки - {0} кубна стапка - {0} кубни стапки - - - кубни инчи - {0} кубен инч - {0} кубни инчи - кубни километри {0} кубен километар @@ -6243,6 +6446,13 @@ For terms of use, see http://www.unicode.org/copyright.html кубни метри {0} кубен метар {0} кубни метри + {0} на кубен метар + + + кубни сантиметри + {0} кубен сантиметар + {0} кубни сантиметри + {0} на кубен сантиметар кубни милји @@ -6254,25 +6464,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кубен јард {0} кубни јарди - - шолји - {0} шолја - {0} шолји + + кубни стапки + {0} кубна стапка + {0} кубни стапки - - децилитри - {0} децилитар - {0} децилитри + + кубни инчи + {0} кубен инч + {0} кубни инчи - - унци течност - {0} унца течност - {0} унци течност - - - галони - {0} галон - {0} галони + + мегалитри + {0} мегалитар + {0} мегалитри хектолитри @@ -6283,27 +6488,69 @@ For terms of use, see http://www.unicode.org/copyright.html литри {0} литар {0} литри + {0} по литар - - мегалитри - {0} мегалитар - {0} мегалитри + + децилитри + {0} децилитар + {0} децилитри + + + центилитри + {0} центилитар + {0} центилитри милилитри {0} милилитар {0} милилитри - - пинти - {0} пинта - {0} пинти + + метрички пинти + {0} метричка пинта + {0} метрички пинти + + + метрички шолји + {0} метричка шолја + {0} метрички шолји + + + ар-стапка + {0} ар-стапка + {0} ар-стапки + + + бушели + {0} бушел + {0} бушели + + + галони + {0} галон + {0} галони + {0} по галон кварти {0} кварт {0} кварти + + пинти + {0} пинта + {0} пинти + + + шолји + {0} шолја + {0} шолји + + + унци течност + {0} унца течност + {0} унци течност + супени лажици {0} супена лажица @@ -6314,6 +6561,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кафена лажица {0} кафени лажици + + {0}И + {0}С + {0}Ј + {0}З + @@ -6329,6 +6582,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} м/с² {0} м/с² + + rev + {0} rev + {0} rev + + + радијани + {0} rad + {0} rad + + + степени + {0} степ. + {0} степ. + минути {0} мин. @@ -6339,30 +6607,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} сек {0} сек - - степени - {0} степ. - {0} степ. - - - радијани - {0} рад - {0} рад - - - акри - {0} акр - {0} акри + + км² + {0} км² + {0} км² хектари {0} хектар {0} хектари + + метри² + {0} м² + {0} м² + {0}/м² + см² {0} см² {0} см² + {0}/см² + + + кв. милји + {0} кв. милја + {0} кв. милји + + + акри + {0} акр + {0} акри + + + јарди² + {0} јд² + {0} јд² квадратни стапки @@ -6373,91 +6653,106 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0} in² {0} in² + {0}/in² - - км² - {0} км² - {0} км² - - - м² - {0} м² - {0} м² - - - кв. милји - {0} кв. милја - {0} кв. милји - - - јарди² - {0} јд² - {0} јд² + + карати + {0} kt + {0} kt литри/км - {0} л/км - {0} л/км + {0} L/km + {0} L/km + + + L/100km + {0} L/100km + {0} L/100km милји/гал {0} mpg {0} mpg - - бит - {0} бит - {0} битови + + TByte + {0} TB + {0} TB - - бајт - {0} бајт - {0} бајти - - - Gb - {0} Gb - {0} Gb + + Tbit + {0} Tb + {0} Tb GB {0} GB {0} GB - - kb - {0} kb - {0} kb + + Gb + {0} Gb + {0} Gb + + + MByte + {0} MB + {0} MB + + + Mbit + {0} Mb + {0} Mb kB {0} kB {0} kB - - Mb - {0} Mb - {0} Mb + + kbit + {0} kb + {0} kb - - MB - {0} MB - {0} MB + + бајт + {0} бајт + {0} бајти - - Tb - {0} Tb - {0} Tb + + бит + {0} бит + {0} битови - - TB - {0} TB - {0} TB + + в. + {0} в. + {0} в. + + + години + {0} год. + {0} год. + {0}/год. + + + месеци + {0} мес. + {0} мес. + {0}/мес. + + + седмици + {0} сед. + {0} сед. + {0}/сед. дена {0} ден {0} дена + {0}/ден часа @@ -6465,30 +6760,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} часа {0}/ч - - μs - {0} μs - {0} μs - - - ms - {0} мс - {0} мс - минути {0} мин. {0} мин. - - - месеци - {0} мес. - {0} мес. - - - наносек - {0} нс - {0} нс + {0}/мин. секунди @@ -6496,15 +6772,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} сек. {0}/с - - седмици - {0} сед. - {0} сед. + + ms + {0} мс + {0} мс - - години - {0} год. - {0} год. + + μs + {0} μs + {0} μs + + + наносек + {0} нс + {0} нс амп. @@ -6512,7 +6793,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} A - mA + милиамп. {0} mA {0} mA @@ -6526,6 +6807,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + кал. {0} кал. @@ -6536,21 +6822,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кал. {0} кал. - - џули - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - килоџул {0} kJ {0} kJ + + џули + {0} J + {0} J + kWh {0} kWh @@ -6561,216 +6842,220 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - ае - {0} ае - {0} ае + + км + {0} км + {0} км + {0}/км - - см - {0} см - {0} см + + метри + {0} м + {0} м + {0}/м дм {0} дм {0} дм - - фатоми - {0} фм - {0} фм - - - стапки - {0} ст - {0} ст - - - фурлонзи - {0} фур - {0} фур - - - инчи - {0} инч - {0} инчи - - - км - {0} км - {0} км - - - свет. год. - {0} сг - {0} сг - - - метри - {0} м - {0} м - - - µm - {0} µm - {0} µm - - - милји - {0} ми - {0} ми + + см + {0} см + {0} см + {0}/см мм {0} мм {0} мм + + µm + {0} µm + {0} µm + нм {0} нм {0} нм - - нми - {0} нми - {0} нми - - - парсеци - {0} пс - {0} пс - пм {0} пм {0} пм + + милји + {0} ми + {0} ми + јарди {0} јард {0} јарди + + стапки + {0} ст + {0} ст + {0}/ст + + + инчи + {0} инч + {0} инчи + {0}/ин + + + парсеци + {0} пс + {0} пс + + + свет. год. + {0} сг + {0} сг + + + ае + {0} ае + {0} ае + + + фурлонзи + {0} фур + {0} фур + + + фатоми + {0} фм + {0} фм + + + нми + {0} нми + {0} нми + + + smi + {0} smi + {0} smi + лукс - {0} лк - {0} лк - - - карати - {0} кар. - {0} кар. - - - грама - {0} г - {0} г - - - кг - {0} кг - {0} кг + {0} lx + {0} lx т {0} т {0} т - - µg - {0} µg - {0} µg + + кг + {0} кг + {0} кг + {0}/кг + + + грама + {0} г + {0} г + {0}/г мг {0} мг {0} мг - - унци - {0} унца - {0} унци - - - тројска унца - {0} oz t - {0} oz t - - - фунти - {0} фунта - {0} фунти - - - стоуни - {0} стоун - {0} стоуни + + µg + {0} µg + {0} µg тони {0} тн {0} тн + + стоуни + {0} стоун + {0} стоуни + + + фунти + {0} фунта + {0} фунти + {0}/lb + + + унци + {0} унца + {0} унци + {0}/oz + + + тројска унца + {0} oz t + {0} oz t + + + карати + {0} кар. + {0} кар. + GW {0} GW {0} GW - - коњски сили - {0} кс - {0} кс - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW вати {0} ват {0} вати + + mW + {0} mW + {0} mW + + + коњски сили + {0} кс + {0} кс + hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - - - мбар - {0} мбар - {0} мбар - мм жива {0} мм жива @@ -6781,10 +7066,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - карати - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + + + мбар + {0} мбар + {0} мб. км/час @@ -6801,6 +7091,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ми/ч {0} ми/ч + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + целзиусови степени {0}°C @@ -6816,36 +7116,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - акр ст - {0} ак ст - {0} ак ст - - - бушели - {0} бу - {0} бу - - - сл - {0} сл - {0} сл - - - см³ - {0} см³ - {0} см³ - - - стапки³ - {0} ст³ - {0} ст³ - - - инчи³ - {0} in³ - {0} in³ - км³ {0} км³ @@ -6855,6 +7125,13 @@ For terms of use, see http://www.unicode.org/copyright.html м³ {0} м³ {0} м³ + {0}/м³ + + + см³ + {0} см³ + {0} см³ + {0}/см³ ми³ @@ -6866,66 +7143,109 @@ For terms of use, see http://www.unicode.org/copyright.html {0} јд³ {0} јд³ - - шолји - {0} ш. - {0} ш. + + стапки³ + {0} ст³ + {0} ст³ - - дл - {0} дл - {0} дл - - - fl oz - {0} fl oz - {0} fl oz - - - гал - {0} гал - {0} гал - - - хл - {0} хл - {0} хл - - - литри - {0} л - {0} л + + инчи³ + {0} in³ + {0} in³ ML {0} ML {0} ML - - мл - {0} мл - {0} мл + + hL + {0} hL + {0} hL - - пинти - {0} пт - {0} пт + + литри + {0} л + {0} л + {0}/л + + + dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL + + + mL + {0} mL + {0} mL + + + mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + ар-ст. + {0} ар-ст. + {0} ар-ст. + + + бушели + {0} бу + {0} бу + + + гал + {0} гал + {0} гал + {0}/gal qt {0} qt {0} qt + + пинти + {0} pt + {0} pt + + + шолји + {0} ш. + {0} ш. + + + fl oz + {0} fl oz + {0} fl oz + - суп. лаж. - {0} суп. лаж. - {0} суп. лаж. + tbsp + {0} tbsp + {0} tbsp - каф. лаж. - {0} каф. лаж. - {0} каф. лаж. + tsp + {0} tsp + {0} tsp + + {0}И + {0}С + {0}Ј + {0}З + @@ -6939,6 +7259,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} м/с² {0} м/с² + + {0} рад + {0} рад + + + степени + {0} степ. + {0} степ. + {0}′ {0}′ @@ -6947,34 +7276,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0} степ. - {0} степ. - - - {0} рад - {0} рад - - - {0} акр - {0} акри + + {0} км² + {0} км² {0} ха {0} ха - - {0} стапка² - {0} стапки² - - - {0} ин² - {0} ин² - - - {0} км² - {0} км² - м² {0} м² @@ -6984,61 +7293,97 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ми² {0} ми² + + {0} акр + {0} акри + {0} јд² {0} јд² + + {0} стапка² + {0} стапки² + + + {0} ин² + {0} ин² + + + {0} кт + {0} кт + {0} л/км {0} л/км + + L/100km + {0} L/100km + {0} L/100km + {0} ми/гал {0} ми/гал - - бит - {0} бит - {0} битови + + TB + {0} TB + {0} TB - - Gb - {0} Gb - {0} Gb + + {0} Tb + {0} Tb GB {0} GB {0} GB - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb + + Gb + {0} Gb + {0} Gb MB {0} MB {0} MB - - {0} Tb - {0} Tb + + Mb + {0} Mb + {0} Mb - - TB - {0} TB - {0} TB + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + бит + {0} бит + {0} битови + + + год. + {0} год. + {0} год. + + + месец + {0} мес. + {0} мес. + + + сед. + {0} сед. + {0} сед. ден @@ -7050,151 +7395,146 @@ For terms of use, see http://www.unicode.org/copyright.html {0} час {0} часа - - {0}μс - {0}μс - - - мсек - {0} мс - {0} мс - мин {0} мин. {0} мин. - - месец - {0} мес. - {0} мес. - - - {0} нс - {0} нс - сек. {0} сек. {0} сек. - - сед. - {0} сед. - {0} сед. + + мсек + {0} мс + {0} мс - - год. - {0} год. - {0} год. + + {0}μс + {0}μс - - {0} ае - {0} ае - - - см - {0} см - {0} см - - - {0} дм - {0} дм - - - фатоми - {0} фм - {0} фм - - - {0}′ - {0}′ - - - фурлонг - {0} фур - {0} фур - - - {0}″ - {0}″ + + {0} нс + {0} нс км {0} км {0} км - - {0} сг - {0} сг - метар {0} м {0} м - - {0} µм - {0} µм + + {0} дм + {0} дм - - {0} ми - {0} ми + + см + {0} см + {0} см мм {0} мм {0} мм + + {0} µм + {0} µм + {0} нм {0} нм - - {0} нми - {0} нми - - - {0} пс - {0} пс - {0} пм {0} пм + + {0} ми + {0} ми + {0} јд {0} јд + + {0}′ + {0}′ + + + {0}″ + {0}″ + + + {0} пс + {0} пс + + + {0} сг + {0} сг + + + {0} ае + {0} ае + + + фурлонг + {0} фур + {0} фур + + + фатоми + {0} фм + {0} фм + + + {0} нми + {0} нми + {0} лк {0} лк - - {0} кар. - {0} кар. - - - грам - {0} г - {0} г - - - кг - {0} кг - {0} кг - {0} т {0} т + + кг + {0} кг + {0} кг + + + грам + {0}г + {0}г + + + {0} мг + {0} мг + {0} µг {0} µг - - {0} мг - {0} мг + + тони + {0} тн + {0} тн + + + стоун + {0} стоун + {0} стоуни + + + {0} фунта + {0} фунти {0} унца @@ -7204,25 +7544,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} oz t {0} oz t - - {0} фунта - {0} фунти - - - стоун - {0} стоун - {0} стоуни - - - тони - {0} тн - {0} тн - - - {0} кс - {0} кс + + {0} кар. + {0} кар. + kW {0} kW {0} kW @@ -7230,10 +7557,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ват {0} вати + + {0} кс + {0} кс + {0} хПа {0} хПа + + {0}mm Hg + {0}mm Hg + inHg {0} inHg @@ -7244,14 +7579,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мб {0} мб - - {0}mm Hg - {0}mm Hg - - - {0} кт - {0} кт - км/ч {0} к/ч @@ -7271,38 +7598,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}°C - {0}°F - {0}°F + °F + {0}°F + {0}°F {0}°K {0}°K - - {0} ак ст - {0} ак ст - - - бу - {0} бу - {0} бу - - - {0} сл - {0} сл - - - {0} см³ - {0} см³ - - - {0} ст³ - {0} ст³ - - - {0} ин³ - {0} ин³ - {0} км³ {0} км³ @@ -7311,6 +7614,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} м³ {0} м³ + + {0} см³ + {0} см³ + {0} ми³ {0} ми³ @@ -7319,17 +7626,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} јд³ {0} јд³ - - {0} дл - {0} дл + + {0} ст³ + {0} ст³ - - {0} fl oz - {0} fl oz + + {0} ин³ + {0} ин³ - - {0} гал - {0} гал + + {0} Мл + {0} Мл {0} хл @@ -7340,22 +7647,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} л {0} л - - {0} Мл - {0} Мл + + {0} дл + {0} дл + + + {0} сл + {0} сл {0} мл {0} мл - - {0} пт - {0} пт + + {0} ак ст + {0} ак ст + + + бу + {0} бу + {0} бу + + + {0} гал + {0} гал {0} qt {0} qt + + {0} пт + {0} пт + + + {0} fl oz + {0} fl oz + {0}tbsp {0}tbsp @@ -7364,6 +7692,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}tsp {0}tsp + + {0}И + {0}С + {0}Ј + {0}З + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mk_MK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mk_MK.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mk_MK.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mk_MK.xml index 50789f1d8ee..76e8cae3f2c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mk_MK.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mk_MK.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ml.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ml.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ml.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ml.xml index 2c898cf2155..8f82dd986f2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ml.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ml.xml @@ -1,13 +1,12 @@ - - - + @@ -62,6 +61,7 @@ For terms of use, see http://www.unicode.org/copyright.html ബെനാ ബാഫട്ട് ബൾഗേറിയൻ + പശ്ചിമ ബലൂചി ഭോജ്‌പൂരി ബിസ്‌ലാമ ബികോൽ @@ -223,7 +223,7 @@ For terms of use, see http://www.unicode.org/copyright.html ഐസ്‌ലാൻഡിക് ഇറ്റാലിയൻ ഇനുക്റ്റിറ്റട്ട് - ജപ്പാനീസ് + ജാപ്പനീസ് ലോജ്ബാൻ ഗോമ്പ മചേം @@ -289,6 +289,7 @@ For terms of use, see http://www.unicode.org/copyright.html ലാവോ മോങ്കോ ലൊസി + വടക്കൻ ലൂറി ലിത്വാനിയൻ ലുബ-കറ്റംഗ ലൂബ-ലുലുവ @@ -337,12 +338,14 @@ For terms of use, see http://www.unicode.org/copyright.html ബർമീസ് മയീൻ ഏഴ്സ്യ + മസന്ററാനി നൗറു നെപ്പോളിറ്റാൻ നാമ നോർവീജിയൻ ബുക്‌മൽ നോർത്ത് ഡെബിൾ ലോ ജർമൻ + ലോ സാക്സൺ നേപ്പാളി നേവാരി ഡോങ്ക @@ -387,7 +390,7 @@ For terms of use, see http://www.unicode.org/copyright.html പൊൻപിയൻ പ്രൊവൻഷ്ൽ പഷ്തു - പുഷ്തോ + പുഷ്തോ പോർച്ചുഗീസ് ബ്രസീലിയൻ പോർച്ചുഗീസ് യൂറോപ്യൻ പോർച്ചുഗീസ് @@ -420,6 +423,7 @@ For terms of use, see http://www.unicode.org/copyright.html സിസിലിയൻ സ്കോട്സ് സിന്ധി + തെക്കൻ കുർദ്ദിഷ് വടക്കൻ സമി സെനേക സേന @@ -451,14 +455,14 @@ For terms of use, see http://www.unicode.org/copyright.html സ്വാറ്റി സാഹോ തെക്കൻ സോതോ - സുഡാനീസ് + സുണ്ടാനീസ് സുകുമ സുസു സുമേരിയൻ സ്വീഡിഷ് സ്വാഹിലി + കോംഗോ സ്വാഹിലി കൊമോറിയൻ - കോംഗോ സ്വാഹിലി പുരാതന സുറിയാനിഭാഷ സുറിയാനി തമിഴ് @@ -514,6 +518,7 @@ For terms of use, see http://www.unicode.org/copyright.html വലമൊ വാരേയ് വാഷൊ + വാൾപ്പിരി വൊളോഫ് കൽമൈക് ഖോസ @@ -531,8 +536,6 @@ For terms of use, see http://www.unicode.org/copyright.html സെനഗ മൊറോക്കൻ സാധാരണ താമസൈറ്റ് ചൈനീസ് - ചീനഭാഷ-ലളിതലിപി - ചീനഭാഷ-പരമ്പരാഗതലിപി സുലു സുനി ഭാഷാപരമായ ഉള്ളടക്കമൊന്നുമില്ല @@ -712,7 +715,6 @@ For terms of use, see http://www.unicode.org/copyright.html ആൻഗ്വില്ല അൽബേനിയ അർമേനിയ - നെതർലൻഡ്സ് ആൻറിലിസ് അംഗോള അൻറാർട്ടിക്ക അർജൻറീന @@ -744,7 +746,7 @@ For terms of use, see http://www.unicode.org/copyright.html ബെലറൂസ് ബെലീസ് കാനഡ - കോക്കസ് ദ്വീപുകൾ + കോക്കസ് (കീലിംഗ്) ദ്വീപുകൾ കോംഗോ - കിൻഷാസ കോംഗോ (DRC) സെൻട്രൽ ആഫ്രിക്കൻ റിപ്പബ്ലിക് @@ -785,12 +787,12 @@ For terms of use, see http://www.unicode.org/copyright.html ഫിൻലാൻഡ് ഫിജി ഫാക്ക്‌ലാന്റ് ദ്വീപുകൾ - ഫാക്ക്‌ലാൻഡ് ദ്വീപുകൾ (മൽവിനാസ്) + ഫോക്ക്‌ലാൻഡ് ദ്വീപുകൾ (ഐലാസ് മാൽവിനാസ്) മൈക്രോനേഷ്യ ഫറോ ദ്വീപുകൾ ഫ്രാൻസ് ഗാബൺ - ബ്രിട്ടൻ + യുണൈറ്റഡ് കിംഗ്ഡം യു.കെ. ഗ്രനേഡ ജോർജ്ജിയ @@ -809,7 +811,7 @@ For terms of use, see http://www.unicode.org/copyright.html ഗ്വാം ഗിനിയ-ബിസൗ ഗയാന - ഹോങ് കോങ് എസ്.ഏ.ആർ. ചൈന + ഹോങ്കോങ്ങ് (SAR) ചൈന ഹോങ്കോങ്ങ് ഹിയേർഡും മക്‌ഡൊണാൾഡ് ദ്വീപുകളും ഹോണ്ടുറാസ് @@ -865,7 +867,7 @@ For terms of use, see http://www.unicode.org/copyright.html മാലി മ്യാൻമാർ (ബർമ്മ) മംഗോളിയ - മക്കാവോ SAR ചൈന + മക്കാവു (SAR) ചൈന മക്കാവു ഉത്തര മറിയാനാ ദ്വീപുകൾ മാർട്ടിനിക്ക് @@ -1002,6 +1004,9 @@ For terms of use, see http://www.unicode.org/copyright.html അക്കങ്ങൾ പ്രകാരമുള്ള അടുക്കൽ അടുക്കൽ ദൃഢത നാണയം + സമയ ഘടന (12 / 24) + രേഖാ വിഭാജി ശൈലി + അളക്കൽ സംവിധാനം അക്കങ്ങൾ‌ സമയ മേഖല ഭാഷാ ഭേദം @@ -1009,95 +1014,105 @@ For terms of use, see http://www.unicode.org/copyright.html സ്വകാര്യ ഉപയോഗം - അറബിക്-ഇന്ത്യ അക്കങ്ങൾ - വിപുലീകൃത അറബി-ഭാരതീയ അക്കങ്ങൾ - അർമേനിയൻ സംഖ്യകൾ - അർമേനിയൻ ചെറിയ സംഖ്യകൾ - ബംഗാളി അക്കങ്ങൾ - പരമ്പരാഗത ചൈനീസ് ക്രമീകരണം - ബിഗ്5 - ബുദ്ധമതകലണ്ടർ - ചൈനീസ് കലണ്ടർ - കോപ്റ്റിക് കലണ്ടർ - ഡാംഗി കലണ്ടർ - ദേവനാഗരി അക്കങ്ങൾ - നിഘണ്ടു അടുക്കൽ ക്രമം - സ്ഥിര യൂണികോഡ് അടുക്കൽ ക്രമം - എത്യോപിക് സംഖ്യകൾ - എത്യോപിക് കലണ്ടർ - എത്യോപിക് അമെതെ അലെം കലണ്ടർ - സാമ്പത്തിക സംഖ്യകൾ - പൂർണ വലുപ്പമുള്ള സംഖ്യകൾ - ലളിതമായ ചൈനീസ് ക്രമീകരണം - ജീബി2312 - ജോർജിയൻ സംഖ്യകൾ - ഇംഗ്ലീഷ് കലണ്ടർ - ഗ്രീക്ക് സംഖ്യകൾ - ഗ്രീക്ക് ചെറിയക്ഷര സംഖ്യകൾ - ഗുജറാത്തി അക്കങ്ങൾ - ഗുരുമുഖി അക്കങ്ങൾ - ചൈനീസ് ദശാംശ സംഖ്യകൾ - ലളിതവൽക്കരിച്ച ചൈനീസ് സംഖ്യകൾ - ലളിതവൽക്കരിച്ച ചൈനീസ് ധനകാര്യ സംഖ്യകൾ - പരമ്പരാഗത ചൈനീസ് സംഖ്യകൾ - പരമ്പരാഗത ചൈനീസ് ധനകാര്യ സംഖ്യകൾ - ഹീബ്രു സംഖ്യകൾ - ഹീബ്രൂ കലണ്ടർ - എല്ലാം അടുക്കുക - ശകവർഷ കലണ്ടർ - ഇസ്‌ലാമിക് കലണ്ടർ - ഇസ്ലാം-സിവിൽ കലണ്ടർ - ഐഎസ്ഓ 8601 കലണ്ടർ - ജാപ്പനീസ് കലണ്ടർ - ജപ്പാനീസ് സംഖ്യകൾ - ജപ്പാനീസ് ധനകാര്യ സംഖ്യകൾ - ഖമേർ അക്കങ്ങൾ - കന്നഡ സംഖ്യകൾ - ലാവോ അക്കങ്ങൾ - പടിഞ്ഞാറൻ അക്കങ്ങൾ - ആദ്യം ചെറിയക്ഷര പ്രകാരം അടുക്കുക - മലയാളം അക്കങ്ങൾ - മംഗോളിയൻ സംഖ്യകൾ - മ്യാൻമാർ അക്കങ്ങൾ - സ്വാഭാവിക ഡിജിറ്റുകൾ - സാധാരണ ആക്‌സന്റുകൾ പ്രകാരം അടുക്കുക - സാധാരണ കേസ് ക്രമത്തിൽ അടുക്കുക - കേസ് സെൻസിറ്റീവ് പ്രകാരം അടുക്കുക - Kana പ്രത്യേകം അടുക്കുക - സാധാരണരീതി ഇല്ലാതെ അടുക്കുക - ഓരോ ഡിജിറ്റുകൾ പ്രകാരം അടുക്കുക - ചിഹ്നങ്ങൾ അടുക്കുക - ഒഡിയ അക്കങ്ങൾ - പേർഷ്യൻ കലണ്ടർ - ഫോൺബുക്കിലെ ക്രമീകരണം - സ്വരസൂചക അടുക്കൽ ക്രമം - പിൻ‌യിൻ ക്രമീകരണം - അടിസ്ഥാന അക്ഷരങ്ങൾ മാത്രം അടുക്കുക - ആക്‌സന്റുകൾ/കേസ്/വീതി/Kana അടുക്കുക - നവീകരിച്ച അടുക്കൽ ക്രമം - ചൈനീസ് കലണ്ടർ - റോമൻ സംഖ്യകൾ - റോമൻ ചെറിയ സംഖ്യകൾ - പൊതുവായ ആവശ്യത്തിനുള്ള തിരയൽ - ഹാംഗൽ പ്രാരംഭ വ്യഞ്ജനാക്ഷരം പ്രകാരം തിരയുക - ആക്‌സന്റുകൾ അടുക്കുക - അവഗണിക്കൽ ചിഹ്നങ്ങൾ അടുക്കുക - സാധാരണ അടുക്കൽ ക്രമം - സ്റ്റ്രോക്ക് ക്രമീകരണം - പഴയ തമിഴ് സംഖ്യകൾ - തമിഴ് അക്കങ്ങൾ - തെലുങ്ക് സംഖ്യകൾ - ആക്‌സന്റുകൾ/കേസ്/വീതി അടുക്കുക - തായി അക്കങ്ങൾ - ടിബറ്റൻ അക്കങ്ങൾ - പരമ്പരാഗത ക്രമീകരണം - സാധാരണയായി ഉപയോഗിച്ചുവരുന്ന സംഖ്യകൾ - റാഡിക്കൽ-സ്ട്രോക്ക് അടുക്കൽ ക്രമം - ആദ്യം വലിയക്ഷരപ്രകാരം അടുക്കുക - വായ് സംഖ്യകൾ - ആക്‌സന്റുകളെ വിപരീതക്രമത്തിൽ അടുക്കുക - കേസ് സെൻസിറ്റീവ് അടുക്കുക - Kana വ്യത്യസ്‌തമായി അടുക്കുക - സാധാരണ യൂണിക്കോഡ് അടുക്കുക - ഡിജിറ്റുകളെ സംഖ്യാപരമായി അടുക്കുക + ബുദ്ധമതകലണ്ടർ + ചൈനീസ് കലണ്ടർ + കോപ്റ്റിക് കലണ്ടർ + ഡാംഗി കലണ്ടർ + എത്യോപിക് കലണ്ടർ + എത്യോപിക് അമെതെ അലെം കലണ്ടർ + ഇംഗ്ലീഷ് കലണ്ടർ + ഹീബ്രൂ കലണ്ടർ + ശകവർഷ കലണ്ടർ + ഇസ്‌ലാമിക് കലണ്ടർ + ഇസ്ലാം-സിവിൽ കലണ്ടർ + ഐഎസ്ഓ 8601 കലണ്ടർ + ജാപ്പനീസ് കലണ്ടർ + പേർഷ്യൻ കലണ്ടർ + മിംഗ്വോ കലണ്ടർ + ചിഹ്നങ്ങൾ അടുക്കുക + അവഗണിക്കൽ ചിഹ്നങ്ങൾ അടുക്കുക + സാധാരണ ആക്‌സന്റുകൾ പ്രകാരം അടുക്കുക + ആക്‌സന്റുകളെ വിപരീതക്രമത്തിൽ അടുക്കുക + ആദ്യം ചെറിയക്ഷര പ്രകാരം അടുക്കുക + സാധാരണ കേസ് ക്രമത്തിൽ അടുക്കുക + ആദ്യം വലിയക്ഷരപ്രകാരം അടുക്കുക + കേസ് സെൻസിറ്റീവ് പ്രകാരം അടുക്കുക + കേസ് സെൻസിറ്റീവ് അടുക്കുക + Kana പ്രത്യേകം അടുക്കുക + Kana വ്യത്യസ്‌തമായി അടുക്കുക + പരമ്പരാഗത ചൈനീസ് ക്രമീകരണം - ബിഗ്5 + നിഘണ്ടു അടുക്കൽ ക്രമം + സ്ഥിര യൂണികോഡ് അടുക്കൽ ക്രമം + ലളിതമായ ചൈനീസ് ക്രമീകരണം - ജീബി2312 + ഫോൺബുക്കിലെ ക്രമീകരണം + സ്വരസൂചക അടുക്കൽ ക്രമം + പിൻ‌യിൻ ക്രമീകരണം + നവീകരിച്ച അടുക്കൽ ക്രമം + പൊതുവായ ആവശ്യത്തിനുള്ള തിരയൽ + ഹാംഗൽ പ്രാരംഭ വ്യഞ്ജനാക്ഷരം പ്രകാരം തിരയുക + സാധാരണ അടുക്കൽ ക്രമം + സ്റ്റ്രോക്ക് ക്രമീകരണം + പരമ്പരാഗത ക്രമീകരണം + റാഡിക്കൽ-സ്ട്രോക്ക് അടുക്കൽ ക്രമം + സാധാരണരീതി ഇല്ലാതെ അടുക്കുക + സാധാരണ യൂണിക്കോഡ് അടുക്കുക + ഓരോ ഡിജിറ്റുകൾ പ്രകാരം അടുക്കുക + ഡിജിറ്റുകളെ സംഖ്യാപരമായി അടുക്കുക + എല്ലാം അടുക്കുക + അടിസ്ഥാന അക്ഷരങ്ങൾ മാത്രം അടുക്കുക + ആക്‌സന്റുകൾ/കേസ്/വീതി/Kana അടുക്കുക + ആക്‌സന്റുകൾ അടുക്കുക + ആക്‌സന്റുകൾ/കേസ്/വീതി അടുക്കുക + 12 മണിക്കൂർ സംവിധാനം (0–11) + 12 മണിക്കൂർ സംവിധാനം (1–12) + 24 മണിക്കൂർ സംവിധാനം (0–23) + 24 മണിക്കൂർ സംവിധാനം (1–24) + അനിയന്ത്രിത രേഖാ വിഭാജി ശൈലി + സാധാരണ രേഖാ വിഭാജി ശൈലി + നിയന്ത്രിത രേഖാ വിഭാജി ശൈലി + മെട്രിക്ക് സംവിധാനം + ബ്രിട്ടീഷ് അളക്കൽ സംവിധാനം + യുഎസ് അളക്കൽ സംവിധാനം + അറബിക്-ഇന്ത്യ അക്കങ്ങൾ + വിപുലീകൃത അറബി-ഭാരതീയ അക്കങ്ങൾ + അർമേനിയൻ സംഖ്യകൾ + അർമേനിയൻ ചെറിയ സംഖ്യകൾ + ബംഗാളി അക്കങ്ങൾ + ദേവനാഗരി അക്കങ്ങൾ + എത്യോപിക് സംഖ്യകൾ + സാമ്പത്തിക സംഖ്യകൾ + പൂർണ വലുപ്പമുള്ള സംഖ്യകൾ + ജോർജിയൻ സംഖ്യകൾ + ഗ്രീക്ക് സംഖ്യകൾ + ഗ്രീക്ക് ചെറിയക്ഷര സംഖ്യകൾ + ഗുജറാത്തി അക്കങ്ങൾ + ഗുരുമുഖി അക്കങ്ങൾ + ചൈനീസ് ദശാംശ സംഖ്യകൾ + ലളിതവൽക്കരിച്ച ചൈനീസ് സംഖ്യകൾ + ലളിതവൽക്കരിച്ച ചൈനീസ് ധനകാര്യ സംഖ്യകൾ + പരമ്പരാഗത ചൈനീസ് സംഖ്യകൾ + പരമ്പരാഗത ചൈനീസ് ധനകാര്യ സംഖ്യകൾ + ഹീബ്രു സംഖ്യകൾ + ജാപ്പനീസ് സംഖ്യകൾ + ജാപ്പനീസ് ധനകാര്യ സംഖ്യകൾ + ഖമേർ അക്കങ്ങൾ + കന്നഡ സംഖ്യകൾ + ലാവോ അക്കങ്ങൾ + പടിഞ്ഞാറൻ അക്കങ്ങൾ + മലയാളം അക്കങ്ങൾ + മംഗോളിയൻ സംഖ്യകൾ + മ്യാൻമാർ അക്കങ്ങൾ + സ്വാഭാവിക ഡിജിറ്റുകൾ + ഒഡിയ അക്കങ്ങൾ + റോമൻ സംഖ്യകൾ + റോമൻ ചെറിയ സംഖ്യകൾ + പരമ്പരാഗത തമിഴ് സംഖ്യകൾ + തമിഴ് അക്കങ്ങൾ + തെലുങ്ക് സംഖ്യകൾ + തായി അക്കങ്ങൾ + ടിബറ്റൻ അക്കങ്ങൾ + സാധാരണയായി ഉപയോഗിച്ചുവരുന്ന സംഖ്യകൾ + വായ് സംഖ്യകൾ BGN @@ -1114,7 +1129,7 @@ For terms of use, see http://www.unicode.org/copyright.html മെട്രിക്ക് യുകെ - യുഎസ്സ് + യുഎസ് ഭാഷ: {0} @@ -1123,7 +1138,7 @@ For terms of use, see http://www.unicode.org/copyright.html - [\u200C\u200D ഃ അ ആ ഇ ഈ ഉ ഊ ഋ ൠ ഌ ൡ എ ഏ ഐ ഒ ഓ ഔ ക ൿ ഖ ഗ ഘ ങ ച ഛ ജ ഝ ഞ ട ഠ ഡ ഢ ണ ൺ ത ഥ ദ ധ ന ൻ പ ഫ ബ ഭ മ ം യ ര ർ ല ൽ വ ശ ഷ സ ഹ ള ൾ ഴ റ ാ ി ീ \u0D41 \u0D42 \u0D43 െ േ ൈ ൊ ോ ൗ ൌ \u0D4D] + [\u200C\u200D ഃ അ ആ ഇ ഈ ഉ ഊ ഋ ൠ ഌ ൡ എ ഏ ഐ ഒ ഓ ഔ ക ൿ ഖ ഗ ഘ ങ ച ഛ ജ ഝ ഞ ട ഠ ഡ ഢ ണ ൺ ത ഥ ദ ധ ന ൻ പ ഫ ബ ഭ മ ം യ ര ർ ല ൽ വ ശ ഷ സ ഹ ള ൾ ഴ റ ാ ി ീ \u0D41 \u0D42 \u0D43 െ േ ൈ ൊ ോ ൌ ൗ \u0D4D] [] [അ ആ ഇ ഈ ഉ ഊ ഋ എ ഏ ഐ ഒ ഓ ഔ ക ഖ ഗ ഘ ങ ച ഛ ജ ഝ ഞ ട ഠ ഡ ഢ ണ ത ഥ ദ ധ ന പ ഫ ബ ഭ മ യ ര ല വ ശ ഷ സ ഹ ള ഴ റ] [\- , ; \: ! ? . ' ‘ ’ " “ ” ( ) \[ \] \{ \}] @@ -1189,6 +1204,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d E G y G y MMM @@ -1214,7 +1230,7 @@ For terms of use, see http://www.unicode.org/copyright.html G y GGGGG y-MM G d/M/y - G d-M-y, E + G d/M/y, E MM-y G G y MMM G y MMM d @@ -1283,7 +1299,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM d, E – MMM d, E - LLLL–LLLL + MMMM – MMMM G y–y @@ -1362,7 +1378,7 @@ For terms of use, see http://www.unicode.org/copyright.html മേയ് ജൂൺ ജൂലൈ - ആഗസ്റ്റ് + ഓഗസ്റ്റ് സെപ്റ്റംബർ ഒക്‌ടോബർ നവംബർ @@ -1386,14 +1402,14 @@ For terms of use, see http://www.unicode.org/copyright.html - + ഫെ മാ - മേ + മെ ജൂ ജൂ - + സെ ഡി @@ -1406,7 +1422,7 @@ For terms of use, see http://www.unicode.org/copyright.html മേയ് ജൂൺ ജൂലൈ - ആഗസ്റ്റ് + ഓഗസ്റ്റ് സെപ്റ്റംബർ ഒക്‌ടോബർ നവംബർ @@ -1428,9 +1444,9 @@ For terms of use, see http://www.unicode.org/copyright.html തി - + ചൊ ബു - + വ്യാ വെ @@ -1464,11 +1480,11 @@ For terms of use, see http://www.unicode.org/copyright.html ശനി - + ഞാ തി - + ചൊ ബു - + വ്യാ വെ @@ -1536,15 +1552,85 @@ For terms of use, see http://www.unicode.org/copyright.html - + + അർദ്ധരാത്രി AM ഉച്ച PM + പുലർച്ചെ + രാവിലെ + ഉച്ചയ്ക്ക് + ഉച്ചതിരിഞ്ഞ് + വൈകുന്നേരം + സന്ധ്യ + രാത്രി + + + + AM + ഉച്ച + PM + പു + രാ + ഉച്ചയ് + ഉച്ചതി + വൈ + + രാ + അർദ്ധരാത്രി AM ഉച്ച PM + പുലർച്ചെ + രാവിലെ + ഉച്ചയ്ക്ക് + ഉച്ചതിരിഞ്ഞ് + വൈകുന്നേരം + സന്ധ്യ + രാത്രി + + + + + അർദ്ധരാത്രി + AM + ഉച്ച + PM + പുലർച്ചെ + രാവിലെ + ഉച്ചയ്ക്ക് + ഉച്ചതിരിഞ്ഞ് + വൈകുന്നേരം + സന്ധ്യ + രാത്രി + + + അർദ്ധരാത്രി + AM + ഉച്ച + PM + പുലർച്ചെ + രാവിലെ + ഉച്ചയ്ക്ക് + ഉച്ചതിരിഞ്ഞ് + വൈകുന്നേരം + സന്ധ്യ + രാത്രി + + + അർദ്ധരാത്രി + AM + ഉച്ച + PM + പുലർച്ചെ + രാവിലെ + ഉച്ചയ്ക്ക് + ഉച്ചതിരിഞ്ഞ് + വൈകുന്നേരം + സന്ധ്യ + രാത്രി @@ -1580,7 +1666,7 @@ For terms of use, see http://www.unicode.org/copyright.html - dd/MM/yy + d/M/yy @@ -1645,10 +1731,14 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L - MM-dd - M/d, E - dd-MM + d/M + d/M, E + dd/MM LLL MMM d MMM d, E @@ -1719,10 +1809,10 @@ For terms of use, see http://www.unicode.org/copyright.html d/M, E – d/M, E - MMM–MMM + MMM – MMM - MMM d–d + MMM d – d MMM d – MMM d @@ -1730,7 +1820,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM d, E – MMM d, E - LLLL–LLLL + MMMM – MMMM y – y @@ -1873,6 +1963,9 @@ For terms of use, see http://www.unicode.org/copyright.html വർഷം + കഴിഞ്ഞ വർഷം + ഈ വർ‌ഷം + അടുത്തവർഷം {0} വർഷത്തിൽ {0} വർഷത്തിൽ @@ -1884,6 +1977,9 @@ For terms of use, see http://www.unicode.org/copyright.html വർഷം + കഴിഞ്ഞ വർഷം + ഈ വർ‌ഷം + അടുത്തവർഷം {0} വർഷത്തിൽ {0} വർഷത്തിൽ @@ -1942,6 +2038,9 @@ For terms of use, see http://www.unicode.org/copyright.html മാസം + കഴിഞ്ഞ മാസം + ഈ മാസം + അടുത്ത മാസം {0} മാസത്തിൽ {0} മാസത്തിൽ @@ -1953,6 +2052,9 @@ For terms of use, see http://www.unicode.org/copyright.html മാസം + കഴിഞ്ഞ മാസം + ഈ മാസം + അടുത്ത മാസം {0} മാസത്തിൽ {0} മാസത്തിൽ @@ -1978,6 +2080,9 @@ For terms of use, see http://www.unicode.org/copyright.html ആഴ്ച + കഴിഞ്ഞ ആഴ്‌ച + ഈ ആഴ്ച + അടുത്ത ആഴ്ച {0} ആഴ്ചയിൽ {0} ആഴ്ചയിൽ @@ -1989,6 +2094,9 @@ For terms of use, see http://www.unicode.org/copyright.html ആഴ്ച + കഴിഞ്ഞ ആഴ്‌ച + ഈ ആഴ്ച + അടുത്ത ആഴ്ച {0} ആഴ്ചയിൽ {0} ആഴ്ചയിൽ @@ -2016,6 +2124,11 @@ For terms of use, see http://www.unicode.org/copyright.html ദിവസം + മിനിഞ്ഞാന്ന് + ഇന്നലെ + ഇന്ന് + നാളെ + മറ്റന്നാൾ {0} ദിവസത്തിൽ {0} ദിവസത്തിൽ @@ -2027,6 +2140,11 @@ For terms of use, see http://www.unicode.org/copyright.html ദിവസം + മിനിഞ്ഞാന്ന് + ഇന്നലെ + ഇന്ന് + നാളെ + മറ്റന്നാൾ {0} ദിവസത്തിൽ {0} ദിവസത്തിൽ @@ -2045,14 +2163,14 @@ For terms of use, see http://www.unicode.org/copyright.html അടുത്ത ഞായറാഴ്ച - കഴിഞ്ഞ ഞായറാഴ്ച - ഈ ഞായറാഴ്ച - അടുത്ത ഞായറാഴ്ച + കഴിഞ്ഞ ഞായർ + ഈ ഞായർ + അടുത്ത ഞായർ - കഴിഞ്ഞ ഞായറാഴ്ച - ഈ ഞായറാഴ്ച - അടുത്ത ഞായറാഴ്ച + കഴിഞ്ഞ ഞായർ + ഈ ഞായർ + അടുത്ത ഞായർ കഴിഞ്ഞ തിങ്കളാഴ്ച @@ -2060,14 +2178,14 @@ For terms of use, see http://www.unicode.org/copyright.html അടുത്ത തിങ്കളാഴ്ച - കഴിഞ്ഞ തിങ്കളാഴ്ച - ഈ തിങ്കളാഴ്ച - അടുത്ത തിങ്കളാഴ്ച + കഴിഞ്ഞ തിങ്കൾ + ഈ തിങ്കൾ + അടുത്ത തിങ്കൾ - കഴിഞ്ഞ തിങ്കളാഴ്ച - ഈ തിങ്കളാഴ്ച - അടുത്ത തിങ്കളാഴ്ച + കഴിഞ്ഞ തിങ്കൾ + ഈ തിങ്കൾ + അടുത്ത തിങ്കൾ കഴിഞ്ഞ ചൊവാഴ്ച @@ -2075,14 +2193,14 @@ For terms of use, see http://www.unicode.org/copyright.html അടുത്ത ചൊവാഴ്ച - കഴിഞ്ഞ ചൊവാഴ്ച - ഈ ചൊവാഴ്ച - അടുത്ത ചൊവാഴ്ച + കഴിഞ്ഞ ചൊവ്വ + ഈ ചൊവ്വ + അടുത്ത ചൊവ്വ - കഴിഞ്ഞ ചൊവാഴ്ച - ഈ ചൊവാഴ്ച - അടുത്ത ചൊവാഴ്ച + കഴിഞ്ഞ ചൊവ്വ + ഈ ചൊവ്വ + അടുത്ത ചൊവ്വ കഴിഞ്ഞ ബുധനാഴ്ച @@ -2090,14 +2208,14 @@ For terms of use, see http://www.unicode.org/copyright.html അടുത്ത ബുധനാഴ്ച - കഴിഞ്ഞ ബുധനാഴ്ച - ഈ ബുധനാഴ്ച - അടുത്ത ബുധനാഴ്ച + കഴിഞ്ഞ ബുധൻ + ഈ ബുധൻ + അടുത്ത ബുധൻ - കഴിഞ്ഞ ബുധനാഴ്ച - ഈ ബുധനാഴ്ച - അടുത്ത ബുധനാഴ്ച + കഴിഞ്ഞ ബുധൻ + ഈ ബുധൻ + അടുത്ത ബുധൻ കഴിഞ്ഞ വ്യാഴാഴ്ച @@ -2105,14 +2223,14 @@ For terms of use, see http://www.unicode.org/copyright.html അടുത്ത വ്യാഴാഴ്ച - കഴിഞ്ഞ വ്യാഴാഴ്ച - ഈ വ്യാഴാഴ്ച - അടുത്ത വ്യാഴാഴ്ച + കഴിഞ്ഞ വ്യാഴം + ഈ വ്യാഴം + അടുത്ത വ്യാഴം - കഴിഞ്ഞ വ്യാഴാഴ്ച - ഈ വ്യാഴാഴ്ച - അടുത്ത വ്യാഴാഴ്ച + കഴിഞ്ഞ വ്യാഴം + ഈ വ്യാഴം + അടുത്ത വ്യാഴം കഴിഞ്ഞ വെള്ളിയാഴ്ച @@ -2120,14 +2238,14 @@ For terms of use, see http://www.unicode.org/copyright.html അടുത്ത വെള്ളിയാഴ്ച - കഴിഞ്ഞ വെള്ളിയാഴ്ച - ഈ വെള്ളിയാഴ്ച - അടുത്ത വെള്ളിയാഴ്ച + കഴിഞ്ഞ വെള്ളി + ഈ വെള്ളി + അടുത്ത വെള്ളി - കഴിഞ്ഞ വെള്ളിയാഴ്ച - ഈ വെള്ളിയാഴ്ച - അടുത്ത വെള്ളിയാഴ്ച + കഴിഞ്ഞ വെള്ളി + ഈ വെള്ളി + അടുത്ത വെള്ളി കഴിഞ്ഞ ശനിയാഴ്ച @@ -2135,17 +2253,17 @@ For terms of use, see http://www.unicode.org/copyright.html അടുത്ത ശനിയാഴ്ച - കഴിഞ്ഞ ശനിയാഴ്ച - ഈ ശനിയാഴ്ച - അടുത്ത ശനിയാഴ്ച + കഴിഞ്ഞ ശനി + ഈ ശനി + അടുത്ത ശനി - കഴിഞ്ഞ ശനിയാഴ്ച - ഈ ശനിയാഴ്ച - അടുത്ത ശനിയാഴ്ച + കഴിഞ്ഞ ശനി + ഈ ശനി + അടുത്ത ശനി - am/pm + AM/PM മണിക്കൂർ @@ -2181,7 +2299,7 @@ For terms of use, see http://www.unicode.org/copyright.html - മിനിട്ട് + മിനിറ്റ് {0} മിനിറ്റിൽ {0} മിനിറ്റിൽ @@ -2192,7 +2310,7 @@ For terms of use, see http://www.unicode.org/copyright.html - മിനിറ്റ് + മി. {0} മിനിറ്റിൽ {0} മിനിറ്റിൽ @@ -2203,7 +2321,7 @@ For terms of use, see http://www.unicode.org/copyright.html - മിനിറ്റ് + മി. {0} മിനിറ്റിൽ {0} മിനിറ്റിൽ @@ -2214,7 +2332,7 @@ For terms of use, see http://www.unicode.org/copyright.html - സെക്കൻറ് + സെക്കൻഡ് ഇപ്പോൾ {0} സെക്കൻഡിൽ @@ -2226,7 +2344,7 @@ For terms of use, see http://www.unicode.org/copyright.html - സെക്കൻഡ് + സെ. {0} സെക്കൻഡിൽ {0} സെക്കൻഡിൽ @@ -2237,7 +2355,7 @@ For terms of use, see http://www.unicode.org/copyright.html - സെക്കൻഡ് + സെ. {0} സെക്കൻഡിൽ {0} സെക്കൻഡിൽ @@ -2248,7 +2366,7 @@ For terms of use, see http://www.unicode.org/copyright.html - മേഖല + സമയ മേഖല @@ -2257,7 +2375,7 @@ For terms of use, see http://www.unicode.org/copyright.html ജിഎംടി {0} സമയം {0} ഡേലൈറ്റ് സമയം - {0} സ്റ്റാന്റേഡ് സമയം + {0} സ്റ്റാൻഡേർഡ് സമയം {1} ({0}) അജ്ഞാത നഗരം @@ -2353,7 +2471,7 @@ For terms of use, see http://www.unicode.org/copyright.html ബ്യൂണസ് ഐറിസ് - പാഗോ പോഗോ + പാഗോ പാഗോ വിയന്ന @@ -2605,7 +2723,7 @@ For terms of use, see http://www.unicode.org/copyright.html ബംഗുയി - ബ്രാസവിൽ + ബ്രാസവില്ലി സൂറിച്ച് @@ -3004,7 +3122,7 @@ For terms of use, see http://www.unicode.org/copyright.html മാർട്ടിനിക് - നൌവാൿഷോട്ട് + നൗവാക്‌ഷോട്ട് മൊണ്ടെസരത്ത് @@ -3121,11 +3239,14 @@ For terms of use, see http://www.unicode.org/copyright.html മാർക്യുസാസ് - ഗാന്പിയർ + ഗാമ്പിയർ പോർട്ട് മോഴ്‌സ്ബൈ + + ബോഗൺവില്ലെ + മനില @@ -3136,7 +3257,7 @@ For terms of use, see http://www.unicode.org/copyright.html വാർസോ - മൈക്വെലൻ‌ + മിക്വലൻ പിറ്റ്കയിൻ‌ @@ -3210,6 +3331,9 @@ For terms of use, see http://www.unicode.org/copyright.html ഇർകസ്ക് + + ചീറ്റ + യാക്കറ്റ്സ്‌ക് @@ -3228,6 +3352,9 @@ For terms of use, see http://www.unicode.org/copyright.html മഗഡാൻ + + സ്രിഡ്‌നികോളിംസ്ക് + കാംചട്ക @@ -3241,7 +3368,7 @@ For terms of use, see http://www.unicode.org/copyright.html റിയാദ് - ഗ്വാഡോ കനാൽ + ഗ്വാഡൽകനാൽ മാഹി @@ -3268,7 +3395,7 @@ For terms of use, see http://www.unicode.org/copyright.html ബ്രാട്ടിസ്‍ലാവ - ഫ്രീടൌൺ‌ + ഫ്രീടൗൺ സാൻ മാരിനോ @@ -3566,7 +3693,7 @@ For terms of use, see http://www.unicode.org/copyright.html വടക്കെ അമേരിക്കൻ സെൻട്രൽ സമയം വടക്കെ അമേരിക്കൻ സെൻട്രൽ സ്റ്റാൻഡേർഡ് സമയം - വടക്കെ അമേരിക്കൻ സെൻട്രൽ പകൽ സമയം + വടക്കെ അമേരിക്കൻ സെൻട്രൽ ഡേലൈറ്റ് സമയം @@ -3580,14 +3707,14 @@ For terms of use, see http://www.unicode.org/copyright.html വടക്കെ അമേരിക്കൻ മൌണ്ടൻ സമയം വടക്കെ അമേരിക്കൻ മൗണ്ടൻ സ്റ്റാൻഡേർഡ് സമയം - വടക്കെ അമേരിക്കൻ മൌണ്ടൻ പകൽ സമയം + വടക്കെ അമേരിക്കൻ മൗണ്ടൻ ഡേലൈറ്റ് സമയം വടക്കെ അമേരിക്കൻ പസഫിക് സമയം വടക്കെ അമേരിക്കൻ പസഫിക് സ്റ്റാൻഡേർഡ് സമയം - വടക്കെ അമേരിക്കൻ പസഫിക് പകൽ സമയം + വടക്കെ അമേരിക്കൻ പസഫിക് ഡേലൈറ്റ് സമയം @@ -3622,7 +3749,7 @@ For terms of use, see http://www.unicode.org/copyright.html അറേബ്യൻ സമയം അറേബ്യൻ സ്റ്റാൻഡേർഡ് സമയം - അറേബ്യൻ പകൽ സമയം + അറേബ്യൻ ഡേലൈറ്റ് സമയം @@ -3648,16 +3775,16 @@ For terms of use, see http://www.unicode.org/copyright.html - അറ്റ്ലാൻറിക് സമയം - അറ്റ്ലാൻറിക് സ്റ്റാൻഡേർഡ് സമയം - അറ്റ്ലാൻറിക് പകൽ സമയം + അറ്റ്‌ലാന്റിക് സമയം + അറ്റ്‌ലാന്റിക് സ്റ്റാൻഡേർഡ് സമയം + അറ്റ്‌ലാന്റിക് ഡേലൈറ്റ് സമയം സെൻട്രൽ ഓസ്ട്രേലിയ സമയം ഓസ്ട്രേലിയൻ സെൻട്രൽ സ്റ്റാൻഡേർഡ് സമയം - ഓസ്ട്രേലിയൻ സെൻട്രൽ പകൽ സമയം + ഓസ്ട്രേലിയൻ സെൻട്രൽ ഡേലൈറ്റ് സമയം @@ -3754,7 +3881,7 @@ For terms of use, see http://www.unicode.org/copyright.html ചൈന സമയം ചൈന സ്റ്റാൻഡേർഡ് സമയം - ചൈന പകൽ സമയം + ചൈന ഡേലൈറ്റ് സമയം @@ -3826,19 +3953,19 @@ For terms of use, see http://www.unicode.org/copyright.html സെൻട്രൽ യൂറോപ്യൻ സമയം സെൻട്രൽ യൂറോപ്യൻ സ്റ്റാൻഡേർഡ് സമയം - സെൻട്രൽ യൂറോപ്യൻ വേനൽക്കാല സമയം + സെൻട്രൽ യൂറോപ്യൻ ഗ്രീഷ്മകാല സമയം കിഴക്കൻ യൂറോപ്യൻ സമയം കിഴക്കൻ യൂറോപ്യൻ സ്റ്റാൻഡേർഡ് സമയം - കിഴക്കൻ യൂറോപ്യൻ വേനൽക്കാല സമയം + കിഴക്കൻ യൂറോപ്യൻ ഗ്രീഷ്മകാല സമയം - ഇനിയും-കിഴക്കൻ യൂറോപ്യൻ സമയം + കിഴക്കേയറ്റത്തെ യൂറോപ്യൻ സമയം @@ -3986,7 +4113,7 @@ For terms of use, see http://www.unicode.org/copyright.html ഇറാൻ സമയം ഇറാൻ സ്റ്റാൻഡേർഡ് സമയം - ഇറാൻ പകൽ സമയം + ഇറാൻ ഡേലൈറ്റ് സമയം @@ -4007,7 +4134,7 @@ For terms of use, see http://www.unicode.org/copyright.html ജപ്പാൻ സമയം ജപ്പാൻ സ്റ്റാൻഡേർഡ് സമയം - ജപ്പാൻ പകൽ സമയം + ജപ്പാൻ ഡേലൈറ്റ് സമയം @@ -4031,7 +4158,7 @@ For terms of use, see http://www.unicode.org/copyright.html കൊറിയൻ സമയം കൊറിയൻ സ്റ്റാൻഡേർഡ് സമയം - കൊറിയൻ പകൽ സമയം + കൊറിയൻ ഡേലൈറ്റ് സമയം @@ -4065,7 +4192,7 @@ For terms of use, see http://www.unicode.org/copyright.html ലോർഡ് ഹോവ് സമയം ലോർഡ് ഹോവ് സ്റ്റാൻഡേർഡ് സമയം - ലോർഡ് ഹോവ് പകൽ സമയം + ലോർഡ് ഹോവ് ഡേലൈറ്റ് സമയം @@ -4129,7 +4256,7 @@ For terms of use, see http://www.unicode.org/copyright.html മെക്സിക്കൻ പസഫിക് സമയം - മെക്സിക്കൻ പസഫിക് സാധാരണ സമയം + മെക്‌സിക്കൻ പസഫിക് സ്റ്റാൻഡേർഡ് സമയം മെക്സിക്കൻ പസഫിക് ഡേലൈറ്റ് സമയം @@ -4178,9 +4305,9 @@ For terms of use, see http://www.unicode.org/copyright.html - ന്യൂഫൗണ്ട്ലാൻഡ് സമയം - ന്യൂഫൗണ്ട്ലാൻഡ് സ്റ്റാൻഡേർഡ് സമയം - ന്യൂഫൗണ്ട്ലാൻഡ് ഡേലൈറ്റ് സമയം + ന്യൂഫൗണ്ട്‌ലാന്റ് സമയം + ന്യൂഫൗണ്ട്‌ലാന്റ് സ്റ്റാൻഡേർഡ് സമയം + ന്യൂഫൗണ്ട്‌ലാന്റ് ഡേലൈറ്റ് സമയം @@ -4356,7 +4483,7 @@ For terms of use, see http://www.unicode.org/copyright.html തായ്‌പെയ് സമയം തായ്‌പെയ് സ്റ്റാൻഡേർഡ് സമയം - തായ്‌പെയ് പകൽ സമയം + തായ്‌പെയ് ഡേലൈറ്റ് സമയം @@ -4582,6 +4709,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0B + ¤0B + ¤00B + ¤00B + ¤000B + ¤000B + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + {0} {1} {0} {1} @@ -4631,6 +4786,7 @@ For terms of use, see http://www.unicode.org/copyright.html അംഗോളൻ ക്വാൻസ അംഗോളൻ ക്വാൻസ AOA + Kz അംഗോളൻ ‍ക്വാൻസ (1977–1990) @@ -4703,6 +4859,7 @@ For terms of use, see http://www.unicode.org/copyright.html ബോസ്‌നിയ-ഹെർസഗോവിന കൺവേർട്ടബിൾ മാർക്ക് ബോസ്‌നിയ-ഹെർസഗോവിന കൺവേർട്ടബിൾ മാർക്ക് BAM + KM ബാർബഡോസ് ഡോളർ @@ -4775,6 +4932,7 @@ For terms of use, see http://www.unicode.org/copyright.html ബൊളീവിയൻ ബൊളിവിയാനോ ബൊളീവിയൻ ബൊളിവിയാനോ BOB + Bs ബൊളീവിയൻ പെയ്സോ @@ -4841,6 +4999,7 @@ For terms of use, see http://www.unicode.org/copyright.html ബോട്‌സ്വാനൻ പ്യുല ബോട്‌സ്വാനൻ പ്യുല BWP + P ബെലാറഷ്യൻ ന്യൂ റൂബിൾ (1994–1999) @@ -4882,7 +5041,7 @@ For terms of use, see http://www.unicode.org/copyright.html സ്വിസ് ഫ്രാങ്ക് സ്വിസ് ഫ്രാങ്ക് - സ്വിസ് ഫ്രാങ്ക്സ് + സ്വിസ് ഫ്രാങ്ക് CHF @@ -4943,6 +5102,7 @@ For terms of use, see http://www.unicode.org/copyright.html ക്യൂബൻ കൺവേർട്ടബിൾ പെസോ ക്യൂബൻ കൺവേർട്ടബിൾ പെസോ CUC + $ ക്യൂബൻ പെസോ @@ -4967,6 +5127,7 @@ For terms of use, see http://www.unicode.org/copyright.html ചെക്ക് റിപ്പബ്ലിക് കൊരുണ ചെക്ക് റിപ്പബ്ലിക് കൊരുണ CZK + കിഴക്കൻ ജർമൻ ഓസ്റ്റ്മാർക്ക് @@ -4989,6 +5150,7 @@ For terms of use, see http://www.unicode.org/copyright.html ഡാനിഷ് ക്രോണെ ഡാനിഷ് ക്രോണെ DKK + kr ഡൊമിനിക്കൻ പെസോ @@ -5023,6 +5185,7 @@ For terms of use, see http://www.unicode.org/copyright.html ഈജിപ്‌ഷ്യൻ പൗണ്ട് ഈജിപ്‌ഷ്യൻ പൗണ്ട് EGP + എറിത്രിയൻ നക്ഫ @@ -5075,6 +5238,7 @@ For terms of use, see http://www.unicode.org/copyright.html ഫാക്ക്‌ലാന്റ് ദ്വീപുകളുടെ പൗണ്ട് ഫാക്ക്‌ലാന്റ് ദ്വീപുകളുടെ പൗണ്ട് FKP + £ ഫ്രാങ്ക് @@ -5082,9 +5246,9 @@ For terms of use, see http://www.unicode.org/copyright.html ഫ്രെഞ്ച് ഫ്രാങ്ക്സ് - ബ്രിട്ടീഷ് പൗണ്ട് സ്‌റ്റെർലിംഗ് - ബ്രിട്ടീഷ് പൗണ്ട് സ്‌റ്റെർലിംഗ് - ബ്രിട്ടീഷ് പൗണ്ട് സ്‌റ്റെർലിംഗ് + ബ്രിട്ടീഷ് പൗണ്ട് + ബ്രിട്ടീഷ് പൗണ്ട് + ബ്രിട്ടീഷ് പൗണ്ട് £ £ @@ -5098,6 +5262,7 @@ For terms of use, see http://www.unicode.org/copyright.html ജോർജ്ജിയൻ ലാറി ജോർജ്ജിയൻ ലാറി GEL + ഘാന കെഡി (1979–2007) @@ -5128,6 +5293,7 @@ For terms of use, see http://www.unicode.org/copyright.html ഗിനിയൻ ഫ്രാങ്ക് ഗിനിയൻ ഫ്രാങ്ക് GNF + FG ഗിനിയ സൈലി @@ -5149,6 +5315,7 @@ For terms of use, see http://www.unicode.org/copyright.html ഗ്വാട്ടിമാലൻ ക്വെറ്റ്‌സൽ ഗ്വാട്ടിമാലൻ ക്വെറ്റ്‌സൽ GTQ + Q പോർച്ചുഗീസ് ഗിനി എസ്ക്യൂഡോ @@ -5179,6 +5346,7 @@ For terms of use, see http://www.unicode.org/copyright.html ഹോണ്ടുറൻ ലെംപിറ ഹോണ്ടുറൻ ലെംപിറ HNL + L ക്രൊയേഷ്യൻ ദിനാർ @@ -5190,6 +5358,7 @@ For terms of use, see http://www.unicode.org/copyright.html ക്രൊയേഷൻ ക്യുന ക്രൊയേഷൻ ക്യുന HRK + kn ഹെയ്‌തിയൻ ഗൂർഡ് @@ -5202,12 +5371,14 @@ For terms of use, see http://www.unicode.org/copyright.html ഹംഗേറിയൻ ഫോറിന്റ് ഹംഗേറിയൻ ഫോറിന്റ് HUF + Ft ഇന്തോനേഷ്യൻ റുപിയ ഇന്തോനേഷ്യൻ റുപിയ ഇന്തോനേഷ്യൻ റുപിയ IDR + Rp ഐറിഷ് പൌണ്ട് @@ -5250,6 +5421,7 @@ For terms of use, see http://www.unicode.org/copyright.html ഐസ്‌ലാൻഡിക് ക്രോണ ഐസ്‌ലാൻഡിക് ക്രോണ ISK + kr ഇറ്റാലിയൻ ലിറ @@ -5270,7 +5442,7 @@ For terms of use, see http://www.unicode.org/copyright.html JOD - ജപ്പാനീസ് യെൻ + ജാപ്പനീസ് യെൻ ജാപ്പനീസ് യെൻ ജാപ്പനീസ് യെൻ ¥ @@ -5300,12 +5472,14 @@ For terms of use, see http://www.unicode.org/copyright.html കൊമോറിയൻ ഫ്രാങ്ക് കൊമോറിയൻ ഫ്രാങ്ക് KMF + CF ഉത്തര കൊറിയൻ വോൺ ഉത്തര കൊറിയൻ വോൺ ഉത്തര കൊറിയൻ വോൺ KPW + ദക്ഷിണ കൊറിയൻ വോൺ @@ -5346,12 +5520,14 @@ For terms of use, see http://www.unicode.org/copyright.html ലെബനീസ് പൗണ്ട് ലെബനീസ് പൗണ്ട് LBP + ശ്രീലങ്കൻ റുപ്പീ ശ്രീലങ്കൻ റുപ്പീ ശ്രീലങ്കൻ റുപ്പീ LKR + Rs ലൈബീരിയൻ ഡോളർ @@ -5428,6 +5604,7 @@ For terms of use, see http://www.unicode.org/copyright.html മഡഗാസി ഏരിയറി മഡഗാസി ഏരിയറി MGA + Ar മഡഗാസ്കർ ഫ്രാങ്ക് @@ -5446,6 +5623,7 @@ For terms of use, see http://www.unicode.org/copyright.html മ്യാൻമാർ ക്യാട് മ്യാൻമാർ ക്യാട് MMK + K മംഗോളിയൻ തുഗ്രിക് @@ -5477,6 +5655,7 @@ For terms of use, see http://www.unicode.org/copyright.html മൗറീഷ്യൻ റുപ്പീ മൗറീഷ്യൻ റുപ്പീ MUR + Rs മാൽദീവിയൻ റുഫിയ @@ -5512,6 +5691,7 @@ For terms of use, see http://www.unicode.org/copyright.html മലേഷ്യൻ റിംഗിറ്റ് മലേഷ്യൻ റിംഗിറ്റ് MYR + RM മൊസാന്പിക്ക് എസ്ക്യുഡോ @@ -5547,6 +5727,7 @@ For terms of use, see http://www.unicode.org/copyright.html നിക്കരാഗ്വൻ കോർഡോബ നിക്കരാഗ്വൻ കോർഡോബ NIO + C$ നെതർലൻഡ്സ് ഗിൽഡർ @@ -5558,12 +5739,14 @@ For terms of use, see http://www.unicode.org/copyright.html നോർവീജിയൻ ക്രോണെ നോർവീജിയൻ ക്രോണെ NOK + kr നേപ്പാളീസ് റുപ്പീ നേപ്പാളീസ് റുപ്പീ നേപ്പാളീസ് റുപ്പീ NPR + Rs ന്യൂസിലാന്റ് ഡോളർ @@ -5618,12 +5801,14 @@ For terms of use, see http://www.unicode.org/copyright.html പാക്കിസ്ഥാനി റുപ്പീ പാക്കിസ്ഥാനി റുപ്പീ PKR + Rs പോളിഷ് സ്ലോട്ടി പോളിഷ് സ്ലോട്ടി പോളിഷ് സ്ലോട്ടി PLN + പോളിഷ് സ്ലോട്ടി (1950–1995) @@ -5667,6 +5852,7 @@ For terms of use, see http://www.unicode.org/copyright.html റഷ്യൻ റൂബിൾ റഷ്യൻ റൂബിൾ RUB + റഷ്യൻ റൂബിൾ (1991–1998) @@ -5676,6 +5862,7 @@ For terms of use, see http://www.unicode.org/copyright.html റുവാണ്ടൻ ഫ്രാങ്ക് റുവാണ്ടൻ ഫ്രാങ്ക് RWF + RF സൗദി റിയാൽ @@ -5713,6 +5900,7 @@ For terms of use, see http://www.unicode.org/copyright.html സ്വീഡിഷ് ക്രോണ സ്വീഡിഷ് ക്രോണ SEK + kr സിംഗപ്പൂർ ഡോളർ @@ -5726,6 +5914,7 @@ For terms of use, see http://www.unicode.org/copyright.html സെന്റ് ഹെലീന പൗണ്ട് സെന്റ് ഹെലീന പൗണ്ട് SHP + £ സ്ലൊവേനിയ റ്റോളർ @@ -5767,6 +5956,7 @@ For terms of use, see http://www.unicode.org/copyright.html സാവോ ടോമി ആൻഡ് പ്രിൻസിപെ ഡോബ്ര സാവോ ടോമി ആൻഡ് പ്രിൻസിപെ ഡോബ്ര STD + Db സോവിയറ്റ് റൂബിൾ @@ -5779,6 +5969,7 @@ For terms of use, see http://www.unicode.org/copyright.html സിറിയൻ പൗണ്ട് സിറിയൻ പൗണ്ട് SYP + £ സ്വാസി ലിലാംഗനി @@ -5791,6 +5982,7 @@ For terms of use, see http://www.unicode.org/copyright.html തായ് ബട്ട് തായ് ബട്ട് ฿ + ฿ താജിക്കിസ്ഥാൻ റൂബിൾ @@ -5825,6 +6017,7 @@ For terms of use, see http://www.unicode.org/copyright.html ടോംഗൻ പാംഗ ടോംഗൻ പാംഗ TOP + T$ തിമോർ എസ്ക്യൂഡോ @@ -5842,6 +6035,7 @@ For terms of use, see http://www.unicode.org/copyright.html ടർക്കിഷ് ലിറ TRY + TL ട്രിനിഡാഡ് അന്റ് ടുബാഗോ ഡോളർ @@ -5886,8 +6080,8 @@ For terms of use, see http://www.unicode.org/copyright.html യു.എസ്. ഡോളർ - യു.എസ് ഡോളർ - യു.എസ് ഡോളർ + യു.എസ്. ഡോളർ + യു.എസ്. ഡോളർ $ $ @@ -5932,6 +6126,7 @@ For terms of use, see http://www.unicode.org/copyright.html വെനിസ്വേലൻ ബൊളീവർ വെനിസ്വേലൻ ബൊളീവർ VEF + Bs വിയറ്റ്നാമീസ് ഡോങ് @@ -5953,9 +6148,9 @@ For terms of use, see http://www.unicode.org/copyright.html WST - CFA ഫ്രാങ്ക് BEAC - CFA ഫ്രാങ്ക് BEAC - CFA ഫ്രാങ്ക് BEAC + മദ്ധ്യ ആഫ്രിക്കൻ [CFA] ഫ്രാങ്ക് + മദ്ധ്യ ആഫ്രിക്കൻ [CFA] ഫ്രാങ്ക് + മദ്ധ്യ ആഫ്രിക്കൻ [CFA] ഫ്രാങ്ക് FCFA @@ -5993,6 +6188,7 @@ For terms of use, see http://www.unicode.org/copyright.html കിഴക്കൻ കരീബിയൻ ഡോളർ കിഴക്കൻ കരീബിയൻ ഡോളർ EC$ + $ സ്പെഷ്യൽ ഡ്രോയിംഗ് റൈറ്റ്സ് @@ -6015,9 +6211,9 @@ For terms of use, see http://www.unicode.org/copyright.html ഫ്രെഞ്ച് UIC-ഫ്രാങ്ക്സ് - CFA ഫ്രാങ്ക് BCEAO - CFA ഫ്രാങ്ക് BCEAO - CFA ഫ്രാങ്ക് BCEAO + പശ്ചിമ ആഫ്രിക്കൻ [CFA] ഫ്രാങ്ക് + പശ്ചിമ ആഫ്രിക്കൻ [CFA] ഫ്രാങ്ക് + പശ്ചിമ ആഫ്രിക്കൻ [CFA] ഫ്രാങ്ക് CFA @@ -6087,6 +6283,7 @@ For terms of use, see http://www.unicode.org/copyright.html ദക്ഷിണാഫ്രിക്കൻ റാൻഡ് ദക്ഷിണാഫ്രിക്കൻ റാൻഡ് ZAR + R സാംബിയൻ ക്വാച (1968–2012) @@ -6098,6 +6295,7 @@ For terms of use, see http://www.unicode.org/copyright.html സാംബിയൻ ക്വാച്ച സാംബിയൻ ക്വാച്ച ZMW + ZK സൈറിയൻ ന്യൂ സൈർ @@ -6135,6 +6333,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} മീറ്റർ/സെക്കൻഡ്² {0} മീറ്റർ/സെക്കൻഡ്² + + റെവല്യൂഷൻ + {0} റെവല്യൂഷൻ + {0} റെവല്യൂഷൻ + + + റേഡിയൻ + {0} റേഡിയൻ + {0} റേഡിയൻ + + + ഡിഗ്രി + {0} ഡിഗ്രി + {0} ഡിഗ്രി + ആർക്ക്മിനിറ്റ് {0} ആർക്ക്മിനിറ്റ് @@ -6145,30 +6358,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ആർക്ക്സെക്കൻഡ് {0} ആർക്ക്സെക്കൻഡ് - - ഡിഗ്രി - {0} ഡിഗ്രി - {0} ഡിഗ്രി - - - റേഡിയൻ - {0} റേഡിയൻ - {0} റേഡിയൻ - - - ഏക്കർ - {0} ഏക്കർ - {0} ഏക്കർ + + ചതുരശ്ര കിലോമീറ്റർ + {0} ചതുരശ്ര കിലോമീറ്റർ + {0} ചതുരശ്ര കിലോമീറ്റർ ഹെക്‌ടർ {0} ഹെക്‌ടർ {0} ഹെക്‌ടർ + + ചതുരശ്ര മീറ്റർ + {0} ചതുരശ്ര മീറ്റർ + {0} ചതുരശ്ര മീറ്റർ + {0} / ചതുരശ്ര മീറ്റർ + ചതുരശ്ര സെന്റിമീറ്റർ {0} ചതുരശ്ര സെന്റിമീറ്റർ {0} ചതുരശ്ര സെന്റിമീറ്റർ + {0} / ചതുരശ്ര സെന്റിമീറ്റർ + + + ചതുരശ്ര മൈൽ + {0} ചതുരശ്ര മൈൽ + {0} ചതുരശ്ര മൈൽ + + + ഏക്കർ + {0} ഏക്കർ + {0} ഏക്കർ + + + ചതുരശ്ര വാര + {0} ചതുരശ്ര വാര + {0} ചതുരശ്ര വാര ചതുരശ്ര അടി @@ -6179,91 +6404,106 @@ For terms of use, see http://www.unicode.org/copyright.html ചതുരശ്ര ഇഞ്ച് {0} ചതുരശ്ര ഇഞ്ച് {0} ചതുരശ്ര ഇഞ്ച് + {0} / ചതുരശ്ര ഇഞ്ച് - - ചതുരശ്ര കിലോമീറ്റർ - {0} ചതുരശ്ര കിലോമീറ്റർ - {0} ചതുരശ്ര കിലോമീറ്റർ - - - ചതുരശ്ര മീറ്റർ - {0} ചതുരശ്ര മീറ്റർ - {0} ചതുരശ്ര മീറ്റർ - - - ചതുരശ്ര മൈൽ - {0} ചതുരശ്ര മൈൽ - {0} ചതുരശ്ര മൈൽ - - - ചതുരശ്ര വാര - {0} ചതുരശ്ര വാര - {0} ചതുരശ്ര വാര + + ക്യാരറ്റ് + {0} ക്യാരറ്റ് + {0} ക്യാരറ്റ് ലിറ്റർ/കിലോമീറ്റർ {0} ലിറ്റർ/കിലോമീറ്റർ {0} ലിറ്റർ/കിലോമീറ്റർ + + ലിറ്റർ/100 കിലോമീറ്റർ + {0} ലിറ്റർ/100 കിലോമീറ്റർ + {0} ലിറ്റർ/100 കിലോമീറ്റർ + മൈൽ/ഗാലൻ {0} മൈൽ/ഗാലൻ {0} മൈൽ/ഗാലൻ - - ബിറ്റ് - {0} ബിറ്റ് - {0} ബിറ്റ് - - - ബൈറ്റ് - {0} ബൈറ്റ് - {0} ബൈറ്റ് - - - ജിഗാബിറ്റ് - {0} ജിഗാബിറ്റ് - {0} ജിഗാബിറ്റ് - - - ജിഗാബൈറ്റ് - {0} ജിഗാബൈറ്റ് - {0} ജിഗാബൈറ്റ് - - - കിലോബിറ്റ് - {0} കിലോബിറ്റ് - {0} കിലോബിറ്റ് - - - കിലോബൈറ്റ് - {0} കിലോബൈറ്റ് - {0} കിലോബൈറ്റ് - - - മെഗാബിറ്റ് - {0} മെഗാബിറ്റ് - {0} മെഗാബിറ്റ് - - - മെഗാബൈറ്റ് - {0} മെഗാബൈറ്റ് - {0} മെഗാബൈറ്റ് - - - ടെറാബിറ്റ് - {0} ടെറാബിറ്റ് - {0} ടെറാബിറ്റ് - ടെറാബൈറ്റ് {0} ടെറാബൈറ്റ് {0} ടെറാബൈറ്റ് + + ടെറാബിറ്റ് + {0} ടെറാബിറ്റ് + {0} ടെറാബിറ്റ് + + + ജിഗാബൈറ്റ് + {0} ജിഗാബൈറ്റ് + {0} ജിഗാബൈറ്റ് + + + ജിഗാബിറ്റ് + {0} ജിഗാബിറ്റ് + {0} ജിഗാബിറ്റ് + + + മെഗാബൈറ്റ് + {0} മെഗാബൈറ്റ് + {0} മെഗാബൈറ്റ് + + + മെഗാബിറ്റ് + {0} മെഗാബിറ്റ് + {0} മെഗാബിറ്റ് + + + കിലോബൈറ്റ് + {0} കിലോബൈറ്റ് + {0} കിലോബൈറ്റ് + + + കിലോബിറ്റ് + {0} കിലോബിറ്റ് + {0} കിലോബിറ്റ് + + + ബൈറ്റ് + {0} ബൈറ്റ് + {0} ബൈറ്റ് + + + ബിറ്റ് + {0} ബിറ്റ് + {0} ബിറ്റ് + + + നൂറ്റാണ്ടുകൾ + {0} നൂറ്റാണ്ട് + {0} നൂറ്റാണ്ടുകൾ + + + വർഷം + {0} വർഷം + {0} വർഷം + {0} / വർഷം + + + മാസം + {0} മാസം + {0} മാസം + {0} / മാസം + + + ആഴ്ച + {0} ആഴ്ച + {0} ആഴ്ച + {0} / ആഴ്ച + ദിവസം {0} ദിവസം {0} ദിവസം + {0} / ദിവസം മണിക്കൂർ @@ -6271,30 +6511,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} മണിക്കൂർ {0} / മണിക്കൂർ - - മൈക്രോസെക്കൻഡ് - {0} മൈക്രോസെക്കൻഡ് - {0} മൈക്രോസെക്കൻഡ് - - - മില്ലിസെക്കൻഡ് - {0} മില്ലിസെക്കൻഡ് - {0} മില്ലിസെക്കൻഡ് - മിനിറ്റ് {0} മിനിറ്റ് {0} മിനിറ്റ് - - - മാസം - {0} മാസം - {0} മാസം - - - നാനോസെക്കൻഡ് - {0} നാനോസെക്കൻഡ് - {0} നാനോസെക്കൻഡ് + {0} / മിനിറ്റ് സെക്കൻഡ് @@ -6302,15 +6523,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} സെക്കൻഡ് {0} / സെക്കൻഡ് - - ആഴ്ച - {0} ആഴ്ച - {0} ആഴ്ച + + മില്ലിസെക്കൻഡ് + {0} മില്ലിസെക്കൻഡ് + {0} മില്ലിസെക്കൻഡ് - - വർഷം - {0} വർഷം - {0} വർഷം + + മൈക്രോസെക്കൻഡ് + {0} മൈക്രോസെക്കൻഡ് + {0} മൈക്രോസെക്കൻഡ് + + + നാനോസെക്കൻഡ് + {0} നാനോസെക്കൻഡ് + {0} നാനോസെക്കൻഡ് ആമ്പിയർ @@ -6332,6 +6558,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} വോൾട്ട് {0} വോൾട്ട് + + കിലോകലോറി + {0} കിലോകലോറി + {0} കിലോകലോറി + കലോറി {0} കലോറി @@ -6342,21 +6573,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} കലോറി {0} കലോറി - - ജൂൾ - {0} ജൂൾ - {0} ജൂൾ - - - കിലോകലോറി - {0} കിലോകലോറി - {0} കിലോകലോറി - കിലോജൂൾ {0} കിലോജൂൾ {0} കിലോജൂൾ + + ജൂൾ + {0} ജൂൾ + {0} ജൂൾ + കിലോവാട്ട്/മണിക്കൂർ {0} കിലോവാട്ട്/മണിക്കൂർ @@ -6367,201 +6593,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ജിഗാഹെർട്സ് {0} ജിഗാഹെർട്സ് - - ഹെർട്സ് - {0} ഹെർട്സ് - {0} ഹെർട്സ് + + മെഗാഹെർട്സ് + {0} മെഗാഹെർട്സ് + {0} മെഗാഹെർട്സ് കിലോഹെർട്സ് {0} കിലോഹെർട്സ് {0} കിലോഹെർട്സ് - - മെഗാഹെർട്സ് - {0} മെഗാഹെർട്സ് - {0} മെഗാഹെർട്സ് + + ഹെർട്സ് + {0} ഹെർട്സ് + {0} ഹെർട്സ് - - ജ്യോതിശാസ്‌ത്ര യൂണിറ്റ് - {0} ജ്യോതിശാസ്‌ത്ര യൂണിറ്റ് - {0} ജ്യോതിശാസ്‌ത്ര യൂണിറ്റ് + + കിലോമീറ്റർ + {0} കിലോമീറ്റർ + {0} കിലോമീറ്റർ + {0} / കിലോമീറ്റർ - - സെന്റീമീറ്റർ - {0} സെന്റീമീറ്റർ - {0} സെന്റീമീറ്റർ + + മീറ്റർ + {0} മീറ്റർ + {0} മീറ്റർ + {0} / മീറ്റർ ഡെസീമീറ്റർ {0} ഡെസീമീറ്റർ {0} ഡെസീമീറ്റർ - - അടി - {0} അടി - {0} അടി - - - ഇഞ്ച് - {0} ഇഞ്ച് - {0} ഇഞ്ച് - - - കിലോമീറ്റർ - {0} കിലോമീറ്റർ - {0} കിലോമീറ്റർ - - - പ്രകാശവർഷം - {0} പ്രകാശവർഷം - {0} പ്രകാശവർഷം - - - മീറ്റർ - {0} മീറ്റർ - {0} മീറ്റർ - - - മൈക്രോമീറ്റർ - {0} മൈക്രോമീറ്റർ - {0} മൈക്രോമീറ്റർ - - - മൈൽ - {0} മൈൽ - {0} മൈൽ + + സെന്റീമീറ്റർ + {0} സെന്റീമീറ്റർ + {0} സെന്റീമീറ്റർ + {0} / സെന്റിമീറ്റർ മില്ലീമീറ്റർ {0} മില്ലീമീറ്റർ {0} മില്ലീമീറ്റർ + + മൈക്രോമീറ്റർ + {0} മൈക്രോമീറ്റർ + {0} മൈക്രോമീറ്റർ + നാനോമീറ്റർ {0} നാനോമീറ്റർ {0} നാനോമീറ്റർ - - നോട്ടിക്കൽ മൈൽ - {0} നോട്ടിക്കൽ മൈൽ - {0} നോട്ടിക്കൽ മൈൽ - - - പാർസെക് - {0} പാർസെക് - {0} പാർസെക് - പൈക്കോമീറ്റർ {0} പൈക്കോമീറ്റർ {0} പൈക്കോമീറ്റർ + + മൈൽ + {0} മൈൽ + {0} മൈൽ + വാര {0} വാര {0} വാര + + അടി + {0} അടി + {0} അടി + {0} / അടി + + + ഇഞ്ച് + {0} ഇഞ്ച് + {0} ഇഞ്ച് + {0} / ഇഞ്ച് + + + പാർസെക് + {0} പാർസെക് + {0} പാർസെക് + + + പ്രകാശവർഷം + {0} പ്രകാശവർഷം + {0} പ്രകാശവർഷം + + + ജ്യോതിശാസ്‌ത്ര യൂണിറ്റ് + {0} ജ്യോതിശാസ്‌ത്ര യൂണിറ്റ് + {0} ജ്യോതിശാസ്‌ത്ര യൂണിറ്റ് + + + നോട്ടിക്കൽ മൈൽ + {0} നോട്ടിക്കൽ മൈൽ + {0} നോട്ടിക്കൽ മൈൽ + + + സ്കാൻഡിനേവിയൻ മൈൽ + {0} സ്കാൻഡിനേവിയൻ മൈൽ + {0} സ്കാൻഡിനേവിയൻ മൈൽ + ലക്സ് {0} ലക്സ് {0} ലക്സ് - - ക്യാരറ്റ് - {0} ക്യാരറ്റ് - {0} ക്യാരറ്റ് - - - ഗ്രാം - {0} ഗ്രാം - {0} ഗ്രാം - - - കിലോഗ്രാം - {0} കിലോഗ്രാം - {0} കിലോഗ്രാം - മെട്രിക് ടൺ {0} മെട്രിക് ടൺ {0} മെട്രിക് ടൺ - - മൈക്രോഗ്രാം - {0} മൈക്രോഗ്രാം - {0} മൈക്രോഗ്രാം + + കിലോഗ്രാം + {0} കിലോഗ്രാം + {0} കിലോഗ്രാം + {0}/കിലോഗ്രാം + + + ഗ്രാം + {0} ഗ്രാം + {0} ഗ്രാം + {0}/ഗ്രാം മില്ലിഗ്രാം {0} മില്ലിഗ്രാം {0} മില്ലിഗ്രാം - - ഔൺസ് - {0} ഔൺസ് - {0} ഔൺസ് - - - ട്രോയ് ഔൺസ് - {0} ട്രോയ് ഔൺസ് - {0} ട്രോയ് ഔൺസ് - - - പൗണ്ട് - {0} പൗണ്ട് - {0} പൗണ്ട് + + മൈക്രോഗ്രാം + {0} മൈക്രോഗ്രാം + {0} മൈക്രോഗ്രാം ടൺ {0} ടൺ {0} ടൺ + + പൗണ്ട് + {0} പൗണ്ട് + {0} പൗണ്ട് + {0}/പൗണ്ട് + + + ഔൺസ് + {0} ഔൺസ് + {0} ഔൺസ് + {0}/ഔൺസ് + + + ട്രോയ് ഔൺസ് + {0} ട്രോയ് ഔൺസ് + {0} ട്രോയ് ഔൺസ് + + + ക്യാരറ്റ് + {0} ക്യാരറ്റ് + {0} ക്യാരറ്റ് + ജിഗാവാട്ട് {0} ജിഗാവാട്ട് {0} ജിഗാവാട്ട് - - കുതിരശക്തി - {0} കുതിരശക്തി - {0} കുതിരശക്തി - - - കിലോവാട്ട് - {0} കിലോവാട്ട് - {0} കിലോവാട്ട് - മെഗാവാട്ട് {0} മെഗാവാട്ട് {0} മെഗാവാട്ട് - - മില്ലിവാട്ട് - {0} മില്ലിവാട്ട് - {0} മില്ലിവാട്ട് + + കിലോവാട്ട് + {0} കിലോവാട്ട് + {0} കിലോവാട്ട് വാട്ട് {0} വാട്ട് {0} വാട്ട് + + മില്ലിവാട്ട് + {0} മില്ലിവാട്ട് + {0} മില്ലിവാട്ട് + + + കുതിരശക്തി + {0} കുതിരശക്തി + {0} കുതിരശക്തി + ഹെക്‌ടോപാസ്‌ക്കൽ {0} ഹെക്‌ടോപാസ്‌ക്കൽ {0} ഹെക്‌ടോപാസ്‌ക്കൽ - - ഇഞ്ച് ഓഫ് മെർക്കുറി - {0} ഇഞ്ച് ഓഫ് മെർക്കുറി - {0} ഇഞ്ച് ഓഫ് മെർക്കുറി - - - മില്ലിബാർ - {0} മില്ലിബാർ - {0} മില്ലിബാർ - മില്ലീമീറ്റർ മെർക്കുറി {0} മില്ലീമീറ്റർ മെർക്കുറി @@ -6572,10 +6802,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ചതുരശ്ര ഇഞ്ചിലുള്ള റാത്തൽ {0} ചതുരശ്ര ഇഞ്ചിലുള്ള റാത്തൽ - - ക്യാരറ്റ് - {0} ക്യാരറ്റ് - {0} ക്യാരറ്റ് + + ഇഞ്ച് ഓഫ് മെർക്കുറി + {0} ഇഞ്ച് ഓഫ് മെർക്കുറി + {0} ഇഞ്ച് ഓഫ് മെർക്കുറി + + + മില്ലിബാർ + {0} മില്ലിബാർ + {0} മില്ലിബാർ കിലോമീറ്റർ/മണിക്കൂർ @@ -6592,6 +6827,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} മൈൽ/മണിക്കൂർ {0} മൈൽ/മണിക്കൂർ + + നോട്ട് + {0} നോട്ട് + {0} നോട്ട് + + + ° + {0}° + {0}° + ഡിഗ്രി സെൽഷ്യസ് {0} ഡിഗ്രി സെൽഷ്യസ് @@ -6607,31 +6852,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} കെൽവിൻ {0} കെൽവിൻ - - ഏക്കർ അടി - {0} ഏക്കർ അടി - {0} ഏക്കർ അടി - - - സെന്റീലിറ്റർ - {0} സെന്റീലിറ്റർ - {0} സെന്റീലിറ്റർ - - - ക്യൂബിക് സെന്റീമീറ്റർ - {0} ക്യൂബിക് സെന്റീമീറ്റർ - {0} ക്യൂബിക് സെന്റീമീറ്റർ - - - ക്യൂബിക് അടി - {0} ക്യൂബിക് അടി - {0} ക്യൂബിക് അടി - - - ക്യൂബിക് ഇഞ്ച് - {0} ക്യൂബിക് ഇഞ്ച് - {0} ക്യൂബിക് ഇഞ്ച് - ക്യൂബിക് കിലോമീറ്റർ {0} ക്യൂബിക് കിലോമീറ്റർ @@ -6641,6 +6861,13 @@ For terms of use, see http://www.unicode.org/copyright.html ക്യൂബിക് മീറ്റർ {0} ക്യൂബിക് മീറ്റർ {0} ക്യൂബിക് മീറ്റർ + {0} / ക്യൂബിക് മീറ്റർ + + + ക്യൂബിക് സെന്റീമീറ്റർ + {0} ക്യൂബിക് സെന്റീമീറ്റർ + {0} ക്യൂബിക് സെന്റീമീറ്റർ + {0} / ക്യൂബിക് സെന്റീമീറ്റർ ക്യൂബിക്ക് മൈൽ @@ -6652,25 +6879,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ക്യൂബിക് യാർഡ് {0} ക്യൂബിക് യാർഡ് - - കപ്പ് - {0} കപ്പ് - {0} കപ്പ് + + ക്യൂബിക് അടി + {0} ക്യൂബിക് അടി + {0} ക്യൂബിക് അടി - - ഡെസിലിറ്റർ - {0} ഡെസിലിറ്റർ - {0} ഡെസിലിറ്റർ + + ക്യൂബിക് ഇഞ്ച് + {0} ക്യൂബിക് ഇഞ്ച് + {0} ക്യൂബിക് ഇഞ്ച് - - ഫ്ലൂയിഡ് ഔൺസ് - {0} ഫ്ലൂയിഡ് ഔൺസ് - {0} ഫ്ലൂയിഡ് ഔൺസ് - - - ഗാലൻ - {0} ഗാലൻ - {0} ഗാലൻ + + മെഗാലിറ്റർ + {0} മെഗാലിറ്റർ + {0} മെഗാലിറ്റർ ഹെക്ടോലിറ്റർ @@ -6681,27 +6903,64 @@ For terms of use, see http://www.unicode.org/copyright.html ലിറ്റർ {0} ലിറ്റർ {0} ലിറ്റർ + {0} / ലിറ്റർ - - മെഗാലിറ്റർ - {0} മെഗാലിറ്റർ - {0} മെഗാലിറ്റർ + + ഡെസിലിറ്റർ + {0} ഡെസിലിറ്റർ + {0} ഡെസിലിറ്റർ + + + സെന്റീലിറ്റർ + {0} സെന്റീലിറ്റർ + {0} സെന്റീലിറ്റർ മില്ലിലിറ്റർ {0} മില്ലിലിറ്റർ {0} മില്ലിലിറ്റർ - - പൈന്റ് - {0} പൈന്റ് - {0} പൈന്റ് + + മെട്രിക് പൈന്റ് + {0} മെട്രിക് പൈന്റ് + {0} മെട്രിക് പൈന്റ് + + + മെട്രിക് കപ്പ് + {0} മെട്രിക് കപ്പ് + {0} മെട്രിക് കപ്പ് + + + ഏക്കർ അടി + {0} ഏക്കർ അടി + {0} ഏക്കർ അടി + + + ഗാലൻ + {0} ഗാലൻ + {0} ഗാലൻ + {0} / ഗാലൻ ക്വാർട്ട് {0} ക്വാർട്ട് {0} ക്വാർട്ട് + + പൈന്റ് + {0} പൈന്റ് + {0} പൈന്റ് + + + കപ്പ് + {0} കപ്പ് + {0} കപ്പ് + + + ഫ്ലൂയിഡ് ഔൺസ് + {0} ഫ്ലൂയിഡ് ഔൺസ് + {0} ഫ്ലൂയിഡ് ഔൺസ് + ടേബിൾസ്‌പൂൺ {0} ടേബിൾസ്‌പൂൺ @@ -6712,6 +6971,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ടീസ്‌പൂൺ {0} ടീസ്‌പൂൺ + + {0}കി. + {0}വ. + {0}തെ. + {0}പ. + @@ -6727,6 +6992,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} മീ/സെ² {0} മീ/സെ² + + റെവ. + {0} റെവ. + {0} റെവ. + + + റേഡിയൻ + {0} റേഡി. + {0} റേഡി. + + + ഡിഗ്രി + {0} ഡിഗ്രി + {0} ഡിഗ്രി + ആർക്ക്.മി. {0} ആർക്ക്.മി. @@ -6737,30 +7017,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ആർക്ക്.സെ. {0} ആർക്ക്.സെ. - - ഡിഗ്രി - {0} ഡിഗ്രി - {0} ഡിഗ്രി - - - റേഡിയൻ - {0} റേഡി. - {0} റേഡി. - - - ഏക്കർ - {0} ഏക്ക. - {0} ഏക്ക. + + കി.മീ² + {0} കി.മീ² + {0} കി.മീ² ഹെക്‌ടർ {0} ഹെക്. {0} ഹെക്. + + മീറ്റർ² + {0} മീ² + {0} മീ² + {0}/മീ² + സെ.മീ² {0} സെ.മീ² {0} സെ.മീ² + {0}/സെ.മീ² + + + ചതു.മൈൽ + {0} ചതു.മൈ + {0} ചതു.മൈ + + + ഏക്കർ + {0} ഏക്ക. + {0} ഏക്ക. + + + വാര² + {0} വാ² + {0} വാ² ചതു.അടി @@ -6771,91 +7063,106 @@ For terms of use, see http://www.unicode.org/copyright.html ഇഞ്ച്² {0} ഇഞ്ച്² {0} ഇഞ്ച്² + {0}/ഇഞ്ച്² - - കി.മീ² - {0} കി.മീ² - {0} കി.മീ² - - - മീറ്റർ² - {0} മീ² - {0} മീ² - - - ചതു.മൈൽ - {0} ചതു.മൈ - {0} ചതു.മൈ - - - വാര² - {0} വാ² - {0} വാ² + + ക്യാരറ്റ് + {0} ക്യാ. + {0} ക്യാ. ലിറ്റർ/കി.മീ. {0} ലി/കി.മീ. {0} ലി/കി.മീ. + + ലി./100 കി.മീ. + {0} ലി./100 കി.മീ. + {0} ലി./100 കി.മീ. + മൈൽ/ഗാ. {0} മൈ/ഗാ. {0} മൈ/ഗാ. - - ബിറ്റ് - {0} ബിറ്റ് - {0} ബിറ്റ് - - - ബൈറ്റ് - {0} ബൈറ്റ് - {0} ബൈറ്റ് - - - ജി.ബിറ്റ് - {0} ജിബി - {0} ജിബി - - - ജി.ബൈറ്റ് - {0} ജി.ബൈ. - {0} ജി.ബൈ. - - - കി.ബിറ്റ് - {0} കി.ബിറ്റ് - {0} കി.ബിറ്റ് - - - കി.ബൈറ്റ് - {0} കി.ബി. - {0} കി.ബി. - - - മെ.ബിറ്റ് - {0} മെ.ബി. - {0} മെ.ബി. - - - മെ.ബൈറ്റ് - {0} മെ.ബൈ. - {0} മെ.ബൈ. - - - ടെ.ബിറ്റ് - {0} ടെ.ബി. - {0} ടെ.ബി. - ടെ.ബൈറ്റ് {0} ടെ.ബൈ. {0} ടെ.ബൈ. + + ടെ.ബിറ്റ് + {0} ടെ.ബി. + {0} ടെ.ബി. + + + ജി.ബൈറ്റ് + {0} ജി.ബൈ. + {0} ജി.ബൈ. + + + ജി.ബിറ്റ് + {0} ജിബി + {0} ജിബി + + + മെ.ബൈറ്റ് + {0} മെ.ബൈ. + {0} മെ.ബൈ. + + + മെ.ബിറ്റ് + {0} മെ.ബി. + {0} മെ.ബി. + + + കി.ബൈറ്റ് + {0} കി.ബി. + {0} കി.ബി. + + + കി.ബിറ്റ് + {0} കി.ബിറ്റ് + {0} കി.ബിറ്റ് + + + ബൈറ്റ് + {0} ബൈറ്റ് + {0} ബൈറ്റ് + + + ബിറ്റ് + {0} ബിറ്റ് + {0} ബിറ്റ് + + + നൂ. + {0} നൂ. + {0} നൂ. + + + വർഷം + {0} വ + {0} വ + {0}/വ. + + + മാസം + {0} മാസം + {0} മാസം + {0}/മാ. + + + ആഴ്ച + {0} ആ + {0} ആ + {0}/ആ. + ദിവസം {0} ദിവസം‌ {0} ദിവസം‌ + {0}/ദി. മണിക്കൂർ @@ -6863,30 +7170,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} മ {0}/മ. - - μ.സെ. - {0} μ.സെ. - {0} μ.സെ. - - - മില്ലിസെക്കൻഡ് - {0} മി.സെ. - {0} മി.സെ. - - മിനിറ്റ് - {0} മിനിറ്റ് - {0} മിനിറ്റ് - - - മാസം - {0} മാസം - {0} മാസം - - - നാനോസെക്കൻഡ് - {0} നാ.സെ. - {0} നാ.സെ. + മി. + {0} മി. + {0} മി. + {0}/മി. സെക്കൻഡ് @@ -6894,15 +7182,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} സെ. {0}/സെ. - - ആഴ്ച - {0} ആ - {0} ആ + + മില്ലിസെക്കൻഡ് + {0} മി.സെ. + {0} മി.സെ. - - വർഷം - {0} വ - {0} വ + + μ.സെ. + {0} μ.സെ. + {0} μ.സെ. + + + നാനോസെക്കൻഡ് + {0} നാ.സെ. + {0} നാ.സെ. ആമ്പിയർ @@ -6924,6 +7217,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + കി.കലോ. + {0} കി.കലോ. + {0} കി.കലോ. + കലോ. {0} കലോ. @@ -6934,21 +7232,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} കലോ. {0} കലോ. - - ജൂൾ - {0} ജൂ. - {0} ജൂ. - - - കി.കലോ. - {0} കി.കലോ. - {0} കി.കലോ. - കി.ജൂ. {0} കി.ജൂ. {0} കി.ജൂ. + + ജൂൾ + {0} ജൂ. + {0} ജൂ. + കി.വാ/മ. {0} കി.വാ/മ. @@ -6959,201 +7252,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ജി.ഹെ. {0} ജി.ഹെ. - - ഹെ. - {0} ഹെ. - {0} ഹെ. + + മെ.ഹെ. + {0} മെ.ഹെ. + {0} മെ.ഹെ. കി.ഹെ. {0} കി.ഹെ. {0} കി.ഹെ. - - മെ.ഹെ. - {0} മെ.ഹെ. - {0} മെ.ഹെ. + + ഹെ. + {0} ഹെ. + {0} ഹെ. - - ജ്യോ.യൂ. - {0} ജ്യോ.യൂ. - {0} ജ്യോ.യൂ. + + കി.മീ. + {0} കി.മീ. + {0} കി.മീ. + {0}/കി.മീ. - - സെ.മീ. - {0} സെ.മീ. - {0} സെ.മീ. + + മീറ്റർ + {0} മീ. + {0} മീ. + {0}/മീ. ഡെ.മീ. {0} ഡെ.മീ. {0} ഡെ.മീ - - അടി - {0} അടി - {0} അടി - - - ഇഞ്ച് - {0} ഇഞ്ച് - {0} ഇഞ്ച് - - - കിലോമീറ്റർ - {0} കി.മീ. - {0} കി.മീ. - - - പ്രകാശവർഷം - {0} പ.വ. - {0} പ്രക.വർ - - - മീറ്റർ - {0} മീ. - {0} മീ. - - - µമീറ്റർ - µമീ. - {0} µമീ. - - - മൈൽ - {0} മൈൽ - {0} മൈ + + സെ.മീ. + {0} സെ.മീ. + {0} സെ.മീ. + {0}/സെ.മീ. മില്ലീമീറ്റർ {0} മി.മീ. {0} മി.മീ. + + µമീറ്റർ + µമീ. + {0} µമീ. + നാ.മീ. {0} നാ.മീ. {0} നാ.മീ. - - നോ.മൈ. - {0} നോ.മൈ. - {0} നോ.മൈ. - - - പാർസെക് - {0} പാ.സെ. - {0} പാ.സെ. - പൈ.മീ. {0} പൈ.മീ. {0} പൈ.മീ. + + മൈൽ + {0} മൈൽ + {0} മൈൽ + വാര - {0} യാ - {0} യാ + {0} വാര + {0} വാര + + + അടി + {0} അടി + {0} അടി + {0}/അടി + + + ഇഞ്ച് + {0} ഇഞ്ച് + {0} ഇഞ്ച് + {0}/ഇഞ്ച് + + + പാർസെക് + {0} പാ.സെ. + {0} പാ.സെ. + + + പ്രകാശവർഷം + {0} പ്ര.വ. + {0} പ്ര.വ. + + + ജ്യോ.യൂ. + {0} ജ്യോ.യൂ. + {0} ജ്യോ.യൂ. + + + നോ.മൈ. + {0} നോ.മൈ. + {0} നോ.മൈ. + + + സ്.മൈ. + {0} സ്.മൈ. + {0} സ്.മൈ. ലക്സ് {0} ലക്സ് {0} ലക്സ് - - ക്യാരറ്റ് - {0} CD - {0} CD - - - ഗ്രാം - {0} ഗ്രാം - {0} ഗ്രാം - - - കി.ഗ്രാം - {0} കി.ഗ്രാം - {0} കി.ഗ്രാം - ട. {0} ട. {0} ട. - - µ.ഗ്രാം. - {0} µ.ഗ്രാം. - {0} µ.ഗ്രാം. + + കി.ഗ്രാം + {0} കി.ഗ്രാം + {0} കി.ഗ്രാം + {0}/കി.ഗ്രാം + + + ഗ്രാം + {0} ഗ്രാം + {0} ഗ്രാം + {0}/ഗ്രാം മി.ഗ്രാം. {0} മി.ഗ്രാം. {0} മി.ഗ്രാം. - - ഔ. - {0} ഔ. - {0} ഔ. - - - ട്രോ.ഔ. - {0} ട്രോ.ഔ. - {0} ട്രോ.ഔ. - - - പൗണ്ട് - {0} പൗ - {0} പൗ + + µ.ഗ്രാം. + {0} µ.ഗ്രാം. + {0} µ.ഗ്രാം. ടൺ {0} ടൺ {0} ടൺ + + പൗണ്ട് + {0} പൗ + {0} പൗ + {0}/പൗ. + + + ഔ. + {0} ഔ. + {0} ഔ. + {0}/ഔ. + + + ട്രോ.ഔ. + {0} ട്രോ.ഔ. + {0} ട്രോ.ഔ. + + + ക്യാരറ്റ് + {0} CD + {0} CD + ജി.വാ. {0} ജി.വാ. {0} ജി.വാട്ട് - - എച്ച്.പി. - {0} എച്ച്.പി. - {0} എച്ച്.പി. - - - കി.വാട്ട് - {0} കി.വാ. - {0} കി.വാ. - മെ.വാ. {0} മെ.വാ. {0} മെ.വാ. - - മി.വാ. - {0} മി.വാ. - {0} മി.വാ. + + കി.വാട്ട് + {0} കി.വാ. + {0} കി.വാ. വാട്ട് {0} വാ. {0} വാ. + + മി.വാ. + {0} മി.വാ. + {0} മി.വാ. + + + എച്ച്.പി. + {0} എച്ച്.പി. + {0} എച്ച്.പി. + ഹെ.പാ. {0} ഹെ.പാ. {0} ഹെ.പാ. - - ഇഞ്ച് മെ. - Hg ൽ {0} - Hg ൽ {0} - - - മി.ബാർ - {0} മി.ബാ - {0} മി.ബാ - മിമീ.മെ. {0} മിമീ.മെ. @@ -7164,10 +7461,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} പിഎസ്ഐ {0} പിഎസ്ഐ - - ക്യാരറ്റ് - {0} ക്യാ. - {0} ക്യാ. + + ഇഞ്ച് മെ. + {0} ഇഞ്ച് മെ. + {0} ഇഞ്ച് മെ. + + + മി.ബാ + {0} മി.ബാ + {0} മി.ബാ കി.മീ/മ. @@ -7184,6 +7486,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} മൈ/മ. {0} മൈ/മ. + + നോട്ട് + {0} നോട്ട് + {0} നോട്ട് + + + ° + {0}° + {0}° + ഡിഗ്രി.സെ. {0}°സെ @@ -7199,31 +7511,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K​ {0} K - - ഏ. അടി - {0} ഏ. അടി - {0} ഏ. അടി - - - സെ.ലി. - {0} സെ.ലി. - {0} സെ.ലി. - - - സെ.മീ³ - {0} സെ.മീ³ - {0} സെ.മീ³ - - - അടി³ - {0} അടി³ - {0} അടി³ - - - ഇഞ്ച്³ - {0} ഇഞ്ച്³ - {0} ഇഞ്ച്³ - കി.മീ³ {0} കി.മീ³ @@ -7233,6 +7520,13 @@ For terms of use, see http://www.unicode.org/copyright.html മീ³ {0} മീ³ {0} മീ³ + {0}/മീ³ + + + സെ.മീ³ + {0} സെ.മീ³ + {0} സെ.മീ³ + {0}/സെ.മീ³ മൈ³ @@ -7244,25 +7538,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} വാ³ {0} വാ³ - - കപ്പ് - {0} കപ്പ് - {0} കപ്പ് + + അടി³ + {0} അടി³ + {0} അടി³ - - ഡെ.ലി. - {0} ഡെ.ലി. - {0} ഡെ.ലി. + + ഇഞ്ച്³ + {0} ഇഞ്ച്³ + {0} ഇഞ്ച്³ - - ഫ്ലൂ. ഔ. - {0} ഫ്ലൂ. ഔ. - {0} ഫ്ലൂ. ഔ. - - - ഗാ. - {0} ഗാ. - {0} ഗാ. + + മെ.ലി. + {0} മെ.ലി. + {0} മെ.ലി. ഹെ.ലി. @@ -7273,27 +7562,64 @@ For terms of use, see http://www.unicode.org/copyright.html ലിറ്റർ {0} ലി. {0} ലി. + {0}/ലി. - - മെ.ലി. - {0} മെ.ലി. - {0} മെ.ലി. + + ഡെ.ലി. + {0} ഡെ.ലി. + {0} ഡെ.ലി. + + + സെ.ലി. + {0} സെ.ലി. + {0} സെ.ലി. മി.ലി. {0} മി.ലി. {0} മി.ലി. - - പൈ. - {0} പൈ. - {0} പൈ. + + മെ. പൈ. + {0} മെ. പൈ. + {0} മെ. പൈ. + + + മെ. ക. + {0} മെ. ക. + {0} മെ. ക. + + + ഏ. അടി + {0} ഏ. അടി + {0} ഏ. അടി + + + ഗാ. + {0} ഗാ. + {0} ഗാ. + {0}/ഗാ. ക്വാ. {0} ക്വാ. {0} ക്വാ. + + പൈ. + {0} പൈ. + {0} പൈ. + + + കപ്പ് + {0} കപ്പ് + {0} കപ്പ് + + + ഫ്ലൂ. ഔ. + {0} ഫ്ലൂ. ഔ. + {0} ഫ്ലൂ. ഔ. + ടേ.സ്‌പൂ. {0} ടേ.സ്‌പൂ. @@ -7304,6 +7630,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ടീ.സ്‌പൂ. {0} ടീ.സ്‌പൂ. + + {0}കി. + {0}വ. + {0}തെ. + {0}പ. + @@ -7313,6 +7645,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ജി {0} ജി + + {0}° + {0}° + {0}′ {0}′ @@ -7321,26 +7657,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} ഏ - {0} ഏക്ക + + {0} ച.കിമീ + {0} ച.കിമീ {0} ഹെ {0} ഹെ - - {0} ച. അടി - {0} ച.അടി - - - {0} ച.കിമീ - {0} ച.കിമീ - {0} ച.മീ {0} ച.മീ @@ -7349,6 +7673,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ച.മൈ {0} ച.മൈ + + {0} ഏ + {0} ഏക്ക + + + {0} ച. അടി + {0} ച.അടി + + + ലി./100 കി.മീ. + {0}ലി/100കിമി + {0}ലി/100കിമി + + + + {0} വ + {0} വ + + + മാസം + {0} മാ + {0} മാ + + + + {0} ആ + {0} ആ + ദിവസം {0} ദി @@ -7359,66 +7711,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} മ {0} മ - - മി.സെ. - {0} മി.സെ. - {0} മി.സെ. - - മിനിറ്റ് + മി. {0} മി. {0} മി. - - മാസം - {0} മാ - {0} മാ - സെ. {0} സെ. {0} സെ. - - - {0} ആ - {0} ആ - - - വർഷം - {0} വ - {0} വ - - - സെ.മീ. - {0} സെ.മീ. - {0} സെ.മീ. - - - {0}′ - {0}′ - - - {0}″ - {0}″ + + മി.സെ. + {0} മി.സെ. + {0} മി.സെ. കി.മീ. {0} കി.മീ. {0} കി.മീ. - - {0} പ്ര.വ - {0} പ്ര.വ - മീറ്റർ {0} മീ. {0} മീ. - - {0} മൈ - {0} മൈ + + സെ.മീ. + {0} സെ.മീ. + {0} സെ.മീ. മി.മീ. @@ -7429,31 +7750,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} പൈ.മീ {0} പൈ.മീ + + {0} മൈ + {0} മൈ + {0} യാ {0} യാ + + {0}′ + {0}′ + + + {0}″ + {0}″ + + + {0} പ്ര.വ + {0} പ്ര.വ + + + കി.ഗ്രാം + {0}കി.ഗ്രാം + {0}കി.ഗ്രാം + ഗ്രാം {0} ഗ്രാം {0} ഗ്രാം - - കി.ഗ്രാം - {0} kg - {0} kg - - - {0} ഔ - {0} ഔ - {0} പൗ {0} പൗ - - {0} hp - {0} hp + + {0} ഔ + {0} ഔ {0}kW @@ -7463,6 +7796,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} വാ {0} വാ + + {0} hp + {0} hp + {0} hPa {0} hPa @@ -7510,6 +7847,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ലി. {0} ലി. + + {0}കി. + {0}വ. + {0}തെ. + {0}പ. + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ml_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ml_IN.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ml_IN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ml_IN.xml index f41981a1b81..689794dc35e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ml_IN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ml_IN.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mn.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mn.xml similarity index 97% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mn.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mn.xml index bd9ce1b703a..1da1718020f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mn.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mn.xml @@ -1,13 +1,12 @@ - - - + @@ -218,7 +217,7 @@ For terms of use, see http://www.unicode.org/copyright.html сундан швед свахили - конго свахили + конго свахили тамил тэлүгү тэсо @@ -506,7 +505,7 @@ For terms of use, see http://www.unicode.org/copyright.html Норфолк Арлууд Нигери Никарагуа - Голланд + Нидерланд Норвеги Балба Науру @@ -605,56 +604,56 @@ For terms of use, see http://www.unicode.org/copyright.html Тоо - араб-энэтхэг тоо - өргөтгөсөн араб-энэтхэг тоо - армен тоо - жижиг армен тоо - бенгал тоо - буддын хуанли - хятад хуанли - данги хуанли - деванагари тоо - юникодын үндсэн эрэмбэлэх дараалал - этиоп тоо - этиоп хуанли - бүрэн хэмжээтэй тоо - гүрж тоо - грегорийн хуанли - грек тоо - жижиг грек тоо - гүжарати тоо - гүрмүкхи тоо - хятад аравтын тоо - хялбаршуулсан хятад тоо - хялбаршуулсан хятад санхүүгийн тоо - уламжлалт хятад тоо - уламжлалт хятад санхүүгийн тоо - еврей тоо - еврей хуанли - исламын хуанли - ISO-8601 хуанли - япон хуанли - япон тоо - япон санхүүгийн тоо - кхмер тоо - каннада тоо - лаос тоо - араб тоо - малаялам тоо - монгол тоо - мьянмар тоо - ория тоо - перс хуанли - минго хуанли - ром тоо - жижиг ром тоо - ерөнхий зорилготой хайлт - стандарт эрэмбэлэх дараалал - уламжлалт тамил тоо - тамил тоо - телүгү тоо - тай тоо - тибет тоо + буддын хуанли + хятад хуанли + данги хуанли + этиоп хуанли + грегорийн хуанли + еврей хуанли + исламын хуанли + ISO-8601 хуанли + япон хуанли + перс хуанли + минго хуанли + юникодын үндсэн эрэмбэлэх дараалал + ерөнхий зорилготой хайлт + стандарт эрэмбэлэх дараалал + араб-энэтхэг тоо + өргөтгөсөн араб-энэтхэг тоо + армен тоо + жижиг армен тоо + бенгал тоо + деванагари тоо + этиоп тоо + бүрэн хэмжээтэй тоо + гүрж тоо + грек тоо + жижиг грек тоо + гүжарати тоо + гүрмүкхи тоо + хятад аравтын тоо + хялбаршуулсан хятад тоо + хялбаршуулсан хятад санхүүгийн тоо + уламжлалт хятад тоо + уламжлалт хятад санхүүгийн тоо + еврей тоо + япон тоо + япон санхүүгийн тоо + кхмер тоо + каннада тоо + лаос тоо + араб тоо + малаялам тоо + монгол тоо + мьянмар тоо + ория тоо + ром тоо + жижиг ром тоо + уламжлалт тамил тоо + тамил тоо + телүгү тоо + тай тоо + тибет тоо метрийн @@ -1073,15 +1072,47 @@ For terms of use, see http://www.unicode.org/copyright.html - - үө - үд - үх - - + + шөнө дунд ҮӨ үд дунд ҮХ + өглөө + өдөр + орой + шөнө + + + шөнө дунд + үө + үд + үх + өглөө + өдөр + орой + шөнө + + + шөнө дунд + ҮӨ + үд дунд + ҮХ + өглөө + өдөр + орой + шөнө + + + + + шөнө дунд + ҮӨ + үд дунд + ҮХ + өглөө + өдөр + орой + шөнө @@ -1093,14 +1124,14 @@ For terms of use, see http://www.unicode.org/copyright.html НТ - МЭӨ + м.э.ө НТӨ - МЭ + м.э. НТ - м.э.ө - м.э. + МЭӨ + МЭ @@ -3940,6 +3971,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0М + ¤ 0М + ¤ 00М + ¤ 00М + ¤ 000М + ¤ 000М + ¤ 0С + ¤ 0С + ¤ 00С + ¤ 00С + ¤ 000С + ¤ 000С + ¤ 0Т + ¤ 0Т + ¤ 00Т + ¤ 00Т + ¤ 000Т + ¤ 000Т + ¤ 0ИН + ¤ 0ИН + ¤ 00ИН + ¤ 00ИН + ¤ 000ИН + ¤ 000ИН + + {0} {1} {0} {1} @@ -4963,6 +5022,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} метр сек кв {0} метр сек кв + + радиан + {0} радиан + {0} радиан + + + хэм + {0} хэм + {0} хэм + аркминут {0} аркминут @@ -4973,31 +5042,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0} арксекунд {0} арксекунд - - хэм - {0} хэм - {0} хэм - - - радиан - {0} радиан - {0} радиан - - - акр - {0} акр - {0} акр + + километр квадрат + {0} километр квадрат + {0} километр квадрат гектар {0} гектар {0} гектар + + метр квадрат + {0} метр квадрат + {0} метр квадрат + сантиметр квадрат {0} сантиметр квадрат {0} сантиметр квадрат + + миль квадрат + {0} миль квадрат + {0} миль квадрат + + + акр + {0} акр + {0} акр + + + ярд квадрат + {0} ярд квадрат + {0} ярд квадрат + фүүт квадрат {0} фүүт квадрат @@ -5008,25 +5087,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} инч квадрат {0} инч квадрат - - километр квадрат - {0} километр квадрат - {0} километр квадрат - - - метр квадрат - {0} метр квадрат - {0} метр квадрат - - - миль квадрат - {0} миль квадрат - {0} миль квадрат - - - ярд квадрат - {0} ярд квадрат - {0} ярд квадрат + + карат + {0} карат + {0} карат литр/километр @@ -5038,55 +5102,70 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миль/галлон {0} миль/галлон - - бит - {0} бит - {0} бит - - - байт - {0} байт - {0} байт - - - гигабит - {0} гигабит - {0} гигабит - - - гигабайт - {0} гигабайт - {0} гигабайт - - - килобит - {0} килобит - {0} килобит - - - килобайт - {0} килобайт - {0} килобайт - - - мегабит - {0} мегабит - {0} мегабит - - - мегабайт - {0} мегабайт - {0} мегабайт + + терабайт + {0} терабайт + {0} терабайт терабит {0} терабит {0} терабит - - терабайт - {0} терабайт - {0} терабайт + + гигабайт + {0} гигабайт + {0} гигабайт + + + гигабит + {0} гигабит + {0} гигабит + + + мегабайт + {0} мегабайт + {0} мегабайт + + + мегабит + {0} мегабит + {0} мегабит + + + килобайт + {0} килобайт + {0} килобайт + + + килобит + {0} килобит + {0} килобит + + + байт + {0} байт + {0} байт + + + бит + {0} бит + {0} бит + + + жил + {0} жил + {0} жил + + + сар + {0} сар + {0} сар + + + долоо хоног + {0} долоо хоног + {0} долоо хоног өдөр @@ -5099,46 +5178,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} цаг {0} цагт - - микросекунд - {0} микросекунд - {0} микросекунд - - - милисекунд - {0} милисекунд - {0} милисекунд - минут {0} минут {0} минут - - сар - {0} сар - {0} сар - - - наносекунд - {0} наносекунд - {0} наносекунд - секунд {0} секунд {0} секунд {0} секундэд - - долоо хоног - {0} долоо хоног - {0} долоо хоног + + милисекунд + {0} милисекунд + {0} милисекунд - - жил - {0} жил - {0} жил + + микросекунд + {0} микросекунд + {0} микросекунд + + + наносекунд + {0} наносекунд + {0} наносекунд ампер @@ -5160,6 +5224,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} вольт {0} вольт + + килокалори + {0} килокалори + {0} килокалори + калори {0} калори @@ -5170,21 +5239,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Калори {0} Калори - - жоуль - {0} жоуль - {0} жоуль - - - килокалори - {0} килокалори - {0} килокалори - киложоуль {0} киложоуль {0} киложоуль + + жоуль + {0} жоуль + {0} жоуль + киловатт цаг {0} киловатт цаг @@ -5195,35 +5259,70 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гигагерц {0} гигагерц - - герц - {0} герц - {0} герц + + мегагерц + {0} мегагерц + {0} мегагерц килогерц {0} килогерц {0} килогерц - - мегагерц - {0} мегагерц - {0} мегагерц + + герц + {0} герц + {0} герц - - сансрын нэгж - {0} сансрын нэгж - {0} сансрын нэгж + + километр + {0} километр + {0} километр + + + метр + {0} метр + {0} метр + + + дециметр + {0} дециметр + {0} дециметр сантиметр {0} сантиметр {0} сантиметр - - дециметр - {0} дециметр - {0} дециметр + + милиметр + {0} милиметр + {0} милиметр + + + микрометр + {0} микрометр + {0} микрометр + + + нанометр + {0} нанометр + {0} нанометр + + + пикометр + {0} пикометр + {0} пикометр + + + миль + {0} миль + {0} миль + + + ярд + {0} ярд + {0} ярд фүүт @@ -5235,96 +5334,66 @@ For terms of use, see http://www.unicode.org/copyright.html {0} инч {0} инч - - километр - {0} километр - {0} километр + + парсек + {0} парсек + {0} парсек гэрлийн жил {0} гэрлийн жил {0} гэрлийн жил - - метр - {0} метр - {0} метр - - - микрометр - {0} микрометр - {0} микрометр - - - миль - {0} миль - {0} миль - - - милиметр - {0} милиметр - {0} милиметр - - - нанометр - {0} нанометр - {0} нанометр + + сансрын нэгж + {0} сансрын нэгж + {0} сансрын нэгж далайн миль {0} далайн миль {0} далайн миль - - парсек - {0} парсек - {0} парсек - - - пикометр - {0} пикометр - {0} пикометр - - - ярд - {0} ярд - {0} ярд - люкс {0} люкс {0} люкс - - карат - {0} карат - {0} карат - - - грам - {0} грам - {0} грам - - - килограм - {0} килограм - {0} килограм - метрийн тонн {0} метрийн тонн {0} метрийн тонн - - микрограм - {0} микрограм - {0} микрограм + + килограм + {0} килограм + {0} килограм + + + грам + {0} грам + {0} грам милиграм {0} милиграм {0} милиграм + + микрограм + {0} микрограм + {0} микрограм + + + тонн + {0} тонн + {0} тонн + + + фунт + {0} фунт + {0} фунт + унц {0} унц @@ -5335,61 +5404,46 @@ For terms of use, see http://www.unicode.org/copyright.html {0} трой унц {0} трой унц - - фунт - {0} фунт - {0} фунт - - - тонн - {0} тонн - {0} тонн + + карат + {0} карат + {0} карат гигаватт {0} гигаватт {0} гигаватт - - морины хүч - {0} морины хүч - {0} морины хүч + + мегаватт + {0} мегаватт + {0} мегаватт киловатт {0} киловатт {0} киловатт - - мегаватт - {0} мегаватт - {0} мегаватт + + ватт + {0} ватт + {0} ватт миливатт {0} миливатт {0} миливатт - - ватт - {0} ватт - {0} ватт + + морины хүч + {0} морины хүч + {0} морины хүч гектопаскал {0} гектопаскал {0} гектопаскал - - мөнгөн усны инч - {0} мөнгөн усны инч - {0} мөнгөн усны инч - - - милибар - {0} милибар - {0} милибар - мөнгөн усны милиметр {0} мөнгөн усны милиметр @@ -5400,10 +5454,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} фунт инч квадрат {0} фунт инч квадрат - - карат - {0} карат - {0} карат + + мөнгөн усны инч + {0} мөнгөн усны инч + {0} мөнгөн усны инч + + + милибар + {0} милибар + {0} милибар километр/цаг @@ -5435,31 +5494,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} келвиний хэм {0} келвиний хэм - - акр-фүүт - {0} акр-фүүт - {0} акр-фүүт - - - центилитр - {0} центилитр - {0} центилитр - - - сантиметр куб - {0} сантиметр куб - {0} сантиметр куб - - - фүүт куб - {0} фүүт куб - {0} фүүт куб - - - инч куб - {0} инч куб - {0} инч куб - километр куб {0} километр куб @@ -5470,6 +5504,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} метр куб {0} метр куб + + сантиметр куб + {0} сантиметр куб + {0} сантиметр куб + миль куб {0} миль куб @@ -5480,25 +5519,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ярд куб {0} ярд куб - - аяга - {0} аяга - {0} аяга + + фүүт куб + {0} фүүт куб + {0} фүүт куб - - децилитр - {0} децилитр - {0} децилитр + + инч куб + {0} инч куб + {0} инч куб - - шингэн унц - {0} ш унц - {0} ш унц - - - галлон - {0} галлон - {0} галлон + + мегалитр + {0} мегалитр + {0} мегалитр хектолитр @@ -5510,26 +5544,51 @@ For terms of use, see http://www.unicode.org/copyright.html {0} литр {0} литр - - мегалитр - {0} мегалитр - {0} мегалитр + + децилитр + {0} децилитр + {0} децилитр + + + центилитр + {0} центилитр + {0} центилитр милилитр {0} милилитр {0} милилитр - - пайнт - {0} пайнт - {0} пайнт + + акр-фүүт + {0} акр-фүүт + {0} акр-фүүт + + + галлон + {0} галлон + {0} галлон кварц {0} кварц {0} кварц + + пайнт + {0} пайнт + {0} пайнт + + + аяга + {0} аяга + {0} аяга + + + шингэн унц + {0} ш унц + {0} ш унц + хоолны халбага {0} хоолны халбага @@ -5555,6 +5614,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} м/с² {0} м/с² + + радиан + {0} рад + {0} рад + + + хэм + {0} хэм + {0} хэм + аркмин {0} аркмин @@ -5565,31 +5634,41 @@ For terms of use, see http://www.unicode.org/copyright.html {0} арксек {0} арксек - - хэм - {0} хэм - {0} хэм - - - радиан - {0} рад - {0} рад - - - акр - {0} акр - {0} акр + + км² + {0} км² + {0} км² гектар {0} га {0} га + + метр² + {0} м² + {0} м² + см² {0} см² {0} см² + + миль кв + {0} миль кв + {0} миль кв + + + акр + {0} акр + {0} акр + + + ярд² + {0} ярд² + {0} ярд² + фүүт кв {0} фт кв @@ -5600,25 +5679,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ин² {0} ин² - - км² - {0} км² - {0} км² - - - метр² - {0} м² - {0} м² - - - миль кв - {0} миль кв - {0} миль кв - - - ярд² - {0} ярд² - {0} ярд² + + карат + {0} кт + {0} кт литр/км @@ -5630,55 +5694,70 @@ For terms of use, see http://www.unicode.org/copyright.html ми/гал {0} ми/гал - - бит - {0} бит - {0} бит - - - байт - {0} байт - {0} байт - - - Гбит - {0} Гб - {0} Гб - - - Гбайт - {0} ГБ - {0} ГБ - - - кбит - {0} кб - {0} кб - - - кбайт - {0} кБ - {0} кБ - - - Мбит - {0} Мб - {0} Мб - - - Мбайт - {0} МБ - {0} МБ + + Тбайт + {0} ТБ + {0} ТБ Тбит {0} Тб {0} Тб - - Тбайт - {0} ТБ - {0} ТБ + + Гбайт + {0} ГБ + {0} ГБ + + + Гбит + {0} Гб + {0} Гб + + + Мбайт + {0} МБ + {0} МБ + + + Мбит + {0} Мб + {0} Мб + + + кбайт + {0} кБ + {0} кБ + + + кбит + {0} кб + {0} кб + + + байт + {0} байт + {0} байт + + + бит + {0} бит + {0} бит + + + жил + {0} жил + {0} жил + + + сар + {0} сар + {0} сар + + + дол/хон + {0} дол/хон + {0} дол/хон өдөр @@ -5691,46 +5770,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} цаг {0} цгт - - μs - {0} μs - {0} μs - - - милисек - {0} мс - {0} мс - мин {0} мин {0} мин - - сар - {0} сар - {0} сар - - - наносек - {0} нс - {0} нс - сек {0} сек {0} сек {0} секд - - дол/хон - {0} дол/хон - {0} дол/хон + + милисек + {0} мс + {0} мс - - жил - {0} жил - {0} жил + + μs + {0} μs + {0} μs + + + наносек + {0} нс + {0} нс амп @@ -5752,6 +5816,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} В {0} В + + ккал + {0} ккал + {0} ккал + кал {0} кал @@ -5762,21 +5831,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Кал {0} Кал - - жоуль - {0} жо - {0} жо - - - ккал - {0} ккал - {0} ккал - киложоуль {0} кж {0} кж + + жоуль + {0} жо + {0} жо + кВ-цаг {0} кВц @@ -5787,35 +5851,70 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ГГц {0} ГГц - - Гц - {0} Гц - {0} Гц + + МГц + {0} МГц + {0} МГц кГц {0} кГц {0} кГц - - МГц - {0} МГц - {0} МГц + + Гц + {0} Гц + {0} Гц - - сн - {0} сн - {0} сн + + км + {0} км + {0} км + + + метр + {0} м + {0} м + + + дм + {0} дм + {0} дм см {0} см {0} см - - дм - {0} дм - {0} дм + + мм + {0} мм + {0} мм + + + µметр + {0} µм + {0} µм + + + нм + {0} нм + {0} нм + + + пм + {0} пм + {0} пм + + + миль + {0} ми + {0} ми + + + ярд + {0} ярд + {0} ярд фүүт @@ -5827,96 +5926,66 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ин {0} ин - - км - {0} км - {0} км + + парсек + {0} пк + {0} пк гэр жил {0} гж {0} гж - - метр - {0} м - {0} м - - - µметр - {0} µм - {0} µм - - - миль - {0} ми - {0} ми - - - мм - {0} мм - {0} мм - - - нм - {0} нм - {0} нм + + сн + {0} сн + {0} сн дмиль {0} дмиль {0} дмиль - - парсек - {0} пк - {0} пк - - - пм - {0} пм - {0} пм - - - ярд - {0} ярд - {0} ярд - люкс {0} люкс {0} люкс - - карат - {0} крт - {0} крт - - - грам - {0} г - {0} г - - - кг - {0} кг - {0} кг - т {0} т {0} т - - µг - {0} µг - {0} µг + + кг + {0} кг + {0} кг + + + грам + {0} г + {0} г мг {0} мг {0} мг + + µг + {0} µг + {0} µг + + + тонн + {0} тн + {0} тн + + + фунт + {0} фнт + {0} фнт + унц {0} унц @@ -5927,61 +5996,46 @@ For terms of use, see http://www.unicode.org/copyright.html {0} т унц {0} т унц - - фунт - {0} фнт - {0} фнт - - - тонн - {0} тн - {0} тн + + карат + {0} крт + {0} крт ГВ {0} ГВ {0} ГВ - - мх - {0} мх - {0} мх + + МВт + {0} МВт + {0} МВт кВт {0} кВт {0} кВт - - МВт - {0} МВт - {0} МВт + + ватт + {0} Вт + {0} Вт мВт {0} мВт {0} мВт - - ватт - {0} Вт - {0} Вт + + мх + {0} мх + {0} мх гПа {0} гПа {0} гПа - - МөУсИн - {0} МөУсИн - {0} МөУсИн - - - мбар - {0} мбар - {0} мбар - МөУс мм {0} МөУс мм @@ -5992,10 +6046,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ф ин кв {0} ф ин кв - - карат - {0} кт - {0} кт + + МөУсИн + {0} МөУсИн + {0} МөУсИн + + + мбар + {0} мбар + {0} мбар км/цаг @@ -6027,31 +6086,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}°К {0}°К - - акр фүүт - {0} ак фт - {0} ак фт - - - цЛ - {0} цЛ - {0} цЛ - - - см³ - {0} cм³ - {0} cм³ - - - фүүт³ - {0} фт³ - {0} фт³ - - - инч³ - {0} ин³ - {0} ин³ - км³ {0} км³ @@ -6062,6 +6096,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} м³ {0} м³ + + см³ + {0} cм³ + {0} cм³ + ми³ {0} ми³ @@ -6072,25 +6111,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ярд³ {0} ярд³ - - аяга - {0} а - {0} а + + фүүт³ + {0} фт³ + {0} фт³ - - дЛ - {0} дЛ - {0} дЛ + + инч³ + {0} ин³ + {0} ин³ - - ш унц - {0} ш унц - {0} ш унц - - - гал - {0} гал - {0} гал + + МЛ + {0} МЛ + {0} МЛ хЛ @@ -6102,26 +6136,51 @@ For terms of use, see http://www.unicode.org/copyright.html {0} л {0} л - - МЛ - {0} МЛ - {0} МЛ + + дЛ + {0} дЛ + {0} дЛ + + + цЛ + {0} цЛ + {0} цЛ мЛ {0} мЛ {0} мЛ - - пайнт - {0} пнт - {0} пнт + + акр фүүт + {0} ак фт + {0} ак фт + + + гал + {0} гал + {0} гал крц {0} крц {0} крц + + пайнт + {0} пнт + {0} пнт + + + аяга + {0} а + {0} а + + + ш унц + {0} ш унц + {0} ш унц + ххалбага {0} ххалбага @@ -6141,6 +6200,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}′ {0}′ @@ -6149,26 +6212,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} акр - {0} акр + + {0} км² + {0} км² {0} га {0} га - - {0} фт² - {0} фт² - - - {0} км² - {0} км² - {0} м² {0} м² @@ -6177,6 +6228,29 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миль² {0} миль² + + {0} акр + {0} акр + + + {0} фт² + {0} фт² + + + ж + {0} ж + {0} ж + + + сар + {0} ср + {0} ср + + + д/х + {0} д/х + {0} д/х + өдөр {0} ө @@ -6187,66 +6261,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ц {0} ц - - мсек - {0} мс - {0} мс - мин {0} м {0} м - - сар - {0} ср - {0} ср - сек {0} с {0} с - - д/х - {0} д/х - {0} д/х - - - ж - {0} ж - {0} ж - - - см - {0} см - {0} см - - - {0} фт - {0} фт - - - {0} инч - {0} инч + + мсек + {0} мс + {0} мс км {0} км {0} км - - {0} гэр/жил - {0} гэр/жил - метр {0} м {0} м - - {0} миль - {0} миль + + см + {0} см + {0} см мм @@ -6257,31 +6300,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} пм {0} пм + + {0} миль + {0} миль + {0} ярд {0} ярд - - грам - {0} г - {0} г + + {0} фт + {0} фт + + + {0} инч + {0} инч + + + {0} гэр/жил + {0} гэр/жил кг {0} кг {0} кг - - {0} унц - {0} унц + + грам + {0} г + {0} г {0} фунт {0} фунт - - {0} м.х. - {0} м.х. + + {0} унц + {0} унц {0} кватт @@ -6291,6 +6346,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ватт {0} ватт + + {0} м.х. + {0} м.х. + {0} гПа {0} гПа diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mn_Cyrl_MN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mn_MN.xml similarity index 65% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mn_Cyrl_MN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mn_MN.xml index 132bee4e6d3..afc809a1baa 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/mn_Cyrl_MN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mn_MN.xml @@ -1,15 +1,14 @@ - - - + - - @@ -405,6 +407,7 @@ For terms of use, see http://www.unicode.org/copyright.html ကွန်ဂို (Republic) ဆွစ်ဇလန် အိုင်ဗရီကိုစ့် + အိုက်ဗရီကို့စ် ကွတ် ကျွန်းစု ချီလီ ကင်မရွန်း @@ -644,61 +647,74 @@ For terms of use, see http://www.unicode.org/copyright.html ပြက္ခဒိန် စနစ်တကျစီသော ငွေကြေး + နာရီစက်ဝန်း(၁၂ အပြိုင် ၂၄) + လိုင်းဖြတ်တောက်မှုပုံစံ + တိုင်းတာရေးစနစ် ဂဏန်းနံပါတ် - အာရပ်ဂဏန်းခြေ - တိုးချဲ့အာရပ်ဂဏန်းခြေ - အာမေနီယန်ဂဏန်းခြေ - အာမေနီယန်ဂဏန်းခြေအသေး - ဘန်ဂါလီဂဏန်းခြေ - ဗုဒ္ဓ ပြက္ခဒိန် - တရုတ် ပြက္ခဒိန် - ဒန်းဂိ ပြက္ခဒိန် - ဒီပါနာဂါရီဂဏန်းခြေ - ယူနီကုတ်အစဉ်လိုက်စီထားသော - အီသီအိုပီးယားဂဏန်းခြေ - အီသီယိုးပီးယား ပြက္ခဒိန် - အနံအပြည့်နှင့်ဂဏန်းခြေ - နိုင်ငံတကာသုံးဂဏန်းခြေ - နိုင်ငံတကာသုံး ပြက္ခဒိန် - ဂရိဂဏန်းခြေ - ဂရိဂဏန်းခြေအသေး - ဂုဂျာရာတီဂဏန်းခြေ - ဂူမူခီဂဏန်းခြေ - တရုတ်ဆယ်လီစနစ်ဂဏန်းခြေ - ရိုးရှင်းသောတရုတ်ဂဏန်းခြေ - ရိုးရှင်းသောတရုတ်ဘဏ္ဏာရေးသုံးဂဏန်းခြေ - ရိုးရာတရုတ်ဂဏန်းခြေ - ရိုးရာတရုတ်ဘဏ္ဏာရေးသုံးဂဏန်းခြေ - ဟေဗြဲဂဏန်းခြေ - ဟီဗရူး ပြက္ခဒိန် - အိန္ဒြိယ အမျိုးသား ပြက္ခဒိန် - အစ္စလာမ် ပြက္ခဒိန် - iso8601 - ဂျပန် ပြက္ခဒိန် - ဂျပန်ဂဏန်းခြေ - ဂျပန်ဘဏ္ဏာရေးသုံးဂဏန်းခြေ - ခမာဂဏန်းခြေ - ခန္နဒါဂဏန်းခြေ - လာအိုဂဏန်းခြေ - အနောက်တိုင်းဂဏန်းခြေ - မလာရာလမ်ဂဏန်းခြေ - မြန်မာဂဏန်းခြေ - ရှမ်းဂဏန်းခြေ - ဩရီရာဂဏန်းခြေ - ပါရှား ပြက္ခဒိန် - ဖုန်းစာအုပ် အစီအစဉ် - မင်ဂုအို ပြက္ခဒိန် - ရောမဂဏန်းခြေ - ရောမဂဏန်းခြေအသေး - ယေဘုယျရှာခြင်း - ပုံမှန်စီသော - ရိုးရာတမီးလ်ဂဏန်းခြေ - တမီးလ်ဂဏန်းခြေ - တီရီဂုဂဏန်းခြေ - ထိုင်းဂဏန်းခြေ - တိဘက်ဂဏန်းခြေ + ဗုဒ္ဓ ပြက္ခဒိန် + တရုတ် ပြက္ခဒိန် + ဒန်းဂိ ပြက္ခဒိန် + အီသီယိုးပီးယား ပြက္ခဒိန် + နိုင်ငံတကာသုံး ပြက္ခဒိန် + ဟီဗရူး ပြက္ခဒိန် + အိန္ဒြိယ အမျိုးသား ပြက္ခဒိန် + အစ္စလာမ် ပြက္ခဒိန် + ISO-8601 ပြက္ခဒိန် + ဂျပန် ပြက္ခဒိန် + ပါရှား ပြက္ခဒိန် + မင်ဂုအို ပြက္ခဒိန် + ယူနီကုတ်အစဉ်လိုက်စီထားသော + ဖုန်းစာအုပ် အစီအစဉ် + ယေဘုယျရှာခြင်း + ပုံမှန်စီသော + ၁၂ နာရီ စနစ် (၀–၁၁) + ၁၂ နာရီစနစ် (၁–၁၂) + ၂၄ နာရီ စနစ် (၀–၂၃) + ၂၄ နာရီ စနစ်(၁–၂၄) + လျော့ရဲသော လိုင်းဖြတ်တောင်မှုပုံစံ + ပုံမှန်လိုင်းဖြတ်တောက်မှုပုံစံ + တင်းကြပ်သောလိုင်းဖြတ်တောက်မှုပုံစံ + မက်ထရစ်စနစ် + ဗြိတိသျှတိုင်းတာစနစ် + အမေရိကန်တိုင်းတာစနစ် + အာရပ်ဂဏန်းခြေ + တိုးချဲ့အာရပ်ဂဏန်းခြေ + အာမေနီယန်ဂဏန်းခြေ + အာမေနီယန်ဂဏန်းခြေအသေး + ဘန်ဂါလီဂဏန်းခြေ + ဒီပါနာဂါရီဂဏန်းခြေ + အီသီအိုပီးယားဂဏန်းခြေ + အနံအပြည့်နှင့်ဂဏန်းခြေ + နိုင်ငံတကာသုံးဂဏန်းခြေ + ဂရိဂဏန်းခြေ + ဂရိဂဏန်းခြေအသေး + ဂုဂျာရာတီဂဏန်းခြေ + ဂူမူခီဂဏန်းခြေ + တရုတ်ဆယ်လီစနစ်ဂဏန်းခြေ + ရိုးရှင်းသောတရုတ်ဂဏန်းခြေ + ရိုးရှင်းသောတရုတ်ဘဏ္ဏာရေးသုံးဂဏန်းခြေ + ရိုးရာတရုတ်ဂဏန်းခြေ + ရိုးရာတရုတ်ဘဏ္ဏာရေးသုံးဂဏန်းခြေ + ဟေဗြဲဂဏန်းခြေ + ဂျပန်ဂဏန်းခြေ + ဂျပန်ဘဏ္ဏာရေးသုံးဂဏန်းခြေ + ခမာဂဏန်းခြေ + ခန္နဒါဂဏန်းခြေ + လာအိုဂဏန်းခြေ + အနောက်တိုင်းဂဏန်းခြေ + မလာရာလမ်ဂဏန်းခြေ + မြန်မာဂဏန်းခြေ + ရှမ်းဂဏန်းခြေ + ဩရီရာဂဏန်းခြေ + ရောမဂဏန်းခြေ + ရောမဂဏန်းခြေအသေး + ရိုးရာတမီးလ်ဂဏန်းခြေ + တမီးလ်ဂဏန်းခြေ + တီရီဂုဂဏန်းခြေ + ထိုင်းဂဏန်းခြေ + တိဘက်ဂဏန်းခြေ မက်ထရစ်စနစ် @@ -716,6 +732,13 @@ For terms of use, see http://www.unicode.org/copyright.html [ၐ ၑ ဨ ဢ ၒ ၓ ၔ ၕ ၖ ၗ \u1058 \u1059] [က ခ ဂ ဃ င စ ဆ ဇ ဈ ဉ ည ဋ ဌ ဍ ဎ ဏ တ ထ ဒ ဓ န ပ ဖ ဗ ဘ မ ယ ရ လ ဝ သ ဟ ဠ အ] [၊ ။ ‘ ’ “ ”] + {0}… + …{0} + {0}…{1} + {0} … + … {0} + {0} … {1} + ? @@ -771,6 +794,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E၊ d G y G MMM y @@ -914,6 +938,20 @@ For terms of use, see http://www.unicode.org/copyright.html နို ဒီ + + + + + + + + + + + + + + ဇန်နဝါရီ ဖေဖော်ဝါရီ @@ -985,6 +1023,15 @@ For terms of use, see http://www.unicode.org/copyright.html သောကြာ စနေ + + + + + + က + + + တနင်္ဂနွေ တနင်္လာ @@ -1023,6 +1070,15 @@ For terms of use, see http://www.unicode.org/copyright.html + + တနင်္ဂနွေ + တနင်္လာ + အင်္ဂါ + ဗုဒ္ဓဟူး + ကြာသပတေး + သောကြာ + စနေ + တနင်္ဂနွေ တနင်္လာ @@ -1078,22 +1134,76 @@ For terms of use, see http://www.unicode.org/copyright.html - + + ညသန်းခေါင်ယံ နံနက် မွန်းတည့် ညနေ + မနက်တွင် + နေ့လည်ခင်းတွင် + ညနေခင်းတွင် + ညတွင် + + + ညသန်းခေါင်ယံ + နံနက် + မွန်းတည့် + ညနေ + မနက်၁ + နေ့လည်ခင်း၁ + ညနေခင်း၁ + ည၁ + ညသန်းခေါင်ယံ နံနက် မွန်းတည့် ညနေ + မနက်တွင် + နေ့လည်ခင်းတွင် + ညနေခင်းတွင် + ညတွင် + + + + + သန်းခေါင်ယံ + နံနက် + မွန်းတည့် + ညနေ + နံနက် + နေ့လည် + ညနေ + + + + သန်းခေါင်ယံ + နံနက် + မွန်းတည့် + ညနေ + နံနက် + နေ့လည် + ညနေ + + + + သန်းခေါင်ယံ + နံနက် + မွန်းတည့် + ညနေ + နံနက် + နေ့လည် + ညနေ + ခရစ်တော် မပေါ်မီကာလ + ဘီစီအီး ခရစ်တော် ပေါ်ထွန်းပြီးကာလ + စီအီး ဘီစီ @@ -1326,8 +1436,29 @@ For terms of use, see http://www.unicode.org/copyright.html လွန်ခဲ့သော{0}နှစ် + + နှစ် + + {0}နှစ်အတွင်း + + + လွန်ခဲ့သော{0}နှစ် + + + + နှစ် + + {0}နှစ်အတွင်း + + + လွန်ခဲ့သော{0}နှစ် + + သုံးလပတ် + ပြီးခဲ့သောသုံးလပတ် + ယခုသုံးလပတ် + နောက်လာမည့်သုံးလပတ် သုံးလပတ်{0}ခု အတွင်း @@ -1337,6 +1468,9 @@ For terms of use, see http://www.unicode.org/copyright.html သုံးလပတ် + ပြီးခဲ့သောသုံးလပတ် + ယခုသုံးလပတ် + နောက်လာမည့်သုံးလပတ် သုံးလပတ်{0}ခု အတွင်း @@ -1346,6 +1480,9 @@ For terms of use, see http://www.unicode.org/copyright.html သုံးလပတ် + ပြီးခဲ့သောသုံးလပတ် + ယခုသုံးလပတ် + နောက်လာမည့်သုံးလပတ် သုံးလပတ်{0}ခု အတွင်း @@ -1365,6 +1502,24 @@ For terms of use, see http://www.unicode.org/copyright.html လွန်ခဲ့သော{0}လ + + + + {0}လအတွင်း + + + လွန်ခဲ့သော{0}လ + + + + + + {0}လအတွင်း + + + လွန်ခဲ့သော{0}လ + + ပတ် ပြီးခဲ့သောအပတ် @@ -1377,6 +1532,24 @@ For terms of use, see http://www.unicode.org/copyright.html လွန်ခဲ့သော{0}ပတ် + + ပတ် + + {0}ပတ်အတွင်း + + + လွန်ခဲ့သော{0}ပတ် + + + + ပတ် + + {0}ပတ်အတွင်း + + + လွန်ခဲ့သော{0}ပတ် + + ရက် တနေ့က @@ -1391,6 +1564,21 @@ For terms of use, see http://www.unicode.org/copyright.html လွန်ခဲ့သော{0}ရက် + + ရက် + + လွန်ခဲ့သော{0}ရက် + + + + ရက် + + {0}ရက်အတွင်း + + + လွန်ခဲ့သော{0}ရက် + + နေ့ @@ -1399,36 +1587,106 @@ For terms of use, see http://www.unicode.org/copyright.html ဒီတနင်္ဂနွေ နောက်တနင်္ဂနွေ + + ပြီးခဲ့သောတနင်္ဂနွေ + ဒီတနင်္ဂနွေ + နောက်တနင်္ဂနွေ + + + ပြီးခဲ့သောတနင်္ဂနွေ + ဒီတနင်္ဂနွေ + နောက်တနင်္ဂနွေ + ပြီးခဲ့သောတနင်္လာ ဒီတနင်္လာ နောက်တနင်္လာ + + ပြီးခဲ့သောတနင်္လာ + ဒီတနင်္လာ + နောက်တနင်္လာ + + + ပြီးခဲ့သောတနင်္လာ + ဒီတနင်္လာ + နောက်တနင်္လာ + ပြီးခဲ့သောအင်္ဂါ ဒီအင်္ဂါ နောက်အင်္ဂါ + + ပြီးခဲ့သောအင်္ဂါ + ဒီအင်္ဂါ + နောက်အင်္ဂါ + + + ပြီးခဲ့သောအင်္ဂါ + ဒီအင်္ဂါ + နောက်အင်္ဂါ + ပြီးခဲ့သော ဗုဒ္ဓဟူး ဒီဗုဒ္ဓဟူး နောက်ဗုဒ္ဓဟူး + + ပြီးခဲ့သော ဗုဒ္ဓဟူး + ဒီဗုဒ္ဓဟူး + နောက်ဗုဒ္ဓဟူး + + + ပြီးခဲ့သော ဗုဒ္ဓဟူး + ဒီဗုဒ္ဓဟူး + နောက်ဗုဒ္ဓဟူး + ပြီးခဲ့သောကြာသပတေး ဒီကြာသပတေး နောက်ကြာသပတေး + + ပြီးခဲ့သောကြာသပတေး + ဒီကြာသပတေး + နောက်ကြာသပတေး + + + ပြီးခဲ့သောကြာသပတေး + ဒီကြာသပတေး + နောက်ကြာသပတေး + ပြီးခဲ့သောသောကြာ ဒီသောကြာ နောက်သောကြာ + + ပြီးခဲ့သောသောကြာ + ဒီသောကြာ + နောက်သောကြာ + + + ပြီးခဲ့သောသောကြာ + ဒီသောကြာ + နောက်သောကြာ + ပြီးခဲ့သောစနေ ဒီစနေ နောက်စနေ + + ပြီးခဲ့သောစနေ + ဒီစနေ + နောက်စနေ + + + ပြီးခဲ့သောစနေ + ဒီစနေ + နောက်စနေ + နံနက်/ညနေ @@ -1441,6 +1699,21 @@ For terms of use, see http://www.unicode.org/copyright.html လွန်ခဲ့သော{0}နာရီ + + နာရီ + + {0}နာရီအတွင်း + + + လွန်ခဲ့သော{0}နာရီ + + + + နာရီ + + {0}နာရီအတွင်း + + မိနစ် @@ -1450,6 +1723,24 @@ For terms of use, see http://www.unicode.org/copyright.html လွန်ခဲ့သော{0}မိနစ် + + မိနစ် + + {0}မိနစ်အတွင်း + + + လွန်ခဲ့သော{0}မိနစ် + + + + မိနစ် + + {0}မိနစ်အတွင်း + + + လွန်ခဲ့သော{0}မိနစ် + + စက္ကန့် ယခု @@ -1460,6 +1751,24 @@ For terms of use, see http://www.unicode.org/copyright.html လွန်ခဲ့သော{0}စက္ကန့် + + စက္ကန့် + + {0}စက္ကန့်အတွင်း + + + လွန်ခဲ့သော{0}စက္ကန့် + + + + စက္ကန့် + + {0}စက္ကန့်အတွင်း + + + လွန်ခဲ့သော{0}စက္ကန့် + + ဇုန် @@ -1472,15 +1781,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} (+1) {0} (စံတော်ချိန်) {1} ({0}) - - ချောင်ချင်း - - - ဟာဘင် - - - ခါရှီးဂ် - + အမည်မသိသောမြို့ @@ -2348,6 +2658,9 @@ For terms of use, see http://www.unicode.org/copyright.html ဖို့တ် မိုရက်စ်ဘီ + + ဘူဂန်ဗီးလီးယား + မနီလာ @@ -2432,6 +2745,9 @@ For terms of use, see http://www.unicode.org/copyright.html အီရူခူတ် + + ချီတာ + ယူခူးတ်စ် @@ -2450,6 +2766,9 @@ For terms of use, see http://www.unicode.org/copyright.html မာဂါဒန်း + + ဆရီနီကိုလူ့ဇ် + ခမ်ချာ့ခါ @@ -3702,6 +4021,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0ထောင် + ¤ 0သောင်း + ¤ 0သိန်း + ¤ 0သန်း + ¤ 0ကုဋေ + ¤ 00ကုဋေ + ¤ ကုဋေ000 + ¤ ကုဋေ0000 + ¤ 0000ကုဋေ + ¤ ကုဋေ0သိန်း + ¤ ကုဋေ0သန်း + ¤ 0ကောဋိ + + {0} {1} @@ -3743,6 +4078,7 @@ For terms of use, see http://www.unicode.org/copyright.html အရူဘန် ဂင်းဒါး + အရူဘန် ဂင်းဒါး အဇာဘိုင်ဂျန်မာနတ် @@ -3778,10 +4114,13 @@ For terms of use, see http://www.unicode.org/copyright.html ဘာမူဒါ ဒေါ်လာ ဘာမူဒါ ဒေါ်လာ + BMD + $ ဘရူနိုင်း ဒေါ်လာ ဘရူနိုင်း ဒေါ်လာ + BND ဘိုလီဘီယံ ဘိုလီဘီအားနို @@ -3808,6 +4147,7 @@ For terms of use, see http://www.unicode.org/copyright.html ဘော့စ်ဝါနာ ပုလ + ဘော့စ်ဝါနာ ပုလ ဘီလာရုစ် ရူဘယ်အသစ် (၁၉၉၄–၁၉၉၉) @@ -3819,11 +4159,13 @@ For terms of use, see http://www.unicode.org/copyright.html ဘေလီဇ် ဒေါ်လာ ဘေလီဇ် ဒေါ်လာ + ဒေါ်လာ ကနေဒါ ဒေါ်လာ ကနေဒါ ဒေါ်လာ CA$ + $ ကွန်ဂို ဖရန့် @@ -3849,6 +4191,7 @@ For terms of use, see http://www.unicode.org/copyright.html ကော့စ်တာရီကာ ခိုလုံး ကော့စ်တာရီကာ ခိုလုံး + စီအာစီ နိုင်ငံခြားငွေလဲလှယ်နိုင်သော ကျူးဘားပီဆိုငွေ @@ -3856,10 +4199,12 @@ For terms of use, see http://www.unicode.org/copyright.html ကျူးဘား ပီဆို + ကျူးဘား ပီဆို ခေ့ပ်ဗာဒူ အက်စ်ခူဒို ခေ့ပ်ဗာဒူ အက်စ်ခူဒို + CVE ဆိုက်ပရက်စ် ပေါင် @@ -3881,6 +4226,7 @@ For terms of use, see http://www.unicode.org/copyright.html ဒိုမီနီကန် ပီဆို + ဒိုမီနီကန် ပီဆို အဲလ်ဂျီရီယန် ဒီနာ @@ -3929,21 +4275,28 @@ For terms of use, see http://www.unicode.org/copyright.html ဂါနာ ဆဲဒီ ဂါနာ ဆဲဒီ + GHS ဂျီဘရော်လ်တာ ပေါင် + ဂျီဘရော်လ်တာ ပေါင် ဂန်ဘီယာ ဒါလာစီ ဂန်ဘီယာ ဒါလာစီ + GMD ဂီးနီ ဖရန့် ဂီရာနာ ဖရန့် + GNF + FG ဂွာတီမာလာ ခက်ဇော်လ် ဂွာတီမာလာ ခက်ဇော်လ် + GTQ + Q ဂူရာနာ ဒေါ်လာ @@ -3951,6 +4304,7 @@ For terms of use, see http://www.unicode.org/copyright.html ဟောင်ကောင် ဒေါ်လာ + ဟောင်ကောင် ဒေါ်လာ HK$ @@ -4000,6 +4354,7 @@ For terms of use, see http://www.unicode.org/copyright.html ဂျမေကာ ဒေါ်လာ + ဂျမေကာ ဒေါ်လာ ဂျော်ဒန်ဒီနား @@ -4062,6 +4417,8 @@ For terms of use, see http://www.unicode.org/copyright.html လိုင်ဘေးရီးယား ဒေါ်လာ လိုင်ဘေးရီးယား ဒေါ်လာ + LRD + $ လစ်သူယေးနီးယားလီတားစ် @@ -4107,6 +4464,7 @@ For terms of use, see http://www.unicode.org/copyright.html မောရီတာနီအာအူဂီးယာ မောရီတာနီအာအူဂီးယာ + MRO မော်ရေရှားစ် ရူပီ @@ -4140,6 +4498,8 @@ For terms of use, see http://www.unicode.org/copyright.html နိုင်ဂျီးရီးယားနိုင်းရာ နိုင်ဂျီးရီးယားနိုင်းရာ + NGN + နီကာရာဂွာ ခိုးဒိုဘာ @@ -4180,6 +4540,7 @@ For terms of use, see http://www.unicode.org/copyright.html ပါကစ္စတန် ရူပီး + ပါကစ္စတန် ရူပီး ပိုလန် ဇ‌လော့တီ @@ -4203,6 +4564,7 @@ For terms of use, see http://www.unicode.org/copyright.html ရုရှ ရူဘယ် + ရုရှ ရူဘယ် ရုရှ ရူဘယ် (၁၉၉၁–၁၉၉၈) @@ -4241,10 +4603,13 @@ For terms of use, see http://www.unicode.org/copyright.html စိန့်ဟဲလီနာ ပေါင် စိန့်ဟဲလီနာ ပေါင် + SHP + £ ဆီအဲရာ လီအိုနီယန် လီအိုနီ ဆီအဲရာ လီအိုနီယန် လီအိုနီ + SLL ဆိုမာလီသျှီလင် @@ -4326,6 +4691,7 @@ For terms of use, see http://www.unicode.org/copyright.html အမေရိကန် ဒေါ်လာ အမေရိကန် ဒေါ်လာ US$ + $ အမေရိကန် ဒေါ်လာ (နောက်နေ့) @@ -4386,8 +4752,8 @@ For terms of use, see http://www.unicode.org/copyright.html CFA - XPFဖရန့် - XPFဖရန့် + CFP ဖရန့် + CFP ဖရန့် CFPF @@ -4434,6 +4800,18 @@ For terms of use, see http://www.unicode.org/copyright.html မီတာ/စက္ကန့်နှစ်ထပ်ကိန်း {0} မီတာ/စက္ကန့်နှစ်ထပ်ကိန်း + + rev + {0} rev + + + ရေဒီအန်းစ် + {0}ရေဒီအန်းစ် + + + ဒီဂရီ + {0}ဒီဂရီ + မိနစ် {0}မိနစ် @@ -4442,25 +4820,34 @@ For terms of use, see http://www.unicode.org/copyright.html စက္ကန့် {0}စက္ကန့် - - ဒီဂရီ - {0}ဒီဂရီ - - - ရေဒီအန်းစ် - {0}ရေဒီအန်းစ် - - - ဧက - {0}ဧက + + စတုရန်းကီလိုမီတာ + {0}စတုရန်းကီလိုမီတာ ဟက်တာ {0} ဟက်တာ + + စတုရန်းမီတာ + {0}စတုရန်းမီတာ + စတုရန်းစင်တီမီတာ {0}စတုရန်းစင်တီမီတာ + {0}/cm² + + + စတုရန်းမိုင် + {0}စတုရန်းမိုင် + + + ဧက + {0}ဧက + + + စတုရန်းကိုက် + {0}စတုရန်းကိုက် စတုရန်းပေ @@ -4469,112 +4856,114 @@ For terms of use, see http://www.unicode.org/copyright.html စတုရန်းလက်မ {0}စတုရန်းလက်မ + {0}တစ်စတုရန်းလက်မလျှင် - - စတုရန်းကီလိုမီတာ - {0}စတုရန်းကီလိုမီတာ - - - စတုရန်းမီတာ - {0}စတုရန်းမီတာ - - - စတုရန်းမိုင် - {0}စတုရန်းမိုင် - - - စတုရန်းကိုက် - {0}စတုရန်းကိုက် + + ကရက် + {0} ကရက် လီတာ/ကီလိုမီတာ ၁ကီလိုမီတာ {0}လီတာနှုန်း + + L/100km + {0} L/100km + မိုင်/ဂါလန် ၁ ဂါလန် {0} မိုင်နှုန်း - - ဘစ် - {0}ဘစ် - - - ဘိုက် - {0}ဘိုက် - - - ဂီဂါဘစ် - {0}ဂီဂါဘစ် - - - ဂီဂါဘိုက် - {0}ဂီဂါဘိုက် - - - ကီလိုဘစ် - {0}ကီလိုဘစ် - - - ကီလိုဘိုက် - {0}ကီလိုဘိုက် - - - မီဂါဘစ် - {0}မီဂါဘစ် - - - မီဂါဘိုက် - {0}မီဂါဘိုက် - - - တီရာဘစ် - {0}တီရာဘစ် - တီရာဘိုက် {0}တီရာဘိုက် + + တီရာဘစ် + {0}တီရာဘစ် + + + ဂီဂါဘိုက် + {0}ဂီဂါဘိုက် + + + ဂီဂါဘစ် + {0}ဂီဂါဘစ် + + + မီဂါဘိုက် + {0}မီဂါဘိုက် + + + မီဂါဘစ် + {0}မီဂါဘစ် + + + ကီလိုဘိုက် + {0}ကီလိုဘိုက် + + + ကီလိုဘစ် + {0}ကီလိုဘစ် + + + ဘိုက် + {0}ဘိုက် + + + ဘစ် + {0}ဘစ် + + + c + {0} c + + + နှစ် + {0}နှစ် + {0}နှစ်လျှင် + + + + {0}လ + {0}တစ်လလျှင် + + + ပတ် + {0}ပတ် + {0}တစ်ပတ်လျှင် + ရက် {0}ရက် + {0}တစ်နေ့လျှင် နာရီ {0}နာရီ တစ်နာရီ {0}နှုန်း - - မိုက်ခရိုစက္ကန့် - {0}မိုက်ခရိုစက္ကန့် - - - မီလီစက္ကန့် - {0}မီလီစက္ကန့် - မိနစ် {0} မိနစ် - - - - {0}လ - - - နာနိုစက္ကန့် - {0} နာနိုစက္ကန့် + {0}မိနစ်လျှင် စက္ကန့် {0} စက္ကန့် တစ်စက္ကန့် {0}နှုန်း - - ပတ် - {0}ပတ် + + မီလီစက္ကန့် + {0}မီလီစက္ကန့် - - နှစ် - {0}နှစ် + + မိုက်ခရိုစက္ကန့် + {0}မိုက်ခရိုစက္ကန့် + + + နာနိုစက္ကန့် + {0} နာနိုစက္ကန့် အမ်ပီယာ @@ -4592,6 +4981,10 @@ For terms of use, see http://www.unicode.org/copyright.html ဗို့ {0}ဗို့ + + ကီလိုကယ်လိုရီ + {0} ကီလိုကယ်လိုရီ + ကယ်လိုရီ {0} ကယ်လိုရီ @@ -4600,18 +4993,14 @@ For terms of use, see http://www.unicode.org/copyright.html ကယ်လိုရီ {0} ကယ်လိုရီ - - ဂျူးလ် - {0} ဂျူးလ် - - - ကီလိုကယ်လိုရီ - {0} ကီလိုကယ်လိုရီ - ကီလိုဂျူးလ် {0} ကီလိုဂျူးလ် + + ဂျူးလ် + {0} ဂျူးလ် + ကီလိုဝပ်-နာရီ {0}ကီလိုဝပ်-နာရီ @@ -4620,162 +5009,167 @@ For terms of use, see http://www.unicode.org/copyright.html ဂီဂါဟတ်ဇ် {0}ဂီဂါဟတ်ဇ် - - ဟတ်ဇ် - {0}ဟတ်ဇ် + + မက်ဂါဟတ်ဇ် + {0}မက်ဂါဟတ်ဇ် ကီလိုဟတ်ဇ် {0}ကီလိုဟတ်ဇ် - - မက်ဂါဟတ်ဇ် - {0}မက်ဂါဟတ်ဇ် + + ဟတ်ဇ် + {0}ဟတ်ဇ် - - နက္ခတ္တဗေဒယူနစ် - {0} နက္ခတ္တဗေဒယူနစ် + + ကီလိုမီတာ + {0} ကီလိုမီတာ + {0}/km - - စင်တီမီတာ - {0} စင်တီမီတာ + + မီတာ + {0}မီတာ + {0}တစ်မီတာလျှင် ဒါစီမီတာ {0} ဒါစီမီတာ - - ပေ - {0} ပေ - - - လက်မ - {0} လက်မ - - - ကီလိုမီတာ - {0} ကီလိုမီတာ - - - အလင်းနှစ် - {0} အလင်းနှစ် - - - မီတာ - {0}မီတာ - - - မိုက်ခရိုမီတာ - {0} မိုက်ခရိုမီတာ - - - မိုင် - {0} မိုင် + + စင်တီမီတာ + {0} စင်တီမီတာ + {0} တစ်စင်တီမီတာလျှင် မီလီမီတာ {0} မီလီမီတာ + + မိုက်ခရိုမီတာ + {0} မိုက်ခရိုမီတာ + နာနိုမီတာ {0} နာနိုမီတာ - - ရေမိုင် - {0} ရေမိုင် - - - ပါစက်ခ် - {0} ပါစက်ခ် - ပီကိုမီတာ {0} ပီကိုမီတာ + + မိုင် + {0} မိုင် + ကိုက် {0} ကိုက် + + ပေ + {0} ပေ + {0}/ft + + + လက်မ + {0} လက်မ + {0}တစ်လက်မလျှင် + + + ပါစက်ခ် + {0} ပါစက်ခ် + + + အလင်းနှစ် + {0} အလင်းနှစ် + + + နက္ခတ္တဗေဒယူနစ် + {0} နက္ခတ္တဗေဒယူနစ် + + + ရေမိုင် + {0} ရေမိုင် + + + စကန်ဒီနေးဗီးရန်း မိုင် + {0}စကန်ဒီနေးဗီးရန်း မိုင်များ + လတ်ခ် {0} လတ်ခ် - - ကရက် - {0} ကရက် - - - ဂရမ် - {0} ဂရမ် - - - ကီလိုဂရမ် - {0}ကီလိုဂရမ် - မက်ထရစ်တန် {0} မက်ထရစ်တန် - - မိုက်ကရိုဂရမ် - {0}မိုက်ကရိုဂရမ် + + ကီလိုဂရမ် + {0}ကီလိုဂရမ် + {0}/kg + + + ဂရမ် + {0} ဂရမ် + {0}/g မီလီဂရမ် {0} မီလီဂရမ် - - အောင်စ - {0}အောင်စ - - - ထရိုအောင်စ - {0} ထရိုအောင်စ - - - ပေါင် - {0}ပေါင် + + မိုက်ကရိုဂရမ် + {0}မိုက်ကရိုဂရမ် တန် {0}တန် + + ပေါင် + {0}ပေါင် + {0}တစ်ပေါင်လျှင် + + + အောင်စ + {0}အောင်စ + {0}/oz + + + ထရိုအောင်စ + {0} ထရိုအောင်စ + + + ကရက် + {0} ကရက် + ဂီဂါဝပ် {0} ဂီဂါဝပ် - - မြင်းကောင်ရေအား - {0} မြင်းကောင်ရေအား - - - ကီလိုဝပ် - {0}ကီလိုဝပ် - မီဂါဝပ် {0} မီဂါဝပ် - - မီလီဝပ် - {0} မီလီဝပ် + + ကီလိုဝပ် + {0}ကီလိုဝပ် ဝပ် {0}ဝပ် + + မီလီဝပ် + {0} မီလီဝပ် + + + မြင်းကောင်ရေအား + {0} မြင်းကောင်ရေအား + ဟက်တိုပါစကယ် {0}ဟက်တိုပါစကယ် - - ပြဒါးလက်မ - ပြဒါး{0}လက်မ - - - မီလီဘား - {0}မီလီဘား - ပြဒါးမီလီမီတာ ပြဒါး{0}မီလီမီတာ @@ -4784,9 +5178,13 @@ For terms of use, see http://www.unicode.org/copyright.html ပေါင်/စတုရန်းလက်မ ၁စတုရန်းလက်မ {0}ပေါင်နှုန်း - - ကရက် - {0} ကရက် + + ပြဒါးလက်မ + ပြဒါး{0}လက်မ + + + မီလီဘား + {0}မီလီဘား ကီလိုမီတာ/နာရီ @@ -4800,6 +5198,14 @@ For terms of use, see http://www.unicode.org/copyright.html မိုင်/နာရီ တစ်နာရီလျှင်{0}မိုင်နှုန်း + + ရေမိုင်နော့ + {0}ရေမိုင်နော့များ + + + ° + {0}° + စင်တီဂရိတ် {0}စင်တီဂရိတ် @@ -4812,26 +5218,6 @@ For terms of use, see http://www.unicode.org/copyright.html ကယ်လ်ဗင် {0}ကယ်လ်ဗင် - - ဧက-ပေ - {0} ဧက-ပေ - - - စင်တီလီတာ - {0}စင်တီလီတာ - - - ကုဗစင်တီမီတာ - {0}ကုဗစင်တီမီတာ - - - ကုဗပေ - {0} ကုဗပေ - - - ကုဗလက်မ - {0}ကုဗလက်မ - ကုဗကီလိုမီတာ {0} ကုဗကီလိုမီတာ @@ -4839,6 +5225,12 @@ For terms of use, see http://www.unicode.org/copyright.html ကုဗမီတာ {0}ကုဗမီတာ + {0}တစ်ကုဗမီတာလျှင် + + + ကုဗစင်တီမီတာ + {0}ကုဗစင်တီမီတာ + {0}/cm³ ကုဗမိုင် @@ -4848,21 +5240,17 @@ For terms of use, see http://www.unicode.org/copyright.html ကုဗကိုက် {0}ကုဗကိုက် - - ခွက် - {0} ခွက် + + ကုဗပေ + {0} ကုဗပေ - - ဒါစီလီတာ - {0} ဒါစီလီတာ + + ကုဗလက်မ + {0}ကုဗလက်မ - - အရည်အောင်စ - {0}အရည်အောင်စ - - - ဂါလန် - {0}ဂါလန် + + မက်ဂါလီတာ + {0}မက်ဂါလီတာ ဟက်တိုလီတာ @@ -4871,23 +5259,53 @@ For terms of use, see http://www.unicode.org/copyright.html လီတာ {0}လီတာ + {0} တစ်လီတာလျှင် - - မက်ဂါလီတာ - {0}မက်ဂါလီတာ + + ဒါစီလီတာ + {0} ဒါစီလီတာ + + + စင်တီလီတာ + {0}စင်တီလီတာ မီလီလီတာ {0}မီလီလီတာ - - ပိုင့် - {0}ပိုင့် + + မထ္ထရစ်ပို့င် + {0} mpt + + + မထ္ထရစ်ကပ် + {0}မထ္ထရစ်ကပ်စ် + + + ဧက-ပေ + {0} ဧက-ပေ + + + ဂါလန် + {0}ဂါလန် + {0}တစ်ဂါလံလျှင် ကွတ် {0}ကွတ် + + ပိုင့် + {0}ပိုင့် + + + ခွက် + {0} ခွက် + + + အရည်အောင်စ + {0}အရည်အောင်စ + စားပွဲဇွန်း စားပွဲဇွန်း{0}ဇွန်း @@ -4896,6 +5314,12 @@ For terms of use, see http://www.unicode.org/copyright.html လက်ဖက်ရည်ဇွန်း လက်ဖက်ရည်ဇွန်း{0}ဇွန်း + + {0}E + {0}N + {0}S + {0}W + @@ -4909,6 +5333,18 @@ For terms of use, see http://www.unicode.org/copyright.html မီတာ/စက္ကန့်နှစ်ထပ်ကိန်း {0} m/s² + + rev + {0} rev + + + ရေဒီအန်းစ် + {0} rad + + + ဒီဂရီ + {0}° + မိနစ် {0}′ @@ -4917,25 +5353,35 @@ For terms of use, see http://www.unicode.org/copyright.html စက္ကန့် {0}″ - - ဒီဂရီ - {0}° - - - ရေဒီအန်းစ် - {0} rad - - - ဧက - {0} ac + + စတုရန်းကီလိုမီတာ + {0} km² ဟက်တာ {0} ha + + စတုရန်းမီတာ + {0} m² + {0}/m² + စတုရန်းစင်တီမီတာ {0} cm² + {0}/cm² + + + စတုရန်းမိုင် + {0} mi² + + + ဧက + {0} ac + + + စတုရန်းကိုက် + {0} yd² စတုရန်းပေ @@ -4944,112 +5390,114 @@ For terms of use, see http://www.unicode.org/copyright.html စတုရန်းလက်မ {0} in² + {0}/in² - - စတုရန်းကီလိုမီတာ - {0} km² - - - စတုရန်းမီတာ - {0} m² - - - စတုရန်းမိုင် - {0} mi² - - - စတုရန်းကိုက် - {0} yd² + + ကရက် + {0} kt လီတာ/ကီလိုမီတာ {0} L/km + + L/100km + {0} L/100km + မိုင်/ဂါလန် {0} mpg - - ဘစ် - {0}ဘစ် - - - ဘိုက် - {0}ဘိုက် - - - ဂီဂါဘစ် - {0}ဂီဂါဘစ် - - - ဂီဂါဘိုက် - {0}ဂီဂါဘိုက် - - - ကီလိုဘစ် - {0}ကီလိုဘစ် - - - ကီလိုဘိုက် - {0}ကီလိုဘိုက် - - - မီဂါဘစ် - {0}မီဂါဘစ် - - - မီဂါဘိုက် - {0} MB - - - တီရာဘစ် - {0} Tb - တီရာဘိုက် {0} TB + + တီရာဘစ် + {0} Tb + + + ဂီဂါဘိုက် + {0}ဂီဂါဘိုက် + + + ဂီဂါဘစ် + {0}ဂီဂါဘစ် + + + မီဂါဘိုက် + {0} MB + + + မီဂါဘစ် + {0}မီဂါဘစ် + + + ကီလိုဘိုက် + {0}ကီလိုဘိုက် + + + ကီလိုဘစ် + {0}ကီလိုဘစ် + + + ဘိုက် + {0}ဘိုက် + + + ဘစ် + {0}ဘစ် + + + c + {0} c + + + နှစ် + {0} y + {0}/y + + + + {0}လ + {0}/လ + + + ပတ် + {0}ပတ် + {0}/w + ရက် {0}ရက် + {0}/d နာရီ {0}နာရီ {0}/နာရီ - - မိုက်ခရိုစက္ကန့် - {0} μs - - - မီလီစက္ကန့် - {0} ms - မိနစ် {0}မိနစ် - - - - {0}လ - - - နာနိုစက္ကန့် - {0} ns + {0}မိနစ်လျှင် စက္ကန့် {0} s {0}/စက္ကန့် - - ပတ် - {0}ပတ် + + မီလီစက္ကန့် + {0} ms - - နှစ် - {0} y + + မိုက်ခရိုစက္ကန့် + {0} μs + + + နာနိုစက္ကန့် + {0} ns အမ်ပီယာ @@ -5067,6 +5515,10 @@ For terms of use, see http://www.unicode.org/copyright.html ဗို့ {0} V + + ကီလိုကယ်လိုရီ + {0} kcal + ကယ်လိုရီ {0} cal @@ -5075,18 +5527,14 @@ For terms of use, see http://www.unicode.org/copyright.html ကယ်လိုရီ {0} Cal - - ဂျူးလ် - {0} J - - - ကီလိုကယ်လိုရီ - {0} kcal - ကီလိုဂျူးလ် {0} kJ + + ဂျူးလ် + {0} J + ကီလိုဝပ်-နာရီ {0} kWh @@ -5095,162 +5543,167 @@ For terms of use, see http://www.unicode.org/copyright.html GHz {0} GHz - - Hz - {0} Hz + + MHz + {0} MHz kHz {0} kHz - - MHz - {0} MHz + + Hz + {0} Hz - - နက္ခတ္တဗေဒယူနစ် - {0} au + + ကီလိုမီတာ + {0} km + {0}/km - - စင်တီမီတာ - {0} cm + + မီတာ + {0} m + {0}/m ဒါစီမီတာ {0} dm - - ပေ - {0} ပေ - - - လက်မ - {0} လက်မ - - - ကီလိုမီတာ - {0} km - - - အလင်းနှစ် - {0} အလင်းနှစ် - - - မီတာ - {0} m - - - မိုက်ခရိုမီတာ - {0} µm - - - မိုင် - {0}မိုင် + + စင်တီမီတာ + {0} cm + {0}/cm မီလီမီတာ {0} mm + + မိုက်ခရိုမီတာ + {0} µm + နာနိုမီတာ {0} nm - - ရေမိုင် - {0} nmi - - - ပါစက်ခ် - {0} pc - ပီကိုမီတာ {0} pm + + မိုင် + {0}မိုင် + ကိုက် {0} ကိုက် + + ပေ + {0} ပေ + {0}/ft + + + လက်မ + {0} လက်မ + {0}/in + + + ပါစက်ခ် + {0} pc + + + အလင်းနှစ် + {0} အလင်းနှစ် + + + နက္ခတ္တဗေဒယူနစ် + {0} au + + + ရေမိုင် + {0} nmi + + + smi + {0} smi + လတ်ခ် {0} lx - - ကရက် - {0} CD - - - ဂရမ် - {0} g - - - ကီလိုဂရမ် - {0} kg - t {0} t - - µg - {0} µg + + ကီလိုဂရမ် + {0} kg + {0}/kg + + + ဂရမ် + {0} g + {0}/g မီလီဂရမ် {0} mg - - အောင်စ - {0} oz - - - ထရိုအောင်စ - {0} oz t - - - ပေါင် - {0} lb + + µg + {0} µg တန် {0} tn + + ပေါင် + {0} lb + {0}/lb + + + အောင်စ + {0} oz + {0}/oz + + + ထရိုအောင်စ + {0} oz t + + + ကရက် + {0} CD + ဂီဂါဝပ် {0} GW - - hp - {0} hp - - - ကီလိုဝပ် - {0} kW - မီဂါဝပ် {0} MW - - မီလီဝပ် - {0} mW + + ကီလိုဝပ် + {0} kW ဝပ် {0} W + + မီလီဝပ် + {0} mW + + + hp + {0} hp + hPa {0} hPa - - inHg - {0} inHg - - - မီလီဘား - {0} mbar - mm Hg {0} mm Hg @@ -5259,9 +5712,13 @@ For terms of use, see http://www.unicode.org/copyright.html ပေါင်/စတုရန်းလက်မ {0} psi - - ကရက် - {0} kt + + inHg + {0} inHg + + + မီလီဘား + {0} mbar ကီလိုမီတာ/နာရီ @@ -5275,6 +5732,14 @@ For terms of use, see http://www.unicode.org/copyright.html မိုင်/နာရီ {0} mi/h + + kn + {0} kn + + + ° + {0}° + °C {0}°C @@ -5287,26 +5752,6 @@ For terms of use, see http://www.unicode.org/copyright.html K {0} K - - ဧက-ပေ - {0} ac ft - - - စင်တီလီတာ - {0} cL - - - ကုဗစင်တီမီတာ - {0} cm³ - - - ကုဗပေ - {0} ကုဗပေ - - - ကုဗလက်မ - {0}ကုဗလက်မ - ကုဗကီလိုမီတာ {0} km³ @@ -5314,6 +5759,12 @@ For terms of use, see http://www.unicode.org/copyright.html ကုဗမီတာ {0} m³ + {0}/m³ + + + ကုဗစင်တီမီတာ + {0} cm³ + {0}/cm³ ကုဗမိုင် @@ -5323,21 +5774,17 @@ For terms of use, see http://www.unicode.org/copyright.html ကုဗကိုက် {0} yd³ - - ခွက် - {0} c + + ကုဗပေ + {0} ကုဗပေ - - ဒါစီလီတာ - {0} dL + + ကုဗလက်မ + {0}ကုဗလက်မ - - အရည်အောင်စ - {0} fl oz - - - ဂါလန် - {0}ဂါလန် + + မက်ဂါလီတာ + {0} ML ဟက်တိုလီတာ @@ -5346,23 +5793,53 @@ For terms of use, see http://www.unicode.org/copyright.html လီတာ {0} l + {0}/l - - မက်ဂါလီတာ - {0} ML + + ဒါစီလီတာ + {0} dL + + + စင်တီလီတာ + {0} cL မီလီလီတာ {0} mL - - ပိုင့် - {0}ပိုင့် + + mpt + {0} mpt + + + mcup + {0} mc + + + ဧက-ပေ + {0} ac ft + + + ဂါလန် + {0}ဂါလန် + {0}/ဂါလံ ကွတ် {0}ကွတ် + + ပိုင့် + {0}ပိုင့် + + + ခွက် + {0} c + + + အရည်အောင်စ + {0} fl oz + စားပွဲဇွန်း စားပွဲဇွန်း{0}ဇွန်း @@ -5371,6 +5848,12 @@ For terms of use, see http://www.unicode.org/copyright.html လက်ဖက်ရည်ဇွန်း {0} tsp + + {0}E + {0}N + {0}S + {0}W + @@ -5379,33 +5862,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G + + {0}° + {0}′ {0}″ - - {0}° - - - {0} ac + + {0} km² {0} ha - - {0} ft² - - - {0} km² - {0} m² {0} mi² + + {0} ac + + + {0} ft² + + + L/100km + {0} L/100km + + + နှစ် + {0} y + + + + {0}လ + + + ပတ် + {0}ပတ် + ရက် {0}ရက် @@ -5414,53 +5913,29 @@ For terms of use, see http://www.unicode.org/copyright.html နာရီ {0}နာရီ - - မီလီစက္ကန့် - {0} ms - မိနစ် {0}မိနစ် - - - {0}လ - စက္ကန့် {0} s - - ပတ် - {0}ပတ် - - - နှစ် - {0} y - - - စင်တီမီတာ - {0} cm - - - {0} ' - - - {0} ″ + + မီလီစက္ကန့် + {0} ms ကီလိုမီတာ {0} km - - {0} အလင်းနှစ် - မီတာ {0} m - - {0}မိုင် + + စင်တီမီတာ + {0} cm မီလီမီတာ @@ -5469,25 +5944,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm + + {0}မိုင် + {0} ကိုက် - - ဂရမ် - {0} g + + {0} ' + + + {0} ″ + + + {0} အလင်းနှစ် ကီလိုဂရမ် {0} kg - - {0} oz + + ဂရမ် + {0} g {0} lb - - {0} hp + + {0} oz {0} kW @@ -5495,6 +5979,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W + + {0} hp + {0} hPa @@ -5531,6 +6018,12 @@ For terms of use, see http://www.unicode.org/copyright.html လီတာ {0} l + + {0}E + {0}N + {0}S + {0}W + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/my_MM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/my_MM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/my_MM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/my_MM.xml index 8479232d593..b703edfb071 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/my_MM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/my_MM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mzn.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mzn.xml new file mode 100644 index 00000000000..8dc6af6e7db --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mzn.xml @@ -0,0 +1,2789 @@ + + + + + + + + + + + {0} ({1}) + {0}, {1} + {0}: {1} + + + آبخازی + آفریکانس + آقم + آکان + امهری + عربی + مدرن استاندارد عربی + ماپوچه + آسامی + آسو + آذری ِترکی + آذری + جنوبی آذری ترکی + باشقیری + بلاروسی + بمبایی + بنایی + بلغاری + غربی بلوچی + بامبارایی + بنگالی + تبتی + برِتونی + بدویی + بوسنیایی + کاتالونی + چچنی + چیگا + چروکیایی + میونی کوردی + کورسیکان + چکی + چوواشی + ولزی + دانمارکی + تایتا + آلمانی + اتریش ِآلمانی + سوییس ِآلمانی + زارمایی + پایین صربی + دوئالایی + جولا-فونی + دزونگخا + امبو + اوه‌یی + یونانی + انگلیسی + استرالیای ِانگلیسی + کانادای ِانگلیسی + بریتیش انگلیسی + بریتانیای ِانگلیسی + امریکن انگلیسی + آمریکای ِانگلیسی + اسپرانتو + ایسپانیولی + جنوبی آمریکای ِایسپانیولی + اروپای ِایسپانیولی + مکزیک ِایسپانیولی + استونیایی + باسکی + فارسی + فینیش + فیلیپینو + فیجیایی + فارویی + فرانسوی + کانادای ِفرانسوی + سوییس ِفرانسوی + غربی فیریزی + ایریش + گاگائوزی + گالیک + گورانی + سوییس آلمانی + گجراتی + گوسی + مانکس + هوسا + هاواییایی + عبری + هندی + کرواتی + بالایی صربی + هائتیایی + مجاری + ارمنی + اندونزیایی + ایگبو + سیچوئان یی + ایسلندی + ایتالیایی + انوکتیتوت + جاپونی + نگومبا + ماچامه + جاوایی + گرجی + قبایلی + کامبایی + ماکونده + کیپ وُردی + کویرا چیینی + کیکویو + قزاقی + کالائلیسوت + کالنجین + خمری + کانّادا + کُره‌یی + کومی-پرمیاک + کونکانی + کشمیری + شامبالا + بافیایی + کوردی + کورنیش + قرقیزی + لاتین + لانگی + لوکزامبورگی + گاندا + لاکوتا + لینگالا + لائویی + شمالی لُری + لتونیایی + لوبا-کاتانگا + لوئو + لوییا + لاتویایی + ماسایی + مِرویی + موریسین + مالاگاسی + ماخوئا-میتو + مِتاء + مائوری + مقدونی + مالایالام + مغولی + موهاک + ماراتی + مالایی + مالتی + موندانگ + برمه‌یی + مازرونی + ناما + نروژی بوکمال + شمالی ندبله + پایین آلمانی + پایین ساکسونی + نپالی + هلندی + فلمیش + کوئاسیو + نروژی نینورسک + نئکو + نوئر + نیانکوله + اورومو + اوریا + پنجابی + لهستونی + پشتو + پرتغالی + برزیل ِپرتغالی + اروپای ِپرتغالی + قوئچوئا + کئیچه‌ئی + رومانش + روندی + رومانیایی + مولداوی + رومبو + روسی + کنیاروآندایی + روآیی + سانسکریت + سامبورو + سانگوو + سندی + جنوبی کردی + شمالی سامی + سِنایی + کویرابورا سنی + سانگو + تاچلهیت + سینهالا + اسلواکی + اسلوونیایی + جنوبی سامی + لوله سامی + ایناری سامی + سکولت سامی + شونا + سومالیایی + آلبانیایی + صربی + سوندانسی + سوئدی + سواحیلی + کنگو سواحیلی + تامیلی + تلوگویی + تسویی + تاجیکی + تایی + تیگرینیایی + ترکمونی + تونگانی + ترکی + تاتاری + تاساواقی + میونی اطلس تامزیقی + ئوغوری + اوکراینی + نشناسی‌یه زوون + اردو + ازبکی + وایی + ویتنامی + وونجویی + والرپیری + وولفی + خوسا + سوگا + یوروبا + مراکش ِاستاندارد ِتامازیقتی + چینی + ساده چینی + سنتی چینی + زولو + این زوون بشناسی‌یه نیّه + + + + + + + + + + + + + + + + + + + + + + + + + + جهون + آفریقا + شمالی آمریکا + جنوبی آمریکا + اوقیانوسیه + غربی آفریقا + میونی آمریکا + شرقی آفریقا + شمالی ۀفریقا + میونی آفریقا + جنوبی آفریقا + آمریکا + شمالی امریکا + کاراییب + شرقی آسیا + جنوبی آسیا + آسیای ِجنوب‌شرقی‌وَر + جنوبی اروپا + اوسترالزی + ملانزی + میکرونزی منقطه + پولی‌نزی + آسیا + میونی آسیا + غربی آسیا + اروپا + شرقی اروپا + شمالی اروپا + غربی اروپا + لاتین آمریکا + آسنسیون جزیره + آندورا + متحده عربی امارات + افغانستون + آنتیگوا و باربودا + آنگویلا + آلبانی + ارمنستون + آنگولا + جنوبی یخ‌بزه قطب + آرژانتین + آمریکای ِساموآ + اتریش + استرالیا + آروبا + آلند جزیره + آذربایجون + بوسنی و هرزگوین + باربادوس + بنگلادش + بلژیک + بورکینا فاسو + بلغارستون + بحرین + بوروندی + بنین + سنت بارتلمی + برمودا + برونئی + بولیوی + هلند ِکاراییبی جزایر + برزیل + باهاما + بوتان + بووت جزیره + بوتساوانا + بلاروس + بلیز + کانادا + کوک (کیلینگ) جزایر + کنگو کینشاسا + کنگو (دموکراتیک جمهوری) + مرکزی آفریقای جمهوری + کنگو برازاویل + کنگو (جمهوری) + سوییس + عاج ِساحل + عاج ساحل + کوک جزایر + شیلی + کامرون + چین + کلمبیا + کلیپرتون جزیره + کاستاریکا + کوبا + کیپ ورد + کوراسائو + کریسمس جزیره + قبرس + چک جمهوری + آلمان + دیگو گارسیا + جیبوتی + دانمارک + دومنیکا + دومنیکن جمهوری + الجزیره + سوتا و ملیله + اکوادر + استونی + مصر + غربی صحرا + اریتره + ایسپانیا + اتیوپی + اروپا اتحادیه + فنلاند + فیجی + فالکلند جزیره‌ئون + فالکلند (مالویناس) + میکرونزی + فارو جزایر + فرانسه + گابون + بریتانیا + بریتانیا + گرانادا + گرجستون + فرانسه‌ی ِگویان + گرنزی + غنا + جبل طارق + گرینلند + گامبیا + گینه + گوادلوپ + استوایی گینه + یونان + جنوبی جورجیا و جنوبی ساندویچ جزایر + گواتمالا + گوئام + گینه بیسائو + گویان + هنگ کنگ + هونگ کونگ + هارد و مک‌دونالد جزایر + هندوراس + کرواسی + هاییتی + مجارستون + قناری جزایر + اندونزی + ایرلند + ایسراییل + من ِجزیره + هند + بریتانیای هند ِاوقیانوس ِمناطق + عراق + ایران + ایسلند + ایتالیا + جرسی + جاماییکا + اردن + جاپون + کنیا + قرقیزستون + کامبوج + کیریباتی + کومور + سنت کیتس و نویس + شمالی کُره + جنوبی کُره + کویت + کیمن جزیره‌ئون + قزاقستون + لائوس + لبنان + سنت لوسیا + لیختن اشتاین + سریلانکا + لیبریا + لسوتو + لتونی + لوکزامبورگ + لاتویا + لیبی + مراکش + موناکو + مولداوی + مونته‌نگرو + سنت مارتین + ماداگاسکار + مارشال جزایر + مقدونیه + مقدونیه جمهوری + مالی + میانمار + مغولستون + ماکائو (چین دله) + ماکائو + شمالی ماریانا جزایر + مارتینیک جزیره‌ئون + موریتانی + مونتسرات + مالت + مورى تيوس + مالدیو + مالاوی + مکزیک + مالزی + موزامبیک + نامبیا + نیو کالیدونیا + نیجر + نورفولک جزیره + نیجریه + نیکاراگوئه + هلند + نروژ + نپال + نائورو + نیئو + نیوزلند + عمان + پاناما + پرو + فرانسه‌ی پولی‌نزی + پاپوا نو گینه + فیلیپین + پاکستون + لهستون + سن پییر و میکلن + پیتکارین جزایر + پورتوریکو + فلسطین ِسرزمین + فلسطین + پرتغال + پالائو + پاراگوئه + قطر + اوقیانوسیه‌ی ِپرت ِجائون + رئونیون + رومانی + صربستون + روسیه + روآندا + عربستون + سلیمون جزیره + سیشل + سودان + سوئد + سنگاپور + سنت هلنا + اسلوونی + سوالبارد و يان ماين + اسلواکی + سیرالئون + سن مارینو + سنگال + سومالی + سورینام + جنوبی سودان + سائوتومه و پرینسیپ + السالوادور + سنت مارتن + سوریه + سوازیلند + تریستان دا جونها + تورکس و کایکوس جزایر + چاد + فرانسه‌ی جنوبی مناطق + توگو + تایلند + تاجیکستون + توکلائو + تیمور شرقی + شرقی تیمور + ترکمونستون + تونس + تونگا + ترکیه + ترینیداد و توباگو + تووالو + تایوان + تانزانیا + اوکراین + اوگاندا + آمریکای پَرتِ‌پِلا جزیره‌ئون + متحده ایالات + آمریکا متحده ایالات + اروگوئه + ازبکستون + واتیکان + سنت وینسنت و گرنادین + ونزوئلا + بریتانیای ویرجین + آمریکای ویرجین + ویتنام + وانواتو + والیس و فوتونا + ساموآ + کوزوو + یمن + مایوت + جنوبی افریقا + زامبیا + زیمبابوه + نامَیِّن منطقه + + + متریک + بریتانیایی + آمریکایی + + + زوون: {0} + اسکریپت: {0} + منطقه: {0} + + + + + right-to-left + top-to-bottom + + + + [\u064B \u064C \u064D \u0651 \u0654 ء آ أ ؤ ئ ا ب پ ة ت ث ج چ ح خ د ذ ر ز ژ س ش ص ض ط ظ ع غ ف ق ک گ ل م ن ه و ی] + [\u200C\u200D\u200E\u200F \u064E \u064F \u0650 \u0652 \u0656 \u0670 إ ك ى ي] + [آ ا ب پ ت ث ج چ ح خ د ذ ر ز ژ س ش ص ض ط ظ ع غ ف ق ک گ ل م ن ه و ی] + [\- ‐ ، ٫ ٬ ؛ \: ! ؟ . … ‹ › « » ( ) \[ \] * / \\] + {0}… + …{0} + {0}…{1} + {0} … + … {0} + {0} … {1} + ؟ + + + « + » + + + + + + + + + + ژانویه + فوریه + مارس + آوریل + مه + ژوئن + ژوئیه + اوت + سپتامبر + اکتبر + نوامبر + دسامبر + + + ژانویه + فوریه + مارس + آوریل + مه + ژوئن + ژوئیه + اوت + سپتامبر + اکتبر + نوامبر + دسامبر + + + + + ژانویه + فوریه + مارس + آوریل + مه + ژوئن + ژوئیه + اوت + سپتامبر + اکتبر + نوامبر + دسامبر + + + ژانویه + فوریه + مارس + آوریل + مه + ژوئن + ژوئیه + اوت + سپتامبر + اکتبر + نوامبر + دسامبر + + + + + + قبل میلاد + قبل میلادی تقویم + بعد میلاد + میلادی + + + پ.م + پ.م. + م. + م + + + + + + + تقویم + + + سال + پارسال + امسال + سال دیگه + + {0} سال دله + + + {0} سال پیش + + + + سال + + {0} سال دله + + + {0} سال پیش + + + + سال + + {0} سال دله + + + {0} سال پیش + + + + ربع + + {0} ربع دله + + + {0} ربع پیش + + + + ربع + + {0} ربع دله + + + {0} ربع پیش + + + + ربع + + {0} ربع دله + + + {0} ربع پیش + + + + ماه + ماه قبل + این ماه + ماه ِبعد + + {0} ماه دله + + + {0} ماه پیش + + + + ماه + + {0} ماه دله + + + {0} ماه پیش + + + + ماه + + {0} ماه دله + + + {0} ماه پیش + + + + هفته + قبلی هفته + این هفته + بعدی هفته + + {0} هفته دله + + + {0} هفته پیش + + + + هفته + + {0} هفته دله + + + {0} هفته پیش + + + + هفته + + {0} هفته دله + + + {0} هفته پیش + + + + روز + دیروز + اَمروز + فِردا + + {0} روز دله + + + {0} روز پیش + + + + روز + + {0} روز دله + + + {0} روز پیش + + + + روز + + {0} روز دله + + + {0} روز پیش + + + + هفته‌ی ِروز + + + قبلی یکشنبه + این یکشنبه + بعدی یکشنبه + + + یکشنبه قبل + این یکشنبه + یکشنبه بعد + + + قبلی یکشنبه + این یکشنبه + بعدی یکشنبه + + + قبلی دِشنبه + این دِشنبه + بعدی دِشنبه + + + قبلی دِشنبه + این دِشنبه + بعدی دِشنبه + + + قبلی دِشنبه + این دِشنبه + بعدی دِشنبه + + + قبلی سه‌شنبه + این سه‌شنبه + بعدی سه‌شنبه + + + قبلی سه‌شنبه + این سه‌شنبه + بعدی سه‌شنبه + + + قبلی سه‌شنبه + این سه‌شنبه + بعدی سه‌شنبه + + + قبلی چارشنبه + این چارشنبه + بعدی چارشنبه + + + قبلی چارشنبه + این چارشنبه + بعدی چارشنبه + + + قبلی چارشنبه + این چارشنبه + بعدی چارشنبه + + + قبلی پنجشنبه + این پنجشنبه + بعدی پنجشنبه + + + قبلی پنجشنبه + این پنجشنبه + بعدی پنجشنبه + + + قبلی پنجشنبه + این پنجشنبه + بعدی پنجشنبه + + + قبلی جومه + این جومه + بعدی جومه + + + قبلی جومه + این جومه + بعدی جومه + + + قبلی جومه + این جومه + بعدی جومه + + + قبلی شنبه + این شنبه + بعدی شنبه + + + قبلی شنبه + این شنبه + بعدی شنبه + + + قبلی شنبه + این شنبه + بعدی شنبه + + + صواحی/ظُر + + + ساعِت + + {0} ساعِت دله + + + {0} ساعِت پیش + + + + ساعت + + {0} ساعت دله + + + {0} ساعت پیش + + + + ساعت + + {0} ساعت دله + + + {0} ساعت پیش + + + + دقیقه + + {0} دقیقه دله + + + {0} دَقه پیش + + + + دَقه + + {0} دَقه دله + + + {0} دَقه پیش + + + + دَقه + + {0} دَقه دله + + + {0} دَقه پیش + + + + ثانیه + + {0} ثانیه دله + + + {0} ثانیه پیش + + + + ثانیه + + {0} ثانیه دله + + + {0} ثانیه پیش + + + + ثانیه + + {0} ثانیه دله + + + {0} ثانیه پیش + + + + زمونی منقطه + + + + +HH:mm;-HH:mm + GMT{0} + GMT + {0} + {0} (+1) + {0} (+0) + {1} ({0}) + + + + arabext + + arabext + + + + متحده عربی امارات ِدرهم + امارات ِدرهم + AED + + + افغانستون ِافغانی + افغانستون ِافغانی + AFN + + + آلبانی ِلک + آلبانی ِلک + ALL + + + ارمنستون درهم + ارمنستون درهم + AMD + + + هلند ِآنتیل ِجزایر ِگویلدر + هلند ِآنتیل ِجزایر ِگویلدر + ANG + + + آنگولای ِکوانزا + آنگولای ِکوانزا + AOA + Kz + + + آرژانتین ِپزو + آرژانتین ِپزو + ARS + $ + + + آروبای ِفلورن + آروبای فلورن + AWG + + + آذربایجون ِمنات + آذربایجون ِمنات + AZN + + + بوسنی و هرزگوین ِتبدیل‌بَیی مارک + بوسنی و هرزگوین ِتبدیل‌بَیی مارک + BAM + KM + + + باربادوس ِدولار + باربادوس دلار + BBD + $ + + + بنگلادش ِتاکا + بنگلادش ِتاکا + BDT + + + + بلغارستون ِلیوا + بلغارستون ِلیوا + BGN + + + بحرین ِدینار + بحرین ِدینار + BHD + + + بوروندی ِفرانک + بوروندی ِفرانک + BIF + + + برمودای ِدولار + برمودای ِدلار + BMD + $ + + + برونئی ِدولار + برونئی دلار + BND + $ + + + بولیوی ِبولیویانو + بولیوی ِبولیویانو + BOB + Bs + + + برزیل ِرئال + برزیل ِرئال + R$ + R$ + + + باهامای ِدولار + باهامای ِدولار + BSD + $ + + + بوتان ِنگولتروم + بوتان ِنگولتروم + BTN + + + بوتساوانای ِپولا + بوتساوانای ِپولا + BWP + P + + + بلاروس ِروبل + بلاروس ِروبل + BYR + р. + + + بلیز ِدولار + بلیز دلار + BZD + $ + + + کانادای ِدولار + کانادای ِدلار + CA$ + $ + + + کنگوی ِفرانک + کنگوی ِفرانک + CDF + + + سوییس ِفرانک + سوییس ِفرانک + CHF + + + شیلی ِپزو + شیلی ِپزو + CLP + $ + + + چین ِیوآن + چین ِیوآن + CN¥ + ¥ + + + کلمبیای ِپزو + کلمبیای ِپزو + COP + $ + + + کاستاریکای ِکولون + کاستاریکا کولون + CRC + + + + کوبای ِتبدیل‌بَیی پزو + کوبای تبدیل‌بَیی پزو + CUC + $ + + + کوبای ِپزو + کوبای پزو + CUP + $ + + + عاج ِساحل ِایسکودو + عاج ِساحل ِایسکودو + CVE + + + چک ِکرون + چک ِکرون + CZK + + + + جیبوتی ِفرانک + جیبوتی ِفرانک + DJF + + + دانمارک ِکورن + دانمارک ِکورن + DKK + kr + + + دومینیکن ِپزو + دومینیکن پزو + DOP + $ + + + الجزیره‌ی ِدینار + الجزیره‌ی ِدینار + DZD + + + مصر ِپوند + مصر ِپوند + EGP + + + + اریتره‌ی ِناکفا + اریتره‌ی ِناکفا + ERN + + + اتیوپی ِبیر + اتیوپی ِبیر + ETB + + + یورو + یورو + + + + + فالکلند ِجزایر ِپوند + فالکلند ِجزایر ِپوند + FKP + £ + + + بریتانیای ِپوند + بریتانیای ِپوند + £ + £ + + + گرجستون ِلاری + گرجستون ِلاری + GEL + + + + غنای ِسدی + غنای ِسدی + GHS + + + جبل‌طارق ِپوند + جبل‌طارق ِپوند + GIP + £ + + + گامبیای ِدالاسی + گامبیای ِدالاسی + GMD + + + گینه‌ی ِفرانک + گینه‌ی ِفرانک + GNF + FG + + + گواتمالا کتزال + گواتمالای ِکتزال + GTQ + Q + + + گویان ِدولار + گویان دلار + GYD + $ + + + هونگ کونگ ِدولار + هنگ کنگ ِدلار + HK$ + $ + + + هندوراس ِلمپیرا + هندوراس لمپیرا + HNL + L + + + کرواسی ِکونا + کرواسی ِکونا + HRK + kn + + + هائیتی ِگورد + هاییتی گورد + HTG + + + مجارستون ِفروینت + مجارستون ِفروینت + HUF + Ft + + + اندونزی ِروپیه + اندونزی ِروپیه + IDR + Rp + + + اسراییل ِنو شِکِل + اسراییل ِنو شِکِل + + + + + هند ِروپیه + هند ِروپیه + + + + + عراق ِدینار + عراق ِدینار + IQD + + + ایران ریال + ایران ریال + IRR + + + ایسلند کرونا + ایسلند کرونا + ISK + kr + + + جاماییکای ِدولار + جاماییکا دلار + JMD + $ + + + اردن ِدینار + اردن ِدینار + JOD + + + جاپون ِین + جاپون ِین + JP¥ + ¥ + + + کنیای ِشیلینگ + کنیای ِشیلینگ + KES + + + قرقیزستون ِسام + قرقیزستون ِسام + KGS + + + کامبوج ِریل + کامبوج ِریل + KHR + + + + کامرون ِفرانک + کامرون ِفرانک + KMF + CF + + + شمالی کره‌ی ِوون + شمالی کره وون + KPW + + + + جنوبی کُره‌ی ِوون + جنوبی کره وون + + + + + کویت ِدینار + کویت ِدینار + KWD + + + کایمن جزیره‌ی ِدولار + کایمن جزیره‌ی دلار + KYD + $ + + + قراقستون ِتنگ + قراقستون ِتنگ + KZT + + + + لائوس ِکیپ + لائوس ِکیپ + LAK + + + + لبنان ِپوند + لبنان ِپوند + LBP + + + + سریلانکا روپیه + سریلانکا روپیه + LKR + Rs + + + لیبریای ِدولار + لیبریا دلار + LRD + $ + + + لیبی ِدینار + لیبی ِدینار + LYD + + + مراکش ِدرهم + مراکش ِدرهم + MAD + + + مولداوی ِلئو + مولداوی ِلئو + MDL + + + ماداگاسکار ِآریاری + ماداگاسکار ِآریاری + MGA + Ar + + + مقدونیه‌ی ِدینار + مقدونیه‌ی ِدینار + MKD + + + میانمار ِکیات + میانمار ِکیات + MMK + K + + + مغلستون ِتوگریک + مغلستون ِتوگریک + MNT + + + + ماکائو ِپاتاجا + ماکائو ِپاتاجا + MOP + + + موریتانی ِاوگوئیا + موریتانی ِاوگوئیا + MRO + + + موریتیان ِروپیه + موریتیان ِروپیه + MUR + Rs + + + مالدیو ِروفیا + مالدیو ِروفیا + MVR + + + مالاوی ِکواچا + مالاوی ِکواچا + MWK + + + مکزیک ِپزو + مکزیک پزو + MX$ + $ + + + مالزی ِرینگیت + مالزی ِرینگیت + MYR + RM + + + موزامبیک متیکال + موزامبیک متیکال + MZN + + + نامبیای ِدولار + نامبیای ِدلار + NAD + $ + + + نیجریه‌ی ِنیارا + نیجریه‌ی ِنیارا + NGN + + + + نیکاراگوئه‌ی ِکوردوبا + نیکاراگوئه کوردوبا + NIO + C$ + + + نروژ ِکرون + نروژ ِکرون + NOK + kr + + + نپال ِروپیه + نپال ِروپیه + NPR + Rs + + + عمان ِریال + عمان ِریال + OMR + + + پانامای ِبالبوا + پانامای بالبوا + PAB + + + پروی ِنوئوو سول + پروی ِنوئوو سول + PEN + + + فیلیپین ِپزو + فیلیپین ِپزو + PHP + + + + پاکستون روپیه + پاکستون روپیه + PKR + Rs + + + لهستون ِزلوتی + لهستون ِزلوتی + PLN + + + + پاراگوئه‌ی ِگوارانی + پاراگوئه‌ی ِگوارانی + PYG + + + + قطر ِریال + قطر ِریال + QAR + + + رومانی ِلئو + رومانی ِلئو + RON + + + صربستون ِدینار + صربستون ِدینار + RSD + + + روسیه‌ی ِروبل + روسیه‌ی ِروبل + RUB + + + + روآندای ِفرانک + روآندای ِفرانک + RWF + RF + + + عربستون ِریال + عربستون ِریال + SAR + + + سیشل ِروپیه + سیشل ِروپیه + SCR + + + سودان ِپوند + سودان ِپوند + SDG + + + سوئد ِکرون + سوئد ِکرون + SEK + kr + + + سنگاپور ِدلار + سنگاپور ِدلار + SGD + $ + + + سنت هلنای ِپوند + سنت هلنای ِپوند + SHP + £ + + + سیرالئون ِلئون + سیرالئون ِلئون + SLL + + + سومالی ِشیلینگ + سومالی ِشیلینگ + SOS + + + سورینام ِدولار + سورینام ِدولار + SRD + $ + + + جنوبی سودان ِپوند + جنوبی سودان ِپوند + SSP + £ + + + سائوتومه و پرینسیپ ِدوبرا + سائوتومه و پرینسیپ ِدوبرا + STD + Db + + + سوریه‌ی ِپوند + سوریه‌ی ِپوند + SYP + £ + + + سوازیلند ِلیلانجنی + سوازیلند ِلیلانجنی + SZL + + + تایلند ِبات + تایلند ِبات + THB + ฿ + + + تاجیکستون ِسامانی + تاجیکستون ِسامانی + TJS + + + ترکمنستون ِمنات + ترکمنستون ِمنات + TMT + + + تونس ِدینار + تونس ِدینار + TND + + + ترکیه‌ی ِلیره + ترکیه‌ی ِلیره + TRY + + TL + + + ترینیداد و توباگوی ِدولار + ترینیداد و توباگوی ِدلار + TTD + $ + + + جدید ِتایوان ِدولار + تایوان دلار + NT$ + $ + + + تانزانیای ِشیلینگ + تانزانیای ِشیلینگ + TZS + + + اکراین ِگریونا + اکراین ِگریونا + UAH + + + + اوگاندای ِشیلینگ + اوگاندای ِشیلینگ + UGX + + + آمریکای ِدولار + آمریکای ِدلار + $ + $ + + + اروگوئه‌ی ِپزو + اروگوئه‌ی ِپزو + UYU + $ + + + ازبکستون ِسام + ازبکستون ِسام + UZS + + + ونزوئلایِ بولیوار + ونزوئلایِ بولیوار + VEF + Bs + + + ویتنام ِدنگ + ویتنام ِدنگ + + + + + میونی آفریقای ِسی‌اف‌ای فرانک + میونی آفریقای ِسی‌اف‌ای فرانک + FCFA + + + شرقی کاراییب ِدولار + شرقی کارائیب دلار + EC$ + $ + + + غربی آفریقای ِسی‌اف‌ای فرانک + غربی آفریقای ِسی‌اف‌ای فرانک + CFA + + + یمن ِریال + یمن ِریال + YER + + + جنوبی آفریقای ِراند + جنوبی آفریقای ِراند + ZAR + R + + + زامبیای ِکواچا + زامبیای ِکواچا + ZMW + ZK + + + + + + + {0}/{1} + + + g-force + {0} G + + + m/s² + {0} m/s² + + + rev + {0} rev + + + rad + {0} rad + + + deg + {0}° + + + arcmin + {0}′ + + + arcsec + {0}″ + + + kt + {0} kt + + + L/km + {0} L/km + + + L/100km + {0} L/100km + + + mpg + {0} mpg + + + ترابایت + {0} ترابایت + + + ترابیت + {0} ترابیت + + + گیگابایت + {0} گیگابایت + + + گیگابیت + {0} گیگابیت + + + مگابایت + {0} مگابایت + + + مگابیت + {0} مگابیت + + + کیلوبایت + {0} کیلوبایت + + + کیلوبیت + {0} کیلوبیت + + + بایت + {0} بایت + + + بیت + {0} بیت + + + قرن + {0} قرن + + + سال + {0} سال + {0} سال پیش + + + ماه + {0} ماه + {0} ماه پیش + + + هفته + {0} هفته + {0} هفته پیش + + + روز + {0} روز + {0} روز + + + ساعت + {0} ساعِت + {0} ساعِت + + + دقیقه + {0} دقیقه + + + ثانیه + {0} ثانیه + {0} ثانیه + + + میلی‌ثانیه + {0} میلی‌ثانیه + + + میکروثانیه + {0} میکروثانیه + + + نانوثانیه + {0} نانوثانیه + + + آمپر + {0} آمپر + + + میلی‌آمپر + {0} میلی‌آمپر + + + اُهم + {0} Ω + + + وُلت + {0} ولت + + + کیلوکالری + {0} کیلوکالری + + + کالری + {0} کالری + + + کالری + {0} کالری + + + کیلوژول + {0} کیلوژول + + + ژول + {0} ژول + + + کیلووات بر ساعت + {0} کیلووات-ساعت + + + گیگاهرتز + {0} گیگاهرتز + + + مگاهرتز + {0} مگاهرتز + + + کیلوهرتز + {0} کیلوهرتز + + + هرتز + {0} هرتز + + + lx + {0} lx + + + متریک تُن + {0} متریک تُن + + + کیلوگرم + {0} کیلوگرم + {0} هر کیلوگرم دله + + + گرم + {0} گرم + {0} هر گرم دله + + + میلی‌گرم + {0} میلی‌گرم + + + میکروگرم + {0} میکروگرم + + + تُن + {0} تُن + + + پوند + {0} پوند + {0} هر پوند دله + + + اونس + {0} اونس + {0} هر اونس دله + + + تروی اونس + {0} تروی اونس + + + قیراط + {0} قیراط + + + گیگاوات + {0} گیگاوات + + + مگاوات + {0} مگاوات + + + کیلووات + {0} کیلووات + + + وات + {0} وات + + + میلی‌وات + {0} میلی‌وات + + + اسب‌بخار + {0} اسب بخار + + + کیلومتر بر ساعت + {0} کیلومتر بر ساعت + + + متر بر ثانیه + {0} متر بر ثانیه + + + مایل بر ساعت + {0} مایل بر ساعت + + + گره + {0} گره + + + ° + {0}° + + + درجه سلسیوس + {0} درجه سلسیوس + + + فارنهایت + {0} فارنهایت + + + کلوین + {0} کلوین + + + کیلومتر مکعب + {0} کیلومتر مکعب + + + متر مکعب + {0} متر مکعب + {0} هر متر مکعب دله + + + سانتی‌متر مکعب + {0} سانتی‌متر مکعب + {0} هر سانتی‌متر مکعب دله + + + مایل مکعب + {0} مایل مکعب + + + یارد مکعب + {0} یارد مکعب + + + فوت مکعب + {0} فوت مکعب + + + اینچ مکعب + {0} اینچ مکعب + + + مگالیتر + {0} مگالیتر + + + هکتولیتر + {0} هکتولیتر + + + لیتر + {0} لیتر + {0} هر لیتر دله + + + دسی‌لیتر + {0} دسی‌لیتر + + + سانتی‌لیتر + {0} سانتی‌لیتر + + + میلی‌لیتر + {0} میلی‌لیتر + + + متریک پاینت + {0} متریک پاینت + + + متریک دَییل + {0} متریک دَییل + + + آکر-فوت + {0} آکر-فوت + + + گالون + {0} گالون + {0} هر گالون دله + + + ربع + {0} ربع + + + پاینت + {0} پاینت + + + دَییل + {0} دَییل + + + فلوید اونس + {0} فلوید اونس + + + کال + {0}تا کال + + + چایی‌خاری کچه + {0} چایی‌خاری کچه + + + {0}E + {0}N + {0}S + {0}W + + + + + {0}/{1} + + + g-force + {0} G + + + m/s² + {0} m/s² + + + rev + {0} rev + + + rad + {0} rad + + + deg + {0}° + + + arcmin + {0}′ + + + arcsec + {0}″ + + + kt + {0} kt + + + L/km + {0} L/km + + + L/100km + {0} L/100km + + + mpg + {0} mpg + + + ترابایت + {0} ترابایت + + + ترابیت + {0} ترابیت + + + گیگابایت + {0} گیگابایت + + + گیگابیت + {0} گیگابیت + + + مگابایت + {0} مگابایت + + + مگابیت + {0} مگابیت + + + کیلوبایت + {0} کیلوبایت + + + کیلوبیت + {0} کیلوبیت + + + بایت + {0} بایت + + + بیت + {0} بیت + + + قرن + {0} قرن + + + سال + {0} سال + {0} سال + + + ماه + {0} ماه + {0} ماه + + + هفته + {0} هفته + {0} هفته + + + روز + {0} روز + {0} روز + + + ساعت + {0} ساعِت + + + دَقه + {0} دَقه + {0} دَقه + + + ثانیه + {0} ثانیه + {0} ثانیه + + + میلی‌ثانیه + {0} میلی‌ثانیه + + + میکروثانیه + {0} میکروثانیه + + + نانوثانیه + {0} نانوثانیه + + + آمپر + {0} A + + + میلی‌آمپر + {0} mA + + + اهم + {0} Ω + + + ولت + {0} V + + + کیلوکالری + {0} kcal + + + کالری + {0} cal + + + کالری + {0} Cal + + + کیلوژول + {0} kJ + + + ژول + {0} J + + + کیلووات-ساعت + {0} kWh + + + گیگاهرتز + {0} GHz + + + مگاهرتز + {0} MHz + + + کیلوهرتز + {0} kHz + + + هرتز + {0} Hz + + + lx + {0} lx + + + t + {0} t + + + کیلوگرم + {0} kg + {0}/kg + + + گرم + {0} g + {0}/g + + + میلی‌گرم + {0} mg + + + میکروگرم + {0} µg + + + تُن + {0} tn + + + پوند + {0} lb + {0}/lb + + + اونس + {0} oz + {0}/oz + + + تروی اونس + {0} oz t + + + قیراط + {0} قیراط + + + گیگاوات + {0} GW + + + مگاوات + {0} MW + + + کیلووات + {0} kW + + + وات + {0} W + + + میلی‌وات + {0} mW + + + اسب‌بخار + {0} hp + + + کیلومتر بر ساعت + {0} km/h + + + متر بر ثانیه + {0} m/s + + + مایل بر ساعت + {0} mi/h + + + گره + {0} kn + + + ° + {0}° + + + °C + {0}°C + + + °F + {0}°F + + + K + {0} K + + + km³ + {0} km³ + + + + {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0}/cm³ + + + mi³ + {0} mi³ + + + yd³ + {0} yd³ + + + ft³ + {0} ft³ + + + in³ + {0} in³ + + + مگالیتر + {0} ML + + + هکتولیتر + {0} hL + + + لیتر + {0} لیتر + {0}/l + + + دسی‌لیتر + {0} dL + + + سانتی‌لیتر + {0} cL + + + میلی‌لیتر + {0} mL + + + متریک پاینت + {0} mpt + + + mcup + {0} mc + + + آکرفوت + {0} ac ft + + + گالون + {0} gal + {0}/gal + + + ربع + {0} qt + + + پاینت + {0} pt + + + دَییل + {0} c + + + فلوید اونس + {0} fl oz + + + کال + {0} tbsp + + + چایی‌خاری کچه + {0} tsp + + + {0}E + {0}N + {0}S + {0}W + + + + + {0}/{1} + + + L/100km + {0} L/100km + + + سال + {0} سال + + + ماه + {0} ماه + + + هفته + {0} هفته + + + روز + {0} روز + + + ساعت + {0} ساعِت + + + دَقه + {0} دَقه + + + ثانیه + {0} ثانیه + + + میلی‌ثانیه + {0} میلی‌ثانیه + + + کیلوگرم + {0} kg + + + گرم + {0} g + + + کیلومتر بر ساعت + {0} km/h + + + °C + {0}°C + + + لیتر + {0} l + + + {0}E + {0}N + {0}S + {0}W + + + + h:mm + + + h:mm:ss + + + m:ss + + + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + + + + + yes:y + no:n + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mzn_IR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mzn_IR.xml new file mode 100644 index 00000000000..36d4d31f880 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/mzn_IR.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/naq.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/naq.xml similarity index 89% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/naq.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/naq.xml index 072c3f64d85..d14a169eadb 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/naq.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/naq.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguillab Albaniab Armeniab - Netherlands Antilles Angolab Argentinab Americab Samoab @@ -448,6 +446,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + ǁgoagas + ǃuias + ǁgoagas ǃuias @@ -550,7 +552,9 @@ For terms of use, see http://www.unicode.org/copyright.html Tsees + yesterday Neetsee + tomorrow Wekheb tsees @@ -579,6 +583,46 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00 + + + ¤0K + ¤0K + ¤0K + ¤00K + ¤00K + ¤00K + ¤000K + ¤000K + ¤000K + ¤0M + ¤0M + ¤0M + ¤00M + ¤00M + ¤00M + ¤000M + ¤000M + ¤000M + ¤0G + ¤0G + ¤0G + ¤00G + ¤00G + ¤00G + ¤000G + ¤000G + ¤000G + ¤0T + ¤0T + ¤0T + ¤00T + ¤00T + ¤00T + ¤000T + ¤000T + ¤000T + + @@ -759,3 +803,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/naq_NA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/naq_NA.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/naq_NA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/naq_NA.xml index 6528b2bcf18..6c546da8036 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/naq_NA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/naq_NA.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nb.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nb.xml similarity index 72% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nb.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nb.xml index 632caf658b0..c06e3298673 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nb.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nb.xml @@ -1,13 +1,12 @@ - - - + @@ -24,13 +23,16 @@ For terms of use, see http://www.unicode.org/copyright.html adangme adyghe avestisk + tunisisk-arabisk afrikaans afrihili aghem ainu akan akkadisk + alabama aleutisk + gegisk-albansk søraltaisk amharisk aragonsk @@ -40,12 +42,18 @@ For terms of use, see http://www.unicode.org/copyright.html moderne standard arabisk arameisk araukansk + araona arapaho + algerisk arabisk arawak + marokkansk-arabisk + egyptisk arabisk assamisk asu + amerikansk tegnspråk asturisk avarisk + kotava awadhi aymara aserbajdsjansk @@ -53,26 +61,35 @@ For terms of use, see http://www.unicode.org/copyright.html basjkirsk baluchi balinesisk + bairisk basa bamun + batak toba ghomala hviterussisk beja bemba + betawi bena bafut + badaga bulgarsk + vestbalutsji bhojpuri bislama bikol bini + banjar kom siksika bambara bengali tibetansk + bishnupriya + bakhtiari bretonsk braj + brahui bodo bosnisk akose @@ -102,12 +119,13 @@ For terms of use, see http://www.unicode.org/copyright.html kurdisk (sorani) korsikansk koptisk + kapiz cree krimtatarisk tsjekkisk kasjubisk kirkeslavisk - tsjuvansk + tsjuvasjisk walisisk dansk dakota @@ -123,6 +141,7 @@ For terms of use, see http://www.unicode.org/copyright.html zarma dogri lavsorbisk + sentraldusun duala mellomnederlandsk divehi @@ -133,6 +152,7 @@ For terms of use, see http://www.unicode.org/copyright.html kiembu ewe efik + emiliansk gammelegyptisk ekajuk gresk @@ -141,7 +161,7 @@ For terms of use, see http://www.unicode.org/copyright.html australsk engelsk canadisk engelsk britisk engelsk - engelsk – britisk + engelsk – Storbritannia amerikansk engelsk engelsk – USA mellomengelsk @@ -150,23 +170,28 @@ For terms of use, see http://www.unicode.org/copyright.html latinamerikansk spansk europeisk spansk meksikansk spansk + sentralyupik estisk baskisk ewondo + ekstremaduransk persisk fang fanti fulani finsk filippinsk + tornedalsfinsk fijiansk færøysk fon fransk canadisk fransk sveitsisk fransk + kajunfransk mellomfransk gammelfransk + arpitansk nordfrisisk østfrisisk friuliansk @@ -174,15 +199,19 @@ For terms of use, see http://www.unicode.org/copyright.html irsk ga gagausisk + gan gayo gbaya + zoroastrisk dari skotsk gælisk ges kiribatisk galisisk + gileki mellomhøytysk guarani gammelhøytysk + goansk konkani gondi gorontalo gotisk @@ -190,20 +219,25 @@ For terms of use, see http://www.unicode.org/copyright.html gammelgresk sveitsertysk gujarati + wayuu + frafra gusii mansk gwichin hausa haida + hakka hawaiisk hebraisk hindi + fijiansk hindi hiligaynon hettittisk hmong hiri motu kroatisk høysorbisk + xiang haitisk ungarsk hupa @@ -223,12 +257,15 @@ For terms of use, see http://www.unicode.org/copyright.html islandsk italiensk inuktitut + ingrisk japansk + jamaicansk kreolengelsk lojban ngomba machame jødepersisk jødearabisk + jysk javanesisk georgisk karakalpakisk @@ -242,12 +279,16 @@ For terms of use, see http://www.unicode.org/copyright.html tyap makonde kappverdisk + kenyang koro kikongo + kaingang khasi khotanesisk koyra chiini + khowar kikuyu + kirmancki kuanyama kasakhisk kako @@ -263,6 +304,8 @@ For terms of use, see http://www.unicode.org/copyright.html kpelle kanuri karachay-balkar + krio + kinaray-a karelsk kurukh kasjmiri @@ -282,22 +325,30 @@ For terms of use, see http://www.unicode.org/copyright.html lamba luxemburgsk lezghian + lingua franca nova ganda limburgisk + ligurisk + livisk lakota + lombardisk lingala laotisk mongo lozi + nord-luri litauisk + latgallisk luba-katanga luba-lulua luiseno lunda luo - lushai + mizo luhya latvisk + klassisk kinesisk + lazisk maduresisk mafa magahi @@ -311,7 +362,7 @@ For terms of use, see http://www.unicode.org/copyright.html mende meru mauritisk-kreolsk - madagassisk + gassisk mellomirsk makhuwa-meetto meta’ @@ -327,6 +378,7 @@ For terms of use, see http://www.unicode.org/copyright.html mohawk mossi marathi + vestmarisk malayisk maltesisk mundang @@ -334,20 +386,25 @@ For terms of use, see http://www.unicode.org/copyright.html creek mirandesisk marwari + mentawai burmesisk myene erzya + mazandarani nauru + minnan napolitansk nama norsk bokmål nord-ndebele - lavtysk + nedertysk + nedersaksisk nepali newari ndonga nias niueansk + ao naga nederlandsk flamsk kwasio @@ -356,7 +413,8 @@ For terms of use, see http://www.unicode.org/copyright.html norsk nogai gammelnorsk - nkå + novial + nʼko sør-ndebele nord-sotho nuer @@ -380,11 +438,18 @@ For terms of use, see http://www.unicode.org/copyright.html pampanga papiamento palauisk + pikardisk + pennsylvaniatysk + plautdietsch gammelpersisk + palatintysk fønikisk pali polsk + piemontesisk + pontisk ponapisk + prøyssisk gammelprovençalsk pashto pushto @@ -393,9 +458,12 @@ For terms of use, see http://www.unicode.org/copyright.html europeisk portugisisk quechua quiché + kichwa (Chimborazo-høylandet) rajasthani rapanui rarotongansk + romagnolsk + riff retoromansk rundi rumensk @@ -403,7 +471,10 @@ For terms of use, see http://www.unicode.org/copyright.html rombo romani rot + rotumansk russisk + rusinsk + roviana aromansk kinyarwanda rwa @@ -414,19 +485,24 @@ For terms of use, see http://www.unicode.org/copyright.html samburu sasak santali + saurashtra ngambay sangu sardinsk siciliansk skotsk sindhi + sassarisk sardinsk + sørkurdisk nordsamisk seneca sena + seri selkupisk koyraboro senni sango gammelirsk + samogitisk serbokroatisk tachelhit shan @@ -435,6 +511,8 @@ For terms of use, see http://www.unicode.org/copyright.html sidamo slovakisk slovensk + lavschlesisk + selayar samoansk sørsamisk lulesamisk @@ -451,17 +529,20 @@ For terms of use, see http://www.unicode.org/copyright.html swati saho sør-sotho + saterfrisisk sundanesisk sukuma susu sumerisk svensk swahili + kongolesisk swahili komorisk - kongolesisk swahili klassisk syrisk syrisk - tamilsk + schlesisk + tamil + tulu telugu temne teso @@ -474,19 +555,24 @@ For terms of use, see http://www.unicode.org/copyright.html tiv turkmensk tokelau + tsakhursk tagalog klingon tlingit + talysh tamasjek setswana tongansk nyasa-tongansk tok pisin tyrkisk + turoyo taroko tsonga + tsakonisk tsimshian tatarisk + muslimsk tat tumbuka tuvalu twi @@ -504,18 +590,26 @@ For terms of use, see http://www.unicode.org/copyright.html usbekisk vai venda + venetiansk + vepsisk vietnamesisk + vestflamsk + Main-frankisk volapyk votisk + sørestisk vunjo vallonsk walser walamo waray washo + warlpiri wolof + wu kalmyk xhosa + mingrelsk soga yao yapesisk @@ -523,10 +617,12 @@ For terms of use, see http://www.unicode.org/copyright.html yemba jiddisk joruba + nheengatu kantonesisk zhuang zapotec blissymboler + zeeuws zenaga standard marrokansk tamazight kinesisk @@ -539,6 +635,8 @@ For terms of use, see http://www.unicode.org/copyright.html + + @@ -571,6 +669,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -587,6 +686,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -620,6 +720,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -627,10 +728,12 @@ For terms of use, see http://www.unicode.org/copyright.html + + @@ -643,6 +746,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -651,6 +755,54 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -661,6 +813,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -739,7 +892,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - De nederlandske antiller Angola Antarktis Argentina @@ -1013,29 +1165,34 @@ For terms of use, see http://www.unicode.org/copyright.html øst-armensk vest-armensk samlet tyrkisk-latinsk alfabet + balankadialekten av anii + barlaventa-dialektgruppen av kappverdiansk bauddha biscayan san giorgio- og biladialekt bohorisk alfabet boontling dajnkoalfabet + serbisk med ekavisk uttale tidlig moderne engelsk det internasjonale fonetiske alfabet (IPA) det uraliske fonetiske alfabet (UPA) fonxsamp Hepburn-romanisering høgnorsk + serbisk med ijekavisk uttale itihasa jauer jyutping felles ortografi + kociewie standard ortografi laukika resia med Lipovaz-dialekt LUNA1918 Metelko-alfabet monotonisk rettskriving - Ndyuka-dialekt + ndyuka-dialekt natisonedialekt gniva- og njivadialekt moderne volapük @@ -1046,29 +1203,32 @@ For terms of use, see http://www.unicode.org/copyright.html polytonisk rettskriving dataspråk PUTER - revidert rettskriving + revidert ortografi klassisk volapük resisk dialekt RUMGR - saaho dialekt + saho skotsk standard engelsk scouse dialekt stolvizza- og solbicadialekt + sotavento-dialektgruppen av kappverdiansk surmiransk sursilvan sutsilvan taraskievica-ortografi - felles revidert ortografi + harmonisert ortografi + harmonisert revidert ortografi ulster + Unifon fonetisk alfabet vaidika - valensisk dialekt + valensiansk vallader - Wade-Giles + Wade-Giles-romanisering kalender Ignorer sortering etter symboler - Omvendt sortering etter aksent + omvendt sortering etter aksent Organisering av store og små bokstaver Sortering av store og små bokstaver Sortering av kana @@ -1077,6 +1237,9 @@ For terms of use, see http://www.unicode.org/copyright.html Numerisk sortering Sorteringsstyrke valuta + timesyklus (12 eller 24) + linjeskiftstil + målesystem tall tidssone Språkvariant @@ -1084,121 +1247,133 @@ For terms of use, see http://www.unicode.org/copyright.html privat bruk - arabisk-indiske tall - utvidede arabisk-indiske tall - armenske tallsymboler - små armenske tallsymboler - baliske tall - bengalske tall - tradisjonell kinesisk sortering - Big 5 - brahmiske tall - buddhistisk kalender - chakma-tall - cham-tall - kinesisk kalender - koptisk kalender - dangisk kalender - devanagari-tall - ordlistesortering - standard Unicode-sorteringsrekkefølge - sorteringsrekkefølge for flerspråklige europeiske dokumenter - etiopiske tallsymboler - etiopisk kalender - etiopisk amete-alem-kalender - Finansielle tall - tall med full bredde - forenklet kinesisk sortering - GB2312 - georgiske tall - gregoriansk kalender - greske tallsymboler - små greske tallsymboler - gujarati-tall - gurmukhi-tall - kinesiske desimaltallsymboler - forenklede kinesiske tallsymboler - forenklede kinesiske finanstallsymboler - tradisjonelle kinesiske tallsymboler - tradisjonelle kinesiske finanstallsymboler - hebraiske tallsymboler - hebraisk kalender - Sortér alle - indisk nasjonalkalender - islamsk kalender - islamsk sivil kalender - islamsk kalender (Saudi-Arabia. synlighet) - islamsk kalender (tabellarisk, astronomisk epoke) - islamsk kalender (Umm al-Qura) - ISO 8601-kalender - japansk kalender - java-tall - japanske tallsymboler - japanske finanstallsymboler - kayah li-tall - khmer-tall - kannada-tall - thai tham hora-tall - tai tham tham-tall - lao-tall - vestlige tall - lepecha-tall - limbu-tall - Sortér små bokstaver først - malayalam-tall - mongolske tall - meetei mayek-tall - myanmar-tall - myanmar shan-tall - Språkspesifikke sifre - n’ko-tall - Sortér aksenttegn normalt - Sortér store og små bokstaver i vanlig rekkefølge - Sortér uavhengig av store og små bokstaver. - Sortér kana separat - Sortér uten normalisering - Sortér sifre individuelt - Sortér symboler - ol chiki-tall - oriya-tall - osmanya-tall - persisk kalender - telefonkatalogsortering - Fonetisk sorteringsrekkefølge - pinyinsortering - Sortér bare basisbokstaver - Sortér aksenttegn / små og store bokstaver / bredde / kana - reformert sortering - kalender for Republikken Kina - romertall - små romertall - sarushatra-tall - søk av normaltype - Søk etter første konsonant i hangul - Sortér aksenttegn - Ignorer symboler under sortering - sharada-tall - sora sompeng-tall - standard sorteringsrekkefølge - streksortering - sundanese-tall - takri-tall - ny tai lue-tall - tamilske tallsymboler - tamilske tall - telugu-tall - Sortér aksenttegn / små og store bokstaver / bredde - thailandske tall - tibetanske tall - tradisjonell sortering - Tradisjonelle tall - radikal-strek-sortering - Sortér store bokstaver først - vai-sifre - Sortér aksenttegn i motsatt rekkefølge - Sortér med skille mellom små og store bokstaver - Sortér med skille mellom forskjellige varianter av kana - Sortér Unicode normalisert - Sortér sifre numerisk - zhuyin-sortering + buddhistisk kalender + kinesisk kalender + koptisk kalender + dangisk kalender + etiopisk kalender + etiopisk amete-alem-kalender + gregoriansk kalender + hebraisk kalender + indisk nasjonalkalender + islamsk kalender + islamsk kalender (tabell, sivil) + islamsk kalender (Saudi-Arabia, observasjon) + islamsk kalender (tabell, astronomisk) + islamsk kalender (Umm al-Qura) + ISO 8601-kalender + japansk kalender + persisk kalender + kalender for Republikken Kina + sortér symboler + Ignorer symboler under sortering + sortér aksenttegn normalt + sortér aksenttegn i motsatt rekkefølge + Sortér små bokstaver først + Sortér store og små bokstaver i vanlig rekkefølge + Sortér store bokstaver først + Sortér uavhengig av store og små bokstaver. + Sortér med skille mellom små og store bokstaver + Sortér kana separat + Sortér med skille mellom forskjellige varianter av kana + tradisjonell kinesisk sortering - Big 5 + forrige sorteringsrekkefølge (for kompatibilitet) + ordlistesortering + standard Unicode-sorteringsrekkefølge + emoji-sorteringsrekkefølge + sorteringsrekkefølge for flerspråklige europeiske dokumenter + forenklet kinesisk sortering - GB2312 + telefonkatalogsortering + Fonetisk sorteringsrekkefølge + pinyinsortering + reformert sortering + generelt søk + Søk etter første konsonant i hangul + standard sorteringsrekkefølge + streksortering + tradisjonell sortering + radikal-strek-sortering + zhuyin-sortering + Sortér uten normalisering + Sortér Unicode normalisert + Sortér sifre individuelt + Sortér sifre numerisk + Sortér alle + Sortér bare basisbokstaver + Sortér aksenttegn / små og store bokstaver / bredde / kana + Sortér aksenttegn + Sortér aksenttegn / små og store bokstaver / bredde + 12-timers system (0–11) + 12-timers system (1–12) + 24-timers system (0–23) + 24-timers system (1–24) + løs linjeskiftstil + normal linjeskiftstil + streng linjeskiftstil + metrisk system + britisk målesystem + amerikansk målesystem + arabisk-indiske sifre + utvidede arabisk-indiske sifre + armenske tallsymboler + små armenske tallsymboler + baliske tall + bengalske sifre + brahmiske tall + chakma-tall + cham-tall + devanagari-sifre + etiopiske tallsymboler + Finansielle tall + sifre med full bredde + georgiske tallsymboler + greske tallsymboler + små greske tallsymboler + gujarati-sifre + gurmukhi-sifre + kinesiske desimaltallsymboler + forenklede kinesiske tallsymboler + forenklede kinesiske finanstallsymboler + tradisjonelle kinesiske tallsymboler + tradisjonelle kinesiske finanstallsymboler + hebraiske tallsymboler + java-tall + japanske tallsymboler + japanske finanstallsymboler + kayah li-tall + khmer-sifre + kannada-sifre + thai tham hora-tall + tai tham tham-tall + laotiske sifre + vestlige sifre + lepecha-tall + limbu-tall + malayalam-sifre + mongolske tall + meetei mayek-tall + myanmar-sifre + myanmar shan-tall + Språkspesifikke sifre + n’ko-tall + ol chiki-tall + oriya-sifre + osmanya-tall + romertall + små romertall + sarushatra-tall + sharada-tall + sora sompeng-tall + sundanese-tall + takri-tall + ny tai lue-tall + tamilske tallsymboler + tamilske sifre + telugu-sifre + thailandske sifre + tibetanske sifre + Tradisjonelle tall + vai-sifre BGN @@ -1230,7 +1405,7 @@ For terms of use, see http://www.unicode.org/copyright.html [a à b c d e é f g h i j k l m n o ó ò ô p q r s t u v w x y z æ ø å] - [á ǎ ã č ç đ è ê í ń ñ ŋ š ŧ ü ž ä ö] + [á ǎ ã č ç đ è ê í ń ñ ŋ š ŧ ú ü ž ä ö] [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Æ Ø Å] [\- – , ; \: ! ? . ' " « » ( ) \[ \] \{ \} § @ * / \\] {0}… @@ -1255,6 +1430,600 @@ For terms of use, see http://www.unicode.org/copyright.html BE + + + ccc + d. MMMM + + + + + + + + M01 + M02 + M03 + M04 + M05 + M06 + M07 + M08 + M09 + M10 + M11 + M12 + + + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + + + + + {0}bis + + + {0}b + + + {0}bis + + + + + {0}bis + + + + + {0}bis + + + {0}b + + + {0}bis + + + + + + + + zi + chou + yin + mao + chen + si + wu + wei + shen + you + xu + hai + + + + + + + vårstart + regnvann + insekter våkner + vårjevndøgn + lyst og klart + kornregn + sommerstart + tidl. korn + korn i aks + sommersolverv + liten varme + stor varme + høststart + varmeslutt + hvit dugg + høstjevndøgn + kalddugg + første frost + vinterstart + litt snø + mye snø + vintersolverv + liten kulde + stor kulde + + + + + + + jia-zi + yi-chou + bing-yin + ding-mao + wu-chen + ji-si + geng-wu + xin-wei + ren-shen + gui-you + jia-xu + yi-hai + bing-zi + ding-chou + wu-yin + ji-mao + geng-chen + xin-si + ren-wu + gui-wei + jia-shen + yi-you + bing-xu + ding-hai + wu-zi + ji-chou + geng-yin + xin-mao + ren-chen + gui-si + jia-wu + yi-wei + bing-shen + ding-you + wu-xu + ji-hai + geng-zi + xin-chou + ren-yin + gui-mao + jia-chen + yi-si + bing-wu + ding-wei + wu-shen + ji-you + geng-xu + xin-hai + ren-zi + gui-chou + jia-yin + yi-mao + bing-chen + ding-si + wu-wu + ji-wei + geng-shen + xin-you + ren-xu + gui-hai + + + + + + + + EEEE d. MMMM r(U) + + + + + d. MMMM r(U) + + + + + d. MMM r + + + + + d.M.r + + + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + d. + ccc + E d. + r(U) + MMM r(U) + d. MMM r + E d. MMM r(U) + L. + dd.MM + E dd.MM. + LLL + d. MMM + E d. MMM + d. MMMM + MM. U + d.MM. U + MMM U + d. MMM U + r(U) + dd.MM.r + r(U) + MM.r + dd.MM.r + E dd.MM.r + MMM r(U) + d. MMM r + E d. MMM r(U) + MMMM r(U) + QQQ r(U) + QQQQ r(U) + + + {0}–{1} + + d.–d. + + + h a–h a + h–h a + + + HH–HH + + + h.mm a–h.mm a + h.mm–h.mm a + h.mm–h.mm a + + + HH.mm–HH.mm + HH.mm–HH.mm + + + h.mm a–h.mm a v + h.mm–h.mm a v + h.mm–h.mm a v + + + HH.mm–HH.mm v + HH.mm–HH.mm v + + + h a–h a v + h–h a v + + + HH–HH v + + + MM.–MM. + + + dd.MM.–dd.MM. + dd.MM.–dd.MM. + + + dd.MM.E–dd.MM.E + dd.MM.E–dd.MM.E + + + LLL–LLL + + + d.–d. MMM + d. MMM–d. MMM + + + E d. MMM–E d. MMM + E d. MMM–E d. MMM + + + U–U + + + MM.y–MM.y + MM.y–MM.y + + + dd.MM.y–dd.MM.y + dd.MM.y–dd.MM.y + dd.MM.y–dd.MM.y + + + E dd.MM.y–E dd.MM.y + E dd.MM.y–E dd.MM.y + E dd.MM.y–E dd.MM.y + + + MMM–MMM U + MMM U–MMM U + + + d.–d. U MMM + d. MMM–d. MMM U + d. MMM U–d. MMM U + + + E d. MMM–E d. MMM U + E d. MMM–E d. MMM U + E d. MMM U–E d. MMM U + + + MMMM–MMMM U + MMMM U–MMMM U + + + + + + + + + tout + baba + hator + kiahk + toba + amshir + baramhat + baramouda + bashans + paona + epep + mesra + nasie + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + + + tout + baba + hator + kiahk + toba + amshir + baramhat + baramouda + bashans + paona + epep + mesra + nasie + + + + + tout + baba + hator + kiahk + toba + amshir + baramhat + baramouda + bashans + paona + epep + mesra + nasie + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + + + tout + baba + hator + kiahk + toba + amshir + baramhat + baramouda + bashans + paona + epep + mesra + nasie + + + + + + 0. tidsalder + 1. tidsalder + + + 0. t.a. + 1. t.a. + + + TA0 + TA1 + + + + + ccc + d. MMMM + + + + + + + + meskerem + tekemt + hedar + tahsas + ter + yekatit + megabit + miazia + genbot + sene + hamle + nehasse + pagumen + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + + + meskerem + tekemt + hedar + tahsas + ter + yekatit + megabit + miazia + genbot + sene + hamle + nehasse + pagumen + + + + + meskerem + tekemt + hedar + tahsas + ter + yekatit + megabit + miazia + genbot + sene + hamle + nehasse + pagumen + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + + + meskerem + tekemt + hedar + tahsas + ter + yekatit + megabit + miazia + genbot + sene + hamle + nehasse + pagumen + + + + + + 0. tidsalder + 1. tidsalder + + + 0. t.a. + 1. t.a. + + + TA0 + TA1 + + + + + ccc + d. MMMM + + @@ -1302,6 +2071,7 @@ For terms of use, see http://www.unicode.org/copyright.html d. + ccc E d. y G MMM y G @@ -1320,6 +2090,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d. MMM E d. MMM + d. MMMM mm.ss y G y G @@ -1563,13 +2334,13 @@ For terms of use, see http://www.unicode.org/copyright.html - sø. - ma. - ti. - on. - to. - fr. - lø. + søn. + man. + tir. + ons. + tor. + fre. + lør. S @@ -1609,10 +2380,10 @@ For terms of use, see http://www.unicode.org/copyright.html K4 - 1 - 2 - 3 - 4 + 1. + 2. + 3. + 4. 1. kvartal @@ -1629,10 +2400,10 @@ For terms of use, see http://www.unicode.org/copyright.html K4 - 1 - 2 - 3 - 4 + 1. + 2. + 3. + 4. 1. kvartal @@ -1645,45 +2416,87 @@ For terms of use, see http://www.unicode.org/copyright.html - a.m. - p.m. + midn. + a.m. + p.m. + morg. + form. + etterm. + kveld + natt + mn. a - 12 p + mg. + fm. + em. + kv. + nt. + midnatt a.m. - kl. 12 p.m. + morgenen + formiddagen + ettermiddagen + kvelden + natten + + midn. + a.m. + p.m. + morg. + form. + etterm. + kveld + natt + + + mn. + a.m. + p.m. + mg. + fm. + em. + kv. + nt. + - AM - PM + midnatt + a.m. + p.m. + morgen + formiddag + ettermiddag + kveld + natt - f.Kr. + før Kristus før vår tidsregning - e.Kr. - vår tidsregning + etter Kristus + etter vår tidsregning f.Kr. fvt. e.Kr. - vt. + evt. f.Kr. - fvt. + fvt. e.Kr. - vt + vt. @@ -1712,21 +2525,25 @@ For terms of use, see http://www.unicode.org/copyright.html HH.mm.ss zzzz + HH:mm:ss zzzz HH.mm.ss z + HH:mm:ss z HH.mm.ss + HH:mm:ss HH.mm + HH:mm @@ -1738,7 +2555,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} 'kl.' {0} + {1} 'kl'. {0} @@ -1780,6 +2597,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d. MMM E d. MMM + d. MMMM mm.ss y M.y @@ -1802,14 +2620,14 @@ For terms of use, see http://www.unicode.org/copyright.html d.–d. - h a – h a + h a–h a h–h a HH–HH - h.mm a – h.mm a + h.mm a–h.mm a h.mm–h.mm a h.mm–h.mm a @@ -1818,7 +2636,7 @@ For terms of use, see http://www.unicode.org/copyright.html HH.mm–HH.mm - h.mm a – h.mm a v + h.mm a–h.mm a v h.mm–h.mm a v h.mm–h.mm a v @@ -1827,7 +2645,7 @@ For terms of use, see http://www.unicode.org/copyright.html HH.mm–HH.mm v - h a – h a v + h a–h a v h–h a v @@ -1894,20 +2712,579 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + tishri + heshvan + kislev + tevet + shevat + adar I + adar + adar II + nisan + iyar + sivan + tamuz + av + elul + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + + + tishri + heshvan + kislev + tevet + shevat + adar I + adar + adar II + nisan + iyar + sivan + tamuz + av + elul + + + + + tishri + heshvan + kislev + tevet + shevat + adar I + adar + adar II + nisan + iyar + sivan + tamuz + av + elul + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + + + tishri + heshvan + kislev + tevet + shevat + adar I + adar + adar II + nisan + iyar + sivan + tamuz + av + elul + + + AM + + + ccc + d. MMMM + + + + + + + + chaitra + vaisakha + jyaistha + asadha + sravana + bhadra + asvina + kartika + agrahayana + pausa + magha + phalguna + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + chaitra + vaisakha + jyaistha + asadha + sravana + bhadra + asvina + kartika + agrahayana + pausa + magha + phalguna + + + + + chaitra + vaisakha + jyaistha + asadha + sravana + bhadra + asvina + kartika + agrahayana + pausa + magha + phalguna + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + chaitra + vaisakha + jyaistha + asadha + sravana + bhadra + asvina + kartika + agrahayana + pausa + magha + phalguna + + + + + + saka + + + saka + + + saka + + + + + ccc + d. MMMM + + + + + + muh. + saf. + rab. I + rab. II + jum. I + jum. II + raj. + sha. + ram. + shaw. + dhuʻl-q. + dhuʻl-h. + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + muharram + safar + rabiʻ I + rabiʻ II + jumada I + jumada II + rajab + shaʻban + ramadan + shawwal + dhuʻl-qiʻdah + dhuʻl-hijjah + + + + + muh. + saf. + rab. I + rab. II + jum. I + jum. II + raj. + sha. + ram. + shaw. + dhuʻl-q. + Dhuʻl-H. + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + muharram + safar + rabiʻ I + rabiʻ II + jumada I + jumada II + rajab + shaʻban + ramadan + shawwal + dhuʻl-qiʻdah + dhuʻl-hijjah + + + AH + + + ccc + d. MMMM + + + + + Taika (645–650) + Hakuchi (650–671) + Hakuhō (672–686) + Shuchō (686–701) + Taihō (701–704) + Keiun (704–708) + Wadō (708–715) + Reiki (715–717) + Yōrō (717–724) + Jinki (724–729) + Tenpyō (729–749) + Tenpyō-kampō (749-749) + Tenpyō-shōhō (749-757) + Tenpyō-hōji (757-765) + Tenpyō-jingo (765-767) + Jingo-keiun (767-770) + Hōki (770–780) + Ten-ō (781-782) + Enryaku (782–806) + Daidō (806–810) + Kōnin (810–824) + Tenchō (824–834) + Jōwa (834–848) + Kajō (848–851) + Ninju (851–854) + Saikō (854–857) + Ten-an (857-859) + Jōgan (859–877) + Gangyō (877–885) + Ninna (885–889) + Kanpyō (889–898) + Shōtai (898–901) + Engi (901–923) + Enchō (923–931) + Jōhei (931–938) + Tengyō (938–947) + Tenryaku (947–957) + Tentoku (957–961) + Ōwa (961–964) + Kōhō (964–968) + Anna (968–970) + Tenroku (970–973) + Ten’en (973–976) + Jōgen (976–978) + Tengen (978–983) + Eikan (983–985) + Kanna (985–987) + Eien (987–989) + Eiso (989–990) + Shōryaku (990–995) + Chōtoku (995–999) + Chōhō (999–1004) + Kankō (1004–1012) + Chōwa (1012–1017) + Kannin (1017–1021) + Jian (1021–1024) + Manju (1024–1028) + Chōgen (1028–1037) + Chōryaku (1037–1040) + Chōkyū (1040–1044) + Kantoku (1044–1046) + Eishō (1046–1053) + Tengi (1053–1058) + Kōhei (1058–1065) + Jiryaku (1065–1069) + Enkyū (1069–1074) + Shōho (1074–1077) + Shōryaku (1077–1081) + Eihō (1081–1084) + Ōtoku (1084–1087) + Kanji (1087–1094) + Kahō (1094–1096) + Eichō (1096–1097) + Jōtoku (1097–1099) + Kōwa (1099–1104) + Chōji (1104–1106) + Kashō (1106–1108) + Tennin (1108–1110) + Ten-ei (1110-1113) + Eikyū (1113–1118) + Gen’ei (1118–1120) + Hōan (1120–1124) + Tenji (1124–1126) + Daiji (1126–1131) + Tenshō (1131–1132) + Chōshō (1132–1135) + Hōen (1135–1141) + Eiji (1141–1142) + Kōji (1142–1144) + Ten’yō (1144–1145) + Kyūan (1145–1151) + Ninpei (1151–1154) + Kyūju (1154–1156) + Hōgen (1156–1159) + Heiji (1159–1160) + Eiryaku (1160–1161) + Ōho (1161–1163) + Chōkan (1163–1165) + Eiman (1165–1166) + Nin’an (1166–1169) + Kaō (1169–1171) + Shōan (1171–1175) + Angen (1175–1177) + Jishō (1177–1181) + Yōwa (1181–1182) + Juei (1182–1184) + Genryaku (1184–1185) + Bunji (1185–1190) + Kenkyū (1190–1199) + Shōji (1199–1201) + Kennin (1201–1204) + Genkyū (1204–1206) + Ken’ei (1206–1207) + Jōgen (1207–1211) + Kenryaku (1211–1213) + Kenpō (1213–1219) + Jōkyū (1219–1222) + Jōō (1222–1224) + Gennin (1224–1225) + Karoku (1225–1227) + Antei (1227–1229) + Kanki (1229–1232) + Jōei (1232–1233) + Tenpuku (1233–1234) + Bunryaku (1234–1235) + Katei (1235–1238) + Ryakunin (1238–1239) + En’ō (1239–1240) + Ninji (1240–1243) + Kangen (1243–1247) + Hōji (1247–1249) + Kenchō (1249–1256) + Kōgen (1256–1257) + Shōka (1257–1259) + Shōgen (1259–1260) + Bun’ō (1260–1261) + Kōchō (1261–1264) + Bun’ei (1264–1275) + Kenji (1275–1278) + Kōan (1278–1288) + Shōō (1288–1293) + Einin (1293–1299) + Shōan (1299–1302) + Kengen (1302–1303) + Kagen (1303–1306) + Tokuji (1306–1308) + Enkyō (1308–1311) + Ōchō (1311–1312) + Shōwa (1312–1317) + Bunpō (1317–1319) + Genō (1319–1321) + Genkō (1321–1324) + Shōchū (1324–1326) + Karyaku (1326–1329) + Gentoku (1329–1331) + Genkō (1331–1334) + Kenmu (1334–1336) + Engen (1336–1340) + Kōkoku (1340–1346) + Shōhei (1346–1370) + Kentoku (1370–1372) + Bunchū (1372–1375) + Tenju (1375–1379) + Kōryaku (1379–1381) + Kōwa (1381–1384) + Genchū (1384–1392) + Meitoku (1384–1387) + Kakei (1387–1389) + Kōō (1389–1390) + Meitoku (1390–1394) + Ōei (1394–1428) + Shōchō (1428–1429) + Eikyō (1429–1441) + Kakitsu (1441–1444) + Bun’an (1444–1449) + Hōtoku (1449–1452) + Kyōtoku (1452–1455) + Kōshō (1455–1457) + Chōroku (1457–1460) + Kanshō (1460–1466) + Bunshō (1466–1467) + Ōnin (1467–1469) + Bunmei (1469–1487) + Chōkyō (1487–1489) + Entoku (1489–1492) + Meiō (1492–1501) + Bunki (1501–1504) + Eishō (1504–1521) + Taiei (1521–1528) + Kyōroku (1528–1532) + Tenbun (1532–1555) + Kōji (1555–1558) + Eiroku (1558–1570) + Genki (1570–1573) + Tenshō (1573–1592) + Bunroku (1592–1596) + Keichō (1596–1615) + Genna (1615–1624) + Kan’ei (1624–1644) + Shōho (1644–1648) + Keian (1648–1652) + Jōō (1652–1655) + Meireki (1655–1658) + Manji (1658–1661) + Kanbun (1661–1673) + Enpō (1673–1681) + Tenna (1681–1684) + Jōkyō (1684–1688) + Genroku (1688–1704) + Hōei (1704–1711) + Shōtoku (1711–1716) + Kyōhō (1716–1736) + Genbun (1736–1741) + Kanpō (1741–1744) + Enkyō (1744–1748) + Kan’en (1748–1751) + Hōreki (1751–1764) + Meiwa (1764–1772) + An’ei (1772–1781) + Tenmei (1781–1789) + Kansei (1789–1801) + Kyōwa (1801–1804) + Bunka (1804–1818) + Bunsei (1818–1830) + Tenpō (1830–1844) + Kōka (1844–1848) + Kaei (1848–1854) + Ansei (1854–1860) + Man’en (1860–1861) + Bunkyū (1861–1864) + Genji (1864–1865) + Keiō (1865–1868) + Meiji + Taishō + Shōwa + Heisei + + + M + T + S + H + + @@ -1933,6 +3310,121 @@ For terms of use, see http://www.unicode.org/copyright.html + + + ccc + d. MMMM + + + + + + + + farvardin + ordibehesht + khordad + tir + mordad + shahrivar + mehr + aban + azar + dey + bahman + esfand + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + farvardin + ordibehesht + khordad + tir + mordad + shahrivar + mehr + aban + azar + dey + bahman + esfand + + + + + farvardin + ordibehesht + khordad + tir + mordad + shahrivar + mehr + aban + azar + dey + bahman + esfand + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + farvardin + ordibehesht + khordad + tir + mordad + shahrivar + mehr + aban + azar + dey + bahman + esfand + + + + + + AP + + + AP + + + AP + + + + + ccc + d. MMMM + + @@ -1941,14 +3433,20 @@ For terms of use, see http://www.unicode.org/copyright.html Minguo + + + ccc + d. MMMM + + - Tidsalder + tidsalder - År + år i fjor i år neste år @@ -1964,12 +3462,12 @@ For terms of use, see http://www.unicode.org/copyright.html år - om {0} år - om {0} år + +{0} år + +{0} år - for {0} år siden - for {0} år siden + –{0} år + –{0} år @@ -1984,7 +3482,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Kvartal + kvartal + forrige kvartal + dette kvartal + neste kvartal om {0} kvartal om {0} kvartaler @@ -1996,6 +3497,9 @@ For terms of use, see http://www.unicode.org/copyright.html kv. + forrige kv. + dette kv. + neste kv. om {0} kv. om {0} kv. @@ -2007,6 +3511,9 @@ For terms of use, see http://www.unicode.org/copyright.html kv. + forrige kv. + dette kv. + neste kv. +{0} kv. +{0} kv. @@ -2017,7 +3524,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Måned + måned forrige måned denne måneden neste måned @@ -2032,17 +3539,23 @@ For terms of use, see http://www.unicode.org/copyright.html mnd. + forrige md. + denne md. + neste md. - om {0} måneder - om {0} måneder + om {0} md. + om {0} md. - for {0} måneder siden - for {0} måneder siden + for {0} md. siden + for {0} md. siden md. + forrige md. + denne md. + neste md. +{0} md. +{0} md. @@ -2053,7 +3566,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Uke + uke forrige uke denne uken neste uke @@ -2068,17 +3581,23 @@ For terms of use, see http://www.unicode.org/copyright.html uke + forrige uke + denne uken + neste uke - om {0} uke - om {0} uker + om {0} u. + om {0} u. - for {0} uke siden - for {0} uker siden + for {0} u. siden + for {0} u. siden uke + forrige uke + denne uken + neste uke +{0} u. +{0} u. @@ -2089,7 +3608,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Dag + dag i forgårs i går i dag @@ -2106,13 +3625,18 @@ For terms of use, see http://www.unicode.org/copyright.html dag + i forgårs + i går + i dag + i morgen + i overmorgen - om {0} døgn - om {0} døgn + om {0} d. + om {0} d. - for {0} døgn siden - for {0} døgn siden + for {0} d. siden + for {0} d. siden @@ -2127,7 +3651,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Ukedag + ukedag søndag sist uke @@ -2135,14 +3659,14 @@ For terms of use, see http://www.unicode.org/copyright.html søndag neste uke - forrige søn. + sist søn. denne søn. - kommende søn. + neste søn. - forrige sø. + sist sø. denne sø. - kommende sø. + neste sø. mandag sist uke @@ -2150,14 +3674,14 @@ For terms of use, see http://www.unicode.org/copyright.html mandag neste uke - forrige man. + sist man. denne man. - kommende man. + neste man. - forrige ma. + sist ma. denne ma. - kommende ma. + neste ma. tirsdag sist uke @@ -2165,14 +3689,14 @@ For terms of use, see http://www.unicode.org/copyright.html tirsdag neste uke - forrige tir. + sist tir. denne tir. - kommende tir. + neste tir. - forrige ti. + sist ti. denne ti. - kommende ti. + neste ti. onsdag sist uke @@ -2180,14 +3704,14 @@ For terms of use, see http://www.unicode.org/copyright.html onsdag neste uke - forrige ons. + sist ons. denne ons. - kommende ons. + neste ons. - forrige on. + sist on. denne on. - kommende on. + neste on. torsdag sist uke @@ -2195,14 +3719,14 @@ For terms of use, see http://www.unicode.org/copyright.html torsdag neste uke - forrige tor. + sist tor. denne tor. - kommende tor. + neste tor. - forrige to. + sist to. denne to. - kommende to. + neste to. fredag sist uke @@ -2210,14 +3734,14 @@ For terms of use, see http://www.unicode.org/copyright.html fredag neste uke - forrige fre. + sist fre. denne fre. - kommende fre. + neste fre. - forrige fr. + sist fr. denne fr. - kommende fr. + neste fr. lørdag sist uke @@ -2225,20 +3749,20 @@ For terms of use, see http://www.unicode.org/copyright.html lørdag neste uke - forrige lør. + sist lør. denne lør. - kommende lør. + neste lør. - forrige lø. + sist lø. denne lø. - kommende lø. + neste lø. AM/PM - Time + time om {0} time om {0} timer @@ -2271,7 +3795,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Minutt + minutt om {0} minutt om {0} minutter @@ -2304,7 +3828,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Sekund + sekund om {0} sekund @@ -2338,7 +3862,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Tidssone + tidssone @@ -3216,6 +4740,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -3301,6 +4828,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Chita + Jakutsk @@ -3319,6 +4849,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolymsk + Kamtsjatka @@ -3607,7 +5140,7 @@ For terms of use, see http://www.unicode.org/copyright.html - afghansk tid + afghansk tid @@ -3634,10 +5167,15 @@ For terms of use, see http://www.unicode.org/copyright.html - alaskisk tid - alaskisk normaltid - alaskisk sommertid + alaskisk tid + alaskisk normaltid + alaskisk sommertid + + AKT + AKST + AKDT + @@ -3659,6 +5197,11 @@ For terms of use, see http://www.unicode.org/copyright.html normaltid for det sentrale Nord-Amerika sommertid for det sentrale Nord-Amerika + + CT + CST + CDT + @@ -3666,6 +5209,11 @@ For terms of use, see http://www.unicode.org/copyright.html normaltid for den nordamerikanske østkysten sommertid for den nordamerikanske østkysten + + ET + EST + EDT + @@ -3673,6 +5221,11 @@ For terms of use, see http://www.unicode.org/copyright.html normaltid for Rocky Mountains (USA) sommertid for Rocky Mountains (USA) + + MT + MST + MDT + @@ -3680,6 +5233,11 @@ For terms of use, see http://www.unicode.org/copyright.html normaltid for den nordamerikanske Stillehavskysten sommertid for den nordamerikanske Stillehavskysten + + PT + PST + PDT + @@ -3690,9 +5248,9 @@ For terms of use, see http://www.unicode.org/copyright.html - tidssone for Apia - normaltid for Apia - sommetid for Apia + tidssone for Apia + normaltid for Apia + sommertid for Apia @@ -3718,16 +5276,16 @@ For terms of use, see http://www.unicode.org/copyright.html - argentinsk tid - argentinsk normaltid - argentinsk sommertid + argentinsk tid + argentinsk normaltid + argentinsk sommertid - vestargentinsk tid - vestargentinsk normaltid - vestargentinsk sommertid + vestargentinsk tid + vestargentinsk normaltid + vestargentinsk sommertid @@ -3743,6 +5301,11 @@ For terms of use, see http://www.unicode.org/copyright.html atlanterhavskystlig standardtid atlanterhavskystlig sommertid + + AT + AST + ADT + @@ -3795,12 +5358,12 @@ For terms of use, see http://www.unicode.org/copyright.html - bhutansk tid + bhutansk tid - boliviansk tid + boliviansk tid @@ -3841,15 +5404,15 @@ For terms of use, see http://www.unicode.org/copyright.html - chilensk tid - chilensk normaltid - chilensk sommertid + chilensk tid + chilensk normaltid + chilensk sommertid kinesisk tid - kinesisk standardtid + kinesisk normaltid kinesisk sommertid @@ -3872,9 +5435,9 @@ For terms of use, see http://www.unicode.org/copyright.html - colombiansk tid - colombiansk normaltid - colombiansk sommertid + colombiansk tid + colombiansk normaltid + colombiansk sommertid @@ -3886,9 +5449,9 @@ For terms of use, see http://www.unicode.org/copyright.html - cubansk tid - cubansk normaltid - cubansk sommertid + cubansk tid + cubansk normaltid + cubansk sommertid @@ -3915,7 +5478,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ecuadoriansk tid + ecuadoriansk tid @@ -3968,9 +5531,9 @@ For terms of use, see http://www.unicode.org/copyright.html - fijiansk tid - fijiansk normaltid - fijiansk sommertid + fijiansk tid + fijiansk normaltid + fijiansk sommertid @@ -4015,16 +5578,16 @@ For terms of use, see http://www.unicode.org/copyright.html - østgrønlandsk tid - østgrønlandsk normaltid - østgrønlandsk sommertid + østgrønlandsk tid + østgrønlandsk normaltid + østgrønlandsk sommertid - vestgrønlandsk tid - vestgrønlandsk normaltid - vestgrønlandsk sommertid + vestgrønlandsk tid + vestgrønlandsk normaltid + vestgrønlandsk sommertid @@ -4048,6 +5611,11 @@ For terms of use, see http://www.unicode.org/copyright.html normaltid for Hawaii og Aleutene sommertid for Hawaii og Aleutene + + HAT + HAST + HADT + @@ -4095,9 +5663,9 @@ For terms of use, see http://www.unicode.org/copyright.html - iransk tid - iransk normaltid - iransk sommertid + iransk tid + iransk normaltid + iransk sommertid @@ -4200,12 +5768,12 @@ For terms of use, see http://www.unicode.org/copyright.html - malaysisk tid + malaysisk tid - maldivisk tid + maldivisk tid @@ -4270,14 +5838,14 @@ For terms of use, see http://www.unicode.org/copyright.html - nepalsk tid + nepalsk tid - kaledonsk tid - kaledonsk normaltid - kaledonsk sommertid + kaledonsk tid + kaledonsk normaltid + kaledonsk sommertid @@ -4332,9 +5900,9 @@ For terms of use, see http://www.unicode.org/copyright.html - pakistansk tid - pakistansk normaltid - pakistansk sommertid + pakistansk tid + pakistansk normaltid + pakistansk sommertid @@ -4349,16 +5917,16 @@ For terms of use, see http://www.unicode.org/copyright.html - paraguayansk tid - paraguayansk normaltid - paraguayansk sommertid + paraguayansk tid + paraguayansk normaltid + paraguayansk sommertid - peruansk tid - peruansk normaltid - peruansk sommertid + peruansk tid + peruansk normaltid + peruansk sommertid @@ -4387,7 +5955,7 @@ For terms of use, see http://www.unicode.org/copyright.html - tidssone for Pohnpei + tidssone for Pohnpei @@ -4423,9 +5991,9 @@ For terms of use, see http://www.unicode.org/copyright.html - samoansk tid - samoansk normaltid - samoansk sommertid + samoansk tid + samoansk normaltid + samoansk sommertid @@ -4482,9 +6050,9 @@ For terms of use, see http://www.unicode.org/copyright.html - tongansk tid - tongansk normaltid - tongansk sommertid + tongansk tid + tongansk normaltid + tongansk sommertid @@ -4506,9 +6074,9 @@ For terms of use, see http://www.unicode.org/copyright.html - uruguayansk tid - uruguayansk normaltid - uruguayansk sommertid + uruguayansk tid + uruguayansk normaltid + uruguayansk sommertid @@ -4520,14 +6088,14 @@ For terms of use, see http://www.unicode.org/copyright.html - vanuatisk tid - vanuatisk normaltid - vanuatisk sommertid + vanuatisk tid + vanuatisk normaltid + vanuatisk sommertid - venezuelansk tid + venezuelansk tid @@ -4581,6 +6149,34 @@ For terms of use, see http://www.unicode.org/copyright.html latn 1 + + ٫ +   + ؛ + ٪ + + + + اس + × + ؉ + + NaN + . + + + , +   + ؛ + ٪ + + + + ×۱۰^ + × + ؉ + + NaN + . + ,   @@ -4593,7 +6189,8 @@ For terms of use, see http://www.unicode.org/copyright.html NaN - . + . + : @@ -4681,6 +6278,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0k + ¤ 0k + ¤ 00k + ¤ 00k + ¤ 000k + ¤ 000k + ¤ 0 mill + ¤ 0 mill + ¤ 00 mill + ¤ 00 mill + ¤ 000 mill + ¤ 000 mill + ¤ 0 mrd + ¤ 0 mrd + ¤ 00 mrd + ¤ 00 mrd + ¤ 000 mrd + ¤ 000 mrd + ¤ 0 bill + ¤ 0 bill + ¤ 00 bill + ¤ 00 bill + ¤ 000 bill + ¤ 000 bill + + {0} {1} {0} {1} @@ -4738,6 +6363,7 @@ For terms of use, see http://www.unicode.org/copyright.html angolansk kwanza angolanske kwanza AOA + Kz angolanske kwanza (1977–1990) @@ -4830,6 +6456,7 @@ For terms of use, see http://www.unicode.org/copyright.html bosnisk-hercegovinsk konvertibel mark bosnisk-hercegovinske konvertible mark BAM + KM nye bosnisk-hercegovinske dinarer (1994–1997) @@ -4924,6 +6551,7 @@ For terms of use, see http://www.unicode.org/copyright.html boliviansk boliviano bolivianske boliviano BOB + Bs bolivianske boliviano (1863–1963) @@ -4950,7 +6578,7 @@ For terms of use, see http://www.unicode.org/copyright.html BRB - brasilianske cruzado + brasilianske cruzados (1986–1989) brasiliansk cruzado (1986–1989) brasilianske cruzado (1986–1989) BRC @@ -4971,13 +6599,13 @@ For terms of use, see http://www.unicode.org/copyright.html brasilianske cruzado novo (1989–1990) brasiliansk cruzado novo (1989–1990) - brasilianske cruzado novo + brasilianske cruzado novo (1989–1990) BRN - brasilianske cruzeiro - brasiliansk cruzeiro - brasilianske cruzeiro + brasilianske cruzeiro (1993–1994) + brasiliansk cruzeiro (1993–1994) + brasilianske cruzeiro (1993–1994) BRR @@ -5010,6 +6638,7 @@ For terms of use, see http://www.unicode.org/copyright.html botswansk pula botswanske pula BWP + P hviterussiske nye rubler (1994–1999) @@ -5098,9 +6727,9 @@ For terms of use, see http://www.unicode.org/copyright.html $ - unidad de valor real - unidad de valor real - unidad de valor real + colombianske unidad de valor real + colombiansk unidad de valor real + colombianske unidad de valor real COU @@ -5127,6 +6756,7 @@ For terms of use, see http://www.unicode.org/copyright.html kubansk konvertibel peso kubanske konvertible pesos CUC + $ kubanske pesos @@ -5152,11 +6782,12 @@ For terms of use, see http://www.unicode.org/copyright.html tsjekkisk koruna tsjekkiske koruna CZK + - østtyske ostmark - østtysk ostmark - østtyske ostmark + østtyske mark + østtysk mark + østtyske mark DDM @@ -5176,6 +6807,7 @@ For terms of use, see http://www.unicode.org/copyright.html dansk krone danske kroner DKK + kr dominikanske pesos @@ -5213,6 +6845,7 @@ For terms of use, see http://www.unicode.org/copyright.html egyptisk pund egyptiske pund EGP + eritreiske nakfa @@ -5269,6 +6902,7 @@ For terms of use, see http://www.unicode.org/copyright.html falklandspund falklandspund FKP + £ franske franc @@ -5294,6 +6928,7 @@ For terms of use, see http://www.unicode.org/copyright.html georgisk lari georgiske lari GEL + ghanesisk cedi (1979–2007) @@ -5325,6 +6960,7 @@ For terms of use, see http://www.unicode.org/copyright.html guineansk franc guineanske franc GNF + FG guineanske syli @@ -5349,6 +6985,7 @@ For terms of use, see http://www.unicode.org/copyright.html guatemalansk quetzal guatemalanske quetzal GTQ + Q portugisiske guinea escudo @@ -5381,6 +7018,7 @@ For terms of use, see http://www.unicode.org/copyright.html honduransk lempira honduranske lempira HNL + L kroatiske dinarer @@ -5393,6 +7031,7 @@ For terms of use, see http://www.unicode.org/copyright.html kroatisk kuna kroatiske kuna HRK + kn haitiske gourde @@ -5405,12 +7044,14 @@ For terms of use, see http://www.unicode.org/copyright.html ungarsk forint ungarske forinter HUF + Ft indonesiske rupier indonesisk rupi indonesiske rupier IDR + Rp irske pund @@ -5457,15 +7098,16 @@ For terms of use, see http://www.unicode.org/copyright.html IRR - gammel islandsk krone - gammel islandsk krone - gamle islandske kroner + islandske kroner (1918–1981) + islandsk krone (1918–1981) + islandske kroner (1918–1981) islandske kroner islandsk krone islandske kroner ISK + kr italienske lire @@ -5517,12 +7159,14 @@ For terms of use, see http://www.unicode.org/copyright.html komorisk franc komoriske franc KMF + CF nordkoreanske won nordkoreansk won nordkoreanske won KPW + sørkoreanske hwan (1953–1962) @@ -5575,12 +7219,14 @@ For terms of use, see http://www.unicode.org/copyright.html libanesisk pund libanesiske pund LBP + srilankiske rupier srilankisk rupi srilankiske rupier LKR + Rs liberiske dollar @@ -5596,10 +7242,11 @@ For terms of use, see http://www.unicode.org/copyright.html LSL - litauiske lita + litauiske litas litauisk lita litauiske lita LTL + Lt litauiske talonas @@ -5630,6 +7277,7 @@ For terms of use, see http://www.unicode.org/copyright.html latvisk lats latviske lats LVL + Ls latviske rubler @@ -5678,6 +7326,7 @@ For terms of use, see http://www.unicode.org/copyright.html madagassisk ariary madagassiske ariary MGA + Ar madagassiske franc @@ -5707,6 +7356,7 @@ For terms of use, see http://www.unicode.org/copyright.html myanmarsk kyat myanmarske kyat MMK + K mongolske tugrik @@ -5744,6 +7394,7 @@ For terms of use, see http://www.unicode.org/copyright.html mauritisk rupi mauritiske rupier MUR + Rs maldiviske rupier @@ -5787,6 +7438,7 @@ For terms of use, see http://www.unicode.org/copyright.html malaysisk ringgit malaysiske ringgit MYR + RM mosambikiske escudo @@ -5831,6 +7483,7 @@ For terms of use, see http://www.unicode.org/copyright.html nicaraguansk córdoba nicaraguanske córdoba NIO + C$ nederlandske gylden @@ -5843,12 +7496,14 @@ For terms of use, see http://www.unicode.org/copyright.html norsk krone norske kroner kr + kr nepalske rupier nepalsk rupi nepalske rupier NPR + Rs newzealandske dollar @@ -5905,12 +7560,14 @@ For terms of use, see http://www.unicode.org/copyright.html pakistansk rupi pakistanske rupier PKR + Rs polske zloty polsk zloty polske zloty PLN + polske zloty (1950–1995) @@ -5966,6 +7623,7 @@ For terms of use, see http://www.unicode.org/copyright.html russisk rubel russiske rubler RUB + russiske rubler (1991–1998) @@ -5978,6 +7636,7 @@ For terms of use, see http://www.unicode.org/copyright.html rwandisk franc rwandiske franc RWF + RF saudiarabiske riyaler @@ -6021,6 +7680,7 @@ For terms of use, see http://www.unicode.org/copyright.html svensk krone svenske kroner SEK + kr singaporske dollar @@ -6034,6 +7694,7 @@ For terms of use, see http://www.unicode.org/copyright.html sankthelensk pund sankthelenske pund SHP + £ slovenske tolar @@ -6084,6 +7745,7 @@ For terms of use, see http://www.unicode.org/copyright.html São Tomé og Príncipe-dobra São Tomé og Príncipe-dobra STD + Db sovjetiske rubler @@ -6102,6 +7764,7 @@ For terms of use, see http://www.unicode.org/copyright.html syrisk pund syriske pund SYP + £ swazilandske lilangeni @@ -6114,6 +7777,7 @@ For terms of use, see http://www.unicode.org/copyright.html thailandsk baht thailandske baht THB + ฿ tadsjikiske rubler @@ -6150,6 +7814,7 @@ For terms of use, see http://www.unicode.org/copyright.html tongansk paʻanga tonganske paʻanga TOP + T$ timoresiske escudo @@ -6169,6 +7834,7 @@ For terms of use, see http://www.unicode.org/copyright.html tyrkiske lire TRY + TL trinidadiske dollar @@ -6242,7 +7908,7 @@ For terms of use, see http://www.unicode.org/copyright.html uruguayanske pesos (1975–1993) - uruguayansk pesos (1975–1993) + uruguayansk peso (1975–1993) uruguayanske pesos (1975–1993) UYP @@ -6268,8 +7934,9 @@ For terms of use, see http://www.unicode.org/copyright.html venezuelanske bolivar venezuelansk bolivar - venezuelanske bolivarer + venezuelanske bolivar VEF + Bs vietnamesiske dong @@ -6343,6 +8010,7 @@ For terms of use, see http://www.unicode.org/copyright.html østkaribisk dollar østkaribiske dollar XCD + $ spesielle trekkrettigheter @@ -6467,6 +8135,7 @@ For terms of use, see http://www.unicode.org/copyright.html sørafrikansk rand sørafrikanske rand ZAR + R zambiske kwacha (1968–2012) @@ -6479,6 +8148,7 @@ For terms of use, see http://www.unicode.org/copyright.html zambisk kwacha zambiske kwacha ZMW + ZK zairiske nye zaire @@ -6512,7 +8182,7 @@ For terms of use, see http://www.unicode.org/copyright.html ⩾{0} - {0}‒{1} + {0}–{1} @@ -6530,6 +8200,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} meter per sekund² {0} meter per sekund² + + omdreininger + {0} omdreining + {0} omdreininger + + + radianer + {0} radian + {0} radianer + + + grader + {0} grad + {0} grader + bueminutter {0} bueminutt @@ -6540,30 +8225,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} buesekund {0} buesekunder - - grader - {0} grad - {0} grader - - - radianer - {0} radian - {0} radianer - - - acres - {0} acre - {0} acres + + kvadratkilometer + {0} kvadratkilometer + {0} kvadratkilometer hektar {0} hektar {0} hektar + + kvadratmeter + {0} kvadratmeter + {0} kvadratmeter + {0} per kvadratmeter + kvadratcentimeter {0} kvadratcentimeter {0} kvadratcentimeter + {0} per kvadratcentimeter + + + engelske kvadratmil + {0} engelsk kvadratmil + {0} engelske kvadratmil + + + acre + {0} acre + {0} acre + + + kvadratyard + {0} kvadratyard + {0} kvadratyard kvadratfot @@ -6574,91 +8271,106 @@ For terms of use, see http://www.unicode.org/copyright.html kvadrattommer {0} kvadrattomme {0} kvadrattommer + {0} per kvadrattomme - - kvadratkilometer - {0} kvadratkilometer - {0} kvadratkilometer - - - kvadratmeter - {0} kvadratmeter - {0} kvadratmeter - - - engelske kvadratmil - {0} engelsk kvadratmil - {0} engelske kvadratmil - - - kvadratyard - {0} kvadratyard - {0} kvadratyard + + karat + {0} karat + {0} karat liter per kilometer {0} liter per kilometer {0} liter per kilometer + + liter per 100 kilometer + {0} liter per 100 kilometer + {0} liter per 100 kilometer + engelske mil per gallon {0} engelsk mil per gallon {0} engelske mil per gallon - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - gigabit - {0} gigabit - {0} gigabit - - - gigabyte - {0} gigabyte - {0} gigabyte - - - kilobit - {0} kilobit - {0} kilobit - - - kilobyte - {0} kilobyte - {0} kilobyte - - - megabit - {0} megabit - {0} megabit - - - megabyte - {0} megabyte - {0} megabyte - - - terabit - {0} terabit - {0} terabit - terabyte {0} terabyte {0} terabyte + + terabit + {0} terabit + {0} terabit + + + gigabyte + {0} gigabyte + {0} gigabyte + + + gigabit + {0} gigabit + {0} gigabit + + + megabyte + {0} megabyte + {0} megabyte + + + megabit + {0} megabit + {0} megabit + + + kilobyte + {0} kilobyte + {0} kilobyte + + + kilobit + {0} kilobit + {0} kilobit + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + århundrer + {0} århundre + {0} århundrer + + + år + {0} år + {0} år + {0} per år + + + måneder + {0} måned + {0} måneder + {0}/måned + + + uker + {0} uke + {0} uker + {0} per uke + døgn {0} døgn {0} døgn + {0} per døgn timer @@ -6666,30 +8378,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} timer {0} per time - - mikrosekunder - {0} mikrosekund - {0} mikrosekunder - - - millisekunder - {0} millisekund - {0} millisekunder - minutter {0} minutt {0} minutter - - - måneder - {0} måned - {0} måneder - - - nanosekunder - {0} nanosekund - {0} nanosekunder + {0}/min sekunder @@ -6697,15 +8390,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sekunder {0} per sekund - - uker - {0} uke - {0} uker + + millisekunder + {0} millisekund + {0} millisekunder - - år - {0} år - {0} år + + mikrosekunder + {0} mikrosekund + {0} mikrosekunder + + + nanosekunder + {0} nanosekund + {0} nanosekunder ampere @@ -6727,6 +8425,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volt + + kilokalorier + {0} kilokalori + {0} kilokalorier + kalorier {0} kalori @@ -6737,21 +8440,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kalori {0} kalorier - - joule - {0} joule - {0} joule - - - kilokalorier - {0} kilokalori - {0} kilokalorier - kilojoule {0} kilojoule {0} kilojoule + + joule + {0} joule + {0} joule + kilowattimer {0} kilowattime @@ -6762,206 +8460,210 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigahertz {0} gigahertz - - hertz - {0} hertz - {0} hertz + + megahertz + {0} megahertz + {0} megahertz kilohertz {0} kilohertz {0} kilohertz - - megahertz - {0} megahertz - {0} megahertz + + hertz + {0} hertz + {0} hertz - - astronomiske enheter - {0} astronomisk enhet - {0} astronomiske enheter + + kilometer + {0} kilometer + {0} kilometer + {0} per kilometer - - centimeter - {0} centimeter - {0} centimeter + + meter + {0} meter + {0} meter + {0} per meter desimeter {0} desimeter {0} desimeter - - fot - {0} fot - {0} fot - - - tommer - {0} tomme - {0} tommer - - - kilometer - {0} kilometer - {0} kilometer - - - lysår - {0} lysår - {0} lysår - - - meter - {0} meter - {0} meter - - - mikrometer - {0} mikrometer - {0} mikrometer - - - engelske mil - {0} engelsk mil - {0} engelske mil + + centimeter + {0} centimeter + {0} centimeter + {0} per centimeter millimeter {0} millimeter {0} millimeter + + mikrometer + {0} mikrometer + {0} mikrometer + nanometer {0} nanometer {0} nanometer - - nautiske mil - {0} nautisk mil - {0} nautiske mil - - - parsec - {0} parsec - {0} parsec - pikometer {0} pikometer {0} pikometer + + engelske mil + {0} engelsk mil + {0} engelske mil + yard {0} yard {0} yard + + fot + {0} fot + {0} fot + {0} per fot + + + tommer + {0} tomme + {0} tommer + {0} per tomme + + + parsec + {0} parsec + {0} parsec + + + lysår + {0} lysår + {0} lysår + + + astronomiske enheter + {0} astronomisk enhet + {0} astronomiske enheter + + + nautiske mil + {0} nautisk mil + {0} nautiske mil + + + mil + {0} mil + {0} mil + lux {0} lux {0} lux - - karat - {0} karat - {0} karat - - - gram - {0} gram - {0} gram - - - kilogram - {0} kilogram - {0} kilogram - tonn {0} tonn {0} tonn - - mikrogram - {0} mikrogram - {0} mikrogram + + kilogram + {0} kilogram + {0} kilogram + {0} per kilogram + + + gram + {0} gram + {0} gram + {0} per gram milligram {0} milligram {0} milligram - - unser - {0} unse - {0} unser - - - troy ounce - {0} troy ounce - {0} troy ounce - - - pund - {0} pund - {0} pund - - - engelske steiner - {0} engelsk stein - {0} engelske steiner + + mikrogram + {0} mikrogram + {0} mikrogram amerikanske tonn {0} amerikansk tonn {0} amerikanske tonn + + engelske steiner + {0} engelsk stein + {0} engelske steiner + + + pund + {0} pund + {0} pund + {0} per pund + + + unser + {0} unse + {0} unser + {0} per unse + + + troy ounce + {0} troy ounce + {0} troy ounce + + + karat + {0} karat + {0} karat + gigawatt {0} gigawatt {0} gigawatt - - hestekrefter - {0} hestekraft - {0} hestekrefter - - - kilowatt - {0} kilowatt - {0} kilowatt - megawatt {0} megawatt {0} megawatt - - milliwatt - {0} milliwatt - {0} milliwatt + + kilowatt + {0} kilowatt + {0} kilowatt watt {0} watt {0} watt + + milliwatt + {0} milliwatt + {0} milliwatt + + + hestekrefter + {0} hestekraft + {0} hestekrefter + hektopascal {0} hektopascal {0} hektopascal - - tommer kvikksølv - {0} tomme kvikksølv - {0} tommer kvikksølv - - - millibar - {0} millibar - {0} millibar - millimeter kvikksølv {0} millimeter kvikksølv @@ -6972,10 +8674,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pund per kvadrattomme {0} pund per kvadrattomme - - karat - {0} karat - {0} karat + + tommer kvikksølv + {0} tomme kvikksølv + {0} tommer kvikksølv + + + millibar + {0} millibar + {0} millibar kilometer per time @@ -6992,6 +8699,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} engelsk mil per time {0} engelske mil per time + + knop + {0} knop + {0} knop + + + ° + {0}° + {0}° + grader celsius {0} grad celsius @@ -7007,31 +8724,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvin {0} kelvin - - acre-fot - {0} acre-fot - {0} acre-fot - - - centiliter - {0} centiliter - {0} centiliter - - - kubikkcentimeter - {0} kubikkcentimeter - {0} kubikkcentimeter - - - kubikkfot - {0} kubikkfot - {0} kubikkfot - - - kubikktommer - {0} kubikktomme - {0} kubikktommer - kubikkilometer {0} kubikkilometer @@ -7041,6 +8733,13 @@ For terms of use, see http://www.unicode.org/copyright.html kubikkmeter {0} kubikkmeter {0} kubikkmeter + {0} per kubikkmeter + + + kubikkcentimeter + {0} kubikkcentimeter + {0} kubikkcentimeter + {0} per kubikkcentimeter engelske kubikkmil @@ -7052,25 +8751,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubikkyard {0} kubikkyard - - kopper - {0} kopp - {0} kopper + + kubikkfot + {0} kubikkfot + {0} kubikkfot - - desiliter - {0} desiliter - {0} desiliter + + kubikktommer + {0} kubikktomme + {0} kubikktommer - - væskeunser - {0} væskeunse - {0} væskeunser - - - gallon - {0} gallon - {0} gallon + + megaliter + {0} megaliter + {0} megaliter hektoliter @@ -7081,27 +8775,64 @@ For terms of use, see http://www.unicode.org/copyright.html liter {0} liter {0} liter + {0} per liter - - megaliter - {0} megaliter - {0} megaliter + + desiliter + {0} desiliter + {0} desiliter + + + centiliter + {0} centiliter + {0} centiliter milliliter {0} milliliter {0} milliliter - - pint - {0} pint - {0} pint + + metriske pint + {0} metrisk pint + {0} metriske pint + + + metriske kopper + {0} metrisk kopp + {0} metriske kopper + + + acre-fot + {0} acre-fot + {0} acre-fot + + + gallon + {0} gallon + {0} gallon + {0} per gallon quart {0} quart {0} quart + + pint + {0} pint + {0} pint + + + kopper + {0} kopp + {0} kopper + + + væskeunser + {0} væskeunse + {0} væskeunser + spiseskjeer {0} spiseskje @@ -7112,6 +8843,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} teskje {0} teskjeer + + {0} øst + {0} nord + {0} sør + {0} vest + @@ -7127,6 +8864,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + omdr. + {0} omdr. + {0} omdr. + + + radianer + {0} rad + {0} rad + + + grader + {0}° + {0}° + bueminutter {0} bmin @@ -7137,30 +8889,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} bsek {0} bsek - - grader - {0}° - {0}° - - - radianer - {0} rad - {0} rad - - - acres - {0} ac - {0} ac + + km² + {0} km² + {0} km² hektar {0} ha {0} ha + + + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + engelske mil² + {0} mile² + {0} mile² + + + acre + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² kvadratfot @@ -7168,94 +8932,109 @@ For terms of use, see http://www.unicode.org/copyright.html {0} fot² - in² - {0} in² - {0} in² + tommer² + {0} tommer² + {0} tommer² + {0}/tommer² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - engelske kvadratmil - {0} mile² - {0} mile² - - - yd² - {0} yd² - {0} yd² + + karat + {0} kt + {0} kt liter/km {0} l/km {0} l/km + + l/100 km + {0} l/100 km + {0} l/100 km + eng. mil/gal {0} mpg {0} mpg - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - Gbit - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kbit - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mbit - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gbit + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mbit + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kbit + {0} kb + {0} kb + + + byte + {0} B + {0} B + + + bit + {0} bit + {0} bit + + + årh. + {0} årh. + {0} årh. + + + år + {0} år + {0} år + {0}/år + + + måneder + {0} md. + {0} md. + {0}/md. + + + uker + {0} u + {0} u + {0}/u + døgn {0} d {0} d + {0}/d timer @@ -7263,30 +9042,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} t {0}/t - - μs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - min {0} min {0} min - - - måneder - {0} mnd - {0} mnd - - - ns - {0} ns - {0} ns + {0}/min sek @@ -7294,15 +9054,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sek {0}/s - - uker - {0} u - {0} u + + ms + {0} ms + {0} ms - - år - {0} år - {0} år + + μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns ampere @@ -7324,31 +9089,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal {0} cal - kcal - {0} kcal - {0} kcal - - - joule - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal + cal + {0} cal + {0} cal kilojoule {0} kJ {0} kJ + + joule + {0} J + {0} J + kWh {0} kWh @@ -7359,206 +9124,210 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + meter + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - fot - {0} fot - {0} fot - - - tommer - {0} tomme - {0} tommer - - - km - {0} km - {0} km - - - lysår - {0} lysår - {0} lysår - - - meter - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - engelske mil - {0} mile - {0} mile + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - parsec - {0} pc - {0} pc - pm {0} pm {0} pm + + engelske mil + {0} mile + {0} mile + yard {0} yard {0} yard + + fot + {0} fot + {0} fot + {0}/fot + + + tommer + {0} tomme + {0} tommer + {0}/tomme + + + parsec + {0} pc + {0} pc + + + lysår + {0} lysår + {0} lysår + + + au + {0} au + {0} au + + + nmi + {0} nmi + {0} nmi + + + mil + {0} mil + {0} mil + lux {0} lx {0} lx - - karat - {0} c - {0} c - - - gram - {0} g - {0} g - - - kg - {0} kg - {0} kg - tonn {0} tonn {0} tonn - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + gram + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - unser - {0} unse - {0} unser - - - oz tr - {0} oz tr - {0} oz tr - - - pund - {0} pund - {0} pund - - - eng. steiner - {0} eng. stein - {0} eng. stein + + µg + {0} µg + {0} µg amerikanske tonn {0} am. tonn {0} am. tonn + + eng. steiner + {0} eng. stein + {0} eng. stein + + + pund + {0} pund + {0} pund + {0}/pund + + + unser + {0} unse + {0} unser + {0}/unse + + + oz tr + {0} oz tr + {0} oz tr + + + karat + {0} c + {0} c + GW {0} GW {0} GW - - hk - {0} hk - {0} hk - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW watt {0} W {0} W + + mW + {0} mW + {0} mW + + + hk + {0} hk + {0} hk + hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - mmHg {0} mmHg @@ -7569,10 +9338,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - karat - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar km/time @@ -7589,6 +9363,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mile/t {0} mile/t + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + °C {0} °C @@ -7604,20 +9388,32 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - acre-fot - {0} ac-fot - {0} ac-fot + + km³ + {0} km³ + {0} km³ - - cl - {0} cl - {0} cl + + + {0} m³ + {0} m³ + {0}/m³ cm³ {0} cm³ {0} cm³ + {0}/cm³ + + + engelske mil³ + {0} mile³ + {0} mile³ + + + yard³ + {0} yard³ + {0} yard³ fot³ @@ -7629,45 +9425,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tommer³ {0} tommer³ - - km³ - {0} km³ - {0} km³ - - - - {0} m³ - {0} m³ - - - engelske kubikkmil - {0} mile³ - {0} mile³ - - - yard³ - {0} yard³ - {0} yard³ - - - kopper - {0} kopp - {0} kopper - - - dl - {0} dl - {0} dl - - - væskeunse - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml hl @@ -7678,27 +9439,64 @@ For terms of use, see http://www.unicode.org/copyright.html liter {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl ml {0} ml {0} ml - - pint - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + + + m. kopper + {0} m. kopp + {0} m. kopper + + + acre-fot + {0} ac-fot + {0} ac-fot + + + gal + {0} gal + {0} gal + {0}/gal qt {0} qt {0} qt + + pint + {0} pt + {0} pt + + + kopper + {0} k + {0} k + + + væskeunse + {0} fl oz + {0} fl oz + ss {0} ss @@ -7709,6 +9507,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ts {0} ts + + {0} Ø + {0} N + {0} S + {0} V + @@ -7724,6 +9528,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}m/s² {0}m/s² + + rad + {0}rad + {0}rad + + + grader + {0}° + {0}° + buemin {0}′ @@ -7734,159 +9548,144 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - grader - {0}° - {0}° - - - rad - {0}rad - {0}rad - - - {0} ac - {0} ac - - - {0}ha - {0}ha - - - cm² - {0}cm² - {0}cm² - - - {0}fot² - {0}fot² - km² {0}km² {0}km² + + {0}ha + {0}ha + {0}m² {0}m² + {0}/m² + + + cm² + {0}cm² + {0}cm² + {0}/cm² {0} eng mil² {0} eng mil² + + {0} ac + {0} ac + + + {0}fot² + {0}fot² + L/km {0}L/km {0}L/km + + l/100km + {0} l/100km + {0} l/100km + + + årh. + {0} årh. + {0} årh. + + + år + {0}å + {0}å + {0}/år + + + måned + {0} m + {0} m + {0}/m + + + uke + {0}u + {0}u + {0}/u + døgn {0}d {0}d + {0}/d time {0}t {0}t - {0}/h + {0}/t - - μs - {0}μs - {0}μs + + min + {0}m + {0}m + {0}/m + + + sek + {0}s + {0}s + {0}/s ms {0}ms {0}ms - - min - {0}m - {0}m - - - måned - {0} m - {0} m + + μs + {0}μs + {0}μs - ns - {0}ns - {0}ns + ns + {0}ns + {0}ns - - sek - {0}s - {0}s - {0}/s + + km + {0}km + {0}km + {0}/km - - uke - {0}u - {0}u - - - år - {0}å - {0}å - - - ae - {0}ae - {0}ae - - - cm - {0}cm - {0}cm + + meter + {0}m + {0}m + {0}/m dm {0}dm {0}dm - - fot - {0} fot - {0} fot - - - tom - {0} tomme - {0} tommer - - - km - {0}km - {0}km - - - lysår - {0} lysår - {0} lysår - - - meter - {0}m - {0}m - - - µm - {0}µm - {0}µm - - - eng.mil - {0} eng mil - {0} eng mil + + cm + {0}cm + {0}cm + {0}/cm mm {0}mm {0}mm + + µm + {0}µm + {0}µm + nm {0}nm @@ -7897,73 +9696,103 @@ For terms of use, see http://www.unicode.org/copyright.html {0}pm {0}pm + + eng.mil + {0} eng mil + {0} eng mil + {0} yard {0} yard + + fot + {0} fot + {0} fot + + + tom + {0} tomme + {0} tommer + {0}/tom + + + lysår + {0} lysår + {0} lysår + + + ae + {0}ae + {0}ae + + + mil + {0}mil + {0}mil + lux {0}lx {0}lx - - karat - {0} karat - {0} karat - - - gram - {0}g - {0}g - - - kg - {0}kg - {0}kg - tonn {0}t {0}t - - µg - {0}µg - {0}µg + + kg + {0}kg + {0}kg + {0}/kg + + + gram + {0}g + {0}g + {0}/g mg {0}mg {0}mg - - unser - {0} unse - {0} unser - - - troyunser - {0} tr.uns - {0} tr.uns - - - skålpund - {0} pund - {0} pund - - - eng. steiner - {0}en.stein - {0}en.stein + + µg + {0}µg + {0}µg eng. k. tonn {0}en.k.ton {0}en.k.ton - - {0}hk - {0}hk + + eng. steiner + {0}en.stein + {0}en.stein + + + skålpund + {0} pund + {0} pund + + + unser + {0} unse + {0} unser + {0}/unse + + + troyunser + {0} tr.uns + {0} tr.uns + + + karat + {0} karat + {0} karat {0}kW @@ -7973,6 +9802,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}W {0}W + + {0}hk + {0}hk + hPa {0}hPa @@ -8018,13 +9851,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0}K {0}K - - {0}cL - {0}cL + + {0}km³ + {0}km³ + + + {0}m³ + {0}m³ + {0}/m³ {0}cm³ {0}cm³ + {0}/cm³ + + + {0} eng mil³ + {0} eng mil³ {0} fot³ @@ -8034,21 +9877,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tom³ {0} tom³ - - {0}km³ - {0}km³ - - - {0}m³ - {0}m³ - - - {0} eng mil³ - {0} eng mil³ - - - {0}dL - {0}dL + + {0}ML + {0}ML {0}hL @@ -8058,10 +9889,15 @@ For terms of use, see http://www.unicode.org/copyright.html liter {0}l {0}l + {0}/l - - {0}ML - {0}ML + + {0}dL + {0}dL + + + {0}cL + {0}cL {0}mL @@ -8075,15 +9911,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ts {0} ts + + {0}Ø + {0}N + {0}S + {0}V + h.mm + h:mm h.mm.ss + h:mm:ss m.ss + m:ss diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nb_NO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nb_NO.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nb_NO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nb_NO.xml index f57daa2c5bd..e112495fb87 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nb_NO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nb_NO.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nb_SJ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nb_SJ.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nb_SJ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nb_SJ.xml index aee5f74494e..d6771b47a6d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nb_SJ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nb_SJ.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nd.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nd.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nd.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nd.xml index 1459006cbbc..4e21f242f51 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nd.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nd.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Netherlands Antilles Angola Ajentina Samoa ye Amelika @@ -570,6 +568,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + @@ -749,3 +775,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nd_ZW.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nd_ZW.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nd_ZW.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nd_ZW.xml index 6e0f9b1ee24..e32f7b438c2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nd_ZW.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nd_ZW.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ne.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ne.xml similarity index 84% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ne.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ne.xml index 8c931e07ffc..85ce7127763 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ne.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ne.xml @@ -1,13 +1,12 @@ - - - + @@ -17,196 +16,480 @@ For terms of use, see http://www.unicode.org/copyright.html {0}: {1} + अफार अब्खाजियाली + अचाइनिज + अकोली + अदाङमे + अदिघे + अवेस्तान अफ्रिकान्स + अफ्रिहिली आघेम + अइनु आकान + अक्कादियाली + अलाबामा + अलेउट + घेग अल्बानियाली अम्हारिक + अरागोनी + पुरातन अङ्ग्रेजी + अङ्गिका अरबी आधुनिक मानक अरबी + अरामाइक मापुचे + अराओना + अरापाहो + अल्जेरियाली अरबी + अरावाक + मोरोक्कोली अरबी + इजिप्ट अरबी आसामी आसु + अमेरिकी साङ्केतिक भाषा + अस्टुरियाली + अवारिक + कोटावा + अवधी + ऐमारा अजरबैजानी अजेरी - बाश्किर - वेलारूसी + बास्किर + बालुची + बाली + बाभारियाली + बासा + बामुन + बाताक तोबा + घोमाला + बेलारुसी + बेजा बेम्बा + बेटावी बेना + बाफुट + बडागा बुल्गेरियाली + पश्चिम बालोची + भोजपुरी + बिस्लाम + बिकोल + बिनी + बन्जार + कोम बाम्बारा बंगाली तिब्बती + विष्णुप्रिया + बाख्तिआरी ब्रेटन + ब्रज + ब्राहुइ बोडो बोस्नियाली + अकुज + बुरिआत + बुगिनियाली + बुलु + ब्लिन + मेडुम्बा क्याटालन + काड्डो + क्यारिब + कायुगा + अट्साम + चेचेन + सेबुआनो चिगा + चामोर्रो + चिब्चा + चागाटाई + चुकेसे + मारी + चिनुक जार्गन + चोक्टाव + चिपेव्यान चेरोकी - सोरानी कुर्दिश + चेयेन्ने + केन्द्रीय कुर्दी कोर्सिकन + कोप्टिक + कापिज्नोन + क्री + क्रिमियाली तुर्क चेक + कासुवियन + चर्च स्लाभिक + चुभास वेल्श - डेनिश + डेनिस + डाकोटा + दार्ग्वा ताइता जर्मन - अष्ट्रियन जर्मन + अस्ट्रियाली जर्मन स्वीस हाई जर्मन + देलावर + दोग्रिब + दिन्का जर्मा + डोगरी तल्लो सोर्बियन + केन्द्रीय दुसुन दुवाला + मध्य डच + दिबेही जोला-फोनिल + द्युला जोङ्खा + दाजागा एम्बु - इवि + इवी + एफिक + एमिलियाली + पुरातन इजिप्टी + एकाजुक ग्रीक - अंग्रेजी - अंग्रेजी (अमेरिका) + एलामाइट + अङ्ग्रेजी + अस्ट्रेलियाली अङ्ग्रेजी + क्यानाडेली अङ्ग्रेजी + बेलायती अङ्ग्रेजी + संयुक्त अधिराज्य अङ्ग्रेजी + अमेरिकी अङ्ग्रेजी + युएस अङ्ग्रेजी + मध्य अङ्ग्रेजी एस्पेरान्तो - स्पेनिस - युरोपेली स्पेनिस + स्पेनी + ल्याटिन अमेरिकी स्पेनी + युरोपेली स्पेनी + मेक्सिकन स्पेनी + केन्द्रीय युपिक इस्टोनियाली बास्क + इवोन्डो + एक्सट्रेमादुराली फारसी - फिनिश + फाङ + फान्टी + फुलाह + फिनिस फिलिपिनी फिजियाली फारोज + फोन फ्रान्सेली + क्यानेडाली फ्रान्सेली + काहुन फ्रान्सेली + मध्य फ्रान्सेली + पुरातन फ्रान्सेली + अर्पितान + उत्तरी फ्रिजी + पूर्वी फ्रिसियाली + फ्रिउलियाली फ्रिजीयन - आइरिश + आयरिस + गा गगाउज - स्कट्स गाएलिक + गान चिनियाँ + गायो + ग्बाया + स्कटिस गाएलिक + गिज + गिल्बर्टी गलिसियाली - गुजरानी + गिलाकी + मध्य उच्च जर्मन + गुवारानी + पुरातन उच्च जर्मन + गोवा कोन्कानी + गोन्डी + गोरोन्टालो + गोथिक + ग्रेबो + पुरातन ग्रिक स्वीस जर्मन गुजराती + फ्राफ्रा गुसी मान्क्स + गुइचिन हाउसा + हाइदा + हक्का चिनियाँ हवाइयन हिब्रु हिन्दी - क्रोएशियाली + फिजी हिन्दी + हिलिगायनोन + हिट्टिटे + हमोङ + हिरी मोटु + क्रोयसियाली माथिल्लो सोर्बियन हैटियाली - हंग्रीयाली + हङ्गेरियाली + हुपा आर्मेनियाली - इन्टर्लिङ्गुआ + हेरेरो + इन्टर्लिङ्गुआ + इबान + इबिबियो इन्डोनेसियाली - अन्तरभाषी + इन्टरलिङ्ग्वे इग्बो सिचुआन यि - आइसल्यान्डिक - इटालियन - लनुक्टिटुट + इनुपिआक् + इयोको + इन्गस + इडो + आइसल्यान्डियाली + इटालेली + इनुक्टिटुट + इन्ग्रियाली जापानी - गोम्बा + जमैकाली क्रेओले अङ्ग्रेजी + लोज्बान + न्गोम्बा माचामे - जाभानिज + जुडियो-फारसी + जुडियो-अरबी + जुटिस + जाभानी जर्जियाली + कारा-काल्पाक काबिल + काचिन + ज्जु काम्बा + कावी + काबार्दियाली + कानेम्बु माकोन्डे काबुभेर्डियानु + केनयाङ + कोरो + कोङ्गो + काइनगाङ + खासी + खोटानी कोयरा चिनी + खोवार किकुयु + किर्मान्जकी + कुआन्यामा काजाख + काको कालालिसुट कालेन्जिन खमेर + किम्बुन्डु कन्नाडा कोरियाली कोमी-पर्म्याक कोन्कानी - काश्मीरी + कोस्राली + क्पेल्ले + कानुरी + काराचाय-बाल्कर + क्रिओ + किनाराय-ए + कारेलियाली + कुरुख + कास्मिरी शाम्बाला बाफिया - कुर्दिश - कोर्निश + कोलोग्नियाली + कुर्दी + कुमिक + कुतेनाइ + कोमी + कोर्निस किर्गिज ल्याटिन + लाडिनो लाङ्गी - लक्जेम्बर्गिस + लाहन्डा + लाम्बा + लक्जेम्बर्गी + लाज्घियाली + लिङ्गुवा फ्राङ्का नोभा गान्डा - लोकोता - लिंगाला + लिम्बुर्गी + लिगुरियाली + लिभोनियाली + लाकोता + लोम्बार्ड + लिङ्गाला लाओ + मोङ्गो + लोजी + उत्तरी लुरी लिथुआनियाली + लाट्गाली लुबा-काताङ्गा + लुबा-लुलुआ + लुइसेनो + लुन्डा लुओ + मिजो लुइया लात्भियाली - मासाल + साहित्यिक चिनियाँ + लाज + मादुरेसे + माफा + मगधी + मैथिली + माकासार + मान्दिङो + मसाई + माबा + मोक्ष + मन्दर + मेन्डे मेरू मोरिसेन मलागासी + मध्य आयरिस माखुवा-मिट्टो मेटा + मार्साली माओरी - म्याकेडोनियन + मिकमाक + मिनाङकाबाउ + म्यासेडोनियाली मलयालम - मंगोल + मङ्गोलियाली + मान्चु + मनिपुरी मोहक + मोस्सी मराठी - मलाया + मलाय माल्टिज मुन्डाङ - वर्मेली + बहुभाषा + क्रिक + मिरान्डी + माडवारी + मेन्टावाई + बर्मेली + म्येने + इर्ज्या + मजानडेरानी + नाउरू + मिन नान चिनियाँ + नेपोलिटान नामा नर्वेली बोकमाल - उत्तर नेडेबेले + उत्तरी न्डेबेले + तल्लो जर्मन + तल्लो साक्सन नेपाली + नेवारी + न्दोन्गा + नियास + निउएन + अओ नागा डच - फ्लेमिश + फ्लेमिस क्वासियो नर्वेली नाइनोर्स्क - नर्वेजियाली + न्गिएम्बुन + नर्वेली + नोगाइ + पुरानो नोर्से + नोभियल नको + उत्तरी सोथो नुएर + नाभाजो + परम्परागत नेवारी + न्यान्जा + न्यामवेजी न्यान्कोल - अक्सिटन + न्योरो + नजिमा + अक्सिटन + ओजिब्वा ओरोमो - ओरिया + उडिया + अोस्सेटिक + ओसागे + अटोमन तुर्की पंजाबी - पोलिश - पाश्तो + पाङ्गासिनान + पाहलावी + पामपाङ्गा + पापियामेन्तो + पालाउवाली + पिकार्ड + पेन्सिलभानियाली जर्मन + पुरातन फारसी + पालाटिन जर्मन + फोनिसियाली + पाली + पोलिस + पिएडमोन्तेसे + पोन्टिक + पुरातन प्रोभेन्काल + पास्तो पोर्तुगी - पोर्तुगी (युरोप) + ब्राजिली पोर्तुगी + युरोपेली पोर्तुगी क्वेचुवा किचे - रोमानिश - रूण्डी + चिम्बोराजो उच्चस्थान किचुआ + राजस्थानी + रोमानिस + रुन्डी रोमानियाली माल्डाभियन रोम्बो रूसी + अरोमानीयाली किन्यारवान्डा र्‌वा संस्कृत साम्बुरू + सान्ताली + न्गामबाय साङ्गु सिन्धी + दक्षिणी कुर्दिश उत्तरी सामी सेना कोयराबोरो सेन्नी साङ्गो + पुरातन आयरीस टाचेल्हिट - सिन्हाला + चाड अरबी + सिन्हाली स्लोभाकियाली स्लोभेनियाली + तल्लो सिलेसियाली दक्षिणी सामी लुले सामी इनारी सामी स्कोइट सामी शोना सोमाली - अल्बेनियन + अल्बानियाली सर्बियाली - सुडानी - स्विडिश + स्रानान टोङ्गो + स्वाती + सुकुमा + सुसू + सुमेरियाली + स्विडिस स्वाहिली - कोङ्गो स्वाहिली + कङ्गो स्वाहिली + कोमोरी + परम्परागत सिरियाक + सिरियाक तामिल तेलुगु टेसो @@ -214,10 +497,12 @@ For terms of use, see http://www.unicode.org/copyright.html थाई तिग्रीन्या टर्कमेन - क्लिङ्गन + क्लिङ्गन टोङ्गन + न्यास टोङ्गा टर्किश तातार + मुस्लिम टाट तासावाक केन्द्रीय एट्लास टामाजिघट उइघुर @@ -227,12 +512,19 @@ For terms of use, see http://www.unicode.org/copyright.html उज्बेकी भाइ भियतनामी + मुख्य-फ्राङ्कोनियाली भुन्जो + वार्ल्पिरी वुलुफ + काल्मिक खोसा + मिनग्रेलियाली सोगा - यिद्दिस + यिद्दिस योरूवा + न्हिनगातु + कान्टोनियाली + ब्लिससिम्बोल्स मानक मोरोक्कोन तामाजिघट चिनियाँ सरलिकृत चिनियाँ @@ -242,128 +534,127 @@ For terms of use, see http://www.unicode.org/copyright.html - + - - - + + + - + - + - - - - - - - - - + + + + + + + + + - - - - + + + + - + - - + + - + - - - + + + - - + + - + - + - - + + - - + + - - - - - - - - + + + + + + + + - - + + - - - - + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - + + + + + + + + - - - - - + + + + + - - - - - - - + + + + + + + @@ -408,7 +699,6 @@ For terms of use, see http://www.unicode.org/copyright.html आङ्गुइला अल्बानिया आर्मेनिया - नेदरल्याण्ड्स एण्टिलिस अङ्गोला अन्टारतिका अर्जेन्टिना @@ -679,66 +969,79 @@ For terms of use, see http://www.unicode.org/copyright.html पात्रो क्रमबद्ध सुची मुद्रा + hc + lb + मापन प्रणाली अङ्कहरू - अरबी भारतीय अङ्कहरू - विस्तृत अरबी भारतीय अङ्कहरू - आर्मेनियाली अङ्कहरू - आर्मनियाली साना अङ्कहरू - बङ्गाली अङ्कहरू - परम्परागत चिनिँया क्रमबद्धता पद्दति - बिग फाइभ - बुद्धिष्ट पात्रो - चिनिँया पात्रो - डाङ्गी पात्रो - देवनागरी अङ्कहरू - पूर्वनिर्धारित युनिकोड क्रमबद्ध सूची - इथियोपाली अङ्कहरू - इथिओपिक पात्रो - पुरा चौडाईका अङ्कहरू - सरलिकृत चिनियाँ क्रमबद्धता पद्दति-गीबीटुथ्रीवानटु - जर्जियाली अङ्कहरू - ग्रेगोरियन पात्रो - ग्रीक अङ्कहरू - ग्रीक साना अङ्कहरू - गुजराती अङ्कहरू - गुरूमुखी अङ्कहरू - चिनियाँ दशमलव अङ्कहरू - सरलिकृत चिनियाँ अङ्कहरू - सरलिकृत चिनियाँ वित्तीय अङ्कहरू - परम्परागत चिनियाँ अङ्कहरू - परम्परागत चिनियाँ वित्तीय अङ्कहरू - हिब्रु अङ्कहरू - हिब्रु पात्रो - भारतीय राष्ट्रिय पात्रो - इस्लामी पात्रो - इस्लामी नागरिक पात्रो - iso8601 - जापानी पात्रो - जापानी अङ्कहरू - जापानी वित्तीय अङ्कहरू - खमेर अङ्कहरू - कन्नाडा अङ्कहरू - लाओ अङ्कहरू - पश्चिमी अङ्कहरू - मलायलम अङ्कहरू - म्यान्मारका अङ्कहरू - ओरिया अङ्कहरू - फारसी पात्रो - टेलिफोन पुस्तिका क्रमबद्धतापद्दति - पिनयिन क्रमबद्धता पद्दति - चिनिँया गणतन्त्र पात्रो - रोमन अङ्कहरू - रोमन साना केसका अङ्कहरू - सामान्य खोजी - स्तर - स्ट्रोक क्रमबद्धता पद्दति - परम्परागत तामिल अङ्कहरू - तामिल अङ्कहरू - तेलेगु अङ्कहरू - थाई अङ्कहरू - तिब्बती अङ्कहरू - परम्परागत क्रमबद्धता पद्दति + बुद्धिष्ट पात्रो + चिनिँया पात्रो + डाङ्गी पात्रो + इथिओपिक पात्रो + ग्रेगोरियन पात्रो + हिब्रु पात्रो + भारतीय राष्ट्रिय पात्रो + इस्लामी पात्रो + इस्लामी नागरिक पात्रो + iso8601 + जापानी पात्रो + फारसी पात्रो + चिनिँया गणतन्त्र पात्रो + परम्परागत चिनिँया क्रमबद्धता पद्दति - बिग फाइभ + पूर्वनिर्धारित युनिकोड क्रमबद्ध सूची + सरलिकृत चिनियाँ क्रमबद्धता पद्दति-गीबीटुथ्रीवानटु + टेलिफोन पुस्तिका क्रमबद्धतापद्दति + पिनयिन क्रमबद्धता पद्दति + सामान्य खोजी + स्तर + स्ट्रोक क्रमबद्धता पद्दति + परम्परागत क्रमबद्धता पद्दति + h11 + h12 + h23 + h24 + loose + normal + strict + मेट्रिक प्रणाली + इम्पेरियल मापन प्रणाली + संयुक्त राज्य मापन प्रणाली + अरबी भारतीय अङ्कहरू + विस्तृत अरबी भारतीय अङ्कहरू + आर्मेनियाली अङ्कहरू + आर्मनियाली साना अङ्कहरू + बङ्गाली अङ्कहरू + देवनागरी अङ्कहरू + इथियोपाली अङ्कहरू + पुरा चौडाईका अङ्कहरू + जर्जियाली अङ्कहरू + ग्रीक अङ्कहरू + ग्रीक साना अङ्कहरू + गुजराती अङ्कहरू + गुरूमुखी अङ्कहरू + चिनियाँ दशमलव अङ्कहरू + सरलिकृत चिनियाँ अङ्कहरू + सरलिकृत चिनियाँ वित्तीय अङ्कहरू + परम्परागत चिनियाँ अङ्कहरू + परम्परागत चिनियाँ वित्तीय अङ्कहरू + हिब्रु अङ्कहरू + जापानी अङ्कहरू + जापानी वित्तीय अङ्कहरू + खमेर अङ्कहरू + कन्नाडा अङ्कहरू + लाओ अङ्कहरू + पश्चिमी अङ्कहरू + मलायलम अङ्कहरू + म्यान्मारका अङ्कहरू + ओरिया अङ्कहरू + रोमन अङ्कहरू + रोमन साना केसका अङ्कहरू + परम्परागत तामिल अङ्कहरू + तामिल अङ्कहरू + तेलेगु अङ्कहरू + थाई अङ्कहरू + तिब्बती अङ्कहरू मेट्रिक @@ -746,9 +1049,9 @@ For terms of use, see http://www.unicode.org/copyright.html संयु्क्त राज्य - {0} - {0} - {0} + भाषा: {0} + लिपि: {0} + क्षेत्र: {0} @@ -757,6 +1060,7 @@ For terms of use, see http://www.unicode.org/copyright.html [अ आ इ ई उ ऊ ऋ ए ऐ ओ औ क ख ग घ ङ च छ ज झ ञ ट ठ ड ढ ण त थ द ध न प फ ब भ म य र ल व श ष स ह] {0}… …{0} + {0}…{1} {0} … … {0} {0} … {1} @@ -816,6 +1120,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d, E G y G y MMM @@ -827,6 +1132,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL MMM d MMM d, E + MMMM d G y G y GGGGG y-MM @@ -835,6 +1141,7 @@ For terms of use, see http://www.unicode.org/copyright.html G y MMM G y MMM d G y MMM d, E + G y MMMM G y QQQ G y QQQQ @@ -1116,26 +1423,72 @@ For terms of use, see http://www.unicode.org/copyright.html - - a - n - p - - + + मध्यरात पूर्वाह्न मध्यान्ह अपराह्न + बिहान + अपरान्ह + बेलुका + साँझ + रात + + + मध्यरात + a + n + p + बिहान + अपरान्ह + बेलुका + साँझ + रात + + + मध्यरात + पूर्वाह्न + मध्यान्ह + अपराह्न + बिहान + अपरान्ह + बेलुका + साँझ + रात + + + + + मध्यरात + पूर्वाह्न + मध्यान्ह + अपराह्न + बिहान + अपरान्ह + साँझ + बेलुका + रात + + + मध्यरात + पूर्वाह्न + मध्यान्ह + अपराह्न + विहान + अपरान्ह + साँझ + बेलुका + रात - इशा पूर्व सिइ ईसा पूर्व - इशा पूर्व + इस्वीपूर्व सन् सिइ @@ -1223,12 +1576,17 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L MM-dd MM-dd, E LLL MMM d MMM d, E + MMMM d mm:ss y y-MM @@ -1237,6 +1595,7 @@ For terms of use, see http://www.unicode.org/copyright.html y MMM y MMM d y MMM d, E + y MMMM y QQQ y QQQQ @@ -1507,7 +1866,7 @@ For terms of use, see http://www.unicode.org/copyright.html अस्ति हिजो आज - भोली + भोलि पर्सि {0} दिनमा @@ -1544,9 +1903,19 @@ For terms of use, see http://www.unicode.org/copyright.html हप्ताको बार - गत आईतबार - यो आईतबार - अर्को आईतबार + गत आइतबार + यो आइतबार + अर्को आइतबार + + + गत आइतबार + यो आइतबार + अर्को आइतबार + + + गत आइतबार + यो आइतबार + अर्को आइतबार गत सोमबार @@ -1698,6 +2067,14 @@ For terms of use, see http://www.unicode.org/copyright.html मिनेट + + {0} मिनेटमा + {0} मिनेटमा + + + {0} मिनेट पहिले + {0} मिनेट पहिले + सेकेन्ड @@ -2610,6 +2987,9 @@ For terms of use, see http://www.unicode.org/copyright.html पोर्ट मोरेस्बी + + बुगेनभिल्ले + मनिला @@ -2694,6 +3074,9 @@ For terms of use, see http://www.unicode.org/copyright.html इर्कुत्स्क + + चिता + याकुत्स्क @@ -2712,6 +3095,9 @@ For terms of use, see http://www.unicode.org/copyright.html मागाडान + + स्रेद्निकोलिम्स्क + कामचट्का @@ -3872,7 +4258,7 @@ For terms of use, see http://www.unicode.org/copyright.html deva - 1 + 1 . , @@ -4014,6 +4400,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0 हजार + ¤ 0 हजार + ¤ 00 हजार + ¤ 00 हजार + ¤ 0 लाख + ¤ 0 लाख + ¤ 00 लाख + ¤ 00 लाख + ¤ 0 करोड + ¤ 0 करोड + ¤ 00 करोड + ¤ 00 करोड + ¤ 0 अरब + ¤ 0 अरब + ¤ 00 अरब + ¤ 00 अरब + ¤ 0 खरब + ¤ 0 खरब + ¤ 00 खरब + ¤ 00 खरब + ¤ 0 शंख + ¤ 0 शंख + ¤ 00 शंख + ¤ 00 शंख + + {0} {1} {0} {1} @@ -4056,16 +4470,21 @@ For terms of use, see http://www.unicode.org/copyright.html एङ्गोलान क्वान्जा एङ्गोलान क्वान्जा AOA + Kz अर्जेन्टिनी पेसो अर्जेन्टिनी पेसो अर्जेन्टिनी पेसो ARS + $ अष्ट्रेलियन डलर + अष्ट्रेलियन डलर + अष्ट्रेलियन डलर A$ + $ आरूबन फ्लोरिन @@ -4084,18 +4503,21 @@ For terms of use, see http://www.unicode.org/copyright.html बोस्निया-हर्जगोभिनिया रूपान्तरयोग्य मार्क बोस्निया-हर्जगोभिनिया रूपान्तरयोग्य मार्क BAM + KM बर्बाडियन डलर बार्बाडियन डलर बर्बाडियन डलर BBD + $ बङ्गलादेशी टाका बङ्गलादेशी टाका बङ्गलादेशी टाका BDT + बुल्गारियाली लेभ @@ -4120,6 +4542,7 @@ For terms of use, see http://www.unicode.org/copyright.html बर्मुडन डलर बर्मुडन डलर BMD + $ ब्रुनाई डलर @@ -4132,18 +4555,21 @@ For terms of use, see http://www.unicode.org/copyright.html बोलिभियन बोलिभियानो बोलिभियन बोलिभियानो BOB + Bs ब्राजिलियन रियल ब्राजिलियन रियल ब्राजिलियन रियल R$ + R$ बहामियाली डलर बहामियाली डलर बहामियाली डलर BSD + $ भुटानी एन्‌गुल्ट्रुम @@ -4156,24 +4582,28 @@ For terms of use, see http://www.unicode.org/copyright.html बोट्सवानान पुला बोट्सवानान पुला BWP + P बेलारूसी रूबल बेलारूसी रूबल बेलारूसी रूबल BYR + р. वेलिज डलर वेलिज डलर वेलिज डलर BZD + $ क्यानाडियाली डलर क्यानाडियाली डलर क्यानाडियाली डलर CA$ + $ कङ्गोली फ्रान्क @@ -4192,36 +4622,42 @@ For terms of use, see http://www.unicode.org/copyright.html चिलियन पेसो चिलियन पेसो CLP + $ चिनिँया युआन चिनिँया युआन चिनिँया युआन CN¥ + ¥ कोलम्वियन पेसो कोलम्वियन पेसो कोलम्वियन पेसो COP + $ कोष्टारिकन कोलोन कोष्टारिकन कोलोन कोष्टारिकन कोलोनहरू CRC + क्यूवाली रूपान्तरणयोग्य पेसो क्यूवाली रूपान्तरणयोग्य पेसो क्यूवाली रूपान्तरणयोग्य पेसो CUC + $ क्यूवाली पेसो क्यूवाली पेसो क्यूवाली पेसो CUP + $ केप भर्डियन एस्कुडो @@ -4234,6 +4670,7 @@ For terms of use, see http://www.unicode.org/copyright.html चेख गणतञ्त्र कोरूना चेख गणतञ्त्र कोरूना CZK + जिबौंटियाली फ्रान्क @@ -4246,12 +4683,14 @@ For terms of use, see http://www.unicode.org/copyright.html ड्यानिश क्रोन ड्यानिश क्रोनर DKK + kr डोमिनिकन पेसो डोमिनिकन पेसो डोमिनिकन पेसो DOP + $ अल्जेरियाली डिनार @@ -4264,6 +4703,7 @@ For terms of use, see http://www.unicode.org/copyright.html इजिप्सियन पाउन्ड इजिप्सियन पाउन्ड EGP + एरिट्रियन नाक्फा @@ -4282,30 +4722,35 @@ For terms of use, see http://www.unicode.org/copyright.html युरो युरो + फिजीयाली डलर फिजीयाली डलर फिजीयाली डलरहरू FJD + $ फक्‌ल्याण्ड टापुहरूका पाउन्ड फक्‌ल्याण्ड टापुहरूका पाउन्ड फक्‌ल्याण्ड टापुहरूका पाउन्ड FKP + £ बेलायती पाउण्ड स्टर्लिङ बेलायती पाउण्ड स्टर्लिङ बेलायती पाउण्ड स्टर्लिङ £ + £ जर्जियाली लारी जर्जियाली लारी जर्जियन लारी GEL + घानाली सेडी @@ -4318,6 +4763,7 @@ For terms of use, see http://www.unicode.org/copyright.html जिब्राल्टर पाउण्ड जिब्राल्टर पाउण्ड GIP + £ गाम्वियाली डालासी @@ -4330,36 +4776,42 @@ For terms of use, see http://www.unicode.org/copyright.html गिनियाली फ्रान्क गिनियाली फ्रान्क GNF + FG ग्वाटेमाला क्वेट्जाल ग्वाटेमाला क्वेट्जाल ग्वाटेमाला क्वेट्जाल GTQ + Q गाइनिज डलर गाइनिज डलर गाइनिज डलर GYD + $ हङकङ डलर हङकङ डलर हङकङ डलर HK$ + $ होन्डुरान लेम्पिरा होन्डुरान लेम्पिरा होन्डुरान लेम्पिरा HNL + L क्रोएशियाली कुना क्रोएशियाली कुना क्रोएशियाली कुना HRK + kn हैटियाली गुर्ड @@ -4372,6 +4824,7 @@ For terms of use, see http://www.unicode.org/copyright.html हङ्गेरियन फोरिन्ट हङ्गेरियन फोरिन्ट HUF + Ft इण्डोनेशियाली रूपियाँ @@ -4384,12 +4837,14 @@ For terms of use, see http://www.unicode.org/copyright.html इजरायली नयाँ शेकेल इजरायली नयाँ शेकेल + भारतीय रूपिँया भारतीय रूपिँया भारतीय रूपिँया + इराकी डिनार @@ -4408,12 +4863,14 @@ For terms of use, see http://www.unicode.org/copyright.html आइसल्याण्डिक क्रोना आइसल्याण्डिक क्रोनर ISK + kr जमाइकाली डलर जमाइकाली डलर जमाइकाली डलर JMD + $ जोर्डानियाली डलर @@ -4426,6 +4883,7 @@ For terms of use, see http://www.unicode.org/copyright.html जापानी येन जापानी येन JP¥ + ¥ केन्याली शिलिङ @@ -4450,18 +4908,21 @@ For terms of use, see http://www.unicode.org/copyright.html कोमोरियन फ्रान्क कोमोरियन फ्रान्क KMF + CF उत्तर कोरियाली वन उत्तर कोरियाली वन उत्तर कोरियाली वन KPW + दक्षिण कोरियाली वन दक्षिण कोरियाली वन दक्षिण कोरियाली वन + कुवेती डिनार @@ -4474,12 +4935,14 @@ For terms of use, see http://www.unicode.org/copyright.html केम्यान टापुहरूका डलर केम्यान टापुहरूका डलर KYD + $ काजाखस्तानी टेन्ज काजाखस्तानी टेन्ज काजाखस्तानी टेन्ज KZT + लाओशियन किप @@ -4492,18 +4955,21 @@ For terms of use, see http://www.unicode.org/copyright.html लेबनाली पाउन्ड लेबनाली पाउन्ड LBP + श्रीलङ्काली रूपिया श्रीलङ्काली रूपिया श्रीलङ्काली रूपिया LKR + Rs लिबेरियाली डलर लिबेरियाली डलर लिबेरियाली डलर LRD + $ लिथुनियाली लिटास @@ -4540,6 +5006,7 @@ For terms of use, see http://www.unicode.org/copyright.html मालागासी एरिआरी मालागासी एरिआरी MGA + Ar म्यासेडोनियाली डेनार @@ -4558,6 +5025,7 @@ For terms of use, see http://www.unicode.org/copyright.html मङ्गोलियाली टुग्रिक मङ्गोलियाली टुग्रिक MNT + माकानिज पटाका @@ -4576,6 +5044,7 @@ For terms of use, see http://www.unicode.org/copyright.html माउरिटियन रूपी माउरिटियन रूपी MUR + Rs मालडिभियाली रूफियाँ @@ -4594,6 +5063,7 @@ For terms of use, see http://www.unicode.org/copyright.html मेक्सिकन पेसो मेक्सिकन पेसो MX$ + $ मलेशियाली रिङ्गेट @@ -4612,36 +5082,42 @@ For terms of use, see http://www.unicode.org/copyright.html नामिबियन डलर नामिबियन डलर NAD + $ नाइजेरियन नाइरा नाइजेरियन नाइरा नाइजेरियन नाइरा NGN + निकारागुवान कोर्डोवा निकारागुवान कोर्डोवा निकारागुवान कोर्डोवा NIO + C$ नर्वेजियाली क्रोन नर्वेजियाली क्रोन नर्वेजियाली क्रोनर NOK + kr नेपाली रूपैयाँ नेपाली रूपैयाँ नेपाली रूपैयाँ नेरू + Rs न्यूजिल्याण्ड डलर न्यूजिल्याण्ड डलर न्यूजिल्याण्ड डलरहरू NZ$ + $ ओमनी रियल @@ -4678,18 +5154,21 @@ For terms of use, see http://www.unicode.org/copyright.html पाकिस्तानी रूपियाँ पाकिस्तानी रूपियाँ PKR + Rs पोलिश ज्लोटाई पोलिश ज्लोटाई पोलिश ज्लोटाई PLN + पारागुयाली गुरानी पारागुयाली गुरानी पारागुयाली गुरानी PYG + कतारी रियल @@ -4714,12 +5193,14 @@ For terms of use, see http://www.unicode.org/copyright.html रूसी रूबल रूसी रूबल RUB + र्‌वाण्डाली फ्रान्क र्‌वाण्डाली फ्रान्क र्‌वाण्डाली फ्रान्क RWF + RF साउदी रियालहरू @@ -4732,6 +5213,7 @@ For terms of use, see http://www.unicode.org/copyright.html सोलोमन टापुहरूका डलर सोलोमन टापुहरूका डलर SBD + $ सेचेलोइस रूपी @@ -4750,18 +5232,21 @@ For terms of use, see http://www.unicode.org/copyright.html स्विडिश क्रोना स्विडिश क्रोनर SEK + kr सिङ्गापुर डलर सिङ्गापुर डलर सिङ्गापुर डलर SGD + $ सेन्ट हेलेना पाउन्ड सेन्ट हेलेना पाउन्ड सेन्ट हेलेना पाउन्ड SHP + £ सियरा लियोनेन लियोन @@ -4780,24 +5265,28 @@ For terms of use, see http://www.unicode.org/copyright.html सुरिनामिज डलर सुरिनामिज डलर SRD + $ दक्षिण सुडानी पाउन्ड दक्षिण सुडानी पाउन्ड दक्षिण सुडानी पाउन्ड SSP + £ साओ टोम र प्रिन्सिप डोब्रा साओ टोम र प्रिन्सिप डोब्रा साओ टोम र प्रिन्सिप डोब्रा STD + Db सिरियाली पाउन्ड सिरियाली पाउन्ड सिरियाली पाउन्ड SYP + £ स्वाजी लिलान्गेनी @@ -4810,6 +5299,7 @@ For terms of use, see http://www.unicode.org/copyright.html थाई भाट थाई भाट ฿ + ฿ ताजिक्स्तानी सोमोनी @@ -4834,24 +5324,29 @@ For terms of use, see http://www.unicode.org/copyright.html टङ्गन पाङ्गा टङ्गन पाङ्गा TOP + T$ टर्किश लिरा टर्किश लिरा टर्किश लिरा TRY + + TL त्रिनिडाड र टोबागो डलर त्रिनिडाड र टोबागो डलर त्रिनिडाड र टोबागो डलर TTD + $ नयाँ ताइवान डलर नयाँ ताइवान डलर नयाँ ताइवान डलर NT$ + $ ताञ्जानियाली शिलिङ @@ -4864,6 +5359,7 @@ For terms of use, see http://www.unicode.org/copyright.html युक्रेनी हिर्भिनिया युक्रेनी हिर्भिनिया UAH + युगाण्डाली शिलिङ @@ -4876,12 +5372,14 @@ For terms of use, see http://www.unicode.org/copyright.html अमेरिकी डलर संयुक्त राज्य डलर US$ + $ उरूगुवायाली पेसो उरूगुवायाली पेसो उरूगुवायाली पेसो UYU + $ उज्बेकिस्तान सोम @@ -4894,12 +5392,14 @@ For terms of use, see http://www.unicode.org/copyright.html भेनेजुएलन बोलिभर भेनेजुएलन बोलिभर VEF + Bs भियतनामी डङ् भियतनामी डङ् भियतनामी डङ् + भानुआतू भातु @@ -4924,6 +5424,7 @@ For terms of use, see http://www.unicode.org/copyright.html पूर्वी क्यारिबियन डलर पूर्वी क्यारिबियन डलर EC$ + $ सीएफ्‌ए फ्रान्क बीसीइएओ @@ -4953,6 +5454,7 @@ For terms of use, see http://www.unicode.org/copyright.html दक्षिण अफ्रिकी र्‍यान्ड दक्षिण अफ्रिकी र्‍यान्ड ZAR + R जाम्बियाली क्वाचा (१९६८–२०१२) @@ -4964,6 +5466,7 @@ For terms of use, see http://www.unicode.org/copyright.html जाम्बियाली क्वाचा जाम्बियाली क्वाचा ZMW + ZK @@ -4974,7 +5477,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0}/{1} + {0}प्रति{1} गुरूत्वाकर्षण शक्ति @@ -4982,9 +5485,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} गुरूत्वाकर्षण शक्ति + मिटर प्रति वर्ग सेकेन्ड {0}मिटर प्रति सेकेण्ड वर्ग {0}मिटर प्रति सेकेण्ड वर्ग + + परिक्रमा + {0}परिक्रमा + {0}परिक्रमा + + + रेडियन + {0}रेडियन + {0}रेडियन + + + डिग्री + {0} डिग्री + {0} डिग्री + आर्क मिनेट {0}आर्क मिनेट @@ -4995,30 +5514,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0}आर्क सेकेण्ड {0}आर्क सेकेण्ड - - डिग्री - {0} डिग्री - {0} डिग्री - - - रेडियन - {0}रेडियन - {0}रेडियन - - - बर्ग गज - {0} बर्ग गज - {0} बर्ग गज + + बर्ग किलोमिटर + {0} बर्ग किलोमिटर + {0} बर्ग किलोमिटर हेक्टर {0} हेक्टर {0} हेक्टर + + बर्ग मिटर + {0} बर्ग मिटर + {0} बर्ग मिटर + {0}प्रति वर्ग मिटर + वर्ग सेन्टिमिटर {0}वर्ग सेन्टिमिटर {0}वर्ग सेन्टिमिटर + {0}प्रति वर्ग सेन्टिमिटर + + + बर्ग माईल + {0} बर्ग माईल + {0} बर्ग माईल + + + बर्ग गज + {0} बर्ग गज + {0} बर्ग गज + + + वर्ग यार्ड + {0}वर्ग यार्ड + {0}वर्ग यार्ड बर्ग फुट @@ -5029,91 +5560,106 @@ For terms of use, see http://www.unicode.org/copyright.html वर्ग इन्च {0}वर्ग इन्च {0}वर्ग इन्च + {0}प्रति वर्ग इन्च - - बर्ग किलोमिटर - {0} बर्ग किलोमिटर - {0} बर्ग किलोमिटर - - - बर्ग मिटर - {0} बर्ग मिटर - {0} बर्ग मिटर - - - बर्ग माईल - {0} बर्ग माईल - {0} बर्ग माईल - - - वर्ग यार्ड - {0}वर्ग यार्ड - {0}वर्ग यार्ड + + कराट + {0}कराट + {0}कराट लिटर प्रति किलोमिटर {0}लिटर प्रति किलोमिटर {0}लिटर प्रति किलोमिटर + + लिटर प्रति १०० किलोमिटर + {0}लिटर प्रति १०० किलोमिटर + {0}लिटर प्रति १०० किलोमिटर + माइल प्रति गालोन {0}माइल प्रति गालोन {0}माइल प्रति गालोन - - बिट - {0}बिट - {0}बिट - - - बाइट - {0}बाइट - {0}बाइट - - - गिगाबिट - {0}गिगाबिट - {0}गिगाबिट - - - गिगाबाइट - {0}गिगाबाइट - {0}गिगाबाइट - - - किलोबिट - {0}किलोबिट - {0}किलोबिट - - - किलोबाइट - {0}किलोबाइट - {0}किलोबाइट - - - मेगाबिट - {0}मेगाबिट - {0}मेगाबिट - - - मेगाबाइट - {0}मेगाबाइट - {0}मेगाबाइट - - - टेराबिट - {0}टेराबिट - {0}टेराबिट - टेराबाइट {0}टेराबाइट {0}टेराबाइट + + टेराबिट + {0}टेराबिट + {0}टेराबिट + + + गिगाबाइट + {0}गिगाबाइट + {0}गिगाबाइट + + + गिगाबिट + {0}गिगाबिट + {0}गिगाबिट + + + मेगाबाइट + {0}मेगाबाइट + {0}मेगाबाइट + + + मेगाबिट + {0}मेगाबिट + {0}मेगाबिट + + + किलोबाइट + {0}किलोबाइट + {0}किलोबाइट + + + किलोबिट + {0}किलोबिट + {0}किलोबिट + + + बाइट + {0}बाइट + {0}बाइट + + + बिट + {0}बिट + {0}बिट + + + शताब्दी + {0}शताब्दी + {0}शताब्दी + + + वर्ष + {0} वर्ष + {0} वर्ष + {0}प्रति वर्ष + + + महिना + {0} महिना + {0} महिना + {0}/महिना + + + हप्ता + {0} हप्ता + {0} हप्ता + {0}प्रति हप्ता + दिन {0} दिन {0} दिन + {0}/दिन घन्टा @@ -5121,30 +5667,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} घण्टा {0}प्रति घण्टा - - माइक्रोसेकेण्ड - {0}माइक्रोसेकेण्ड - {0}माइक्रोसेकेण्ड - - - मिली सेकेण्ड - {0} मिली सेकेण्ड - {0} मिली सेकेण्ड - मिनेट {0} मिनेट {0} मिनेट - - - महिना - {0} महिना - {0} महिना - - - न्यानोसेकेण्ड - {0}न्यानोसेकेण्ड - {0}न्यानोसेकेण्ड + {0}प्रति मिनेट सेकेण्ड @@ -5152,15 +5679,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} सेकेण्ड {0}प्रति सेकेण्ड - - हप्ता - {0} हप्ता - {0} हप्ता + + मिली सेकेण्ड + {0} मिली सेकेण्ड + {0} मिली सेकेण्ड - - वर्ष - {0} वर्ष - {0} वर्ष + + माइक्रोसेकेण्ड + {0}माइक्रोसेकेण्ड + {0}माइक्रोसेकेण्ड + + + न्यानोसेकेण्ड + {0}न्यानोसेकेण्ड + {0}न्यानोसेकेण्ड एम्पियर @@ -5182,6 +5714,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}भोल्ट {0}भोल्ट + + किलोक्यालोरी + {0}किलोक्यालोरी + {0}किलोक्यालोरी + क्यालोरी {0}क्यालोरी @@ -5192,21 +5729,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}क्यालोरी {0}क्यालोरी - - जुल - {0} जुल - {0}जुल - - - किलोक्यालोरी - {0}किलोक्यालोरी - {0}किलोक्यालोरी - किलोजुल {0}किलोजुल {0}किलोजुल + + जुल + {0} जुल + {0}जुल + किलोवाट-घण्टा {0}किलोवाट-घण्टा @@ -5217,201 +5749,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0}गिगाहर्ज {0}गिगाहर्ज - - हर्ज - {0} हर्ज - {0} हर्ज + + मेगाहर्ज + {0} मेगाहर्ज + {0} मेगाहर्ज किलोहर्ज {0}किलोहर्ज {0}किलोहर्ज - - मेगाहर्ज - {0} मेगाहर्ज - {0} मेगाहर्ज + + हर्ज + {0} हर्ज + {0} हर्ज - - खगोल एकाइ - {0}खगोल एकाइ - {0}खगोल एकाइ + + किलोमिटर + {0} किलोमिटर + {0}किलोमिटर + {0}प्रति किलोमिटर - - सेन्टिमिटर - {0} सेन्टिमिटर - {0} सेन्टिमिटर + + मिटर + {0} मिटर + {0} मिटर + {0}प्रति मिटर डेसिमिटर {0}डेसिमिटर {0}डेसिमिटर - - फुट - {0} फुट - {0} फुट - - - इन्च - {0} ईञ्‍च - {0} ईञ्‍च - - - किलोमिटर - {0} किलोमिटर - {0} किलो मिटर - - - प्रकाश वर्ष - {0} प्रकाश वर्ष - {0} प्रकाश वर्ष - - - मिटर - {0} मिटर - {0} मिटर - - - माइक्रोमिटर - {0}माइक्रोमिटर - {0}माइक्रोमिटर - - - माइल - माइल - {0} माईल + + सेन्टिमिटर + {0} सेन्टिमिटर + {0} सेन्टिमिटर + {0}प्रति सेन्टिमिटर मिलिमिटर {0} मिलिमिटर {0} मिलिमिटर + + माइक्रोमिटर + {0}माइक्रोमिटर + {0}माइक्रोमिटर + न्यानोमिटर {0}न्यानोमिटर {0}न्यानोमिटर - - नउटिकल माइल - {0}नउटिकल माइल - {0}नउटिकल माइल - - - पारसेकेण्ड - {0}पारसेकेण्ड - {0}पारसेकेण्ड - पिकोमिटर {0} पिकोमिटर {0} पिकोमिटर + + माइल + माइल + {0} माइल + गज {0} गज {0} गज + + फुट + {0} फुट + {0} फुट + {0} प्रति फुट + + + इन्च + {0}इन्च + {0}इन्च + {0} प्रति इन्च + + + पारसेकेण्ड + {0}पारसेकेण्ड + {0}पारसेकेण्ड + + + प्रकाश वर्ष + {0} प्रकाश वर्ष + {0} प्रकाश वर्ष + + + खगोल एकाइ + {0}खगोल एकाइ + {0}खगोल एकाइ + + + नउटिकल माइल + {0}नउटिकल माइल + {0}नउटिकल माइल + + + smi + {0} miles-scandinavian + {0} miles-scandinavian + लक्स {0}लक्स {0}लक्स - - कराट - {0}कराट - {0}कराट - - - ग्राम - {0} ग्राम - {0} ग्राम - - - किलोग्राम - {0} किलोग्राम - {0} किलोग्राम - मेट्रिक टन {0}मेट्रिक टन {0}मेट्रिक टन - - माइक्रोग्राम - {0}माइक्रोग्राम - {0}माइक्रोग्राम + + किलोग्राम + {0} किलोग्राम + {0} किलोग्राम + {0} प्रति किलोग्राम + + + ग्राम + {0} ग्राम + {0} ग्राम + {0}प्रति ग्राम मिलिग्राम {0}मिलिग्राम {0}मिलिग्राम - - आउन्स - {0} आउन्स - {0} आउन्स - - - ट्रोय आउन्स - {0} ट्रोय आउन्स - {0}ट्रोय आउन्स - - - पाउण्ड - {0} पाउण्ड - {0} पाउण्ड + + माइक्रोग्राम + {0}माइक्रोग्राम + {0}माइक्रोग्राम टन {0}टन {0} टन + + पाउण्ड + {0} पाउण्ड + {0} पाउण्ड + {0}प्रति पाउन्ड + + + आउन्स + {0} आउन्स + {0} आउन्स + {0}प्रति आउन्स + + + ट्रोय आउन्स + {0} ट्रोय आउन्स + {0}ट्रोय आउन्स + + + कराट + {0}कराट + {0}कराट + गिगावाट {0}गिगावाट {0}गिगावाट - - हर्सपावर - {0} हर्सपावर - {0} हर्सपावर - - - किलोवाट - {0} किलोवाट - {0} किलोवाट - मेगावाट {0}मेगावाट {0}मेगावाट - - मिलिवाट - {0}मिलिवाट - {0}मिलिवाट + + किलोवाट + {0} किलोवाट + {0} किलोवाट वाट {0} वाट {0} वाट + + मिलिवाट + {0}मिलिवाट + {0}मिलिवाट + + + हर्सपावर + {0} हर्सपावर + {0} हर्सपावर + हेक्टो पास्कल {0} हेक्टो पास्कल {0} हेक्टो पास्कल - - इन्च पारो - {0} इन्च पारो - {0} इन्च पारो - - - मिलिबार - {0} मिलिबार - {0} मिलिबार - मिलिमिटर पारो {0} मिलिमिटर पारो @@ -5422,10 +5958,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} पाउन्ड प्रति वर्ग इन्च {0}पाउन्ड प्रति वर्ग इन्च - - कराट - {0}कराट - {0}कराट + + इन्च पारो + {0} इन्च पारो + {0} इन्च पारो + + + मिलिबार + {0} मिलिबार + {0} मिलिबार किलोमिटर प्रति घण्टा @@ -5442,6 +5983,16 @@ For terms of use, see http://www.unicode.org/copyright.html माइल प्रति घण्टा {0} माइल प्रति घण्टा + + नट + {0}नट + {0}नट्स + + + ° + {0}° + {0}° + डिग्री सेल्सियस् {0} डिग्री सेल्सियस् @@ -5457,31 +6008,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - एकर-फिट - {0}एकर-फिट - {0}एकर-फिट - - - सेन्टिलिटर - {0}सेन्टिलिटर - {0}सेन्टिलिटर - - - घन सेन्टिमिटर - {0}घन सेन्टिमिटर - {0}घन सेन्टिमिटर - - - घन फिट - {0}घन फिट - {0}घन फिट - - - घन इन्च - {0}घन इन्च - {0}घन इन्च - घन किलोमिटर {0} घन किलोमिटर @@ -5491,6 +6017,13 @@ For terms of use, see http://www.unicode.org/copyright.html घन मिटर {0}घन मिटर {0}घन मिटर + {0}प्रति घन मिटर + + + घन सेन्टिमिटर + {0}घन सेन्टिमिटर + {0}घन सेन्टिमिटर + {0}प्रति घन सेन्टिमिटर घन माइल @@ -5502,25 +6035,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0}घन यार्ड {0}घन यार्ड - - कप्स - {0}कप - {0}कप्स + + घन फिट + {0}घन फिट + {0}घन फिट - - डेसिलिटर - {0}डेसिलिटर - {0}डेसिलिटर + + घन इन्च + {0}घन इन्च + {0}घन इन्च - - तरल आउन्स - {0} तरल आउन्स - {0}तरल आउन्स - - - गालोन - {0}गालोन - {0} गालोन + + मेगालिटर + {0}मेघालिटर + {0}मेघालिटर हेक्टोलिटर @@ -5531,27 +6059,64 @@ For terms of use, see http://www.unicode.org/copyright.html लिटर {0} लिटर {0} लिटर + {0}प्रति लिटर - - मेगालिटर - {0}मेघालिटर - {0}मेघालिटर + + डेसिलिटर + {0}डेसिलिटर + {0}डेसिलिटर + + + सेन्टिलिटर + {0}सेन्टिलिटर + {0}सेन्टिलिटर मिलिलिटर {0}मिलिलिटर {0}मिलिलिटर - - पिन्ट - {0}पिन्ट - {0}पिन्ट + + मेट्रिक पिन्ट्स + {0}मेट्रिक पिन्ट + {0}मेट्रिक पिन्ट्स + + + मेट्रिक कप्स + {0}मेट्रिक कप + {0}मेट्रिक कप्स + + + एकर-फिट + {0}एकर-फिट + {0}एकर-फिट + + + गालोन + {0}गालोन + {0} गालोन + {0}/गालोन क्वार्ट्स {0}क्वार्ट {0}क्वार्ट्स + + पिन्ट + {0}पिन्ट + {0}पिन्ट + + + कप्स + {0}कप + {0}कप्स + + + तरल आउन्स + {0} तरल आउन्स + {0}तरल आउन्स + टेबल चम्चा {0} टेबल चम्चा @@ -5562,6 +6127,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}चिया चम्चा {0}चिया चम्चा + + {0}पूर्व + {0}उत्तर + {0}दक्षिण + {0}पश्चिम + @@ -5577,6 +6148,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + परिक्रमा + {0}परिक्रमा + {0}परिक्रमा + + + रेडियन + {0} rad + {0} rad + + + डिग्री + {0}° + {0}° + आर्क मिनेट {0}आर्क मिनेट @@ -5587,30 +6173,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0}आर्क सेकेण्ड {0}आर्क सेकेण्ड - - डिग्री - {0}° - {0}° - - - रेडियन - {0} rad - {0} rad - - - बर्ग गज - {0} बर्ग गज - {0} बर्ग गज + + बर्ग किलोमिटर + {0} ब.कि.मि. + {0} ब.कि.मि. हेक्टर {0} हे. {0} हे. + + बर्ग मिटर + {0} ब.मि. + {0} ब.मि. + {0}/m² + वर्ग सेन्टिमिटर {0} cm² {0} cm² + {0}/cm² + + + बर्ग माईल + {0} बर्ग माईल + {0} बर्ग माईल + + + बर्ग गज + {0} बर्ग गज + {0} बर्ग गज + + + वर्ग यार्ड + {0} yd² + {0} yd² बर्ग फुट @@ -5621,91 +6219,106 @@ For terms of use, see http://www.unicode.org/copyright.html वर्ग इन्च {0} in² {0} in² + {0}/in² - - बर्ग किलोमिटर - {0} ब.कि.मि. - {0} ब.कि.मि. - - - बर्ग मिटर - {0} ब.मि. - {0} ब.मि. - - - बर्ग माईल - {0} बर्ग माईल - {0} बर्ग माईल - - - वर्ग यार्ड - {0} yd² - {0} yd² + + कराट + {0} kt + {0} kt लिटर/किलोमिटर {0} L/km {0} L/km + + लि./१००कि.मि. + {0}लि./१००कि.मि. + {0}लि./१००कि.मि. + माइल/गाल {0} mpg {0} mpg - - bit - {0} bit - {0} bit - - - बाइट - {0} byte - {0} byte - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + बाइट + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + शताब्दी + {0}शताब्दी + {0}शताब्दी + + + वर्ष + {0} वर्ष + {0} वर्ष + {0}/वर्ष + + + महिना + {0} महिना + {0} महिना + {0}/महिना + + + हप्ता + {0} हप्ता + {0} हप्ता + {0}/हप्ता + दिन {0} दिन {0} दिन + {0}/दिन घन्टा @@ -5713,30 +6326,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} घण्टा {0}/h - - μs - {0} μs - {0} μs - - - मिली सेकेण्ड - {0} मिली से. - {0} मिली से. - मिनेट {0} मिनेट {0} मिनेट - - - महिना - {0} महिना - {0} महिना - - - ns - {0} ns - {0} ns + {0}/मिनेट सेकेण्ड @@ -5744,15 +6338,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} सेकेण्ड {0}/s - - हप्ता - {0} हप्ता - {0} हप्ता + + मिली सेकेण्ड + {0} मिली से. + {0} मिली से. - - वर्ष - {0} वर्ष - {0} वर्ष + + μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns amp @@ -5774,6 +6373,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -5784,21 +6388,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}क्याल {0} क्याल - - जुल - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - किलोजुल {0} kJ {0} kJ + + जुल + {0} J + {0} J + किलोवाट-घण्टा {0} kWh @@ -5809,201 +6408,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au + + कि.मि. + {0}कि.मि. + {0}कि.मि. + {0}/कि.मि. - - से.मी. - {0} से.मी. - {0} से.मी. + + मिटर + {0} मि. + {0} मि. + {0}/मिटर dm {0} dm {0} dm - - फुट - {0} फुट - {0} फुट + + से.मि. + {0}से.मि. + {0}से.मि. + {0}/से.मि. - - इन्च - इन्च - {0} ईञ्‍च - - - कि.मि. - {0} कि.मी. - {0} कि.मी. - - - प्रकाश वर्ष - {0} ly - {0} ly - - - मिटर - {0} मि. - {0} मि. + + मि.मि. + मि.मि. + {0}मि.मि. µm {0} µm {0} µm - - माइल - {0} माइल - {0} माइल - - - मि.मी. - मि.मी. - {0} मि.मी. - nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - पारसेकेण्ड - {0} pc - {0} pc - पिकोमिटर {0}पिकोमिटर {0}पिकोमिटर + + माइल + {0} माइल + {0} माइल + गज {0} गज {0} गज + + फिट + {0}फिट + {0}फिट + {0}/फिट + + + इन्च + इन्च + {0}इन्च + {0}/इन्च + + + पारसेकेण्ड + {0} pc + {0} pc + + + प्रकाश वर्ष + {0} ly + {0} ly + + + au + {0} au + {0} au + + + nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + लक्स {0} lx {0} lx - - कराट - {0} CD - {0} CD - - - ग्राम - {0} ग्राम - {0} ग्राम - - - किलोग्राम - {0} किलो - {0} किलो - t {0} t {0} t - - µg - {0} µg - {0} µg + + किलोग्राम + {0} किलो + {0} किलो + {0}/kg + + + ग्राम + {0} ग्राम + {0} ग्राम + {0}/g मिलिग्राम {0} mg {0} mg - - आउन्स - {0} आउन्स - {0} आउन्स - - - ओज ट्रोय - {0} oz t - {0} oz t - - - पाउण्ड - {0} पाउण्ड - {0} पाउण्ड + + µg + {0} µg + {0} µg टन {0} tn {0} tn + + पाउन्ड + {0}lb + {0}lbs + {0}/lb + + + आउन्स + {0} आउन्स + {0} आउन्स + {0}/oz + + + ओज ट्रोय + {0} oz t + {0} oz t + + + कराट + {0} CD + {0} CD + GW {0} GW {0} GW - - हर्सपावर - {0} हर्सपावर - {0} हर्सपावर - - - किलोवाट - {0} किलोवाट - {0} किलोवाट - मेगावाट {0} MW {0} MW - - मिलिवाट - {0} mW - {0} mW + + किलोवाट + {0} किलोवाट + {0} किलोवाट वाट {0} वाट {0} वाट + + मिलिवाट + {0} mW + {0} mW + + + हर्सपावर + {0} हर्सपावर + {0} हर्सपावर + हेक्टो पास्कल {0}hPa {0} hPa - - इन्च पारो - {0} इन्च पारो - {0} इन्च पारो - - - मिलिबार - {0} मिलिबार - {0} मिलिबार - mm Hg {0} mm Hg @@ -6014,10 +6617,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - कराट - {0} kt - {0} kt + + इन्च पारो + {0} इन्च पारो + {0} इन्च पारो + + + मिलिबार + {0} मिलिबार + {0} मिलिबार किलोमिटर प्रति घण्टा @@ -6034,6 +6642,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mph {0} mph + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + डिग्री सेल्सियस् {0}°से @@ -6049,31 +6667,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - एकर फिट - {0} ac ft - {0} ac ft - - - cL - {0} cL - {0} cL - - - cm³ - {0} cm³ - {0} cm³ - - - घन फिट - {0} ft³ - {0} ft³ - - - घन इन्च - {0} in³ - {0} in³ - घन किलोमिटर {0}km³ @@ -6083,6 +6676,13 @@ For terms of use, see http://www.unicode.org/copyright.html घन मिटर {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ घन माइल @@ -6094,25 +6694,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - कप्स - {0} c - {0} c + + घन फिट + {0} ft³ + {0} ft³ - - dL - {0} dL - {0} dL + + घन इन्च + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - गाल - {0} gal - {0} gal + + ML + {0} ML + {0} ML hL @@ -6123,27 +6718,64 @@ For terms of use, see http://www.unicode.org/copyright.html लिटर {0} लि. {0} लि. + {0}/l - - ML - {0} ML - {0} ML + + dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL mL {0} mL {0} mL - - पिन्ट - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + + + mcup + {0}mc + {0} mc + + + एकर फिट + {0} ac ft + {0} ac ft + + + गाल + {0} gal + {0} gal + {0}/gal क्वार्ट्स {0} qt {0} qt + + पिन्ट + {0} pt + {0} pt + + + कप्स + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + tbsp {0} tbsp @@ -6154,6 +6786,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0}पूर्व + {0}उत्तर + {0}दक्षिण + {0}पश्चिम + @@ -6163,6 +6801,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} g {0} g + + {0}° + {0}° + {0}′ {0}′ @@ -6171,26 +6813,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} एकर - {0} एकर + + {0} ब.कि.मि. + {0} ब.कि.मि. {0} हे. {0} हे. - - {0} ब.फु. - {0} ब.फु. - - - {0} ब.कि.मि. - {0} ब.कि.मि. - {0} ब.मि. {0} ब.मि. @@ -6199,6 +6829,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} बर्ग माईल {0} बर्ग माईल + + {0} एकर + {0} एकर + + + {0} ब.फु. + {0} ब.फु. + + + लि./१००कि.मि. + {0}L/100km + {0}L/100km + + + वर्ष + {0} वर्ष + {0} वर्ष + + + महिना + {0} महिना + {0} महिना + + + हप्ता + {0} हप्ता + {0} हप्ता + दिन {0} दिन @@ -6209,38 +6867,52 @@ For terms of use, see http://www.unicode.org/copyright.html {0} घण्टा {0} घण्टा - - मिली सेकेण्ड - {0}मि.से. - {0}मि.से. - मिनेट {0} मिनेट {0} मिनेट - - महिना - {0} महिना - {0} महिना - + सेकेण्ड {0} सेकेण्ड {0} सेकेण्ड - - हप्ता - {0} हप्ता - {0} हप्ता + + मिली सेकेण्ड + {0}मि.से. + {0}मि.से. - - वर्ष - {0} वर्ष - {0} वर्ष + + कि.मि. + {0}कि.मि. + {0}कि.मि. + + + मिटर + {0} मि. + {0} मि. - {0} से.मी. - {0} से.मी. + से.मि. + {0}से.मि. + {0}से.मि. + + + मि.मि. + {0}मि.मि. + {0}मि.मि. + + + {0} pm + {0} pm + + + {0} माईल + {0} माईल + + + {0} गज + {0} गज {0}′ @@ -6250,59 +6922,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - कि.मी. - {0} कि.मी. - {0} कि.मी. - {0} ly {0} ly - - मिटर - {0} मि. - {0} मि. - - - {0} माईल - {0} माईल - - - मि.मी. - {0} मि.मी. - {0}मि.मी. - - - {0} pm - {0} pm - - - {0} गज - {0} गज - - - ग्राम - {0} ग्राम - {0} ग्राम - किलो {0} किलो {0} किलो - - {0} आऊन्स - {0} आऊन्स + + ग्राम + {0} ग्राम + {0} ग्राम {0} पाउण्ड {0} पाउण्ड - - हर्सपावर - {0} हर्सपावर - {0} हर्सपावर + + {0} आऊन्स + {0} आऊन्स किलोवाट @@ -6313,6 +6953,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} वाट {0} वाट + + हर्सपावर + {0} हर्सपावर + {0} हर्सपावर + {0} hPa {0} hPa @@ -6360,6 +7005,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} लि. {0} लि. + + {0}पूर्व + {0}उत्तर + {0}दक्षिण + {0}पश्चिम + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ne_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ne_IN.xml new file mode 100644 index 00000000000..2c598b296ca --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ne_IN.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + + + + IST + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ne_NP.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ne_NP.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ne_NP.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ne_NP.xml index 58bed0cbaf4..91ab4d811d3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ne_NP.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ne_NP.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl.xml similarity index 76% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl.xml index bd2213c6704..32ce02ce0f0 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl.xml @@ -1,13 +1,12 @@ - - - + @@ -59,7 +58,6 @@ For terms of use, see http://www.unicode.org/copyright.html Aymara Azerbeidzjaans Azeri - Zuid-Azerbeidzjaans Arabisch Basjkiers Beloetsji Balinees @@ -76,6 +74,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bafut Badaga Bulgaars + Westers Beloetsji Bhojpuri Bislama Bikol @@ -162,7 +161,9 @@ For terms of use, see http://www.unicode.org/copyright.html Australisch Engels Canadees Engels Brits Engels + Engels (VK) Amerikaans Engels + Engels (VS) Middelengels Esperanto Spaans @@ -198,7 +199,7 @@ For terms of use, see http://www.unicode.org/copyright.html Iers Ga Gagaoezisch - Gan + Ganyu Gayo Gbaya Zoroastrisch Dari @@ -335,6 +336,7 @@ For terms of use, see http://www.unicode.org/copyright.html Laotiaans Mongo Lozi + Noordelijk Luri Litouws Letgaals Luba-Katanga @@ -489,6 +491,7 @@ For terms of use, see http://www.unicode.org/copyright.html Schots Sindhi Sassarees + Pahlavani Noord-Samisch Seneca Sena @@ -531,8 +534,8 @@ For terms of use, see http://www.unicode.org/copyright.html Soemerisch Zweeds Swahili + Congo Swahili Shimaore - Congo Swahili Klassiek Syrisch Syrisch Silezisch @@ -544,7 +547,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tereno Tetun Tadzjieks - Thais + Thai Tigrinya Tigre Tiv @@ -554,7 +557,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tagalog Klingon Tlingit - Talisch + Talysh Tamashek Tswana Tongaans @@ -574,7 +577,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tasawaq Tahitiaans Toevaans - Tamazight (Centraal-Marokko) + Tamazight (Centraal-Marokko) Oedmoerts Oeigoers Oegaritisch @@ -589,7 +592,7 @@ For terms of use, see http://www.unicode.org/copyright.html Wepsisch Vietnamees West-Vlaams - Mainfränkisch + Opperfrankisch Volapük Votisch Võro @@ -599,6 +602,7 @@ For terms of use, see http://www.unicode.org/copyright.html Wolaytta Waray Washo + Warlpiri Wolof Wuyu Kalmuks @@ -630,6 +634,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -679,6 +684,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -725,6 +731,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -746,6 +753,54 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -835,7 +890,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albanië Armenië - Nederlandse Antillen Angola Antarctica Argentinië @@ -864,7 +918,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bhutan Bouveteiland Botswana - Wit-Rusland + Belarus Belize Canada Cocoseilanden @@ -962,7 +1016,7 @@ For terms of use, see http://www.unicode.org/copyright.html Noord-Korea Zuid-Korea Koeweit - Caymaneilanden + Kaaimaneilanden Kazachstan Laos Libanon @@ -1059,7 +1113,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tristan da Cunha Turks- en Caicoseilanden Tsjaad - Franse Zuidelijke Gebieden + Franse Gebieden in de zuidelijke Indische Oceaan Togo Thailand Tadzjikistan @@ -1105,7 +1159,7 @@ For terms of use, see http://www.unicode.org/copyright.html Vroeg modern Frans Academisch Romanisering ALA-LC, editie 1997 - Aloekoe dialect + Aloekoe-dialect Oost-Armeens West-Armeens Eenvormig Turkse Latijnse alfabet @@ -1121,21 +1175,22 @@ For terms of use, see http://www.unicode.org/copyright.html Vroegmodern Engels Internationaal Fonetisch Alfabet Oeralisch Fonetisch Alfabet - Fonxsamp + Transcriptie volgens X-SAMPA Hepburn-romanisering Hoognoors Servisch met Ijekaviaanse uitspraak - Itihasa + Episch Sanskriet Jauer Jyutping Algemene spelling + Kociewie Standaardspelling Laukika Het Lipovaz-dialect van het Resiaans - Luna1918 + Russische spelling van 1917 Metelko-alfabet Monotonaal - Ndyuka + Ndyuka-dialect Natisone-dialect Gniva/Njiva-dialect Modern Volapük @@ -1180,6 +1235,9 @@ For terms of use, see http://www.unicode.org/copyright.html Numeriek sorteren Sorteervoorrang valuta + uursysteem (12 of 24) + stijl regelafbreking + maatsysteem cijfers Tijdzone Landvariant @@ -1187,121 +1245,133 @@ For terms of use, see http://www.unicode.org/copyright.html Privégebruik - Arabisch-Indische cijfers - uitgebreide Arabisch-Indische cijfers - Armeense cijfers - kleine Armeense cijfers - Balinese cijfers - Bengaalse cijfers - Traditioneel-Chinese sorteervolgorde - Big5 - Brahmi cijfers - Boeddhistische kalender - Chakma cijfers - Cham cijfers - Chinese kalender - Koptische kalender - Dangi-kalender - Devanagari cijfers - Woordenboeksorteervolgorde - standaard Unicode-sorteervolgorde - Europese sorteerregels - Ethiopische cijfers - Ethiopische kalender - Ethiopische Amete Alem-kalender - Financiële cijfers - cijfers met volledige breedte - Vereenvoudigd-Chinese sorteervolgorde - GB2312 - Georgische cijfers - Gregoriaanse kalender - Griekse cijfers - kleine Griekse cijfers - Gujarati cijfers - Gurmukhi cijfers - Chinese decimale getallen - vereenvoudigd Chinese cijfers - vereenvoudigd Chinese financiële cijfers - traditioneel Chinese cijfers - traditioneel Chinese financiële cijfers - Hebreeuwse cijfers - Hebreeuwse kalender - Alles sorteren - Indiase nationale kalender - Islamitische kalender - Islamitische kalender (cyclisch) - Islamitische kalender (Saudi–Arabië) - Islamitische kalender (epoche) - Islamitische kalender (Umm al-Qura) - ISO-8601-kalender - Japanse kalender - Javaanse cijfers - Japanse cijfers - Japanse financiële cijfers - Kayah Li cijfers - Khmer cijfers - Kannada cijfers - Tai Tham Hora cijfers - Tai Tham Tham cijfers - Laotiaanse cijfers - Westerse cijfers - Lepcha cijfers - Limbu cijfers - Eerst sorteren op kleine letters - Malayalam cijfers - Mongoolse cijfers - Meetei Mayek cijfers - Myanmarese cijfers - Myanmarese Shan cijfers - Binnenlandse cijfers - N’Ko cijfers - Normaal sorteren op accenten - Sorteervolgorde algemeen hoofdlettergebruik - Niet hoofdlettergevoelig sorteren - Kana afzonderlijk sorteren - Zonder normalisatie sorteren - Cijfers afzonderlijk sorteren - Symbolen sorteren - Ol Chiki cijfers - Odia cijfers - Osmanya cijfers - Perzische kalender - Telefoonboeksorteervolgorde - Fonetische sorteervolgorde - Pinyinvolgorde - Alleen sorteren op letters - Sorteren op accenten/hoofdlettergebruik/breedte/Kana - Herziene sorteervolgorde - Kalender van de Chinese Republiek - Romeinse cijfers - kleine Romeinse cijfers - Saurashtra cijfers - algemeen zoeken - Zoeken op eerste Hangul-medeklinker - Sorteren op accenten - Sorteren zonder symbolen - Sharada cijfers - Sora Sompeng cijfers - standaard sorteervolgorde - Streeksorteervolgorde - Sundanese cijfers - Takri cijfers - nieuwe Tai Lue cijfers - traditionele Tamil cijfers - Tamil cijfers - Telugu cijfers - Sorteren op accenten/hoofdlettergebruik/breedte - Thaise cijfers - Tibetaanse cijfers - Traditionele sorteervolgorde - Traditionele cijfers - Sorteervolgorde radicalen/strepen - Eerst sorteren op hoofdletters - Vai-cijfers - Omgekeerd sorteren op accenten - Hoofdlettergevoelig sorteren - Kana anders sorteren - Unicode genormaliseerd sorteren - Cijfers numeriek sorteren - Zhuyinvolgorde + Boeddhistische kalender + Chinese kalender + Koptische kalender + Dangi-kalender + Ethiopische kalender + Ethiopische Amete Alem-kalender + Gregoriaanse kalender + Hebreeuwse kalender + Indiase nationale kalender + Islamitische kalender + Islamitische kalender (cyclisch) + Islamitische kalender (Saudi–Arabië) + Islamitische kalender (epoche) + Islamitische kalender (Umm al-Qura) + ISO-8601-kalender + Japanse kalender + Perzische kalender + Kalender van de Chinese Republiek + Symbolen sorteren + Sorteren zonder symbolen + Normaal sorteren op accenten + Omgekeerd sorteren op accenten + Eerst sorteren op kleine letters + Sorteervolgorde algemeen hoofdlettergebruik + Eerst sorteren op hoofdletters + Niet hoofdlettergevoelig sorteren + Hoofdlettergevoelig sorteren + Kana afzonderlijk sorteren + Kana anders sorteren + Traditioneel-Chinese sorteervolgorde - Big5 + vorige sorteervolgorde, voor compatibiliteit + Woordenboeksorteervolgorde + standaard Unicode-sorteervolgorde + emojisorteervolgorde + Europese sorteerregels + Vereenvoudigd-Chinese sorteervolgorde - GB2312 + Telefoonboeksorteervolgorde + Fonetische sorteervolgorde + Pinyinvolgorde + Herziene sorteervolgorde + algemeen zoeken + Zoeken op eerste Hangul-medeklinker + standaard sorteervolgorde + Streeksorteervolgorde + Traditionele sorteervolgorde + Sorteervolgorde radicalen/strepen + Zhuyinvolgorde + Zonder normalisatie sorteren + Unicode genormaliseerd sorteren + Cijfers afzonderlijk sorteren + Cijfers numeriek sorteren + Alles sorteren + Alleen sorteren op letters + Sorteren op accenten/hoofdlettergebruik/breedte/Kana + Sorteren op accenten + Sorteren op accenten/hoofdlettergebruik/breedte + 12-uursysteem (0-11) + 12-uursysteem (1-12) + 24-uursysteem (0-23) + 24-uursysteem (1-24) + losse stijl regelafbreking + normale stijl regelafbreking + strikte stijl regelafbreking + metriek stelsel + Brits imperiaal stelsel + Amerikaans imperiaal stelsel + Arabisch-Indische cijfers + uitgebreide Arabisch-Indische cijfers + Armeense cijfers + kleine Armeense cijfers + Balinese cijfers + Bengaalse cijfers + Brahmi cijfers + Chakma cijfers + Cham cijfers + Devanagari cijfers + Ethiopische cijfers + Financiële cijfers + cijfers met volledige breedte + Georgische cijfers + Griekse cijfers + kleine Griekse cijfers + Gujarati cijfers + Gurmukhi cijfers + Chinese decimale getallen + vereenvoudigd Chinese cijfers + vereenvoudigd Chinese financiële cijfers + traditioneel Chinese cijfers + traditioneel Chinese financiële cijfers + Hebreeuwse cijfers + Javaanse cijfers + Japanse cijfers + Japanse financiële cijfers + Kayah Li cijfers + Khmer cijfers + Kannada cijfers + Tai Tham Hora cijfers + Tai Tham Tham cijfers + Laotiaanse cijfers + Westerse cijfers + Lepcha cijfers + Limbu cijfers + Malayalam cijfers + Mongoolse cijfers + Meetei Mayek cijfers + Myanmarese cijfers + Myanmarese Shan cijfers + Binnenlandse cijfers + N’Ko cijfers + Ol Chiki cijfers + Odia cijfers + Osmanya cijfers + Romeinse cijfers + kleine Romeinse cijfers + Saurashtra cijfers + Sharada cijfers + Sora Sompeng cijfers + Sundanese cijfers + Takri cijfers + nieuwe Tai Lue cijfers + traditionele Tamil cijfers + Tamil cijfers + Telugu cijfers + Thaise cijfers + Tibetaanse cijfers + Traditionele cijfers + Vai-cijfers BGN @@ -1353,13 +1423,13 @@ For terms of use, see http://www.unicode.org/copyright.html [à â å ã æ ç è ê î ñ ô ø œ ù û ÿ] [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z] [\- ‐ – — , ; \: ! ? . … ' ‘ ’ " “ ” ( ) \[ \] § @ * / \& # † ‡ ′ ″] - {0}… - …{0} - {0}…{1} - {0} … - … {0} - {0} … {1} - ? + {0}… + …{0} + {0}…{1} + {0} … + … {0} + {0} … {1} + ? @@ -1400,6 +1470,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d y G MMM y G @@ -1443,20 +1514,6 @@ For terms of use, see http://www.unicode.org/copyright.html mnd 11 mnd 12 - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - maand 1 maand 2 @@ -1473,20 +1530,6 @@ For terms of use, see http://www.unicode.org/copyright.html - - Mnd 1 - Mnd 2 - Mnd 3 - Mnd 4 - Mnd 5 - Mnd 6 - Mnd 7 - Mnd 8 - Mnd 9 - Mnd 10 - Mnd 11 - Mnd 12 - 1 2 @@ -1501,20 +1544,6 @@ For terms of use, see http://www.unicode.org/copyright.html 11 12 - - Maand 1 - Maand 2 - Maand 3 - Maand 4 - Maand 5 - Maand 6 - Maand 7 - Maand 8 - Maand 9 - Maand 10 - Maand 11 - Maand 12 - @@ -1561,7 +1590,10 @@ For terms of use, see http://www.unicode.org/copyright.html insecten ontwaken lentepunt licht en helder + nat graan begin van de zomer + vol graan + oogst graan zomerpunt warm heet @@ -1575,6 +1607,8 @@ For terms of use, see http://www.unicode.org/copyright.html lichte sneeuw zware sneeuw winterpunt + koel + koud @@ -1708,6 +1742,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d U MMM U @@ -1727,6 +1762,10 @@ For terms of use, see http://www.unicode.org/copyright.html E d MMM d MMMM mm:ss + U MM + U MM-d + U MMM + U MMM d U y-MM-dd U @@ -1741,9 +1780,42 @@ For terms of use, see http://www.unicode.org/copyright.html QQQQ U + {0} – {1} d–d + + h a – h a + h–h a + + + HH–HH + + + h:mm a – h:mm a + h:mm–h:mm a + h:mm–h:mm a + + + HH:mm–HH:mm + HH:mm–HH:mm + + + h:mm a – h:mm a v + h:mm–h:mm a v + h:mm–h:mm a v + + + HH:mm–HH:mm v + HH:mm–HH:mm v + + + h a – h a v + h–h a v + + + HH–HH v + MM–MM @@ -1901,266 +1973,25 @@ For terms of use, see http://www.unicode.org/copyright.html - - - - - - mnd 1 - mnd 2 - mnd 3 - mnd 4 - mnd 5 - mnd 6 - mnd 7 - mnd 8 - mnd 9 - mnd 10 - mnd 11 - mnd 12 - - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - - - maand 1 - maand 2 - maand 3 - maand 4 - maand 5 - maand 6 - maand 7 - maand 8 - maand 9 - maand 10 - maand 11 - maand 12 - - - - - Mnd 1 - Mnd 2 - Mnd 3 - Mnd 4 - Mnd 5 - Mnd 6 - Mnd 7 - Mnd 8 - Mnd 9 - Mnd 10 - Mnd 11 - Mnd 12 - - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - - - Maand 1 - Maand 2 - Maand 3 - Maand 4 - Maand 5 - Maand 6 - Maand 7 - Maand 8 - Maand 9 - Maand 10 - Maand 11 - Maand 12 - - - - - - - {0}bis - - - - - {0}bis - - - - - {0}b - - - - - - - - zi - chou - yin - mao - chen - si - wu - wei - shen - you - xu - hai - - - - - - - begin van de lente - regenwater - insecten ontwaken - lentepunt - licht en helder - begin van de zomer - zomerpunt - warm - heet - begin van de herfst - einde van de hitte - witte dauw - herfstpunt - koude dauw - eerste vorst - begin van de winter - lichte sneeuw - zware sneeuw - winterpunt - - - - - - - jia-zi - yi-chou - bing-yin - ding-mao - wu-chen - ji-si - geng-wu - xin-wei - ren-shen - gui-you - jia-xu - yi-hai - bing-zi - ding-chou - wu-yin - ji-mao - geng-chen - xin-si - ren-wu - gui-wei - jia-shen - yi-you - bing-xu - ding-hai - wu-zi - ji-chou - geng-yin - xin-mao - ren-chen - gui-si - jia-wu - yi-wei - bing-shen - ding-you - wu-xu - ji-hai - geng-zi - xin-chou - ren-yin - gui-mao - jia-chen - yi-si - bing-wu - ding-wei - wu-shen - ji-you - geng-xu - xin-hai - ren-zi - gui-chou - jia-yin - yi-mao - bing-chen - ding-si - wu-wu - ji-wei - geng-shen - xin-you - ren-xu - gui-hai - - - - - - - Rat - Os - Tijger - Konijn - Draak - Slang - Paard - Geit - Aap - Haan - Hond - Varken - - - - - - - - EEEE d MMMM U - - - - - d MMMM U - - - - - d MMM U - - - - - dd-MM-yy - - - + + + ERA0 + ERA1 + + + ERA0 + ERA1 + + + ERA0 + ERA1 + + + + + ccc + + @@ -2421,26 +2252,27 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1} {0} - {1} {0} + {1} {0} - {1} {0} + {1} {0} - {1} {0} + {1} {0} - d + d + ccc E d y G MMM y G @@ -2452,30 +2284,30 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss - L - d-M + L + d-M E d-M - LLL - d MMM - E d MMM - d MMMM + LLL + d MMM + E d MMM + d MMMM mm:ss - y G - y G - M-y GGGGG + y G + y G + M-y GGGGG d-M-y GGGGG E d-M-y GGGGG - MMM y G + MMM y G d MMM y G E d MMM y G - MMMM y G - QQQ y G - QQQQ y G + MMMM y G + QQQ y G + QQQQ y G - {0} - {1} + {0} - {1} - d–d + d–d h a – h a @@ -2510,64 +2342,64 @@ For terms of use, see http://www.unicode.org/copyright.html HH–HH v - M–M + M–M - dd-MM – dd-MM - dd-MM – dd-MM + dd-MM – dd-MM + dd-MM – dd-MM - E dd-MM – E dd-MM - E dd-MM – E dd-MM + E dd-MM – E dd-MM + E dd-MM – E dd-MM - MMM–MMM + MMM–MMM - d–d MMM - d MMM – d MMM + d–d MMM + d MMM – d MMM - E d – E d MMM - E d MMM – E d MMM + E d – E d MMM + E d MMM – E d MMM - MMMM–MMMM + MMMM–MMMM - y–y G + y–y G - MM-y – MM-y G - MM-y – MM-y G + MM-y – MM-y G + MM-y – MM-y G - dd-MM-y – dd-MM-y G - dd-MM-y – dd-MM-y G - dd-MM-y – dd-MM-y G + dd-MM-y – dd-MM-y G + dd-MM-y – dd-MM-y G + dd-MM-y – dd-MM-y G - E dd-MM-y – E dd-MM-y G - E dd-MM-y – E dd-MM-y G - E dd-MM-y – E dd-MM-y G + E dd-MM-y – E dd-MM-y G + E dd-MM-y – E dd-MM-y G + E dd-MM-y – E dd-MM-y G - MMM–MMM y G - MMM y – MMM y G + MMM–MMM y G + MMM y – MMM y G - d–d MMM y G - d MMM – d MMM y G - d MMM y – d MMM y G + d–d MMM y G + d MMM – d MMM y G + d MMM y – d MMM y G - E d – E d MMM y G - E d MMM – E d MMM y G - E d MMM y – E d MMM y G + E d – E d MMM y G + E d MMM – E d MMM y G + E d MMM y – E d MMM y G - MMMM–MMMM y G - MMMM y – MMMM y G + MMMM–MMMM y G + MMMM y – MMMM y G @@ -2620,18 +2452,18 @@ For terms of use, see http://www.unicode.org/copyright.html - Jan. - Feb. - Mrt. - Apr. - Mei - Jun. - Jul. - Aug. - Sep. - Okt. - Nov. - Dec. + jan. + feb. + mrt. + apr. + mei + jun. + jul. + aug. + sep. + okt. + nov. + dec. J @@ -2648,18 +2480,18 @@ For terms of use, see http://www.unicode.org/copyright.html D - Januari - Februari - Maart - April - Mei - Juni - Juli - Augustus - September - Oktober - November - December + januari + februari + maart + april + mei + juni + juli + augustus + september + oktober + november + december @@ -2704,13 +2536,13 @@ For terms of use, see http://www.unicode.org/copyright.html - Zo - Ma - Di - Wo - Do - Vr - Za + zo + ma + di + wo + do + vr + za Z @@ -2722,22 +2554,22 @@ For terms of use, see http://www.unicode.org/copyright.html Z - Zo - Ma - Di - Wo - Do - Vr - Za + zo + ma + di + wo + do + vr + za - Zondag - Maandag - Dinsdag - Woensdag - Donderdag - Vrijdag - Zaterdag + zondag + maandag + dinsdag + woensdag + donderdag + vrijdag + zaterdag @@ -2786,36 +2618,69 @@ For terms of use, see http://www.unicode.org/copyright.html - 12 uur ‘s middags + middernacht + a.m. + p.m. + ochtend + middag + avond + nacht + middernacht a.m. - n p.m. + ochtend + middag + avond + nacht + middernacht a.m. - 12 uur ‘s middags p.m. + ochtend + middag + avond + nacht - a.m. - p.m. + middernacht + a.m. + p.m. + ochtend + middag + avond + nacht + + + middernacht + a.m. + p.m. + ochtend + middag + avond + nacht - voormiddag - p.m. + middernacht + a.m. + p.m. + ochtend + middag + avond + nacht voor Christus - vóór gewone jaartelling - na Christus - gewone jaartelling + vóór gewone jaartelling + na Christus + gewone jaartelling v.Chr. @@ -2897,7 +2762,7 @@ For terms of use, see http://www.unicode.org/copyright.html d - ccc + ccc E d E h:mm a E HH:mm @@ -3415,6 +3280,246 @@ For terms of use, see http://www.unicode.org/copyright.html + + + Taika (645–650) + Hakuchi (650–671) + Hakuhō (672–686) + Shuchō (686–701) + Taihō (701–704) + Keiun (704–708) + Wadō (708–715) + Reiki (715–717) + Yōrō (717–724) + Jinki (724–729) + Tenpyō (729–749) + Tenpyō-kampō (749-749) + Tenpyō-shōhō (749-757) + Tenpyō-hōji (757-765) + Tenpyō-jingo (765-767) + Jingo-keiun (767-770) + Hōki (770–780) + Ten-ō (781-782) + Enryaku (782–806) + Daidō (806–810) + Kōnin (810–824) + Tenchō (824–834) + Jōwa (834–848) + Kajō (848–851) + Ninju (851–854) + Saikō (854–857) + Ten-an (857-859) + Jōgan (859–877) + Gangyō (877–885) + Ninna (885–889) + Kanpyō (889–898) + Shōtai (898–901) + Engi (901–923) + Enchō (923–931) + Jōhei (931–938) + Tengyō (938–947) + Tenryaku (947–957) + Tentoku (957–961) + Ōwa (961–964) + Kōhō (964–968) + Anna (968–970) + Tenroku (970–973) + Ten’en (973–976) + Jōgen (976–978) + Tengen (978–983) + Eikan (983–985) + Kanna (985–987) + Eien (987–989) + Eiso (989–990) + Shōryaku (990–995) + Chōtoku (995–999) + Chōhō (999–1004) + Kankō (1004–1012) + Chōwa (1012–1017) + Kannin (1017–1021) + Jian (1021–1024) + Manju (1024–1028) + Chōgen (1028–1037) + Chōryaku (1037–1040) + Chōkyū (1040–1044) + Kantoku (1044–1046) + Eishō (1046–1053) + Tengi (1053–1058) + Kōhei (1058–1065) + Jiryaku (1065–1069) + Enkyū (1069–1074) + Shōho (1074–1077) + Shōryaku (1077–1081) + Eihō (1081–1084) + Ōtoku (1084–1087) + Kanji (1087–1094) + Kaho (1094–1096) + Eichō (1096–1097) + Shōtoku (1097–1099) + Kōwa (1099–1104) + Chōji (1104–1106) + Kashō (1106–1108) + Tennin (1108–1110) + Ten-ei (1110-1113) + Eikyū (1113–1118) + Gen-ei (1118-1120) + Hoan (1120–1124) + Tenji (1124–1126) + Daiji (1126–1131) + Tenshō (1131–1132) + Chōshō (1132–1135) + Hoen (1135–1141) + Eiji (1141–1142) + Kōji (1142–1144) + Ten’yō (1144–1145) + Kyūan (1145–1151) + Ninpei (1151–1154) + Kyūju (1154–1156) + Hogen (1156–1159) + Heiji (1159–1160) + Eiryaku (1160–1161) + Ōho (1161–1163) + Chōkan (1163–1165) + Eiman (1165–1166) + Nin’an (1166–1169) + Kaō (1169–1171) + Shōan (1171–1175) + Angen (1175–1177) + Jishō (1177–1181) + Yōwa (1181–1182) + Juei (1182–1184) + Genryaku (1184–1185) + Bunji (1185–1190) + Kenkyū (1190–1199) + Shōji (1199–1201) + Kennin (1201–1204) + Genkyū (1204–1206) + Ken-ei (1206-1207) + Shōgen (1207–1211) + Kenryaku (1211–1213) + Kenpō (1213–1219) + Shōkyū (1219–1222) + Jōō (1222–1224) + Gennin (1224–1225) + Karoku (1225–1227) + Antei (1227–1229) + Kanki (1229–1232) + Jōei (1232–1233) + Tempuku (1233–1234) + Bunryaku (1234–1235) + Katei (1235–1238) + Ryakunin (1238–1239) + En-ō (1239-1240) + Ninji (1240–1243) + Kangen (1243–1247) + Hōji (1247–1249) + Kenchō (1249–1256) + Kōgen (1256–1257) + Shōka (1257–1259) + Shōgen (1259–1260) + Bun-ō (1260-1261) + Kōchō (1261–1264) + Bun-ei (1264-1275) + Kenji (1275–1278) + Kōan (1278–1288) + Shōō (1288–1293) + Einin (1293–1299) + Shōan (1299–1302) + Kengen (1302–1303) + Kagen (1303–1306) + Tokuji (1306–1308) + Enkei (1308–1311) + Ōchō (1311–1312) + Shōwa (1312–1317) + Bunpō (1317–1319) + Genō (1319–1321) + Genkyō (1321–1324) + Shōchū (1324–1326) + Kareki (1326–1329) + Gentoku (1329–1331) + Genkō (1331–1334) + Kemmu (1334–1336) + Engen (1336–1340) + Kōkoku (1340–1346) + Shōhei (1346–1370) + Kentoku (1370–1372) + Bunchū (1372–1375) + Tenju (1375–1379) + Kōryaku (1379–1381) + Kōwa (1381–1384) + Genchū (1384–1392) + Meitoku (1384–1387) + Kakei (1387–1389) + Kōō (1389–1390) + Meitoku (1390–1394) + Ōei (1394–1428) + Shōchō (1428–1429) + Eikyō (1429–1441) + Kakitsu (1441–1444) + Bun-an (1444-1449) + Hōtoku (1449–1452) + Kyōtoku (1452–1455) + Kōshō (1455–1457) + Chōroku (1457–1460) + Kanshō (1460–1466) + Bunshō (1466–1467) + Ōnin (1467–1469) + Bunmei (1469–1487) + Chōkyō (1487–1489) + Entoku (1489–1492) + Meiō (1492–1501) + Bunki (1501–1504) + Eishō (1504–1521) + Taiei (1521–1528) + Kyōroku (1528–1532) + Tenmon (1532–1555) + Kōji (1555–1558) + Eiroku (1558–1570) + Genki (1570–1573) + Tenshō (1573–1592) + Bunroku (1592–1596) + Keichō (1596–1615) + Genwa (1615–1624) + Kan-ei (1624-1644) + Shōho (1644–1648) + Keian (1648–1652) + Shōō (1652–1655) + Meiryaku (1655–1658) + Manji (1658–1661) + Kanbun (1661–1673) + Enpō (1673–1681) + Tenwa (1681–1684) + Jōkyō (1684–1688) + Genroku (1688–1704) + Hōei (1704–1711) + Shōtoku (1711–1716) + Kyōhō (1716–1736) + Genbun (1736–1741) + Kanpō (1741–1744) + Enkyō (1744–1748) + Kan-en (1748-1751) + Hōryaku (1751–1764) + Meiwa (1764–1772) + An-ei (1772-1781) + Tenmei (1781–1789) + Kansei (1789–1801) + Kyōwa (1801–1804) + Bunka (1804–1818) + Bunsei (1818–1830) + Tenpō (1830–1844) + Kōka (1844–1848) + Kaei (1848–1854) + Ansei (1854–1860) + Man-en (1860-1861) + Bunkyū (1861–1864) + Genji (1864–1865) + Keiō (1865–1868) + Meiji + Taishō + Shōwa + Heisei + + @@ -3589,7 +3694,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Before R.O.C. + voor R.O.C. Minguo @@ -3647,10 +3752,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Tijdperk + tijdperk - Jaar + jaar vorig jaar dit jaar volgend jaar @@ -3664,62 +3769,77 @@ For terms of use, see http://www.unicode.org/copyright.html - jr. + jr. + vorig jaar + dit jaar + volgend jaar - over {0} jaar - over {0} jaar + over {0} jaar + over {0} jaar - {0} jaar geleden - {0} jaar geleden + {0} jaar geleden + {0} jaar geleden - jr. + jr. + vorig jaar + dit jaar + volgend jaar - over {0} jaar - over {0} jaar + over {0} jaar + over {0} jaar - {0} jaar geleden - {0} jaar geleden + {0} jaar geleden + {0} jaar geleden - Kwartaal + kwartaal + vorig kwartaal + dit kwartaal + volgend kwartaal - over {0} kwartaal - over {0} kwartalen + over {0} kwartaal + over {0} kwartalen - {0} kwartaal geleden - {0} kwartalen geleden + {0} kwartaal geleden + {0} kwartalen geleden - kwartaal + kwartaal + vorig kwartaal + dit kwartaal + volgend kwartaal - over {0} kwartaal - over {0} kwartalen + over {0} kwartaal + over {0} kwartalen - {0} kwartaal geleden - {0} kwartalen geleden + {0} kwartaal geleden + {0} kwartalen geleden - kwartaal + kwartaal + vorig kwartaal + dit kwartaal + volgend kwartaal - over {0} kwartaal - over {0} kwartalen + over {0} kwartaal + over {0} kwartalen - {0} kwartaal geleden - {0} kwartalen geleden + {0} kwartaal geleden + {0} kwartalen geleden - Maand + maand vorige maand deze maand volgende maand @@ -3733,29 +3853,35 @@ For terms of use, see http://www.unicode.org/copyright.html - mnd + mnd + vorige maand + deze maand + volgende maand - over {0} maand - over {0} maanden + over {0} maand + over {0} maanden - {0} maand geleden - {0} maanden geleden + {0} maand geleden + {0} maanden geleden - mnd + mnd + vorige maand + deze maand + volgende maand - over {0} maand - over {0} maanden + over {0} maand + over {0} maanden - {0} maand geleden - {0} maanden geleden + {0} maand geleden + {0} maanden geleden - Week + week vorige week deze week volgende week @@ -3769,29 +3895,35 @@ For terms of use, see http://www.unicode.org/copyright.html - wk + wk + vorige week + deze week + volgende week - over {0} week - over {0} weken + over {0} week + over {0} weken - {0} week geleden - {0} weken geleden + {0} week geleden + {0} weken geleden - wk + wk + vorige week + deze week + volgende week - over {0} week - over {0} weken + over {0} week + over {0} weken - {0} week geleden - {0} weken geleden + {0} week geleden + {0} weken geleden - Dag + dag eergisteren gisteren vandaag @@ -3807,7 +3939,12 @@ For terms of use, see http://www.unicode.org/copyright.html - dag + dag + eergisteren + gisteren + vandaag + morgen + overmorgen over {0} dag over {0} dgn @@ -3818,7 +3955,12 @@ For terms of use, see http://www.unicode.org/copyright.html - dag + dag + eergisteren + gisteren + vandaag + morgen + overmorgen over {0} dag over {0} dgn @@ -3829,7 +3971,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Dag van de week + dag van de week afgelopen zondag @@ -3837,14 +3979,14 @@ For terms of use, see http://www.unicode.org/copyright.html volgende week zondag - afgelopen zon. - deze zon. - volgende week zon. + afgelopen zon. + deze zon. + volgende week zon. - afgelopen zo - deze zo - volgende week zo + afgelopen zo + deze zo + volgende week zo afgelopen maandag @@ -3852,14 +3994,14 @@ For terms of use, see http://www.unicode.org/copyright.html volgende week maandag - afgelopen maan. - deze maan. - volgende week maan. + afgelopen maan. + deze maan. + volgende week maan. - afgelopen ma - deze ma - volgende week ma + afgelopen ma + deze ma + volgende week ma afgelopen dinsdag @@ -3867,14 +4009,14 @@ For terms of use, see http://www.unicode.org/copyright.html volgende week dinsdag - afgelopen dins. - deze dins. - volgende week dins. + afgelopen dins. + deze dins. + volgende week dins. - afgelopen di - deze di - volgende week di + afgelopen di + deze di + volgende week di afgelopen woensdag @@ -3882,14 +4024,14 @@ For terms of use, see http://www.unicode.org/copyright.html volgende week woensdag - afgelopen woens. - deze woens. - volgende week woens. + afgelopen woens. + deze woens. + volgende week woens. - afgelopen wo - deze wo - volgende week wo + afgelopen wo + deze wo + volgende week wo afgelopen donderdag @@ -3897,14 +4039,14 @@ For terms of use, see http://www.unicode.org/copyright.html volgende week donderdag - afgelopen donder. - deze donder. - volgende week donder. + afgelopen donder. + deze donder. + volgende week donder. - afgelopen do - deze do - volgende week do + afgelopen do + deze do + volgende week do afgelopen vrijdag @@ -3912,14 +4054,14 @@ For terms of use, see http://www.unicode.org/copyright.html volgende week vrijdag - afgelopen vrij. - deze vrij. - volgende week vrij. + afgelopen vrij. + deze vrij. + volgende week vrij. - afgelopen vr - deze vr - volgende week vr + afgelopen vr + deze vr + volgende week vr afgelopen zaterdag @@ -3927,14 +4069,14 @@ For terms of use, see http://www.unicode.org/copyright.html volgende week zaterdag - afgelopen zater. - deze zater. - volgende week zater. + afgelopen zater. + deze zater. + volgende week zater. - afgelopen za - deze za - volgende week za + afgelopen za + deze za + volgende week za a.m./p.m. @@ -3951,7 +4093,7 @@ For terms of use, see http://www.unicode.org/copyright.html - uur + uur over {0} uur over {0} uur @@ -3962,7 +4104,7 @@ For terms of use, see http://www.unicode.org/copyright.html - u + u over {0} uur over {0} uur @@ -3973,7 +4115,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Minuut + minuut over {0} minuut over {0} minuten @@ -3984,7 +4126,7 @@ For terms of use, see http://www.unicode.org/copyright.html - min. + min. over {0} min. over {0} min. @@ -3995,7 +4137,7 @@ For terms of use, see http://www.unicode.org/copyright.html - m + m over {0} min. over {0} min. @@ -4006,7 +4148,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Seconde + seconde nu over {0} seconde @@ -4018,7 +4160,8 @@ For terms of use, see http://www.unicode.org/copyright.html - sec. + sec. + nu over {0} sec. over {0} sec. @@ -4029,7 +4172,8 @@ For terms of use, see http://www.unicode.org/copyright.html - s + s + nu over {0} sec. over {0} sec. @@ -4040,34 +4184,34 @@ For terms of use, see http://www.unicode.org/copyright.html - Zone + tijdzone - +HH:mm;-HH:mm - GMT{0} - GMT - {0}-tijd + +HH:mm;-HH:mm + GMT{0} + GMT + {0}-tijd zomertijd {0} standaardtijd {0} - {1} ({0}) + {1} ({0}) onbekende stad - Andorra + Andorra - Dubai + Dubai - Kabul + Kabul - Antigua + Antigua - Anguilla + Anguilla Tirana @@ -4076,64 +4220,64 @@ For terms of use, see http://www.unicode.org/copyright.html Jerevan - Luanda + Luanda - Rothera + Rothera - Palmer + Palmer - Troll + Troll - Syowa + Syowa - Mawson + Mawson - Davis + Davis - Vostok + Vostok - Casey + Casey Dumont d’Urville - McMurdo + McMurdo Río Gallegos - Mendoza + Mendoza - San Juan + San Juan - Ushuaia + Ushuaia - La Rioja + La Rioja - San Luis + San Luis - Catamarca + Catamarca - Salta + Salta - Jujuy + Jujuy Tucumán @@ -4142,244 +4286,244 @@ For terms of use, see http://www.unicode.org/copyright.html Córdoba - Buenos Aires + Buenos Aires - Pago Pago + Pago Pago Wenen - Perth + Perth - Eucla + Eucla - Darwin + Darwin - Adelaide + Adelaide - Broken Hill + Broken Hill - Currie + Currie - Melbourne + Melbourne - Hobart + Hobart - Lindeman + Lindeman - Sydney + Sydney - Brisbane + Brisbane - Macquarie + Macquarie - Lord Howe + Lord Howe - Aruba + Aruba - Mariehamn + Mariehamn Bakoe - Sarajevo + Sarajevo - Barbados + Barbados - Dhaka + Dhaka Brussel - Ouagadougou + Ouagadougou - Sofia + Sofia Bahrein - Bujumbura + Bujumbura - Porto-Novo + Porto-Novo Saint-Barthélemy - Bermuda + Bermuda - Brunei + Brunei - La Paz + La Paz - Kralendijk + Kralendijk - Eirunepe + Eirunepe - Rio Branco + Rio Branco Porto Velho - Boa Vista + Boa Vista - Manaus + Manaus Cuiabá - Santarem + Santarem - Campo Grande + Campo Grande Belém - Araguaina + Araguaina São Paulo - Bahia + Bahia - Fortaleza + Fortaleza Maceió - Recife + Recife - Noronha + Noronha - Nassau + Nassau - Thimphu + Thimphu - Gaborone + Gaborone - Minsk + Minsk - Belize + Belize - Dawson + Dawson - Whitehorse + Whitehorse - Inuvik + Inuvik - Vancouver + Vancouver - Dawson Creek + Dawson Creek - Creston + Creston - Yellowknife + Yellowknife - Edmonton + Edmonton - Swift Current + Swift Current - Cambridge Bay + Cambridge Bay - Regina + Regina - Winnipeg + Winnipeg - Resolute + Resolute - Rainy River + Rainy River - Rankin Inlet + Rankin Inlet Atikokan - Thunder Bay + Thunder Bay - Nipigon + Nipigon - Toronto + Toronto - Iqaluit + Iqaluit - Pangnirtung + Pangnirtung - Moncton + Moncton - Halifax + Halifax - Goose Bay + Goose Bay - Glace Bay + Glace Bay - Blanc-Sablon + Blanc-Sablon St. John’s @@ -4388,37 +4532,37 @@ For terms of use, see http://www.unicode.org/copyright.html Cocoseilanden - Kinshasa + Kinshasa - Lubumbashi + Lubumbashi - Bangui + Bangui - Brazzaville + Brazzaville Zürich - Abidjan + Abidjan - Rarotonga + Rarotonga Paaseiland - Santiago + Santiago - Douala + Douala - Urumqi + Urumqi Sjanghai @@ -4427,10 +4571,10 @@ For terms of use, see http://www.unicode.org/copyright.html Bogota - Costa Rica + Costa Rica - Havana + Havana Kaapverdië @@ -4442,46 +4586,46 @@ For terms of use, see http://www.unicode.org/copyright.html Christmaseiland - Nicosia + Nicosia Praag - Busingen + Busingen Berlijn - Djibouti + Djibouti Kopenhagen - Dominica + Dominica - Santo Domingo + Santo Domingo - Algiers + Algiers Galapagos - Guayaquil + Guayaquil - Tallinn + Tallinn Caïro - El Aaiun + El Aaiun Asmara @@ -4490,22 +4634,22 @@ For terms of use, see http://www.unicode.org/copyright.html Canarische Eilanden - Ceuta + Ceuta - Madrid + Madrid Addis Abeba - Helsinki + Helsinki - Fiji + Fiji - Stanley + Stanley Chuuk @@ -4514,7 +4658,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pohnpei - Kosrae + Kosrae Faeröer @@ -4523,34 +4667,34 @@ For terms of use, see http://www.unicode.org/copyright.html Parijs - Libreville + Libreville - Britse zomertijd + Britse zomertijd Londen - Grenada + Grenada - Tbilisi + Tbilisi - Cayenne + Cayenne - Guernsey + Guernsey - Accra + Accra - Gibraltar + Gibraltar - Thule + Thule Nuuk @@ -4559,19 +4703,19 @@ For terms of use, see http://www.unicode.org/copyright.html Ittoqqortoormiit - Danmarkshavn + Danmarkshavn - Banjul + Banjul - Conakry + Conakry - Guadeloupe + Guadeloupe - Malabo + Malabo Athene @@ -4580,55 +4724,55 @@ For terms of use, see http://www.unicode.org/copyright.html Zuid-Georgia - Guatemala + Guatemala - Guam + Guam - Bissau + Bissau - Guyana + Guyana Hongkong - Tegucigalpa + Tegucigalpa - Zagreb + Zagreb - Port-au-Prince + Port-au-Prince Boedapest - Jakarta + Jakarta - Pontianak + Pontianak - Makassar + Makassar - Jayapura + Jayapura - Ierse zomertijd + Ierse zomertijd - Dublin + Dublin Jeruzalem - Isle of Man + Isle of Man Calcutta @@ -4643,25 +4787,25 @@ For terms of use, see http://www.unicode.org/copyright.html Teheran - Reykjavik + Reykjavik - Rome + Rome - Jersey + Jersey - Jamaica + Jamaica - Amman + Amman Tokio - Nairobi + Nairobi Bisjkek @@ -4673,46 +4817,46 @@ For terms of use, see http://www.unicode.org/copyright.html Enderbury - Kiritimati + Kiritimati - Tarawa + Tarawa - Comoro + Comoro St. Kitts - Pyongyang + Pyongyang - Seoul + Seoul Koeweit - Cayman + Cayman - Aqtau + Aqtau - Oral + Oral Aqtöbe - Qyzylorda + Qyzylorda Alma-Ata - Vientiane + Vientiane Beiroet @@ -4721,193 +4865,193 @@ For terms of use, see http://www.unicode.org/copyright.html St. Lucia - Vaduz + Vaduz - Colombo + Colombo - Monrovia + Monrovia - Maseru + Maseru - Vilnius + Vilnius Luxemburg - Riga + Riga - Tripoli + Tripoli - Casablanca + Casablanca - Monaco + Monaco - Chisinau + Chisinau - Podgorica + Podgorica - Marigot + Marigot - Antananarivo + Antananarivo - Kwajalein + Kwajalein - Majuro + Majuro - Skopje + Skopje - Bamako + Bamako - Rangoon + Rangoon - Hovd + Hovd - Ulaanbaatar + Ulaanbaatar - Choibalsan + Choibalsan - Macau + Macau - Saipan + Saipan - Martinique + Martinique - Nouakchott + Nouakchott - Montserrat + Montserrat - Malta + Malta - Mauritius + Mauritius Maldiven - Blantyre + Blantyre - Tijuana + Tijuana - Santa Isabel + Santa Isabel - Hermosillo + Hermosillo Mazatlán - Chihuahua + Chihuahua Bahía de Banderas - Ojinaga + Ojinaga - Monterrey + Monterrey Mexico-Stad - Matamoros + Matamoros Mérida - Cancun + Cancun - Kuala Lumpur + Kuala Lumpur - Kuching + Kuching - Maputo + Maputo - Windhoek + Windhoek Nouméa - Niamey + Niamey - Norfolk + Norfolk - Lagos + Lagos - Managua + Managua - Amsterdam + Amsterdam - Oslo + Oslo Kathmandu - Nauru + Nauru - Niue + Niue - Chatham + Chatham - Auckland + Auckland - Muscat + Muscat - Panama + Panama - Lima + Lima - Tahiti + Tahiti Marquesaseilanden @@ -4916,49 +5060,52 @@ For terms of use, see http://www.unicode.org/copyright.html Îles Gambier - Port Moresby + Port Moresby + + + Bougainville Manilla - Karachi + Karachi Warschau - Miquelon + Miquelon - Pitcairn + Pitcairn - Puerto Rico + Puerto Rico - Gaza + Gaza - Hebron + Hebron Azoren - Madeira + Madeira Lissabon - Palau + Palau Asunción - Qatar + Qatar Réunion @@ -4970,10 +5117,10 @@ For terms of use, see http://www.unicode.org/copyright.html Belgrado - Kaliningrad + Kaliningrad - Simferopol + Simferopol Moskou @@ -4982,19 +5129,19 @@ For terms of use, see http://www.unicode.org/copyright.html Wolgograd - Samara + Samara Jekaterinenburg - Omsk + Omsk - Novosibirsk + Novosibirsk - Novokuznetsk + Novokuznetsk Krasnojarsk @@ -5002,38 +5149,44 @@ For terms of use, see http://www.unicode.org/copyright.html Irkoetsk + + Chita + Jakoetsk - Vladivostok + Vladivostok - Khandyga + Khandyga Sachalin - Ust-Nera + Ust-Nera - Magadan + Magadan + + + Srednekolymsk Kamtsjatka - Anadyr + Anadyr - Kigali + Kigali Riyad - Guadalcanal + Guadalcanal Mahé @@ -5042,40 +5195,40 @@ For terms of use, see http://www.unicode.org/copyright.html Khartoem - Stockholm + Stockholm - Singapore + Singapore Sint-Helena - Ljubljana + Ljubljana - Longyearbyen + Longyearbyen - Bratislava + Bratislava - Freetown + Freetown - San Marino + San Marino - Dakar + Dakar - Mogadishu + Mogadishu - Paramaribo + Paramaribo - Juba + Juba Sao Tomé @@ -5087,115 +5240,115 @@ For terms of use, see http://www.unicode.org/copyright.html Beneden Prinsen Kwartier - Damascus + Damascus - Mbabane + Mbabane - Grand Turk + Grand Turk - Ndjamena + Ndjamena - Kerguelen + Kerguelen Lomé - Bangkok + Bangkok Doesjanbe - Fakaofo + Fakaofo - Dili + Dili Asjchabad - Tunis + Tunis - Tongatapu + Tongatapu Istanboel - Port of Spain + Port of Spain - Funafuti + Funafuti - Taipei + Taipei - Dar es Salaam + Dar es Salaam Oezjhorod - Kiev + Kiev Zaporizja - Kampala + Kampala - Midway + Midway - Johnston + Johnston - Wake + Wake - Adak + Adak - Nome + Nome - Honolulu + Honolulu - Anchorage + Anchorage - Yakutat + Yakutat - Sitka + Sitka - Juneau + Juneau - Metlakatla + Metlakatla - Los Angeles + Los Angeles - Boise + Boise - Phoenix + Phoenix - Denver + Denver Beulah, Noord-Dakota @@ -5207,10 +5360,10 @@ For terms of use, see http://www.unicode.org/copyright.html Center, Noord-Dakota - Chicago + Chicago - Menominee + Menominee Vincennes, Indiana @@ -5231,10 +5384,10 @@ For terms of use, see http://www.unicode.org/copyright.html Marengo, Indiana - Indianapolis + Indianapolis - Louisville + Louisville Vevay, Indiana @@ -5243,16 +5396,16 @@ For terms of use, see http://www.unicode.org/copyright.html Monticello, Kentucky - Detroit + Detroit - New York + New York - Montevideo + Montevideo - Samarkand + Samarkand Tasjkent @@ -5264,10 +5417,10 @@ For terms of use, see http://www.unicode.org/copyright.html St. Vincent - Caracas + Caracas - Tortola + Tortola St. Thomas @@ -5276,28 +5429,28 @@ For terms of use, see http://www.unicode.org/copyright.html Ho Chi Minhstad - Efate + Efate - Wallis + Wallis - Apia + Apia - Aden + Aden - Mayotte + Mayotte - Johannesburg + Johannesburg - Lusaka + Lusaka - Harare + Harare @@ -5313,24 +5466,24 @@ For terms of use, see http://www.unicode.org/copyright.html - Centraal-Afrikaanse tijd + Centraal-Afrikaanse tijd - Oost-Afrikaanse tijd + Oost-Afrikaanse tijd - Zuid-Afrikaanse tijd + Zuid-Afrikaanse tijd - West-Afrikaanse tijd - West-Afrikaanse standaardtijd - West-Afrikaanse zomertijd + West-Afrikaanse tijd + West-Afrikaanse standaardtijd + West-Afrikaanse zomertijd @@ -5391,9 +5544,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Apia-tijd - Apia-standaardtijd - Apia-zomertijd + Apia-tijd + Apia-standaardtijd + Apia-zomertijd @@ -5412,9 +5565,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Arabische tijd - Arabische standaardtijd - Arabische zomertijd + Arabische tijd + Arabische standaardtijd + Arabische zomertijd @@ -5433,9 +5586,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Armeense tijd - Armeense standaardtijd - Armeense zomertijd + Armeense tijd + Armeense standaardtijd + Armeense zomertijd @@ -5475,16 +5628,16 @@ For terms of use, see http://www.unicode.org/copyright.html - Azerbeidzjaanse tijd - Azerbeidzjaanse standaardtijd - Azerbeidzjaanse zomertijd + Azerbeidzjaanse tijd + Azerbeidzjaanse standaardtijd + Azerbeidzjaanse zomertijd - Azoren-tijd - Azoren-standaardtijd - Azoren-zomertijd + Azoren-tijd + Azoren-standaardtijd + Azoren-zomertijd @@ -5513,14 +5666,14 @@ For terms of use, see http://www.unicode.org/copyright.html - Bruneise tijd + Bruneise tijd - Kaapverdische tijd - Kaapverdische standaardtijd - Kaapverdische zomertijd + Kaapverdische tijd + Kaapverdische standaardtijd + Kaapverdische zomertijd @@ -5530,14 +5683,14 @@ For terms of use, see http://www.unicode.org/copyright.html - Chamorro-tijd + Chamorro-tijd - Chatham tijd - Chatham standaardtijd - Chatham zomertijd + Chatham-tijd + Chatham-standaardtijd + Chatham-zomertijd @@ -5556,19 +5709,19 @@ For terms of use, see http://www.unicode.org/copyright.html - Tsjojbalsan tijd - Tsjojbalsan standaardtijd - Tsjojbalsan zomertijd + Tsjojbalsan-tijd + Tsjojbalsan-standaardtijd + Tsjojbalsan-zomertijd - Christmaseilandse tijd + Christmaseilandse tijd - Cocoseilandse tijd + Cocoseilandse tijd @@ -5580,31 +5733,31 @@ For terms of use, see http://www.unicode.org/copyright.html - Cookeilandse tijd - Cookeilandse standaardtijd - Cookeilandse halve zomertijd + Cookeilandse tijd + Cookeilandse standaardtijd + Cookeilandse halve zomertijd - Cubaanse tijd - Cubaanse standaardtijd - Cubaanse zomertijd + Cubaanse tijd + Cubaanse standaardtijd + Cubaanse zomertijd - Davis tijd + Davis-tijd - Dumont-d’Urville tijd + Dumont-d’Urville-tijd - Oost-Timorese tijd + Oost-Timorese tijd @@ -5645,14 +5798,14 @@ For terms of use, see http://www.unicode.org/copyright.html - Verder-oostelijk-Europese tijd + Verder-oostelijk-Europese tijd - West-Europese tijd - West-Europese standaardtijd - West-Europese zomertijd + West-Europese tijd + West-Europese standaardtijd + West-Europese zomertijd WET @@ -5669,9 +5822,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Fijische tijd - Fijische standaardtijd - Fijische zomertijd + Fijische tijd + Fijische standaardtijd + Fijische zomertijd @@ -5681,7 +5834,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Franse zuidelijke en Antarctische tijd + Franse zuidelijke en Antarctische tijd @@ -5691,19 +5844,19 @@ For terms of use, see http://www.unicode.org/copyright.html - Gambiereilandse tijd + Gambiereilandse tijd - Georgische tijd - Georgische standaardtijd - Georgische zomertijd + Georgische tijd + Georgische standaardtijd + Georgische zomertijd - Gilberteilandse tijd + Gilberteilandse tijd @@ -5713,16 +5866,16 @@ For terms of use, see http://www.unicode.org/copyright.html - Oost-Groenlandse tijd - Oost-Groenlandse standaardtijd - Oost-Groenlandse zomertijd + Oost-Groenlandse tijd + Oost-Groenlandse standaardtijd + Oost-Groenlandse zomertijd - West-Groenlandse tijd - West-Groenlandse standaardtijd - West-Groenlandse zomertijd + West-Groenlandse tijd + West-Groenlandse standaardtijd + West-Groenlandse zomertijd @@ -5732,7 +5885,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Golf standaardtijd + Golf-standaardtijd @@ -5742,9 +5895,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Hawaii-Aleoetische tijd - Hawaii-Aleoetische standaardtijd - Hawaii-Aleoetische zomertijd + Hawaii-Aleoetische tijd + Hawaii-Aleoetische standaardtijd + Hawaii-Aleoetische zomertijd @@ -5756,9 +5909,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Hovd tijd - Hovd standaardtijd - Hovd zomertijd + Hovd-tijd + Hovd-standaardtijd + Hovd-zomertijd @@ -5768,27 +5921,27 @@ For terms of use, see http://www.unicode.org/copyright.html - Indische Oceaan-tijd + Indische Oceaan-tijd - Indochinese tijd + Indochinese tijd - Centraal-Indonesische tijd + Centraal-Indonesische tijd - Oost-Indonesische tijd + Oost-Indonesische tijd - West-Indonesische tijd + West-Indonesische tijd @@ -5828,12 +5981,12 @@ For terms of use, see http://www.unicode.org/copyright.html - Oost-Kazachse tijd + Oost-Kazachse tijd - West-Kazachse tijd + West-Kazachse tijd @@ -5845,7 +5998,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Kosraese tijd + Kosraese tijd @@ -5857,7 +6010,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Kirgizische tijd + Kirgizische tijd @@ -5867,7 +6020,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Line-eilandse tijd + Line-eilandse tijd @@ -5898,7 +6051,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Maleisische tijd + Maleisische tijd @@ -5908,45 +6061,45 @@ For terms of use, see http://www.unicode.org/copyright.html - Marquesaseilandse tijd + Marquesaseilandse tijd - Marshalleilandse tijd + Marshalleilandse tijd - Mauritiaanse tijd - Mauritiaanse standaardtijd - Mauritiaanse zomertijd + Mauritiaanse tijd + Mauritiaanse standaardtijd + Mauritiaanse zomertijd - Mawson tijd + Mawson-tijd - Noordwest-Mexicaanse tijd - Noordwest-Mexicaanse standaardtijd - Noordwest-Mexicaanse zomertijd + Noordwest-Mexicaanse tijd + Noordwest-Mexicaanse standaardtijd + Noordwest-Mexicaanse zomertijd - Mexicaanse Pacific-tijd - Mexicaanse Pacific-standaardtijd - Mexicaanse Pacific-zomertijd + Mexicaanse Pacific-tijd + Mexicaanse Pacific-standaardtijd + Mexicaanse Pacific-zomertijd - Ulaanbaatar tijd - Ulaanbaatar standaardtijd - Ulaanbaatar zomertijd + Ulaanbaatar-tijd + Ulaanbaatar-standaardtijd + Ulaanbaatar-zomertijd @@ -5958,12 +6111,12 @@ For terms of use, see http://www.unicode.org/copyright.html - Myanmarese tijd + Myanmarese tijd - Nauruaanse tijd + Nauruaanse tijd @@ -5973,9 +6126,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Nieuw-Caledonische tijd - Nieuw-Caledonische standaardtijd - Nieuw-Caledonische zomertijd + Nieuw-Caledonische tijd + Nieuw-Caledonische standaardtijd + Nieuw-Caledonische zomertijd @@ -5994,7 +6147,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Niuese tijd + Niuese tijd @@ -6037,12 +6190,12 @@ For terms of use, see http://www.unicode.org/copyright.html - Belause tijd + Belause tijd - Papoea-Nieuw-Guineese tijd + Papoea-Nieuw-Guineese tijd @@ -6061,31 +6214,31 @@ For terms of use, see http://www.unicode.org/copyright.html - Filipijnse tijd - Filipijnse standaardtijd - Filipijnse zomertijd + Filipijnse tijd + Filipijnse standaardtijd + Filipijnse zomertijd - Phoenixeilandse tijd + Phoenixeilandse tijd - Saint Pierre en Miquelon-tijd - Saint Pierre en Miquelon-standaardtijd - Saint Pierre en Miquelon-zomertijd + Saint Pierre en Miquelon-tijd + Saint Pierre en Miquelon-standaardtijd + Saint Pierre en Miquelon-zomertijd - Pitcairneilandse tijd + Pitcairneilandse tijd - Pohnpei tijd + Pohnpei-tijd @@ -6097,12 +6250,12 @@ For terms of use, see http://www.unicode.org/copyright.html - Réunionse tijd + Réunionse tijd - Rothera tijd + Rothera-tijd @@ -6121,29 +6274,29 @@ For terms of use, see http://www.unicode.org/copyright.html - Samoaanse tijd - Samoaanse standaardtijd - Samoaanse zomertijd + Samoaanse tijd + Samoaanse standaardtijd + Samoaanse zomertijd - Seychelse tijd + Seychelse tijd - Singaporese standaardtijd + Singaporese standaardtijd - Salomonseilandse tijd + Salomonseilandse tijd - Zuid-Georgische tijd + Zuid-Georgische tijd @@ -6153,53 +6306,53 @@ For terms of use, see http://www.unicode.org/copyright.html - Syowa tijd + Syowa-tijd - Tahitiaanse tijd + Tahitiaanse tijd - Taipei tijd - Taipei standaardtijd - Taipei zomertijd + Taipei-tijd + Taipei-standaardtijd + Taipei-zomertijd - Tadzjiekse tijd + Tadzjiekse tijd - Tokelau-eilandse tijd + Tokelau-eilandse tijd - Tongaanse tijd - Tongaanse standaardtijd - Tongaanse zomertijd + Tongaanse tijd + Tongaanse standaardtijd + Tongaanse zomertijd - Chuukse tijd + Chuukse tijd - Turkmeense tijd - Turkmeense standaardtijd - Turkmeense zomertijd + Turkmeense tijd + Turkmeense standaardtijd + Turkmeense zomertijd - Tuvaluaanse tijd + Tuvaluaanse tijd @@ -6211,16 +6364,16 @@ For terms of use, see http://www.unicode.org/copyright.html - Oezbeekse tijd - Oezbeekse standaardtijd - Oezbeekse zomertijd + Oezbeekse tijd + Oezbeekse standaardtijd + Oezbeekse zomertijd - Vanuatuaanse tijd - Vanuatuaanse standaardtijd - Vanuatuaanse zomertijd + Vanuatuaanse tijd + Vanuatuaanse standaardtijd + Vanuatuaanse zomertijd @@ -6244,17 +6397,17 @@ For terms of use, see http://www.unicode.org/copyright.html - Vostok tijd + Vostok-tijd - Wake-eilandse tijd + Wake-eilandse tijd - Wallis en Futunase tijd + Wallis en Futunase tijd @@ -6279,6 +6432,9 @@ For terms of use, see http://www.unicode.org/copyright.html latn 1 + + : + , . @@ -6379,6 +6535,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00;(¤ #,##0.00) + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0 mln'.' + ¤ 0 mln'.' + ¤ 00 mln'.' + ¤ 00 mln'.' + ¤ 000 mln'.' + ¤ 000 mln'.' + ¤ 0 mld'.' + ¤ 0 mld'.' + ¤ 00 mld'.' + ¤ 00 mld'.' + ¤ 000 mld'.' + ¤ 000 mld'.' + ¤ 0 bln'.' + ¤ 0 bln'.' + ¤ 00 bln'.' + ¤ 00 bln'.' + ¤ 000 bln'.' + ¤ 000 bln'.' + + {0} {1} {0} {1} @@ -6436,6 +6620,7 @@ For terms of use, see http://www.unicode.org/copyright.html Angolese kwanza Angolese kwanza AOA + Kz Angolese kwanza (1977–1990) @@ -6528,6 +6713,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bosnische convertibele mark Bosnische convertibele mark BAM + KM Nieuwe Bosnische dinar (1994–1997) @@ -6622,6 +6808,7 @@ For terms of use, see http://www.unicode.org/copyright.html Boliviaanse boliviano Boliviaanse boliviano BOB + Bs Boliviaanse boliviano (1863–1963) @@ -6708,6 +6895,7 @@ For terms of use, see http://www.unicode.org/copyright.html Botswaanse pula Botswaanse pula BWP + P Wit-Russische nieuwe roebel (1994–1999) @@ -6786,9 +6974,9 @@ For terms of use, see http://www.unicode.org/copyright.html CNX - Chinese yuan renminbi - Chinese renminbi - Chinese renminbi + Chinese renminbi + Chinese yuan + Chinese yuan CN¥ ¥ @@ -6829,6 +7017,7 @@ For terms of use, see http://www.unicode.org/copyright.html Cubaanse convertibele peso Cubaanse convertibele peso CUC + $ Cubaanse peso @@ -6854,6 +7043,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tsjechische kroon Tsjechische kronen CZK + Oost-Duitse ostmark @@ -6878,6 +7068,7 @@ For terms of use, see http://www.unicode.org/copyright.html Deense kroon Deense kronen DKK + kr Dominicaanse peso @@ -6915,6 +7106,7 @@ For terms of use, see http://www.unicode.org/copyright.html Egyptisch pond Egyptisch pond EGP + Eritrese nakfa @@ -6972,6 +7164,7 @@ For terms of use, see http://www.unicode.org/copyright.html Falklandeilands pond Falklandeilands pond FKP + £ Franse franc @@ -6997,6 +7190,7 @@ For terms of use, see http://www.unicode.org/copyright.html Georgische lari Georgische lari GEL + Ghanese cedi (1979–2007) @@ -7024,10 +7218,11 @@ For terms of use, see http://www.unicode.org/copyright.html GMD - Guinese franc - Guinese franc - Guinese franc + Guinese frank + Guinese frank + Guinese frank GNF + FG Guinese syli @@ -7052,6 +7247,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guatemalteekse quetzal Guatemalteekse quetzal GTQ + Q Portugees-Guinese escudo @@ -7084,6 +7280,7 @@ For terms of use, see http://www.unicode.org/copyright.html Hondurese lempira Hondurese lempira HNL + L Kroatische dinar @@ -7096,6 +7293,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kroatische kuna Kroatische kuna HRK + kn Haïtiaanse gourde @@ -7108,12 +7306,14 @@ For terms of use, see http://www.unicode.org/copyright.html Hongaarse forint Hongaarse forint HUF + Ft Indonesische roepia Indonesische roepia Indonesische roepia IDR + Rp Iers pond @@ -7170,6 +7370,7 @@ For terms of use, see http://www.unicode.org/copyright.html IJslandse kroon IJslandse kronen ISK + kr Italiaanse lire @@ -7221,12 +7422,14 @@ For terms of use, see http://www.unicode.org/copyright.html Comorese frank Comorese frank KMF + CF Noord-Koreaanse won Noord-Koreaanse won Noord-Koreaanse won KPW + Zuid-Koreaanse hwan (1953–1962) @@ -7254,9 +7457,9 @@ For terms of use, see http://www.unicode.org/copyright.html KWD - Caymaneilandse dollar - Caymaneilandse dollar - Caymaneilandse dollar + Kaaimaneilandse dollar + Kaaimaneilandse dollar + Kaaimaneilandse dollar KYD $ @@ -7279,12 +7482,14 @@ For terms of use, see http://www.unicode.org/copyright.html Libanees pond Libanees pond LBP + Sri Lankaanse roepie Sri Lankaanse roepie Sri Lankaanse roepie LKR + Rs Liberiaanse dollar @@ -7382,6 +7587,7 @@ For terms of use, see http://www.unicode.org/copyright.html Malagassische ariary Malagassische ariary MGA + Ar Malagassische franc @@ -7412,6 +7618,7 @@ For terms of use, see http://www.unicode.org/copyright.html Myanmarese kyat Myanmarese kyat MMK + K Mongoolse tugrik @@ -7449,6 +7656,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mauritiaanse roepie Mauritiaanse roepie MUR + Rs Maldivische roepie @@ -7492,6 +7700,7 @@ For terms of use, see http://www.unicode.org/copyright.html Maleisische ringgit Maleisische ringgit MYR + RM Mozambikaanse escudo @@ -7536,6 +7745,7 @@ For terms of use, see http://www.unicode.org/copyright.html Nicaraguaanse córdoba Nicaraguaanse córdoba NIO + C$ Nederlandse gulden @@ -7548,12 +7758,14 @@ For terms of use, see http://www.unicode.org/copyright.html Noorse kroon Noorse kronen NOK + kr Nepalese roepie Nepalese roepie Nepalese roepie NPR + Rs Nieuw-Zeelandse dollar @@ -7610,12 +7822,14 @@ For terms of use, see http://www.unicode.org/copyright.html Pakistaanse roepie Pakistaanse roepie PKR + Rs Poolse zloty Poolse zloty Poolse zloty PLN + Poolse zloty (1950–1995) @@ -7671,6 +7885,7 @@ For terms of use, see http://www.unicode.org/copyright.html Russische roebel Russische roebel RUB + Russische roebel (1991–1998) @@ -7684,6 +7899,7 @@ For terms of use, see http://www.unicode.org/copyright.html Rwandese frank Rwandese frank RWF + RF Saoedi-Arabische riyal @@ -7727,6 +7943,7 @@ For terms of use, see http://www.unicode.org/copyright.html Zweedse kroon Zweedse kronen SEK + kr Singaporese dollar @@ -7740,6 +7957,7 @@ For terms of use, see http://www.unicode.org/copyright.html Sint-Heleens pond Sint-Heleens pond SHP + £ Sloveense tolar @@ -7790,6 +8008,7 @@ For terms of use, see http://www.unicode.org/copyright.html Santomese dobra Santomese dobra STD + Db Sovjet-roebel @@ -7808,6 +8027,7 @@ For terms of use, see http://www.unicode.org/copyright.html Syrisch pond Syrisch pond SYP + £ Swazische lilangeni @@ -7820,6 +8040,7 @@ For terms of use, see http://www.unicode.org/copyright.html Thaise baht Thaise baht ฿ + ฿ Tadzjikistaanse roebel @@ -7856,6 +8077,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tongaanse paʻanga Tongaanse paʻanga TOP + T$ Timorese escudo @@ -7875,6 +8097,7 @@ For terms of use, see http://www.unicode.org/copyright.html Turkse lira TRY + TL Trinidad en Tobago-dollar @@ -7976,6 +8199,7 @@ For terms of use, see http://www.unicode.org/copyright.html Venezolaanse bolivar Venezolaanse bolivar VEF + Bs Vietnamese dong @@ -7985,9 +8209,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Oude Vietnamese dong (1978–1985) - oude Vietnamese dong (1978–1985) - oude Vietnamese dong (1978–1985) + Vietnamese dong (1978–1985) + Vietnamese dong (1978–1985) + Vietnamese dong (1978–1985) VNN @@ -8049,6 +8273,7 @@ For terms of use, see http://www.unicode.org/copyright.html Oost-Caribische dollar Oost-Caribische dollar EC$ + $ Special Drawing Rights @@ -8087,8 +8312,8 @@ For terms of use, see http://www.unicode.org/copyright.html XPD - CFP-franc - CFP-franc + CFP-frank + CFP-frank CFP-frank XPF @@ -8175,6 +8400,7 @@ For terms of use, see http://www.unicode.org/copyright.html Zuid-Afrikaanse rand Zuid-Afrikaanse rand ZAR + R Zambiaanse kwacha (1968–2012) @@ -8187,6 +8413,7 @@ For terms of use, see http://www.unicode.org/copyright.html Zambiaanse kwacha Zambiaanse kwacha ZMW + ZK Zaïrese nieuwe zaïre @@ -8227,1231 +8454,1365 @@ For terms of use, see http://www.unicode.org/copyright.html - {0} per {1} + {0} per {1} - G-krachten + G-krachten {0} G-kracht {0} G-krachten - m/s² - {0} m/s² - {0} m/s² + meter per seconde kwadraat + {0} meter per seconde kwadraat + {0} meter per seconde kwadraat + + + toeren + {0} toer + {0} toeren + + + radiaal + {0} radiaal + {0} radialen + + + booggraden + {0} booggraad + {0} booggraden - boogminuten + boogminuten {0} boogminuut {0} boogminuten - boogseconden + boogseconden {0} boogseconde {0} boogseconden - - booggraden - {0} booggraad - {0} booggraden - - - radiaal - {0} radiaal - {0} radialen - - - acre - {0} acre - {0} acres + + vierkante kilometer + {0} vierkante kilometer + {0} vierkante kilometer - hectare + hectare {0} hectare {0} hectare + + vierkante meter + {0} vierkante meter + {0} vierkante meter + {0} per vierkante meter + - vierkante centimeter - {0} vierkante centimeter - {0} vierkante centimeter + vierkante centimeter + {0} vierkante centimeter + {0} vierkante centimeter + {0} per vierkante centimeter + + + vierkante mijl + {0} vierkante mijl + {0} vierkante mijl + + + acre + {0} acre + {0} acres + + + vierkante yard + {0} vierkante yard + {0} vierkante yard - vierkante voet + vierkante voet {0} vierkante voet {0} vierkante voet - vierkante inch - {0} vierkante inch - {0} vierkante inch + vierkante inch + {0} vierkante inch + {0} vierkante inch + {0} per vierkante inch - - vierkante kilometer - {0} vierkante kilometer - {0} vierkante kilometer - - - vierkante meter - {0} vierkante meter - {0} vierkante meter - - - vierkante mijl - {0} vierkante mijl - {0} vierkante mijl - - - vierkante yard - {0} vierkante yard - {0} vierkante yard + + karaat + {0} karaat + {0} karaat - liter per kilometer - {0} liter per kilometer - {0} liter per kilometer + liter per kilometer + {0} liter per kilometer + {0} liter per kilometer + + + liter per 100 kilometer + {0} liter per 100 kilometer + {0} liter per 100 kilometer - mijl per gallon - {0} mijl per gallon - {0} mijl per gallon - - - bit - {0} bit - {0} bits - - - byte - {0} byte - {0} byte - - - gigabit - {0} gigabit - {0} gigabits - - - gigabyte - {0} gigabyte - {0} gigabyte - - - kilobit - {0} kilobit - {0} kilobits - - - kilobyte - {0} kilobyte - {0} kilobyte - - - megabit - {0} megabit - {0} megabits - - - megabyte - {0} megabyte - {0} megabyte - - - terabit - {0} terabit - {0} terabits + mijl per gallon + {0} mijl per gallon + {0} mijl per gallon - terabyte - {0} terabyte - {0} terabyte + terabyte + {0} terabyte + {0} terabyte + + + terabit + {0} terabit + {0} terabits + + + gigabyte + {0} gigabyte + {0} gigabyte + + + gigabit + {0} gigabit + {0} gigabits + + + megabyte + {0} megabyte + {0} megabyte + + + megabit + {0} megabit + {0} megabits + + + kilobyte + {0} kilobyte + {0} kilobyte + + + kilobit + {0} kilobit + {0} kilobits + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bits + + + eeuwen + {0} eeuw + {0} eeuwen + + + jaar + {0} jaar + {0} jaar + {0} per jaar + + + maanden + {0} maand + {0} maanden + {0} per maand + + + weken + {0} week + {0} weken + {0} per week - dagen + dagen {0} dag {0} dagen + {0} per dag - uur + uur {0} uur {0} uur - {0} per uur + {0} per uur - - microseconde - {0} microseconde - {0} microseconden + + minuten + {0} minuut + {0} minuten + {0} per minuut + + + seconden + {0} seconde + {0} seconden + {0} per seconde - milliseconde + milliseconden {0} milliseconde {0} milliseconden - - minuten - {0} minuut - {0} minuten - - - maanden - {0} maand - {0} maanden + + microseconden + {0} microseconde + {0} microseconden - nanoseconde - {0} nanoseconde - {0} nanoseconden - - - seconden - {0} seconde - {0} seconden - {0} per seconde - - - weken - {0} week - {0} weken - - - jaar - {0} jaar - {0} jaar + nanoseconden + {0} nanoseconde + {0} nanoseconden - ampère - {0} ampère - {0} ampère + ampère + {0} ampère + {0} ampère - milliampère - {0} milliampère - {0} milliampère + milliampère + {0} milliampère + {0} milliampère - ohm - {0} ohm - {0} ohm + ohm + {0} ohm + {0} ohm - volt - {0} volt - {0} volt - - - calorie - {0} calorie - {0} calorieën - - - kilocalorie - {0} kilocalorie - {0} kilocalorieën - - - joule - {0} joule - {0} joules + volt + {0} volt + {0} volt - kilocalorie - {0} kilocalorie - {0} kilocalorieën + kilocalorie + {0} kilocalorie + {0} kilocalorieën + + + calorie + {0} calorie + {0} calorieën + + + kilocalorie + {0} kilocalorie + {0} kilocalorieën - kilojoule - {0} kilojoule - {0} kilojoules + kilojoule + {0} kilojoule + {0} kilojoules + + + joule + {0} joule + {0} joules - kilowattuur - {0} kilowattuur - {0} kilowattuur + kilowattuur + {0} kilowattuur + {0} kilowattuur - gigahertz - {0} gigahertz - {0} gigahertz - - - hertz - {0} hertz - {0} hertz - - - kilohertz - {0} kilohertz - {0} kilohertz + gigahertz + {0} gigahertz + {0} gigahertz - megahertz - {0} megahertz - {0} megahertz + megahertz + {0} megahertz + {0} megahertz - - astronomische eenheid - {0} astronomische eenheid - {0} astronomische eenheden + + kilohertz + {0} kilohertz + {0} kilohertz - - centimeter - {0} centimeter - {0} centimeter + + hertz + {0} hertz + {0} hertz + + + kilometer + {0} kilometer + {0} kilometer + {0} per kilometer + + + meter + {0} meter + {0} meter + {0} per meter - decimeter - {0} decimeter - {0} decimeter + decimeter + {0} decimeter + {0} decimeter - - vadem - {0} vadem - {0} vadems + + centimeter + {0} centimeter + {0} centimeter + {0} per centimeter + + + millimeter + {0} millimeter + {0} millimeter + + + micrometer + {0} micrometer + {0} micrometer + + + nanometer + {0} nanometer + {0} nanometer + + + picometer + {0} picometer + {0} picometer + + + mijl + {0} mijl + {0} mijl + + + yards + {0} yard + {0} yards - voet + voet {0} voet {0} voet + {0} per voet + + + inches + {0} inch + {0} inches + {0} per inch + + + parsec + {0} parsec + {0} parsecs + + + lichtjaar + {0} lichtjaar + {0} lichtjaar + + + astronomische eenheid + {0} astronomische eenheid + {0} astronomische eenheden furlong {0} furlong {0} furlong - - inches - {0} inch - {0} inches - - - kilometer - {0} kilometer - {0} kilometer - - - lichtjaar - {0} lichtjaar - {0} lichtjaar - - - meter - {0} meter - {0} meter - - - micrometer - {0} micrometer - {0} micrometer - - - mijl - {0} mijl - {0} mijl - - - millimeter - {0} millimeter - {0} millimeter - - - nanometer - {0} nanometer - {0} nanometer + + vadem + {0} vadem + {0} vadems - zeemijl - {0} zeemijl - {0} zeemijl + zeemijl + {0} zeemijl + {0} zeemijlen - - parsec - {0} parsec - {0} parsecs - - - picometer - {0} picometer - {0} picometer - - - yards - {0} yard - {0} yards + + Scandinavische mijl + {0} Scandinavische mijl + {0} Scandinavische mijl - lux - {0} lux - {0} lux - - - karaat - {0} karaat - {0} karaat - - - gram - {0} gram - {0} gram - - - kilogram - {0} kilogram - {0} kilogram + lux + {0} lux + {0} lux - tonne - {0} tonne - {0} tonnes + tonne + {0} tonne + {0} tonnes - - microgram - {0} microgram - {0} microgram + + kilogram + {0} kilogram + {0} kilogram + {0} per kilogram + + + gram + {0} gram + {0} gram + {0} per gram - milligram - {0} milligram - {0} milligram + milligram + {0} milligram + {0} milligram - - ons - {0} ons - {0} ons + + microgram + {0} microgram + {0} microgram - - troy ounce - {0} troy ounce - {0} troy ounce - - - pond - {0} pond - {0} pond + + ton + {0} ton + {0} ton stone {0} stone {0} stone - - ton - {0} ton - {0} ton + + pound + {0} pound + {0} pound + {0} per pound + + + ounce + {0} ounce + {0} ounce + {0} per ounce + + + troy ounce + {0} troy ounce + {0} troy ounce + + + karaat + {0} karaat + {0} karaat - gigawatt - {0} gigawatt - {0} gigawatt + gigawatt + {0} gigawatt + {0} gigawatt - - paardenkrachten - {0} paardenkracht - {0} paardenkrachten + + megawatt + {0} megawatt + {0} megawatt - kilowatt + kilowatt {0} kilowatt {0} kilowatt - - megawatt - {0} megawatt - {0} megawatt - - - milliwatt - {0} milliwatt - {0} milliwatt - - watt + watt {0} watt {0} watt + + milliwatt + {0} milliwatt + {0} milliwatt + + + paardenkrachten + {0} paardenkracht + {0} paardenkrachten + - hectopascal + hectopascal {0} hectopascal {0} hectopascal + + millimeter-kwikdruk + {0} millimeter-kwikdruk + {0} millimeter-kwikdruk + + + psi + {0} psi + {0} psi + - inch-kwikdruk + inch-kwikdruk {0} inch-kwikdruk {0} inch-kwikdruk - millibar + millibar {0} millibar {0} millibar - - millimeter-kwikdruk - {0} millimeter-kwikdruk - {0} millimeter-kwikdruk - - - psi - {0} psi - {0} psi - - - karaat - {0} karaat - {0} karaat - - kilometer per uur + kilometer per uur {0} kilometer per uur {0} kilometer per uur - meter per seconde + meter per seconde {0} meter per seconde {0} meter per seconde - mijl per uur + mijl per uur {0} mijl per uur {0} mijl per uur + + knoop + {0} knoop + {0} knopen + + + ° + {0}° + {0}° + - graden Celsius + graden Celsius {0} graad Celsius {0} graden Celsius - graden Fahrenheit + graden Fahrenheit {0} graad Fahrenheit {0} graden Fahrenheit - kelvin - {0} kelvin - {0} kelvin + kelvin + {0} kelvin + {0} kelvin + + + kubieke kilometer + {0} kubieke kilometer + {0} kubieke kilometer + + + kubieke meter + {0} kubieke meter + {0} kubieke meter + {0} per kubieke meter + + + kubieke centimeter + {0} kubieke centimeter + {0} kubieke centimeter + {0} per kubieke centimeter + + + kubieke mijl + {0} kubieke mijl + {0} kubieke mijl + + + kubieke yard + {0} kubieke yard + {0} kubieke yard + + + kubieke voet + {0} kubieke voet + {0} kubieke voet + + + kubieke inch + {0} kubieke inch + {0} kubieke inch + + + megaliter + {0} megaliter + {0} megaliter + + + hectoliter + {0} hectoliter + {0} hectoliter + + + liter + {0} liter + {0} liter + {0} per liter + + + deciliter + {0} deciliter + {0} deciliter + + + centiliter + {0} centiliter + {0} centiliter + + + milliliter + {0} milliliter + {0} milliliter + + + metrische pint + {0} metrische pint + {0} metrische pint + + + metrische cup + {0} metrische cup + {0} metrische cup - liter per vierkante meter - {0} liter per vierkante meter - {0} liter per vierkante meter + acre-feet + {0} acre-foot + {0} acre-feet bushel {0} bushel {0} bushels - - centiliter - {0} centiliter - {0} centiliter - - - kubieke centimeter - {0} kubieke centimeter - {0} kubieke centimeter - - - kubieke voet - {0} kubieke voet - {0} kubieke voet - - - kubieke inch - {0} kubieke inch - {0} kubieke inch - - - kubieke kilometer - {0} kubieke kilometer - {0} kubieke kilometer - - - kubieke meter - {0} kubieke meter - {0} kubieke meter - - - kubieke mijl - {0} kubieke mijl - {0} kubieke mijl - - - kubieke yard - {0} kubieke yard - {0} kubieke yard - - - kopje - {0} kopje - {0} kopjes - - - deciliter - {0} deciliter - {0} deciliter - - - fluid ounce - {0} fluid ounce - {0} fluid ounce - - gallon - {0} gallon - {0} gallon - - - hectoliter - {0} hectoliter - {0} hectoliter - - - liter - {0} liter - {0} liter - - - megaliter - {0} megaliter - {0} megaliter - - - milliliter - {0} milliliter - {0} milliliter - - - pint - {0} pint - {0} pints + gallon + {0} gallon + {0} gallon + {0} per gallon - quart - {0} quart - {0} quarts + quart + {0} quart + {0} quart + + + pint + {0} pint + {0} pint + + + cup + {0} cup + {0} cup + + + fluid ounce + {0} fluid ounce + {0} fluid ounce - eetlepel - {0} eetlepel - {0} eetlepels + eetlepel + {0} eetlepel + {0} eetlepels - theelepel - {0} theelepel - {0} theelepels + theelepel + {0} theelepel + {0} theelepels + + {0} OL + {0} NB + {0} ZB + {0} WL + - {0}/{1} + {0}/{1} - G + G {0} G {0} G - m/s² - {0} m/s² - {0} m/s² + m/s² + {0} m/s² + {0} m/s² + + + tr + {0} tr + {0} tr + + + rad + {0} rad + {0} rad + + + ° + {0}° + {0}° - + {0}′ {0}′ - + {0}″ {0}″ - - ° - {0}° - {0}° - - - rad - {0} rad - {0} rad - - - acre - {0} acre - {0} acres + + km² + {0} km² + {0} km² - ha + ha {0} ha {0} ha + + + {0} m² + {0} m² + {0} per m² + - cm² - {0} cm² - {0} cm² + cm² + {0} cm² + {0} cm² + {0} per cm² + + + mi² + {0} mi² + {0} mi² + + + acre + {0} acre + {0} acres + + + yd² + {0} yd² + {0} yd² - ft² + ft² {0} ft² {0} ft² - in² - {0} in² - {0} in² + in² + {0} in² + {0} in² + {0} per in² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² + + K + {0} K + {0} K - l/km - {0} l/km - {0} l/km + l/km + {0} l/km + {0} l/km + + + l/100km + {0} l/100km + {0} l/100km - mpg - {0} mpg - {0} mpg - - - bit - {0} bit - {0} bits - - - byte - {0} byte - {0} byte - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb + mpg + {0} mpg + {0} mpg - TB - {0} TB - {0} TB + TB + {0} TB + {0} TB + + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bits + + + eeuwen + {0} eeuw + {0} eeuwen + + + jr + {0} jr + {0} jr + {0}/jr + + + mnd + {0} mnd + {0} mnd + {0}/mnd + + + wk + {0} wk + {0} wkn + {0}/wk - dagen + dagen {0} dag {0} dagen + {0}/dag - uur + uur {0} uur {0} uur - {0}/uur + {0}/uur - - μs - {0} μs - {0} μs + + min + {0} min + {0} min + {0}/min + + + sec + {0} sec + {0} sec + {0} sec - ms + ms {0} ms {0} ms - - min - {0} min - {0} min - - - mnd - {0} mnd - {0} mnd + + μs + {0} μs + {0} μs - ns - {0} ns - {0} ns - - - sec - {0} sec - {0} sec - {0} sec - - - wk - {0} wk - {0} wkn - - - jr - {0} jr - {0} jr + ns + {0} ns + {0} ns - A - {0} A - {0} A + A + {0} A + {0} A - mA - {0} mA - {0} mA + mA + {0} mA + {0} mA - Ω - {0} Ω - {0} Ω + Ω + {0} Ω + {0} Ω - V - {0} V - {0} V - - - cal - {0} cal - {0} cal - - - kcal - {0} kcal - {0} kcal - - - J - {0} J - {0} J + V + {0} V + {0} V - kcal - {0} kcal - {0} kcal + kcal + {0} kcal + {0} kcal + + + cal + {0} cal + {0} cal + + + kcal + {0} kcal + {0} kcal - kJ - {0} kJ - {0} kJ + kJ + {0} kJ + {0} kJ + + + J + {0} J + {0} J - kWh - {0} kWh - {0} kWh + kWh + {0} kWh + {0} kWh - GHz - {0} GHz - {0} GHz - - - Hz - {0} Hz - {0} Hz - - - kHz - {0} kHz - {0} kHz + GHz + {0} GHz + {0} GHz - MHz - {0} MHz - {0} MHz + MHz + {0} MHz + {0} MHz - - AE - {0} AE - {0} AE + + kHz + {0} kHz + {0} kHz - - cm - {0} cm - {0} cm + + Hz + {0} Hz + {0} Hz + + + km + {0} km + {0} km + {0}/km + + + m + {0} m + {0} m + {0}/m - dm - {0} dm - {0} dm + dm + {0} dm + {0} dm - - fm - {0} fm - {0} fm + + cm + {0} cm + {0} cm + {0}/cm + + + mm + {0} mm + {0} mm + + + µm + {0} µm + {0} µm + + + nm + {0} nm + {0} nm + + + pm + {0} pm + {0} pm + + + mi + {0} mi + {0} mi + + + yards + {0} yd + {0} yd - ft + ft {0} ft {0} ft + {0}/ft + + + inches + {0} in + {0} in + {0}/in + + + pc + {0} pc + {0} pc + + + lj + {0} lj + {0} lj + + + AE + {0} AE + {0} AE fur {0} fur {0} fur - - inches - {0} in - {0} in - - - km - {0} km - {0} km - - - lj - {0} lj - {0} lj - - - m - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - mi - {0} mi - {0} mi - - - mm - {0} mm - {0} mm - - - nm - {0} nm - {0} nm + + fm + {0} fm + {0} fm - nmi - {0} nmi - {0} nmi + nmi + {0} nmi + {0} nmi - - pc - {0} pc - {0} pc - - - pm - {0} pm - {0} pm - - - yards - {0} yd - {0} yd + + smi + {0} smi + {0} smi - lx - {0} lx - {0} lx - - - CD - {0} CD - {0} CD - - - g - {0} g - {0} g - - - kg - {0} kg - {0} kg + lx + {0} lx + {0} lx - t - {0} t - {0} t + t + {0} t + {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + g + {0} g + {0} g + {0}/g - mg - {0} mg - {0} mg + mg + {0} mg + {0} mg - - oz - {0} oz - {0} oz + + µg + {0} µg + {0} µg - - oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb + + ton + {0} ton + {0} ton st {0} st {0} st - - ton - {0} ton - {0} ton + + lb + {0} lb + {0} lb + {0}/lb - - GW - {0} GW - {0} GW + + oz + {0} oz + {0} oz + {0}/oz - - pk - {0} pk - {0} pk + + oz t + {0} oz t + {0} oz t - - kW - {0} kW - {0} kW - - - MW - {0} MW - {0} MW - - - mW - {0} mW - {0} mW - - - W - {0} W - {0} W - - - hPa - {0} hPa - {0} hPa - - - inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - - - mmHg - {0} mmHg - {0} mmHg - - - psi - {0} psi - {0} psi - - + CD {0} CD {0} CD + + GW + {0} GW + {0} GW + + + MW + {0} MW + {0} MW + + + kW + {0} kW + {0} kW + + + W + {0} W + {0} W + + + mW + {0} mW + {0} mW + + + pk + {0} pk + {0} pk + + + hPa + {0} hPa + {0} hPa + + + mmHg + {0} mmHg + {0} mmHg + + + psi + {0} psi + {0} psi + + + inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar + - km/h + km/h {0} km/h {0} km/h - m/s + m/s {0} m/s {0} m/s - mi/h + mi/h {0} mi/h {0} mi/h + + kt + {0} kt + {0} kt + + + ° + {0}° + {0}° + - °C + °C {0}°C {0}°C - °F + °F {0}°F {0}°F K - {0} K - {0} K + {0} K + {0} K + + + km³ + {0} km³ + {0} km³ + + + + {0} m³ + {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ + + + mi³ + {0} mi³ + {0} mi³ + + + yd³ + {0} yd³ + {0} yd³ + + + ft³ + {0} ft³ + {0} ft³ + + + in³ + {0} in³ + {0} in³ + + + ML + {0} ML + {0} ML + + + hl + {0} hl + {0} hl + + + l + {0} l + {0} l + {0}/l + + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl + + + ml + {0} ml + {0} ml + + + mpt + {0} mpt + {0} mpt + + + metrische cup + {0} metrische cup + {0} metrische cup - l/m² - {0} l/m² - {0} l/m² + acre ft + {0} ac ft + {0} ac ft bu {0} bu {0} bu - - cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - - - km³ - {0} km³ - {0} km³ - - - - {0} m³ - {0} m³ - - - mi³ - {0} mi³ - {0} mi³ - - - yd³ - {0} yd³ - {0} yd³ - - - c - {0} c - {0} c - - - dl - {0} dl - {0} dl - - - fl oz - {0} fl oz - {0} fl oz - - gal - {0} gal - {0} gal - - - hl - {0} hl - {0} hl - - - l - {0} l - {0} l - - - ML - {0} ML - {0} ML - - - ml - {0} ml - {0} ml - - - pt - {0} pt - {0} pt + gal + {0} gal + {0} gal + {0}/gal - qt - {0} qt - {0} qt + qt + {0} qt + {0} qt + + + pt + {0} pt + {0} pt + + + cup + {0} cup + {0} cup + + + fl oz + {0} fl oz + {0} fl oz - tbsp - {0} tbsp - {0} tbsp + el + {0} el + {0} el - tsp - {0} tsp - {0} tsp + tl + {0} tl + {0} tl + + {0} OL + {0} NB + {0} ZB + {0} WL + - {0}/{1} + {0}/{1} {0} G @@ -9461,6 +9822,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + tr + {0} t + {0} t + + + {0} rad + {0} rad + + + {0}° + {0}° + {0}′ {0}′ @@ -9469,26 +9843,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} rad - {0} rad - - - {0} acre - {0} acres + + {0} km² + {0} km² {0} ha {0} ha + + {0} m² + {0} m² + {0} cm² {0} cm² + + {0} mi² + {0} mi² + + + {0} acre + {0} acres + + + {0} yd² + {0} yd² + {0} ft² {0} ft² @@ -9497,118 +9879,111 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² - - {0} km² - {0} km² - - - {0} m² - {0} m² - - - {0} mi² - {0} mi² - - - {0} yd² - {0} yd² + + {0} K + {0} K {0} l/km {0} l/km + + l/100km + {0} l/100km + {0} l/100km + {0} mpg {0} mpg - - {0} bit - {0} bits - - - {0} byte - {0} byte - - - {0} Gb - {0} Gb - - - {0} GB - {0} GB - - - {0} kb - {0} kb - - - {0} kB - {0} kB - - - {0} Mb - {0} Mb - - - {0} MB - {0} MB - - - {0} Tb - {0} Tb - {0} TB {0} TB + + {0} Tb + {0} Tb + + + {0} GB + {0} GB + + + {0} Gb + {0} Gb + + + {0} MB + {0} MB + + + {0} Mb + {0} Mb + + + {0} kB + {0} kB + + + {0} kb + {0} kb + + + {0} byte + {0} byte + + + {0} bit + {0} bits + + + jr + {0} jr + {0} jr + + + m + {0} m + {0} m + + + w + {0} w + {0} w + - d + d {0} d {0} d - u + u {0} u {0} u + + m + {0} m + {0} m + + + s + {0} s + {0} s + + + ms + {0} ms + {0} ms + {0} μs {0} μs - - ms - {0} ms - {0} ms - - - m - {0} m - {0} m - - - m - {0} m - {0} m - {0} ns {0} ns - - s - {0} s - {0} s - - - w - {0} w - {0} w - - - jr - {0} jr - {0} jr - {0} A {0} A @@ -9625,6 +10000,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + {0} kcal + {0} kcal + {0} cal {0} cal @@ -9633,18 +10012,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kcal {0} kcal - - {0} J - {0} J - - - {0} kcal - {0} kcal - {0} kJ {0} kJ + + {0} J + {0} J + {0} kWh {0} kWh @@ -9653,126 +10028,135 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - {0} Hz - {0} Hz + + {0} MHz + {0} MHz {0} kHz {0} kHz - - {0} MHz - {0} MHz + + {0} Hz + {0} Hz - - {0} AE - {0} AE + + km + {0} km + {0} km - - cm - {0} cm - {0} cm + + m + {0} m + {0} m {0} dm {0} dm - - fm - {0} fm - {0} fm + + cm + {0} cm + {0} cm + + + mm + {0} mm + {0} mm + + + {0} µm + {0} µm + + + {0} nm + {0} nm + + + {0} pm + {0} pm + + + {0} mi + {0} mi + + + {0} yd + {0} yd {0} ft {0} ft + + {0}" + {0}" + + + {0} pc + {0} pc + + + {0} lj + {0} lj + + + {0} AE + {0} AE + fur {0} fur {0} fur - - {0}" - {0}" - - - km - {0} km - {0} km - - - {0} lj - {0} lj - - - m - {0} m - {0} m - - - {0} µm - {0} µm - - - {0} mi - {0} mi - - - mm - {0} mm - {0} mm - - - {0} nm - {0} nm + + fm + {0} fm + {0} fm {0} nmi {0} nmi - - {0} pc - {0} pc - - - {0} pm - {0} pm - - - {0} yd - {0} yd - {0} lx {0} lx - - {0} CD - {0} CD - - - g - {0} g - {0} g - - - kg - {0} kg - {0} kg - {0} t {0} t - - {0} µg - {0} µg + + kg + {0} kg + {0} kg + + + g + {0} g + {0} g {0} mg {0} mg + + {0} µg + {0} µg + + + {0} ton + {0} ton + + + st + {0} st + {0} st + + + {0} lb + {0} lb + {0} oz {0} oz @@ -9781,55 +10165,38 @@ For terms of use, see http://www.unicode.org/copyright.html {0} oz t {0} oz t - - {0} lb - {0} lb - - - st - {0} st - {0} st - - - {0} ton - {0} ton + + {0} CD + {0} CD {0} GW {0} GW - - {0} pk - {0} pk + + {0} MW + {0} MW {0} kW {0} kW - - {0} MW - {0} MW + + {0} W + {0} W {0} mW {0} mW - - {0} W - {0} W + + {0} pk + {0} pk {0} hPa {0} hPa - - {0} inHg - {0} inHg - - - {0} mbar - {0} mbar - {0} mmHg {0} mmHg @@ -9838,12 +10205,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - {0} K - {0} K + + {0} inHg + {0} inHg + + + {0} mbar + {0} mbar - km/h + km/h {0} km/h {0} km/h @@ -9855,8 +10226,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h - + ° + {0}° + {0}° + + + ° {0}° {0}° @@ -9868,31 +10244,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - {0} l/m² - {0} l/m² - - - bu - {0} bu - {0} bu - - - {0} cl - {0} cl - - - {0} cm³ - {0} cm³ - - - {0} ft³ - {0} ft³ - - - {0} in³ - {0} in³ - {0} km³ {0} km³ @@ -9901,6 +10252,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + + {0} cm³ + {0} cm³ + {0} mi³ {0} mi³ @@ -9909,47 +10264,68 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - {0} c - {0} c + + {0} ft³ + {0} ft³ - - {0} dl - {0} dl + + {0} in³ + {0} in³ - - {0} fl oz - {0} fl oz - - - {0} gal - {0} gal + + {0} ML + {0} ML {0} hl {0} hl - l + l {0} l {0} l - - {0} ML - {0} ML + + {0} dl + {0} dl + + + {0} cl + {0} cl {0} ml {0} ml - - {0} pt - {0} pt + + {0} l/m² + {0} l/m² + + + bu + {0} bu + {0} bu + + + {0} gal + {0} gal {0} qt {0} qt + + {0} pt + {0} pt + + + {0} c + {0} c + + + {0} fl oz + {0} fl oz + {0} tbsp {0} tbsp @@ -9958,6 +10334,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0} OL + {0} NB + {0} ZB + {0} WL + h:mm @@ -9971,28 +10353,28 @@ For terms of use, see http://www.unicode.org/copyright.html - {0}, {1} - {0}, {1} + {0}, {1} + {0}, {1} {0} en {1} {0} en {1} - {0}, {1} - {0}, {1} - {0}, {1} - {0} en {1} + {0}, {1} + {0}, {1} + {0} en {1} + {0} en {1} - {0}, {1} - {0}, {1} - {0}, {1} - {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} - {0}, {1} - {0}, {1} - {0}, {1} - {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_AW.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_AW.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_AW.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_AW.xml index 1253edbb88c..15d6e8ef77d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_AW.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_AW.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_BE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_BE.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_BE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_BE.xml index d030fc37e9c..e907ab48bf9 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_BE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_BE.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_BQ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_BQ.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_BQ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_BQ.xml index 42abd0256b2..f241d0ea893 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_BQ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_BQ.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_CW.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_CW.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_CW.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_CW.xml index 50e0d1cb8ec..ba2e04f79da 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_CW.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_CW.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_NL.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_NL.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_NL.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_NL.xml index 58a5c6e6203..b44dbc72b43 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_NL.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_NL.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_SR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_SR.xml similarity index 65% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_SR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_SR.xml index 71aec6628fc..2321a6709f5 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_SR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_SR.xml @@ -1,16 +1,24 @@ - - - + + + + + + SRT + + + + @@ -19,3 +27,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_SX.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_SX.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_SX.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_SX.xml index 2c38bd696cf..a1a9ccac199 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nl_SX.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nl_SX.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nmg.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nmg.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nmg.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nmg.xml index 61140dd7905..eccb2286932 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nmg.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nmg.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguílla Albania Arménia - B’Antilles bó Nedɛrland Angola Argentína Samoa m ́Amɛ́rka @@ -433,6 +431,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + maná + kugú + maná kugú @@ -582,6 +584,22 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0K ¤ + 00K ¤ + 000K ¤ + 0M ¤ + 00M ¤ + 000M ¤ + 0G ¤ + 00G ¤ + 000G ¤ + 0T ¤ + 00T ¤ + 000T ¤ + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nmg_CM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nmg_CM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nmg_CM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nmg_CM.xml index 873539d891e..24ab9493afb 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nmg_CM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nmg_CM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nn.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nn.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nn.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nn.xml index d179f25a84f..dbf05159467 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nn.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nn.xml @@ -1,13 +1,12 @@ - - - + @@ -657,7 +656,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Dei nederlandske Antillane Angola Antarktis Argentina @@ -953,63 +951,63 @@ For terms of use, see http://www.unicode.org/copyright.html tal - hindu-arabiske siffer (vestlige) - hindu-arabiske siffer (østlige) - armenske numeraler - armenske numeraler i små bogstaver - bengalske siffer - tradisjonell kinesisk sortering - buddhistisk kalender - kinesisk kalender - devanagariske siffer - grunnleggjande Unicode-sorteringsrekkjefølgje - sorteringsrekkefølge for flerspråklige europeiske dokumenter - etiopiske numeraler - etiopisk kalender - etiopisk amete-alem-kalender - vesterlandske siffer i fuld bredde - forenkla kinesisk sortering - georgiske numeraler - gregoriansk kalender - græske numeraler - græske numeraler i små bogstaver - gujaratiske siffer - gurmukhiske siffer - kinesiskt stavede siffer - forenklet stavede kinesiske numeraler - forenklet stavede kinesiske financielle numeraler - traditionelt stavede kinesiske numeraler - traditionelt stavede kinesiske financielle numeraler - hebæiske numeraler - hebraisk kalender - indisk nasjonalkalender - islamsk kalender - islamsk sivil kalender - japansk kalender - javanesiske siffer - japanskt stavede numeraler - japanskt stavede financielle numeraler - kambodiske siffer - kannadiske siffer - laotiske siffer - vesterlandske siffer - malayalamiske siffer - burmeske siffer - oryiske siffer - persisk kalender - telefonkatalogsortering - pinyin-sortering - kalender for Republikken Kina - romernumeraler - romernumeraler i små bogstaver - søksorteringsrekkjefølgje etter CLDR - streksortering - traditionelle tamilske numeraler - tamilske siffer - telugiske siffer - thailandske siffer - tibetanske siffer - tradisjonell sortering + buddhistisk kalender + kinesisk kalender + etiopisk kalender + etiopisk amete-alem-kalender + gregoriansk kalender + hebraisk kalender + indisk nasjonalkalender + islamsk kalender + islamsk sivil kalender + japansk kalender + persisk kalender + kalender for Republikken Kina + tradisjonell kinesisk sortering + grunnleggjande Unicode-sorteringsrekkjefølgje + sorteringsrekkefølge for flerspråklige europeiske dokumenter + forenkla kinesisk sortering + telefonkatalogsortering + pinyin-sortering + søksorteringsrekkjefølgje etter CLDR + streksortering + tradisjonell sortering + hindu-arabiske siffer (vestlige) + hindu-arabiske siffer (østlige) + armenske numeraler + armenske numeraler i små bogstaver + bengalske siffer + devanagariske siffer + etiopiske numeraler + vesterlandske siffer i fuld bredde + georgiske numeraler + græske numeraler + græske numeraler i små bogstaver + gujaratiske siffer + gurmukhiske siffer + kinesiskt stavede siffer + forenklet stavede kinesiske numeraler + forenklet stavede kinesiske financielle numeraler + traditionelt stavede kinesiske numeraler + traditionelt stavede kinesiske financielle numeraler + hebæiske numeraler + javanesiske siffer + japanskt stavede numeraler + japanskt stavede financielle numeraler + kambodiske siffer + kannadiske siffer + laotiske siffer + vesterlandske siffer + malayalamiske siffer + burmeske siffer + oryiske siffer + romernumeraler + romernumeraler i små bogstaver + traditionelle tamilske numeraler + tamilske siffer + telugiske siffer + thailandske siffer + tibetanske siffer metrisk @@ -1074,10 +1072,10 @@ For terms of use, see http://www.unicode.org/copyright.html E d. MMM y G h a HH - h:mm a - HH:mm - h:mm:ss a - HH:mm:ss + h.mm a + HH.mm + h.mm.ss a + HH.mm.ss L d.M. E d.M @@ -1085,7 +1083,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d. MMM E d. MMM - mm:ss + mm.ss y G y G M y G @@ -1112,22 +1110,22 @@ For terms of use, see http://www.unicode.org/copyright.html HH–HH - h:mm a – h:mm a - h:mm–h:mm a - h:mm–h:mm a + h.mm a – h.mm a + h.mm–h.mm a + h.mm–h.mm a - HH:mm–HH:mm - HH:mm–HH:mm + HH.mm–HH.mm + HH.mm–HH.mm - h:mm a – h:mm a v - h:mm–h:mm a v - h:mm–h:mm a v + h.mm a – h.mm a v + h.mm–h.mm a v + h.mm–h.mm a v - HH:mm–HH:mm v - HH:mm–HH:mm v + HH.mm–HH.mm v + HH.mm–HH.mm v h a – h a v @@ -1320,8 +1318,8 @@ For terms of use, see http://www.unicode.org/copyright.html - f.m. - e.m. + f.m. + e.m. f.m. @@ -1378,22 +1376,26 @@ For terms of use, see http://www.unicode.org/copyright.html - 'kl'. HH:mm:ss zzzz + 'kl'. HH.mm.ss zzzz + 'kl'. HH:mm:ss zzzz - HH:mm:ss z + HH.mm.ss z + HH:mm:ss z - HH:mm:ss + HH.mm.ss + HH:mm:ss - HH:mm + HH.mm + HH:mm @@ -1405,7 +1407,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} 'kl.' {0} + {1} 'kl'. {0} @@ -1425,17 +1427,17 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y G d. MMM y G E d. MMM y G - h:mm a - HH:mm - h:mm:ss a - HH:mm:ss + h.mm a + HH.mm + h.mm.ss a + HH.mm.ss d.M. E d.M d.M. d. MMM E d. MMM d. MMMM - mm:ss + mm.ss M y d.M.y E d.M.y @@ -1456,20 +1458,20 @@ For terms of use, see http://www.unicode.org/copyright.html h–h a - h:mm–h:mm a - h:mm–h:mm a + h.mm–h.mm a + h.mm–h.mm a - HH:mm–HH:mm - HH:mm–HH:mm + HH.mm–HH.mm + HH.mm–HH.mm - h:mm–h:mm a v - h:mm–h:mm a v + h.mm–h.mm a v + h.mm–h.mm a v - HH:mm–HH:mm v - HH:mm–HH:mm v + HH.mm–HH.mm v + HH.mm–HH.mm v h–h a v @@ -1525,7 +1527,7 @@ For terms of use, see http://www.unicode.org/copyright.html E d.–E d. MMM y E d. MMM–E d. MMM y - E d. MMM y–E d. MMM + E d. MMM y–E d. MMM y MMMM–MMMM y @@ -1676,7 +1678,7 @@ For terms of use, see http://www.unicode.org/copyright.html - +HH:mm;-HH:mm + +HH.mm;-HH.mm GMT{0} {1} ({0}) @@ -1861,6 +1863,8 @@ For terms of use, see http://www.unicode.org/copyright.html NaN + . + : @@ -1945,6 +1949,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 tn ¤ + 0 tn ¤ + 00 tn ¤ + 00 tn ¤ + 000 tn ¤ + 000 tn ¤ + 0 mn ¤ + 0 mn ¤ + 00 mn ¤ + 00 mn ¤ + 000 mn ¤ + 000 mn ¤ + 0 md ¤ + 0 md ¤ + 00 md ¤ + 00 md ¤ + 000 md ¤ + 000 md ¤ + 0 bn ¤ + 0 bn ¤ + 00 bn ¤ + 00 bn ¤ + 000 bn ¤ + 000 bn ¤ + + {0} {1} {0} {1} @@ -3213,6 +3245,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Jordgravitasjon {0} Jordgravitasjoner + + grader + {0} grad + {0} grader + bueminutter {0} bueminutt @@ -3223,31 +3260,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} buesekund {0} buesekunder - - grader - {0} grad - {0} grader - - - amerikanske tønneland - {0} amerikanskt tønneland - {0} amerikanske tønneland + + kvadratkilometer + {0} kvadratkilometer + {0} kvadratkilometer hektar {0} hektar {0} hektar - - kvadratfot - {0} kvadratfot - {0} kvadratfot - - - kvadratkilometer - {0} kvadratkilometer - {0} kvadratkilometer - kvadratmeter {0} kvadratmeter @@ -3258,6 +3280,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kvadrat-engelsk mil {0} kvadrat-engelske mil + + amerikanske tønneland + {0} amerikanskt tønneland + {0} amerikanske tønneland + + + kvadratfot + {0} kvadratfot + {0} kvadratfot + + + år + {0} år + {0} år + + + måneder + {0} måned + {0} måneder + + + uker + {0} uke + {0} uker + døgn {0} døgn @@ -3268,70 +3315,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} time {0} timer - - millisekunder - {0} millisekund - {0} millisekunder - minutter {0} minutt {0} minutter - - måneder - {0} måned - {0} måneder - sekunder {0} sekund {0} sekunder - - uker - {0} uke - {0} uker - - - år - {0} år - {0} år - - - centimeter - {0} centimeter - {0} centimeter - - - fot - {0} fot - {0} fot - - - tommer - {0} tomme - {0} tommer + + millisekunder + {0} millisekund + {0} millisekunder kilometer {0} kilometer {0} kilometer - - lysår - {0} lysår - {0} lysår - meter {0} meter {0} meter - - engelske mil - {0} engelsk mil - {0} engelske mil + + centimeter + {0} centimeter + {0} centimeter millimeter @@ -3343,35 +3355,55 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pikometer {0} pikometer + + engelske mil + {0} engelsk mil + {0} engelske mil + engelske yard {0} engelsk yard {0} engelske yard - - gram - {0} gram - {0} gram + + fot + {0} fot + {0} fot + + + tommer + {0} tomme + {0} tommer + + + lysår + {0} lysår + {0} lysår + + + mil + {0} mil + {0} mil kilogram {0} kilogram {0} kilogram - - unser - {0} unse - {0} unser + + gram + {0} gram + {0} gram skålpund {0} skålpund {0} skålpund - - hestekrafter - {0} hestekraft - {0} hestekrafter + + unser + {0} unse + {0} unser kilowatt @@ -3383,6 +3415,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} watt {0} watt + + hestekrafter + {0} hestekraft + {0} hestekrafter + hektopascal {0} hektopascal @@ -3448,6 +3485,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + grader + {0}° + {0}° + bueminutter {0}′ @@ -3458,31 +3500,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - grader - {0}° - {0}° - - - amerikanske tønneland - {0} ac - {0} ac + + kvadratkilometer + {0} km² + {0} km² hektar {0} ha {0} ha - - kvadratfot - {0} kvadratfot - {0} kvadratfot - - - kvadratkilometer - {0} km² - {0} km² - kvadratmeter {0} m² @@ -3493,6 +3520,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + amerikanske tønneland + {0} ac + {0} ac + + + kvadratfot + {0} kvadratfot + {0} kvadratfot + + + år + {0} år + {0} år + + + måneder + {0} mån + {0} mån + + + uker + {0} u + {0} u + døgn {0} d @@ -3503,70 +3555,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0} h - - millisekunder - {0} ms - {0} ms - minutter {0} min {0} min - - måneder - {0} mån - {0} mån - sekunder {0} s {0} s - - uker - {0} u - {0} u - - - år - {0} år - {0} år - - - centimeter - {0} cm - {0} cm - - - fot - {0} fot - {0} fot - - - tommer - {0} tomme - {0} tommer + + millisekunder + {0} ms + {0} ms kilometer {0} km {0} km - - lysår - {0} lysår - {0} lysår - meter {0} m {0} m - - engelske mil - {0} mi - {0} mi + + centimeter + {0} cm + {0} cm millimeter @@ -3578,35 +3595,55 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + engelske mil + {0} mi + {0} mi + engelske yard {0} yd {0} yd - - gram - {0} g - {0} g + + fot + {0} fot + {0} fot + + + tommer + {0} tomme + {0} tommer + + + lysår + {0} lysår + {0} lysår + + + mil + {0} mil + {0} mil kilogram {0} kg {0} kg - - unser - {0} unse - {0} unser + + gram + {0} g + {0} g skålpund {0} skålpund {0} skålpund - - hestekrafter - {0} hk - {0} hk + + unser + {0} unse + {0} unser kilowatt @@ -3618,6 +3655,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + hestekrafter + {0} hk + {0} hk + hektopascal {0} hPa @@ -3682,6 +3724,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}G {0}G + + {0}° + {0}° + {0}′ {0}′ @@ -3690,26 +3736,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} ac - {0} ac + + {0}km² + {0}km² {0}ha {0}ha - - {0} ft² - {0} ft² - - - {0}km² - {0}km² - {0}m² {0}m² @@ -3718,6 +3752,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} ac + {0} ac + + + {0} ft² + {0} ft² + + + {0}å + {0}å + + + {0}m + {0}m + + + {0}u + {0}u + {0}d {0}d @@ -3726,57 +3780,29 @@ For terms of use, see http://www.unicode.org/copyright.html {0}h {0}h - - {0}ms - {0}ms - {0}m {0}m - - {0}m - {0}m - {0}s {0}s - - {0}u - {0}u - - - {0}å - {0}å - - - {0}cm - {0}cm - - - {0} fot - {0} fot - - - {0} tomme - {0} tommer + + {0}ms + {0}ms {0}km {0}km - - {0} lysår - {0} lysår - {0}m {0}m - - {0} mi - {0} mi + + {0}cm + {0}cm {0}mm @@ -3786,29 +3812,46 @@ For terms of use, see http://www.unicode.org/copyright.html {0}pm {0}pm + + {0} mi + {0} mi + {0} yd {0} yd - - {0}g - {0}g + + {0} fot + {0} fot + + + {0} tomme + {0} tommer + + + {0} lysår + {0} lysår + + + mil + {0}mil + {0}mil {0}kg {0}kg - - {0} unse - {0} unser + + {0}g + {0}g {0} skålpund {0} skålpund - - {0}hk - {0}hk + + {0} unse + {0} unser {0}kW @@ -3818,6 +3861,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}W {0}W + + {0}hk + {0}hk + {0}hPa {0}hPa @@ -3864,13 +3911,16 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm + h.mm + h:mm - h:mm:ss + h.mm.ss + h:mm:ss - m:ss + m.ss + m:ss diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nn_NO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nn_NO.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nn_NO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nn_NO.xml index a058c0b04d8..b5528a68db4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nn_NO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nn_NO.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nnh.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nnh.xml similarity index 81% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nnh.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nnh.xml index 5d773f19b19..e5793f86721 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nnh.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nnh.xml @@ -1,13 +1,12 @@ - - - + @@ -15,11 +14,11 @@ For terms of use, see http://www.unicode.org/copyright.html Shwóŋò pʉa mbasǎ Shwóŋò pamom Shwóŋò pʉa nzsekàʼa - Shwóŋò pafut + Shwóŋò pafud Shwóŋò pʉ̀a njinikom Shwóŋò pakɔsi Shwóŋò mbulu - Shwóŋò ngáŋtʉɔʼ + Shwóŋò ngáŋtÿɔʼ nzǎmɔ̂ɔn ngilísè Shwóŋò pʉa Yɔɔnmendi @@ -108,7 +107,7 @@ For terms of use, see http://www.unicode.org/copyright.html saŋ cÿó saŋ tsɛ̀ɛ cÿó saŋ njÿoláʼ - saŋ tyɛ̀b tyɛ̀b mbʉ̀ + saŋ tyɛ̀b tyɛ̀b mbʉ̀ŋ saŋ mbʉ̀ŋ saŋ ngwɔ̀ʼ mbÿɛ saŋ tàŋa tsetsáʼ @@ -122,7 +121,7 @@ For terms of use, see http://www.unicode.org/copyright.html saŋ cÿó saŋ tsɛ̀ɛ cÿó saŋ njÿoláʼ - saŋ tyɛ̀b tyɛ̀b mbʉ̀ + saŋ tyɛ̀b tyɛ̀b mbʉ̀ŋ saŋ mbʉ̀ŋ saŋ ngwɔ̀ʼ mbÿɛ saŋ tàŋa tsetsáʼ @@ -138,7 +137,7 @@ For terms of use, see http://www.unicode.org/copyright.html saŋ cÿó saŋ tsɛ̀ɛ cÿó saŋ njÿoláʼ - saŋ tyɛ̀b tyɛ̀b mbʉ̀ + saŋ tyɛ̀b tyɛ̀b mbʉ̀ŋ saŋ mbʉ̀ŋ saŋ ngwɔ̀ʼ mbÿɛ saŋ tàŋa tsetsáʼ @@ -152,7 +151,7 @@ For terms of use, see http://www.unicode.org/copyright.html saŋ cÿó saŋ tsɛ̀ɛ cÿó saŋ njÿoláʼ - saŋ tyɛ̀b tyɛ̀b mbʉ̀ + saŋ tyɛ̀b tyɛ̀b mbʉ̀ŋ saŋ mbʉ̀ŋ saŋ ngwɔ̀ʼ mbÿɛ saŋ tàŋa tsetsáʼ @@ -223,6 +222,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + mbaʼámbaʼ + ncwònzém + mbaʼámbaʼ ncwònzém @@ -323,6 +326,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0M + ¤ 0M + ¤ 00M + ¤ 00M + ¤ 000M + ¤ 000M + ¤ 0G + ¤ 0G + ¤ 00G + ¤ 00G + ¤ 000G + ¤ 000G + ¤ 0T + ¤ 0T + ¤ 00T + ¤ 00T + ¤ 000T + ¤ 000T + + @@ -332,3 +363,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nnh_CM.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nnh_CM.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nnh_CM.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nnh_CM.xml index ab01b478f77..3c7c7c9de76 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nnh_CM.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nnh_CM.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nus.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nus.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nus.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nus.xml index 8cefd14125f..6921b0f6713 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nus.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nus.xml @@ -1,13 +1,12 @@ - - - + @@ -274,6 +273,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + RW + + RW @@ -423,7 +426,31 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤00K + ¤000K + ¤0M + ¤00M + ¤000M + ¤0G + ¤00G + ¤000G + ¤0T + ¤00T + ¤000T + + + + + GB£ + + + £ + + @@ -432,3 +459,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nus_SD.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nus_SS.xml similarity index 63% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nus_SD.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nus_SS.xml index 91f6ebff22f..eee75e526d2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nus_SD.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nus_SS.xml @@ -1,14 +1,14 @@ - - - + - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nyn.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nyn.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nyn.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nyn.xml index e605acfd2a1..ddc7df7a9fd 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nyn.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nyn.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angwira Arubania Arimeniya - Antiri za Hoorandi Angora Arigentina Samowa ya Ameerika @@ -480,22 +478,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -572,6 +570,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00 + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nyn_UG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nyn_UG.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nyn_UG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nyn_UG.xml index 8724814d7a6..04f2b42f647 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/nyn_UG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/nyn_UG.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/om.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/om.xml similarity index 84% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/om.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/om.xml index 100fa8375dc..dc6ff80b939 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/om.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/om.xml @@ -1,13 +1,12 @@ - - - + @@ -240,6 +239,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + WD + WB + WD WB @@ -324,6 +327,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00 + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + @@ -357,3 +388,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/om_ET.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/om_ET.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/om_ET.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/om_ET.xml index ecee48dc763..ca203fa4ad3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/om_ET.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/om_ET.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/om_KE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/om_KE.xml new file mode 100644 index 00000000000..1acca693e53 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/om_KE.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + Ksh + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/or.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/or.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/or.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/or.xml index 0489568136f..158eb194a55 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/or.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/or.xml @@ -1,13 +1,12 @@ - - - + @@ -628,7 +627,6 @@ For terms of use, see http://www.unicode.org/copyright.html ଆଙ୍ଗୁଇଲ୍ଲା ଆଲବାନିଆ ଆର୍ମେନିଆ - ନେଦରଲ୍ୟାଣ୍ଡସ୍ ଆଣ୍ଟିଲିଜ୍ ଆଙ୍ଗୋଲା ଆର୍ଣ୍ଟକଟିକା ଆର୍ଜେଣ୍ଟିନା @@ -1036,6 +1034,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + am + pm + am pm @@ -1143,6 +1145,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##,##0.00 + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0M + ¤ 0M + ¤ 00M + ¤ 00M + ¤ 000M + ¤ 000M + ¤ 0G + ¤ 0G + ¤ 00G + ¤ 00G + ¤ 000G + ¤ 000G + ¤ 0T + ¤ 0T + ¤ 00T + ¤ 00T + ¤ 000T + ¤ 000T + + @@ -1157,3 +1187,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/or_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/or_IN.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/or_IN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/or_IN.xml index 3822810012f..c9edbb8ab00 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/or_IN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/or_IN.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/os.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/os.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/os.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/os.xml index ac11e877cf2..2d3208ccc09 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/os.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/os.xml @@ -1,13 +1,12 @@ - - - + @@ -122,10 +121,10 @@ For terms of use, see http://www.unicode.org/copyright.html Нымӕцтӕ - Грегориан къӕлиндар - Уирӕгты къӕлиндар - Нырыккон цифрӕтӕ - Персайнаг къӕлиндар + Грегориан къӕлиндар + Уирӕгты къӕлиндар + Персайнаг къӕлиндар + Нырыккон цифрӕтӕ Метрикон @@ -278,7 +277,7 @@ For terms of use, see http://www.unicode.org/copyright.html фев. мар. апр. - мая + майы июны июлы авг. @@ -320,7 +319,7 @@ For terms of use, see http://www.unicode.org/copyright.html Янв. Февр. - Март + Март. Апр. Май Июнь @@ -465,6 +464,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + AM + PM + ӕмбисбоны размӕ ӕмбисбоны фӕстӕ @@ -770,6 +773,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0M + ¤ 0M + ¤ 00M + ¤ 00M + ¤ 000M + ¤ 000M + ¤ 0G + ¤ 0G + ¤ 00G + ¤ 00G + ¤ 000G + ¤ 000G + ¤ 0T + ¤ 0T + ¤ 00T + ¤ 00T + ¤ 000T + ¤ 000T + + {0} {1} {0} {1} @@ -796,6 +827,7 @@ For terms of use, see http://www.unicode.org/copyright.html Лар лар лары + Сом @@ -817,6 +849,21 @@ For terms of use, see http://www.unicode.org/copyright.html + + азы + {0} аз + {0} азы + + + мӕйы + {0} мӕй + {0} мӕйы + + + къуырийы + {0} къуыри + {0} къуырийы + боны {0} бон @@ -832,28 +879,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} минут {0} минуты - - мӕйы - {0} мӕй - {0} мӕйы - секунды {0} секунд {0} секунды - - къуырийы - {0} къуыри - {0} къуырийы - - - азы - {0} аз - {0} азы - + + азы + + + мӕйы + + + къуырийы + боны {0} бон @@ -869,18 +910,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мин. {0} мин. - - мӕйы - секунды - - къуырийы - - - азы - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/os_GE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/os_GE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/os_GE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/os_GE.xml index b4ffb6483d3..68fbcec7fd1 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/os_GE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/os_GE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/os_RU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/os_RU.xml similarity index 70% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/os_RU.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/os_RU.xml index b695781f00e..225c3a67838 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/os_RU.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/os_RU.xml @@ -1,21 +1,24 @@ - - - + + + GEL + - руб. + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pa.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pa.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pa.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pa.xml index 465d52e913a..29115d115a9 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pa.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pa.xml @@ -1,13 +1,12 @@ - - - + @@ -37,6 +36,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਬੇਮਬਾ ਬੇਨਾ ਬੁਲਗਾਰੀਆਈ + ਪੱਛਮੀ ਬਲੂਚੀ ਭੋਜਪੁਰੀ ਬੰਬਾਰਾ ਬੰਗਾਲੀ @@ -49,9 +49,10 @@ For terms of use, see http://www.unicode.org/copyright.html ਚੀਗਾ ਮਾਰੀ ਚੇਰੋਕੀ - ਸੋਰਾਨੀ ਕੁਰਦਿਸ਼ + ਕੇਂਦਰੀ ਕੁਰਦਿਸ਼ ਕੋਰਸੀਕਨ ਚੈਕ + ਚੁਵਾਸ਼ ਵੈਲਜ਼ ਡੈਨਿਸ਼ ਟੇਟਾ @@ -147,6 +148,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਲਕੋਟਾ ਲਿੰਗਾਲਾ ਲਾਓ + ਉੱਤਰੀ ਲੁਰੀ ਲਿਥੁਆਨੀਅਨ ਲੂਬਾ-ਕਾਟਾਂਗਾ ਲੂਓ @@ -171,9 +173,12 @@ For terms of use, see http://www.unicode.org/copyright.html ਮੁੰਡੇਂਗ ਕਈ ਭਾਸ਼ਾਵਾਂ ਬਰਮੀ + ਮੇਜ਼ੈਂਡਰਾਨੀ ਨਾਮਾ ਨਾਰਵੇਜਿਆਈ ਬੋਕਮਲ ਉੱਤਰੀ ਨਡੇਬੇਲੇ + ਲੋ ਜਰਮਨ + ਲੋ ਸੈਕਸਨ ਨੇਪਾਲੀ ਡੱਚ ਫਲੈਮਿਸ਼ @@ -208,6 +213,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਸੰਥਾਲੀ ਸੇਂਗੋ ਸਿੰਧੀ + ਦੱਖਣੀ ਕੁਰਦਿਸ਼ ਉੱਤਰੀ ਸਾਮੀ ਸੇਨਾ ਕੋਇਰਾਬੋਰੋ ਸੇਂਨੀ @@ -225,10 +231,10 @@ For terms of use, see http://www.unicode.org/copyright.html ਸੋਮਾਲੀ ਅਲਬਾਨੀਆਈ ਸਰਬੀਆਈ - ਸੂਡਾਨੀ + ਸੂੰਡਾਨੀ ਸਵੀਡਿਸ਼ ਸਵਾਹਿਲੀ - ਕਾਂਗੋ ਸਵਾਹਿਲੀ + ਕਾਂਗੋ ਸਵਾਹਿਲੀ ਤਮਿਲ ਤੇਲਗੂ ਟੇਸੋ @@ -244,12 +250,13 @@ For terms of use, see http://www.unicode.org/copyright.html ਮੱਧ ਐਟਲਸ ਤਮਾਜ਼ਿਤ ਉਇਗੁਰ ਯੂਕਰੇਨੀਆਈ - ਅਣਪਛਾਤੀ ਭਾਸ਼ਾ + ਅਗਿਆਤ ਭਾਸ਼ਾ ਉਰਦੂ ਉਜ਼ਬੇਕ ਵਾਈ ਵੀਅਤਨਾਮੀ ਵੂੰਜੋ + ਵਾਲਪੁਰੀ ਵੋਲੋਫ ਖੋਸਾ ਸੋਗਾ @@ -611,63 +618,76 @@ For terms of use, see http://www.unicode.org/copyright.html ਕੈਲੰਡਰ ਲੜੀਬੱਧ ਕ੍ਰਮ ਮੁਦਰਾ - ਸੰਖਿਆ + ਘੰਟੇ ਦਾ ਚੱਕਰ (12 ਬਨਾਮ 24) + ਰੇਖਾ ਵਿੱਥ ਸ਼ੈਲੀ + ਮਾਪ ਪ੍ਰਣਾਲੀ + ਸੰਖਿਆਵਾਂ - ਅਰਬੀ-ਭਾਰਤੀ ਅੰਕ - ਵਿਸਤਾਰਿਤ ਅਰਬੀ-ਭਾਰਤੀ ਅੰਕ - ਆਰਮੀਨੀਅਨ ਸੰਖਿਆਵਾਂ - ਆਰਮੀਨੀਅਨ ਲੋਅਰਕੇਸ ਸੰਖਿਆਵਾਂ - ਬੰਗਾਲੀ ਅੰਕ - ਬਰਾਹਮੀ ਅੰਕ - ਬੋਧੀ ਕੈਲੰਡਰ - ਚੀਨੀ ਕੈਲੰਡਰ - ਡਾਂਗੀ ਕੈਲੰਡਰ - ਦੇਵਨਾਗਰੀ ਅੰਕ - ਸ਼ਬਦ-ਕੋਸ਼ ਲੜੀਬੱਧ ਕ੍ਰਮ - ਮੂਲ ਯੂਨੀਕੋਡ ਲੜੀਬੱਧ ਕ੍ਰਮ - ਐਥਿਓਪਿਕ ਸੰਖਿਆਵਾਂ - ਇਥੀਓਪਿਕ ਕੈਲੰਡਰ - ਪੂਰਨ ਵਿਸਤਾਰ ਅੰਕ - ਜਾਰਜੀਅਨ ਸੰਖਿਆਵਾਂ - ਗਰੇਗੋਰੀਅਨ ਕੈਲੰਡਰ - ਗ੍ਰੀਕ ਸੰਖਿਆਵਾਂ - ਗ੍ਰੀਕ ਲੋਅਰਕੇਸ ਸੰਖਿਆਵਾਂ - ਗੁਜਰਾਤੀ ਅੰਕ - ਗੁਰਮੁਖੀ ਅੰਕ - ਚੀਨੀ ਦਸ਼ਮਲਵ ਸੰਖਿਆਵਾਂ - ਸਰਲ ਚੀਨੀ ਸੰਖਿਆਵਾਂ - ਸਰਲ ਚੀਨੀ ਵਿੱਤੀ ਸੰਖਿਆਵਾਂ - ਰਵਾਇਤੀ ਚੀਨੀ ਸੰਖਿਆਵਾਂ - ਰਵਾਇਤੀ ਚੀਨੀ ਵਿੱਤੀ ਸੰਖਿਆਵਾਂ - ਹਿਬਰੂ ਸੰਖਿਆਵਾਂ - ਹਿਬਰੂ ਕੈਲੰਡਰ - ਭਾਰਤੀ ਕੌਮੀ ਕੈਲੰਡਰ - ਇਸਲਾਮੀ ਕੈਲੰਡਰ - (ISO-8601) ਕੈਲੰਡਰ - ਜਪਾਨੀ ਕੈਲੰਡਰ - ਜਾਪਾਨੀ ਸੰਖਿਆਵਾਂ - ਜਾਪਾਨੀ ਵਿੱਤੀ ਸੰਖਿਆਵਾਂ - ਖਮੇਰ ਅੰਕ - ਕੰਨੜ ਅੰਕ - ਲਾਓ ਅੰਕ - ਪੱਛਮੀ ਅੰਕ - ਮਲਿਆਲਮ ਅੰਕ - ਮੰਗੋਲ ਅੰਕ - ਮਿਆਂਮਾਰ ਅੰਕ - ਉੜੀਆ ਅੰਕ - ਫ਼ਾਰਸੀ ਕੈਲੰਡਰ - ਮਿੰਗੂਓ ਕੈਲੰਡਰ - ਰੋਮਨ ਸੰਖਿਆਵਾਂ - ਰੋਮਨ ਲੋਅਰਕੇਸ ਸੰਖਿਆਵਾਂ - ਆਮ-ਮੰਤਵ ਖੋਜ - ਸਧਾਰਨ ਲੜੀਬੱਧ ਕ੍ਰਮ - ਰਵਾਇਤੀ ਤਮਿਲ ਸੰਖਿਆਵਾਂ - ਤਮਿਲ ਅੰਕ - ਤੇਲਗੂ ਅੰਕ - ਥਾਈ ਅੰਕ - ਤਿੱਬਤੀ ਅੰਕ - ਰਵਾਇਤੀ ਲੜੀਬੱਧ ਕ੍ਰਮ + ਬੋਧੀ ਕੈਲੰਡਰ + ਚੀਨੀ ਕੈਲੰਡਰ + ਡਾਂਗੀ ਕੈਲੰਡਰ + ਇਥੀਓਪਿਕ ਕੈਲੰਡਰ + ਗਰੇਗੋਰੀਅਨ ਕੈਲੰਡਰ + ਹਿਬਰੂ ਕੈਲੰਡਰ + ਭਾਰਤੀ ਕੌਮੀ ਕੈਲੰਡਰ + ਇਸਲਾਮੀ ਕੈਲੰਡਰ + (ISO-8601) ਕੈਲੰਡਰ + ਜਪਾਨੀ ਕੈਲੰਡਰ + ਫ਼ਾਰਸੀ ਕੈਲੰਡਰ + ਮਿੰਗੂਓ ਕੈਲੰਡਰ + ਸ਼ਬਦ-ਕੋਸ਼ ਲੜੀਬੱਧ ਕ੍ਰਮ + ਮੂਲ ਯੂਨੀਕੋਡ ਲੜੀਬੱਧ ਕ੍ਰਮ + ਆਮ-ਮੰਤਵ ਖੋਜ + ਸਧਾਰਨ ਲੜੀਬੱਧ ਕ੍ਰਮ + ਰਵਾਇਤੀ ਲੜੀਬੱਧ ਕ੍ਰਮ + 12 ਘੰਟੇ ਦੀ ਪੱਧਤੀ (0–11) + 12 ਘੰਟੇ ਦੀ ਪੱਧਤੀ (1–12) + 24 ਘੰਟੇ ਦੀ ਪੱਧਤੀ (0–23) + 24 ਘੰਟੇ ਦੀ ਪੱਧਤੀ (1–24) + ਖੁੱਲ੍ਹੀ ਰੇਖਾ ਵਿੱਥ ਸ਼ੈਲੀ + ਸਧਾਰਨ ਰੇਖਾ ਵਿੱਥ ਸ਼ੈਲੀ + ਪੱਕੀ ਰੇਖਾ ਵਿੱਥ ਸ਼ੈਲੀ + ਮੀਟਰਿਕ ਪ੍ਰਣਾਲੀ + ਇੰਪੀਰੀਅਲ ਮਾਪ ਪ੍ਰਣਾਲੀ + ਅਮਰੀਕੀ ਮਾਪ ਪ੍ਰਣਾਲੀ + ਅਰਬੀ-ਭਾਰਤੀ ਅੰਕ + ਵਿਸਤਾਰਿਤ ਅਰਬੀ-ਭਾਰਤੀ ਅੰਕ + ਆਰਮੀਨੀਅਨ ਸੰਖਿਆਵਾਂ + ਆਰਮੀਨੀਅਨ ਲੋਅਰਕੇਸ ਸੰਖਿਆਵਾਂ + ਬੰਗਾਲੀ ਅੰਕ + ਬਰਾਹਮੀ ਅੰਕ + ਦੇਵਨਾਗਰੀ ਅੰਕ + ਐਥਿਓਪਿਕ ਸੰਖਿਆਵਾਂ + ਪੂਰਨ ਵਿਸਤਾਰ ਅੰਕ + ਜਾਰਜੀਅਨ ਸੰਖਿਆਵਾਂ + ਗ੍ਰੀਕ ਸੰਖਿਆਵਾਂ + ਗ੍ਰੀਕ ਲੋਅਰਕੇਸ ਸੰਖਿਆਵਾਂ + ਗੁਜਰਾਤੀ ਅੰਕ + ਗੁਰਮੁਖੀ ਅੰਕ + ਚੀਨੀ ਦਸ਼ਮਲਵ ਸੰਖਿਆਵਾਂ + ਸਰਲ ਚੀਨੀ ਸੰਖਿਆਵਾਂ + ਸਰਲ ਚੀਨੀ ਵਿੱਤੀ ਸੰਖਿਆਵਾਂ + ਰਵਾਇਤੀ ਚੀਨੀ ਸੰਖਿਆਵਾਂ + ਰਵਾਇਤੀ ਚੀਨੀ ਵਿੱਤੀ ਸੰਖਿਆਵਾਂ + ਹਿਬਰੂ ਸੰਖਿਆਵਾਂ + ਜਾਪਾਨੀ ਸੰਖਿਆਵਾਂ + ਜਾਪਾਨੀ ਵਿੱਤੀ ਸੰਖਿਆਵਾਂ + ਖਮੇਰ ਅੰਕ + ਕੰਨੜ ਅੰਕ + ਲਾਓ ਅੰਕ + ਪੱਛਮੀ ਅੰਕ + ਮਲਿਆਲਮ ਅੰਕ + ਮੰਗੋਲ ਅੰਕ + ਮਿਆਂਮਾਰ ਅੰਕ + ਉੜੀਆ ਅੰਕ + ਰੋਮਨ ਸੰਖਿਆਵਾਂ + ਰੋਮਨ ਲੋਅਰਕੇਸ ਸੰਖਿਆਵਾਂ + ਰਵਾਇਤੀ ਤਮਿਲ ਸੰਖਿਆਵਾਂ + ਤਮਿਲ ਅੰਕ + ਤੇਲਗੂ ਅੰਕ + ਥਾਈ ਅੰਕ + ਤਿੱਬਤੀ ਅੰਕ ਮੀਟਰਿਕ @@ -747,19 +767,21 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E, d G y MMM y G d MMM,y G E, d MMM y G - HH:mm:ss + HH:mm:ss L d/M E, d/M LLL d MMM E, d MMM - mm:ss + MMMM d + mm:ss y G MMM y G QQQ y G @@ -770,6 +792,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y G d MMM y G E, d MMM y G + G y MMMM QQQ y G QQQQ y G @@ -824,12 +847,12 @@ For terms of use, see http://www.unicode.org/copyright.html d – d, MMM y G d MMM – d MMM y G - d, MMM – d, MMM y G + d, MMM y – d, MMM y G E, d MMM – E, d MMM y G E, d MMM – E, d MMM y G - E, d MMM – E, d MMM y G + E, d MMM y – E, d MMM y G MMMM – MMMM y G @@ -1051,15 +1074,61 @@ For terms of use, see http://www.unicode.org/copyright.html + + ਅੱਧੀ ਰਾਤ + ਪੂ.ਦੁ. + ਬਾ.ਦੁ. + ਸਵੇਰੇ + ਦੁਪਹਿਰੇ + ਸ਼ਾਮੀਂ + ਰਾਤੀਂ + + ਅੱਧੀ ਰਾਤ ਸ. - ਦੁ. ਸ਼. + ਸਵੇਰ + ਦੁਪ. + ਸ਼ਾਮ + ਰਾਤ + ਅੱਧੀ ਰਾਤ ਪੂ.ਦੁ. - ਦੁਪਹਿਰ ਬਾ.ਦੁ. + ਸਵੇਰ + ਦੁਪਹਿਰ + ਸ਼ਾਮ + ਰਾਤ + + + + + ਅੱਧੀ ਰਾਤ + ਪੂ.ਦੁ. + ਬਾ.ਦੁ. + ਸਵੇਰ + ਦੁਪਹਿਰ + ਸ਼ਾਮ + ਰਾਤ + + + ਅੱਧੀ ਰਾਤ + ਪੂ.ਦੁ. + ਬਾ.ਦੁ. + ਸਵੇਰ + ਦੁਪਹਿਰ + ਸ਼ਾਮ + ਰਾਤ + + + ਅੱਧੀ ਰਾਤ + ਪੂ.ਦੁ. + ਬਾ.ਦੁ. + ਸਵੇਰ + ਦੁਪਹਿਰ + ਸ਼ਾਮ + ਰਾਤ @@ -1162,17 +1231,21 @@ For terms of use, see http://www.unicode.org/copyright.html E d MMM, G y h a HH - HH:mm:ss h:mm a HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d/M E, dd-MM. LLL d MMM E, d MMM + MMMM d mm:ss mm:ss y @@ -1182,6 +1255,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y d MMM y E, d MMM y + y MMMM QQQ y QQQQ y @@ -1403,6 +1477,9 @@ For terms of use, see http://www.unicode.org/copyright.html ਸਾਲ + ਪਿਛਲਾ ਸਾਲ + ਇਹ ਸਾਲ + ਅਗਲਾ ਸਾਲ {0} ਸਾਲ ਵਿੱਚ {0} ਸਾਲਾਂ ਵਿੱਚ @@ -1414,6 +1491,9 @@ For terms of use, see http://www.unicode.org/copyright.html ਸਾਲ + ਪਿਛਲਾ ਸਾਲ + ਇਹ ਸਾਲ + ਅਗਲਾ ਸਾਲ {0} ਸਾਲ ਵਿੱਚ {0} ਸਾਲਾਂ ਵਿੱਚ @@ -1425,6 +1505,9 @@ For terms of use, see http://www.unicode.org/copyright.html ਤਿਮਾਹੀ + ਪਿਛਲੀ ਤਿਮਾਹੀ + ਇਹ ਤਿਮਾਹੀ + ਅਗਲੀ ਤਿਮਾਹੀ {0} ਤਿਮਾਹੀ ਵਿੱਚ {0} ਤਿਮਾਹੀਆਂ ਵਿੱਚ @@ -1436,6 +1519,9 @@ For terms of use, see http://www.unicode.org/copyright.html ਤਿਮਾਹੀ + ਪਿਛਲੀ ਤਿਮਾਹੀ + ਇਹ ਤਿਮਾਹੀ + ਅਗਲੀ ਤਿਮਾਹੀ {0} ਤਿਮਾਹੀ ਵਿੱਚ {0} ਤਿਮਾਹੀਆਂ ਵਿੱਚ @@ -1447,13 +1533,16 @@ For terms of use, see http://www.unicode.org/copyright.html ਤਿਮਾਹੀ + ਪਿਛਲੀ ਤਿਮਾਹੀ + ਇਹ ਤਿਮਾਹੀ + ਅਗਲੀ ਤਿਮਾਹੀ - +{0} ਤਿਮਾਹੀ - +{0} ਤਿਮਾਹੀਆਂ + {0} ਤਿਮਾਹੀਆਂ ਵਿੱਚ + {0} ਤਿਮਾਹੀਆਂ ਵਿੱਚ - -{0} ਤਿਮਾਹੀ - -{0} ਤਿਮਾਹੀਆਂ + {0} ਤਿਮਾਹੀਆਂ ਪਹਿਲਾਂ + {0} ਤਿਮਾਹੀਆਂ ਪਹਿਲਾਂ @@ -1472,6 +1561,9 @@ For terms of use, see http://www.unicode.org/copyright.html ਮਹੀਨਾ + ਪਿਛਲਾ ਮਹੀਨਾ + ਇਹ ਮਹੀਨਾ + ਅਗਲਾ ਮਹੀਨਾ {0} ਮਹੀਨੇ ਵਿੱਚ {0} ਮਹੀਨਿਆਂ ਵਿੱਚ @@ -1483,6 +1575,9 @@ For terms of use, see http://www.unicode.org/copyright.html ਮਹੀਨਾ + ਪਿਛਲਾ ਮਹੀਨਾ + ਇਹ ਮਹੀਨਾ + ਅਗਲਾ ਮਹੀਨਾ {0} ਮਹੀਨੇ ਵਿੱਚ {0} ਮਹੀਨਿਆਂ ਵਿੱਚ @@ -1508,6 +1603,9 @@ For terms of use, see http://www.unicode.org/copyright.html ਹਫ਼ਤਾ + ਪਿਛਲਾ ਹਫ਼ਤਾ + ਇਹ ਹਫ਼ਤਾ + ਅਗਲਾ ਹਫ਼ਤਾ {0} ਹਫ਼ਤੇ ਵਿੱਚ {0} ਹਫ਼ਤਿਆਂ ਵਿੱਚ @@ -1519,6 +1617,9 @@ For terms of use, see http://www.unicode.org/copyright.html ਹਫ਼ਤਾ + ਪਿਛਲਾ ਹਫ਼ਤਾ + ਇਹ ਹਫ਼ਤਾ + ਅਗਲਾ ਹਫ਼ਤਾ {0} ਹਫ਼ਤੇ ਵਿੱਚ {0} ਹਫ਼ਤਿਆਂ ਵਿੱਚ @@ -1788,7 +1889,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਮਿਆਰੀ ਸਮਾਂ {1} ({0}) - ਅਣਪਛਾਤਾ ਸ਼ਹਿਰ + ਅਗਿਆਤ ਸ਼ਹਿਰ ਅੰਡੋਰਾ @@ -2654,6 +2755,9 @@ For terms of use, see http://www.unicode.org/copyright.html ਪੋਰਟ ਮੋਰੇਸਬੀ + + ਬੋਗਨਵਿਲੇ + ਮਨੀਲਾ @@ -2738,6 +2842,9 @@ For terms of use, see http://www.unicode.org/copyright.html ਇਰਕੁਤਸਕ + + ਚਿਤਾ + ਯਕੁਤਸਕ @@ -2756,6 +2863,9 @@ For terms of use, see http://www.unicode.org/copyright.html ਮੈਗੇਡਨ + + ਸਰਿਡਨੀਕੋਲਿਸਕ + ਕਮਚਟਕਾ @@ -3009,7 +3119,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਸੇਂਟ ਥੋਮਸ - ਹੋ ਚਾਈ ਮਿਨ੍ਹ ਸਿਟੀ + ਹੋ ਚੀ ਮਿਨ੍ਹ ਸਿਟੀ ਇਫੇਟ @@ -3986,7 +4096,6 @@ For terms of use, see http://www.unicode.org/copyright.html ؉ NaN - ٫ . @@ -4115,6 +4224,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0 ਹਜ਼ਾਰ + ¤ 0 ਹਜ਼ਾਰ + ¤ 00 ਹਜ਼ਾਰ + ¤ 00 ਹਜ਼ਾਰ + ¤ 0 ਲੱਖ + ¤ 0 ਲੱਖ + ¤ 00 ਲੱਖ + ¤ 00 ਲੱਖ + ¤ 0 ਕਰੋੜ + ¤ 0 ਕਰੋੜ + ¤ 00 ਕਰੋੜ + ¤ 00 ਕਰੋੜ + ¤ 0 ਅਰਬ + ¤ 0 ਅਰਬ + ¤ 00 ਅਰਬ + ¤ 00 ਅਰਬ + ¤ 0 ਖਰਬ + ¤ 0 ਖਰਬ + ¤ 00 ਖਰਬ + ¤ 00 ਖਰਬ + ¤ 0 ਨੀਲ + ¤ 0 ਨੀਲ + ¤ 00 ਨੀਲ + ¤ 00 ਨੀਲ + + {0} {1} {0} {1} @@ -4154,6 +4291,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਅੰਗੋਲਾ ਕਵਾਂਜਾ ਅੰਗੋਲਾ ਕਵਾਂਜਾ AOA + Kz ਅਰਜਨਟੀਨੀ ਅਸਟਰਾਲ @@ -4210,6 +4348,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਬੋਸਨੀਆ-ਹਰਜ਼ੇਗੋਵੀਨਾ ਬਦਲਣਯੋਗ ਮਾਰਕ ਬੋਸਨੀਆ-ਹਰਜ਼ੇਗੋਵੀਨਾ ਬਦਲਣਯੋਗ ਮਾਰਕ BAM + KM ਬਾਰਬਾਡੀਅਨ ਡਾਲਰ @@ -4262,6 +4401,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਬੋਲੀਵੀਅਨ ਬੋਲੀਵੀਅਨੋ ਬੋਲੀਵੀਅਨ ਬੋਲੀਵੀਅਨੋ BOB + Bs ਬੋਲੀਵੀਆਈ ਬੋਲੀਵੀਅਨੋ (1863–1963) @@ -4342,6 +4482,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਬੋਟਸਵਾਨਾ ਪੁਲਾ ਬੋਟਸਵਾਨਾ ਪੁਲਾ BWP + P ਬੇਲਾਰੂਸੀ ਰੂਬਲ @@ -4409,6 +4550,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਕਿਊਬਨ ਬਦਲਣਯੋਗ ਪੇਸੋ ਕਿਊਬਨ ਬਦਲਣਯੋਗ ਪੇਸੋ CUC + $ ਕਿਊਬਨ ਪੇਸੋ @@ -4428,6 +4570,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਚੈਕ ਗਣਰਾਜ ਕੋਰੁਨਾ ਚੈਕ ਗਣਰਾਜ ਕੋਰੁਨਾ CZK + ਜਰਮਨ ਮਾਰਕ @@ -4446,6 +4589,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਡੈਨਿਸ਼ ਕਰੌਨ ਡੈਨਿਸ਼ ਕਰੌਨ DKK + kr ਡੌਮਿਨਿਕਨ ਪੇਸੋ @@ -4465,6 +4609,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਮਿਸਰੀ ਪੌਂਡ ਮਿਸਰੀ ਪੌਂਡ EGP + ਇਰੀਟ੍ਰਿਆਈ ਨਾਫ਼ਾ @@ -4497,11 +4642,12 @@ For terms of use, see http://www.unicode.org/copyright.html ਫ਼ਾਕਲੈਂਡ ਆਈਲੈਂਡਸ ਪੌਂਡ ਫ਼ਾਕਲੈਂਡ ਆਈਲੈਂਡਸ ਪੌਂਡ FKP + £ - ਬ੍ਰਿਟਿਸ਼ ਪੌਂਡ ਸਟਰਲਿੰਗ - ਬ੍ਰਿਟਿਸ਼ ਪੌਂਡ ਸਟਰਲਿੰਗ - ਬ੍ਰਿਟਿਸ਼ ਪੌਂਡ ਸਟਰਲਿੰਗ + ਬ੍ਰਿਟਿਸ਼ ਪੌਂਡ + ਬ੍ਰਿਟਿਸ਼ ਪੌਂਡ + ਬ੍ਰਿਟਿਸ਼ ਪੌਂਡ £ £ @@ -4510,6 +4656,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਜਾਰਜੀਆਈ ਲਾਰੀ ਜਾਰਜੀਆਈ ਲਾਰੀ GEL + ਘਾਨਾਈ ਸੇਡੀ @@ -4535,12 +4682,14 @@ For terms of use, see http://www.unicode.org/copyright.html ਗਿਨੀ ਫ੍ਰੈਂਕ ਗਿਨੀ ਫ੍ਰੈਂਕ GNF + FG ਗੁਆਟੇਮਾਲਾ ਕੁਏਟਜ਼ਲ ਗੁਆਟੇਮਾਲਾ ਕੁਏਟਜ਼ਲ ਗੁਆਟੇਮਾਲਾ ਕੁਏਟਜ਼ਲ GTQ + Q ਗੁਆਨਾਆਈ ਡਾਲਰ @@ -4561,12 +4710,14 @@ For terms of use, see http://www.unicode.org/copyright.html ਹਾਨਡੂਰਨ ਲੇਮਪਿਰਾ ਹਾਨਡੂਰਨ ਲੇਮਪਿਰਾ HNL + L ਕਰੋਏਸ਼ੀਆਈ ਕੁਨਾ ਕਰੋਏਸ਼ੀਆਈ ਕੁਨਾ ਕਰੋਏਸ਼ੀਆਈ ਕੁਨਾ HRK + kn ਹੈਤੀ ਗੌਰਡੇ @@ -4579,12 +4730,14 @@ For terms of use, see http://www.unicode.org/copyright.html ਹੰਗਰੀ ਫੋਰਿੰਟ ਹੰਗਰੀ ਫੋਰਿੰਟ HUF + Ft ਇੰਡੋਨੇਸ਼ੀਆਈ ਰੁਪਿਆਹ ਇੰਡੋਨੇਸ਼ੀਆਈ ਰੁਪਿਆਹ ਇੰਡੋਨੇਸ਼ੀਆਈ ਰੁਪਿਆਹ IDR + Rp ਆਇਰਿਸ਼ ਪੌਂਡ @@ -4628,6 +4781,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਆਈਸਲੈਂਡਿਕ ਕਰੌਨ ਆਈਸਲੈਂਡਿਕ ਕਰੌਨ ISK + kr ਜਮਾਇਕਨ ਡਾਲਰ @@ -4673,12 +4827,14 @@ For terms of use, see http://www.unicode.org/copyright.html ਕੋਮੋਰੀਅਨ ਫ੍ਰੈਂਕ ਕੋਮੋਰੀਅਨ ਫ੍ਰੈਂਕ KMF + CF ਉੱਤਰੀ ਕੋਰੀਆਈ ਵੋਨ ਉੱਤਰੀ ਕੋਰੀਆਈ ਵੋਨ ਉੱਤਰੀ ਕੋਰੀਆਈ ਵੋਨ KPW + ਦੱਖਣੀ ਕੋਰੀਆਈ ਵੋਨ @@ -4719,12 +4875,14 @@ For terms of use, see http://www.unicode.org/copyright.html ਲੈਬਨਾਨੀ ਪੌਂਡ ਲੈਬਨਾਨੀ ਪੌਂਡ LBP + ਸ੍ਰੀਲੰਕਾਈ ਰੁਪਇਆ ਸ੍ਰੀਲੰਕਾਈ ਰੁਪਇਆ ਸ੍ਰੀਲੰਕਾਈ ਰੁਪਏ LKR + Rs ਲਾਈਬੀਰੀਆਈ ਡਾਲਰ @@ -4768,6 +4926,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਮਾਲਾਗਾਸੀ ਅਰਾਇਰੀ ਮਾਲਾਗਾਸੀ ਅਰਾਇਰੀ MGA + Ar ਮੈਕਡੋਨੀਆਈ ਡੇਨਾਰ @@ -4780,6 +4939,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਮਿਆਂਮਾਰ ਕਿਆਤ ਮਿਆਂਮਾਰ ਕਿਆਤ MMK + K ਮੰਗੋਲੀਆਈ ਤੁਗਰਿਕ @@ -4805,6 +4965,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਮੌਰਿਸ਼ੀਆਈ ਰੁਪਇਆ ਮੌਰਿਸ਼ੀਆਈ ਰੁਪਏ MUR + Rs ਮਾਲਦੀਵੀ ਰੁਫੀਆ @@ -4830,6 +4991,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਮਲੇਸ਼ੀਆਈ ਰਿੰਗਿਟ ਮਲੇਸ਼ੀਆਈ ਰਿੰਗਿਟ MYR + RM ਮੋਜ਼ਾਮਬੀਕਨ ਮੈਟੀਕਲ @@ -4856,18 +5018,21 @@ For terms of use, see http://www.unicode.org/copyright.html ਨਿਕਾਰਾਗੁਆਈ ਕੋਰਡੋਬਾ ਨਿਕਾਰਾਗੁਆਈ ਕੋਰਡੋਬਾ NIO + C$ ਨਾਰਵੇਜੀਆਈ ਕਰੌਨ ਨਾਰਵੇਜੀਆਈ ਕਰੌਨ ਨਾਰਵੇਜੀਆਈ ਕਰੌਨ NOK + kr ਨੇਪਾਲੀ ਰੁਪਇਆ ਨੇਪਾਲੀ ਰੁਪਇਆ ਨੇਪਾਲੀ ਰੁਪਏ NPR + Rs ਨਿਊਜ਼ੀਲੈਂਡ ਡਾਲਰ @@ -4912,12 +5077,14 @@ For terms of use, see http://www.unicode.org/copyright.html ਪਾਕਿਸਤਾਨੀ ਰੁਪਇਆ ਪਾਕਿਸਤਾਨੀ ਰੁਪਏ PKR + Rs ਪੋਲੈਂਡੀ ਜ਼ਲੌਟੀ ਪੋਲੈਂਡੀ ਜ਼ਲੌਟੀ ਪੋਲੈਂਡੀ ਜ਼ਲੌਟੀ PLN + ਪੈਰਾਗੁਵਾਇਨ ਗੁਆਰਾਨੀ @@ -4949,6 +5116,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਰੂਸੀ ਰੂਬਲ ਰੂਸੀ ਰੂਬਲ RUB + р. @@ -4958,6 +5126,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਰਵਾਂਡਨ ਫ੍ਰੈਂਕ ਰਵਾਂਡਨ ਫ੍ਰੈਂਕ RWF + RF ਸਾਊਦੀ ਰਿਆਲ @@ -4989,6 +5158,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਸਵੀਡਿਸ਼ ਕਰੋਨਾ ਸਵੀਡਿਸ਼ ਕਰੋਨਾ SEK + kr ਸਿੰਗਾਪੁਰ ਡਾਲਰ @@ -5002,6 +5172,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਸੇਂਟ ਹੇਲੇਨਾ ਪੌਂਡ ਸੇਂਟ ਹੇਲੇਨਾ ਪੌਂਡ SHP + £ ਸਿਏਰਾ ਲਿਓਨੀਅਨ ਲਿਓਨ @@ -5034,6 +5205,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਸਾਉ ਟੋਮੀ ਐਂਡ ਪ੍ਰਿੰਸਪੀ ਡੋਬਰਾ ਸਾਉ ਟੋਮੀ ਐਂਡ ਪ੍ਰਿੰਸਪੀ ਡੋਬਰਾ STD + Db ਸੋਵੀਅਤ ਰੂਬਲ @@ -5046,6 +5218,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਸੀਰੀਆਈ ਪੌਂਡ ਸੀਰੀਆਈ ਪੌਂਡ SYP + £ ਸਵਾਜ਼ੀ ਲਾਇਲੈਂਗਨੀ @@ -5058,6 +5231,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਥਾਈ ਬਾਹਤ ਥਾਈ ਬਾਹਤ ฿ + ฿ ਤਾਜਿਕਿਸਤਾਨੀ ਸੋਮੋਨੀ @@ -5082,6 +5256,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਟੌਂਗਨ ਪੈਂਗਾ ਟੌਂਗਨ ਪੈਂਗਾ TOP + T$ ਤੁਰਕੀ ਲੀਰਾ @@ -5089,6 +5264,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਤੁਰਕੀ ਲੀਰਾ TRY + TL ਟ੍ਰਿਨੀਡਾਡ ਅਤੇ ਟੋਬਾਗੋ ਡਾਲਰ @@ -5163,6 +5339,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਵੇਨੇਜ਼ੂਏਲਨ ਬੋਲੀਵਰ ਵੇਨੇਜ਼ੂਏਲਨ ਬੋਲੀਵਰ VEF + Bs ਵੀਅਤਨਾਮੀ ਡੋਂਗ @@ -5227,6 +5404,7 @@ For terms of use, see http://www.unicode.org/copyright.html ਪੂਰਬੀ ਕੈਰੇਬੀਅਨ ਡਾਲਰ ਪੂਰਬੀ ਕੈਰੇਬੀਅਨ ਡਾਲਰ EC$ + $ ਯੂਰਪੀ ਮੁਦਰਾ ਇਕਾਈ @@ -5235,7 +5413,7 @@ For terms of use, see http://www.unicode.org/copyright.html XEU - ਫ੍ਰੈਂਕ (CFA BCEAO) + ਪੱਛਮੀ ਅਫ਼ਰੀਕੀ (CFA) ਫ੍ਰੈਂਕ ਫ੍ਰੈਂਕ (CFA BCEAO) ਫ੍ਰੈਂਕ (CFA BCEAO) CFA @@ -5263,12 +5441,14 @@ For terms of use, see http://www.unicode.org/copyright.html ਦੱਖਣੀ ਅਫਰੀਕੀ ਰੈਂਡ ਦੱਖਣੀ ਅਫਰੀਕੀ ਰੈਂਡ ZAR + R ਜ਼ਾਮਬੀਆਈ ਕਵਾਚਾ ਜ਼ਾਮਬੀਆਈ ਕਵਾਚਾ ਜ਼ਾਮਬੀਆਈ ਕਵਾਚਾ ZMW + ZK @@ -5291,6 +5471,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਮੀਟਰ ਪ੍ਰਤੀ ਵਰਗ ਸਕਿੰਟ {0} ਮੀਟਰ ਪ੍ਰਤੀ ਵਰਗ ਸਕਿੰਟ + + ਪਰਿਕਰਮਾ + {0} ਪਰਿਕਰਮਾ + {0} ਪਰਿਕਰਮਾ + + + ਰੇਡੀਅਨ + {0} ਰੇਡੀਅਨ + {0} ਰੇਡੀਅਨ + + + ਡਿਗਰੀ + {0} ਡਿਗਰੀ + {0} ਡਿਗਰੀ + ਚਾਪ-ਮਿੰਟ {0} ਚਾਪ-ਮਿੰਟ @@ -5301,30 +5496,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਚਾਪ-ਸਕਿੰਟ {0} ਚਾਪ-ਸਕਿੰਟ - - ਡਿਗਰੀ - {0} ਡਿਗਰੀ - {0} ਡਿਗਰੀ - - - ਰੇਡੀਅਨ - {0} ਰੇਡੀਅਨ - {0} ਰੇਡੀਅਨ - - - ਏਕੜ - {0} ਏਕੜ - {0} ਏਕੜ + + ਵਰਗ ਕਿਲੋਮੀਟਰ + {0} ਵਰਗ ਕਿਲੋਮੀਟਰ + {0} ਵਰਗ ਕਿਲੋਮੀਟਰ ਹੈਕਟੇਅਰ {0} ਹੈਕਟੇਅਰ {0} ਹੈਕਟੇਅਰ + + ਵਰਗ ਮੀਟਰ + {0} ਵਰਗ ਮੀਟਰ + {0} ਵਰਗ ਮੀਟਰ + {0} ਪ੍ਰਤੀ ਵਰਗ ਮੀਟਰ + ਵਰਗ ਸੈਂਟੀਮੀਟਰ {0} ਵਰਗ ਸੈਂਟੀਮੀਟਰ {0} ਵਰਗ ਸੈਂਟੀਮੀਟਰ + {0} ਪ੍ਰਤੀ ਵਰਗ ਸੈਂਟੀਮੀਟਰ + + + ਵਰਗ ਮੀਲ + {0} ਵਰਗ ਮੀਲ + {0} ਵਰਗ ਮੀਲ + + + ਏਕੜ + {0} ਏਕੜ + {0} ਏਕੜ + + + ਵਰਗ ਗਜ਼ + {0} ਵਰਗ ਗਜ਼ + {0} ਵਰਗ ਗਜ਼ ਵਰਗ ਫੁੱਟ @@ -5335,91 +5542,106 @@ For terms of use, see http://www.unicode.org/copyright.html ਵਰਗ ਇੰਚ {0} ਵਰਗ ਇੰਚ {0} ਵਰਗ ਇੰਚ + {0} ਪ੍ਰਤੀ ਵਰਗ ਇੰਚ - - ਵਰਗ ਕਿਲੋਮੀਟਰ - {0} ਵਰਗ ਕਿਲੋਮੀਟਰ - {0} ਵਰਗ ਕਿਲੋਮੀਟਰ - - - ਵਰਗ ਮੀਟਰ - {0} ਵਰਗ ਮੀਟਰ - {0} ਵਰਗ ਮੀਟਰ - - - ਵਰਗ ਮੀਲ - {0} ਵਰਗ ਮੀਲ - {0} ਵਰਗ ਮੀਲ - - - ਵਰਗ ਗਜ਼ - {0} ਵਰਗ ਗਜ਼ - {0} ਵਰਗ ਗਜ਼ + + ਕੇਰਟ + {0} ਕੇਰਟ + {0} ਕੇਰਟ ਲਿਟਰ ਪ੍ਰਤੀ ਕਿਲੋਮੀਟਰ {0} ਲਿਟਰ ਪ੍ਰਤੀ ਕਿਲੋਮੀਟਰ {0} ਲਿਟਰ ਪ੍ਰਤੀ ਕਿਲੋਮੀਟਰ + + ਲਿਟਰ ਪ੍ਰਤੀ 100 ਕਿਲੋਮੀਟਰ + {0} ਲਿਟਰ ਪ੍ਰਤੀ 100 ਕਿਲੋਮੀਟਰ + {0} ਲਿਟਰ ਪ੍ਰਤੀ 100 ਕਿਲੋਮੀਟਰ + ਮੀਲ ਪ੍ਰਤੀ ਗੈਲਨ {0} ਮੀਲ ਪ੍ਰਤੀ ਗੈਲਨ {0} ਮੀਲ ਪ੍ਰਤੀ ਗੈਲਨ - - ਬਿਟ - {0} ਬਿਟ - {0} ਬਿਟ - - - ਬਾਇਟ - {0} ਬਾਇਟ - {0} ਬਾਇਟ - - - ਗੀਗਾਬਿਟ - {0} ਗੀਗਾਬਿਟ - {0} ਗੀਗਾਬਿਟ - - - ਗੀਗਾਬਾਇਟ - {0} ਗੀਗਾਬਾਇਟ - {0} ਗੀਗਾਬਾਇਟ - - - ਕਿਲੋਬਿਟ - {0} ਕਿਲੋਬਿਟ - {0} ਕਿਲੋਬਿਟ - - - ਕਿਲੋਬਾਇਟ - {0} ਕਿਲੋਬਾਇਟ - {0} ਕਿਲੋਬਾਇਟ - - - ਮੈਗਾਬਿਟ - {0} ਮੈਗਾਬਿਟ - {0} ਮੈਗਾਬਿਟ - - - ਮੈਗਾਬਾਇਟ - {0} ਮੈਗਾਬਾਇਟ - {0} ਮੈਗਾਬਾਇਟ - - - ਟੇਰਾਬਿਟ - {0} ਟੇਰਾਬਿਟ - {0} ਟੇਰਾਬਿਟ - ਟੇਰਾਬਾਇਟ {0} ਟੇਰਾਬਾਇਟ {0} ਟੇਰਾਬਾਇਟ + + ਟੇਰਾਬਿਟ + {0} ਟੇਰਾਬਿਟ + {0} ਟੇਰਾਬਿਟ + + + ਗੀਗਾਬਾਇਟ + {0} ਗੀਗਾਬਾਇਟ + {0} ਗੀਗਾਬਾਇਟ + + + ਗੀਗਾਬਿਟ + {0} ਗੀਗਾਬਿਟ + {0} ਗੀਗਾਬਿਟ + + + ਮੈਗਾਬਾਇਟ + {0} ਮੈਗਾਬਾਇਟ + {0} ਮੈਗਾਬਾਇਟ + + + ਮੈਗਾਬਿਟ + {0} ਮੈਗਾਬਿਟ + {0} ਮੈਗਾਬਿਟ + + + ਕਿਲੋਬਾਇਟ + {0} ਕਿਲੋਬਾਇਟ + {0} ਕਿਲੋਬਾਇਟ + + + ਕਿਲੋਬਿਟ + {0} ਕਿਲੋਬਿਟ + {0} ਕਿਲੋਬਿਟ + + + ਬਾਇਟ + {0} ਬਾਇਟ + {0} ਬਾਇਟ + + + ਬਿਟ + {0} ਬਿਟ + {0} ਬਿਟ + + + ਸਦੀਆਂ + {0} ਸਦੀ + {0} ਸਦੀਆਂ + + + ਸਾਲ + {0} ਸਾਲ + {0} ਸਾਲ + {0} ਪ੍ਰਤੀ ਸਾਲ + + + ਮਹੀਨੇ + {0} ਮਹੀਨਾ + {0} ਮਹੀਨੇ + {0} ਪ੍ਰਤੀ ਮਹੀਨਾ + + + ਹਫ਼ਤੇ + {0} ਹਫ਼ਤਾ + {0} ਹਫ਼ਤੇ + {0} ਪ੍ਰਤੀ ਹਫ਼ਤਾ + ਦਿਨ {0} ਦਿਨ {0} ਦਿਨ + {0} ਪ੍ਰਤੀ ਦਿਨ ਘੰਟੇ @@ -5427,30 +5649,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਘੰਟੇ {0} ਪ੍ਰਤੀ ਘੰਟਾ - - ਮਾਈਕਰੋਸਕਿੰਟ - {0} ਮਾਈਕਰੋਸਕਿੰਟ - {0} ਮਾਈਕਰੋਸਕਿੰਟ - - - ਮਿਲੀਸਕਿੰਟ - {0} ਮਿਲੀਸਕਿੰਟ - {0} ਮਿਲੀਸਕਿੰਟ - ਮਿੰਟ {0} ਮਿੰਟ {0} ਮਿੰਟ - - - ਮਹੀਨੇ - {0} ਮਹੀਨਾ - {0} ਮਹੀਨੇ - - - ਨੈਨੋਸਕਿੰਟ - {0} ਨੈਨੋਸਕਿੰਟ - {0} ਨੈਨੋਸਕਿੰਟ + {0} ਪ੍ਰਤੀ ਮਿੰਟ ਸਕਿੰਟ @@ -5458,15 +5661,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਸਕਿੰਟ {0} ਪ੍ਰਤੀ ਸਕਿੰਟ - - ਹਫ਼ਤੇ - {0} ਹਫ਼ਤਾ - {0} ਹਫ਼ਤੇ + + ਮਿਲੀਸਕਿੰਟ + {0} ਮਿਲੀਸਕਿੰਟ + {0} ਮਿਲੀਸਕਿੰਟ - - ਸਾਲ - {0} ਸਾਲ - {0} ਸਾਲ + + ਮਾਈਕਰੋਸਕਿੰਟ + {0} ਮਾਈਕਰੋਸਕਿੰਟ + {0} ਮਾਈਕਰੋਸਕਿੰਟ + + + ਨੈਨੋਸਕਿੰਟ + {0} ਨੈਨੋਸਕਿੰਟ + {0} ਨੈਨੋਸਕਿੰਟ ਐਮਪੀਅਰ @@ -5488,6 +5696,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਵੋਲਟ {0} ਵੋਲਟ + + ਕਿਲੋਕੈਲੋਰੀਆਂ + {0} ਕਿਲੋਕੈਲੋਰੀ + {0} ਕਿਲੋਕੈਲੋਰੀਆਂ + ਕੈਲੋਰੀਆਂ {0} ਕੈਲੋਰੀ @@ -5498,21 +5711,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਕੈਲੋਰੀ {0} ਕੈਲੋਰੀਆਂ - - ਜੂਲ - {0} ਜੂਲ - {0} ਜੂਲ - - - ਕਿਲੋਕੈਲੋਰੀਆਂ - {0} ਕਿਲੋਕੈਲੋਰੀ - {0} ਕਿਲੋਕੈਲੋਰੀਆਂ - ਕਿਲੋਜੂਲ {0} ਕਿਲੋਜੂਲ {0} ਕਿਲੋਜੂਲ + + ਜੂਲ + {0} ਜੂਲ + {0} ਜੂਲ + ਕਿਲੋਵਾਟ-ਘੰਟੇ {0} ਕਿਲੋਵਾਟ ਘੰਟਾ @@ -5523,216 +5731,220 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਗੀਗਾਹਰਟਜ਼ {0} ਗੀਗਾਹਰਟਜ਼ - - ਹਰਟਜ਼ - {0} ਹਰਟਜ਼ - {0} ਹਰਟਜ਼ + + ਮੈਗਾਹਰਟਜ਼ + {0} ਮੈਗਾਹਰਟਜ਼ + {0} ਮੈਗਾਹਰਟਜ਼ ਕਿਲੋਹਰਟਜ਼ {0} ਕਿਲੋਹਰਟਜ਼ {0} ਕਿਲੋਹਰਟਜ਼ - - ਮੈਗਾਹਰਟਜ਼ - {0} ਮੈਗਾਹਰਟਜ਼ - {0} ਮੈਗਾਹਰਟਜ਼ + + ਹਰਟਜ਼ + {0} ਹਰਟਜ਼ + {0} ਹਰਟਜ਼ - - ਖਗੋਲੀ ਇਕਾਈਆਂ - {0} ਖਗੋਲੀ ਇਕਾਈ - {0} ਖਗੋਲੀ ਇਕਾਈਆਂ + + ਕਿਲੋਮੀਟਰ + {0} ਕਿਲੋਮੀਟਰ + {0} ਕਿਲੋਮੀਟਰ + {0} ਪ੍ਰਤੀ ਕਿਲੋਮੀਟਰ - - ਸੈਂਟੀਮੀਟਰ - {0} ਸੈਂਟੀਮੀਟਰ - {0} ਸੈਂਟੀਮੀਟਰ + + ਮੀਟਰ + {0} ਮੀਟਰ + {0} ਮੀਟਰ + {0} ਪ੍ਰਤੀ ਮੀਟਰ ਡੈਸੀਮੀਟਰ {0} ਡੈਸੀਮੀਟਰ {0} ਡੈਸੀਮੀਟਰ - - ਫ਼ੈਦਮ - {0} ਫ਼ੈਦਮ - {0} ਫ਼ੈਦਮ - - - ਫੁੱਟ - {0} ਫੁੱਟ - {0} ਫੁੱਟ - - - ਫਰਲਾਂਗ - {0} ਫਰਲਾਂਗ - {0} ਫਰਲਾਂਗ - - - ਇੰਚ - {0} ਇੰਚ - {0} ਇੰਚ - - - ਕਿਲੋਮੀਟਰ - {0} ਕਿਲੋਮੀਟਰ - {0} ਕਿਲੋਮੀਟਰ - - - ਪ੍ਰਕਾਸ਼ ਸਾਲ - {0} ਪ੍ਰਕਾਸ਼ ਸਾਲ - {0} ਪ੍ਰਕਾਸ਼ ਸਾਲ - - - ਮੀਟਰ - {0} ਮੀਟਰ - {0} ਮੀਟਰ - - - ਮਾਈਕਰੋਮੀਟਰ - {0} ਮਾਈਕਰੋਮੀਟਰ - {0} ਮਾਈਕਰੋਮੀਟਰ - - - ਮੀਲ - {0} ਮੀਲ - {0} ਮੀਲ + + ਸੈਂਟੀਮੀਟਰ + {0} ਸੈਂਟੀਮੀਟਰ + {0} ਸੈਂਟੀਮੀਟਰ + {0} ਪ੍ਰਤੀ ਸੈਂਟੀਮੀਟਰ ਮਿਲੀਮੀਟਰ {0} ਮਿਲੀਮੀਟਰ {0} ਮਿਲੀਮੀਟਰ + + ਮਾਈਕਰੋਮੀਟਰ + {0} ਮਾਈਕਰੋਮੀਟਰ + {0} ਮਾਈਕਰੋਮੀਟਰ + ਨੈਨੋਮੀਟਰ {0} ਨੈਨੋਮੀਟਰ {0} ਨੈਨੋਮੀਟਰ - - ਨੋਟੀਕਲ ਮੀਲ - {0} ਨੋਟੀਕਲ ਮੀਲ - {0} ਨੋਟੀਕਲ ਮੀਲ - - - ਪਾਸੈੱਕ - {0} ਪਾਸੈੱਕ - {0} ਪਾਸੈੱਕ - ਪਿਕੋਮੀਟਰ {0} ਪਿਕੋਮੀਟਰ {0} ਪਿਕੋਮੀਟਰ + + ਮੀਲ + {0} ਮੀਲ + {0} ਮੀਲ + ਗਜ਼ {0} ਗਜ਼ {0} ਗਜ਼ + + ਫੁੱਟ + {0} ਫੁੱਟ + {0} ਫੁੱਟ + {0} ਪ੍ਰਤੀ ਫੁੱਟ + + + ਇੰਚ + {0} ਇੰਚ + {0} ਇੰਚ + {0} ਪ੍ਰਤੀ ਇੰਚ + + + ਪਾਸੈੱਕ + {0} ਪਾਸੈੱਕ + {0} ਪਾਸੈੱਕ + + + ਪ੍ਰਕਾਸ਼ ਸਾਲ + {0} ਪ੍ਰਕਾਸ਼ ਸਾਲ + {0} ਪ੍ਰਕਾਸ਼ ਸਾਲ + + + ਖਗੋਲੀ ਇਕਾਈਆਂ + {0} ਖਗੋਲੀ ਇਕਾਈ + {0} ਖਗੋਲੀ ਇਕਾਈਆਂ + + + ਫਰਲਾਂਗ + {0} ਫਰਲਾਂਗ + {0} ਫਰਲਾਂਗ + + + ਫ਼ੈਦਮ + {0} ਫ਼ੈਦਮ + {0} ਫ਼ੈਦਮ + + + ਨੋਟੀਕਲ ਮੀਲ + {0} ਨੋਟੀਕਲ ਮੀਲ + {0} ਨੋਟੀਕਲ ਮੀਲ + + + ਮੀਲ-ਸਕੈਂਡਿਨੇਵਿਆਈ + {0} ਮੀਲ-ਸਕੈਂਡਿਨੇਵਿਆਈ + {0} ਮੀਲ-ਸਕੈਂਡਿਨੇਵਿਆਈ + ਲਕਸ {0} ਲਕਸ {0} ਲਕਸ - - ਕੈਰਟ - {0} ਕੈਰਟ - {0} ਕੈਰਟ - - - ਗ੍ਰਾਮ - {0} ਗ੍ਰਾਮ - {0} ਗ੍ਰਾਮ - - - ਕਿਲੋਗ੍ਰਾਮ - {0} ਕਿਲੋਗ੍ਰਾਮ - {0} ਕਿਲੋਗ੍ਰਾਮ - ਮੀਟਰਿਕ ਟਨ {0} ਮੀਟਰਿਕ ਟਨ {0} ਮੀਟਰਿਕ ਟਨ - - ਮਾਈਕਰੋਗ੍ਰਾਮ - {0} ਮਾਈਕਰੋਗ੍ਰਾਮ - {0} ਮਾਈਕਰੋਗ੍ਰਾਮ + + ਕਿਲੋਗ੍ਰਾਮ + {0} ਕਿਲੋਗ੍ਰਾਮ + {0} ਕਿਲੋਗ੍ਰਾਮ + {0} ਪ੍ਰਤੀ ਕਿਲੋਗ੍ਰਾਮ + + + ਗ੍ਰਾਮ + {0} ਗ੍ਰਾਮ + {0} ਗ੍ਰਾਮ + {0} ਪ੍ਰਤੀ ਗ੍ਰਾਮ ਮਿਲੀਗ੍ਰਾਮ {0} ਮਿਲੀਗ੍ਰਾਮ {0} ਮਿਲੀਗ੍ਰਾਮ - - ਔਂਸ - {0} ਔਂਸ - {0} ਔਂਸ - - - ਟਰੌਏ ਔਂਸ - {0} ਟਰੌਏ ਔਂਸ - {0} ਟਰੌਏ ਔਂਸ - - - ਪੌਂਡ - {0} ਪੌਂਡ - {0} ਪੌਂਡ - - - ਸਟੋਨ - {0} ਸਟੋਨ - {0} ਸਟੋਨ + + ਮਾਈਕਰੋਗ੍ਰਾਮ + {0} ਮਾਈਕਰੋਗ੍ਰਾਮ + {0} ਮਾਈਕਰੋਗ੍ਰਾਮ ਟਨ {0} ਟਨ {0} ਟਨ + + ਸਟੋਨ + {0} ਸਟੋਨ + {0} ਸਟੋਨ + + + ਪੌਂਡ + {0} ਪੌਂਡ + {0} ਪੌਂਡ + {0} ਪ੍ਰਤੀ ਪੌਂਡ + + + ਔਂਸ + {0} ਔਂਸ + {0} ਔਂਸ + {0} ਪ੍ਰਤੀ ਔਂਸ + + + ਟਰੌਏ ਔਂਸ + {0} ਟਰੌਏ ਔਂਸ + {0} ਟਰੌਏ ਔਂਸ + + + ਕੈਰਟ + {0} ਕੈਰਟ + {0} ਕੈਰਟ + ਗੀਗਾਵਾਟ {0} ਗੀਗਾਵਾਟ {0} ਗੀਗਾਵਾਟ - - ਹੌਰਸਪਾਵਰ - {0} ਹੌਰਸਪਾਵਰ - {0} ਹੌਰਸਪਾਵਰ - - - ਕਿਲੋਵਾਟ - {0} ਕਿਲੋਵਾਟ - {0} ਕਿਲੋਵਾਟ - ਮੈਗਾਵਾਟ {0} ਮੈਗਾਵਾਟ {0} ਮੈਗਾਵਾਟ - - ਮਿਲੀਵਾਟ - {0} ਮਿਲੀਵਾਟ - {0} ਮਿਲੀਵਾਟ + + ਕਿਲੋਵਾਟ + {0} ਕਿਲੋਵਾਟ + {0} ਕਿਲੋਵਾਟ ਵਾਟ {0} ਵਾਟ {0} ਵਾਟ + + ਮਿਲੀਵਾਟ + {0} ਮਿਲੀਵਾਟ + {0} ਮਿਲੀਵਾਟ + + + ਹੌਰਸਪਾਵਰ + {0} ਹੌਰਸਪਾਵਰ + {0} ਹੌਰਸਪਾਵਰ + ਹੈਕਟੋਪਾਸਕਲ {0} ਹੈਕਟੋਪਾਸਕਲ {0} ਹੈਕਟੋਪਾਸਕਲ - - ਇੰਚ ਪਾਰਾ - {0} ਇੰਚ ਪਾਰਾ - {0} ਇੰਚ ਪਾਰਾ - - - ਮਿਲੀਬਾਰ - {0} ਮਿਲੀਬਾਰ - {0} ਮਿਲੀਬਾਰ - ਮਿਲੀਮੀਟਰ ਪਾਰਾ {0} ਮਿਲੀਮੀਟਰ ਪਾਰਾ @@ -5743,10 +5955,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਪੌਂਡ ਪ੍ਰਤੀ ਵਰਗ ਇੰਚ {0} ਪੌਂਡ ਪ੍ਰਤੀ ਵਰਗ ਇੰਚ - - ਕੇਰਟ - {0} ਕੇਰਟ - {0} ਕੇਰਟ + + ਇੰਚ ਪਾਰਾ + {0} ਇੰਚ ਪਾਰਾ + {0} ਇੰਚ ਪਾਰਾ + + + ਮਿਲੀਬਾਰ + {0} ਮਿਲੀਬਾਰ + {0} ਮਿਲੀਬਾਰ ਕਿਲੋਮੀਟਰ ਪ੍ਰਤੀ ਘੰਟਾ @@ -5763,6 +5980,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਮੀਲ ਪ੍ਰਤੀ ਘੰਟਾ {0} ਮੀਲ ਪ੍ਰਤੀ ਘੰਟਾ + + ਨੌਟ + {0} ਨੌਟ + {0} ਨੌਟ + + + ° + {0}° + {0}° + ਦਰਜੇ ਸੈਲਸੀਅਸ {0} ਦਰਜਾ ਸੈਲਸੀਅਸ @@ -5778,36 +6005,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਕੈਲਵਿਨ {0} ਕੈਲਵਿਨ - - ਏਕੜ ਫੁੱਟ - {0} ਏਕੜ ਫੁੱਟ - {0} ਏਕੜ ਫੁੱਟ - - - ਬੁਸ਼ਲ - {0} ਬੁਸ਼ਲ - {0} ਬੁਸ਼ਲ - - - ਸੈਂਟੀਲਿਟਰ - {0} ਸੈਂਟੀਲਿਟਰ - {0} ਸੈਂਟੀਲਿਟਰ - - - ਘਣ ਸੈਂਟੀਮੀਟਰ - {0} ਘਣ ਸੈਂਟੀਮੀਟਰ - {0} ਘਣ ਸੈਂਟੀਮੀਟਰ - - - ਘਣ ਫੁੱਟ - {0} ਘਣ ਫੁੱਟ - {0} ਘਣ ਫੁੱਟ - - - ਘਣ ਇੰਚ - {0} ਘਣ ਇੰਚ - {0} ਘਣ ਇੰਚ - ਘਣ ਕਿਲੋਮੀਟਰ {0} ਘਣ ਕਿਲੋਮੀਟਰ @@ -5817,6 +6014,13 @@ For terms of use, see http://www.unicode.org/copyright.html ਘਣ ਮੀਟਰ {0} ਘਣ ਮੀਟਰ {0} ਘਣ ਮੀਟਰ + {0} ਪ੍ਰਤੀ ਘਣ ਮੀਟਰ + + + ਘਣ ਸੈਂਟੀਮੀਟਰ + {0} ਘਣ ਸੈਂਟੀਮੀਟਰ + {0} ਘਣ ਸੈਂਟੀਮੀਟਰ + {0} ਪ੍ਰਤੀ ਘਣ ਸੈਂਟੀਮੀਟਰ ਘਣ ਮੀਲ @@ -5828,25 +6032,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਘਣ ਗਜ਼ {0} ਘਣ ਗਜ਼ - - ਕੱਪ - {0} ਕੱਪ - {0} ਕੱਪ + + ਘਣ ਫੁੱਟ + {0} ਘਣ ਫੁੱਟ + {0} ਘਣ ਫੁੱਟ - - ਡੈਸੀਲਿਟਰ - {0} ਡੈਸੀਲਿਟਰ - {0} ਡੈਸੀਲਿਟਰ + + ਘਣ ਇੰਚ + {0} ਘਣ ਇੰਚ + {0} ਘਣ ਇੰਚ - - ਤਰਲ ਔਂਸ - {0} ਤਰਲ ਔਂਸ - {0} ਤਰਲ ਔਂਸ - - - ਗੈਲਨ - {0} ਗੈਲਨ - {0} ਗੈਲਨ + + ਮੈਗਾਲਿਟਰ + {0} ਮੈਗਾਲਿਟਰ + {0} ਮੈਗਾਲਿਟਰ ਹੈਕਟੋਲਿਟਰ @@ -5857,27 +6056,69 @@ For terms of use, see http://www.unicode.org/copyright.html ਲਿਟਰ {0} ਲਿਟਰ {0} ਲਿਟਰ + {0} ਪ੍ਰਤੀ ਲਿਟਰ - - ਮੈਗਾਲਿਟਰ - {0} ਮੈਗਾਲਿਟਰ - {0} ਮੈਗਾਲਿਟਰ + + ਡੈਸੀਲਿਟਰ + {0} ਡੈਸੀਲਿਟਰ + {0} ਡੈਸੀਲਿਟਰ + + + ਸੈਂਟੀਲਿਟਰ + {0} ਸੈਂਟੀਲਿਟਰ + {0} ਸੈਂਟੀਲਿਟਰ ਮਿਲੀਲਿਟਰ {0} ਮਿਲੀਲਿਟਰ {0} ਮਿਲੀਲਿਟਰ - - ਪਿੰਟ - {0} ਪਿੰਟ - {0} ਪਿੰਟ + + ਮੀਟਰਿਕ ਪਿੰਟ + {0} ਮੀਟਰਿਕ ਪਿੰਟ + {0} ਮੀਟਰਿਕ ਪਿੰਟ + + + ਮੀਟਰਿਕ ਕੱਪ + {0} ਮੀਟਰਿਕ ਕੱਪ + {0} ਮੀਟਰਿਕ ਕੱਪ + + + ਏਕੜ ਫੁੱਟ + {0} ਏਕੜ ਫੁੱਟ + {0} ਏਕੜ ਫੁੱਟ + + + ਬੁਸ਼ਲ + {0} ਬੁਸ਼ਲ + {0} ਬੁਸ਼ਲ + + + ਗੈਲਨ + {0} ਗੈਲਨ + {0} ਗੈਲਨ + {0} ਪ੍ਰਤੀ ਗੈਲਨ ਕੁਆਟ {0} ਕੁਆਟ {0} ਕੁਆਟ + + ਪਿੰਟ + {0} ਪਿੰਟ + {0} ਪਿੰਟ + + + ਕੱਪ + {0} ਕੱਪ + {0} ਕੱਪ + + + ਤਰਲ ਔਂਸ + {0} ਤਰਲ ਔਂਸ + {0} ਤਰਲ ਔਂਸ + ਟੇਬਲ ਸਪੂਨ {0} ਟੇਬਲ ਸਪੂਨ @@ -5888,6 +6129,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਟੀ ਸਪੂਨ {0} ਟੀ ਸਪੂਨ + + {0}ਪੂ + {0}ਉ + {0}ਦੱ + {0}ਪੱ + @@ -5903,6 +6150,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਮੀ/ਸ² {0} ਮੀ/ਸ² + + ਪਰਿਕਰਮਾ + {0} ਪਰਿਕਰਮਾ + {0} ਪਰਿਕਰਮਾ + + + ਰੇਡੀਅਨ + {0} ਰੇਡੀ. + {0} ਰੇਡੀ. + + + ਡਿਗਰੀ + {0} ਡਿ. + {0} ਡਿ. + ਚਾਪ-ਮਿੰਟ {0} ਚਾਪਮਿੰਟ @@ -5913,30 +6175,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਚਾਪ-ਸਕਿੰਟ {0} ਚਾਪ-ਸਕਿੰਟ - - ਡਿਗਰੀ - {0} ਡਿ. - {0} ਡਿ. - - - ਰੇਡੀਅਨ - {0} ਰੇਡੀ. - {0} ਰੇਡੀ. - - - ਏਕੜ - {0} ਏਕੜ - {0} ਏਕੜ + + ਕਿਮੀ² + {0} ਕਿਮੀ² + {0} ਕਿਮੀ² ਹੈਕਟੇਅਰ {0} ਹੈਕਟੇਅਰ {0} ਹੈਕਟੇਅਰ + + ਮੀਟਰ² + {0} ਮੀ² + {0} ਮੀ² + {0} ਪ੍ਰਤੀ ਮੀ² + ਸੈਮੀ² {0} ਸੈਮੀ² {0} ਸੈਮੀ² + {0} ਪ੍ਰਤੀ ਸੈਮੀ² + + + ਵਰਗ ਮੀਲ + {0} ਵ. ਮੀਲ + {0} ਵ. ਮੀਲ + + + ਏਕੜ + {0} ਏਕੜ + {0} ਏਕੜ + + + ਗਜ਼² + {0} ਗਜ਼² + {0} ਗਜ਼² ਵ. ਫੁੱਟ @@ -5947,91 +6221,106 @@ For terms of use, see http://www.unicode.org/copyright.html ਇੰਚ² {0} ਇੰਚ² {0} ਇੰਚ² + {0} ਪ੍ਰਤੀ ਇੰਚ² - - ਕਿਮੀ² - {0} ਕਿਮੀ² - {0} ਕਿਮੀ² - - - ਮੀਟਰ² - {0} ਮੀ² - {0} ਮੀ² - - - ਵਰਗ ਮੀਲ - {0} ਵ. ਮੀਲ - {0} ਵ. ਮੀਲ - - - ਗਜ਼² - {0} ਗਜ਼² - {0} ਗਜ਼² + + ਕੇਰਟ + {0} ਕੇਰਟ + {0} ਕੇਰਟ ਲਿਟਰ/ਕਿ.ਮੀ. {0} ਲਿ./ਕਿ.ਮੀ. {0} ਲਿ./ਕਿ.ਮੀ. + + ਲਿ./100ਕਿ.ਮੀ. + {0} ਲਿ./100 ਕਿ.ਮੀ. + {0} ਲਿ./100 ਕਿ.ਮੀ. + ਮੀਲ/ਗੈਲਨ {0} ਮੀ.ਪ੍ਰ.ਗੈ. {0} ਮੀ.ਪ੍ਰ.ਗੈ. - - ਬਿਟ - {0} ਬਿਟ - {0} ਬਿਟ - - - ਬਾਇਟ - {0} ਬਾਇਟ - {0} ਬਾਇਟ - - - Gb - {0} Gb - {0} Gb - - - ਗੀਗਾਬਾਇਟ - {0} GB - {0} GB - - - ਕਿਲੋਬਿਟ - {0} kb - {0} kb - - - ਕਿਲੋਬਾਇਟ - {0} kB - {0} kB - - - ਮੈਗਾਬਿਟ - {0} Mb - {0} Mb - - - ਮੈਗਾਬਾਇਟ - {0} MB - {0} MB - - - ਟੇਰਾਬਿਟ - {0} Tb - {0} Tb - ਟੇਰਾਬਾਇਟ {0} TB {0} TB + + ਟੇਰਾਬਿਟ + {0} Tb + {0} Tb + + + ਗੀਗਾਬਾਇਟ + {0} GB + {0} GB + + + Gbit + {0} Gb + {0} Gb + + + ਮੈਗਾਬਾਇਟ + {0} MB + {0} MB + + + ਮੈਗਾਬਿਟ + {0} Mb + {0} Mb + + + ਕਿਲੋਬਾਇਟ + {0} kB + {0} kB + + + ਕਿਲੋਬਿਟ + {0} kb + {0} kb + + + ਬਾਇਟ + {0} ਬਾਇਟ + {0} ਬਾਇਟ + + + ਬਿਟ + {0} ਬਿਟ + {0} ਬਿਟ + + + ਸਦੀ + {0} ਸਦੀ + {0} ਸਦੀ + + + ਸਾਲ + {0} ਸਾਲ + {0} ਸਾਲ + {0}/ਸਾਲ + + + ਮਹੀਨੇ + {0} ਮਹੀਨਾ + {0} ਮਹੀਨੇ + {0}/ਮਹੀਨਾ + + + ਹਫ਼ਤੇ + {0} ਹਫ਼ਤਾ + {0} ਹਫ਼ਤੇ + {0}/ਹਫ਼ਤਾ + ਦਿਨ {0} ਦਿਨ {0} ਦਿਨ + {0}/ਦਿਨ ਘੰਟੇ @@ -6039,30 +6328,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਘੰਟੇ {0} ਪ੍ਰ.ਘੰ. - - ਮਾਈਕਰੋਸਕਿੰਟ - {0} μs - {0} μs - - - ਮਿਲੀਸਕਿੰਟ - {0} ਮਿਲੀਸਕਿੰਟ - {0} ਮਿਲੀਸਕਿੰਟ - ਮਿੰਟ {0} ਮਿੰਟ {0} ਮਿੰਟ - - - ਮਹੀਨੇ - {0} ਮਹੀਨਾ - {0} ਮਹੀਨੇ - - - ਨੈਨੋਸਕਿੰਟ - {0} ns - {0} ns + {0}/ਮਿੰਟ ਸਕਿੰਟ @@ -6070,15 +6340,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਸਕਿੰਟ {0} ਪ੍ਰ.ਸ. - - ਹਫ਼ਤੇ - {0} ਹਫ਼ਤਾ - {0} ਹਫ਼ਤੇ + + ਮਿਲੀਸਕਿੰਟ + {0} ਮਿਲੀਸਕਿੰਟ + {0} ਮਿਲੀਸਕਿੰਟ - - ਸਾਲ - {0} ਸਾਲ - {0} ਸਾਲ + + ਮਾਈਕਰੋਸਕਿੰਟ + {0} μs + {0} μs + + + ਨੈਨੋਸਕਿੰਟ + {0} ns + {0} ns ਐਮਪੀਅਰ @@ -6100,6 +6375,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + ਕਿ.ਕੈਲੋਰੀ + {0} ਕਿ.ਕੈਲੋਰੀ + {0} ਕਿ.ਕੈਲੋਰੀਆਂ + ਕੈਲੋਰੀ {0} ਕੈਲੋਰੀ @@ -6110,21 +6390,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਕੈਲੋਰੀ {0} ਕੈਲੋਰੀਆਂ - - ਜੂਲ - {0} J - {0} J - - - ਕਿ.ਕੈਲੋਰੀ - {0} ਕਿ.ਕੈਲੋਰੀ - {0} ਕਿ.ਕੈਲੋਰੀਆਂ - ਕਿਲੋਜੂਲ {0} ਕਿ.ਜੂਲ {0} ਕਿ.ਜੂਲ + + ਜੂਲ + {0} J + {0} J + ਕਿ.ਵਾ.ਘੰ. {0} ਕਿ.ਵਾ.ਘੰ. @@ -6135,216 +6410,220 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au + + ਕਿ.ਮੀ. + {0} ਕਿ.ਮੀ. + {0} ਕਿ.ਮੀ. + {0}/ਕਿ.ਮੀ. - - ਸੈਂ.ਮੀ. - {0} ਸੈਂ.ਮੀ. - {0} ਸੈਂ.ਮੀ. + + ਮੀਟਰ + {0} ਮੀ. + {0} ਮੀ. + {0}/ਮੀ. ਡੈ.ਮੀ. {0} ਡੈ.ਮੀ. {0} ਡੈ.ਮੀ. - - ਫ਼ੈਦਮ - {0} ਫ਼ੈਦਮ - {0} ਫ਼ੈਦਮ - - - ਫੁੱਟ - {0} ਫੁੱਟ - {0} ਫੁੱਟ - - - ਫਰਲਾਂਗ - {0} ਫਰਲਾਂਗ - {0} ਫਰਲਾਂਗ - - - ਇੰਚ - {0} ਇੰਚ - {0} ਇੰਚ - - - ਕਿ.ਮੀ. - {0} ਕਿ.ਮੀ. - {0} ਕਿ.ਮੀ. - - - ਪ੍ਰਕਾਸ਼ ਸਾਲ - {0} ਪ੍ਰ.ਸ. - {0} ਪ੍ਰ.ਸ. - - - ਮੀਟਰ - {0} ਮੀ. - {0} ਮੀ. - - - ਮਾਈਕਰੋਮੀਟਰ - {0} µm - {0} µm - - - ਮੀਲ - {0} ਮੀਲ - {0} ਮੀਲ + + ਸੈਂ.ਮੀ. + {0} ਸੈਂ.ਮੀ. + {0} ਸੈਂ.ਮੀ. + {0}/ਸੈਂ.ਮੀ. ਮਿ.ਮੀ. {0} ਮਿ.ਮੀ. {0} ਮਿ.ਮੀ. + + ਮਾਈਕਰੋਮੀਟਰ + {0} µm + {0} µm + ਨੈ.ਮੀ. {0} ਨੈ.ਮੀ. {0} ਨੈ.ਮੀ. - - ਨੋ.ਮੀਲ - {0} ਨੋ.ਮੀਲ - {0} ਨੋ.ਮੀਲ - - - ਪਾਸੈੱਕ - {0} ਪਾਸੈੱਕ - {0} ਪਾਸੈੱਕ - ਪਿ.ਮੀ. {0} ਪਿਕੋਮੀਟਰ {0} ਪਿਕੋਮੀਟਰ + + ਮੀਲ + {0} ਮੀਲ + {0} ਮੀਲ + ਗਜ਼ {0} ਗਜ਼ {0} ਗਜ਼ + + ਫੁੱਟ + {0} ਫੁੱਟ + {0} ਫੁੱਟ + {0}/ਫੁੱਟ + + + ਇੰਚ + {0} ਇੰਚ + {0} ਇੰਚ + {0}/ਇੰਚ + + + ਪਾਸੈੱਕ + {0} ਪਾਸੈੱਕ + {0} ਪਾਸੈੱਕ + + + ਪ੍ਰਕਾਸ਼ ਸਾਲ + {0} ਪ੍ਰ.ਸ. + {0} ਪ੍ਰ.ਸ. + + + au + {0} au + {0} au + + + ਫਰਲਾਂਗ + {0} ਫਰਲਾਂਗ + {0} ਫਰਲਾਂਗ + + + ਫ਼ੈਦਮ + {0} ਫ਼ੈਦਮ + {0} ਫ਼ੈਦਮ + + + ਨੋ.ਮੀਲ + {0} ਨੋ.ਮੀਲ + {0} ਨੋ.ਮੀਲ + + + ਸਕੈਂਡ. ਮੀਲ + {0} ਸਕੈਂਡ. ਮੀਲ + {0} ਸਕੈਂਡ. ਮੀਲ + ਲਕਸ {0} ਲਕਸ {0} ਲਕਸ - - ਕੈਰਟ - {0} ਕੈਰਟ - {0} ਕੈਰਟ - - - ਗ੍ਰਾਮ - {0} ਗ੍ਰਾ. - {0} ਗ੍ਰਾ. - - - ਕਿ.ਗ੍ਰਾ. - {0} ਕਿ.ਗ੍ਰਾ. - {0} ਕਿ.ਗ੍ਰਾ. - t {0} t {0} t - - µg - {0} µg - {0} µg + + ਕਿ.ਗ੍ਰਾ. + {0} ਕਿ.ਗ੍ਰਾ. + {0} ਕਿ.ਗ੍ਰਾ. + {0}/ਕਿ.ਗ੍ਰਾ. + + + ਗ੍ਰਾਮ + {0} ਗ੍ਰਾ. + {0} ਗ੍ਰਾ. + {0}/ਗ੍ਰਾ. ਮਿ.ਗ੍ਰਾ. {0} ਮਿ.ਗ੍ਰਾ. {0} ਮਿ.ਗ੍ਰਾ. - - ਔਂਸ - {0} ਔਂਸ - {0} ਔਂਸ - - - ਔਂਸ ਟਰੌਏ - {0} ਔਂਸ ਟ. - {0} ਔਂਸ ਟ. - - - ਪੌਂਡ - {0} ਪੌਂਡ - {0} ਪੌਂਡ - - - ਸਟੋਨ - {0} ਸਟੋਨ - {0} ਸਟੋਨ + + µg + {0} µg + {0} µg ਟਨ {0} ਟਨ {0} ਟਨ + + ਸਟੋਨ + {0} ਸਟੋਨ + {0} ਸਟੋਨ + + + ਪੌਂਡ + {0} ਪੌਂਡ + {0} ਪੌਂਡ + {0}/ਪੌਂਡ + + + ਔਂਸ + {0} ਔਂਸ + {0} ਔਂਸ + {0}/ਔਂਸ + + + ਔਂਸ ਟਰੌਏ + {0} ਔਂਸ ਟ. + {0} ਔਂਸ ਟ. + + + ਕੈਰਟ + {0} ਕੈਰਟ + {0} ਕੈਰਟ + ਗੀ.ਵਾਟ {0} ਗੀ.ਵਾਟ {0} ਗੀ.ਵਾਟ - - hp - {0} ਹੌਰਸਪਾਵਰ - {0} ਹੌਰਸਪਾਵਰ - - - ਕਿ.ਵਾਟ - {0} ਕਿ. ਵਾਟ - {0} ਕਿ. ਵਾਟ - ਮੈ.ਵਾਟ {0} ਮੈ.ਵਾਟ {0} ਮੈ.ਵਾਟ - - ਮਿ.ਵਾਟ - {0} ਮਿ.ਵਾਟ - {0} ਮਿ.ਵਾਟ + + ਕਿ.ਵਾਟ + {0} ਕਿ. ਵਾਟ + {0} ਕਿ. ਵਾਟ ਵਾਟ {0} ਵਾਟ {0} ਵਾਟ + + ਮਿ.ਵਾਟ + {0} ਮਿ.ਵਾਟ + {0} ਮਿ.ਵਾਟ + + + hp + {0} ਹੌਰਸਪਾਵਰ + {0} ਹੌਰਸਪਾਵਰ + ਹੈ.ਪਾ. {0} ਹੈ.ਪਾ. {0} ਹੈ.ਪਾ. - - ਇੰਚ ਪਾਰਾ - {0} ਇੰਚ ਪਾਰਾ - {0} ਇੰਚ ਪਾਰਾ - - - ਮਿਲੀਬਾਰ - {0} ਮਿਲੀਬਾਰ - {0} ਮਿਲੀਬਾਰ - ਮਿ.ਮੀ. ਪਾਰਾ {0} ਮਿ.ਮੀ. ਪਾਰਾ @@ -6355,10 +6634,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਪੌਂ.ਵ.ਇੰਚ {0} ਪੌਂ.ਵ.ਇੰਚ - - ਕੇਰਟ - {0} ਕੇਰਟ - {0} ਕੇਰਟ + + ਇੰਚ ਪਾਰਾ + {0} ਇੰਚ ਪਾਰਾ + {0} ਇੰਚ ਪਾਰਾ + + + ਮਿਲੀਬਾਰ + {0} ਮਿਲੀਬਾਰ + {0} ਮਿਲੀਬਾਰ ਕਿ.ਮੀ./ਘੰਟਾ @@ -6375,6 +6659,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਮੀ.ਪ੍ਰ.ਘੰ. {0} ਮੀ.ਪ੍ਰ.ਘੰ. + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + ਦਰਜਾ ਸੈਲਸੀਅਸ {0}°C @@ -6390,36 +6684,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ਏਕੜ ਫੁੱਟ - {0} ਏਕੜ ਫੁੱਟ - {0} ਏਕੜ ਫੁੱਟ - - - ਬੁਸ਼ਲ - {0} ਬੁਸ਼ਲ - {0} ਬੁਸ਼ਲ - - - ਸੈਂ.ਲਿ. - {0} ਸੈਂ.ਲਿ. - {0} ਸੈਂ.ਲਿ. - - - ਸੈਮੀ³ - {0} ਸੈਮੀ³ - {0} ਸੈਮੀ³ - - - ਫੁੱਟ³ - {0} ਫੁੱਟ³ - {0} ਫੁੱਟ³ - - - ਇੰਚ³ - {0} ਇੰਚ³ - {0} ਇੰਚ³ - ਕਿਮੀ³ {0} ਕਿਮੀ³ @@ -6429,6 +6693,13 @@ For terms of use, see http://www.unicode.org/copyright.html ਮੀ³ {0} ਮੀ³ {0} ਮੀ³ + {0}/ਮੀ³ + + + ਸੈਮੀ³ + {0} ਸੈਮੀ³ + {0} ਸੈਮੀ³ + {0}/ਸੈਮੀ³ ਮੀਲ³ @@ -6440,25 +6711,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਗਜ਼³ {0} ਗਜ਼³ - - ਕੱਪ - {0} ਕੱਪ - {0} ਕੱਪ + + ਫੁੱਟ³ + {0} ਫੁੱਟ³ + {0} ਫੁੱਟ³ - - ਡੈ.ਲਿ. - {0} ਡੈ.ਲਿ. - {0} ਡੈ.ਲਿ. + + ਇੰਚ³ + {0} ਇੰਚ³ + {0} ਇੰਚ³ - - ਤ. ਔਂਸ - {0} ਤ. ਔਂਸ - {0} ਤ. ਔਂਸ - - - ਗੈਲਨ - {0} ਗੈਲਨ - {0} ਗੈਲਨ + + ਮੈ.ਲਿ. + {0} ਮੈ.ਲਿ. + {0} ਮੈ.ਲਿ. ਹੈ.ਲਿ. @@ -6469,27 +6735,69 @@ For terms of use, see http://www.unicode.org/copyright.html ਲਿਟਰ {0} ਲਿ. {0} ਲਿ. + {0}/ਲਿ. - - ਮੈ.ਲਿ. - {0} ਮੈ.ਲਿ. - {0} ਮੈ.ਲਿ. + + ਡੈ.ਲਿ. + {0} ਡੈ.ਲਿ. + {0} ਡੈ.ਲਿ. + + + ਸੈਂ.ਲਿ. + {0} ਸੈਂ.ਲਿ. + {0} ਸੈਂ.ਲਿ. ਮਿ.ਲਿ. {0} ਮਿ.ਲਿ. {0} ਮਿ.ਲਿ. - - ਪਿੰਟ - {0} ਪਿੰਟ - {0} ਪਿੰਟ + + ਮੀ ਪਿੰਟ + {0} ਮੀ ਪਿੰਟ + {0} ਮੀ ਪਿੰਟ + + + ਮੀ ਕੱਪ + {0} ਮੀ ਕੱਪ + {0} ਮੀ ਕੱਪ + + + ਏਕੜ ਫੁੱਟ + {0} ਏਕੜ ਫੁੱਟ + {0} ਏਕੜ ਫੁੱਟ + + + ਬੁਸ਼ਲ + {0} ਬੁਸ਼ਲ + {0} ਬੁਸ਼ਲ + + + ਗੈਲਨ + {0} ਗੈਲਨ + {0} ਗੈਲਨ + {0}/ਗੈਲਨ ਕੁਆਟ {0} ਕੁਆਟ {0} ਕੁਆਟ + + ਪਿੰਟ + {0} ਪਿੰਟ + {0} ਪਿੰਟ + + + ਕੱਪ + {0} ਕੱਪ + {0} ਕੱਪ + + + ਤ. ਔਂਸ + {0} ਤ. ਔਂਸ + {0} ਤ. ਔਂਸ + ਟੇਬਲ ਸਪੂਨ {0} ਟੇਬਲ ਸਪੂਨ @@ -6500,10 +6808,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਟੀ ਸਪੂਨ {0} ਟੀ ਸਪੂਨ + + {0}ਪੂ + {0}ਉ + {0}ਦੱ + {0}ਪੱ + - {0} ਪ੍ਰਤੀ {1} + {0}/{1} {0}G @@ -6513,6 +6827,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ਮੀ/ਸ² {0}ਮੀ/ਸ² + + {0} ਰੇਡੀ. + {0} ਰੇਡੀ. + + + {0}° + {0}° + {0}′ {0}′ @@ -6521,26 +6843,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} ਰੇਡੀ. - {0} ਰੇਡੀ. - - - {0}ਏਕੜ - {0}ਏਕੜ + + {0} ਕਿਮੀ² + {0} ਕਿਮੀ² {0}ਹੈਕ {0}ਹੈਕ + + {0} ਮੀ² + {0} ਮੀ² + {0}ਸੈਮੀ² {0}ਸੈਮੀ² + + {0}ਮੀਲ² + {0}ਮੀਲ² + + + {0}ਏਕੜ + {0}ਏਕੜ + + + {0} ਗਜ਼² + {0} ਗਜ਼² + {0}ਫੁੱਟ² {0}ਫੁੱਟ² @@ -6549,69 +6879,77 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ਇੰਚ² {0}ਇੰਚ² - - {0} ਕਿਮੀ² - {0} ਕਿਮੀ² - - - {0} ਮੀ² - {0} ਮੀ² - - - {0}ਮੀਲ² - {0}ਮੀਲ² - - - {0} ਗਜ਼² - {0} ਗਜ਼² + + {0} ਕੇਰਟ + {0} ਕੇਰਟ {0}ਲਿ./ਕਿ.ਮੀ. {0}ਲਿ./ਕਿ.ਮੀ. + + ਲਿ./100ਕਿ.ਮੀ. + {0} L/100km + {0} L/100km + {0} ਮੀ.ਪ੍ਰ.ਗੈ. {0} ਮੀ.ਪ੍ਰ.ਗੈ. - - {0}ਬਿਟ - {0}ਬਿਟ - - - {0}ਬਾਇਟ - {0}ਬਾਇਟ - - - {0} Gb - {0} Gb - - - {0} GB - {0} GB - - - {0} kb - {0} kb - - - {0} kB - {0} kB - - - {0} Mb - {0} Mb - - - {0} MB - {0} MB + + {0} TB + {0} TB {0} Tb {0} Tb - - {0} TB - {0} TB + + {0} GB + {0} GB + + + {0} Gb + {0} Gb + + + {0} MB + {0} MB + + + {0} Mb + {0} Mb + + + {0} kB + {0} kB + + + {0} kb + {0} kb + + + {0}ਬਾਇਟ + {0}ਬਾਇਟ + + + {0}ਬਿਟ + {0}ਬਿਟ + + + ਸਾਲ + {0} ਸਾਲ + {0} ਸਾਲ + + + ਮਹੀਨਾ + {0} ਮਹੀਨਾ + {0} ਮਹੀਨੇ + + + ਹਫ਼ਤਾ + {0} ਹਫ਼ਤਾ + {0} ਹਫ਼ਤੇ ਦਿਨ @@ -6623,43 +6961,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਘੰਟਾ {0} ਘੰਟੇ - - {0} μs - {0} μs - - - ਮਿਲੀਸਕਿੰਟ - {0} ms - {0} ms - ਮਿੰਟ {0} ਮਿੰਟ {0} ਮਿੰਟ - - ਮਹੀਨਾ - {0} ਮਹੀਨਾ - {0} ਮਹੀਨੇ - - - {0} ns - {0} ns - ਸਕਿੰਟ {0} ਸਕਿੰਟ {0} ਸਕਿੰਟ - - ਹਫ਼ਤਾ - {0} ਹਫ਼ਤਾ - {0} ਹਫ਼ਤੇ + + ਮਿਲੀਸਕਿੰਟ + {0} ms + {0} ms - - ਸਾਲ - {0} ਸਾਲ - {0} ਸਾਲ + + {0} μs + {0} μs + + + {0} ns + {0} ns {0}A @@ -6677,6 +7000,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}V {0}V + + {0}ਕਿ.ਕੈਲੋਰੀਆਂ + {0}ਕਿ.ਕੈਲੋਰੀਆਂ + {0} ਕੈਲੋਰੀਆਂ {0} ਕੈਲੋਰੀਆਂ @@ -6685,18 +7012,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਕੈਲੋਰੀਆਂ {0} ਕੈਲੋਰੀਆਂ - - {0} J - {0} J - - - {0}ਕਿ.ਕੈਲੋਰੀ - {0}ਕਿ.ਕੈਲੋਰੀਆਂ - {0} ਕਿ.ਜੂਲ {0} ਕਿ.ਜੂਲ + + {0} J + {0} J + {0} ਕਿ.ਵਾ.ਘੰ. {0} ਕਿ.ਵਾ.ਘੰ. @@ -6705,109 +7028,122 @@ For terms of use, see http://www.unicode.org/copyright.html {0}GHz {0}GHz - - {0}Hz - {0}Hz + + {0}MHz + {0}MHz {0}kHz {0}kHz - - {0}MHz - {0}MHz - - - {0} au - {0} au - - - ਸੈਂ.ਮੀ. - {0}ਸੈਂ.ਮੀ. - {0}ਸੈਂ.ਮੀ. - - - {0} ਡੈ.ਮੀ. - {0} ਡੈ.ਮੀ. - - - ਫ਼ੈਦਮ - {0} ਫ਼ੈਦਮ - {0} ਫ਼ੈਦਮ - - - {0}' - {0}' - - - ਫਰਲਾਂਗ - {0} ਫਰਲਾਂਗ - {0} ਫਰਲਾਂਗ - - - {0}" - {0}" + + {0}Hz + {0}Hz ਕਿ.ਮੀ. {0} ਕਿ.ਮੀ. {0} ਕਿ.ਮੀ. - - {0} ਪ੍ਰ.ਸ. - {0} ਪ੍ਰ.ਸ. - ਮੀਟਰ {0} ਮੀ. {0} ਮੀ. - - {0} µm - {0} µm + + {0} ਡੈ.ਮੀ. + {0} ਡੈ.ਮੀ. - - {0} ਮੀਲ - {0} ਮੀਲ + + ਸੈਂ.ਮੀ. + {0}ਸੈਂ.ਮੀ. + {0}ਸੈਂ.ਮੀ. ਮਿ.ਮੀ. {0} ਮਿ.ਮੀ. {0} ਮਿ.ਮੀ. + + {0} µm + {0} µm + {0} ਨੈ.ਮੀ. {0} ਨੈ.ਮੀ. - - {0} ਨੋ.ਮੀਲ - {0} ਨੋ.ਮੀਲ - - - {0} ਪਾਸੈੱਕ - {0} ਪਾਸੈੱਕ - {0} ਪਿ.ਮੀ. {0} ਪਿ.ਮੀ. + + {0} ਮੀਲ + {0} ਮੀਲ + {0} ਗਜ਼ {0} ਗਜ਼ + + {0}' + {0}' + + + {0}" + {0}" + + + {0} ਪਾਸੈੱਕ + {0} ਪਾਸੈੱਕ + + + {0} ਪ੍ਰ.ਸ. + {0} ਪ੍ਰ.ਸ. + + + {0} au + {0} au + + + ਫਰਲਾਂਗ + {0} ਫਰਲਾਂਗ + {0} ਫਰਲਾਂਗ + + + ਫ਼ੈਦਮ + {0} ਫ਼ੈਦਮ + {0} ਫ਼ੈਦਮ + + + {0} ਨੋ.ਮੀਲ + {0} ਨੋ.ਮੀਲ + {0} ਲਕਸ {0} ਲਕਸ + + ਕਿ ਗ੍ਰਾ + {0} ਕਿ.ਗ੍ਰਾ. + {0} ਕਿ.ਗ੍ਰਾ. + ਗ੍ਰਾਮ {0} ਗ੍ਰਾ. {0} ਗ੍ਰਾ. - - ਕਿ ਗ੍ਰਾ - {0} ਕਿ.ਗ੍ਰਾ. - {0} ਕਿ.ਗ੍ਰਾ. + + {0}ਟਨ + {0}ਟਨ + + + ਸਟੋਨ + {0}ਸਟੋਨ + {0}ਸਟੋਨ + + + {0}# + {0}# {0} ਔਂਸ @@ -6817,47 +7153,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਔਂਸ ਟ. {0} ਔਂਸ ਟ. - - {0}# - {0}# - - - ਸਟੋਨ - {0}ਸਟੋਨ - {0}ਸਟੋਨ - - - {0}ਟਨ - {0}ਟਨ - {0} ਗੀ.ਵਾਟ {0} ਗੀ.ਵਾਟ - - {0}hp - {0} hp - - - {0} ਕਿ. ਵਾਟ - {0} ਕਿ. ਵਾਟ - {0} ਮੈ.ਵਾਟ {0} ਮੈ.ਵਾਟ - - {0} ਮਿ.ਵਾਟ - {0} ਮਿ.ਵਾਟ + + {0} ਕਿ. ਵਾਟ + {0} ਕਿ. ਵਾਟ {0} ਵਾਟ {0} ਵਾਟ + + {0} ਮਿ.ਵਾਟ + {0} ਮਿ.ਵਾਟ + + + {0}hp + {0} hp + {0} ਹੈ.ਪਾ. {0} ਹੈ.ਪਾ. + + {0} ਮਿ.ਮੀ. ਪਾਰਾ + {0} ਮਿ.ਮੀ. ਪਾਰਾ + + + {0} ਪੌਂ.ਵ.ਇੰਚ + {0} ਪੌਂ.ਵ.ਇੰਚ + {0}" ਪਾਰਾ {0}" ਪਾਰਾ @@ -6866,18 +7197,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਮਿ.ਬਾ. {0} ਮਿ.ਬਾ. - - {0} ਮਿਮੀ ਪਾਰਾ - {0} ਮਿਮੀ ਪਾਰਾ - - - {0} ਪੌਂ.ਵ.ਇੰਚ - {0} ਪੌਂ.ਵ.ਇੰਚ - - - {0} ਕੇਰਟ - {0} ਕੇਰਟ - ਕਿ.ਮੀ./ਘੰਟਾ {0} ਕਿ.ਪ੍ਰ.ਘੰ. @@ -6904,31 +7223,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}°K {0}°K - - {0}ਏਕੜ ਫੁੱਟ - {0}ਏਕੜ ਫੁੱਟ - - - ਬੁਸ਼ਲ - {0}ਬੁਸ਼ਲ - {0}ਬੁਸ਼ਲ - - - {0} ਸੈਂ.ਲਿ. - {0} ਸੈਂ.ਲਿ. - - - {0}ਸੈਮੀ³ - {0}ਸੈਮੀ³ - - - {0}ਫੁੱਟ³ - {0}ਫੁੱਟ³ - - - {0}ਇੰਚ³ - {0}ਇੰਚ³ - {0}ਕਿਮੀ³ {0}ਕਿਮੀ³ @@ -6937,6 +7231,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ਮੀ³ {0}ਮੀ³ + + {0}ਸੈਮੀ³ + {0}ਸੈਮੀ³ + {0}ਮੀਲ³ {0}ਮੀਲ³ @@ -6945,21 +7243,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ਗਜ਼³ {0}ਗਜ਼³ - - {0}ਕੱਪ - {0}ਕੱਪ + + {0}ਫੁੱਟ³ + {0}ਫੁੱਟ³ - - {0} ਡੈ.ਲਿ. - {0} ਡੈ.ਲਿ. + + {0}ਇੰਚ³ + {0}ਇੰਚ³ - - {0} ਤ. ਔਂਸ - {0} ਤ. ਔਂਸ - - - {0}ਗੈਲਨ - {0}ਗੈਲਨ + + {0} ਮੈ.ਲਿ. + {0} ਮੈ.ਲਿ. {0} ਹੈ.ਲਿ. @@ -6970,22 +7264,53 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ਲਿ. {0} ਲਿ. - - {0} ਮੈ.ਲਿ. - {0} ਮੈ.ਲਿ. + + {0} ਡੈ.ਲਿ. + {0} ਡੈ.ਲਿ. + + + {0} ਸੈਂ.ਲਿ. + {0} ਸੈਂ.ਲਿ. {0} ਮਿ.ਲਿ. {0} ਮਿ.ਲਿ. - - {0}ਪਿੰਟ - {0}ਪਿੰਟ + + {0}ਏਕੜ ਫੁੱਟ + {0}ਏਕੜ ਫੁੱਟ + + + ਬੁਸ਼ਲ + {0}ਬੁਸ਼ਲ + {0}ਬੁਸ਼ਲ + + + {0}ਗੈਲਨ + {0}ਗੈਲਨ {0}ਕੁਆਟ {0}ਕੁਆਟ + + {0}ਪਿੰਟ + {0}ਪਿੰਟ + + + {0}ਕੱਪ + {0}ਕੱਪ + + + {0} ਤ. ਔਂਸ + {0} ਤ. ਔਂਸ + + + {0}ਪੂ + {0}ਉ + {0}ਦੱ + {0}ਪੱ + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pa_Arab.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pa_Arab.xml similarity index 73% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pa_Arab.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pa_Arab.xml index bbb7a43c609..7c8f6c22679 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pa_Arab.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pa_Arab.xml @@ -1,13 +1,12 @@ - - - + + + + + + + + + + + + + swītai + Afrika + Zēimanamērika + Pussideinanamērika + Amērika + Āzija + Eurōpa + Andōra + Antīgwa be Barbūda + Albānija + Argentīnija + Āustrarīki + Austrālija + Bōsnija be Ercegōwina + Barbādas + Belgija + Bulgārija + Bōliwija + Brazīlija + Bahāmai + Krēiwa + Belīzi + Kānada + Šwēici + Čīli + Kīna + Kōlumbija + Costa Rica + Kūba + Čekkija + Mikskātauta + Dānanmarki + Dōminika + Dōminikas Republīki + Ekwadōrs + Estantauta + Špānija + Sōmija + Farēirai + Prankrīki + Debabritānija + DB + Grenāda + Prancōziska Gujāna + Gibrāltars + Grēnlandan + Grēkantauta + Gwatemāla + Gujāna + Hōnduras + Kruātija + Haīti + Ungrai + Indōnezija + Īndija + Īslandan + Wālkija + Jamāika + Japānija + Pussideinankōreja + Līchtenšteinan + Laītawa + Luksemburgan + Lattawa + Mōnakō + Mōldawija + Mōntenegran + Macedōnija + Mālta + Meksiku + Nikarāgwa + Nōrwigai + Nawazēlandan + Panāma + Perū + Pōli + Pōrtugalin + Palau + Paragwājs + Rumānija + Serbija + Russi + Saūdi Arābija + Šwēdija + Slōwenija + Slōwakei + San Marinō + Surināms + El Salvadōrs + Tāilandan + Turkāja + Trinidāds be Tobagō + Taiwāns + Ukrāini + Peraīnintas Wālstis + PW + Urugwājs + Venezuēla + Kōsawa + Pussideinanafrika + niwaistā regiōni + + + Gregōriskas kalāndars + sēisnas rikā + lātiniskas cipperis + + + mētriskan + brītiskan + amērikaniskan + + + Bilā: {0} + Skriptan: {0} + Regiōni: {0} + + + + [a ā b c d ḑ e ē f g ģ h i ī j k ķ l m n ņ o ō p q r ŗ s š t ț u ū v w x y z ž] + [] + [A Ā B C D Ḑ E Ē F G Ģ H I Ī J K Ķ L M N Ņ O Ō P Q R Ŗ S Š T Ț U Ū V W X Y Z Ž] + [\- ‐ – — , ; \: ! ? . … “ „ ( ) \[ \] \{ \}] + + + + + + + + + + + + + + EEEE, y 'mettas' d. MMMM G + + + + + y 'mettas' d. MMMM G + + + + + dd.MM 'st'. y G + + + + + dd.MM.y GGGGG + + + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + {0} – {1} + + + + + + + + rag + was + pūl + sak + zal + sīm + līp + dag + sil + spa + lap + sal + + + R + W + P + S + Z + S + L + D + S + S + L + S + + + rags + wassarins + pūlis + sakkis + zallaws + sīmenis + līpa + daggis + sillins + spallins + lapkrūtis + sallaws + + + + + rag + was + pūl + sak + zal + sīm + līp + dag + sil + spa + lap + sal + + + R + W + P + S + Z + S + L + D + S + S + L + S + + + rags + wassarins + pūlis + sakkis + zallaws + sīmenis + līpa + daggis + sillins + spallins + lapkrūtis + sallaws + + + + + + + nad + pan + wis + pus + ket + pēn + sab + + + N + P + W + P + K + P + S + + + nadīli + panadīli + wisasīdis + pussisawaiti + ketwirtiks + pēntniks + sabattika + + + + + nad + pan + wis + pus + ket + pēn + sab + + + N + P + W + P + K + P + S + + + nadīli + panadīli + wisasīdis + pussisawaiti + ketwirtiks + pēntniks + sabattika + + + + + + + 1. k. + 2. k. + 3. k. + 4. k. + + + 1 + 2 + 3 + 4 + + + 1. ketwirts + 2. ketwirts + 3. ketwirts + 4. ketwirts + + + + + 1. ketw. + 2. ketw. + 3. ketw. + 4. ketw. + + + 1 + 2 + 3 + 4 + + + 1. ketwirts + 2. ketwirts + 3. ketwirts + 4. ketwirts + + + + + + + AM + PM + + + ankstāinan + pa pussideinan + + + + + + BC + AD + + + + + + EEEE, y 'mettas' d. MMMM + + + + + y 'mettas' d. MMMM + + + + + dd.MM 'st'. y + + + + + dd.MM.yy + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + d. + ccc + E, d. + E, h:mm a + E, HH:mm + E, h:mm:ss a + E, HH:mm:ss + y 'm'. G + y 'm'. MMM G + dd.MM 'st'. y G + E, dd.MM 'st'. y G + h a + HH + h:mm a + HH:mm + h:mm:ss a + HH:mm:ss + h:mm:ss a; v + HH:mm:ss; v + h:mm a; v + HH:mm; v + L. + d.M + E, d.M + LLL + d. MMM + E, d. MMM + mm:ss + y 'm'. + M.y + d.M.y + E, d.M.y + y 'm'. MMM + dd.MM 'st'. y + E, dd.MM 'st'. y + y 'm'. QQQ + y 'm'. QQQQ + + + {0} {1} + + + {0} – {1} + + d.–d. + + + h a – h a + h–h a + + + HH–HH + + + h:mm a – h:mm a + h:mm–h:mm a + h:mm–h:mm a + + + HH:mm–HH:mm + HH:mm–HH:mm + + + h:mm a – h:mm a v + h:mm–h:mm a v + h:mm–h:mm a v + + + HH:mm–HH:mm v + HH:mm–HH:mm v + + + h a – h a v + h–h a v + + + HH–HH v + + + M.–M. + + + dd.MM–dd.MM + dd.MM–dd.MM + + + E, dd.MM – E, dd.MM + E, dd.MM – E, dd.MM + + + MMM–MMM + + + d.–d. MMM + d. MMM – d. MMM + + + E, d. – E, d. MMM + E, d. MMM – E, d. MMM + + + y–y + + + MM.y–MM.y + MM.y–MM.y + + + dd.MM.y–dd.MM.y + dd.MM.y–dd.MM.y + dd.MM.y–dd.MM.y + + + E, dd.MM.y – E, dd.MM.y + E, dd.MM.y – E, dd.MM.y + E, dd.MM.y – E, dd.MM.y + + + y 'm'. MMM–MMM + y 'm'. MMM – y 'm'. MMM + + + dd.–dd.MM 'st'. y + dd.MM–dd.MM 'st'. y + dd.MM 'st'. y – dd.MM 'st'. y + + + E, dd. – E, dd.MM 'st'. y + E, dd.MM – E, dd.MM 'st'. y + E, dd.MM 'st'. y – E, dd.MM 'st'. y + + + y 'mettas' MMMM–MMMM + y 'mettas' MMMM – y 'mettas' MMMM + + + + + + + + ēra + + + mettan + panzdauman mettan + this year + next year + + + m. + + + m. + + + ketwirts + + + ketw. + + + ketw. + + + mīnss + + + mī. + + + mī. + + + sawaīti + + + saw. + + + saw. + + + deinā + bītan + šandēinan + ankstāinan + + + d. + + + d. + + + sawaītis deinā + + + ankstāinan / pa pussideinan + + + stūndi + + + st. + + + st. + + + minūti + + + min. + + + min. + + + sekūndi + + + sek. + + + sek. + + + kerdaszōni + + + + +HH:mm;-HH:mm + GMT{0} + GMT + Kerdā: {0} + Daggas kerdā: {0} + Zēimas kerdā: {0} + {1} ({0}) + + + Centrālas Amērikas kerdā + Centrālas Amērikas zēimas kerdā + Centrālas Amērikas daggas kerdā + + + + + Dēiniskas Amērikas kerdā + Dēiniskas Amērikas zēimas kerdā + Dēiniskas Amērikas daggas kerdā + + + + + Amērikas gārban kerdā + Amērikas gārban zēimas kerdā + Amērikas gārban daggas kerdā + + + + + Pacīfiskas Amērikas kerdā + Pacīfiskas Amērikas zēimas kerdā + Pacīfiskas Amērikas daggas kerdā + + + + + Atlāntiska kerdā + Atlāntiska zēimas kerdā + Atlāntiska daggas kerdā + + + + + Centrālas Eurōpas kerdā + Centrālas Eurōpas zēimas kerdā + Centrālas Eurōpas daggas kerdā + + + + + Dēiniskas Eurōpas kerdā + Dēiniskas Eurōpas zēimas kerdā + Dēiniskas Eurōpas daggas kerdā + + + + + Wakkariskas Eurōpas kerdā + Wakkariskas Eurōpas zēimas kerdā + Wakkariskas Eurōpas daggas kerdā + + + + + Greenwich kerdā + + + + + + latn + + latn + + + , +   + % + + + - + + + + + #,##0.### + + + + + + + #E0 + + + + + + + #,##0% + + + + + + + #,##0.00 ¤ + + + {0} {1} + {0} {1} + {0} {1} + + + + Brazīlijas reals + Brazīlijas realin + Brazīlijas reals + Brazīlijas realai + + + Kīnas juāns + Kīnas juānan + Kīnas juāns + Kīnas juānai + + + eurō + eurō + eurō + eurō + + + punds sterlings + pundan sterlingan + punds sterlings + pundai sterlingai + + + Īndijas rūpija + Īndijas rūpijan + Īndijas rūpija + Īndijas rūpijas + + + Japānijas jāns + Japānijas jānan + Japānijas jāns + Japānijas jānai + + + Russis rūbels + Russis rūblin + Russis rūbels + Russis rūblai + + + APW dālars + APW dālaran + APW dālars + APW dālarai + + + niwaistā walūta + (niwaistā walūta) + (niwaistā walūtas aīnibi) + (niwaistā walūta) + + + + + + h:mm + + + h:mm:ss + + + m:ss + + + + + {0}, {1} + {0}, {1} + {0} be {1} + {0} be {1} + + + + + jā:j + ni:n + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/eo_001.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/prg_001.xml similarity index 72% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/eo_001.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/prg_001.xml index 4b4f55ce95c..5fa9e4d8828 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/eo_001.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/prg_001.xml @@ -6,9 +6,8 @@ For terms of use, see http://www.unicode.org/copyright.html --> - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ps.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ps.xml similarity index 85% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ps.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ps.xml index db31ef79cf2..22f5c8e8172 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ps.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ps.xml @@ -1,28 +1,27 @@ - - - + افريکاني - امهاري + امهاري عربي - اسمائى ژبه + آسامي أذربائجاني بلوڅي - بېلاروسي - بلغاري + بېلاروسي + بلغاري بنګالي برېتون - بوسني + بوسني کټلاني چېک ويلشي @@ -33,7 +32,7 @@ For terms of use, see http://www.unicode.org/copyright.html اسپرانتو هسپانوي حبشي - باسکي + باسکي فارسي فینلنډي تګالوګ @@ -75,7 +74,7 @@ For terms of use, see http://www.unicode.org/copyright.html ملایا مالټايي نېپالي - هالېنډي + هالېنډي ناروېئي (نائنورسک) ناروېئې اوکسيټاني @@ -95,7 +94,7 @@ For terms of use, see http://www.unicode.org/copyright.html سلوواکي سلوواني سومالي - الباني + الباني سربيائي سيسوتو سوډاني @@ -196,7 +195,7 @@ For terms of use, see http://www.unicode.org/copyright.html - [\u064E \u0650 \u064F \u064B \u064D \u064C \u0651 \u0652 \u0654 \u0670 آ ا أ ء ب پ ت ټ ث ج ځ چ څ ح خ د ډ ذ ر ړ ز ژ ږ س ش ښ ص ض ط ظ ع غ ف ق ک ګ ل م ن ڼ ه ة و ؤ ی ي ې ۍ ئ] + [\u064E \u0650 \u064F \u064B \u064D \u064C \u0651 \u0652 \u0654 \u0670 آ ا أ ء ب پ ت ټ ث ج ځ چ څ ح خ د ډ ذ ر ړ ز ژ ږ س ش ښ ص ض ط ظ ع غ ف ق ک ګ گ ل م ن ڼ ه ة و ؤ ی ي ې ۍ ئ] [\u200C \u200D \u200E\u200F] [آ ا ء ب پ ت ټ ث ج ځ چ څ ح خ د ډ ذ ر ړ ز ژ ږ س ش ښ ص ض ط ظ ع غ ف ق ک ګ ل م ن ڼ ه و ی] @@ -271,6 +270,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + غ.م. + غ.و. + غ.م. غ.و. @@ -404,8 +407,8 @@ For terms of use, see http://www.unicode.org/copyright.html , . % - ‎+ - ‎− + ‎+ + ‎− E @@ -414,6 +417,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0K ¤ + 0K ¤ + 00K ¤ + 00K ¤ + 000K ¤ + 000K ¤ + 0M ¤ + 0M ¤ + 00M ¤ + 00M ¤ + 000M ¤ + 000M ¤ + 0G ¤ + 0G ¤ + 00G ¤ + 00G ¤ + 000G ¤ + 000G ¤ + 0T ¤ + 0T ¤ + 00T ¤ + 00T ¤ + 000T ¤ + 000T ¤ + + @@ -424,12 +455,13 @@ For terms of use, see http://www.unicode.org/copyright.html - - ورځ - کالونه + + ورځ + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ps_AF.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ps_AF.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ps_AF.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ps_AF.xml index 7e99522f51a..c3724f73567 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ps_AF.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ps_AF.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt.xml index 4fc8253f961..f279d0c2c73 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt.xml @@ -6,8 +6,7 @@ For terms of use, see http://www.unicode.org/copyright.html --> - - + @@ -39,7 +38,7 @@ For terms of use, see http://www.unicode.org/copyright.html árabe árabe moderno aramaico - araucano + mapudungun arapaho arauaqui assamês @@ -50,6 +49,7 @@ For terms of use, see http://www.unicode.org/copyright.html aimara azerbaijano azeri + azeri sul bashkir balúchi balinês @@ -62,6 +62,7 @@ For terms of use, see http://www.unicode.org/copyright.html bena bafut búlgaro + balúchi ocidental bhojpuri bislamá bikol @@ -107,7 +108,7 @@ For terms of use, see http://www.unicode.org/copyright.html tcheco kashubian eslavo eclesiástico - chuvash + tchuvache galês dinamarquês dacota @@ -289,6 +290,7 @@ For terms of use, see http://www.unicode.org/copyright.html laosiano mongo lozi + luri setentrional lituano luba-catanga luba-lulua @@ -337,12 +339,14 @@ For terms of use, see http://www.unicode.org/copyright.html birmanês myene erzya + mazandarani nauruano napolitano nama bokmål norueguês ndebele do norte baixo alemão + baixo-saxão nepali newari dongo @@ -404,7 +408,7 @@ For terms of use, see http://www.unicode.org/copyright.html romani russo aromeno - kinyarwanda + quiniaruanda rwa sânscrito sandawe @@ -419,6 +423,7 @@ For terms of use, see http://www.unicode.org/copyright.html siciliano escocês sindi + curdo meridional sami do norte seneca sena @@ -436,9 +441,9 @@ For terms of use, see http://www.unicode.org/copyright.html esloveno samoano sami do sul - lule sami - inari sami - skolt sami + sami de Lule + sami de Inari + sami de Skolt shona soninquê somali @@ -456,8 +461,8 @@ For terms of use, see http://www.unicode.org/copyright.html sumério sueco suaíli + suaíli do Congo comoriano - suaíli do Congo siríaco clássico siríaco tâmil @@ -512,6 +517,7 @@ For terms of use, see http://www.unicode.org/copyright.html walamo waray washo + warlpiri uólofe kalmyk xosa @@ -713,7 +719,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albânia Armênia - Antilhas Holandesas Angola Antártida Argentina @@ -1028,6 +1033,9 @@ For terms of use, see http://www.unicode.org/copyright.html Classificação numérica Intensidade da classificação Moeda + Ciclo de horário (12 vs. 24) + Estilo de quebra de linha + Sistema de medição Números Fuso horário Variante de localidade @@ -1035,95 +1043,105 @@ For terms of use, see http://www.unicode.org/copyright.html Uso privado - Algarismos indo-arábicos - Algarismos indo-arábicos por extenso - Algarismos armênios - Algarismos armênios minúsculos - Algarismos Bengali - Ordem do Chinês Tradicional - Big5 - Calendário Budista - Calendário Chinês - Calendário Coptic - Calendário Dangi - Algarismos Devanagari - Ordem do dicionário - Ordem padrão do Unicode - Algarismos etiopianos - Calendário etiópico - Calendário Amete Alem da Etiópia - Numerais financeiros - Algarismos em extensão total - Ordem do Chinês Simplificado - GB2312 - Algarismos georgianos - Calendário Gregoriano - Algarismos gregos - Algarismos gregos minúsculos - Algarismos Gujarati - Algarismos Gurmukhi - Algarismos decimais chineses - Algarismos chineses simplificados - Algarismos financeiros chineses simplificados - Algarismos chineses tradicionais - Algarismos financeiros chineses tradicionais - Algarismos hebraicos - Calendário Hebraico - Classificar tudo - Calendário Nacional Indiano - Calendário Islâmico - Calendário Civil Islâmico - Calendário ISO-8601 - Calendário Japonês - Algarismos japoneses - Algarismos financeiros japoneses - Algarismos Khmer - Algarismos Kannada - Algarismos laosianos - Algarismos ocidentais - Classificar por minúsculas - Algarismos Malayalam - Algarismos mongóis - Algarismos Myanmar - Dígitos nativos - Classificar acentos normalmente - Classificação normal de maiúsculas e minúsculas - Classificação sem diferenciação de maiúsculas e minúsculas - Classificar kana separadamente - Classificar sem normalização - Classificar dígitos individualmente - Classificar símbolos - Algarismos Oriya - Calendário Persa - Ordem de Lista Telefônica - Ordem de classificação fonética - Ordem Pin-yin - Classificar somente letras básicas - Classificar acentos/maiúsculas e minúsculas/largura/kana - Ordem reformulada - Calendário da República da China - Algarismos romanos - Algarismos romanos minúsculos - Pesquisa de uso geral - Pesquisar por consonante inicial hangul - Classificar acentos - Classificar ignorando símbolos - padrão - Ordem dos Traços - Algarismos Tâmil - Algarismos Tâmil - Algarismos Telugu - Classificar acentos/maiúsculas e minúsculas/largura - Algarismos tailandeses - Algarismos tibetanos - Ordem Tradicional - Numerais tradicionais - Ordem por Radical-Traços - Classificar por maiúsculas - Dígitos vai - Classificação reversa de acentos - Classificação com diferenciação de maiúsculas e minúsculas - Classificar kana diferentemente - Classificar Unicode normalizado - Classificar dígitos numericamente + Calendário Budista + Calendário Chinês + Calendário Coptic + Calendário Dangi + Calendário etíope + Calendário Amete Alem da Etiópia + Calendário Gregoriano + Calendário Hebraico + Calendário Nacional Indiano + Calendário Islâmico + Calendário Civil Islâmico + Calendário ISO-8601 + Calendário Japonês + Calendário Persa + Calendário da República da China + Classificar símbolos + Classificar ignorando símbolos + Classificar acentos normalmente + Classificação reversa de acentos + Classificar por minúsculas + Classificação normal de maiúsculas e minúsculas + Classificar por maiúsculas + Classificação sem diferenciação de maiúsculas e minúsculas + Classificação com diferenciação de maiúsculas e minúsculas + Classificar kana separadamente + Classificar kana diferentemente + Ordem do Chinês Tradicional - Big5 + Ordem do dicionário + Ordem padrão do Unicode + Ordem do Chinês Simplificado - GB2312 + Ordem de Lista Telefônica + Ordem de classificação fonética + Ordem Pin-yin + Ordem reformulada + Pesquisa de uso geral + Pesquisar por consonante inicial hangul + padrão + Ordem dos Traços + Ordem Tradicional + Ordem por Radical-Traços + Classificar sem normalização + Classificar Unicode normalizado + Classificar dígitos individualmente + Classificar dígitos numericamente + Classificar tudo + Classificar somente letras básicas + Classificar acentos/maiúsculas e minúsculas/largura/kana + Classificar acentos + Classificar acentos/maiúsculas e minúsculas/largura + Sistema de 12 horas (0–11) + Sistema de 12 horas (1–12) + Sistema de 24 horas (0–23) + Sistema de 24 horas (1–24) + Quebra de linha com estilo solto + Quebra de linha com estilo normal + Quebra de linha com estilo estrito + Sistema métrico + Sistema de medição imperial + Sistema de medição americano + Algarismos indo-arábicos + Algarismos indo-arábicos por extenso + Algarismos armênios + Algarismos armênios minúsculos + Algarismos Bengali + Algarismos Devanagari + Algarismos etiopianos + Numerais financeiros + Algarismos em extensão total + Algarismos georgianos + Algarismos gregos + Algarismos gregos minúsculos + Algarismos Gujarati + Algarismos Gurmukhi + Algarismos decimais chineses + Algarismos chineses simplificados + Algarismos financeiros chineses simplificados + Algarismos chineses tradicionais + Algarismos financeiros chineses tradicionais + Algarismos hebraicos + Algarismos japoneses + Algarismos financeiros japoneses + Algarismos Khmer + Algarismos Kannada + Algarismos laosianos + Algarismos ocidentais + Algarismos Malayalam + Algarismos mongóis + Algarismos Myanmar + Dígitos nativos + Algarismos Oriya + Algarismos romanos + Algarismos romanos minúsculos + Algarismos Tâmil + Algarismos Tâmil + Algarismos Telugu + Algarismos tailandeses + Algarismos tibetanos + Numerais tradicionais + Dígitos vai BGN @@ -1242,18 +1260,18 @@ For terms of use, see http://www.unicode.org/copyright.html - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 + Mês 1 + Mês 2 + Mês 3 + Mês 4 + Mês 5 + Mês 6 + Mês 7 + Mês 8 + Mês 9 + Mês 10 + Mês 11 + Mês 12 1 @@ -1490,6 +1508,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E, d y G MMM 'de' y G @@ -1507,6 +1526,8 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d 'de' MMM E, d 'de' MMM + d 'de' MMMM + E, d 'de' MMMM mm:ss y G y G @@ -1516,6 +1537,9 @@ For terms of use, see http://www.unicode.org/copyright.html MMM 'de' y G d 'de' MMM 'de' y G E, d 'de' MMM 'de' y G + MMMM 'de' y G + d 'de' MMMM 'de' y G + E, d 'de' MMMM 'de' y G G y QQQ G y QQQQ @@ -1830,37 +1854,74 @@ For terms of use, see http://www.unicode.org/copyright.html - AM - PM - - - a - n - p - - - tarde + meia-noite AM - manhã - noite meio-dia PM + da manhã + da tarde + da noite + da madrugada + + + m + a + m + p + da manhã + da tarde + da noite + da madrugada + + + meia-noite + AM + meio-dia + PM + da manhã + da tarde + da noite + da madrugada - tarde - manhã - noite - meia-noite + meia-noite + AM + meio-dia + PM + manhã + tarde + noite + madrugada + + + meia-noite + AM + meio-dia + PM + manhã + tarde + noite + madrugada + + + meia-noite + AM + meio-dia + PM + manhã + tarde + noite + madrugada - Antes de Cristo - Antes da Era Comum - Ano do Senhor + antes de Cristo + antes da Era Comum + depois de Cristo Era Comum @@ -1964,6 +2025,8 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d 'de' MMM E, d 'de' MMM + d 'de' MMMM + E, d 'de' MMMM mm:ss y MM/y @@ -1973,6 +2036,9 @@ For terms of use, see http://www.unicode.org/copyright.html MMM 'de' y d 'de' MMM 'de' y E, d 'de' MMM 'de' y + MMMM 'de' y + d 'de' MMMM 'de' y + E, d 'de' MMMM 'de' y y QQQ y QQQQ @@ -2321,31 +2387,31 @@ For terms of use, see http://www.unicode.org/copyright.html - Era + era - Ano + ano ano passado este ano próximo ano - Dentro de {0} ano - Dentro de {0} anos + em {0} ano + em {0} anos - Há {0} ano - Há {0} anos + há {0} ano + há {0} anos ano - Dentro de {0} ano - Dentro de {0} anos + em {0} ano + em {0} anos - Há {0} ano - Há {0} anos + há {0} ano + há {0} anos @@ -2360,25 +2426,25 @@ For terms of use, see http://www.unicode.org/copyright.html - Trimestre + trimestre - Dentro de {0} trimestre - Dentro de {0} trimestres + em {0} trimestre + em {0} trimestres - Há {0} trimestre - Há {0} trimestres + há {0} trimestre + há {0} trimestres trim. - Dentro de {0} trim. - Dentro de {0} trims. + em {0} trim. + em {0} trims. - Há {0} trim. - Há {0} trims. + há {0} trim. + há {0} trims. @@ -2393,28 +2459,28 @@ For terms of use, see http://www.unicode.org/copyright.html - Mês + mês mês passado este mês próximo mês - Dentro de {0} mês - Dentro de {0} meses + em {0} mês + em {0} meses - Há {0} mês - Há {0} meses + há {0} mês + há {0} meses mês - Dentro de {0} mês - Dentro de {0} meses + em {0} mês + em {0} meses - Há {0} mês - Há {0} meses + há {0} mês + há {0} meses @@ -2429,28 +2495,28 @@ For terms of use, see http://www.unicode.org/copyright.html - Semana + semana semana passada esta semana próxima semana - Dentro de {0} semana - Dentro de {0} semanas + em {0} semana + em {0} semanas - Há {0} semana - Há {0} semanas + há {0} semana + há {0} semanas sem. - Dentro de {0} sem. - Dentro de {0} sem. + em {0} sem. + em {0} sem. - Há {0} sem. - Há {0} sem. + há {0} sem. + há {0} sem. @@ -2465,30 +2531,30 @@ For terms of use, see http://www.unicode.org/copyright.html - Dia + dia anteontem ontem hoje amanhã depois de amanhã - Dentro de {0} dia - Dentro de {0} dias + em {0} dia + em {0} dias - Há {0} dia - Há {0} dias + há {0} dia + há {0} dias dia - Dentro de {0} dia - Dentro de {0} dias + em {0} dia + em {0} dias - Há {0} dia - Há {0} dias + há {0} dia + há {0} dias @@ -2503,7 +2569,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Dia da semana + dia da semana domingo passado @@ -2614,25 +2680,25 @@ For terms of use, see http://www.unicode.org/copyright.html AM/PM - Hora + hora - Dentro de {0} hora - Dentro de {0} horas + em {0} hora + em {0} horas - Há {0} hora - Há {0} horas + há {0} hora + há {0} horas - hr. + h - Dentro de {0} h - Dentro de {0} h + em {0} h + em {0} h - Há {0} h - Há {0} h + há {0} h + há {0} h @@ -2647,25 +2713,25 @@ For terms of use, see http://www.unicode.org/copyright.html - Minuto + minuto - Dentro de {0} minuto - Dentro de {0} minutos + em {0} minuto + em {0} minutos - Há {0} minuto - Há {0} minutos + há {0} minuto + há {0} minutos min. - Dentro de {0} min. - Dentro de {0} min + em {0} min. + em {0} mins. - Há {0} min. - Há {0} min + há {0} min. + há {0} mins. @@ -2680,26 +2746,26 @@ For terms of use, see http://www.unicode.org/copyright.html - Segundo + segundo agora - Dentro de {0} segundo - Dentro de {0} segundos + em {0} segundo + em {0} segundos - Há {0} segundo - Há {0} segundos + há {0} segundo + há {0} segundos seg. - Dentro de {0} seg. - Dentro de {0} seg. + em {0} seg. + em {0} segs. - Há {0} seg. - Há {0} seg. + há {0} seg. + há {0} seg. @@ -2714,7 +2780,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Fuso horário + fuso horário @@ -3592,6 +3658,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -3676,6 +3745,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Chita + Yakutsk @@ -3694,6 +3766,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolymsk + Kamchatka @@ -5048,6 +5123,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0 mil + ¤0 mil + ¤00 mil + ¤00 mil + ¤000 mil + ¤000 mil + ¤0 mi + ¤0 mi + ¤00 mi + ¤00 mi + ¤000 mi + ¤000 mi + ¤0 bi + ¤0 bi + ¤00 bi + ¤00 bi + ¤000 bi + ¤000 bi + ¤0 tri + ¤0 tri + ¤00 tri + ¤00 tri + ¤000 tri + ¤000 tri + + {0} {1} {0} {1} @@ -5102,6 +5205,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kwanza angolano Kwanzas angolanos AOA + Kz Cuanza angolano (1977–1990) @@ -5184,6 +5288,7 @@ For terms of use, see http://www.unicode.org/copyright.html Marco bósnio-herzegovino conversível Marco bósnio-herzegovino conversível BAM + KM Novo dinar da Bósnia-Herzegovina (1994–1997) @@ -5271,6 +5376,7 @@ For terms of use, see http://www.unicode.org/copyright.html Boliviano Bolivianos BOB + Bs Boliviano (1863–1963) @@ -5347,6 +5453,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pula botsuanesa Pulas botsuanesas BWP + P Rublo novo bielo-russo (1994–1999) @@ -5459,6 +5566,7 @@ For terms of use, see http://www.unicode.org/copyright.html Peso cubano conversível Pesos cubanos conversíveis CUC + $ Peso cubano @@ -5483,6 +5591,7 @@ For terms of use, see http://www.unicode.org/copyright.html Coroa tcheca Coroas tchecas CZK + Ostmark da Alemanha Oriental @@ -5505,6 +5614,7 @@ For terms of use, see http://www.unicode.org/copyright.html Coroa dinamarquesa Coroas dinamarquesas DKK + kr Peso dominicano @@ -5539,6 +5649,7 @@ For terms of use, see http://www.unicode.org/copyright.html Libra egípcia Libras egípcias EGP + Nakfa da Eritreia @@ -5591,6 +5702,7 @@ For terms of use, see http://www.unicode.org/copyright.html Libra malvinense Libras malvinenses FKP + £ Franco francês @@ -5614,6 +5726,7 @@ For terms of use, see http://www.unicode.org/copyright.html Lari georgiano Laris georgianos GEL + Cedi de Gana (1979–2007) @@ -5644,6 +5757,7 @@ For terms of use, see http://www.unicode.org/copyright.html Franco guineano Francos guineanos GNF + FG Syli da Guiné @@ -5665,6 +5779,7 @@ For terms of use, see http://www.unicode.org/copyright.html Quetzal guatemalense Quetzais guatemalenses GTQ + Q Escudo da Guiné Portuguesa @@ -5695,6 +5810,7 @@ For terms of use, see http://www.unicode.org/copyright.html Lempira hondurenha Lempiras hondurenhas HNL + L Dinar croata @@ -5706,6 +5822,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kuna croata Kunas croatas HRK + kn Gourde haitiano @@ -5718,12 +5835,14 @@ For terms of use, see http://www.unicode.org/copyright.html Forint húngaro Forints húngaros HUF + Ft Rupia indonésia Rupia indonésia Rupias indonésias IDR + Rp Libra irlandesa @@ -5776,6 +5895,7 @@ For terms of use, see http://www.unicode.org/copyright.html Coroa islandesa Coroas islandesas ISK + kr Lira italiana @@ -5826,12 +5946,14 @@ For terms of use, see http://www.unicode.org/copyright.html Franco comorense Francos comorenses KMF + CF Won norte-coreano Won norte-coreano Wons norte-coreanos KPW + Hwan da Coreia do Sul (1953–1962) @@ -5882,12 +6004,14 @@ For terms of use, see http://www.unicode.org/copyright.html Libra libanesa Libras libanesas LBP + Rupia ceilandesa Rupia ceilandesa Rupias ceilandesas LKR + Rs Dólar liberiano @@ -5976,6 +6100,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ariary malgaxe Ariarys malgaxes MGA + Ar Franco de Madagascar @@ -6003,6 +6128,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kyat mianmarense Kyats mianmarenses MMK + K Tugrik mongol @@ -6038,6 +6164,7 @@ For terms of use, see http://www.unicode.org/copyright.html Rupia mauriciana Rupias mauricianas MUR + Rs Rupia maldiva @@ -6073,6 +6200,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ringgit malaio Ringgits malaios MYR + RM Escudo de Moçambique @@ -6114,6 +6242,7 @@ For terms of use, see http://www.unicode.org/copyright.html Córdoba nicaraguense Córdobas nicaraguenses NIO + C$ Florim holandês @@ -6125,12 +6254,14 @@ For terms of use, see http://www.unicode.org/copyright.html Coroa norueguesa Coroas norueguesas NOK + kr Rupia nepalesa Rupia nepalesa Rupias nepalesas NPR + Rs Dólar neozelandês @@ -6185,12 +6316,14 @@ For terms of use, see http://www.unicode.org/copyright.html Rupia paquistanesa Rupias paquistanesas PKR + Rs Zloti polonês Zloti polonês Zlotis poloneses PLN + Zloti polonês (1950–1995) @@ -6229,7 +6362,7 @@ For terms of use, see http://www.unicode.org/copyright.html Leu romeno Leu romeno - Leus da Romênia + Leus romenos RON @@ -6243,6 +6376,7 @@ For terms of use, see http://www.unicode.org/copyright.html Rublo russo Rublos russos RUB + Rublo russo (1991–1998) @@ -6254,6 +6388,7 @@ For terms of use, see http://www.unicode.org/copyright.html Franco ruandês Francos ruandeses RWF + RF Riyal saudita @@ -6295,6 +6430,7 @@ For terms of use, see http://www.unicode.org/copyright.html Coroa sueca Coroas suecas SEK + kr Dólar singapuriano @@ -6308,6 +6444,7 @@ For terms of use, see http://www.unicode.org/copyright.html Libra de Santa Helena Libras de Santa Helena SHP + £ Tolar Bons esloveno @@ -6355,6 +6492,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dobra de São Tomé e Príncipe Dobras de São Tomé e Príncipe STD + Db Rublo soviético @@ -6371,6 +6509,7 @@ For terms of use, see http://www.unicode.org/copyright.html Libra síria Libras sírias SYP + £ Lilangeni suazi @@ -6383,6 +6522,7 @@ For terms of use, see http://www.unicode.org/copyright.html Baht tailandês Bahts tailandeses ฿ + ฿ Rublo do Tadjiquistão @@ -6417,6 +6557,7 @@ For terms of use, see http://www.unicode.org/copyright.html Paʻanga tonganesa Paʻangas tonganesas TOP + T$ Escudo timorense @@ -6434,6 +6575,7 @@ For terms of use, see http://www.unicode.org/copyright.html Liras turcas TRY + TL Dólar de Trinidad e Tobago @@ -6528,6 +6670,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bolívar venezuelano Bolívares venezuelanos VEF + Bs Dong vietnamita @@ -6594,6 +6737,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dólar do Caribe Oriental Dólares do Caribe Oriental EC$ + $ Direitos Especiais de Giro @@ -6693,6 +6837,7 @@ For terms of use, see http://www.unicode.org/copyright.html Rand sul-africano Rands sul-africanos ZAR + R Cuacha zambiano (1968–2012) @@ -6705,6 +6850,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kwacha zambiano Kwachas zambianos ZMW + ZK Zaire Novo zairense (1993–1998) @@ -6752,6 +6898,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metro por segundo ao quadrado {0} metros por segundo ao quadrado + + revolução + {0} revolução + {0} revoluções + + + radianos + {0} radiano + {0} radianos + + + graus + {0} grau + {0} graus + minutos de arco {0} minuto de arco @@ -6762,30 +6923,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} segundo de arco {0} segundos de arco - - graus - {0} grau - {0} graus - - - radianos - {0} radiano - {0} radianos - - - acres - {0} acre - {0} acres + + quilômetros quadrados + {0} quilômetro quadrado + {0} quilômetros quadrados hectares {0} hectare {0} hectares + + metros quadrados + {0} metro quadrado + {0} metros quadrados + {0} por metro quadrado + centímetros quadrados {0} centímetro quadrado {0} centímetros quadrados + {0} por centímetro quadrado + + + milhas quadradas + {0} milha quadrada + {0} milhas quadradas + + + acres + {0} acre + {0} acres + + + jardas quadradas + {0} jarda quadrada + {0} jardas quadradas pés quadrados @@ -6796,91 +6969,106 @@ For terms of use, see http://www.unicode.org/copyright.html polegadas quadradas {0} polegada quadrada {0} polegadas quadradas + {0} por polegada quadrada - - quilômetros quadrados - {0} quilômetro quadrado - {0} quilômetros quadrados - - - metros quadrados - {0} metro quadrado - {0} metros quadrados - - - milhas quadradas - {0} milha quadrada - {0} milhas quadradas - - - jardas quadradas - {0} jarda quadrada - {0} jardas quadradas + + kilates + {0} kilate + {0} kilates litros por quilômetro {0} litro por quilômetro {0} litros por quilômetro + + litros por 100 quilômetros + {0} litro por 100 quilômetros + {0} litros por 100 quilômetros + milhas por galão {0} milha por galão {0} milhas por galão - - bits - {0} bit - {0} bits - - - bytes - {0} byte - {0} bytes - - - gigabits - {0} gigabit - {0} gigabits - - - gigabytes - {0} gigabyte - {0} gigabytes - - - kilobits - {0} kilobit - {0} kilobits - - - kilobytes - {0} kilobyte - {0} kilobytes - - - megabits - {0} megabit - {0} megabits - - - megabytes - {0} megabyte - {0} megabytes - - - terabits - {0} terabit - {0} terabits - terabytes {0} terabyte {0} terabytes + + terabits + {0} terabit + {0} terabits + + + gigabytes + {0} gigabyte + {0} gigabytes + + + gigabits + {0} gigabit + {0} gigabits + + + megabytes + {0} megabyte + {0} megabytes + + + megabits + {0} megabit + {0} megabits + + + kilobytes + {0} kilobyte + {0} kilobytes + + + kilobits + {0} kilobit + {0} kilobits + + + bytes + {0} byte + {0} bytes + + + bits + {0} bit + {0} bits + + + séculos + {0} século + {0} sécs. + + + anos + {0} ano + {0} anos + {0} por ano + + + meses + {0} mês + {0} meses + {0} por mês + + + semanas + {0} semana + {0} semanas + {0} por semana + dias {0} dia {0} dias + {0} por dia horas @@ -6888,30 +7076,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} horas {0} por hora - - microssegundos - {0} microssegundo - {0} microssegundos - - - milissegundos - {0} milissegundo - {0} milissegundos - minutos {0} minuto {0} minutos - - - meses - {0} mês - {0} meses - - - nanossegundos - {0} nanossegundo - {0} nanossegundos + {0} por minuto segundos @@ -6919,15 +7088,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} segundos {0} por segundo - - semanas - {0} semana - {0} semanas + + milissegundos + {0} milissegundo + {0} milissegundos - - anos - {0} ano - {0} anos + + microssegundos + {0} microssegundo + {0} microssegundos + + + nanossegundos + {0} nanossegundo + {0} nanossegundos amperes @@ -6949,6 +7123,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volts + + quilocalorias + {0} quilocaloria + {0} quilocalorias + calorias {0} caloria @@ -6959,21 +7138,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Caloria {0} Calorias - - joules - {0} joule - {0} joules - - - quilocalorias - {0} quilocaloria - {0} quilocalorias - quilojoules {0} quilojoule {0} quilojoules + + joules + {0} joule + {0} joules + quilowatts-hora {0} quilowatt-hora @@ -6984,201 +7158,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigahertz {0} gigahertz - - hertz - {0} hertz - {0} hertz + + megahertz + {0} megahertz + {0} megahertz kilohertz {0} kilohertz {0} kilohertz - - megahertz - {0} megahertz - {0} megahertz + + hertz + {0} hertz + {0} hertz - - unidades astronômicas - {0} unidade astronômica - {0} unidades astronômicas + + quilômetros + {0} quilômetro + {0} quilômetros + {0} por quilômetro - - centímetros - {0} centímetro - {0} centímetros + + metros + {0} metro + {0} metros + {0} por metro decímetros {0} decímetro {0} decímetros - - pés - {0} pé - {0} pés - - - polegadas - {0} polegada - {0} polegadas - - - quilômetros - {0} quilômetro - {0} quilômetros - - - anos-luz - {0} ano-luz - {0} anos-luz - - - metros - {0} metro - {0} metros - - - micrômetros - {0} micrômetro - {0} micrômetros - - - milhas - {0} milha - {0} milhas + + centímetros + {0} centímetro + {0} centímetros + {0} por centímetro milímetros {0} milímetro {0} milímetros + + micrômetros + {0} micrômetro + {0} micrômetros + nanômetros {0} nanômetro {0} nanômetros - - milhas náuticas - {0} milha náutica - {0} milhas náuticas - - - parsecs - {0} parsec - {0} parsecs - picômetros {0} picômetro {0} picômetros + + milhas + {0} milha + {0} milhas + jardas {0} jarda {0} jardas + + pés + {0} pé + {0} pés + {0} por pé + + + polegadas + {0} polegada + {0} polegadas + {0} por polegada + + + parsecs + {0} parsec + {0} parsecs + + + anos-luz + {0} ano-luz + {0} anos-luz + + + unidades astronômicas + {0} unidade astronômica + {0} unidades astronômicas + + + milhas náuticas + {0} milha náutica + {0} milhas náuticas + + + milhas escandinavas + {0} milha escandinava + {0} milhas escandinavas + lux {0} lux {0} lux - - quilates - {0} quilate - {0} quilates - - - gramas - {0} grama - {0} gramas - - - quilogramas - {0} quilograma - {0} quilogramas - toneladas métricas {0} tonelada métrica {0} toneladas métricas - - microgramas - {0} micrograma - {0} microgramas + + quilogramas + {0} quilograma + {0} quilogramas + {0} por quilograma + + + gramas + {0} grama + {0} gramas + {0} por grama miligramas {0} miligrama {0} miligramas - - onças - {0} onça - {0} onças - - - onças troy - {0} onça troy - {0} onças troy - - - libras - {0} libra - {0} libras + + microgramas + {0} micrograma + {0} microgramas toneladas {0} tonelada {0} toneladas + + libras + {0} libra + {0} libras + {0} por libra + + + onças + {0} onça + {0} onças + {0} por onça + + + onças troy + {0} onça troy + {0} onças troy + + + quilates + {0} quilate + {0} quilates + gigawatts {0} gigawatt {0} gigawatts - - cavalos-vapor - {0} cavalo-vapor - {0} cavalos-vapor - - - quilowatts - {0} quilowatt - {0} quilowatts - megawatts {0} megawatt {0} megawatts - - miliwatts - {0} miliwatt - {0} miliwatts + + quilowatts + {0} quilowatt + {0} quilowatts watts {0} watt {0} watts + + miliwatts + {0} miliwatt + {0} miliwatts + + + cavalos-vapor + {0} cavalo-vapor + {0} cavalos-vapor + hectopascais {0} hectopascal {0} hectopascais - - polegadas de mercúrio - {0} polegada de mercúrio - {0} polegadas de mercúrio - - - milibares - {0} milibar - {0} milibares - milímetros de mercúrio {0} milímetro de mercúrio @@ -7189,10 +7367,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kilates - {0} kilate - {0} kilates + + polegadas de mercúrio + {0} polegada de mercúrio + {0} polegadas de mercúrio + + + milibares + {0} milibar + {0} milibares quilômetros por hora @@ -7209,13 +7392,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milha por hora {0} milhas por hora + + + {0} nó + {0} nós + + + ° + {0}° + {0}° + - graus Celsius + graus Celsius {0} grau Celsius {0} graus Celsius - graus Fahrenheit + graus Fahrenheit {0} grau Fahrenheit {0} graus Fahrenheit @@ -7224,31 +7417,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvin {0} kelvins - - acre-pés - {0} acre-pé - {0} acre-pés - - - centilitros - {0} centilitro - {0} centilitros - - - centímetros cúbicos - {0} centímetro cúbico - {0} centímetros cúbicos - - - pés cúbicos - {0} pé cúbico - {0} pés cúbicos - - - polegadas cúbicas - {0} polegada cúbica - {0} polegadas cúbicas - quilômetros cúbicos {0} quilômetro cúbico @@ -7258,6 +7426,13 @@ For terms of use, see http://www.unicode.org/copyright.html metros cúbicos {0} metro cúbico {0} metros cúbicos + {0} por metro cúbico + + + centímetros cúbicos + {0} centímetro cúbico + {0} centímetros cúbicos + {0} por centímetro cúbico milhas cúbicas @@ -7269,25 +7444,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} jarda cúbica {0} jardas cúbicas - - xícaras - {0} xícara - {0} xícaras + + pés cúbicos + {0} pé cúbico + {0} pés cúbicos - - decilitros - {0} decilitro - {0} decilitros + + polegadas cúbicas + {0} polegada cúbica + {0} polegadas cúbicas - - onças fluidas - {0} onça fluida - {0} onças fluidas - - - galões - {0} galão - {0} galões + + megalitros + {0} megalitro + {0} megalitros hectolitros @@ -7298,27 +7468,64 @@ For terms of use, see http://www.unicode.org/copyright.html litros {0} litro {0} litros + {0} por litro - - megalitros - {0} megalitro - {0} megalitros + + decilitros + {0} decilitro + {0} decilitros + + + centilitros + {0} centilitro + {0} centilitros mililitros {0} mililitro {0} mililitros - - pints - {0} pint - {0} pints + + pints métricos + {0} pint métrico + {0} pints métricos + + + xícaras métricas + {0} xícara métrica + {0} xícaras métricas + + + acre-pés + {0} acre-pé + {0} acre-pés + + + galões + {0} galão + {0} galões + {0} por galão quartos {0} quarto {0} quartos + + pints + {0} pint + {0} pints + + + xícaras + {0} xícara + {0} xícaras + + + onças fluidas + {0} onça fluida + {0} onças fluidas + colheres de sopa {0} colher de sopa @@ -7329,6 +7536,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} colher de chá {0} colheres de chá + + {0}E + {0}N + {0}S + {0}O + @@ -7344,6 +7557,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rev + {0} rev + {0} rev + + + radianos + {0} rad + {0} rad + + + graus + {0}° + {0}° + arcmins {0} arcmin @@ -7354,30 +7582,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} arcseg {0} arcsegs - - graus - {0}° - {0}° - - - radianos - {0} rad - {0} rad - - - acres - {0} ac - {0} ac + + km² + {0} km² + {0} km² hectares {0} ha {0} ha + + metros² + {0} m² + {0} m² + {0} por m² + cm² {0} cm² {0} cm² + {0} por cm² + + + milhas² + {0} mi² + {0} mi² + + + acres + {0} ac + {0} ac + + + jardas² + {0} yd² + {0} yd² pés² @@ -7388,91 +7628,106 @@ For terms of use, see http://www.unicode.org/copyright.html polegadas² {0} pol² {0} pol² + {0} por pol² - - km² - {0} km² - {0} km² - - - metros² - {0} m² - {0} m² - - - milhas² - {0} mi² - {0} mi² - - - jardas² - {0} yd² - {0} yd² + + kilates + {0} k + {0} k litros/km {0} l/km {0} l/km + + l/100 km + {0} l/100 km + {0} l/100 km + milhas/gal {0} mpg {0} mpg - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - Gbit - {0} Gb - {0} Gb - - - GByte - {0} GB - {0} GB - - - kbit - {0} kb - {0} kb - - - kByte - {0} kB - {0} kB - - - Mbit - {0} Mb - {0} Mb - - - MByte - {0} MB - {0} MB - - - Tbit - {0} Tb - {0} Tb - TByte {0} TB {0} TB + + Tbit + {0} Tb + {0} Tb + + + GByte + {0} GB + {0} GB + + + Gbit + {0} Gb + {0} Gb + + + MByte + {0} MB + {0} MB + + + Mbit + {0} Mb + {0} Mb + + + kByte + {0} kB + {0} kB + + + kbit + {0} kb + {0} kb + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + séc. + {0} séc. + {0} sécs. + + + anos + {0} ano + {0} anos + {0}/ano + + + meses + {0} mês + {0} meses + {0}/mês + + + semanas + {0} sem. + {0} sem. + {0}/sem. + dias {0} dia {0} dias + {0}/dia horas @@ -7480,30 +7735,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0}/h - - μs - {0} μs - {0} μs - - - milissegundos - {0} ms - {0} ms - mins {0} min {0} min - - - meses - {0} mês - {0} meses - - - ns - {0} ns - {0} ns + {0}/min segs @@ -7511,18 +7747,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} seg {0}/s - - semanas - {0} sem. - {0} sem. + + milissegundos + {0} ms + {0} ms - - anos - {0} ano - {0} anos + + μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns - amps + amps {0} A {0} A @@ -7541,6 +7782,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -7551,21 +7797,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - joules - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - quilojoule {0} kJ {0} kJ + + joules + {0} J + {0} J + kW-hora {0} kWh @@ -7576,201 +7817,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - ua - {0} ua - {0} ua + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + metros + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - pés - {0} pé - {0} pés - - - pol. - {0} pol. - {0} pol. - - - km - {0} km - {0} km - - - anos-luz - {0} ano-luz - {0} anos-luz - - - metros - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - milhas - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - mn - {0} mn - {0} mn - - - parsecs - {0} pc - {0} pc - pm {0} pm {0} pm + + milhas + {0} mi + {0} mi + jardas {0} yd {0} yd + + pés + {0} pé + {0} pés + {0}/pé + + + pol. + {0} pol. + {0} pol. + {0}/pol. + + + parsecs + {0} pc + {0} pc + + + anos-luz + {0} ano-luz + {0} anos-luz + + + ua + {0} ua + {0} ua + + + mn + {0} mn + {0} mn + + + smi + {0} smi + {0} smi + lux {0} lx {0} lx - - quilates - {0} ql - {0} ql - - - gramas - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + gramas + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - oz - {0} oz - {0} oz - - - oz troy - {0} oz t - {0} oz t - - - libras - {0} lb - {0} lb + + µg + {0} µg + {0} µg toneladas {0} tn {0} tn + + libras + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0}/oz + + + oz troy + {0} oz t + {0} oz t + + + quilates + {0} ql + {0} ql + GW {0} GW {0} GW - - cv - {0} cv - {0} cv - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW watts {0} W {0} W + + mW + {0} mW + {0} mW + + + cv + {0} cv + {0} cv + hPa {0} hPa {0} hPa - - pol Hg - {0} pol Hg - {0} pol Hg - - - mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -7781,10 +8026,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kilates - {0} k - {0} k + + pol Hg + {0} pol Hg + {0} pol Hg + + + mbar + {0} mbar + {0} mbar km/h @@ -7801,13 +8051,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mph {0} mph + + + {0} nó + {0} nós + + + ° + {0}° + {0}° + - graus C + graus C {0}°C {0}°C - graus F + graus F {0} °F {0} °F @@ -7816,31 +8076,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - acre-pés - {0} acre-pé - {0} acre-pés - - - cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - - - pés³ - {0} ft³ - {0} ft³ - - - polegadas³ - {0} pol³ - {0} pol³ - km³ {0} km³ @@ -7850,6 +8085,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -7861,25 +8103,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - xícaras - {0} xíc. - {0} xíc. + + pés³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl + + polegadas³ + {0} pol³ + {0} pol³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML hl @@ -7890,27 +8127,64 @@ For terms of use, see http://www.unicode.org/copyright.html litros {0} l {0} l + {0}/l - - ML - {0} ML - {0} ML + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl ml {0} ml {0} ml - - pints - {0} pt - {0} pt + + ptm + {0} ptm + {0} ptm + + + xícm + {0} xícm + {0} xícm + + + acre-pés + {0} acre-pé + {0} acre-pés + + + gal + {0} gal + {0} gal + {0}/gal qts {0} qt {0} qt + + pints + {0} pt + {0} pt + + + xícaras + {0} xíc. + {0} xíc. + + + fl oz + {0} fl oz + {0} fl oz + CS {0} CS @@ -7921,6 +8195,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cc {0} cc + + {0}E + {0}N + {0}S + {0}O + @@ -7930,6 +8210,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}' {0}' @@ -7938,26 +8222,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}" {0}" - - {0}° - {0}° - - - {0} acre - {0} acres + + {0} km² + {0} km² {0} ha {0} ha - - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} m² {0} m² @@ -7966,6 +8238,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} acre + {0} acres + + + {0} ft² + {0} ft² + + + l/100 km + {0} l/100 km + {0} l/100 km + + + ano + {0} ano + {0} anos + + + mês + {0} mês + {0} meses + + + sem. + {0} sem. + {0} sem. + dia {0} dia @@ -7976,66 +8276,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0} h - - ms - {0} ms - {0} ms - min {0} min {0} min - - mês - {0} mês - {0} meses - seg {0} s {0} s - - sem. - {0} sem. - {0} sem. - - - ano - {0} ano - {0} anos - - - cm - {0} cm - {0} cm - - - {0} pé - {0} pés - - - {0}″ - {0}″ + + ms + {0} ms + {0} ms km {0} km {0} km - - {0} ano-luz - {0} anos-luz - metro {0} m {0} m - - {0} milha - {0} milhas + + cm + {0} cm + {0} cm mm @@ -8046,31 +8315,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} milha + {0} milhas + {0} yd {0} yd - - grama - {0} g - {0} g + + {0} pé + {0} pés + + + {0}″ + {0}″ + + + {0} ano-luz + {0} anos-luz kg {0} kg {0} kg - - {0} oz - {0} oz + + grama + {0} g + {0} g {0} lb {0} lb - - {0} cv - {0} cv + + {0} oz + {0} oz {0} kW @@ -8080,6 +8361,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} cv + {0} cv + {0} hPa {0} hPa @@ -8106,11 +8391,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h - °C + °C {0}°C {0}°C + °F {0}°F {0}°F @@ -8127,6 +8413,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l + + {0}E + {0}N + {0}S + {0}O + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_AO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_AO.xml similarity index 88% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_AO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_AO.xml index de4a634d7ea..3f72317679c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_AO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_AO.xml @@ -1,13 +1,12 @@ - - - + @@ -51,3 +50,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_BR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_BR.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_BR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_BR.xml index 40ddf183fd6..07e2a10e50c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_BR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_BR.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_CH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_CH.xml new file mode 100644 index 00000000000..029c170c60d --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_CH.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_CV.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_CV.xml similarity index 89% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_CV.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_CV.xml index cd50de6ca46..69244a3721b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_CV.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_CV.xml @@ -1,13 +1,12 @@ - - - + @@ -58,3 +57,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_GQ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_GQ.xml new file mode 100644 index 00000000000..c1d7dc8b085 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_GQ.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_GW.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_GW.xml similarity index 87% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_GW.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_GW.xml index 6c47069ca5c..386dabb4855 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_GW.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_GW.xml @@ -1,13 +1,12 @@ - - - + @@ -44,3 +43,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_LU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_LU.xml new file mode 100644 index 00000000000..4dd9506258e --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_LU.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + F + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_MO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_MO.xml similarity index 62% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_MO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_MO.xml index f6332ac2e6d..983eda752d4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_MO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_MO.xml @@ -1,17 +1,42 @@ - - - + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + @@ -51,3 +76,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_MZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_MZ.xml similarity index 88% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_MZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_MZ.xml index 10ed51331c4..7f6246ba940 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_MZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_MZ.xml @@ -1,13 +1,12 @@ - - - + @@ -51,3 +50,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_PT.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_PT.xml similarity index 83% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_PT.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_PT.xml index 91d69f38873..23d9b2f5914 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_PT.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_PT.xml @@ -6,20 +6,22 @@ For terms of use, see http://www.unicode.org/copyright.html --> - - + africânder + árabe moderno padrão mapuche + azeri meridional bamun ghomala jargão chinook sorani curdo checo + chuvash baixo sórabio ewe egípcio clássico @@ -44,18 +46,26 @@ For terms of use, see http://www.unicode.org/copyright.html canarim lezghiano ganda + luri do norte luo irlandês, medieval macedónio + mohawk norueguês bokmål + baixo-alemão norueguês nynorsk provençal ossético polaco pastó romanês + root + kinyarwanda sakha árabe do Chade + lule sami + inari sami + skolt sami turcomano tagalogue tonga @@ -88,44 +98,60 @@ For terms of use, see http://www.unicode.org/copyright.html Europa do Norte Anguila Arménia + Alanda + Bangladeche Barém Benim + Baamas + Ilhas dos Cocos (Keeling) Congo-Kinshasa Congo-Brazzaville República do Congo Camarões Curaçau + Ilha do Natal República Checa + Jibuti Domínica Estónia Ilhas Falkland Ilhas Malvinas Ilhas Faroé + GB Gronelândia Guame Irão Quénia + São Cristóvão e Neves Ilhas Caimão + Listenstaine + Sri Lanca Letónia Mónaco Madagáscar Macedónia - Antiga República Jugoslava da Macedónia + Macedónia (ARJM) Monserrate Maurícia + Maláui Nova Caledónia + Países Baixos Polónia - Pitcairn + São Pedro e Miquelão Territórios palestinianos Oceânia Insular Roménia Seicheles Singapura Eslovénia - São Marino + São Marinho + Salvador + Ilhas Turcas e Caicos Toquelau Turquemenistão Trindade e Tobago + Ilhas Menores Afastadas dos EUA + Usbequistão Vietname Iémen Maiote @@ -147,81 +173,87 @@ For terms of use, see http://www.unicode.org/copyright.html Ordenação normalizada Ordenação numérica Força da ordenação + Ciclo horário (12 vs. 24) + Sistema de medida Ordenar como símbolos Utilização privada - Numeração arménia - Numeração arménia minúscula - Algarismos bengalis - Calendário budista - Calendário chinês - Calendário copta - Calendário dangi - Algarismos devanágaris - Ordenação do dicionário - Ordenação unicode predefinida - Numeração etíope - Calendário etíope - Calendário Etíope Amete Alem - Algarismos financeiros - Algarismos de largura completa - Numeração georgiana - Calendário gregoriano - Numeração grega - Numeração grega minúscula - Algarismos de guzerate - Algarismos de gurmukhi - Numeração decimal chinesa - Numeração em chinês simplificado - Numeração financeira em chinês simplificado - Numeração em chinês tradicional - Numeração financeira em chinês tradicional - Numeração hebraica - Calendário hebraico - Ordenar tudo - Calendário islâmico - Calendário japonês - Numeração japonesa - Numeração financeira japonesa - Algarismos de cmer - Algarismos de canarim - Ordenar por minúsculas - Algarismos de malaiala - Algarismos birmaneses - Ordenar acentos normalmente - Ordenar disposição de tipo de letra normal - Ordenar insensível a maiúsculas/minúsculas - Ordenar kana separadamente - Ordenar sem normalização - Ordenar dígitos individualmente - Ordenar símbolos - Algarismos de oriya - Calendário persa - Ordem da lista telefónica - Sequência de ordenação fonética - Ordenar apenas letras básicas - Ordenar acentos/tipo de letra/largura/kana - Reforma da ordenação - Numeração romana - Numeração romana minúscula - Ordenar acentos - Ordenar símbolos ignorados - Ordenação padrão - Ordem por traços - Numeração tâmil - Algarismos de tâmil - Algarismos de telugu - Ordenar acentos/tipo de letra/largura - Ordem tradicional - Algarismos tradicionais - Ordem por radical e traços - Ordenar por maiúsculas - Ordenar acentos inversamente - Ordenar sensível a maiúsculas/minúsculas - Ordenar kana diferentemente - Ordenar Unicode normalizado - Ordenar dígitos numericamente + Calendário budista + Calendário chinês + Calendário copta + Calendário dangi + Calendário Etíope Amete Alem + Calendário gregoriano + Calendário hebraico + Calendário islâmico + Calendário japonês + Calendário persa + Ordenar símbolos + Ordenar símbolos ignorados + Ordenar acentos normalmente + Ordenar acentos inversamente + Ordenar por minúsculas + Ordenar disposição de tipo de letra normal + Ordenar por maiúsculas + Ordenar insensível a maiúsculas/minúsculas + Ordenar sensível a maiúsculas/minúsculas + Ordenar kana separadamente + Ordenar kana diferentemente + Ordenação do dicionário + Ordenação unicode predefinida + Ordem da lista telefónica + Sequência de ordenação fonética + Reforma da ordenação + Ordenação padrão + Ordem por traços + Ordem tradicional + Ordem por radical e traços + Ordenar sem normalização + Ordenar Unicode normalizado + Ordenar dígitos individualmente + Ordenar dígitos numericamente + Ordenar tudo + Ordenar apenas letras básicas + Ordenar acentos/tipo de letra/largura/kana + Ordenar acentos + Ordenar acentos/tipo de letra/largura + Estilo solto de quebra de linha + Estilo padrão de quebra de linha + Estilo estrito de quebra de linha + Sistema de medida imperial + Sistema de medida americano + Numeração arménia + Numeração arménia minúscula + Algarismos bengalis + Algarismos devanágaris + Numeração etíope + Algarismos financeiros + Algarismos de largura completa + Numeração georgiana + Numeração grega + Numeração grega minúscula + Algarismos de guzerate + Algarismos de gurmukhi + Numeração decimal chinesa + Numeração em chinês simplificado + Numeração financeira em chinês simplificado + Numeração em chinês tradicional + Numeração financeira em chinês tradicional + Numeração hebraica + Numeração japonesa + Numeração financeira japonesa + Algarismos de cmer + Algarismos de canarim + Algarismos de malaiala + Algarismos birmaneses + Algarismos de oriya + Numeração romana + Numeração romana minúscula + Numeração tâmil + Algarismos de tâmil + Algarismos de telugu + Algarismos tradicionais Acentos @@ -303,11 +335,6 @@ For terms of use, see http://www.unicode.org/copyright.html - - - d 'de' MMM, y G - - d/M/y G @@ -336,15 +363,10 @@ For terms of use, see http://www.unicode.org/copyright.html - d 'de' MMMM - E, d 'de' MMMM MM/y G d/MM/y G E, d/MM/y G EEEE, d/MM/y - MMMM 'de' y G - d 'de' MMMM 'de' y G - E, d 'de' MMMM 'de' y G QQQQ 'de' y G QQQQ 'de' y G @@ -356,25 +378,64 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm – h:mm a + + MM–MM + MMM–MMM - E, d 'de' MMM – E, d 'de' MMM + ccc, dd/MM – ccc, dd/MM + ccc, dd/MM – ccc, dd/MM + + + ccc, d 'de' MMMM – ccc, d 'de' MMMM + ccc, d 'de' MMMM – ccc, d 'de' MMMM y–y G - E, d 'de' MMM – E, d 'de' MMM 'de' y G + E, dd/MM – E, dd/MM/y G + E, dd/MM – E, dd/MM/y G + E, dd/MM/y – E, dd/MM/y G MMMM – MMMM 'de' y G + + E, d 'de' MMMM – E, d 'de' MMMM 'de' y G + E, d 'de' MMMM – E, d 'de' MMMM 'de' y G + E, d 'de' MMMM 'de' y – E, d 'de' MMMM 'de' y G + + + + + domingo + segunda + terça + quarta + quinta + sexta + sábado + + + + + domingo + segunda + terça + quarta + quinta + sexta + sábado + + + @@ -400,9 +461,14 @@ For terms of use, see http://www.unicode.org/copyright.html p.m. + meia-noite a.m. - m.d. + meio-dia p.m. + manhã + tarde + noite + madrugada da manhã @@ -414,18 +480,17 @@ For terms of use, see http://www.unicode.org/copyright.html a.m. p.m. + + a.m. + p.m. + - a.m. - p.m. + manhã + tarde - - antes de Cristo - antes da Era Comum - depois de Cristo - a.E.C. E.C. @@ -460,17 +525,15 @@ For terms of use, see http://www.unicode.org/copyright.html + dd/MM d/MM E, d/MM - d 'de' MMMM - E, d 'de' MMMM + ccc, d 'de' MMMM MM/y d/MM/y E, d/MM/y EEEE, d/MM/y - MMMM 'de' y - d 'de' MMMM 'de' y - E, d 'de' MMMM 'de' y + ccc, d 'de' MMMM 'de' y QQQQ 'de' y QQQQ 'de' y @@ -485,9 +548,16 @@ For terms of use, see http://www.unicode.org/copyright.html HH–HH + + h–h a v + M–M + + ccc, dd/MM – ccc, dd/MM + ccc, dd/MM – ccc, dd/MM + MMM–MMM @@ -495,11 +565,21 @@ For terms of use, see http://www.unicode.org/copyright.html d–d 'de' MMM - E, d 'de' MMM – E, d 'de' MMM + ccc, dd/MM – ccc, dd/MM + ccc, dd/MM – ccc, dd/MM + + + ccc, d 'de' MMMM – ccc, d 'de' MMMM + ccc, d 'de' MMMM – ccc, d 'de' MMMM y–y + + ccc, dd/MM/y – ccc, dd/MM/y + ccc, dd/MM/y – ccc, dd/MM/y + ccc, dd/MM/y – ccc, dd/MM/y + MMM–MMM 'de' y @@ -507,7 +587,14 @@ For terms of use, see http://www.unicode.org/copyright.html d–d 'de' MMM 'de' y - E, d 'de' MMM – E, d 'de' MMM 'de' y + E, dd/MM – E, dd/MM/y + E, dd/MM – E, dd/MM/y + E, dd/MM/y – E, dd/MM/y + + + E, d 'de' MMMM – E, d 'de' MMMM 'de' y + E, d 'de' MMMM – E, d 'de' MMMM 'de' y + E, d 'de' MMMM 'de' y – E, d 'de' MMMM 'de' y @@ -555,32 +642,26 @@ For terms of use, see http://www.unicode.org/copyright.html dentro de {0} ano dentro de {0} anos - - há {0} ano - há {0} anos - dentro de {0} ano dentro de {0} anos - - há {0} ano - há {0} anos - + trimestre passado + este trimestre + próximo trimestre dentro de {0} trimestre dentro de {0} trimestres - - há {0} trimestre - há {0} trimestres - + trim. passado + este trim. + próximo trim. dentro de {0} trim. dentro de {0} trim. @@ -591,6 +672,9 @@ For terms of use, see http://www.unicode.org/copyright.html + trim. passado + este trim. + próximo trim. +{0} trim. +{0} trim. @@ -605,97 +689,84 @@ For terms of use, see http://www.unicode.org/copyright.html dentro de {0} mês dentro de {0} meses - - há {0} mês - há {0} meses - dentro de {0} mês dentro de {0} meses - - há {0} mês - há {0} meses - dentro de {0} semana dentro de {0} semanas - - há {0} semana - há {0} semanas - dentro de {0} sem. dentro de {0} sem. - - há {0} sem. - há {0} sem. - dentro de {0} dia dentro de {0} dias - - há {0} dia - há {0} dias - dentro de {0} dia dentro de {0} dias - - há {0} dia - há {0} dias - + + + segunda passada + esta segunda + próxima segunda + + + terça passada + esta terça + próxima terça + + + quarta passada + esta quarta + próxima quarta - próxima qui. + quinta passada + esta quinta + próxima quinta + qui. passada + esta qui. próxima qui. + + sexta passada + esta sexta + próxima sexta + dentro de {0} hora dentro de {0} horas - - há {0} hora - há {0} horas - - h dentro de {0} h dentro de {0} h - - há {0} h - há {0} h - dentro de {0} minuto dentro de {0} minutos - - há {0} minuto - há {0} minutos - min @@ -724,10 +795,6 @@ For terms of use, see http://www.unicode.org/copyright.html dentro de {0} segundo dentro de {0} segundos - - há {0} segundo - há {0} segundos - s @@ -891,7 +958,7 @@ For terms of use, see http://www.unicode.org/copyright.html Singapura - São Marino + São Marinho Banguecoque @@ -1004,7 +1071,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Hora da Montanha + Hora de Montanha Hora padrão da Montanha Hora de verão da Montanha @@ -1023,6 +1090,13 @@ For terms of use, see http://www.unicode.org/copyright.html Hora de verão de Anadyr + + + Hora de Apia + Hora padrão de Apia + Hora de verão de Apia + + Hora de Aqtau @@ -1906,6 +1980,7 @@ For terms of use, see http://www.unicode.org/copyright.html + 2   @@ -1940,12 +2015,12 @@ For terms of use, see http://www.unicode.org/copyright.html 00 M 000 M 000 M - 0 MM - 0 MM - 00 MM - 00 MM - 000 MM - 000 MM + 0 mM + 0 mM + 00 mM + 00 mM + 000 mM + 000 mM 0 Bi 0 Bi 00 Bi @@ -1964,6 +2039,28 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤;(#,##0.00 ¤) + + + ¤0 M + ¤0 M + ¤00 M + ¤00 M + ¤000 M + ¤000 M + ¤0 mM + ¤0 mM + ¤00 mM + ¤00 mM + ¤000 mM + ¤000 mM + ¤0 B + ¤0 B + ¤00 B + ¤00 B + ¤000 B + ¤000 B + + @@ -2079,6 +2176,11 @@ For terms of use, see http://www.unicode.org/copyright.html Libra das Ilhas Falkland Libras das Ilhas Falkland + + Libra esterlina britânica + Libra esterlina britânica + Libras esterlinas britânicas + Cedi do Gana @@ -2420,11 +2522,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} quilómetro quadrado {0} quilómetros quadrados + + quilates + {0} quilate + {0} quilates + litros por quilómetro {0} litro por quilómetro {0} litros por quilómetro + + litros por 100 quilómetros + {0} litro por 100 quilómetros + {0} litros por 100 quilómetros + + + {0} século + {0} séculos + {0}/h @@ -2436,15 +2552,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} quilocaloria {0} quilocalorias - - unidades astronómicas - {0} unidade astronómica - {0} unidades astronómicas - quilómetros {0} quilómetro {0} quilómetros + {0} por quilómetro micrómetros @@ -2461,10 +2573,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} picómetro {0} picómetros - - quilates - {0} quilate - {0} quilates + + unidades astronómicas + {0} unidade astronómica + {0} unidades astronómicas + + + milha escandinava quilómetros por hora @@ -2476,6 +2591,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} quilómetro cúbico {0} quilómetros cúbicos + + chávenas + {0} chávena + {0} chávenas + @@ -2490,10 +2610,23 @@ For terms of use, see http://www.unicode.org/copyright.html segundos de arco + + + {0}/m² + + + {0}/cm² + + + mi² + {0} acre {0} acres + + yd² + pés quadrados @@ -2501,15 +2634,17 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0} in² {0} in² + {0}/in² - - + + quilates + {0} kt + {0} kt - - mi² - - - yd² + + l/100km + {0} l/100km + {0} l/100km milhas/galão @@ -2518,6 +2653,7 @@ For terms of use, see http://www.unicode.org/copyright.html minutos + s {0} s {0} s @@ -2526,29 +2662,29 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kcal {0} kcal - - polegadas - {0} milha {0} milhas + + polegadas + + + pc + nmi {0} nmi {0} nmi - - pc + + {0} ton + {0} ton {0} ct {0} ct - - {0} ton - {0} ton - in Hg {0} inHg @@ -2558,11 +2694,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mb {0} mb - - quilates - {0} kt - {0} kt - m/s @@ -2579,15 +2710,8 @@ For terms of use, see http://www.unicode.org/copyright.html graus Fahrenheit - - ac ft - {0} ac ft - {0} ac ft - - - cL - {0} cL - {0} cL + + yd³ ft³ @@ -2597,8 +2721,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in³ {0} in³ - - yd³ + + ac ft + {0} ac ft + {0} ac ft + + + chávenas + {0} cháv. + {0} cháv. cs @@ -2607,6 +2738,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + {0}l/100km + {0}l/100km + s diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_ST.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_ST.xml similarity index 88% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_ST.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_ST.xml index 3d64240d809..1d73e5c7f13 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_ST.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_ST.xml @@ -1,13 +1,12 @@ - - - + @@ -51,3 +50,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_TL.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_TL.xml similarity index 87% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_TL.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_TL.xml index 851e8aa43fa..07ddd4b67ae 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/pt_TL.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/pt_TL.xml @@ -1,13 +1,12 @@ - - - + @@ -44,3 +43,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/qu.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/qu.xml similarity index 89% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/qu.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/qu.xml index b29a9844705..1c151e37e60 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/qu.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/qu.xml @@ -1,13 +1,12 @@ - - - + @@ -155,7 +154,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bangladesh Bélgica Bulgaria - Bahréin + Baréin Burundi Benín Brunéi @@ -170,7 +169,7 @@ For terms of use, see http://www.unicode.org/copyright.html Congo (RDC) Congo Suiza - Côte dʼIvoire + Côte d’Ivoire Chile Camerún China @@ -197,7 +196,7 @@ For terms of use, see http://www.unicode.org/copyright.html Francia Gabón Reino Unido - Guernsey + Guernesey Ghana Gambia Guinea @@ -205,7 +204,7 @@ For terms of use, see http://www.unicode.org/copyright.html Grecia Guatemala Guam - Guinea-Bissau + Guinea-Bisáu Guyana Hong Kong (RAE) Islas Heard y McDonald @@ -215,7 +214,7 @@ For terms of use, see http://www.unicode.org/copyright.html Indonesia Israel India - Iraq + Irak Irán Islandia Italia @@ -230,7 +229,7 @@ For terms of use, see http://www.unicode.org/copyright.html Corea del Norte Corea del Sur Kuwait - Kazajistan + Kazajistán Laos Líbano Liechtenstein @@ -306,7 +305,7 @@ For terms of use, see http://www.unicode.org/copyright.html Siria Suazilandia Chad - Tierras Australes y Antárticas Francesas + Territorios Australes Franceses Togo Tailandia Tayikistán @@ -326,7 +325,7 @@ For terms of use, see http://www.unicode.org/copyright.html EE.UU. Islas Vírgenes Vietnam Vanuatu - Wallis, Futuna + Wallis y Futuna Samoa Yemen Sudáfrica @@ -418,6 +417,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + a.m. + p.m. + a.m. p.m. @@ -445,14 +448,24 @@ For terms of use, see http://www.unicode.org/copyright.html + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + - hh:mm:ss a + HH:mm:ss - hh:mm a + HH:mm @@ -464,6 +477,15 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + PET + PET + PEST + + + @@ -505,6 +527,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0K + ¤ 00K + ¤ 000K + ¤ 0M + ¤ 00M + ¤ 000M + ¤ 0G + ¤ 00G + ¤ 000G + ¤ 0T + ¤ 00T + ¤ 000T + + @@ -513,3 +551,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/qu_BO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/qu_BO.xml similarity index 60% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/qu_BO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/qu_BO.xml index 8224b361801..92860482e6d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/qu_BO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/qu_BO.xml @@ -1,16 +1,31 @@ - - - + + + + + + BOT + + + + + ∅∅∅ + ∅∅∅ + ∅∅∅ + + + + , @@ -26,3 +41,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/qu_EC.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/qu_EC.xml similarity index 56% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/qu_EC.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/qu_EC.xml index 1047a9f0597..802094795cd 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/qu_EC.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/qu_EC.xml @@ -1,16 +1,31 @@ - - - + + + + + + ECT + + + + + ∅∅∅ + ∅∅∅ + ∅∅∅ + + + + @@ -22,3 +37,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/qu_PE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/qu_PE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/qu_PE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/qu_PE.xml index e7b6797e53a..f0c8bef809e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/qu_PE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/qu_PE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rm.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rm.xml similarity index 97% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rm.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rm.xml index fc40a5d51fd..bdd0a3f8746 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rm.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rm.xml @@ -1,13 +1,12 @@ - - - + @@ -626,7 +625,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antillas Ollandaisas Angola Antarctica Argentinia @@ -906,32 +904,32 @@ For terms of use, see http://www.unicode.org/copyright.html dumbers - dumbers armens - cifras bengalas - chinaisa tradiziunala - Big5 - chalender budistic - chalender chinais - chalender coptic - chalender etiopic - chinaisa simplifitgada - GB2312 - dumbers georgians - chalender gregorian - chalender ebraic - chalender naziunal indic - chalender islamic - chalender islamic civil - chalender islamic (Arabia Saudita) - chalender islamic (Umm al-Qura) - chalender tenor ISO 8601 - chalender giapunais - cifras europeicas - chalender persian - cudesch da telefon - Pinyin - chalendar da la republica chinaisa - zavrada da standard - urden dals stritgs - reglas tradiziunalas + chalender budistic + chalender chinais + chalender coptic + chalender etiopic + chalender gregorian + chalender ebraic + chalender naziunal indic + chalender islamic + chalender islamic civil + chalender islamic (Arabia Saudita) + chalender islamic (Umm al-Qura) + chalender tenor ISO 8601 + chalender giapunais + chalender persian + chalendar da la republica chinaisa + chinaisa tradiziunala - Big5 + chinaisa simplifitgada - GB2312 + cudesch da telefon + Pinyin + zavrada da standard + urden dals stritgs + reglas tradiziunalas + dumbers armens + cifras bengalas + dumbers georgians + cifras europeicas metric @@ -1188,6 +1186,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + am + sm + am sm @@ -1870,6 +1872,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0K ¤ + 0K ¤ + 00K ¤ + 00K ¤ + 000K ¤ + 000K ¤ + 0M ¤ + 0M ¤ + 00M ¤ + 00M ¤ + 000M ¤ + 000M ¤ + 0G ¤ + 0G ¤ + 00G ¤ + 00G ¤ + 000G ¤ + 000G ¤ + 0T ¤ + 0T ¤ + 00T ¤ + 00T ¤ + 000T ¤ + 000T ¤ + + {0} {1} {0} {1} @@ -2832,6 +2862,21 @@ For terms of use, see http://www.unicode.org/copyright.html + + onns + {0} onn + {0} onns + + + mais + {0} mais + {0} mais + + + emnas + {0} emna + {0} emnas + dis {0} di @@ -2842,40 +2887,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ura {0} uras - - millisecundas - {0} millisecunda - {0} millisecundas - minutas {0} minuta {0} minutas - - mais - {0} mais - {0} mais - secundas {0} secunda {0} secundas - - emnas - {0} emna - {0} emnas - - - onns - {0} onn - {0} onns - - - centimeters - {0} centimeter - {0} centimeters + + millisecundas + {0} millisecunda + {0} millisecundas kilometers @@ -2887,21 +2912,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} meter {0} meters + + centimeters + {0} centimeter + {0} centimeters + millimeters {0} millimeter {0} millimeters - - grams - {0} gram - {0} grams - kilograms {0} kilogram {0} kilograms + + grams + {0} gram + {0} grams + kilometers per ura {0} kilometer per ura @@ -2919,6 +2949,21 @@ For terms of use, see http://www.unicode.org/copyright.html + + onns + {0} onn + {0} onns + + + mais + {0} mais + {0} mais + + + emnas + {0} emna + {0} emnas + dis {0} di @@ -2929,40 +2974,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ura {0} uras - - ms - {0} ms - {0} ms - minutas {0} min. {0} mins. - - mais - {0} mais - {0} mais - secundas {0} sec. {0} secs. - - emnas - {0} emna - {0} emnas - - - onns - {0} onn - {0} onns - - - cm - {0} cm - {0} cm + + ms + {0} ms + {0} ms km @@ -2974,21 +2999,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m {0} m + + cm + {0} cm + {0} cm + mm {0} mm {0} mm - - grams - {0} g - {0} g - kg {0} kg {0} kg + + grams + {0} g + {0} g + km/h {0} km/h @@ -3006,6 +3036,21 @@ For terms of use, see http://www.unicode.org/copyright.html + + onn + {0} onns + {0} onns + + + mais + {0} mais + {0} mais + + + emna + {0} emnas + {0} emnas + di {0} dis @@ -3016,40 +3061,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} uras {0} uras - - ms - {0}ms - {0}ms - min {0} mins. {0} mins. - - mais - {0} mais - {0} mais - sec {0} secs. {0} secs. - - emna - {0} emnas - {0} emnas - - - onn - {0} onns - {0} onns - - - cm - {0}cm - {0}cm + + ms + {0}ms + {0}ms km @@ -3061,21 +3086,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0}m {0}m + + cm + {0}cm + {0}cm + mm {0}mm {0}mm - - gram - {0} g - {0} g - kg {0} kg {0} kg + + gram + {0} g + {0} g + km/h {0} km/h diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rm_CH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rm_CH.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rm_CH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rm_CH.xml index a4404f28f76..b2b898dafd2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rm_CH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rm_CH.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rn.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rn.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rn.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rn.xml index c88a4c6d5b7..23718fa8684 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rn.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rn.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angwila Alubaniya Arumeniya - Antiye y’Abaholandi Angola Arijantine Samowa nyamerika @@ -421,6 +419,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Z.MU. + Z.MW. + Z.MU. Z.MW. @@ -573,6 +575,22 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤ + + + 0K¤ + 00K¤ + 000K¤ + 0M¤ + 00M¤ + 000M¤ + 0G¤ + 00G¤ + 000G¤ + 0T¤ + 00T¤ + 000T¤ + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rn_BI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rn_BI.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rn_BI.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rn_BI.xml index 910b08c86ad..cbc5a190645 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rn_BI.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rn_BI.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ro.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ro.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ro.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ro.xml index 42b1351f669..b07e107b7f3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ro.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ro.xml @@ -1,13 +1,12 @@ - - - + @@ -20,7 +19,7 @@ For terms of use, see http://www.unicode.org/copyright.html afar abhază aceh - acoli + acoli adangme adyghe avestană @@ -39,7 +38,7 @@ For terms of use, see http://www.unicode.org/copyright.html arabă arabă standard modernă aramaică - araucaniană + mapuche arapaho arawak asameză @@ -62,6 +61,7 @@ For terms of use, see http://www.unicode.org/copyright.html bena bafut bulgară + baluchi occidentală bhojpuri bislama bikol @@ -172,7 +172,7 @@ For terms of use, see http://www.unicode.org/copyright.html friulană frizonă occidentală irlandeză - ga + ga găgăuză gayo gbaya @@ -289,6 +289,7 @@ For terms of use, see http://www.unicode.org/copyright.html laoțiană mongo lozi + luri de nord lituaniană luba-katanga luba-lulua @@ -337,18 +338,20 @@ For terms of use, see http://www.unicode.org/copyright.html birmaneză myene erzya + mazanderani nauru napolitană nama norvegiană bokmål ndebele de nord - germana de jos + germana de jos + saxona de jos nepaleză newari ndonga nias niueană - olandeză + neerlandeză flamandă kwasio norvegiană nynorsk @@ -392,7 +395,7 @@ For terms of use, see http://www.unicode.org/copyright.html portugheză braziliană portugheză europeană quechua - kʼicheʼ + quiché rajasthani rapanui rarotongan @@ -420,6 +423,7 @@ For terms of use, see http://www.unicode.org/copyright.html siciliană scots sindhi + kurdă de sud sami de nord seneca sena @@ -457,8 +461,8 @@ For terms of use, see http://www.unicode.org/copyright.html sumeriană suedeză swahili + swahili Congo comoreză - swahili Congo siriacă clasică siriacă tamilă @@ -513,6 +517,7 @@ For terms of use, see http://www.unicode.org/copyright.html walamo waray washo + warlpiri wolof calmucă xhosa @@ -652,7 +657,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antilele Olandeze Angola Antarctica Argentina @@ -816,12 +820,12 @@ For terms of use, see http://www.unicode.org/copyright.html Maldive Malawi Mexic - Malaezia + Malaysia Mozambic Namibia Noua Caledonie Niger - Insulele Norfolk + Insula Norfolk Nigeria Nicaragua Țările de Jos @@ -867,7 +871,7 @@ For terms of use, see http://www.unicode.org/copyright.html San Marino Senegal Somalia - Surinam + Suriname Sudanul de Sud Sao Tome și Principe El Salvador @@ -899,7 +903,7 @@ For terms of use, see http://www.unicode.org/copyright.html Uruguay Uzbekistan Statul Cetății Vaticanului - Saint Vincent și Grenadine + Saint Vincent și Grenadinele Venezuela Insulele Virgine Britanice Insulele Virgine S.U.A. @@ -962,6 +966,9 @@ For terms of use, see http://www.unicode.org/copyright.html Ordonare numerică Puterea ordonării monedă + ciclu orar (12 sau 24) + stil de întrerupere a liniei + sistem de unități de măsură numere Fusul orar Varianta locală @@ -969,96 +976,106 @@ For terms of use, see http://www.unicode.org/copyright.html Utilizare privată - cifre indo-arabe - cifre indo-arabe extinse - numerale armenești - numerale armenești cu minuscule - cifre bengaleze - sortare pentru chineza tradițională - Big5 - calendar budist - calendar chinezesc - calendar copt - calendar dangi - cifre devanagari - Ordine de sortare a dicționarului - ordine de sortare Unicode implicită - regulile europene de sortare - numerale etiopiene - calendar etiopian - Calendarul etiopian amete alem - Sistemul numeric financiar - cifre cu lățimea întreagă - sortare pentru chineza simplificată - GB2312 - numerale georgiene - calendar gregorian - numerale grecești - numerale grecești cu minuscule - cifre gujarati - cifre gurmukhi - numerale zecimale chinezești - numerale chinezești simplificate - numerale financiare chinezești simplificate - numerale chinezești tradiționale - numerale financiare chinezești tradiționale - numerale ebraice - calendar ebraic - Ordonați-le pe toate - calendar național indian - calendar islamic - calendar islamic civil - calendar ISO-8601 - calendar japonez - numerale japoneze - numerale financiare japoneze - cifre khmere - cifre kannada - cifre laoțiene - cifre occidentale - Ordonați întâi minusculele - cifre malayalam - Cifre mongole - cifre birmaneze - Cifre native - Ordonați accentele în mod normal - Ordonați după dimensiunea normală a literei - Ordonați neținând seama de diferența dintre majuscule/minuscule - Ordonați caracterele kana separat - Ordonați fără normalizare - Ordonați cifrele individual - Ordonați simbolurile - cifre oriya - calendar persan - sortare după cartea de telefon - Tip de ordonare fonetică - sortare pinyin - Ordonați numai literele de bază - Ordonați după accente/dimensiunea literei/lățime/kana - Ordine de sortare reformată - calendarul Republicii Chineze - numerale romane - numerale romane cu minuscule - căutare cu scop general - Căutați în funcție de consoana inițială hangul - Ordonați după accent - Ordonați ignorând simbolurile - ordine de sortare standard - ordine de sortare după trasare - numerale tradiționale tamilă - cifre tamile - cifre telugu - Ordonați după accente/dimensiunea literei/lățime - cifre thailandeze - cifre tibetane - sortare tradițională - Numere tradiționale - Ordine de sortare a liniilor ideogramelor - Ordonați mai întâi majusculele - Cifre Vai - Ordonați după accente în ordine inversă - Ordonați ținând seama de diferența dintre majuscule/minuscule - Ordonați kana diferențiat - Ordonați caracterele unicode normalizat - Ordonați cifrele în ordine numerică + calendar budist + calendar chinezesc + calendar copt + calendar dangi + calendar etiopian + Calendarul etiopian amete alem + calendar gregorian + calendar ebraic + calendar național indian + calendar islamic + calendar islamic civil + calendar ISO-8601 + calendar japonez + calendar persan + calendarul Republicii Chineze + Ordonați simbolurile + Ordonați ignorând simbolurile + Ordonați accentele în mod normal + Ordonați după accente în ordine inversă + Ordonați întâi minusculele + Ordonați după dimensiunea normală a literei + Ordonați mai întâi majusculele + Ordonați neținând seama de diferența dintre majuscule/minuscule + Ordonați ținând seama de diferența dintre majuscule/minuscule + Ordonați caracterele kana separat + Ordonați kana diferențiat + sortare pentru chineza tradițională - Big5 + Ordine de sortare a dicționarului + ordine de sortare Unicode implicită + regulile europene de sortare + sortare pentru chineza simplificată - GB2312 + sortare după cartea de telefon + Tip de ordonare fonetică + sortare pinyin + Ordine de sortare reformată + căutare cu scop general + Căutați în funcție de consoana inițială hangul + ordine de sortare standard + ordine de sortare după trasare + sortare tradițională + Ordine de sortare a liniilor ideogramelor + Ordonați fără normalizare + Ordonați caracterele unicode normalizat + Ordonați cifrele individual + Ordonați cifrele în ordine numerică + Ordonați-le pe toate + Ordonați numai literele de bază + Ordonați după accente/dimensiunea literei/lățime/kana + Ordonați după accent + Ordonați după accente/dimensiunea literei/lățime + sistem cu 12 ore (0–11) + sistem cu 12 ore (0–12) + sistem cu 24 de ore (0–23) + sistem cu 24 de ore (1–24) + stil liber de întrerupere a liniei + stil normal de întrerupere a liniei + stil strict de întrerupere a liniei + sistemul metric + sistemul imperial de unități de măsură + sistemul american de unități de măsură + cifre indo-arabe + cifre indo-arabe extinse + numerale armenești + numerale armenești cu minuscule + cifre bengaleze + cifre devanagari + numerale etiopiene + Sistemul numeric financiar + cifre cu lățimea întreagă + numerale georgiene + numerale grecești + numerale grecești cu minuscule + cifre gujarati + cifre gurmukhi + numerale zecimale chinezești + numerale chinezești simplificate + numerale financiare chinezești simplificate + numerale chinezești tradiționale + numerale financiare chinezești tradiționale + numerale ebraice + numerale japoneze + numerale financiare japoneze + cifre khmere + cifre kannada + cifre laoțiene + cifre occidentale + cifre malayalam + Cifre mongole + cifre birmaneze + Cifre native + cifre oriya + numerale romane + numerale romane cu minuscule + numerale tradiționale tamilă + cifre tamile + cifre telugu + cifre thailandeze + cifre tibetane + Numere tradiționale + Cifre Vai BGN @@ -1097,7 +1114,7 @@ For terms of use, see http://www.unicode.org/copyright.html ... - + « » @@ -1266,6 +1283,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d y G MMM y G @@ -1299,7 +1317,7 @@ For terms of use, see http://www.unicode.org/copyright.html QQQQ y G - {0} - {1} + {0} – {1} d–d @@ -1471,31 +1489,31 @@ For terms of use, see http://www.unicode.org/copyright.html D - Ianuarie - Februarie - Martie - Aprilie - Mai - Iunie - Iulie - August - Septembrie - Octombrie - Noiembrie - Decembrie + ianuarie + februarie + martie + aprilie + mai + iunie + iulie + august + septembrie + octombrie + noiembrie + decembrie - Dum - Lun - Mar - Mie - Joi - Vin - Sâm + dum. + lun. + mar. + mie. + joi + vin. + sâm. D @@ -1507,13 +1525,13 @@ For terms of use, see http://www.unicode.org/copyright.html S - Du - Lu - Ma - Mi - Jo - Vi - + du. + lu. + ma. + mi. + jo. + vi. + sâ. duminică @@ -1527,13 +1545,13 @@ For terms of use, see http://www.unicode.org/copyright.html - Dum - Lun - Mar - Mie - Joi - Vin - Sâm + dum. + lun. + mar. + mie. + joi + vin. + sâm. D @@ -1545,22 +1563,22 @@ For terms of use, see http://www.unicode.org/copyright.html S - Du - Lu - Ma - Mi - Jo - Vi - + du + lu + ma + mi + jo + vi + - Duminică - Luni - Marți - Miercuri - Joi - Vineri - Sâmbătă + duminică + luni + marți + miercuri + joi + vineri + sâmbătă @@ -1608,15 +1626,58 @@ For terms of use, see http://www.unicode.org/copyright.html + + miezul nopții + a.m. + amiază + p.m. + dimineața + după-amiaza + seara + noaptea + + miezul nopții a.m. prânz p.m. + dimineață + după-amiază + seară + noapte + la miezul nopții a.m. - la prânz + la amiază p.m. + dimineața + după-amiaza + seara + noaptea + + + + + miezul nopții + a.m. + amiază + p.m. + + + miezul nopții + a.m. + p.m. + + + la miezul nopții + a.m. + la amiază + p.m. + dimineață + după-amiază + seară + noapte @@ -1717,6 +1778,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L dd.MM E, dd.MM @@ -1743,7 +1808,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} {1} - {0} - {1} + {0} – {1} d–d @@ -1967,6 +2032,9 @@ For terms of use, see http://www.unicode.org/copyright.html Trimestru + trimestrul trecut + trimestrul acesta + trimestrul viitor peste {0} trimestru peste {0} trimestre @@ -1980,6 +2048,9 @@ For terms of use, see http://www.unicode.org/copyright.html trim. + trim. trecut + trim. acesta + trim. viitor peste {0} trim. peste {0} trim. @@ -1993,15 +2064,18 @@ For terms of use, see http://www.unicode.org/copyright.html trim. + trim. trecut + trim. acesta + trim. viitor +{0} trim. +{0} trim. +{0} trim. - +{0} trim. - +{0} trim. - +{0} trim. + -{0} trim. + -{0} trim. + -{0} trim. @@ -3240,6 +3314,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -3324,6 +3401,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkuțk + + Cita + Yakuțk @@ -3342,6 +3422,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolimsk + Kamciatka @@ -3713,9 +3796,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Ora din Apia - Ora standard din Apia - Ora de vară din Apia + Ora din Apia + Ora standard din Apia + Ora de vară din Apia @@ -4694,9 +4777,49 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤;(#,##0.00 ¤) + + + 0 mie ¤ + 0 mii ¤ + 0 mii ¤ + 00 mii ¤ + 00 mii ¤ + 00 mii ¤ + 000 mii ¤ + 000 mii ¤ + 000 mii ¤ + 0 mil'.' ¤ + 0 mil'.' ¤ + 0 mil'.' ¤ + 00 mil'.' ¤ + 00 mil'.' ¤ + 00 mil'.' ¤ + 000 mil'.' ¤ + 000 mil'.' ¤ + 000 mil'.' ¤ + 0 mld'.' ¤ + 0 mld'.' ¤ + 0 mld'.' ¤ + 00 mld'.' ¤ + 00 mld'.' ¤ + 00 mld'.' ¤ + 000 mld'.' ¤ + 000 mld'.' ¤ + 000 mld'.' ¤ + 0 tril'.' ¤ + 0 tril'.' ¤ + 0 tril'.' ¤ + 00 tril'.' ¤ + 00 tril'.' ¤ + 00 tril'.' ¤ + 000 tril'.' ¤ + 000 tril'.' ¤ + 000 tril'.' ¤ + + {0} {1} {0} {1} - {0} {1} + {0} de {1} @@ -4746,6 +4869,7 @@ For terms of use, see http://www.unicode.org/copyright.html kwanze angoleze kwanze angoleze AOA + Kz peso argentinian (1983–1985) @@ -4804,6 +4928,7 @@ For terms of use, see http://www.unicode.org/copyright.html mărci convertibile din Bosnia și Herțegovina mărci convertibile din Bosnia și Herțegovina BAM + KM dolar Barbados @@ -4882,6 +5007,7 @@ For terms of use, see http://www.unicode.org/copyright.html boliviano bolivieni boliviano bolivieni BOB + Bs peso bolivian @@ -4930,6 +5056,7 @@ For terms of use, see http://www.unicode.org/copyright.html pule Botswana pule Botswana BWP + P rublă belarusă @@ -5013,6 +5140,7 @@ For terms of use, see http://www.unicode.org/copyright.html pesos cubanezi convertibili pesos cubanezi convertibili CUC + $ peso cubanez @@ -5041,6 +5169,7 @@ For terms of use, see http://www.unicode.org/copyright.html coroane cehe coroane cehe CZK + marcă est-germană @@ -5067,6 +5196,7 @@ For terms of use, see http://www.unicode.org/copyright.html coroane daneze coroane daneze DKK + kr peso dominican @@ -5098,6 +5228,7 @@ For terms of use, see http://www.unicode.org/copyright.html lire egiptene lire egiptene EGP + nakfa eritreeană @@ -5153,6 +5284,7 @@ For terms of use, see http://www.unicode.org/copyright.html lire din Insulele Falkland lire din Insulele Falkland FKP + £ franc francez @@ -5174,6 +5306,7 @@ For terms of use, see http://www.unicode.org/copyright.html lari georgieni lari georgieni GEL + cedi Ghana (1979–2007) @@ -5206,6 +5339,7 @@ For terms of use, see http://www.unicode.org/copyright.html franci guineeni franci guineeni GNF + FG drahmă grecească @@ -5219,6 +5353,7 @@ For terms of use, see http://www.unicode.org/copyright.html quetzali guatemalezi quetzali guatemalezi GTQ + Q peso Guineea-Bissau @@ -5248,6 +5383,7 @@ For terms of use, see http://www.unicode.org/copyright.html lempire honduriene lempire honduriene HNL + L dinar croat @@ -5261,6 +5397,7 @@ For terms of use, see http://www.unicode.org/copyright.html kune croate kune croate HRK + kn gourde din Haiti @@ -5275,6 +5412,7 @@ For terms of use, see http://www.unicode.org/copyright.html forinți maghiari forinți maghiari HUF + Ft rupie indoneziană @@ -5282,6 +5420,7 @@ For terms of use, see http://www.unicode.org/copyright.html rupii indoneziene rupii indoneziene IDR + Rp liră irlandeză @@ -5331,6 +5470,7 @@ For terms of use, see http://www.unicode.org/copyright.html coroane islandeze coroane islandeze ISK + kr liră italiană @@ -5389,6 +5529,7 @@ For terms of use, see http://www.unicode.org/copyright.html franci comorieni franci comorieni KMF + CF won nord-coreean @@ -5396,6 +5537,7 @@ For terms of use, see http://www.unicode.org/copyright.html woni nord-coreeni woni nord-coreeni KPW + won sud-coreean @@ -5442,6 +5584,7 @@ For terms of use, see http://www.unicode.org/copyright.html lire libaneze lire libaneze LBP + rupie din Sri Lanka @@ -5449,6 +5592,7 @@ For terms of use, see http://www.unicode.org/copyright.html rupii din Sri Lanka rupii Sri Lanka LKR + Rs dolar liberian @@ -5532,6 +5676,7 @@ For terms of use, see http://www.unicode.org/copyright.html ariary malgași ariary malgași MGA + Ar franc Madagascar @@ -5558,6 +5703,7 @@ For terms of use, see http://www.unicode.org/copyright.html kyați din Myanmar kyați din Myanmar MMK + K tugrik mongol @@ -5593,6 +5739,7 @@ For terms of use, see http://www.unicode.org/copyright.html rupii mauritiene rupii mauritiene MUR + Rs rufiyaa maldiviană @@ -5628,6 +5775,7 @@ For terms of use, see http://www.unicode.org/copyright.html ringgit malaiezieni ringgit malaiezieni MYR + RM escudo Mozambic @@ -5667,6 +5815,7 @@ For terms of use, see http://www.unicode.org/copyright.html cordobe nicaraguane cordobe nicaraguane NIO + C$ gulden olandez @@ -5680,6 +5829,7 @@ For terms of use, see http://www.unicode.org/copyright.html coroane norvegiene coroane norvegiene NOK + kr rupie nepaleză @@ -5687,6 +5837,7 @@ For terms of use, see http://www.unicode.org/copyright.html rupii nepaleze rupii nepaleze NPR + Rs dolar neozeelandez @@ -5747,6 +5898,7 @@ For terms of use, see http://www.unicode.org/copyright.html rupii pakistaneze rupii pakistaneze PKR + Rs zlot polonez @@ -5754,6 +5906,7 @@ For terms of use, see http://www.unicode.org/copyright.html zloți polonezi zloți polonezi PLN + zlot polonez (1950–1995) @@ -5808,6 +5961,7 @@ For terms of use, see http://www.unicode.org/copyright.html ruble rusești ruble rusești RUB + franc rwandez @@ -5815,6 +5969,7 @@ For terms of use, see http://www.unicode.org/copyright.html franci rwandezi franci rwandezi RWF + RF rial saudit @@ -5863,6 +6018,7 @@ For terms of use, see http://www.unicode.org/copyright.html coroane suedeze coroane suedeze SEK + kr dolar Singapore @@ -5878,6 +6034,7 @@ For terms of use, see http://www.unicode.org/copyright.html lire Insula Sf. Elena lire Insula Sf. Elena SHP + £ tolar sloven @@ -5933,6 +6090,7 @@ For terms of use, see http://www.unicode.org/copyright.html dobre Sao Tome și Principe dobre Sao Tome și Principe STD + Db rublă sovietică @@ -5952,6 +6110,7 @@ For terms of use, see http://www.unicode.org/copyright.html lire siriene lire siriene SYP + £ lilangeni din Swaziland @@ -5966,6 +6125,7 @@ For terms of use, see http://www.unicode.org/copyright.html bahți thailandezi bahți thailandezi THB + ฿ rublă Tadjikistan @@ -6006,6 +6166,7 @@ For terms of use, see http://www.unicode.org/copyright.html pa’anga tongane pa’anga tongane TOP + T$ liră turcească (1922–2005) @@ -6020,6 +6181,7 @@ For terms of use, see http://www.unicode.org/copyright.html lire turcești TRY + TL dolar din Trinidad-Tobago @@ -6124,6 +6286,7 @@ For terms of use, see http://www.unicode.org/copyright.html bolivari venezueleni bolivari venezueleni VEF + Bs dong vietnamez @@ -6178,6 +6341,7 @@ For terms of use, see http://www.unicode.org/copyright.html dolari din Caraibele de Est dolari din Caraibele de Est XCD + $ drepturi speciale de tragere @@ -6263,6 +6427,7 @@ For terms of use, see http://www.unicode.org/copyright.html ranzi sud-africani ranzi sud-africani ZAR + R kwacha zambian (1968–2012) @@ -6276,6 +6441,7 @@ For terms of use, see http://www.unicode.org/copyright.html kwache zambiene kwache zambiene ZMW + ZK zair nou @@ -6304,7 +6470,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0} pe {1} + {0} pe {1} forță g @@ -6318,23 +6484,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metri pe secundă la pătrat {0} de metri pe secundă la pătrat - - minute de arc - {0} minut - {0} minute - {0} de minute - - - secunde de arc - {0} secundă - {0} secunde - {0} de secunde - - - grade - {0} grad - {0} grade - {0} de grade + + revoluție + {0} revoluție + {0} revoluții + {0} de revoluții radiani @@ -6342,35 +6496,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} radiani {0} de radiani - - acri - {0} acru - {0} acri - {0} de acri + + grade + {0} grad + {0} grade + {0} de grade - - hectare - {0} hectar - {0} hectare - {0} de hectare + + minute de arc + {0} minut de arc + {0} minute de arc + {0} de minute de arc - - centimetri pătrați - {0} centimetru pătrat - {0} centimetri pătrați - {0} de centimetri pătrați - - - picioare pătrate - {0} picior pătrat - {0} picioare pătrate - {0} picioare pătrate - - - inchi pătrați - {0} inch pătrat - {0} inchi pătrați - {0} de inchi pătrați + + secunde de arc + {0} secundă de arc + {0} secunde de arc + {0} de secunde de arc kilometri pătrați @@ -6378,11 +6520,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilometri pătrați {0} de kilometri pătrați + + hectare + {0} hectar + {0} hectare + {0} de hectare + metri pătrați {0} metru pătrat {0} metri pătrați {0} de metri pătrați + {0} pe metru pătrat + + + centimetri pătrați + {0} centimetru pătrat + {0} centimetri pătrați + {0} de centimetri pătrați + {0} pe centimetru pătrat mile pătrate @@ -6390,89 +6546,148 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mile pătrate {0} de mile pătrate + + acri + {0} acru + {0} acri + {0} de acri + iarzi pătrați {0} iard pătrat {0} iarzi pătrați {0} de iarzi pătrați + + picioare pătrate + {0} picior pătrat + {0} picioare pătrate + {0} de picioare pătrate + + + inchi pătrați + {0} inch pătrat + {0} inchi pătrați + {0} de inchi pătrați + {0} pe inchi pătrat + + + karate + {0} karată + {0} karate + {0} de karate + litri pe kilometru {0} litru pe kilometru {0} litri pe kilometru {0} de litri pe kilometru + + litri la suta de kilometri + {0} litru la suta de kilometri + {0} litri la suta de kilometri + {0} de litri la suta de kilometri + mile pe galon {0} milă pe galon {0} mile pe galon {0} de mile pe galon - - biți - {0} bit - {0} biți - {0} de biți - - - byți - {0} byte - {0} byți - {0} de byți - - - gigabiți - {0} gigabit - {0} gigabiți - {0} de gigabiți - - - gigabyți - {0} gigabyte - {0} gigabyți - {0} de gigabyți - - - kilobiți - {0} kilobit - {0} kilobiți - {0} de kilobiți - - - kilobyți - {0} kilobyte - {0} kilobyți - {0} de kilobyți - - - megabiți - {0} megabit - {0} megabiți - {0} de megabiți - - - megabyți - {0} megabyte - {0} megabyți - {0} de megabyți - - - terabiți - {0} terabit - {0} terabiți - {0} de terabiți - terabyți {0} terabyte {0} terabyți {0} de terabyți + + terabiți + {0} terabit + {0} terabiți + {0} de terabiți + + + gigabyți + {0} gigabyte + {0} gigabyți + {0} de gigabyți + + + gigabiți + {0} gigabit + {0} gigabiți + {0} de gigabiți + + + megabyți + {0} megabyte + {0} megabyți + {0} de megabyți + + + megabiți + {0} megabit + {0} megabiți + {0} de megabiți + + + kilobyți + {0} kilobyte + {0} kilobyți + {0} de kilobyți + + + kilobiți + {0} kilobit + {0} kilobiți + {0} de kilobiți + + + byți + {0} byte + {0} byți + {0} de byți + + + biți + {0} bit + {0} biți + {0} de biți + + + secole + {0} secol + {0} secole + {0} de secole + + + ani + {0} an + {0} ani + {0} de ani + {0} pe an + + + luni + {0} lună + {0} luni + {0} de luni + {0} pe lună + + + săptămâni + {0} săptămână + {0} săptămâni + {0} de săptămâni + {0} pe săptămână + zile {0} zi {0} zile {0} de zile + {0} pe zi ore @@ -6481,35 +6696,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} de ore {0} pe oră - - microsecunde - {0} microsecundă - {0} microsecunde - {0} de microsecunde - - - milisecunde - {0} milisecundă - {0} milisecunde - {0} de milisecunde - minute {0} minut {0} minute {0} de minute - - - luni - {0} lună - {0} luni - {0} de luni - - - nanosecunde - {0} nanosecundă - {0} nanosecunde - {0} de nanosecunde + {0} pe minut secunde @@ -6518,17 +6710,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} de secunde {0} pe secundă - - săptămâni - {0} săptămână - {0} săptămâni - {0} de săptămâni + + milisecunde + {0} milisecundă + {0} milisecunde + {0} de milisecunde - - ani - {0} an - {0} ani - {0} de ani + + microsecunde + {0} microsecundă + {0} microsecunde + {0} de microsecunde + + + nanosecunde + {0} nanosecundă + {0} nanosecunde + {0} de nanosecunde amperi @@ -6554,6 +6752,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volți {0} de volți + + kilocalorii + {0} kilocalorie + {0} kilocalorii + {0} de kilocalorii + calorii {0} calorie @@ -6566,24 +6770,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilocalorii {0} de kilocalorii - - jouli - {0} joule - {0} jouli - {0} de jouli - - - kilocalorii - {0} kilocalorie - {0} kilocalorii - {0} de kilocalorii - kilojouli {0} kilojoule {0} kilojouli {0} de kilojouli + + jouli + {0} joule + {0} jouli + {0} de jouli + kilowați-oră kilowatt-oră @@ -6596,11 +6794,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigahertzi {0} de gigahertzi - - hertz - {0} hertz - {0} hertzi - {0} de hertzi + + megahertz + {0} megahertz + {0} megahertzi + {0} de megahertzi kilohertz @@ -6608,23 +6806,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilohertzi {0} de kilohertzi - - megahertz - {0} megahertz - {0} megahertzi - {0} de megahertzi + + hertz + {0} hertz + {0} hertzi + {0} de hertzi - - unități astronomice - {0} unitate astronomică - {0} unități astronomice - {0} de unități astronomice + + kilometri + {0} kilometru + {0} kilometri + {0} de kilometri + {0} pe kilometru - - centimetri - {0} centimetru - {0} centimetri - {0} de centimetri + + metri + {0} metru + {0} metri + {0} de metri + {0} pe metru decimetri @@ -6632,47 +6832,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} decimetri {0} de decimetri - - picioare - {0} picior - {0} picioare - {0} de picioare - - - inchi - {0} inch - {0} inchi - {0} de inchi - - - kilometri - {0} kilometru - {0} kilometri - {0} de kilometri - - - ani lumină - {0} an lumină - {0} ani lumină - {0} de ani lumină - - - metri - {0} metru - {0} metri - {0} de metri - - - micrometri - {0} micrometru - {0} micrometri - {0} de micrometri - - - mile - {0} milă - {0} mile - {0} de mile + + centimetri + {0} centimetru + {0} centimetri + {0} de centimetri + {0} pe centimetru milimetri @@ -6680,71 +6845,105 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milimetri {0} de milimetri + + micrometri + {0} micrometru + {0} micrometri + {0} de micrometri + nanometri {0} nanometru {0} nanometri {0} de nanometri - - mile nautice - {0} milă nautică - {0} mile nautice - {0} de mile nautice - - - parseci - {0} parsec - {0} parseci - {0} de parseci - picometri {0} picometru {0} picometri {0} de picometri + + mile + {0} milă + {0} mile + {0} de mile + iarzi {0} iard {0} iarzi {0} de iarzi + + picioare + {0} picior + {0} picioare + {0} de picioare + {0} pe picior + + + inchi + {0} inch + {0} inchi + {0} de inchi + {0} pe inch + + + parseci + {0} parsec + {0} parseci + {0} de parseci + + + ani lumină + {0} an lumină + {0} ani lumină + {0} de ani lumină + + + unități astronomice + {0} unitate astronomică + {0} unități astronomice + {0} de unități astronomice + + + mile nautice + {0} milă nautică + {0} mile nautice + {0} de mile nautice + + + milă scandinavă + {0} milă scandinavă + {0} mile scandinave + {0} de mile scandinave + lucși {0} lux {0} lucși {0} de lucși - - carate - {0} carat - {0} carate - {0} de carate - - - grame - {0} gram - {0} grame - {0} de grame - - - kilograme - {0} kilogram - {0} kilograme - {0} de kilograme - tone {0} tonă {0} tone {0} de tone - - micrograme - {0} microgram - {0} micrograme - {0} de micrograme + + kilograme + {0} kilogram + {0} kilograme + {0} de kilograme + {0} per kilogram + + + grame + {0} gram + {0} grame + {0} de grame + {0} per gram miligrame @@ -6752,23 +6951,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} miligrame {0} de miligrame - - uncii - {0} uncie - {0} uncii - {0} de uncii - - - uncii monetare - {0} uncie monetară - {0} uncii monetare - {0} de uncii monetare - - - livre - {0} livră - {0} livre - {0} de livre + + micrograme + {0} microgram + {0} micrograme + {0} de micrograme tone scurte @@ -6776,35 +6963,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tone scurte {0} de tone scurte + + livre + {0} livră + {0} livre + {0} de livre + {0} per livră + + + uncii + {0} uncie + {0} uncii + {0} de uncii + {0} per uncie + + + uncii monetare + {0} uncie monetară + {0} uncii monetare + {0} de uncii monetare + + + carate + {0} carat + {0} carate + {0} de carate + gigawați {0} gigawatt {0} gigawați {0} de gigawați - - cai putere - {0} cal putere - {0} cai putere - {0} de cai putere - - - kilowați - {0} kilowatt - {0} kilowați - {0} de kilowați - megawați {0} megawatt {0} megawați {0} de megawați - - miliwați - {0} miliwatt - {0} miliwați - {0} de miliwați + + kilowați + {0} kilowatt + {0} kilowați + {0} de kilowați wați @@ -6812,24 +7013,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} wați {0} de wați + + miliwați + {0} miliwatt + {0} miliwați + {0} de miliwați + + + cai putere + {0} cal putere + {0} cai putere + {0} de cai putere + hectopascali {0} hectopascal {0} hectopascali {0} de hectopascali - - inchi coloană de mercur - {0} inch coloană de mercur - {0} inchi coloană de mercur - {0} de inchi coloană de mercur - - - milibari - {0} milibar - {0} milibari - {0} de milibari - milimetri coloană de mercur {0} milimetru coloană de mercur @@ -6842,11 +7043,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} livre pe inch pătrat {0} de livre pe inch pătrat - - karate - {0} karată - {0} karate - {0} de karate + + inchi coloană de mercur + {0} inch coloană de mercur + {0} inchi coloană de mercur + {0} de inchi coloană de mercur + + + milibari + {0} milibar + {0} milibari + {0} de milibari kilometri pe oră @@ -6866,6 +7073,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mile pe oră {0} de mile pe oră + + nod + {0} nod + {0} noduri + {0} de noduri + + + ° + {0}° + {0}° + {0}° + grade Celsius {0} grad Celsius @@ -6884,36 +7103,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvini {0} de kelvini - - acru-picioare - {0} acru-picior - {0} acru-picioare - {0} de acru-picioare - - - centilitri - {0} centilitru - {0} centilitri - {0} de centilitri - - - centimetri cubi - {0} centimetru cub - {0} centimetri cubi - {0} de centimetri cubi - - - picioare cubice - {0} picior cubic - {0} picioare cubice - {0} de picioare cubice - - - inchi cubici - {0} inch cubic - {0} inchi cubici - {0} de inchi cubici - kilometri cubi {0} kilometru cub @@ -6925,6 +7114,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metru cub {0} metri cubi {0} de metri cubi + {0} pe metru cub + + + centimetri cubi + {0} centimetru cub + {0} centimetri cubi + {0} de centimetri cubi + {0} pe centimetru cub mile cubice @@ -6938,29 +7135,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} iarzi cubici {0} de iarzi cubici - - căni - {0} cană - {0} căni - {0} de căni + + picioare cubice + {0} picior cubic + {0} picioare cubice + {0} de picioare cubice - - decilitri - {0} decilitru - {0} decilitri - {0} de decilitri + + inchi cubici + {0} inch cubic + {0} inchi cubici + {0} de inchi cubici - - uncii lichide - {0} uncie lichidă - {0} uncii lichide - {0} de uncii lichide - - - galoane - {0} galon - {0} galoane - {0} de galoane + + megalitri + {0} megalitru + {0} megalitri + {0} megalitri hectolitri @@ -6973,12 +7164,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litru {0} litri {0} de litri + {0} pe litru - - megalitri - {0} megalitru - {0} megalitri - {0} megalitri + + decilitri + {0} decilitru + {0} decilitri + {0} de decilitri + + + centilitri + {0} centilitru + {0} centilitri + {0} de centilitri mililitri @@ -6986,11 +7184,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mililitri {0} de mililitri - - pinte - {0} pintă - {0} pinte - {0} de pinte + + pinte metrice + {0} pintă metrică + {0} pinte metrice + {0} de pinte metrice + + + căni metrice + {0} cană metrică + {0} căni metrice + {0} de căni metrice + + + acru-picioare + {0} acru-picior + {0} acru-picioare + {0} de acru-picioare + + + galoane + {0} galon + {0} galoane + {0} de galoane + {0} per galon quarte @@ -6998,6 +7215,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} quarte {0} de quarte + + pinte + {0} pintă + {0} pinte + {0} de pinte + + + căni + {0} cană + {0} căni + {0} de căni + + + uncii lichide + {0} uncie lichidă + {0} uncii lichide + {0} de uncii lichide + linguri {0} lingură @@ -7010,10 +7245,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lingurițe {0} de lingurițe + + {0} E + {0} N + {0} S + {0} V + - {0}/{1} + {0}/{1} forță g @@ -7027,6 +7268,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rev. + {0} rev. + {0} rev. + {0} rev. + + + rad + {0} rad + {0} rad + {0} rad + + + grade + {0}° + {0}° + {0}° + arcmin {0} arcmin @@ -7039,23 +7298,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sec. {0} sec. - - grade - {0}° - {0}° - {0}° - - - rad - {0} rad - {0} rad - {0} rad - - - acri - {0} ac. - {0} ac. - {0} ac. + + km² + {0} km² + {0} km² + {0} km² ha @@ -7063,11 +7310,37 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha + + + {0} m² + {0} m² + {0} m² + {0} pe m² + cm² {0} cm² {0} cm² {0} cm² + {0} pe cm² + + + mi² + {0} mi² + {0} mi² + {0} mi² + + + acri + {0} ac. + {0} ac. + {0} ac. + + + yd² + {0} yd² + {0} yd² + {0} yd² ft² @@ -7080,30 +7353,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt + {0} kt l/km @@ -7111,90 +7367,132 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l/km {0} l/km + + l/100 km + l/100 km + {0} l/100 km + {0} l/100 km + mile/gal. {0} milă/gal. {0} mile/gal. {0} mile/gal. - - b - {0} b - {0} b - {0} b - - - B - {0} B - {0} B - {0} B - - - Gb - {0} Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + {0} kb + + + B + {0} B + {0} B + {0} B + + + b + {0} b + {0} b + {0} b + + + sec. + {0} sec. + {0} sec. + {0} sec. + + + ani + {0} an + {0} ani + {0} ani + {0}/an + + + luni + {0} lună + {0} luni + {0} luni + {0}/lună + + + săptămâni + {0} săpt. + {0} săpt. + {0} săpt. + {0}/săpt. + zile {0} zi {0} zile {0} zile + {0}/zi ore - {0} oră - {0} ore - {0} ore + {0} oră + {0} ore + {0} ore {0}/h - - μs - {0} μs - {0} μs - {0} μs + + min. + {0} min. + {0} min. + {0} min. + {0}/min. + + + s + {0} s + {0} s + {0} s + {0}/s ms @@ -7202,17 +7500,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ms {0} ms - - min. - {0} min. - {0} min. - {0} min. - - - luni - {0} lună - {0} luni - {0} luni + + μs + {0} μs + {0} μs + {0} μs ns @@ -7220,25 +7512,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ns {0} ns - - sec. - {0} sec. - {0} sec. - {0} sec. - {0}/s - - - săptămâni - {0} săpt. - {0} săpt. - {0} săpt. - - - ani - {0} an - {0} ani - {0} ani - A {0} A @@ -7263,6 +7536,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + {0} kcal + cal {0} cal @@ -7275,24 +7554,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kcal {0} kcal - - J - {0} J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ {0} kJ + + J + {0} J + {0} J + {0} J + kWh {0} kWh @@ -7305,11 +7578,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz + {0} MHz kHz @@ -7317,23 +7590,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz + {0} Hz - - ua - {0} ua - {0} ua - {0} ua + + km + {0} km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm - {0} cm + + metri + {0} m + {0} m + {0} m + {0}/m dm @@ -7341,47 +7616,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dm {0} dm - - ft - {0} ft - {0} ft - {0} ft - - - in - {0} in - {0} in - {0} in - - - km - {0} km - {0} km - {0} km - - - a.l. - {0} a.l. - {0} a.l. - {0} a.l. - - - metri - {0} m - {0} m - {0} m - - - µm - {0} µm - {0} µm - {0} µm - - - mi - {0} mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0} cm + {0}/cm mm @@ -7389,71 +7629,105 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mm {0} mm + + µm + {0} µm + {0} µm + {0} µm + nm {0} nm {0} nm {0} nm - - mn - {0} mn - {0} mn - {0} mn - - - pc - {0} pc - {0} pc - {0} pc - pm {0} pm {0} pm {0} pm + + mi + {0} mi + {0} mi + {0} mi + yd {0} yd {0} yd {0} yd + + ft + {0} ft + {0} ft + {0} ft + {0}/ft + + + in + {0} in + {0} in + {0} in + {0}/in + + + pc + {0} pc + {0} pc + {0} pc + + + a.l. + {0} a.l. + {0} a.l. + {0} a.l. + + + ua + {0} ua + {0} ua + {0} ua + + + mn + {0} mn + {0} mn + {0} mn + + + smi + {0} smi + {0} smi + {0} smi + lx {0} lx {0} lx {0} lx - - carate - {0} ct - {0} ct - {0} ct - - - grame - {0} g - {0} g - {0} g - - - kg - {0} kg - {0} kg - {0} kg - t {0} t {0} t {0} t - - µg - {0} µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0} kg + {0}/kg + + + grame + {0} g + {0} g + {0} g + {0}/g mg @@ -7461,23 +7735,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mg {0} mg - - oz - {0} oz - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb - {0} lb + + µg + {0} µg + {0} µg + {0} µg t.s. @@ -7485,35 +7747,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} t.s. {0} t.s. + + lb + {0} lb + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0} oz + {0}/oz + + + oz t + {0} oz t + {0} oz t + {0} oz t + + + carate + {0} ct + {0} ct + {0} ct + GW {0} GW {0} GW {0} GW - - CP - {0} CP - {0} CP - {0} CP - - - kW - {0} kW - {0} kW - {0} kW - MW {0} MW {0} MW {0} MW - - mW - {0} mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW + {0} kW W @@ -7521,24 +7797,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + mW + {0} mW + {0} mW + {0} mW + + + CP + {0} CP + {0} CP + {0} CP + hPa {0} hPa {0} hPa {0} hPa - - in Hg - {0} in Hg - {0} in Hg - {0} in Hg - - - mbar - {0} mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -7551,11 +7827,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kt - {0} kt - {0} kt - {0} kt + + in Hg + {0} in Hg + {0} in Hg + {0} in Hg + + + mbar + {0} mbar + {0} mbar + {0} mbar km/h @@ -7575,6 +7857,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + kn + {0} kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + {0}° + °C {0} °C @@ -7593,36 +7887,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - {0} ac ft - - - cl - {0} cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -7634,6 +7898,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -7647,29 +7919,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - căni - {0} c - {0} c - {0} c + + ft³ + {0} ft³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl - {0} dl + + in³ + {0} in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml + {0} Ml hl @@ -7682,12 +7948,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl + {0} cl ml @@ -7695,11 +7968,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ml {0} ml - - pinte - {0} pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + {0} mc + + + ac ft + {0} ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0} gal + {0}/gal qt @@ -7707,6 +7999,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} qt {0} qt + + pinte + {0} pt + {0} pt + {0} pt + + + căni + {0} c + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + {0} fl oz + tbsp {0} tbsp @@ -7719,16 +8029,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0}E + {0}N + {0}S + {0}V + - {0}/{1} + {0}/{1} {0} G {0} G {0} G + + {0}° + {0}° + {0}° + {0}′ {0}′ @@ -7739,31 +8060,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - {0}° - - - {0} ac. - {0} ac. - {0} ac. + + {0} km² + {0} km² + {0} km² {0} ha {0} ha {0} ha - - {0} ft² - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} km² - {0} m² {0} m² @@ -7774,6 +8080,40 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} ac. + {0} ac. + {0} ac. + + + {0} ft² + {0} ft² + {0} ft² + + + l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km + + + a + {0} a + {0} a + {0} a + + + l + {0} l + {0} l + {0} l + + + săpt. + {0} săpt. + {0} săpt. + {0} săpt. + zi {0} z @@ -7786,57 +8126,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0} h - - ms - {0} ms - {0} ms - {0} ms - m {0} m {0} m {0} m - - l - {0} l - {0} l - {0} l - s {0} s {0} s {0} s - - săpt. - {0} săpt. - {0} săpt. - {0} săpt. - - - a - {0} a - {0} a - {0} a - - - cm - {0} cm - {0} cm - {0} cm - - - {0} ft - {0} ft - {0} ft - - - {0} in - {0} in - {0} in + + ms + {0} ms + {0} ms + {0} ms km @@ -7844,21 +8150,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} km {0} km - - {0} a.l. - {0} a.l. - {0} a.l. - m {0} m {0} m {0} m - - {0} mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0} cm mm @@ -7871,16 +8173,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} mi + {0} mi + {0} mi + {0} yd {0} yd {0} yd - - g - {0} g - {0} g - {0} g + + {0} ft + {0} ft + {0} ft + + + {0} in + {0} in + {0} in + + + {0} a.l. + {0} a.l. + {0} a.l. kg @@ -7888,20 +8204,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kg {0} kg - - {0} oz - {0} oz - {0} oz + + g + {0} g + {0} g + {0} g {0} lb {0} lb {0} lb - - {0} CP - {0} CP - {0} CP + + {0} oz + {0} oz + {0} oz {0} kW @@ -7913,6 +8230,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} CP + {0} CP + {0} CP + {0} hPa {0} hPa @@ -7971,6 +8293,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l + + {0}E + {0}N + {0}S + {0}V + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ro_MD.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ro_MD.xml new file mode 100644 index 00000000000..6fc6b8952f7 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ro_MD.xml @@ -0,0 +1,184 @@ + + + + + + + + + + + + + + + + Dum + Lun + Mar + Mie + Joi + Vin + Sâm + + + D + L + Ma + Mi + J + V + S + + + Du + Lu + Ma + Mi + Jo + Vi + + + + + + Dum + Lun + Mar + Mie + Joi + Vin + Sâm + + + D + L + Ma + Mi + J + V + S + + + Du + Lu + Ma + Mi + Jo + Vi + + + + + + + + trim. 1 + trim. 2 + trim. 3 + trim. 4 + + + trimestrul 1 + trimestrul 2 + trimestrul 3 + trimestrul 4 + + + + + Trim. 1 + Trim. 2 + Trim. 3 + Trim. 4 + + + Trimestrul 1 + Trimestrul 2 + Trimestrul 3 + Trimestrul 4 + + + + + + + miezul nopții + amiază + dimineață + după-amiază + seară + noapte + + + miezul nopții + amiază + dimineața + după-amiaza + seara + noaptea + + + + + + î.e.n. + + + + + + + + + L + + + + + + + milisec. + + + + + {0}an + {0}ani + {0}ani + + + lună + {0}lună + {0}luni + {0}luni + + + {0}săpt. + {0}săpt. + {0}săpt. + + + {0}zi + {0}zile + {0}zile + + + min + {0}min. + {0}min. + {0}min. + + + msec + {0}ms + {0}ms + {0}ms + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ro_RO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ro_RO.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ro_RO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ro_RO.xml index 45c3f93eb71..ea5c2a9fa7a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ro_RO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ro_RO.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rof.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rof.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rof.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rof.xml index 35bbc4a1c40..82f55902ff9 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rof.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rof.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguila Albania Amenia - Antili za Uholanzi Angolo Ajentina Samoa ya Marekani @@ -448,6 +446,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + kang’ama + kingoto + kang’ama kingoto @@ -489,22 +491,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -581,6 +583,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00 + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rof_TZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rof_TZ.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rof_TZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rof_TZ.xml index a240615090a..7b178165ec2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rof_TZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rof_TZ.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/root.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/root.xml similarity index 83% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/root.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/root.xml index 73c644cccc2..945f848ab2f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/root.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/root.xml @@ -1,13 +1,11 @@ - - - + @@ -394,6 +392,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL MMM d MMM d, E + MMMM d mm:ss U MM U MM-d @@ -408,6 +407,7 @@ For terms of use, see http://www.unicode.org/copyright.html r(U) MMM r MMM d r(U) MMM d, E + r(U) MMMM r(U) QQQ r(U) QQQQ @@ -882,6 +882,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL MMM d MMM d, E + MMMM d mm:ss G y G y @@ -891,6 +892,7 @@ For terms of use, see http://www.unicode.org/copyright.html G y MMM G y MMM d G y MMM d, E + G y MMMM G y QQQ G y QQQQ @@ -1126,21 +1128,26 @@ For terms of use, see http://www.unicode.org/copyright.html - + AM + PM - a - n - p + - AM - noon - PM + - + + + + + + + + + @@ -1248,6 +1255,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL MMM d MMM d, E + MMMM d mm:ss y y-MM @@ -1256,6 +1264,7 @@ For terms of use, see http://www.unicode.org/copyright.html y MMM y MMM d y MMM d, E + y MMMM y QQQ y QQQQ @@ -1435,9 +1444,7 @@ For terms of use, see http://www.unicode.org/copyright.html AM - + @@ -1603,9 +1610,7 @@ For terms of use, see http://www.unicode.org/copyright.html AH - + @@ -1743,480 +1748,479 @@ For terms of use, see http://www.unicode.org/copyright.html - - Taika (645-650) - Hakuchi (650-671) - Hakuhō (672-686) - Shuchō (686-701) - Taihō (701-704) - Keiun (704-708) - Wadō (708-715) - Reiki (715-717) - Yōrō (717-724) - Jinki (724-729) - Tempyō (729-749) - Tempyō-kampō (749-749) - Tempyō-shōhō (749-757) - Tempyō-hōji (757-765) - Temphō-jingo (765-767) + Taika (645–650) + Hakuchi (650–671) + Hakuhō (672–686) + Shuchō (686–701) + Taihō (701–704) + Keiun (704–708) + Wadō (708–715) + Reiki (715–717) + Yōrō (717–724) + Jinki (724–729) + Tenpyō (729–749) + Tenpyō-kampō (749-749) + Tenpyō-shōhō (749-757) + Tenpyō-hōji (757-765) + Tenpyō-jingo (765-767) Jingo-keiun (767-770) - Hōki (770-780) + Hōki (770–780) Ten-ō (781-782) - Enryaku (782-806) - Daidō (806-810) - Kōnin (810-824) - Tenchō (824-834) - Jōwa (834-848) - Kajō (848-851) - Ninju (851-854) - Saiko (854-857) - Tennan (857-859) - Jōgan (859-877) - Genkei (877-885) - Ninna (885-889) - Kampyō (889-898) - Shōtai (898-901) - Engi (901-923) - Enchō (923-931) - Shōhei (931-938) - Tengyō (938-947) - Tenryaku (947-957) - Tentoku (957-961) - Ōwa (961-964) - Kōhō (964-968) - Anna (968-970) - Tenroku (970-973) - Ten-en (973-976) - Jōgen (976-978) - Tengen (978-983) - Eikan (983-985) - Kanna (985-987) - Ei-en (987-989) - Eiso (989-990) - Shōryaku (990-995) - Chōtoku (995-999) - Chōhō (999-1004) - Kankō (1004-1012) - Chōwa (1012-1017) - Kannin (1017-1021) - Jian (1021-1024) - Manju (1024-1028) - Chōgen (1028-1037) - Chōryaku (1037-1040) - Chōkyū (1040-1044) - Kantoku (1044-1046) - Eishō (1046-1053) - Tengi (1053-1058) - Kōhei (1058-1065) - Jiryaku (1065-1069) - Enkyū (1069-1074) - Shōho (1074-1077) - Shōryaku (1077-1081) - Eiho (1081-1084) - Ōtoku (1084-1087) - Kanji (1087-1094) - Kaho (1094-1096) - Eichō (1096-1097) - Shōtoku (1097-1099) - Kōwa (1099-1104) - Chōji (1104-1106) - Kashō (1106-1108) - Tennin (1108-1110) + Enryaku (782–806) + Daidō (806–810) + Kōnin (810–824) + Tenchō (824–834) + Jōwa (834–848) + Kajō (848–851) + Ninju (851–854) + Saikō (854–857) + Ten-an (857-859) + Jōgan (859–877) + Gangyō (877–885) + Ninna (885–889) + Kanpyō (889–898) + Shōtai (898–901) + Engi (901–923) + Enchō (923–931) + Jōhei (931–938) + Tengyō (938–947) + Tenryaku (947–957) + Tentoku (957–961) + Ōwa (961–964) + Kōhō (964–968) + Anna (968–970) + Tenroku (970–973) + Ten’en (973–976) + Jōgen (976–978) + Tengen (978–983) + Eikan (983–985) + Kanna (985–987) + Eien (987–989) + Eiso (989–990) + Shōryaku (990–995) + Chōtoku (995–999) + Chōhō (999–1004) + Kankō (1004–1012) + Chōwa (1012–1017) + Kannin (1017–1021) + Jian (1021–1024) + Manju (1024–1028) + Chōgen (1028–1037) + Chōryaku (1037–1040) + Chōkyū (1040–1044) + Kantoku (1044–1046) + Eishō (1046–1053) + Tengi (1053–1058) + Kōhei (1058–1065) + Jiryaku (1065–1069) + Enkyū (1069–1074) + Shōho (1074–1077) + Shōryaku (1077–1081) + Eihō (1081–1084) + Ōtoku (1084–1087) + Kanji (1087–1094) + Kahō (1094–1096) + Eichō (1096–1097) + Jōtoku (1097–1099) + Kōwa (1099–1104) + Chōji (1104–1106) + Kashō (1106–1108) + Tennin (1108–1110) Ten-ei (1110-1113) - Eikyū (1113-1118) - Gen-ei (1118-1120) - Hoan (1120-1124) - Tenji (1124-1126) - Daiji (1126-1131) - Tenshō (1131-1132) - Chōshō (1132-1135) - Hoen (1135-1141) - Eiji (1141-1142) - Kōji (1142-1144) - Tenyō (1144-1145) - Kyūan (1145-1151) - Ninpei (1151-1154) - Kyūju (1154-1156) - Hogen (1156-1159) - Heiji (1159-1160) - Eiryaku (1160-1161) - Ōho (1161-1163) - Chōkan (1163-1165) - Eiman (1165-1166) - Nin-an (1166-1169) - Kaō (1169-1171) - Shōan (1171-1175) - Angen (1175-1177) - Jishō (1177-1181) - Yōwa (1181-1182) - Juei (1182-1184) - Genryuku (1184-1185) - Bunji (1185-1190) - Kenkyū (1190-1199) - Shōji (1199-1201) - Kennin (1201-1204) - Genkyū (1204-1206) - Ken-ei (1206-1207) - Shōgen (1207-1211) - Kenryaku (1211-1213) - Kenpō (1213-1219) - Shōkyū (1219-1222) - Jōō (1222-1224) - Gennin (1224-1225) - Karoku (1225-1227) - Antei (1227-1229) - Kanki (1229-1232) - Jōei (1232-1233) - Tempuku (1233-1234) - Bunryaku (1234-1235) - Katei (1235-1238) - Ryakunin (1238-1239) - En-ō (1239-1240) - Ninji (1240-1243) - Kangen (1243-1247) - Hōji (1247-1249) - Kenchō (1249-1256) - Kōgen (1256-1257) - Shōka (1257-1259) - Shōgen (1259-1260) - Bun-ō (1260-1261) - Kōchō (1261-1264) - Bun-ei (1264-1275) - Kenji (1275-1278) - Kōan (1278-1288) - Shōō (1288-1293) - Einin (1293-1299) - Shōan (1299-1302) - Kengen (1302-1303) - Kagen (1303-1306) - Tokuji (1306-1308) - Enkei (1308-1311) - Ōchō (1311-1312) - Shōwa (1312-1317) - Bunpō (1317-1319) - Genō (1319-1321) - Genkyō (1321-1324) - Shōchū (1324-1326) - Kareki (1326-1329) - Gentoku (1329-1331) - Genkō (1331-1334) - Kemmu (1334-1336) - Engen (1336-1340) - Kōkoku (1340-1346) - Shōhei (1346-1370) - Kentoku (1370-1372) - Bunchū (1372-1375) - Tenju (1375-1379) - Kōryaku (1379-1381) - Kōwa (1381-1384) - Genchū (1384-1392) - Meitoku (1384-1387) - Kakei (1387-1389) - Kōō (1389-1390) - Meitoku (1390-1394) - Ōei (1394-1428) - Shōchō (1428-1429) - Eikyō (1429-1441) - Kakitsu (1441-1444) - Bun-an (1444-1449) - Hōtoku (1449-1452) - Kyōtoku (1452-1455) - Kōshō (1455-1457) - Chōroku (1457-1460) - Kanshō (1460-1466) - Bunshō (1466-1467) - Ōnin (1467-1469) - Bunmei (1469-1487) - Chōkyō (1487-1489) - Entoku (1489-1492) - Meiō (1492-1501) - Bunki (1501-1504) - Eishō (1504-1521) - Taiei (1521-1528) - Kyōroku (1528-1532) - Tenmon (1532-1555) - Kōji (1555-1558) - Eiroku (1558-1570) - Genki (1570-1573) - Tenshō (1573-1592) - Bunroku (1592-1596) - Keichō (1596-1615) - Genwa (1615-1624) - Kan-ei (1624-1644) - Shōho (1644-1648) - Keian (1648-1652) - Shōō (1652-1655) - Meiryaku (1655-1658) - Manji (1658-1661) - Kanbun (1661-1673) - Enpō (1673-1681) - Tenwa (1681-1684) - Jōkyō (1684-1688) - Genroku (1688-1704) - Hōei (1704-1711) - Shōtoku (1711-1716) - Kyōhō (1716-1736) - Genbun (1736-1741) - Kanpō (1741-1744) - Enkyō (1744-1748) - Kan-en (1748-1751) - Hōryaku (1751-1764) - Meiwa (1764-1772) - An-ei (1772-1781) - Tenmei (1781-1789) - Kansei (1789-1801) - Kyōwa (1801-1804) - Bunka (1804-1818) - Bunsei (1818-1830) - Tenpō (1830-1844) - Kōka (1844-1848) - Kaei (1848-1854) - Ansei (1854-1860) - Man-en (1860-1861) - Bunkyū (1861-1864) - Genji (1864-1865) - Keiō (1865-1868) + Eikyū (1113–1118) + Gen’ei (1118–1120) + Hōan (1120–1124) + Tenji (1124–1126) + Daiji (1126–1131) + Tenshō (1131–1132) + Chōshō (1132–1135) + Hōen (1135–1141) + Eiji (1141–1142) + Kōji (1142–1144) + Ten’yō (1144–1145) + Kyūan (1145–1151) + Ninpei (1151–1154) + Kyūju (1154–1156) + Hōgen (1156–1159) + Heiji (1159–1160) + Eiryaku (1160–1161) + Ōho (1161–1163) + Chōkan (1163–1165) + Eiman (1165–1166) + Nin’an (1166–1169) + Kaō (1169–1171) + Shōan (1171–1175) + Angen (1175–1177) + Jishō (1177–1181) + Yōwa (1181–1182) + Juei (1182–1184) + Genryaku (1184–1185) + Bunji (1185–1190) + Kenkyū (1190–1199) + Shōji (1199–1201) + Kennin (1201–1204) + Genkyū (1204–1206) + Ken’ei (1206–1207) + Jōgen (1207–1211) + Kenryaku (1211–1213) + Kenpō (1213–1219) + Jōkyū (1219–1222) + Jōō (1222–1224) + Gennin (1224–1225) + Karoku (1225–1227) + Antei (1227–1229) + Kanki (1229–1232) + Jōei (1232–1233) + Tenpuku (1233–1234) + Bunryaku (1234–1235) + Katei (1235–1238) + Ryakunin (1238–1239) + En’ō (1239–1240) + Ninji (1240–1243) + Kangen (1243–1247) + Hōji (1247–1249) + Kenchō (1249–1256) + Kōgen (1256–1257) + Shōka (1257–1259) + Shōgen (1259–1260) + Bun’ō (1260–1261) + Kōchō (1261–1264) + Bun’ei (1264–1275) + Kenji (1275–1278) + Kōan (1278–1288) + Shōō (1288–1293) + Einin (1293–1299) + Shōan (1299–1302) + Kengen (1302–1303) + Kagen (1303–1306) + Tokuji (1306–1308) + Enkyō (1308–1311) + Ōchō (1311–1312) + Shōwa (1312–1317) + Bunpō (1317–1319) + Genō (1319–1321) + Genkō (1321–1324) + Shōchū (1324–1326) + Karyaku (1326–1329) + Gentoku (1329–1331) + Genkō (1331–1334) + Kenmu (1334–1336) + Engen (1336–1340) + Kōkoku (1340–1346) + Shōhei (1346–1370) + Kentoku (1370–1372) + Bunchū (1372–1375) + Tenju (1375–1379) + Kōryaku (1379–1381) + Kōwa (1381–1384) + Genchū (1384–1392) + Meitoku (1384–1387) + Kakei (1387–1389) + Kōō (1389–1390) + Meitoku (1390–1394) + Ōei (1394–1428) + Shōchō (1428–1429) + Eikyō (1429–1441) + Kakitsu (1441–1444) + Bun’an (1444–1449) + Hōtoku (1449–1452) + Kyōtoku (1452–1455) + Kōshō (1455–1457) + Chōroku (1457–1460) + Kanshō (1460–1466) + Bunshō (1466–1467) + Ōnin (1467–1469) + Bunmei (1469–1487) + Chōkyō (1487–1489) + Entoku (1489–1492) + Meiō (1492–1501) + Bunki (1501–1504) + Eishō (1504–1521) + Taiei (1521–1528) + Kyōroku (1528–1532) + Tenbun (1532–1555) + Kōji (1555–1558) + Eiroku (1558–1570) + Genki (1570–1573) + Tenshō (1573–1592) + Bunroku (1592–1596) + Keichō (1596–1615) + Genna (1615–1624) + Kan’ei (1624–1644) + Shōho (1644–1648) + Keian (1648–1652) + Jōō (1652–1655) + Meireki (1655–1658) + Manji (1658–1661) + Kanbun (1661–1673) + Enpō (1673–1681) + Tenna (1681–1684) + Jōkyō (1684–1688) + Genroku (1688–1704) + Hōei (1704–1711) + Shōtoku (1711–1716) + Kyōhō (1716–1736) + Genbun (1736–1741) + Kanpō (1741–1744) + Enkyō (1744–1748) + Kan’en (1748–1751) + Hōreki (1751–1764) + Meiwa (1764–1772) + An’ei (1772–1781) + Tenmei (1781–1789) + Kansei (1789–1801) + Kyōwa (1801–1804) + Bunka (1804–1818) + Bunsei (1818–1830) + Tenpō (1830–1844) + Kōka (1844–1848) + Kaei (1848–1854) + Ansei (1854–1860) + Man’en (1860–1861) + Bunkyū (1861–1864) + Genji (1864–1865) + Keiō (1865–1868) Meiji Taishō Shōwa Heisei - Taika (645-650) - Hakuchi (650-671) - Hakuhō (672-686) - Shuchō (686-701) - Taihō (701-704) - Keiun (704-708) - Wadō (708-715) - Reiki (715-717) - Yōrō (717-724) - Jinki (724-729) - Tempyō (729-749) - Tempyō-kampō (749-749) - Tempyō-shōhō (749-757) - Tempyō-hōji (757-765) - Temphō-jingo (765-767) + Taika (645–650) + Hakuchi (650–671) + Hakuhō (672–686) + Shuchō (686–701) + Taihō (701–704) + Keiun (704–708) + Wadō (708–715) + Reiki (715–717) + Yōrō (717–724) + Jinki (724–729) + Tenpyō (729–749) + Tenpyō-kampō (749-749) + Tenpyō-shōhō (749-757) + Tenpyō-hōji (757-765) + Tenpyō-jingo (765-767) Jingo-keiun (767-770) - Hōki (770-780) + Hōki (770–780) Ten-ō (781-782) - Enryaku (782-806) - Daidō (806-810) - Kōnin (810-824) - Tenchō (824-834) - Jōwa (834-848) - Kajō (848-851) - Ninju (851-854) - Saiko (854-857) - Tennan (857-859) - Jōgan (859-877) - Genkei (877-885) - Ninna (885-889) - Kampyō (889-898) - Shōtai (898-901) - Engi (901-923) - Enchō (923-931) - Shōhei (931-938) - Tengyō (938-947) - Tenryaku (947-957) - Tentoku (957-961) - Ōwa (961-964) - Kōhō (964-968) - Anna (968-970) - Tenroku (970-973) - Ten-en (973-976) - Jōgen (976-978) - Tengen (978-983) - Eikan (983-985) - Kanna (985-987) - Ei-en (987-989) - Eiso (989-990) - Shōryaku (990-995) - Chōtoku (995-999) - Chōhō (999-1004) - Kankō (1004-1012) - Chōwa (1012-1017) - Kannin (1017-1021) - Jian (1021-1024) - Manju (1024-1028) - Chōgen (1028-1037) - Chōryaku (1037-1040) - Chōkyū (1040-1044) - Kantoku (1044-1046) - Eishō (1046-1053) - Tengi (1053-1058) - Kōhei (1058-1065) - Jiryaku (1065-1069) - Enkyū (1069-1074) - Shōho (1074-1077) - Shōryaku (1077-1081) - Eiho (1081-1084) - Ōtoku (1084-1087) - Kanji (1087-1094) - Kaho (1094-1096) - Eichō (1096-1097) - Shōtoku (1097-1099) - Kōwa (1099-1104) - Chōji (1104-1106) - Kashō (1106-1108) - Tennin (1108-1110) + Enryaku (782–806) + Daidō (806–810) + Kōnin (810–824) + Tenchō (824–834) + Jōwa (834–848) + Kajō (848–851) + Ninju (851–854) + Saikō (854–857) + Ten-an (857-859) + Jōgan (859–877) + Gangyō (877–885) + Ninna (885–889) + Kanpyō (889–898) + Shōtai (898–901) + Engi (901–923) + Enchō (923–931) + Jōhei (931–938) + Tengyō (938–947) + Tenryaku (947–957) + Tentoku (957–961) + Ōwa (961–964) + Kōhō (964–968) + Anna (968–970) + Tenroku (970–973) + Ten’en (973–976) + Jōgen (976–978) + Tengen (978–983) + Eikan (983–985) + Kanna (985–987) + Eien (987–989) + Eiso (989–990) + Shōryaku (990–995) + Chōtoku (995–999) + Chōhō (999–1004) + Kankō (1004–1012) + Chōwa (1012–1017) + Kannin (1017–1021) + Jian (1021–1024) + Manju (1024–1028) + Chōgen (1028–1037) + Chōryaku (1037–1040) + Chōkyū (1040–1044) + Kantoku (1044–1046) + Eishō (1046–1053) + Tengi (1053–1058) + Kōhei (1058–1065) + Jiryaku (1065–1069) + Enkyū (1069–1074) + Shōho (1074–1077) + Shōryaku (1077–1081) + Eihō (1081–1084) + Ōtoku (1084–1087) + Kanji (1087–1094) + Kahō (1094–1096) + Eichō (1096–1097) + Jōtoku (1097–1099) + Kōwa (1099–1104) + Chōji (1104–1106) + Kashō (1106–1108) + Tennin (1108–1110) Ten-ei (1110-1113) - Eikyū (1113-1118) - Gen-ei (1118-1120) - Hoan (1120-1124) - Tenji (1124-1126) - Daiji (1126-1131) - Tenshō (1131-1132) - Chōshō (1132-1135) - Hoen (1135-1141) - Eiji (1141-1142) - Kōji (1142-1144) - Tenyō (1144-1145) - Kyūan (1145-1151) - Ninpei (1151-1154) - Kyūju (1154-1156) - Hogen (1156-1159) - Heiji (1159-1160) - Eiryaku (1160-1161) - Ōho (1161-1163) - Chōkan (1163-1165) - Eiman (1165-1166) - Nin-an (1166-1169) - Kaō (1169-1171) - Shōan (1171-1175) - Angen (1175-1177) - Jishō (1177-1181) - Yōwa (1181-1182) - Juei (1182-1184) - Genryuku (1184-1185) - Bunji (1185-1190) - Kenkyū (1190-1199) - Shōji (1199-1201) - Kennin (1201-1204) - Genkyū (1204-1206) - Ken-ei (1206-1207) - Shōgen (1207-1211) - Kenryaku (1211-1213) - Kenpō (1213-1219) - Shōkyū (1219-1222) - Jōō (1222-1224) - Gennin (1224-1225) - Karoku (1225-1227) - Antei (1227-1229) - Kanki (1229-1232) - Jōei (1232-1233) - Tempuku (1233-1234) - Bunryaku (1234-1235) - Katei (1235-1238) - Ryakunin (1238-1239) - En-ō (1239-1240) - Ninji (1240-1243) - Kangen (1243-1247) - Hōji (1247-1249) - Kenchō (1249-1256) - Kōgen (1256-1257) - Shōka (1257-1259) - Shōgen (1259-1260) - Bun-ō (1260-1261) - Kōchō (1261-1264) - Bun-ei (1264-1275) - Kenji (1275-1278) - Kōan (1278-1288) - Shōō (1288-1293) - Einin (1293-1299) - Shōan (1299-1302) - Kengen (1302-1303) - Kagen (1303-1306) - Tokuji (1306-1308) - Enkei (1308-1311) - Ōchō (1311-1312) - Shōwa (1312-1317) - Bunpō (1317-1319) - Genō (1319-1321) - Genkyō (1321-1324) - Shōchū (1324-1326) - Kareki (1326-1329) - Gentoku (1329-1331) - Genkō (1331-1334) - Kemmu (1334-1336) - Engen (1336-1340) - Kōkoku (1340-1346) - Shōhei (1346-1370) - Kentoku (1370-1372) - Bunchũ (1372-1375) - Tenju (1375-1379) - Kōryaku (1379-1381) - Kōwa (1381-1384) - Genchũ (1384-1392) - Meitoku (1384-1387) - Kakei (1387-1389) - Kōō (1389-1390) - Meitoku (1390-1394) - Ōei (1394-1428) - Shōchō (1428-1429) - Eikyō (1429-1441) - Kakitsu (1441-1444) - Bun-an (1444-1449) - Hōtoku (1449-1452) - Kyōtoku (1452-1455) - Kōshō (1455-1457) - Chōroku (1457-1460) - Kanshō (1460-1466) - Bunshō (1466-1467) - Ōnin (1467-1469) - Bunmei (1469-1487) - Chōkyō (1487-1489) - Entoku (1489-1492) - Meiō (1492-1501) - Bunki (1501-1504) - Eishō (1504-1521) - Taiei (1521-1528) - Kyōroku (1528-1532) - Tenmon (1532-1555) - Kōji (1555-1558) - Eiroku (1558-1570) - Genki (1570-1573) - Tenshō (1573-1592) - Bunroku (1592-1596) - Keichō (1596-1615) - Genwa (1615-1624) - Kan-ei (1624-1644) - Shōho (1644-1648) - Keian (1648-1652) - Shōō (1652-1655) - Meiryaku (1655-1658) - Manji (1658-1661) - Kanbun (1661-1673) - Enpō (1673-1681) - Tenwa (1681-1684) - Jōkyō (1684-1688) - Genroku (1688-1704) - Hōei (1704-1711) - Shōtoku (1711-1716) - Kyōhō (1716-1736) - Genbun (1736-1741) - Kanpō (1741-1744) - Enkyō (1744-1748) - Kan-en (1748-1751) - Hōryaku (1751-1764) - Meiwa (1764-1772) - An-ei (1772-1781) - Tenmei (1781-1789) - Kansei (1789-1801) - Kyōwa (1801-1804) - Bunka (1804-1818) - Bunsei (1818-1830) - Tenpō (1830-1844) - Kōka (1844-1848) - Kaei (1848-1854) - Ansei (1854-1860) - Man-en (1860-1861) - Bunkyū (1861-1864) - Genji (1864-1865) - Keiō (1865-1868) + Eikyū (1113–1118) + Gen’ei (1118–1120) + Hōan (1120–1124) + Tenji (1124–1126) + Daiji (1126–1131) + Tenshō (1131–1132) + Chōshō (1132–1135) + Hōen (1135–1141) + Eiji (1141–1142) + Kōji (1142–1144) + Ten’yō (1144–1145) + Kyūan (1145–1151) + Ninpei (1151–1154) + Kyūju (1154–1156) + Hōgen (1156–1159) + Heiji (1159–1160) + Eiryaku (1160–1161) + Ōho (1161–1163) + Chōkan (1163–1165) + Eiman (1165–1166) + Nin’an (1166–1169) + Kaō (1169–1171) + Shōan (1171–1175) + Angen (1175–1177) + Jishō (1177–1181) + Yōwa (1181–1182) + Juei (1182–1184) + Genryaku (1184–1185) + Bunji (1185–1190) + Kenkyū (1190–1199) + Shōji (1199–1201) + Kennin (1201–1204) + Genkyū (1204–1206) + Ken’ei (1206–1207) + Jōgen (1207–1211) + Kenryaku (1211–1213) + Kenpō (1213–1219) + Jōkyū (1219–1222) + Jōō (1222–1224) + Gennin (1224–1225) + Karoku (1225–1227) + Antei (1227–1229) + Kanki (1229–1232) + Jōei (1232–1233) + Tenpuku (1233–1234) + Bunryaku (1234–1235) + Katei (1235–1238) + Ryakunin (1238–1239) + En’ō (1239–1240) + Ninji (1240–1243) + Kangen (1243–1247) + Hōji (1247–1249) + Kenchō (1249–1256) + Kōgen (1256–1257) + Shōka (1257–1259) + Shōgen (1259–1260) + Bun’ō (1260–1261) + Kōchō (1261–1264) + Bun’ei (1264–1275) + Kenji (1275–1278) + Kōan (1278–1288) + Shōō (1288–1293) + Einin (1293–1299) + Shōan (1299–1302) + Kengen (1302–1303) + Kagen (1303–1306) + Tokuji (1306–1308) + Enkyō (1308–1311) + Ōchō (1311–1312) + Shōwa (1312–1317) + Bunpō (1317–1319) + Genō (1319–1321) + Genkō (1321–1324) + Shōchū (1324–1326) + Karyaku (1326–1329) + Gentoku (1329–1331) + Genkō (1331–1334) + Kenmu (1334–1336) + Engen (1336–1340) + Kōkoku (1340–1346) + Shōhei (1346–1370) + Kentoku (1370–1372) + Bunchū (1372–1375) + Tenju (1375–1379) + Kōryaku (1379–1381) + Kōwa (1381–1384) + Genchū (1384–1392) + Meitoku (1384–1387) + Kakei (1387–1389) + Kōō (1389–1390) + Meitoku (1390–1394) + Ōei (1394–1428) + Shōchō (1428–1429) + Eikyō (1429–1441) + Kakitsu (1441–1444) + Bun’an (1444–1449) + Hōtoku (1449–1452) + Kyōtoku (1452–1455) + Kōshō (1455–1457) + Chōroku (1457–1460) + Kanshō (1460–1466) + Bunshō (1466–1467) + Ōnin (1467–1469) + Bunmei (1469–1487) + Chōkyō (1487–1489) + Entoku (1489–1492) + Meiō (1492–1501) + Bunki (1501–1504) + Eishō (1504–1521) + Taiei (1521–1528) + Kyōroku (1528–1532) + Tenbun (1532–1555) + Kōji (1555–1558) + Eiroku (1558–1570) + Genki (1570–1573) + Tenshō (1573–1592) + Bunroku (1592–1596) + Keichō (1596–1615) + Genna (1615–1624) + Kan’ei (1624–1644) + Shōho (1644–1648) + Keian (1648–1652) + Jōō (1652–1655) + Meireki (1655–1658) + Manji (1658–1661) + Kanbun (1661–1673) + Enpō (1673–1681) + Tenna (1681–1684) + Jōkyō (1684–1688) + Genroku (1688–1704) + Hōei (1704–1711) + Shōtoku (1711–1716) + Kyōhō (1716–1736) + Genbun (1736–1741) + Kanpō (1741–1744) + Enkyō (1744–1748) + Kan’en (1748–1751) + Hōreki (1751–1764) + Meiwa (1764–1772) + An’ei (1772–1781) + Tenmei (1781–1789) + Kansei (1789–1801) + Kyōwa (1801–1804) + Bunka (1804–1818) + Bunsei (1818–1830) + Tenpō (1830–1844) + Kōka (1844–1848) + Kaei (1848–1854) + Ansei (1854–1860) + Man’en (1860–1861) + Bunkyū (1861–1864) + Genji (1864–1865) + Keiō (1865–1868) M T S @@ -2698,7 +2702,7 @@ For terms of use, see http://www.unicode.org/copyright.html ؉ NaN - ٫ + : ٫ @@ -3344,6 +3348,22 @@ For terms of use, see http://www.unicode.org/copyright.html + + + ¤ 0K + ¤ 00K + ¤ 000K + ¤ 0M + ¤ 00M + ¤ 000M + ¤ 0G + ¤ 00G + ¤ 000G + ¤ 0T + ¤ 00T + ¤ 000T + + {0} {1} @@ -3509,6 +3529,9 @@ For terms of use, see http://www.unicode.org/copyright.html £ £ + + + £ @@ -3643,7 +3666,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + р. @@ -3690,7 +3713,7 @@ For terms of use, see http://www.unicode.org/copyright.html NT$ - NT$ + $ @@ -3873,6 +3896,18 @@ For terms of use, see http://www.unicode.org/copyright.html m/s² {0} m/s² + + rev + {0} rev + + + rad + {0} rad + + + deg + {0}° + arcmin {0}′ @@ -3881,25 +3916,35 @@ For terms of use, see http://www.unicode.org/copyright.html arcsec {0}″ - - deg - {0}° - - - rad - {0} rad - - - acre - {0} ac + + km² + {0} km² hectare {0} ha + + + {0} m² + {0}/m² + cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + + + acre + {0} ac + + + yd² + {0} yd² ft² @@ -3908,112 +3953,142 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0} in² + {0}/in² - - km² - {0} km² + + kt + {0} kt - - - {0} m² + + mg/dL + {0} mg/dL - - mi² - {0} mi² + + mmol/L + {0} mmol/L - - yd² - {0} yd² + + ppm + {0} ppm L/km {0} L/km + + L/100km + {0} L/100km + - mpg - {0} mpg + mpg US + {0} mpg US - - bit - {0} bit - - - byte - {0} byte - - - Gb - {0} Gb - - - GB - {0} GB - - - kb - {0} kb - - - kB - {0} kB - - - Mb - {0} Mb - - - MB - {0} MB - - - Tb - {0} Tb + + mpg Imp. + {0} mpg Imp. TB {0} TB + + Tb + {0} Tb + + + GB + {0} GB + + + Gb + {0} Gb + + + MB + {0} MB + + + Mb + {0} Mb + + + kB + {0} kB + + + kb + {0} kb + + + byte + {0} byte + + + bit + {0} bit + + + c + {0} c + + + yr + {0} y + {0}/y + + + + + + mon + {0} m + {0}/m + + + + + + wk + {0} w + {0}/w + + + + day {0} d + {0}/d + + + hr {0} h {0}/h - - μs - {0} μs - - - ms - {0} ms - min {0} min - - - mon - {0} m - - - ns - {0} ns + {0}/min sec {0} s {0}/s - - wk - {0} w + + ms + {0} ms - - yr - {0} y + + μs + {0} μs + + + ns + {0} ns amp @@ -4031,6 +4106,10 @@ For terms of use, see http://www.unicode.org/copyright.html volt {0} V + + kcal + {0} kcal + cal {0} cal @@ -4039,18 +4118,14 @@ For terms of use, see http://www.unicode.org/copyright.html Cal {0} Cal - - joule - {0} J - - - kcal - {0} kcal - kJ {0} kJ + + joule + {0} J + kWh {0} kWh @@ -4059,174 +4134,179 @@ For terms of use, see http://www.unicode.org/copyright.html GHz {0} GHz - - Hz - {0} Hz + + MHz + {0} MHz kHz {0} kHz - - MHz - {0} MHz + + Hz + {0} Hz - - au - {0} au + + km + {0} km + {0}/km - - cm - {0} cm + + meter + {0} m + {0}/m dm {0} dm - - fm - {0} fm - - - ft - {0} ft - - - fur - {0} fur - - - in - {0} in - - - km - {0} km - - - ly - {0} ly - - - meter - {0} m - - - µm - {0} µm - - - mi - {0} mi + + cm + {0} cm + {0}/cm mm {0} mm + + µm + {0} µm + nm {0} nm - - nmi - {0} nmi - - - pc - {0} pc - pm {0} pm + + mi + {0} mi + yd {0} yd + + ft + {0} ft + {0}/ft + + + in + {0} in + {0}/in + + + pc + {0} pc + + + ly + {0} ly + + + au + {0} au + + + fur + {0} fur + + + fm + {0} fm + + + nmi + {0} nmi + + + smi + {0} smi + lx {0} lx - - CD - {0} CD - - - gram - {0} g - - - kg - {0} kg - t {0} t - - µg - {0} µg + + kg + {0} kg + {0}/kg + + + gram + {0} g + {0}/g mg {0} mg - - oz - {0} oz - - - oz t - {0} oz t - - - lb - {0} lb - - - st - {0} st + + µg + {0} µg tn {0} tn + + st + {0} st + + + lb + {0} lb + {0}/lb + + + oz + {0} oz + {0}/oz + + + oz t + {0} oz t + + + CD + {0} CD + GW {0} GW - - hp - {0} hp - - - kW - {0} kW - MW {0} MW - - mW - {0} mW + + kW + {0} kW watt {0} W + + mW + {0} mW + + + hp + {0} hp + hPa {0} hPa - - inHg - {0} inHg - - - mbar - {0} mbar - mm Hg {0} mm Hg @@ -4235,9 +4315,13 @@ For terms of use, see http://www.unicode.org/copyright.html psi {0} psi - - kt - {0} kt + + inHg + {0} inHg + + + mbar + {0} mbar km/h @@ -4251,6 +4335,14 @@ For terms of use, see http://www.unicode.org/copyright.html mi/h {0} mi/h + + kn + {0} kn + + + ° + {0}° + °C {0}°C @@ -4259,38 +4351,10 @@ For terms of use, see http://www.unicode.org/copyright.html °F {0}°F - - ° - {0}° - K {0} K - - ac ft - {0} ac ft - - - bu - {0} bu - - - cL - {0} cL - - - cm³ - {0} cm³ - - - ft³ - {0} ft³ - - - in³ - {0} in³ - km³ {0} km³ @@ -4298,6 +4362,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0}/cm³ mi³ @@ -4307,21 +4377,17 @@ For terms of use, see http://www.unicode.org/copyright.html yd³ {0} yd³ - - cup - {0} c + + ft³ + {0} ft³ - - dL - {0} dL + + in³ + {0} in³ - - fl oz - {0} fl oz - - - gal - {0} gal + + ML + {0} ML hL @@ -4330,23 +4396,62 @@ For terms of use, see http://www.unicode.org/copyright.html liter {0} l + {0}/l - - ML - {0} ML + + dL + {0} dL + + + cL + {0} cL mL {0} mL - - pt - {0} pt + + mpt + {0} mpt + + + mcup + {0} mc + + + ac ft + {0} ac ft + + + bu + {0} bu + + + US gal + {0} gal US + {0}/gal US + + + Imp. gal + {0} gal Imp. + {0}/gal Imp. qt {0} qt + + pt + {0} pt + + + cup + {0} c + + + fl oz + {0} fl oz + tbsp {0} tbsp @@ -4355,6 +4460,12 @@ For terms of use, see http://www.unicode.org/copyright.html tsp {0} tsp + + {0}E + {0}N + {0}S + {0}W + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru.xml index 18e8fa0bd47..d484508b445 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru.xml @@ -1,13 +1,12 @@ - - - + @@ -43,7 +42,7 @@ For terms of use, see http://www.unicode.org/copyright.html арапахо аравакский ассамский - аса + асу астурийский аварский авадхи @@ -62,6 +61,7 @@ For terms of use, see http://www.unicode.org/copyright.html бена бафут болгарский + западно-белуджский бходжпури бислама бикольский @@ -75,7 +75,7 @@ For terms of use, see http://www.unicode.org/copyright.html брауи бодо боснийский - акоосе + акоосе бурятский бугийский булу @@ -148,6 +148,7 @@ For terms of use, see http://www.unicode.org/copyright.html испанский латиноамериканский испанский европейский испанский + мексиканский испанский эстонский баскский эвондо @@ -287,6 +288,7 @@ For terms of use, see http://www.unicode.org/copyright.html лаосский монго лози + северно-лурийский литовский луба-катанга луба-лулуа @@ -335,18 +337,20 @@ For terms of use, see http://www.unicode.org/copyright.html бирманский миене эрзя + мазендеранский науру неаполитанский нама норвежский букмол северный ндебели нижнегерманский + нижнесаксонский непальский неварский ндонга ниас ниуэ - голландский + нидерландский фламандский квасио норвежский нюнорск @@ -417,6 +421,7 @@ For terms of use, see http://www.unicode.org/copyright.html сицилийский шотландский синдхи + южнокурдский северносаамский сенека сена @@ -425,7 +430,7 @@ For terms of use, see http://www.unicode.org/copyright.html санго староирландский сербскохорватский - тахелхит + ташельхит шанский чадский арабс сингальский @@ -433,10 +438,10 @@ For terms of use, see http://www.unicode.org/copyright.html словацкий словенский самоанский - саамский (южный) + южно-саамский луле-саамский инари-саамский - скольт-саамский + скольт-саамский шона сонинке сомали @@ -454,8 +459,8 @@ For terms of use, see http://www.unicode.org/copyright.html шумерский шведский суахили + конголезский суахили коморский - конголезский суахили классический сирийский сирийский тамильский @@ -491,7 +496,7 @@ For terms of use, see http://www.unicode.org/copyright.html тасавак таитянский тувинский - среднеатласский тамазигхтский + среднеатласский тамазигхтский удмуртский уйгурский угаритский @@ -511,6 +516,7 @@ For terms of use, see http://www.unicode.org/copyright.html воламо варай вашо + вальбири волоф калмыцкий коса @@ -550,7 +556,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -737,7 +743,6 @@ For terms of use, see http://www.unicode.org/copyright.html Ангилья Албания Армения - Нидерландские Антильские о-ва Ангола Антарктида Аргентина @@ -834,7 +839,7 @@ For terms of use, see http://www.unicode.org/copyright.html Гуам Гвинея-Бисау Гайана - Гонконг (особый район) + Гонконг (специальный административный район) Гонконг о-ва Херд и Макдональд Гондурас @@ -845,7 +850,7 @@ For terms of use, see http://www.unicode.org/copyright.html Индонезия Ирландия Израиль - О-в Мэн + о-в Мэн Индия Британская территория в Индийском океане Ирак @@ -890,7 +895,7 @@ For terms of use, see http://www.unicode.org/copyright.html Мали Мьянма (Бирма) Монголия - Макао (особый район) + Макао (специальный административный район) Макао Северные Марианские о-ва Мартиника @@ -924,7 +929,7 @@ For terms of use, see http://www.unicode.org/copyright.html Пакистан Польша Сен-Пьер и Микелон - Питкерн + острова Питкэрн Пуэрто-Рико Палестинские территории Палестина @@ -944,7 +949,7 @@ For terms of use, see http://www.unicode.org/copyright.html Судан Швеция Сингапур - О-в Св. Елены + о-в Св. Елены Словения Шпицберген и Ян-Майен Словакия @@ -960,7 +965,7 @@ For terms of use, see http://www.unicode.org/copyright.html Сирия Свазиленд Тристан-да-Кунья - О-ва Тёркс и Кайкос + о-ва Тёркс и Кайкос Чад Французские Южные Территории Того @@ -968,6 +973,7 @@ For terms of use, see http://www.unicode.org/copyright.html Таджикистан Токелау Восточный Тимор + Тимор-Лесте Туркменистан Тунис Тонга @@ -1047,6 +1053,9 @@ For terms of use, see http://www.unicode.org/copyright.html Сортировка чисел Эффективность сортировки валюта + Система времени (12 или 24) + стиль перевода строки + система мер цифры Часовой пояс Вариант региональных настроек @@ -1054,121 +1063,131 @@ For terms of use, see http://www.unicode.org/copyright.html Частное - арабско-индийские цифры - расширенная система арабско-индийских цифр - армянские цифры - армянские цифры в нижнем регистре - балийские цифры - бенгальские цифры - Сортировка традиционного китайского языка – Big5 - цифры брахми - буддийский календарь - цифры чакма - чамские цифры - китайский календарь - Коптский календарь - календарь данги - цифры деванагари - словарный порядок сортировки - cтандартная сортировка Unicode - европейские правила сортировки - эфиопские цифры - эфиопский календарь - Эфиопский календарь "Амете Алем" - Символы обозначения финансовых показателей - полноширинные цифры - упрощенный китайский - GB2312 - грузинские цифры - григорианский календарь - греческие цифры - греческие цифры в нижнем регистре - цифры гуджарати - цифры гурмукхи - китайские десятичные цифры - китайские упрощенные цифры - китайские упрощенные цифры (финансы) - китайские традиционные цифры - китайские традиционные цифры (финансы) - цифры на иврите - еврейский календарь - Полная сортировка - Национальный календарь Индии - исламский календарь - Исламский гражданский календарь - исламский календарь (Саудовская Аравия) - исламский календарь (табличный, астрономическая эпоха) - исламский календарь (Умм аль-Кура) - календарь ISO-8601 - японский календарь - яванские цифры - японские цифры - японские цифры (финансы) - цифры кайя ли - кхмерские цифры - цифры каннада - цифры тай там хора - цифры тай там там - лаосские цифры - современные арабские цифры - цифры лепча - цифры лимбу - Приоритетная сортировка слов в нижнем регистре - цифры малаялам - Монгольские цифры - цифры манипури - бирманские цифры - бирманские шанские цифры - Обозначения цифр коренного населения - цифры нко - Сортировка по акцентам в обычном порядке - Сортировка по стандартным правилам - Сортировка вне зависимости от регистра - Отдельная сортировка каны - Сортировка без нормализации - Отдельная сортировка числовых значений - Сортировка символов - цифры ол-чики - цифры ория - цифры османья - персидский календарь - порядок телефонной книги - Фонетический порядок сортировки - пиньинь - Сортировка только по символам, обозначающим разрядность - Сортировка по акцентам/регистрам/длине строки/кане - реформированный порядок сортировки - китайский календарь - римские цифры - римские цифры в нижнем регистре - цифры саураштра - поиск - Поиск по первой согласной хангыль - Сортировка по акцентам - Сортировка без учета символов - цифры шарада - цифры сора-сомпенг - стандартная сортировка - по чертам - суданские цифры - цифры такри - цифры новой тай-лю - тамильские традиционные цифры - тамильские цифры - цифры телугу - Сортировка по акцентам/регистру/длине строки - тайские цифры - тибетские цифры - традиционный порядок - Традиционная система нумерации - сортировка по ключам, затем по чертам - Приоритетная сортировка слов в верхнем регистре - Цифры языка вай - Сортировка по акцентам в обратном порядке - Сортировка с учетом регистра - Сортировка каны другим способом - Сортировка нормализованных символов Unicode - Сортировка численных значений - чжуинь + буддийский календарь + китайский календарь + Коптский календарь + календарь данги + эфиопский календарь + Эфиопский календарь "Амете Алем" + григорианский календарь + еврейский календарь + Национальный календарь Индии + исламский календарь + Исламский гражданский календарь + исламский календарь (Саудовская Аравия) + исламский календарь (табличный, астрономическая эпоха) + исламский календарь (Умм аль-Кура) + календарь ISO-8601 + японский календарь + персидский календарь + китайский календарь + Сортировка символов + Сортировка без учета символов + Сортировка по акцентам в обычном порядке + Сортировка по акцентам в обратном порядке + Приоритетная сортировка слов в нижнем регистре + Сортировка по стандартным правилам + Приоритетная сортировка слов в верхнем регистре + Сортировка вне зависимости от регистра + Сортировка с учетом регистра + Отдельная сортировка каны + Сортировка каны другим способом + Сортировка традиционного китайского языка – Big5 + словарный порядок сортировки + cтандартная сортировка Unicode + европейские правила сортировки + упрощенный китайский - GB2312 + порядок телефонной книги + Фонетический порядок сортировки + пиньинь + реформированный порядок сортировки + поиск + Поиск по первой согласной хангыль + стандартная сортировка + по чертам + традиционный порядок + сортировка по ключам, затем по чертам + чжуинь + Сортировка без нормализации + Сортировка нормализованных символов Unicode + Отдельная сортировка числовых значений + Сортировка численных значений + Полная сортировка + Сортировка только по символам, обозначающим разрядность + Сортировка по акцентам/регистрам/длине строки/кане + Сортировка по акцентам + Сортировка по акцентам/регистру/длине строки + 12-часовая система (0-11) + 12-часовая система (1-12) + 24-часовая система (0-23) + 24-часовая система (1-24) + мягкий перевод строки + обычный перевод строки + жесткий перевод строки + метрическая система + британская система мер + американская система мер + арабско-индийские цифры + расширенная система арабско-индийских цифр + армянские цифры + армянские цифры в нижнем регистре + балийские цифры + бенгальские цифры + цифры брахми + цифры чакма + чамские цифры + цифры деванагари + эфиопские цифры + Символы обозначения финансовых показателей + полноширинные цифры + грузинские цифры + греческие цифры + греческие цифры в нижнем регистре + цифры гуджарати + цифры гурмукхи + китайские десятичные цифры + китайские упрощенные цифры + китайские упрощенные цифры (финансы) + китайские традиционные цифры + китайские традиционные цифры (финансы) + цифры на иврите + яванские цифры + японские цифры + японские цифры (финансы) + цифры кайя ли + кхмерские цифры + цифры каннада + цифры тай там хора + цифры тай там там + лаосские цифры + современные арабские цифры + цифры лепча + цифры лимбу + цифры малаялам + Монгольские цифры + цифры манипури + бирманские цифры + бирманские шанские цифры + Обозначения цифр коренного населения + цифры нко + цифры ол-чики + цифры ория + цифры османья + римские цифры + римские цифры в нижнем регистре + цифры саураштра + цифры шарада + цифры сора-сомпенг + суданские цифры + цифры такри + цифры новой тай-лю + тамильские традиционные цифры + тамильские цифры + цифры телугу + тайские цифры + тибетские цифры + Традиционная система нумерации + Цифры языка вай Палата географических названий США @@ -1604,8 +1623,8 @@ For terms of use, see http://www.unicode.org/copyright.html E, d y G LLL y G - d MMM y G - E, d MMM y G + d MMM y 'г'. G + E, d MMM y 'г'. G h a H h:mm a @@ -1618,6 +1637,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d MMM ccc, d MMM + d MMMM mm:ss y G y G @@ -1625,8 +1645,8 @@ For terms of use, see http://www.unicode.org/copyright.html dd.MM.y G E, dd.MM.y G LLL y G - d MMM y G - E, d MMM y G + d MMM y 'г'. G + E, d MMM y 'г'. G LLLL y G QQQ y G QQQQ y 'г'. G @@ -1680,7 +1700,7 @@ For terms of use, see http://www.unicode.org/copyright.html E, dd.MM – E, dd.MM - LLL-LLL + LLL–LLL d–d MMM @@ -1737,11 +1757,11 @@ For terms of use, see http://www.unicode.org/copyright.html янв. февр. - марта + мар. апр. мая - июня - июля + июн. + июл. авг. сент. окт. @@ -1863,13 +1883,13 @@ For terms of use, see http://www.unicode.org/copyright.html - Вс - Пн - Вт - Ср - Чт - Пт - Сб + вс + пн + вт + ср + чт + пт + сб В @@ -1890,13 +1910,13 @@ For terms of use, see http://www.unicode.org/copyright.html сб - Воскресенье - Понедельник - Вторник - Среда - Четверг - Пятница - Суббота + воскресенье + понедельник + вторник + среда + четверг + пятница + суббота @@ -1945,25 +1965,75 @@ For terms of use, see http://www.unicode.org/copyright.html - AM - PM + полночь + ДП + полдень + ПП + утра + дня + вечера + ночи - AM + полночь + ДП полдень - PM + ПП + утра + дня + вечера + ночи - AM + полночь + ДП полдень - PM + ПП + утра + дня + вечера + ночи + + + + + полн. + ДП + полд. + ПП + утро + день + веч. + ночь + + + полн. + ДП + полд. + ПП + утро + день + веч. + ночь + + + полночь + ДП + полдень + ПП + утро + день + вечер + ночь - до н. э. - н. э. + до Рождества Христова + до нашей эры + от Рождества Христова + нашей эры до н. э. @@ -2047,7 +2117,7 @@ For terms of use, see http://www.unicode.org/copyright.html E HH:mm E h:mm:ss a E HH:mm:ss - y G + y 'г'. G LLL y G d MMM y 'г'. G E, d MMM y 'г'. G @@ -2068,17 +2138,17 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d MMM ccc, d MMM + d MMMM mm:ss y - LLLL y MM.y dd.MM.y ccc, d.MM.y 'г'. MM.y - LLL y + LLL y 'г'. d MMM y 'г'. E, d MMM y 'г'. - LLLL y + LLLL y 'г'. QQQ y 'г'. QQQQ y 'г'. @@ -2134,18 +2204,18 @@ For terms of use, see http://www.unicode.org/copyright.html E, dd.MM – E, dd.MM - LLL-LLL + LLL – LLL d–d MMM d MMM – d MMM - ccc, d - E, d MMM - ccc, d MMM – ccc, d MMM + E, d MMM – E, d MMM + E, d MMM – E, d MMM - LLLL–LLLL + LLLL – LLLL y–y @@ -2417,238 +2487,238 @@ For terms of use, see http://www.unicode.org/copyright.html - Эпоха Тайка (645-650) - Эпоха Хакути (650-671) - Эпоха Хакухо (672-686) - Эпоха Сючё (686-701) - Эпоха Тайхо (701-704) - Эпоха Кёюн (704-708) - Эпоха Вадо (708-715) - Эпоха Рэйки (715-717) - Эпоха Ёро (717-724) - Эпоха Дзинки (724-729) - Эпоха Темпьё (729-749) - Эпоха Темпьё (749-749) + Эпоха Тайка (645–650) + Эпоха Хакути (650–671) + Эпоха Хакухо (672–686) + Эпоха Сючё (686–701) + Эпоха Тайхо (701–704) + Эпоха Кёюн (704–708) + Эпоха Вадо (708–715) + Эпоха Рэйки (715–717) + Эпоха Ёро (717–724) + Эпоха Дзинки (724–729) + Эпоха Темпьё (729–749) + Эпоха Темпьё (749–749) Эпоха Темпьё-Сьохо (749-757) Эпоха Темпьё-Ходзи (757-765) Эпоха Темпьё-Ходзи (765-767) Эпоха Джинго-Кёюн (767-770) - Эпоха Хоки (770-780) - Эпоха Теньё (781-782) - Эпоха Енряку (782-806) - Эпоха Дайдо (806-810) - Эпоха Конин (810-824) - Эпоха Тентьо (824-834) - Эпоха Шова (834-848) - Эпоха Кайо (848-851) - Эпоха Ниндзю (851-854) - Эпоха Сайко (854-857) - Эпоха Теннан (857-859) - Эпоха Йоган (859-877) - Эпоха Генкей (877-885) - Эпоха Нинна (885-889) - Эпоха Кампьё (889-898) - Эпоха Сьотай (898-901) - Эпоха Энги (901-923) - Эпоха Ентьо (923-931) - Эпоха Сьёхэй (931-938) - Эпоха Тенгьо (938-947) - Эпоха Тенрияку (947-957) - Эпоха Тентоку (957-961) - Эпоха Ова (961-964) - Эпоха Кохо (964-968) - Эпоха Анна (968-970) - Эпоха Тенроку (970-973) - Эпоха Теньен (973-976) - Эпоха Дзьоген (976-978) - Эпоха Тенген (978-983) - Эпоха Ейкан (983-985) - Эпоха Канна (985-987) - Эпоха Ейен (987-989) - Эпоха Ейсо (989-990) - Эпоха Сёряку (990-995) - Эпоха Тётоку (995-999) - Эпоха Тёхо (999-1004) - Эпоха Канко (1004-1012) - Эпоха Тёва (1012-1017) - Эпоха Каннин (1017-1021) - Эпоха Дзиан (1021-1024) - Эпоха Мандзю (1024-1028) - Эпоха Тёгэн (1028-1037) - Эпоха Тёряку (1037-1040) - Эпоха Тёкю (1040-1044) - Эпоха Катоку (1044-1046) - Эпоха Эйсо (1046-1053) - Эпоха Тэнги (1053-1058) - Эпоха Кохэй (1058-1065) - Эпоха Дзиряку (1065-1069) - Эпоха Энкю (1069-1074) - Эпоха Сёхо (1074-1077) - Эпоха Сёряку (1077-1081) - Эпоха Эйхо (1081-1084) - Эпоха Отоку (1084-1087) - Эпоха Кандзи (1087-1094) - Эпоха Кахо (1094-1096) - Эпоха Эйтё (1096-1097) - Эпоха Сётоку (1097-1099) - Эпоха Кова (1099-1104) - Эпоха Тёдзи (1104-1106) - Эпоха Касё (1106-1108) - Эпоха Тэннин (1108-1110) - Эпоха Тэнъэй (1110-1113) - Эпоха Эйкю (1113-1118) - Эпоха Гэнъэй (1118-1120) - Эпоха Хоан (1120-1124) - Эпоха Тэндзи (1124-1126) - Эпоха Дайдзи (1126-1131) - Эпоха Тэнсё (1131-1132) - Эпоха Тёсё (1132-1135) - Эпоха Хоэн (1135-1141) - Эпоха Эйдзи (1141-1142) - Эпоха Кодзи (1142-1144) - Эпоха Тэнё (1144-1145) - Эпоха Кюан (1145-1151) - Эпоха Нимпэй (1151-1154) - Эпоха Кюдзю (1154-1156) - Эпоха Хогэн (1156-1159) - Эпоха Хэйдзи (1159-1160) - Эпоха Эйряку (1160-1161) - Эпоха Охо (1161-1163) - Эпоха Тёкан (1163-1165) - Эпоха Эйман (1165-1166) - Эпоха Нинъан (1166-1169) - Эпоха Као (1169-1171) - Эпоха Сёан (1171-1175) - Эпоха Ангэн (1175-1177) - Эпоха Дзисё (1177-1181) - Эпоха Ёва (1181-1182) - Эпоха Дзюэй (1182-1184) - Эпоха Гэнрюку (1184-1185) - Эпоха Бундзи (1185-1190) - Эпоха Кэнкю (1190-1199) - Эпоха Сёдзи (1199-1201) - Эпоха Кэннин (1201-1204) - Эпоха Гэнкю (1204-1206) - Эпоха Кэнъэй (1206-1207) - Эпоха Сёгэн (1207-1211) - Эпоха Кэнряку (1211-1213) - Эпоха Кэмпо (1213-1219) - Эпоха Сёкю (1219-1222) - Эпоха Дзёо (1222-1224) - Эпоха Гэннин (1224-1225) - Эпоха Кароку (1225-1227) - Эпоха Антэй (1227-1229) - Эпоха Канки (1229-1232) - Эпоха Дзёэй (1232-1233) - Эпоха Тэмпуку (1233-1234) - Эпоха Бунряку (1234-1235) - Эпоха Катэй (1235-1238) - Эпоха Рякунин (1238-1239) - Эпоха Энъо (1239-1240) - Эпоха Ниндзи (1240-1243) - Эпоха Кангэн (1243-1247) - Эпоха Ходзи (1247-1249) - Эпоха Кэнтё (1249-1256) - Эпоха Когэн (1256-1257) - Эпоха Сёка (1257-1259) - Эпоха Сёгэн (1259-1260) - Эпоха Бунъо (1260-1261) - Эпоха Котё (1261-1264) - Эпоха Бунъэй (1264-1275) - Эпоха Кэндзи (1275-1278) - Эпоха Коан (1278-1288) - Эпоха Сёо (1288-1293) - Эпоха Эйнин (1293-1299) - Эпоха Сёан (1299-1302) - Эпоха Кэнгэн (1302-1303) - Эпоха Кагэн (1303-1306) - Эпоха Токудзи (1306-1308) - Эпоха Энкэй (1308-1311) - Эпоха Отё (1311-1312) - Эпоха Сёва (1312-1317) - Эпоха Бумпо (1317-1319) - Эпоха Гэно (1319-1321) - Эпоха Гэнкё (1321-1324) - Эпоха Сётю (1324-1326) - Эпоха Карэки (1326-1329) - Эпоха Гэнтоку (1329-1331) - Эпоха Гэнко (1331-1334) - Эпоха Кэмму (1334-1336) - Эпоха Энгэн (1336-1340) - Эпоха Кококу (1340-1346) - Эпоха Сёхэй (1346-1370) - Эпоха Кэнтоку (1370-1372) - Эпоха Бунтю (1372-1375) - Эпоха Иэндзю (1375-1379) - Эпоха Коряку (1379-1381) - Эпоха Кова (1381-1384) - Эпоха Гэнтю (1384-1392) - Эпоха Мэйтоку (1384-1387) - Эпоха Какэй (1387-1389) - Эпоха Коо (1389-1390) - Эпоха Мэйтоку (1390-1394) - Эпоха Оэй (1394-1428) - Эпоха Сётё (1428-1429) - Эпоха Эйкё (1429-1441) - Эпоха Какицу (1441-1444) - Эпоха Банъан (1444-1449) - Эпоха Хотоку (1449-1452) - Эпоха Кётоку (1452-1455) - Эпоха Косё (1455-1457) - Эпоха Тёроку (1457-1460) - Эпоха Кансё (1460-1466) - Эпоха Бунсё (1466-1467) - Эпоха Онин (1467-1469) - Эпоха Буммэй (1469-1487) - Эпоха Тёкё (1487-1489) - Эпоха Энтоку (1489-1492) - Эпоха Мэйо (1492-1501) - Эпоха Бунки (1501-1504) - Эпоха Эйсё (1504-1521) - Эпоха Тайэй (1521-1528) - Эпоха Кёроку (1528-1532) - Эпоха Тэммон (1532-1555) - Эпоха Кодзи (1555-1558) - Эпоха Эйроку (1558-1570) - Эпоха Гэнки (1570-1573) - Эпоха Тэнсё (1573-1592) - Эпоха Бунроку (1592-1596) - Эпоха Кэйтё (1596-1615) - Эпоха Гэнва (1615-1624) - Эпоха Канъэй (1624-1644) - Эпоха Сёхо (1644-1648) - Эпоха Кэйан (1648-1652) - Эпоха Сё (1652-1655) - Эпоха Мэйряку (1655-1658) - Эпоха Мандзи (1658-1661) - Эпоха Камбун (1661-1673) - Эпоха Эмпо (1673-1681) - Эпоха Тэнва (1681-1684) - Эпоха Дзёкё (1684-1688) - Эпоха Гэнроку (1688-1704) - Эпоха Хоэй (1704-1711) - Эпоха Сётоку (1711-1716) - Эпоха Кёхо (1716-1736) - Эпоха Гэмбун (1736-1741) - Эпоха Кампо (1741-1744) - Эпоха Энкё (1744-1748) - Эпоха Канъэн (1748-1751) - Эпоха Хоряку (1751-1764) - Эпоха Мэйва (1764-1772) - Эпоха Анъэй (1772-1781) - Эпоха Тэммэй (1781-1789) - Эпоха Кансэй (1789-1801) - Эпоха Кёва (1801-1804) - Эпоха Бунка (1804-1818) - Эпоха Бунсэй (1818-1830) - Эпоха Тэмпо (1830-1844) - Эпоха Кока (1844-1848) - Эпоха Каэй (1848-1854) - Эпоха Ансэй (1854-1860) - Эпоха Манъэн (1860-1861) - Эпоха Бункю (1861-1864) - Эпоха Гендзи (1864-1865) - Эпоха Кейо (1865-1868) + Эпоха Хоки (770–780) + Эпоха Теньё (781–782) + Эпоха Енряку (782–806) + Эпоха Дайдо (806–810) + Эпоха Конин (810–824) + Эпоха Тентьо (824–834) + Эпоха Шова (834–848) + Эпоха Кайо (848–851) + Эпоха Ниндзю (851–854) + Эпоха Сайко (854–857) + Эпоха Теннан (857–859) + Эпоха Йоган (859–877) + Эпоха Генкей (877–885) + Эпоха Нинна (885–889) + Эпоха Кампьё (889–898) + Эпоха Сьотай (898–901) + Эпоха Энги (901–923) + Эпоха Ентьо (923–931) + Эпоха Сьёхэй (931–938) + Эпоха Тенгьо (938–947) + Эпоха Тенрияку (947–957) + Эпоха Тентоку (957–961) + Эпоха Ова (961–964) + Эпоха Кохо (964–968) + Эпоха Анна (968–970) + Эпоха Тенроку (970–973) + Эпоха Теньен (973–976) + Эпоха Дзьоген (976–978) + Эпоха Тенген (978–983) + Эпоха Ейкан (983–985) + Эпоха Канна (985–987) + Эпоха Ейен (987–989) + Эпоха Ейсо (989–990) + Эпоха Сёряку (990–995) + Эпоха Тётоку (995–999) + Эпоха Тёхо (999–1004) + Эпоха Канко (1004–1012) + Эпоха Тёва (1012–1017) + Эпоха Каннин (1017–1021) + Эпоха Дзиан (1021–1024) + Эпоха Мандзю (1024–1028) + Эпоха Тёгэн (1028–1037) + Эпоха Тёряку (1037–1040) + Эпоха Тёкю (1040–1044) + Эпоха Катоку (1044–1046) + Эпоха Эйсо (1046–1053) + Эпоха Тэнги (1053–1058) + Эпоха Кохэй (1058–1065) + Эпоха Дзиряку (1065–1069) + Эпоха Энкю (1069–1074) + Эпоха Сёхо (1074–1077) + Эпоха Сёряку (1077–1081) + Эпоха Эйхо (1081–1084) + Эпоха Отоку (1084–1087) + Эпоха Кандзи (1087–1094) + Эпоха Кахо (1094–1096) + Эпоха Эйтё (1096–1097) + Эпоха Сётоку (1097–1099) + Эпоха Кова (1099–1104) + Эпоха Тёдзи (1104–1106) + Эпоха Касё (1106–1108) + Эпоха Тэннин (1108–1110) + Эпоха Тэнъэй (1110–1113) + Эпоха Эйкю (1113–1118) + Эпоха Гэнъэй (1118–1120) + Эпоха Хоан (1120–1124) + Эпоха Тэндзи (1124–1126) + Эпоха Дайдзи (1126–1131) + Эпоха Тэнсё (1131–1132) + Эпоха Тёсё (1132–1135) + Эпоха Хоэн (1135–1141) + Эпоха Эйдзи (1141–1142) + Эпоха Кодзи (1142–1144) + Эпоха Тэнё (1144–1145) + Эпоха Кюан (1145–1151) + Эпоха Нимпэй (1151–1154) + Эпоха Кюдзю (1154–1156) + Эпоха Хогэн (1156–1159) + Эпоха Хэйдзи (1159–1160) + Эпоха Эйряку (1160–1161) + Эпоха Охо (1161–1163) + Эпоха Тёкан (1163–1165) + Эпоха Эйман (1165–1166) + Эпоха Нинъан (1166–1169) + Эпоха Као (1169–1171) + Эпоха Сёан (1171–1175) + Эпоха Ангэн (1175–1177) + Эпоха Дзисё (1177–1181) + Эпоха Ёва (1181–1182) + Эпоха Дзюэй (1182–1184) + Эпоха Гэнрюку (1184–1185) + Эпоха Бундзи (1185–1190) + Эпоха Кэнкю (1190–1199) + Эпоха Сёдзи (1199–1201) + Эпоха Кэннин (1201–1204) + Эпоха Гэнкю (1204–1206) + Эпоха Кэнъэй (1206–1207) + Эпоха Сёгэн (1207–1211) + Эпоха Кэнряку (1211–1213) + Эпоха Кэмпо (1213–1219) + Эпоха Сёкю (1219–1222) + Эпоха Дзёо (1222–1224) + Эпоха Гэннин (1224–1225) + Эпоха Кароку (1225–1227) + Эпоха Антэй (1227–1229) + Эпоха Канки (1229–1232) + Эпоха Дзёэй (1232–1233) + Эпоха Тэмпуку (1233–1234) + Эпоха Бунряку (1234–1235) + Эпоха Катэй (1235–1238) + Эпоха Рякунин (1238–1239) + Эпоха Энъо (1239–1240) + Эпоха Ниндзи (1240–1243) + Эпоха Кангэн (1243–1247) + Эпоха Ходзи (1247–1249) + Эпоха Кэнтё (1249–1256) + Эпоха Когэн (1256–1257) + Эпоха Сёка (1257–1259) + Эпоха Сёгэн (1259–1260) + Эпоха Бунъо (1260–1261) + Эпоха Котё (1261–1264) + Эпоха Бунъэй (1264–1275) + Эпоха Кэндзи (1275–1278) + Эпоха Коан (1278–1288) + Эпоха Сёо (1288–1293) + Эпоха Эйнин (1293–1299) + Эпоха Сёан (1299–1302) + Эпоха Кэнгэн (1302–1303) + Эпоха Кагэн (1303–1306) + Эпоха Токудзи (1306–1308) + Эпоха Энкэй (1308–1311) + Эпоха Отё (1311–1312) + Эпоха Сёва (1312–1317) + Эпоха Бумпо (1317–1319) + Эпоха Гэно (1319–1321) + Эпоха Гэнкё (1321–1324) + Эпоха Сётю (1324–1326) + Эпоха Карэки (1326–1329) + Эпоха Гэнтоку (1329–1331) + Эпоха Гэнко (1331–1334) + Эпоха Кэмму (1334–1336) + Эпоха Энгэн (1336–1340) + Эпоха Кококу (1340–1346) + Эпоха Сёхэй (1346–1370) + Эпоха Кэнтоку (1370–1372) + Эпоха Бунтю (1372–1375) + Эпоха Иэндзю (1375–1379) + Эпоха Коряку (1379–1381) + Эпоха Кова (1381–1384) + Эпоха Гэнтю (1384–1392) + Эпоха Мэйтоку (1384–1387) + Эпоха Какэй (1387–1389) + Эпоха Коо (1389–1390) + Эпоха Мэйтоку (1390–1394) + Эпоха Оэй (1394–1428) + Эпоха Сётё (1428–1429) + Эпоха Эйкё (1429–1441) + Эпоха Какицу (1441–1444) + Эпоха Банъан (1444–1449) + Эпоха Хотоку (1449–1452) + Эпоха Кётоку (1452–1455) + Эпоха Косё (1455–1457) + Эпоха Тёроку (1457–1460) + Эпоха Кансё (1460–1466) + Эпоха Бунсё (1466–1467) + Эпоха Онин (1467–1469) + Эпоха Буммэй (1469–1487) + Эпоха Тёкё (1487–1489) + Эпоха Энтоку (1489–1492) + Эпоха Мэйо (1492–1501) + Эпоха Бунки (1501–1504) + Эпоха Эйсё (1504–1521) + Эпоха Тайэй (1521–1528) + Эпоха Кёроку (1528–1532) + Эпоха Тэммон (1532–1555) + Эпоха Кодзи (1555–1558) + Эпоха Эйроку (1558–1570) + Эпоха Гэнки (1570–1573) + Эпоха Тэнсё (1573–1592) + Эпоха Бунроку (1592–1596) + Эпоха Кэйтё (1596–1615) + Эпоха Гэнва (1615–1624) + Эпоха Канъэй (1624–1644) + Эпоха Сёхо (1644–1648) + Эпоха Кэйан (1648–1652) + Эпоха Сё (1652–1655) + Эпоха Мэйряку (1655–1658) + Эпоха Мандзи (1658–1661) + Эпоха Камбун (1661–1673) + Эпоха Эмпо (1673–1681) + Эпоха Тэнва (1681–1684) + Эпоха Дзёкё (1684–1688) + Эпоха Гэнроку (1688–1704) + Эпоха Хоэй (1704–1711) + Эпоха Сётоку (1711–1716) + Эпоха Кёхо (1716–1736) + Эпоха Гэмбун (1736–1741) + Эпоха Кампо (1741–1744) + Эпоха Энкё (1744–1748) + Эпоха Канъэн (1748–1751) + Эпоха Хоряку (1751–1764) + Эпоха Мэйва (1764–1772) + Эпоха Анъэй (1772–1781) + Эпоха Тэммэй (1781–1789) + Эпоха Кансэй (1789–1801) + Эпоха Кёва (1801–1804) + Эпоха Бунка (1804–1818) + Эпоха Бунсэй (1818–1830) + Эпоха Тэмпо (1830–1844) + Эпоха Кока (1844–1848) + Эпоха Каэй (1848–1854) + Эпоха Ансэй (1854–1860) + Эпоха Манъэн (1860–1861) + Эпоха Бункю (1861–1864) + Эпоха Гендзи (1864–1865) + Эпоха Кейо (1865–1868) Эпоха Мэйдзи Эпоха Тайсьо Сьова @@ -2745,12 +2815,12 @@ For terms of use, see http://www.unicode.org/copyright.html - Эра + эра - Год + год в прошлом году - в этому году + в этом году в следующем году через {0} год @@ -2796,7 +2866,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Квартал + квартал + последний квартал + текущий квартал + следующий квартал через {0} квартал через {0} квартала @@ -2812,6 +2885,9 @@ For terms of use, see http://www.unicode.org/copyright.html кв. + последний кв. + текущий кв. + следующий кв. через {0} кв. через {0} кв. @@ -2827,6 +2903,9 @@ For terms of use, see http://www.unicode.org/copyright.html кв. + посл. кв. + тек. кв. + след. кв. +{0} кв. +{0} кв. @@ -2841,7 +2920,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Месяц + месяц в прошлом месяце в этом месяце в следующем месяце @@ -2889,7 +2968,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Неделя + неделя на прошлой неделе на этой неделе на следующей неделе @@ -2937,7 +3016,7 @@ For terms of use, see http://www.unicode.org/copyright.html - День + день позавчера вчера сегодня @@ -2987,7 +3066,7 @@ For terms of use, see http://www.unicode.org/copyright.html - День недели + день недели в прошлое воскресенье @@ -3098,7 +3177,7 @@ For terms of use, see http://www.unicode.org/copyright.html ДП/ПП - Час + час через {0} час через {0} часа @@ -3143,7 +3222,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Минута + минута через {0} минуту через {0} минуты @@ -3188,7 +3267,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Секунда + секунда сейчас через {0} секунду @@ -3234,7 +3313,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Часовой пояс + часовой пояс @@ -4112,6 +4191,9 @@ For terms of use, see http://www.unicode.org/copyright.html Порт-Морсби + + Бугенвиль + Манила @@ -4196,6 +4278,9 @@ For terms of use, see http://www.unicode.org/copyright.html Иркутск + + Чита + Якутск @@ -4214,6 +4299,9 @@ For terms of use, see http://www.unicode.org/copyright.html Магадан + + Среднеколымск + Петропавловск-Камчатский @@ -4585,15 +4673,15 @@ For terms of use, see http://www.unicode.org/copyright.html - время Апиа, Самоа - Стандартное время Апиа, Самоа - летнее время Апиа, Самоа + Апиа + Апиа, стандартное время + Апиа, летнее время Актау время - Актау стандартное время + Актау, стандартное время Актау летнее время @@ -4829,7 +4917,7 @@ For terms of use, see http://www.unicode.org/copyright.html - время в Калининграде и Минске + Минское время @@ -5606,6 +5694,58 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 тыс'.' ¤ + 0 тыс'.' ¤ + 0 тыс'.' ¤ + 0 тыс'.' ¤ + 00 тыс'.' ¤ + 00 тыс'.' ¤ + 00 тыс'.' ¤ + 00 тыс'.' ¤ + 000 тыс'.' ¤ + 000 тыс'.' ¤ + 000 тыс'.' ¤ + 000 тыс'.' ¤ + 0 млн ¤ + 0 млн ¤ + 0 млн ¤ + 0 млн ¤ + 00 млн ¤ + 00 млн ¤ + 00 млн ¤ + 00 млн ¤ + 000 млн ¤ + 000 млн ¤ + 000 млн ¤ + 000 млн ¤ + 0 млрд ¤ + 0 млрд ¤ + 0 млрд ¤ + 0 млрд ¤ + 00 млрд ¤ + 00 млрд ¤ + 00 млрд ¤ + 00 млрд ¤ + 000 млрд ¤ + 000 млрд ¤ + 000 млрд ¤ + 000 млрд ¤ + 0 трлн ¤ + 0 трлн ¤ + 0 трлн ¤ + 0 трлн ¤ + 00 трлн ¤ + 00 трлн ¤ + 00 трлн ¤ + 00 трлн ¤ + 000 трлн ¤ + 000 трлн ¤ + 000 трлн ¤ + 000 трлн ¤ + + {0} {1} {0} {1} {0} {1} @@ -5669,6 +5809,7 @@ For terms of use, see http://www.unicode.org/copyright.html ангольских кванз ангольской кванзы AOA + Kz Ангольская кванза (1977–1990) @@ -5743,6 +5884,7 @@ For terms of use, see http://www.unicode.org/copyright.html конвертируемых марок Боснии и Герцеговины конвертируемой марки Боснии и Герцеговины BAM + KM Барбадосский доллар @@ -5823,6 +5965,7 @@ For terms of use, see http://www.unicode.org/copyright.html боливийских боливиано боливийского боливиано BOB + Bs Боливийское песо @@ -5881,6 +6024,7 @@ For terms of use, see http://www.unicode.org/copyright.html ботсванских пул ботсванской пулы BWP + P Белорусский рубль (1994–1999) @@ -5989,6 +6133,7 @@ For terms of use, see http://www.unicode.org/copyright.html кубинских конвертируемых песо кубинского конвертируемого песо CUC + $ Кубинское песо @@ -6017,6 +6162,7 @@ For terms of use, see http://www.unicode.org/copyright.html чешских крон чешской кроны CZK + Восточногерманская марка @@ -6039,6 +6185,7 @@ For terms of use, see http://www.unicode.org/copyright.html датских крон датской кроны DKK + kr Доминиканское песо @@ -6073,6 +6220,7 @@ For terms of use, see http://www.unicode.org/copyright.html египетских фунтов египетского фунта EGP + Накфа @@ -6127,16 +6275,17 @@ For terms of use, see http://www.unicode.org/copyright.html фунтов Фолклендских островов фунта Фолклендских островов FKP + £ Французский франк - Английский фунт - английский фунт - английских фунта - английских фунтов - английского фунта + Английский фунт стерлингов + английский фунт стерлингов + английских фунта стерлингов + английских фунтов стерлингов + английского фунта стерлингов £ £ @@ -6150,6 +6299,7 @@ For terms of use, see http://www.unicode.org/copyright.html грузинских лари грузинского лари GEL + Ганский седи (1979–2007) @@ -6186,6 +6336,7 @@ For terms of use, see http://www.unicode.org/copyright.html гвинейских франков гвинейского франка GNF + FG Гвинейская сили @@ -6203,6 +6354,7 @@ For terms of use, see http://www.unicode.org/copyright.html гватемальских кетсалей гватемальского кетсаля GTQ + Q Эскудо Португальской Гвинеи @@ -6235,6 +6387,7 @@ For terms of use, see http://www.unicode.org/copyright.html гондурасских лемпир гондурасской лемпиры HNL + L Хорватский динар @@ -6246,6 +6399,7 @@ For terms of use, see http://www.unicode.org/copyright.html хорватских кун хорватской куны HRK + kn Гаитянский гурд @@ -6262,6 +6416,7 @@ For terms of use, see http://www.unicode.org/copyright.html венгерских форинтов венгерского форинта HUF + Ft Индонезийская рупия @@ -6270,6 +6425,7 @@ For terms of use, see http://www.unicode.org/copyright.html индонезийских рупий индонезийской рупии IDR + Rp Ирландский фунт @@ -6318,6 +6474,7 @@ For terms of use, see http://www.unicode.org/copyright.html исландских крон исландской кроны ISK + kr Итальянская лира @@ -6380,6 +6537,7 @@ For terms of use, see http://www.unicode.org/copyright.html франков Коморских островов франка Коморских островов KMF + CF Северокорейская вона @@ -6388,6 +6546,7 @@ For terms of use, see http://www.unicode.org/copyright.html северокорейских вон северокорейской воны KPW + Южнокорейская вона @@ -6440,6 +6599,7 @@ For terms of use, see http://www.unicode.org/copyright.html ливанских фунтов ливанского фунта LBP + Шри-Ланкийская рупия @@ -6448,6 +6608,7 @@ For terms of use, see http://www.unicode.org/copyright.html шри-ланкийских рупий шри-ланкийской рупии LKR + Rs Либерийский доллар @@ -6526,6 +6687,7 @@ For terms of use, see http://www.unicode.org/copyright.html малагасийских ариари малагасийского ариари MGA + Ar Малагасийский франк @@ -6548,6 +6710,7 @@ For terms of use, see http://www.unicode.org/copyright.html мьянманских кьятов мьянманского кьята MMK + K Монгольский тугрик @@ -6587,6 +6750,7 @@ For terms of use, see http://www.unicode.org/copyright.html маврикийских рупий маврикийской рупии MUR + Rs Мальдивская руфия @@ -6626,6 +6790,7 @@ For terms of use, see http://www.unicode.org/copyright.html малайзийских ринггитов малайзийского ринггита MYR + RM Мозамбикское эскудо @@ -6669,6 +6834,7 @@ For terms of use, see http://www.unicode.org/copyright.html никарагуанских кордоб никарагуанской кордобы NIO + C$ Нидерландский гульден @@ -6680,6 +6846,7 @@ For terms of use, see http://www.unicode.org/copyright.html норвежских крон норвежской кроны NOK + kr Непальская рупия @@ -6688,6 +6855,7 @@ For terms of use, see http://www.unicode.org/copyright.html непальских рупий непальской рупии NPR + Rs Новозеландский доллар @@ -6752,6 +6920,7 @@ For terms of use, see http://www.unicode.org/copyright.html пакистанских рупий пакистанской рупии PKR + Rs Польский злотый @@ -6760,6 +6929,7 @@ For terms of use, see http://www.unicode.org/copyright.html польских злотых польского злотого PLN + Злотый @@ -6812,7 +6982,8 @@ For terms of use, see http://www.unicode.org/copyright.html российских рубля российских рублей российского рубля - руб. + + Российский рубль (1991–1998) @@ -6825,6 +6996,7 @@ For terms of use, see http://www.unicode.org/copyright.html франков Руанды франка Руанды RWF + RF Саудовский риал @@ -6872,6 +7044,7 @@ For terms of use, see http://www.unicode.org/copyright.html шведских крон шведской кроны SEK + kr Сингапурский доллар @@ -6889,6 +7062,7 @@ For terms of use, see http://www.unicode.org/copyright.html фунтов острова Святой Елены фунта острова Святой Елены SHP + £ Словенский толар @@ -6940,6 +7114,7 @@ For terms of use, see http://www.unicode.org/copyright.html добр Сан-Томе и Принсипи добры Сан-Томе и Принсипи STD + Db Рубль СССР @@ -6954,6 +7129,7 @@ For terms of use, see http://www.unicode.org/copyright.html сирийских фунтов сирийского фунта SYP + £ Свазилендский лилангени @@ -6970,6 +7146,7 @@ For terms of use, see http://www.unicode.org/copyright.html таиландских батов таиландского бата ฿ + ฿ Таджикский рубль @@ -7008,6 +7185,7 @@ For terms of use, see http://www.unicode.org/copyright.html тонганских паанг тонганской паанги TOP + T$ Тиморское эскудо @@ -7021,12 +7199,13 @@ For terms of use, see http://www.unicode.org/copyright.html Турецкая лира - новая турецкая лира + турецкая лира турецкие лиры турецких лир турецкой лиры TRY + TL Доллар Тринидада и Тобаго @@ -7062,6 +7241,7 @@ For terms of use, see http://www.unicode.org/copyright.html украинской гривны + грн. Карбованец (украинский) @@ -7125,6 +7305,7 @@ For terms of use, see http://www.unicode.org/copyright.html венесуэльских боливара венесуэльского боливара VEF + Bs Вьетнамский донг @@ -7184,6 +7365,7 @@ For terms of use, see http://www.unicode.org/copyright.html восточно-карибских доллара восточно-карибского доллара EC$ + $ СДР (специальные права заимствования) @@ -7263,6 +7445,7 @@ For terms of use, see http://www.unicode.org/copyright.html южноафриканских рэндов южноафриканского рэнда ZAR + R Квача (замбийская) (1968–2012) @@ -7278,6 +7461,7 @@ For terms of use, see http://www.unicode.org/copyright.html замбийских квач замбийской квачи ZMW + ZK Новый заир @@ -7300,7 +7484,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0} на {1} + {0} на {1} ускорение свободного падения @@ -7316,6 +7500,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} метров в секунду в квадрате {0} метра в секунду в квадрате + + оборот + {0} оборот + {0} оборота + {0} оборотов + {0} оборота + + + радианы + {0} радиан + {0} радиана + {0} радиан + {0} радиана + + + градусы + {0}градус + {0} градуса + {0} градусов + {0} градуса + минуты {0} минута @@ -7330,26 +7535,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} секунд {0} секунды - - градусы - {0}градус - {0} градуса - {0} градусов - {0} градуса - - - радианы - {0} радиан - {0} радиана - {0} радиан - {0} радиана - - - акры - {0} акр - {0} акра - {0} акров - {0} акра + + квадратные километры + {0} квадратный километр + {0} квадратных километра + {0} квадратных километров + {0} квадратного километра гектары @@ -7358,12 +7549,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гектар {0} гектара + + квадратные метры + {0} квадратный метр + {0} квадратных метра + {0} квадратных метров + {0} квадратного метра + {0} на квадратный метр + квадратные сантиметры {0} квадратный сантиметр {0} квадратных сантиметра {0} квадратных сантиметров {0} квадратного сантиметра + {0} на квадратный сантиметр + + + квадратные мили + {0} квадратная миля + {0} квадратных мили + {0} квадратных миль + {0} квадратной мили + + + акры + {0} акр + {0} акра + {0} акров + {0} акра + + + квадратные ярды + {0} квадратный ярд + {0} квадратных ярда + {0} квадратных ярдов + {0} квадратного ярда квадратные футы @@ -7378,34 +7599,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} квадратных дюйма {0} квадратных дюймов {0} квадратного дюйма + {0} на квадратный дюйм - - квадратные километры - {0} квадратный километр - {0} квадратных километра - {0} квадратных километров - {0} квадратного километра - - - квадратные метры - {0} квадратный метр - {0} квадратных метра - {0} квадратных метров - {0} квадратного метра - - - квадратные мили - {0} квадратная миля - {0} квадратных мили - {0} квадратных миль - {0} квадратной мили - - - квадратные ярды - {0} квадратный ярд - {0} квадратных ярда - {0} квадратных ярдов - {0} квадратного ярда + + караты + {0} карат + {0} карата + {0} карат + {0} карата литры на километр @@ -7414,6 +7615,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} литров на километр {0} литра на километр + + литров на 100 километров + {0} литр на 100 километров + {0} литра на 100 километров + {0} литров на 100 километров + {0} литра на 100 километров + мили на галлон {0} миля на галлон @@ -7421,69 +7629,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миль на галлон {0} мили на галлон - - биты - {0} бит - {0} бита - {0} бит - {0} бита - - - байты - {0} байт - {0} байта - {0} байт - {0} байта - - - гигабиты - {0} гигабит - {0} гигабита - {0} гигабит - {0} гигабита - - - гигабайты - {0} гигабайт - {0} гигабайта - {0} гигабайт - {0} гигабайта - - - килобиты - {0} килобит - {0} килобита - {0} килобит - {0} килобита - - - килобайты - {0} килобайт - {0} килобайта - {0} килобайт - {0} килобайта - - - мегабиты - {0} мегабит - {0} мегабита - {0} мегабит - {0} мегабита - - - мегабайты - {0} мегабайт - {0} мегабайта - {0} мегабайт - {0} мегабайта - - - терабиты - {0} терабит - {0} терабита - {0} терабит - {0} терабита - терабайты {0} терабайт @@ -7491,12 +7636,107 @@ For terms of use, see http://www.unicode.org/copyright.html {0} терабайт {0} терабайта + + терабиты + {0} терабит + {0} терабита + {0} терабит + {0} терабита + + + гигабайты + {0} гигабайт + {0} гигабайта + {0} гигабайт + {0} гигабайта + + + гигабиты + {0} гигабит + {0} гигабита + {0} гигабит + {0} гигабита + + + мегабайты + {0} мегабайт + {0} мегабайта + {0} мегабайт + {0} мегабайта + + + мегабиты + {0} мегабит + {0} мегабита + {0} мегабит + {0} мегабита + + + килобайты + {0} килобайт + {0} килобайта + {0} килобайт + {0} килобайта + + + килобиты + {0} килобит + {0} килобита + {0} килобит + {0} килобита + + + байты + {0} байт + {0} байта + {0} байт + {0} байта + + + биты + {0} бит + {0} бита + {0} бит + {0} бита + + + века + {0} век + {0} века + {0} веков + {0} века + + + годы + {0} год + {0} года + {0} лет + {0} года + {0} в год + + + месяцы + {0} месяц + {0} месяца + {0} месяцев + {0} месяца + {0} в месяц + + + недели + {0} неделя + {0} недели + {0} недель + {0} недели + {0} в неделю + дни {0} день {0} дня {0} дней {0} дня + {0} в день часы @@ -7506,40 +7746,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} часа {0} в час - - микросекунды - {0} микросекунда - {0} микросекунды - {0} микросекунд - {0} микросекунды - - - миллисекунды - {0} миллисекунда - {0} миллисекунды - {0} миллисекунд - {0} миллисекунды - минуты {0} минута {0} минуты {0} минут {0} минуты - - - месяцы - {0} месяц - {0} месяца - {0} месяцев - {0} месяца - - - наносекунды - {0} наносекунда - {0} наносекунды - {0} наносекунд - {0} наносекунды + {0} в минуту секунды @@ -7549,19 +7762,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} секунды {0} в секунду - - недели - {0} неделя - {0} недели - {0} недель - {0} недели + + миллисекунды + {0} миллисекунда + {0} миллисекунды + {0} миллисекунд + {0} миллисекунды - - годы - {0} год - {0} года - {0} лет - {0} года + + микросекунды + {0} микросекунда + {0} микросекунды + {0} микросекунд + {0} микросекунды + + + наносекунды + {0} наносекунда + {0} наносекунды + {0} наносекунд + {0} наносекунды амперы @@ -7591,6 +7811,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} вольт {0} вольта + + килокалории + {0} килокалория + {0} килокалории + {0} килокалорий + {0} килокалории + калории {0} калория @@ -7605,20 +7832,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} калорий {0} калории - - джоули - {0} джоуль - {0} джоуля - {0} джоулей - {0} джоуля - - - килокалории - {0} килокалория - {0} килокалории - {0} килокалорий - {0} килокалории - килоджоули {0} килоджоуль @@ -7626,6 +7839,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} килоджоулей {0} килоджоуля + + джоули + {0} джоуль + {0} джоуля + {0} джоулей + {0} джоуля + киловатт-часы {0} киловатт-час @@ -7640,12 +7860,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гигагерц {0} гигагерца - - герцы - {0} герц - {0} герца - {0} герц - {0} герца + + мегагерцы + {0} мегагерц + {0} мегагерца + {0} мегагерц + {0} мегагерца килогерцы @@ -7654,26 +7874,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} килогерц {0} килогерца - - мегагерцы - {0} мегагерц - {0} мегагерца - {0} мегагерц - {0} мегагерца + + герцы + {0} герц + {0} герца + {0} герц + {0} герца - - астрономические единицы - {0} астрономическая единица - {0} астрономические единицы - {0} астрономических единиц - {0} астрономической единицы + + километры + {0} километр + {0} километра + {0} километров + {0} километра + {0} на километр - - сантиметры - {0} сантиметр - {0} сантиметра - {0} сантиметров - {0} сантиметра + + метры + {0} метр + {0} метра + {0} метров + {0} метра + {0}/м дециметры @@ -7682,54 +7904,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} дециметров {0} дециметра - - футы - {0} фут - {0} фута - {0} футов - {0} фута - - - дюймы - {0} дюйм - {0} дюйма - {0} дюймов - {0} дюйма - - - километры - {0} километр - {0} километра - {0} километров - {0} километра - - - световые годы - {0} световой год - {0} световых года - {0} световых лет - {0} световых года - - - метры - {0} метр - {0} метра - {0} метров - {0} метра - - - микрометры - {0} микрометр - {0} микрометра - {0} микрометров - {0} микрометра - - - мили - {0} миля - {0} мили - {0} миль - {0} мили + + сантиметры + {0} сантиметр + {0} сантиметра + {0} сантиметров + {0} сантиметра + {0} на сантиметр миллиметры @@ -7738,6 +7919,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миллиметров {0} миллиметра + + микрометры + {0} микрометр + {0} микрометра + {0} микрометров + {0} микрометра + нанометры {0} нанометр @@ -7745,20 +7933,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} нанометров {0} нанометра - - морские мили - {0} морская миля - {0} морские мили - {0} морских миль - {0} морской мили - - - парсеки - {0} парсек - {0} парсека - {0} парсеков - {0} парсека - пикометры {0} пикометр @@ -7766,6 +7940,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} пикометров {0} пикометра + + мили + {0} миля + {0} мили + {0} миль + {0} мили + ярды {0} ярд @@ -7773,6 +7954,57 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ярдов {0} ярда + + футы + {0} фут + {0} фута + {0} футов + {0} фута + {0} на фут + + + дюймы + {0} дюйм + {0} дюйма + {0} дюймов + {0} дюйма + {0} на дюйм + + + парсеки + {0} парсек + {0} парсека + {0} парсеков + {0} парсека + + + световые годы + {0} световой год + {0} световых года + {0} световых лет + {0} световых года + + + астрономические единицы + {0} астрономическая единица + {0} астрономические единицы + {0} астрономических единиц + {0} астрономической единицы + + + морские мили + {0} морская миля + {0} морские мили + {0} морских миль + {0} морской мили + + + скандинавская миля + {0} скандинавская миля + {0} скандинавских мили + {0} скандинавских миль + {0} скандинавской мили + люксы {0} люкс @@ -7780,27 +8012,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} люкс {0} люкса - - караты - {0} карат - {0} карата - {0} карат - {0} карата - - - граммы - {0} грамм - {0} грамма - {0} грамм - {0} грамма - - - килограммы - {0} килограмм - {0} килограмма - {0} килограмм - {0} килограмма - тонны {0} тонна @@ -7808,12 +8019,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} тонн {0} тонны - - микрограммы - {0} микрограмм - {0} микрограмма - {0} микрограммов - {0} микрограмма + + килограммы + {0} килограмм + {0} килограмма + {0} килограмм + {0} килограмма + {0} на килограмм + + + граммы + {0} грамм + {0} грамма + {0} грамм + {0} грамма + {0} на грамм миллиграммы @@ -7822,26 +8042,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миллиграммов {0} миллиграмма - - унции - {0} унция - {0} унции - {0} унций - {0} унции - - - тройские унции - {0} тройская унция - {0} тройские унции - {0} тройских унций - {0} тройской унции - - - фунты - {0} фунт - {0} фунта - {0} фунтов - {0} фунта + + микрограммы + {0} микрограмм + {0} микрограмма + {0} микрограммов + {0} микрограмма американские тонны @@ -7850,6 +8056,36 @@ For terms of use, see http://www.unicode.org/copyright.html {0} американских тонн {0} американской тонны + + фунты + {0} фунт + {0} фунта + {0} фунтов + {0} фунта + {0} на фунт + + + унции + {0} унция + {0} унции + {0} унций + {0} унции + {0} на унцию + + + тройские унции + {0} тройская унция + {0} тройские унции + {0} тройских унций + {0} тройской унции + + + караты + {0} карат + {0} карата + {0} карат + {0} карата + гигаватты {0} гигаватт @@ -7857,20 +8093,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гигаватт {0} гигаватта - - лошадиные силы - {0} лошадиная сила - {0} лошадиных силы - {0} лошадиных сил - {0} лошадиной силы - - - киловатты - {0} киловатт - {0} киловатта - {0} киловатт - {0} киловатта - мегаватты {0} мегаватт @@ -7878,12 +8100,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мегаватт {0} мегаватта - - милливатты - {0} милливатт - {0} милливатта - {0} милливатт - {0} милливатта + + киловатты + {0} киловатт + {0} киловатта + {0} киловатт + {0} киловатта ватты @@ -7892,6 +8114,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ватт {0} ватта + + милливатты + {0} милливатт + {0} милливатта + {0} милливатт + {0} милливатта + + + лошадиные силы + {0} лошадиная сила + {0} лошадиных силы + {0} лошадиных сил + {0} лошадиной силы + гектопаскали {0} гектопаскаль @@ -7899,20 +8135,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гектопаскалей {0} гектопаскаля - - дюймы ртутного столба - {0} дюйм ртутного столба - {0} дюйма ртутного столба - {0} дюймов ртутного столба - {0}дюйма ртутного столба - - - миллибары - {0} миллибар - {0} миллибара - {0} миллибар - {0} миллибара - миллиметры ртутного столба {0} миллиметр ртутного столба @@ -7927,12 +8149,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} фунтов на квадратный дюйм {0} фунта на квадратный дюйм - - караты - {0} карат - {0} карата - {0} карат - {0} карата + + дюймы ртутного столба + {0} дюйм ртутного столба + {0} дюйма ртутного столба + {0} дюймов ртутного столба + {0} дюйма ртутного столба + + + миллибары + {0} миллибар + {0} миллибара + {0} миллибар + {0} миллибара километры в час @@ -7955,6 +8184,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миль в час {0} мили в час + + узел + {0} узел + {0} узла + {0} узлов + {0} узла + + + ° + {0}° + {0}° + {0}° + {0}° + градусы Цельсия {0}градус Цельсия @@ -7976,41 +8219,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} градусов по Кельвину {0} градуса по Кельвину - - акрофуты - {0} акрофут - {0} акрофута - {0} акрофутов - {0} акрофута - - - сантилитры - {0} сантилитр - {0} сантилитра - {0} сантилитров - {0} сантилитра - - - кубические сантиметры - {0} кубический сантиметр - {0} кубических сантиметра - {0} кубических сантиметров - {0} кубического сантиметра - - - кубические футы - {0} кубический фут - {0} кубических фута - {0} кубических футов - {0} кубического фута - - - кубические дюймы - {0} кубический дюйм - {0} кубических дюйма - {0} кубических дюймов - {0} кубического дюйма - кубические километры {0} кубический километр @@ -8024,6 +8232,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кубических метра {0} кубических метров {0} кубического метра + {0} на кубический метр + + + кубические сантиметры + {0} кубический сантиметр + {0} кубических сантиметра + {0} кубических сантиметров + {0} кубического сантиметра + {0} на кубический сантиметр кубические мили @@ -8039,33 +8256,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кубических ярдов {0} кубического ярда - - чашки - {0} чашка - {0} чашки - {0} чашек - {0} чашки + + кубические футы + {0} кубический фут + {0} кубических фута + {0} кубических футов + {0} кубического фута - - децилитры - {0} децилитр - {0} децилитра - {0} децилитров - {0} децилитра + + кубические дюймы + {0} кубический дюйм + {0} кубических дюйма + {0} кубических дюймов + {0} кубического дюйма - - жидкие унции - {0} жидкая унция - {0} жидкие унции - {0} жидких унций - {0} жидкой унции - - - галлоны - {0} галлон - {0} галлона - {0} галлонов - {0} галлона + + мегалитры + {0} мегалитр + {0} мегалитра + {0} мегалитров + {0} мегалитра гектолитры @@ -8080,13 +8290,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} литра {0} литра {0} литра + {0} на литр - - мегалитры - {0} мегалитр - {0} мегалитра - {0} мегалитров - {0} мегалитра + + децилитры + {0} децилитр + {0} децилитра + {0} децилитров + {0} децилитра + + + сантилитры + {0} сантилитр + {0} сантилитра + {0} сантилитров + {0} сантилитра миллилитры @@ -8095,12 +8313,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миллилитров {0} миллилитра - - пинты - {0} пинта - {0} пинты - {0} пинт - {0} пинты + + метрические пинты + {0} метрическая пинта + {0} метрические пинты + {0} метрическая пинта + {0} метрической пинты + + + метрические чашки + {0} метрическая чашка + {0} метрических чашки + {0} метрических чашек + {0} метрической чашки + + + акрофуты + {0} акрофут + {0} акрофута + {0} акрофутов + {0} акрофута + + + галлоны + {0} галлон + {0} галлона + {0} галлонов + {0} галлона + {0} на галлон кварты @@ -8109,6 +8349,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кварт {0} кварты + + пинты + {0} пинта + {0} пинты + {0} пинт + {0} пинты + + + чашки + {0} чашка + {0} чашки + {0} чашек + {0} чашки + + + жидкие унции + {0} жидкая унция + {0} жидкие унции + {0} жидких унций + {0} жидкой унции + столовые ложки {0} столовая ложка @@ -8123,10 +8384,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} чайных ложек {0} чайной ложки + + {0} восточной долготы + {0} северной широты + {0} южной широты + {0} западной долготы + - {0}/{1} + {0}/{1} g @@ -8142,6 +8409,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} м/с² {0} м/с² + + об. + {0} об. + {0} об. + {0} об. + {0} об. + + + рад + {0} рад + {0} рад + {0} рад + {0} рад + + + градусы + {0}° + {0}° + {0}° + {0}° + минуты {0}′ @@ -8151,31 +8439,17 @@ For terms of use, see http://www.unicode.org/copyright.html секунды - {0}″ - {0}″ - {0}″ - {0}″ + {0}″ + {0}″ + {0}″ + {0}″ - - градусы - {0}° - {0}° - {0}° - {0}° - - - рад - {0} рад - {0} рад - {0} рад - {0} рад - - - акры - {0} акр - {0} акра - {0} акров - {0} акра + + квадратные километры + {0} км² + {0} км² + {0} км² + {0} км² гектары @@ -8184,12 +8458,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} га {0} га + + квадратные метры + {0} м² + {0} м² + {0} м² + {0} м² + {0}/м² + квадратные сантиметры {0} см² {0} см² {0} см² {0} см² + {0}/см² + + + квадратные мили + {0} кв. миля + {0} кв. мили + {0} кв. миль + {0} кв. мили + + + акры + {0} акр + {0} акра + {0} акров + {0} акра + + + квадратные ярды + {0} кв. ярд + {0} кв. ярда + {0} кв. ярдов + {0} кв. ярда квадратные футы @@ -8204,34 +8508,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кв. дюйм. {0} кв. дюйм. {0} кв. дюйм. + {0}/дюйм² - - квадратные километры - {0} км² - {0} км² - {0} км² - {0} км² - - - квадратные метры - {0} м² - {0} м² - {0} м² - {0} м² - - - квадратные мили - {0} кв. миля - {0} кв. мили - {0} кв. миль - {0} кв. мили - - - квадратные ярды - {0} кв. ярд - {0} кв. ярда - {0} кв. ярдов - {0} кв. ярда + + кар + {0} кар + {0} кар + {0} кар + {0} кар л/км @@ -8240,6 +8524,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} л/км {0} л/км + + л/100 км + {0} л/100 км + {0} л/100 км + {0} л/100 км + {0} л/100 км + миль/галл. {0} миля/галл. @@ -8247,69 +8538,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миль/галл. {0} мили/галл. - - бит - {0} бит - {0} бита - {0} бит - {0} бита - - - Б - {0} Б - {0} Б - {0} Б - {0} Б - - - Гбит - {0} Гбит - {0} Гбит - {0} Гбит - {0} Гбит - - - ГБ - {0} ГБ - {0} ГБ - {0} ГБ - {0} ГБ - - - кбит - {0} кбит - {0} кбит - {0} кбит - {0} кбит - - - кБ - {0} кБ - {0} кБ - {0} кБ - {0} кБ - - - Мбит - {0} Мбит - {0} Мбит - {0} Мбит - {0} Мбит - - - МБ - {0} МБ - {0} МБ - {0} МБ - {0} МБ - - - Тбит - {0} Тбит - {0} Тбит - {0} Тбит - {0} Тбит - ТБ {0} ТБ @@ -8317,12 +8545,107 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ТБ {0} ТБ + + Тбит + {0} Тбит + {0} Тбит + {0} Тбит + {0} Тбит + + + ГБ + {0} ГБ + {0} ГБ + {0} ГБ + {0} ГБ + + + Гбит + {0} Гбит + {0} Гбит + {0} Гбит + {0} Гбит + + + МБ + {0} МБ + {0} МБ + {0} МБ + {0} МБ + + + Мбит + {0} Мбит + {0} Мбит + {0} Мбит + {0} Мбит + + + кБ + {0} кБ + {0} кБ + {0} кБ + {0} кБ + + + кбит + {0} кбит + {0} кбит + {0} кбит + {0} кбит + + + Б + {0} Б + {0} Б + {0} Б + {0} Б + + + бит + {0} бит + {0} бита + {0} бит + {0} бита + + + в. + {0} в. + {0} в. + {0} в. + {0} в. + + + г. + {0} г. + {0} г. + {0} л. + {0} г. + {0}/г + + + мес. + {0} мес. + {0} мес. + {0} мес. + {0} мес. + {0}/мес + + + нед. + {0} нед. + {0} нед. + {0} нед. + {0} нед. + {0}/нед + - дн - {0} дн - {0} дн - {0} дн - {0} дн + дн. + {0} дн. + {0} дн. + {0} дн. + {0} дн. + {0}/д ч @@ -8332,40 +8655,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ч {0}/ч - - мкс - {0} мкс - {0} мкс - {0} мкс - {0} мкс - - - мс - {0} мс - {0} мс - {0} мс - {0} мс - мин {0} мин {0} мин {0} мин {0} мин - - - мес - {0} мес - {0} мес - {0} мес - {0} мес - - - нс - {0} нс - {0} нс - {0} нс - {0} нс + {0}/мин сек @@ -8375,19 +8671,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} сек {0}/c - - нед - {0} нед - {0} нед - {0} нед - {0} нед + + мс + {0} мс + {0} мс + {0} мс + {0} мс - - г. - {0} г. - {0} г. - {0} л. - {0} г. + + мкс + {0} мкс + {0} мкс + {0} мкс + {0} мкс + + + нс + {0} нс + {0} нс + {0} нс + {0} нс А @@ -8417,6 +8720,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} В {0} В + + ккал + {0} ккал + {0} ккал + {0} ккал + {0} ккал + кал {0} кал @@ -8431,20 +8741,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кал {0} кал - - Дж - {0} Дж - {0} Дж - {0} Дж - {0} Дж - - - ккал - {0} ккал - {0} ккал - {0} ккал - {0} ккал - кДж {0} кДж @@ -8452,6 +8748,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кДж {0} кДж + + Дж + {0} Дж + {0} Дж + {0} Дж + {0} Дж + кВт⋅ч {0} кВт⋅ч @@ -8466,12 +8769,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ГГц {0} ГГц - - Гц - {0} Гц - {0} Гц - {0} Гц - {0} Гц + + МГц + {0} МГц + {0} МГц + {0} МГц + {0} МГц кГц @@ -8480,26 +8783,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кГц {0} кГц - - МГц - {0} МГц - {0} МГц - {0} МГц - {0} МГц + + Гц + {0} Гц + {0} Гц + {0} Гц + {0} Гц - - а. е. - {0} а. е. - {0} а. е. - {0} а. е. - {0} а. е. + + км + {0} км + {0} км + {0} км + {0} км + {0}/км - - см - {0} см - {0} см - {0} см - {0} см + + метры + {0} м + {0} м + {0} м + {0} м + {0}/м дм @@ -8508,54 +8813,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} дм {0} дм - - футы - {0} фут - {0} фута - {0} футов - {0} фута - - - дюйм. - {0} дюйм - {0} дюйм. - {0} дюйм. - {0} дюйм. - - - км - {0} км - {0} км - {0} км - {0} км - - - св. годы - {0} св. г. - {0} св. г. - {0} св. л. - {0} св. г. - - - метры - {0} м - {0} м - {0} м - {0} м - - - мкм - {0} мкм - {0} мкм - {0} мкм - {0} мкм - - - мили - {0} миля - {0} мили - {0} миль - {0} мили + + см + {0} см + {0} см + {0} см + {0} см + {0}/см мм @@ -8564,6 +8828,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мм {0} мм + + мкм + {0} мкм + {0} мкм + {0} мкм + {0} мкм + нанометр {0} нм @@ -8571,20 +8842,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} нм {0} нм - - мор. мили - {0} мор. миля - {0} мор. мили - {0} мор. миль - {0} мор. мили - - - парсеки - {0} пк - {0} пк - {0} пк - {0} пк - пм {0} пм @@ -8592,13 +8849,71 @@ For terms of use, see http://www.unicode.org/copyright.html {0} пм {0} пм + + мили + {0} миля + {0} мили + {0} миль + {0} мили + - ярда + ярды {0} ярд {0} ярда {0} ярдов {0} ярда + + футы + {0} фут + {0} фута + {0} футов + {0} фута + {0}/фут + + + дюйм. + {0} дюйм + {0} дюйм. + {0} дюйм. + {0} дюйм. + {0}/дюйм + + + парсеки + {0} пк + {0} пк + {0} пк + {0} пк + + + св. годы + {0} св. г. + {0} св. г. + {0} св. л. + {0} св. г. + + + а. е. + {0} а. е. + {0} а. е. + {0} а. е. + {0} а. е. + + + мор. мили + {0} мор. миля + {0} мор. мили + {0} мор. миль + {0} мор. мили + + + ск. мил. + {0} ск. мил. + {0} ск. мил. + {0} ск. мил. + {0} ск. мил. + лк {0} лк @@ -8606,27 +8921,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} лк {0} лк - - кар - {0} кар - {0} кар - {0} кар - {0} кар - - - граммы - {0} г - {0} г - {0} г - {0} г - - - кг - {0} кг - {0} кг - {0} кг - {0} кг - т {0} т @@ -8634,12 +8928,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} т {0} т - - мкг - {0} мкг - {0} мкг - {0} мкг - {0} мкг + + кг + {0} кг + {0} кг + {0} кг + {0} кг + {0}/кг + + + граммы + {0} г + {0} г + {0} г + {0} г + {0}/г мг @@ -8648,26 +8951,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мг {0} мг - - унц. - {0} унц. - {0} унц. - {0} унц. - {0} унц. - - - тр. унц. - {0} тр. унц. - {0} тр. унц. - {0} тр. унц. - {0} тр. унц. - - - фунт. - {0} фунт. - {0} фунт. - {0} фунт. - {0} фунт. + + мкг + {0} мкг + {0} мкг + {0} мкг + {0} мкг амер. т @@ -8676,6 +8965,36 @@ For terms of use, see http://www.unicode.org/copyright.html {0} амер. т {0} амер. т + + фунт. + {0} фунт. + {0} фунт. + {0} фунт. + {0} фунт. + {0}/фунт + + + унц. + {0} унц. + {0} унц. + {0} унц. + {0} унц. + {0}/унция + + + тр. унц. + {0} тр. унц. + {0} тр. унц. + {0} тр. унц. + {0} тр. унц. + + + кар + {0} кар + {0} кар + {0} кар + {0} кар + ГВт {0} ГВт @@ -8683,20 +9002,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ГВт {0} ГВт - - л.с. - {0} л.с. - {0} л.с. - {0} л.с. - {0} л.с. - - - кВт - {0} кВт - {0} кВт - {0} кВт - {0} кВт - МВт {0} МВт @@ -8704,12 +9009,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} МВт {0} МВт - - мВт - {0} мВт - {0} мВт - {0} мВт - {0} мВт + + кВт + {0} кВт + {0} кВт + {0} кВт + {0} кВт Вт @@ -8718,6 +9023,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Вт {0} Вт + + мВт + {0} мВт + {0} мВт + {0} мВт + {0} мВт + + + л.с. + {0} л.с. + {0} л.с. + {0} л.с. + {0} л.с. + гПа {0} гПа @@ -8725,20 +9044,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гПа {0} гПа - - дюймы рт. ст - {0} д. рт. ст. - {0} д. рт. ст. - {0} д. рт. ст. - {0} д. рт. ст. - - - мбар - {0} мбар - {0} мбар - {0} мбар - {0} мбар - мм рт. ст. {0} мм рт. ст. @@ -8753,12 +9058,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ф./кв. д. {0} ф./кв. д. - - кар - {0} кар - {0} кар - {0} кар - {0} кар + + дюймы рт. ст + {0} д. рт. ст. + {0} д. рт. ст. + {0} д. рт. ст. + {0} д. рт. ст. + + + мбар + {0} мбар + {0} мбар + {0} мбар + {0} мбар км/ч @@ -8781,6 +9093,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миль/час {0} мили/час + + уз. + {0} уз. + {0} уз. + {0} уз. + {0} уз. + + + ° + {0}° + {0}° + {0}° + {0}° + °C {0} °C @@ -8802,41 +9128,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - акрофуты - {0} акрофут - {0} акрофута - {0} акрофутов - {0} акрофута - - - сл - {0} сл - {0} сл - {0} сл - {0} сл - - - см³ - {0} см³ - {0} см³ - {0} см³ - {0} см³ - - - куб. футы - {0} куб. фут - {0} куб. фута - {0} куб. футов - {0} куб. фута - - - куб. дюймы - {0} куб. дюйм - {0} куб. дюйма - {0} куб. дюймов - {0} куб. дюйма - км³ {0} км³ @@ -8850,6 +9141,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} м³ {0} м³ {0} м³ + {0}/м³ + + + см³ + {0} см³ + {0} см³ + {0} см³ + {0} см³ + {0}/см³ куб. мили @@ -8865,33 +9165,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} куб. ярдов {0} куб. ярда - - чаш. - {0} чаш. - {0} чаш. - {0} чаш. - {0} чаш. + + куб. футы + {0} куб. фут + {0} куб. фута + {0} куб. футов + {0} куб. фута - - дл - {0} дл - {0} дл - {0} дл - {0} дл + + куб. дюймы + {0} куб. дюйм + {0} куб. дюйма + {0} куб. дюймов + {0} куб. дюйма - - жидк. унц. - {0} жидк. унц. - {0} жидк. унц. - {0} жидк. унц. - {0} жидк. унц. - - - гал. - {0} гал. - {0} гал. - {0} гал. - {0} гал. + + Мл + {0} Мл + {0} Мл + {0} Мл + {0} Мл гл @@ -8906,13 +9199,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} л {0} л {0} л + {0}/л - - Мл - {0} Мл - {0} Мл - {0} Мл - {0} Мл + + дл + {0} дл + {0} дл + {0} дл + {0} дл + + + сл + {0} сл + {0} сл + {0} сл + {0} сл мл @@ -8921,12 +9222,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мл {0} мл - - пинт. - {0} пинт. - {0} пинт. - {0} пинт. - {0} пинт. + + мпт + {0} мпт + {0} мпт + {0} мпт + {0} мпт + + + м. чаш. + {0} м. чаш. + {0} м. чаш. + {0} м. чаш. + {0} м. чаш. + + + акрофуты + {0} акрофут + {0} акрофута + {0} акрофутов + {0} акрофута + + + гал. + {0} гал. + {0} гал. + {0} гал. + {0} гал. + {0}/галл кварт. @@ -8935,6 +9258,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кварт. {0} кварт. + + пинт. + {0} пинт. + {0} пинт. + {0} пинт. + {0} пинт. + + + чаш. + {0} чаш. + {0} чаш. + {0} чаш. + {0} чаш. + + + жидк. унц. + {0} жидк. унц. + {0} жидк. унц. + {0} жидк. унц. + {0} жидк. унц. + ст. л. {0} ст. л. @@ -8943,16 +9287,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ст. л. - ч.л. - {0} ч.л. - {0} ч.л. - {0} ч.л. - {0} ч.л. + ч. л. + {0} ч. л. + {0} ч. л. + {0} ч. л. + {0} ч. л. + + {0} в. д. + {0} с. ш. + {0} ю. ш. + {0} з. д. + - {0}/{1} + {0}/{1} {0} G @@ -8960,6 +9310,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}° + {0}° + {0}′ {0}′ @@ -8972,17 +9328,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - {0}° - {0}° - - - {0} акр - {0} акра - {0} акров - {0} акра + + {0} км² + {0} км² + {0} км² + {0} км² {0} га @@ -8990,18 +9340,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} га {0} га - - {0} кв. фут - {0} кв. фута - {0} кв. футов - {0} кв. фута - - - {0} км² - {0} км² - {0} км² - {0} км² - {0} м² {0} м² @@ -9014,6 +9352,46 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кв. миль {0} кв. мили + + {0} акр + {0} акра + {0} акров + {0} акра + + + {0} кв. фут + {0} кв. фута + {0} кв. футов + {0} кв. фута + + + л/100 км + {0} л/100 км + {0} л/100 км + {0} л/100 км + {0} л/100 км + + + г. + {0} г. + {0} г. + {0} л. + {0} г. + + + м. + {0} м. + {0} м. + {0} м. + {0} м. + + + н. + {0} н. + {0} н. + {0} н. + {0} н. + д. {0} д. @@ -9028,27 +9406,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ч {0} ч - - мс - {0} мс - {0} мс - {0} мс - {0} мс - - мин. + мин {0} мин {0} мин {0} мин {0} мин - - мес - {0} м. - {0} м. - {0} м. - {0} м. - c {0} с @@ -9056,38 +9420,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} с {0} с - - нед - {0} н. - {0} н. - {0} н. - {0} н. - - - г. - {0} г. - {0} л. - {0} л. - {0} г. - - - см - {0} см - {0} см - {0} см - {0} см - - - {0} фут - {0} фута - {0} футов - {0} фута - - - {0} дюйм - {0} дюйма - {0} дюймов - {0} дюйма + + мс + {0} мс + {0} мс + {0} мс + {0} мс км @@ -9096,13 +9434,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} км {0} км - - св. годы - {0} св. г. - {0} св. г. - {0} св. л. - {0} св. г. - метр {0} м @@ -9110,11 +9441,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} м {0} м - - {0} миля - {0} миль - {0} миль - {0} мили + + см + {0} см + {0} см + {0} см + {0} см мм @@ -9129,18 +9461,36 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} миля + {0} миль + {0} миль + {0} мили + {0} ярд {0} ярда {0} ярдов {0} ярда - - г - {0} г - {0} г - {0} г - {0} г + + {0} фут + {0} фута + {0} футов + {0} фута + + + {0} дюйм + {0} дюйма + {0} дюймов + {0} дюйма + + + св. годы + {0} св. г. + {0} св. г. + {0} св. л. + {0} св. г. кг @@ -9149,11 +9499,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кг {0} кг - - {0} oz - {0} oz - {0} oz - {0} oz + + г + {0} г + {0} г + {0} г + {0} г {0} lb @@ -9161,11 +9512,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lb {0} lb - - {0} л.с. - {0} л.с. - {0} л.с. - {0} л.с. + + {0} oz + {0} oz + {0} oz + {0} oz {0} кВт @@ -9179,6 +9530,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Вт {0} Вт + + {0} л.с. + {0} л.с. + {0} л.с. + {0} л.с. + {0} гПа {0} гПа @@ -9248,6 +9605,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} л {0} л + + {0} в. д. + {0} с. ш. + {0} ю. ш. + {0} з. д. + h:mm @@ -9267,10 +9630,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} и {1} - {0}, {1} - {0}, {1} + {0} {1} + {0} {1} {0} и {1} - {0} {1} + {0} и {1} {0} {1} @@ -9279,10 +9642,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} {1} - {0}, {1} - {0}, {1} - {0}, {1} - {0}, {1} + {0} {1} + {0} {1} + {0} и {1} + {0} и {1} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_BY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_BY.xml similarity index 76% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_BY.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_BY.xml index 0a027564cc1..f3a3c921139 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_BY.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_BY.xml @@ -1,13 +1,12 @@ - - - + @@ -22,3 +21,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_KG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_KG.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_KG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_KG.xml index d58176b67b1..8a813a088bc 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_KG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_KG.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_KZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_KZ.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_KZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_KZ.xml index 2b5514a3142..88d182ed954 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_KZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_KZ.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_MD.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_MD.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_MD.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_MD.xml index a8d558fd3b3..2012d717340 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_MD.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_MD.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_RU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_RU.xml new file mode 100644 index 00000000000..d39214881c8 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_RU.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_UA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_UA.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_UA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_UA.xml index d82f114ac48..62583b6ba2d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ru_UA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ru_UA.xml @@ -1,13 +1,12 @@ - - - + @@ -119,7 +118,6 @@ For terms of use, see http://www.unicode.org/copyright.html E, d – E, d MMM - E, d MMM – E, d MMM E, dd.MM.y – E, dd.MM.y diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rw.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rw.xml similarity index 89% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rw.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rw.xml index e809bdf542e..6d69bcb8ccc 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rw.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rw.xml @@ -1,13 +1,12 @@ - - - + @@ -286,6 +285,24 @@ For terms of use, see http://www.unicode.org/copyright.html , . + + + + ¤ 0K + ¤ 00K + ¤ 000K + ¤ 0M + ¤ 00M + ¤ 000M + ¤ 0G + ¤ 00G + ¤ 000G + ¤ 0T + ¤ 00T + ¤ 000T + + + RF diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rw_RW.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rw_RW.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rw_RW.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rw_RW.xml index 0a16422a5b4..2996dd6478d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rw_RW.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rw_RW.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rwk.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rwk.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rwk.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rwk.xml index ca3ab8bb4ad..bf895c73879 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rwk.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rwk.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antili za Uholanzi Angola Ajentina Samoa ya Marekani @@ -448,6 +446,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + utuko + kyiukonyi + utuko kyiukonyi @@ -489,22 +491,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -578,6 +580,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤ + + + 0K¤ + 0K¤ + 00K¤ + 00K¤ + 000K¤ + 000K¤ + 0M¤ + 0M¤ + 00M¤ + 00M¤ + 000M¤ + 000M¤ + 0G¤ + 0G¤ + 00G¤ + 00G¤ + 000G¤ + 000G¤ + 0T¤ + 0T¤ + 00T¤ + 00T¤ + 000T¤ + 000T¤ + + @@ -758,3 +788,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rwk_TZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rwk_TZ.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rwk_TZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rwk_TZ.xml index e0ee46b78cb..a2937d730ac 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/rwk_TZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/rwk_TZ.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sah.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sah.xml similarity index 93% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sah.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sah.xml index 9b76f6228cf..ed800392b02 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sah.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sah.xml @@ -1,13 +1,12 @@ - - - + @@ -78,6 +77,7 @@ For terms of use, see http://www.unicode.org/copyright.html Хотугу Эмиэрикэ Соҕуруу Эмиэрикэ Кытай + Арассыыйа Мэтриичэскэй @@ -262,6 +262,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + ЭИ + ЭК + ЭИ ЭК @@ -430,14 +434,44 @@ For terms of use, see http://www.unicode.org/copyright.html . , + + + + ¤ 0K + ¤ 00K + ¤ 000K + ¤ 0M + ¤ 00M + ¤ 000M + ¤ 0G + ¤ 00G + ¤ 000G + ¤ 0T + ¤ 00T + ¤ 000T + + + - руб. + + + сыл + {0} сыл + + + ый + {0} ый + + + нэдиэлэ + {0} нэдиэлэ + күн {0} күн @@ -450,24 +484,21 @@ For terms of use, see http://www.unicode.org/copyright.html мүнүүтэ {0} мүнүүтэ - - ый - {0} ый - сөкүүндэ {0} сөкүүндэ - - нэдиэлэ - {0} нэдиэлэ - - - сыл - {0} сыл - + + сыл + + + ый + + + нэдиэлэ + күн @@ -477,18 +508,10 @@ For terms of use, see http://www.unicode.org/copyright.html мүнүүтэ - - ый - сөкүүндэ - - нэдиэлэ - - - сыл - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sah_RU.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sah_RU.xml new file mode 100644 index 00000000000..0d304e41ce5 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sah_RU.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/saq.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/saq.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/saq.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/saq.xml index 0a102e22aad..e2c40d37c9b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/saq.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/saq.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antili za Uholanzi Angola Ajentina Samoa ya Marekani @@ -448,6 +446,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Tesiran + Teipa + Tesiran Teipa @@ -489,22 +491,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -581,6 +583,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/saq_KE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/saq_KE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/saq_KE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/saq_KE.xml index bc54c32f8bc..61144bb8861 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/saq_KE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/saq_KE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sbp.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sbp.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sbp.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sbp.xml index f869004572a..4ba8299e046 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sbp.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sbp.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Alubaniya Alimeniya - Anitili sa Uholansi Angola Ajentina Samoya ya Malekani @@ -433,6 +431,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Lwamilawu + Pashamihe + Lwamilawu Pashamihe @@ -474,22 +476,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -585,6 +587,22 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤ + + + 0K¤ + 00K¤ + 000K¤ + 0M¤ + 00M¤ + 000M¤ + 0G¤ + 00G¤ + 000G¤ + 0T¤ + 00T¤ + 000T¤ + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sbp_TZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sbp_TZ.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sbp_TZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sbp_TZ.xml index 6bf610cd4ee..0509f64b0ea 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sbp_TZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sbp_TZ.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/se.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/se.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/se.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/se.xml index 3a5c7c61045..acb720f599c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/se.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/se.xml @@ -1,13 +1,12 @@ - - - + @@ -441,13 +440,13 @@ For terms of use, see http://www.unicode.org/copyright.html numerála - buddhista kaleander - kiinna - viddis oarjelohkosátni - gregoria kaleander - oarjelohkosátni - pinyin ortnet - árbevirolaš ortnet + buddhista kaleander + kiinna + gregoria kaleander + pinyin ortnet + árbevirolaš ortnet + viddis oarjelohkosátni + oarjelohkosátni SI állan @@ -893,6 +892,46 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 dt ¤ + 0 dt ¤ + 0 dt ¤ + 00 dt ¤ + 00 dt ¤ + 00 dt ¤ + 000 dt ¤ + 000 dt ¤ + 000 dt ¤ + 0 mn ¤ + 0 mn ¤ + 0 mn ¤ + 00 mn ¤ + 00 mn ¤ + 00 mn ¤ + 000 mn ¤ + 000 mn ¤ + 000 mn ¤ + 0 md ¤ + 0 md ¤ + 0 md ¤ + 00 md ¤ + 00 md ¤ + 00 md ¤ + 000 md ¤ + 000 md ¤ + 000 md ¤ + 0 bn ¤ + 0 bn ¤ + 0 bn ¤ + 00 bn ¤ + 00 bn ¤ + 00 bn ¤ + 000 bn ¤ + 000 bn ¤ + 000 bn ¤ + + {0} {1} {0} {1} {0} {1} @@ -959,6 +998,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Maapallo gravitaatiovoimat {0} Maapallo gravitaatiovoimat + + grádat + {0} grádat + {0} grádat + {0} grádat + jorbbas minuhtta {0} jorbbas minuhta @@ -971,17 +1016,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} jorbbas sekundda {0} jorbbas sekundda - - grádat - {0} grádat - {0} grádat - {0} grádat - - - Amerihká tynnyrinala - {0} Amerihká tynnyrinala - {0} Amerihká tynnyrinala - {0} Amerihká tynnyrinala + + neliökilomehtera + {0} neliökilomehter + {0} neliökilomehtera + {0} neliökilomehtera hehtaaria @@ -989,18 +1028,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hehtaaria {0} hehtaaria - - neliöjuolgi - {0} neliöjuolgi - {0} neliöjuolgi - {0} neliöjuolgi - - - neliökilomehtera - {0} neliökilomehter - {0} neliökilomehtera - {0} neliökilomehtera - neliömehtera {0} neliömehter @@ -1013,6 +1040,36 @@ For terms of use, see http://www.unicode.org/copyright.html {0} eangas neliömiila {0} eangas neliömiila + + Amerihká tynnyrinala + {0} Amerihká tynnyrinala + {0} Amerihká tynnyrinala + {0} Amerihká tynnyrinala + + + neliöjuolgi + {0} neliöjuolgi + {0} neliöjuolgi + {0} neliöjuolgi + + + jahkki + {0} jahki + {0} jahkki + {0} jahkki + + + mánotbadji + {0} mánotbadji + {0} mánotbaji + {0} mánotbadji + + + váhkku + {0} váhku + {0} váhkku + {0} váhkku + jándora {0} jándor @@ -1025,59 +1082,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} diimmur {0} diibmur - - millisekundda - {0} millisekunda - {0} millisekundda - {0} millisekundda - minuhtta {0} minuhta {0} minuhtta {0} minuhtta - - mánotbadji - {0} mánotbadji - {0} mánotbaji - {0} mánotbadji - sekundda {0} sekunda {0} sekundda {0} sekundda - - váhkku - {0} váhku - {0} váhkku - {0} váhkku - - - jahkki - {0} jahki - {0} jahkki - {0} jahkki - - - sentimehtera - {0} sentimehter - {0} sentimehtera - {0} sentimehtera - - - juolgi - {0} juolgi - {0} juolgi - {0} juolgi - - - bealgi - {0} bealgi - {0} bealgi - {0} bealgi + + millisekundda + {0} millisekunda + {0} millisekundda + {0} millisekundda kilomehtera @@ -1085,23 +1106,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilomehtera {0} kilomehtera - - chuovgat jagi - {0} chuovgat jagi - {0} chuovgat jagi - {0} chuovgat jagi - mehtera {0} mehter {0} mehtera {0} mehtera - - eangas miila - {0} eangas miil - {0} eangas miila - {0} eangas miila + + sentimehtera + {0} sentimehter + {0} sentimehtera + {0} sentimehtera millimehtera @@ -1115,17 +1130,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pikomehtera {0} pikomehtera + + eangas miila + {0} eangas miil + {0} eangas miila + {0} eangas miila + eangas yard {0} eangas yard {0} eangas yard {0} eangas yard - - gram - {0} gram - {0} gram - {0} gram + + juolgi + {0} juolgi + {0} juolgi + {0} juolgi + + + bealgi + {0} bealgi + {0} bealgi + {0} bealgi + + + chuovgat jagi + {0} chuovgat jagi + {0} chuovgat jagi + {0} chuovgat jagi kilogram @@ -1133,11 +1166,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilogram {0} kilogram - - unssi - {0} unssi - {0} unssi - {0} unssi + + gram + {0} gram + {0} gram + {0} gram pauna @@ -1145,11 +1178,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pauna {0} pauna - - hevosvoima - {0} hevosvoima - {0} hevosvoima - {0} hevosvoima + + unssi + {0} unssi + {0} unssi + {0} unssi kilowatt @@ -1163,6 +1196,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} watt {0} watt + + hevosvoima + {0} hevosvoima + {0} hevosvoima + {0} hevosvoima + hehtopascal {0} hehtopascal @@ -1229,6 +1268,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lihtara {0} lihtara + + {0} nuorti + {0} davvi + {0} lulli + {0} oarji + @@ -1240,6 +1285,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + grádat + {0}° + {0}° + {0}° + jorbbas minuhtta {0}′ @@ -1252,17 +1303,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - grádat - {0}° - {0}° - {0}° - - - Amerihká tynnyrinala - {0} ac - {0} ac - {0} ac + + neliökilomehtera + {0} km² + {0} km² + {0} km² hehtaaria @@ -1270,18 +1315,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha - - neliöjuolgi - {0} ft² - {0} ft² - {0} ft² - - - neliökilomehtera - {0} km² - {0} km² - {0} km² - neliömehtera {0} m² @@ -1294,6 +1327,36 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + Amerihká tynnyrinala + {0} ac + {0} ac + {0} ac + + + neliöjuolgi + {0} ft² + {0} ft² + {0} ft² + + + jahkki + {0} jah + {0} jah + {0} jah + + + mánotbadji + {0} mán + {0} mán + {0} mán + + + váhkku + {0} v + {0} v + {0} v + jándora {0} d @@ -1306,59 +1369,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0} h - - millisekundda - {0} ms - {0} ms - {0} ms - minuhtta {0} min {0} min {0} min - - mánotbadji - {0} mán - {0} mán - {0} mán - sekundda {0} s {0} s {0} s - - váhkku - {0} v - {0} v - {0} v - - - jahkki - {0} jah - {0} jah - {0} jah - - - sentimehtera - {0} cm - {0} cm - {0} cm - - - juolgi - {0} juolgi - {0} juolgi - {0} juolgi - - - bealgi - {0} bealgi - {0} bealgi - {0} bealgi + + millisekundda + {0} ms + {0} ms + {0} ms kilomehtera @@ -1366,23 +1393,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} km {0} km - - chuovgat jagi - {0} ly - {0} ly - {0} ly - mehtera {0} m {0} m {0} m - - eangas miila - {0} mi - {0} mi - {0} mi + + sentimehtera + {0} cm + {0} cm + {0} cm millimehtera @@ -1396,17 +1417,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + eangas miila + {0} mi + {0} mi + {0} mi + eangas yard {0} yd {0} yd {0} yd - - gram - {0} g - {0} g - {0} g + + juolgi + {0} juolgi + {0} juolgi + {0} juolgi + + + bealgi + {0} bealgi + {0} bealgi + {0} bealgi + + + chuovgat jagi + {0} ly + {0} ly + {0} ly kilogram @@ -1414,11 +1453,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kg {0} kg - - unssi - {0} unssi - {0} unssi - {0} unssi + + gram + {0} g + {0} g + {0} g pauna @@ -1426,11 +1465,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pauna {0} pauna - - hevosvoima - {0} hv - {0} hv - {0} hv + + unssi + {0} unssi + {0} unssi + {0} unssi kilowatt @@ -1444,6 +1483,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + hevosvoima + {0} hv + {0} hv + {0} hv + hehtopascal {0} hPa @@ -1510,6 +1555,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l + + {0} N + {0} D + {0} L + {0} O + @@ -1520,6 +1571,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}G {0}G + + {0}° + {0}° + {0}° + {0}′ {0}′ @@ -1530,31 +1586,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - {0}° - - - {0} ac - {0} ac - {0} ac + + {0}km² + {0}km² + {0}km² {0}ha {0}ha {0}ha - - {0} ft² - {0} ft² - {0} ft² - - - {0}km² - {0}km² - {0}km² - {0}m² {0}m² @@ -1565,6 +1606,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} ac + {0} ac + {0} ac + + + {0} ft² + {0} ft² + {0} ft² + + + {0}j + {0}j + {0}j + + + {0}m + {0}m + {0}m + + + {0}v + {0}v + {0}v + {0}d {0}d @@ -1575,70 +1641,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0}h {0}h - - {0}ms - {0}ms - {0}ms - {0}m {0}m {0}m - - {0}m - {0}m - {0}m - {0}s {0}s {0}s - - {0}v - {0}v - {0}v - - - {0}j - {0}j - {0}j - - - {0}cm - {0}cm - {0}cm - - - {0} juolgi - {0} juolgi - {0} juolgi - - - {0} bealgi - {0} bealgi - {0} bealgi + + {0}ms + {0}ms + {0}ms {0}km {0}km {0}km - - {0} ly - {0} ly - {0} ly - {0}m {0}m {0}m - - {0} mi - {0} mi - {0} mi + + {0}cm + {0}cm + {0}cm {0}mm @@ -1650,35 +1681,50 @@ For terms of use, see http://www.unicode.org/copyright.html {0}pm {0}pm + + {0} mi + {0} mi + {0} mi + {0} yd {0} yd {0} yd - - {0}g - {0}g - {0}g + + {0} juolgi + {0} juolgi + {0} juolgi + + + {0} bealgi + {0} bealgi + {0} bealgi + + + {0} ly + {0} ly + {0} ly {0}kg {0}kg {0}kg - - {0} unssi - {0} unssi - {0} unssi + + {0}g + {0}g + {0}g {0} pauna {0} pauna {0} pauna - - {0}hv - {0}hv - {0}hv + + {0} unssi + {0} unssi + {0} unssi {0}kW @@ -1690,6 +1736,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}W {0}W + + {0}hv + {0}hv + {0}hv + {0}hPa {0}hPa @@ -1745,6 +1796,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}L {0}L + + {0}N + {0}D + {0}L + {0}O + h:mm @@ -1789,3 +1846,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/se_FI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/se_FI.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/se_FI.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/se_FI.xml index 5b5816e57b5..cd3ac26a529 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/se_FI.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/se_FI.xml @@ -1,13 +1,12 @@ - - - + @@ -68,14 +67,14 @@ For terms of use, see http://www.unicode.org/copyright.html Chad - buddhista kaleandar - kiinná kaleandar - koptalaš kaleandar - dangi kaleandar - etiohpalaš kaleandar - etiohpalaš-amete-alem kaleandar - fullwide - gregorialaš kalendar + buddhista kaleandar + kiinná kaleandar + koptalaš kaleandar + dangi kaleandar + etiohpalaš kaleandar + etiohpalaš-amete-alem kaleandar + gregorialaš kalendar + fullwide čállin: {0} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/se_NO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/se_NO.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/se_NO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/se_NO.xml index 8f0e10d7154..1ff1f2f45f3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/se_NO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/se_NO.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/se_SE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/se_SE.xml similarity index 76% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/se_SE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/se_SE.xml index 9b42e99edc4..8db6e71ef6e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/se_SE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/se_SE.xml @@ -1,13 +1,12 @@ - - - + @@ -22,3 +21,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/seh.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/seh.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/seh.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/seh.xml index a1e943c58e3..253b6a2f671 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/seh.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/seh.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albânia Armênia - Antilhas Holandesas Angola Argentina Samoa Americana @@ -552,6 +550,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤ + + + 0K¤ + 0K¤ + 00K¤ + 00K¤ + 000K¤ + 000K¤ + 0M¤ + 0M¤ + 00M¤ + 00M¤ + 000M¤ + 000M¤ + 0G¤ + 0G¤ + 00G¤ + 00G¤ + 000G¤ + 000G¤ + 0T¤ + 0T¤ + 00T¤ + 00T¤ + 000T¤ + 000T¤ + + @@ -735,3 +761,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/seh_MZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/seh_MZ.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/seh_MZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/seh_MZ.xml index 4634b2d4b02..b9e80df5869 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/seh_MZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/seh_MZ.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ses.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ses.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ses.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ses.xml index e4e1e8d0b79..e027d5850a7 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ses.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ses.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angiiya Albaani Armeeni - Hollandu Antiiyey Laboo Angoola Argentine Ameriki Samoa @@ -447,6 +445,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Adduha + Aluula + Adduha Aluula @@ -579,6 +581,22 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤ + + + 0K¤ + 00K¤ + 000K¤ + 0M¤ + 00M¤ + 000M¤ + 0G¤ + 00G¤ + 000G¤ + 0T¤ + 00T¤ + 000T¤ + + @@ -758,3 +776,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ses_ML.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ses_ML.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ses_ML.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ses_ML.xml index c99d85fcb82..1f0ad50652b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ses_ML.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ses_ML.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sg.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sg.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sg.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sg.xml index 05d64b26128..9f8a7ace9bb 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sg.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sg.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angûîla Albanïi Armenïi - Antîyi tî Holânde Angoläa Arzantîna Samöa tî Amerîka @@ -431,10 +429,10 @@ For terms of use, see http://www.unicode.org/copyright.html - F4-1 - F4-2 - F4-3 - F4-4 + F4–1 + F4–2 + F4–3 + F4–4 Fângbisïö ôko @@ -446,6 +444,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + ND + LK + ND LK @@ -580,6 +582,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;¤-#,##0.00 + + + ¤0K + ¤00K + ¤000K + ¤0M + ¤00M + ¤000M + ¤0G + ¤00G + ¤000G + ¤0T + ¤00T + ¤000T + + @@ -756,3 +774,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sg_CF.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sg_CF.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sg_CF.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sg_CF.xml index e951386b607..5fe02e63bc4 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sg_CF.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sg_CF.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/shi.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/shi.xml similarity index 90% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/shi.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/shi.xml index b640485f4e9..901f56e2f3c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/shi.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/shi.xml @@ -1,13 +1,12 @@ - - - + @@ -45,7 +44,7 @@ For terms of use, see http://www.unicode.org/copyright.html ⵜⴰⵔⵓⵎⴰⵏⵉⵜ ⵜⴰⵔⵓⵙⵉⵜ ⵜⴰⵔⵓⵡⴰⵏⴷⵉⵜ - ⵜⴰⵎⴰⵣⵉⵖⵜ + ⵜⴰⵛⵍⵃⵉⵜ ⵜⴰⵙⵓⵎⴰⵍⵉⵜ ⵜⴰⵙⵡⵉⴷⵉⵜ ⵜⴰⵜⴰⵎⵉⵍⵜ @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html ⴰⵏⴳⵉⵍⴰ ⴰⵍⴱⴰⵏⵢⴰ ⴰⵔⵎⵉⵏⵢⴰ - ⴰⵏⵜⵉⵢ ⵏ ⵀⵓⵍⴰⵏⴷⴰ ⴰⵏⴳⵓⵍⴰ ⴰⵔⵊⴰⵏⵜⵉⵏ ⵙⴰⵎⵡⴰ ⵜⴰⵎⵉⵔⵉⴽⴰⵏⵉⵜ @@ -433,6 +431,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + ⵜⵉⴼⴰⵡⵜ + ⵜⴰⴷⴳⴳⵯⴰⵜ + ⵜⵉⴼⴰⵡⵜ ⵜⴰⴷⴳⴳⵯⴰⵜ @@ -471,28 +473,6 @@ For terms of use, see http://www.unicode.org/copyright.html - - - - HH:mm:ss zzzz - - - - - HH:mm:ss z - - - - - HH:mm:ss - - - - - HH:mm - - - M @@ -567,6 +547,46 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤ + + + 0K¤ + 0K¤ + 0K¤ + 00K¤ + 00K¤ + 00K¤ + 000K¤ + 000K¤ + 000K¤ + 0M¤ + 0M¤ + 0M¤ + 00M¤ + 00M¤ + 00M¤ + 000M¤ + 000M¤ + 000M¤ + 0G¤ + 0G¤ + 0G¤ + 00G¤ + 00G¤ + 00G¤ + 000G¤ + 000G¤ + 000G¤ + 0T¤ + 0T¤ + 0T¤ + 00T¤ + 00T¤ + 00T¤ + 000T¤ + 000T¤ + 000T¤ + + @@ -746,3 +766,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/shi_Latn.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/shi_Latn.xml similarity index 82% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/shi_Latn.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/shi_Latn.xml index 69311bc0e93..fdbaf4aefd3 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/shi_Latn.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/shi_Latn.xml @@ -1,63 +1,62 @@ - - - + - + @@ -555,11 +560,11 @@ For terms of use, see http://www.unicode.org/copyright.html - + - + - + @@ -628,7 +633,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albánsko Arménsko - Holandské Antily Angola Antarktída Argentína @@ -700,7 +704,7 @@ For terms of use, see http://www.unicode.org/copyright.html Fínsko Fidži Falklandy - Malvíny + Falklandy (Malvíny) Mikronézia Faerské ostrovy Francúzsko @@ -907,6 +911,9 @@ For terms of use, see http://www.unicode.org/copyright.html Číselné radenie Sila radenia mena + hodinový cyklus (12 vs 24) + štýl koncov riadka + merná sústava čísla Časové pásmo Variant miestneho nastavenia @@ -914,95 +921,105 @@ For terms of use, see http://www.unicode.org/copyright.html Súkromné použitie - arabsko-indické číslice - rozšírené arabsko-indické číslice - arménske číslice - malé arménske číslice - bengálske číslice - Tradičný čínsky Big5 - buddhistický kalendár - čínsky kalendár - Koptický kalendár - kórejský kalendár - číslice dévanágarí - Usporiadanie slovníka - predvolené zoradenie unicode - etiópske číslice - etiópsky kalendár - Etiópsky kalendár Amete Alem - Finančnícky zápis čísiel - číslice s celou šírkou - Zjednodušený čínsky GB2312 - gruzínske číslice - gregoriánsky kalendár - grécke číslice - malé grécke číslice - gudžarátske číslice - číslice gurumukhí - čínske desiatkové číslice - číslice zjednodušenej čínštiny - finančné číslice zjednodušenej čínštiny - číslice tradičnej čínštiny - finančné číslice tradičnej čínštiny - hebrejské číslice - židovský kalendár - Radiť všetko - Indický národný kalendár - islamský kalendár - Islamský občiansky kalendár - kalendár ISO 8601 - japonský kalendár - japonské číslice - japonské finančné číslice - khmérske číslice - kannadské číslice - laoské číslice - arabské číslice - Najprv radiť malé písmená - malajálamske číslice - Mongolské číslice - barmské číslice - Natívne číslice - Normálne radenie akcentov - Normálne radenie veľkých a malých písmen - Pri radení nerozlišovať veľké a malé písmená - Radiť slabičné písma (kana) samostatne - Radiť bez normalizácie - Radiť číslice jednotlivo - Radiť symboly - uríjske číslice - perzský kalendár - Lexikografické triedenie - Fonetické radenie - Triedenie pinyin - Radiť iba základné písmená - Radiť akcenty/veľké a malé písmená/šírku/kana - Reformované usporiadanie - čínsky republikánsky kalendár - rímske číslice - malé rímske číslice - všeobecné vyhľadávanie - Hľadať podľa počiatočnej spoluhlásky písma Hangul - Radiť akcenty - Pri radení ignorovať symboly - štandardné zoradenie - Tiedenie podľa ťahov - číslice tradičnej tamilčiny - tamilské číslice - telugské číslice - Radiť akcenty/veľké a malé písmená/šírku - thajské číslice - tibetské číslice - Tradičné - Tradičné číslovky - Usporiadanie podľa znakov radikál - Najprv radiť veľké písmená - Vaiské číslice - Radiť akcenty opačne - Pri radení rozlišovať veľké a malé písmená - Radiť slabičné písma (kana) inak - Radenie podľa normalizovaného kódovania Unicode - Numerické radenie číslic + buddhistický kalendár + čínsky kalendár + Koptický kalendár + kórejský kalendár + etiópsky kalendár + Etiópsky kalendár Amete Alem + gregoriánsky kalendár + židovský kalendár + Indický národný kalendár + islamský kalendár + Islamský občiansky kalendár + kalendár ISO 8601 + japonský kalendár + perzský kalendár + čínsky republikánsky kalendár + Radiť symboly + Pri radení ignorovať symboly + Normálne radenie akcentov + Radiť akcenty opačne + Najprv radiť malé písmená + Normálne radenie veľkých a malých písmen + Najprv radiť veľké písmená + Pri radení nerozlišovať veľké a malé písmená + Pri radení rozlišovať veľké a malé písmená + Radiť slabičné písma (kana) samostatne + Radiť slabičné písma (kana) inak + Tradičný čínsky Big5 + Usporiadanie slovníka + predvolené zoradenie unicode + Zjednodušený čínsky GB2312 + Lexikografické triedenie + Fonetické radenie + Triedenie pinyin + Reformované usporiadanie + všeobecné vyhľadávanie + Hľadať podľa počiatočnej spoluhlásky písma Hangul + štandardné zoradenie + Tiedenie podľa ťahov + Tradičné + Usporiadanie podľa znakov radikál + Radiť bez normalizácie + Radenie podľa normalizovaného kódovania Unicode + Radiť číslice jednotlivo + Numerické radenie číslic + Radiť všetko + Radiť iba základné písmená + Radiť akcenty/veľké a malé písmená/šírku/kana + Radiť akcenty + Radiť akcenty/veľké a malé písmená/šírku + 12-hodinový cyklus (0 – 11) + 12-hodinový cyklus (1 – 12) + 24-hodinový cyklus (0 – 23) + 24-hodinový cyklus (1 – 24) + voľný štýl koncov riadka + bežný štýl koncov riadka + presný štýl koncov riadka + metrická sústava + britská merná sústava + americká merná sústava + arabsko-indické číslice + rozšírené arabsko-indické číslice + arménske číslice + malé arménske číslice + bengálske číslice + číslice dévanágarí + etiópske číslice + Finančnícky zápis čísiel + číslice s celou šírkou + gruzínske číslice + grécke číslice + malé grécke číslice + gudžarátske číslice + číslice gurumukhí + čínske desiatkové číslice + číslice zjednodušenej čínštiny + finančné číslice zjednodušenej čínštiny + číslice tradičnej čínštiny + finančné číslice tradičnej čínštiny + hebrejské číslice + japonské číslice + japonské finančné číslice + khmérske číslice + kannadské číslice + laoské číslice + arabské číslice + malajálamske číslice + Mongolské číslice + barmské číslice + Natívne číslice + uríjske číslice + rímske číslice + malé rímske číslice + číslice tradičnej tamilčiny + tamilské číslice + telugské číslice + thajské číslice + tibetské číslice + Tradičné číslovky + Vaiské číslice BGN @@ -1051,8 +1068,8 @@ For terms of use, see http://www.unicode.org/copyright.html [A Ä B C Č D Ď E F G H {CH} I J K L Ľ M N O Ô P Q R S Š T Ť U V W X Y Z Ž] [\- ‐ – , ; \: ! ? . … ‘ ‚ “ „ ( ) \[ \] § @ * / \&] {0}… - … {0} - {0}… {1} + …{0} + {0}…{1} {0} … … {0} {0} … {1} @@ -1070,17 +1087,17 @@ For terms of use, see http://www.unicode.org/copyright.html - EEEE, d. MMMM y G + EEEE, d. M. y G - d. MMMM y G + d. M. y G - d.M.y G + d. M. y G @@ -1092,58 +1109,59 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1}, {0} - {1} {0} + {1}, {0} - {1} {0} + {1}, {0} - {1} {0} + {1}, {0} d. + ccc E d. y G LLL y G - d.M.y G - E, d. MMM y G - d. MMMM y G + d. M. y G + E d. M. y G + d. M. y G h a H h:mm a H:mm h:mm:ss a H:mm:ss - L. - d.M. - E, d.M. - LLL - d. MMM - E, d. MMM + M. + d. M. + E d. M. + LLL + d. M. + E d. M. d. MMMM - E, d. MMMM + E d. MMMM mm:ss mm:ss y G y G - M.y G - d.M.y G - E d. M. y G + M/y GGGGG + d. M. y GGGGG + E d. M. y GGGGG LLL y G - d.M.y G - E, d. MMM y G + d. M. y G + E d. M. y G LLLL y G - d. MMMM y G + d. MMMM y G QQQ y G QQQQ y G @@ -1188,57 +1206,57 @@ For terms of use, see http://www.unicode.org/copyright.html M. – M. - d.M. – d.M. - d.M. – d.M. + d. M. – d. M. + d. M. – d. M. - E, d.M. – E, d.M. - E, d.M. – E, d.M. + E d. M. – E d. M. + E d. M. – E d. M. LLL – LLL - d. – d. MMM - d. MMM – d. MMM + d. – d. M. + d. M. – d. M. - E, d. – E, d. MMM - E, d. MMM – E, d. MMM + E d. – E d. M. + E d. M. – E d. M. - LLLL–LLLL + LLLL – LLLL y – y G - M.y – M.y G - M.y – M.y G + M/y – M/y GGGGG + M/y – M/y GGGGG - d.M.y – d.M.y G - d.M.y – d.M.y G - d.M.y – d.M.y G + d. M. y – d. M. y G + d. M. y – d. M. y G + d. M. y – d. M. y G - E, d.M.y – E, d.M.y G - E, d.M.y – E, d.M.y G - E, d.M.y – E, d.M.y G + E d. M. y – E d. M. y G + E d. M. y – E d. M. y G + E d. M. y – E d. M. y G LLL – LLL y G LLL y – LLL y G - d. – d. MMM y G - d. MMM – d. MMM y G - d. MMM y – d. MMM y G + d. – d. M. y G + d. M. – d. M. y G + d. M. y – d. M. y G - E, d. – E, d. MMM y G - E, d. MMM – E, d. MMM y G - E, d. MMM y – E, d. MMM y G + E d. – E d. M. y G + E d. M. – E d. M. y G + E d. M. y – E d. M. y G LLLL – LLLL y G @@ -1350,22 +1368,22 @@ For terms of use, see http://www.unicode.org/copyright.html so - N - P - U - S - Š - P - S + n + p + u + s + š + p + s - Ne - Po - Ut - St - Št - Pi - So + ne + po + ut + st + št + pi + so nedeľa @@ -1388,22 +1406,22 @@ For terms of use, see http://www.unicode.org/copyright.html so - N - P - U - S - Š - P - S + n + p + u + s + š + p + s - Ne - Po - Ut - St - Št - Pi - So + ne + po + ut + st + št + pi + so nedeľa @@ -1460,15 +1478,73 @@ For terms of use, see http://www.unicode.org/copyright.html + + o poln. + AM + napol. + PM + ráno + dopol. + popol. + večer + v noci + - dop. - pol. - odp. + o poln. + AM + nap. + PM + ráno + dop. + pop. + več. + v n. - dopoludnia + o polnoci + AM + napoludnie + PM + ráno + dopoludnia + popoludní + večer + v noci + + + + + poln. + AM + pol. + PM + ráno + dopol. + popol. + večer + noc + + + poln. + AM + pol. + PM + ráno + dop. + pop. + več. + noc + + + polnoc + AM poludnie - odpoludnia + PM + ráno + dopoludnie + popoludnie + večer + noc @@ -1504,7 +1580,7 @@ For terms of use, see http://www.unicode.org/copyright.html - dd.MM.yy + d.M.yy @@ -1562,29 +1638,33 @@ For terms of use, see http://www.unicode.org/copyright.html y G LLLL y G d. M. y G - E, d. MMMM y G - d. MMMM y G + E, d. M. y G + d. M. y G h a H h:mm a H:mm h:mm:ss a H:mm:ss + h:mm:ss a v + H:mm:ss v + h:mm a v + H:mm v L. d. M. - E, d. M. + E d. M. LLL - d. M - E, d. M. + d. M. + E d. M. d. MMMM - E, d. MMMM + E d. MMMM mm:ss mm:ss y M/y d. M. y E d. M. y - LLLL y + M/y d. M. y E d. M. y LLLL y @@ -1636,23 +1716,23 @@ For terms of use, see http://www.unicode.org/copyright.html M. – M. - d.M. – d.M. - d.M. – d.M. + d. M. – d. M. + d. M. – d. M. - E, d.M. – E, d.M. - E, d.M. – E, d.M. + E d. M. – E d. M. + E d. M. – E d. M. LLL – LLL - d. – d. MMM - d. MMM – d. MMM + d. – d. M. + d. M. – d. M. - E, d. – E, d. MMM - E, d. MMM – E, d. MMM + E d. – E d. M. + E d. M. – E d. M. LLLL – LLLL @@ -1661,35 +1741,35 @@ For terms of use, see http://www.unicode.org/copyright.html y – y - M.y – M.y - M.y – M.y + M/y – M/y + M/y – M/y - d.M.y – d.M.y - d.M.y – d.M.y - d.M.y – d.M.y + d. M. y – d. M. y + d. M. y – d. M. y + d. M. y – d. M. y - E, d.M.y – E, d.M.y - E, d.M.y – E, d.M.y - E, d.M.y – E, d.M.y + E d. M. y – E d. M. y + E d. M. y – E d. M. y + E d. M. y – E d. M. y - LLL – LLL y - LLL – LLL y + M – M/y + M/y – M/y - d. – d. MMM y - y MMM d – MMM d - d. MMM y – d. MMM y + d. – d. M. y + d. M. – d. M. y + d. M. y – d. M. y - E, d. – E, d. MMM y - E, d. MMM – E, d. MMM y - E, d. MMM y – E, d. MMM y + E d. – E d. M. y + E d. M. – E d. M. y + E d. M. y – E d. M. y - LLLL y – LLLL y + LLLL – LLLL y LLLL y – LLLL y @@ -1714,7 +1794,7 @@ For terms of use, see http://www.unicode.org/copyright.html pred {0} rokom pred {0} rokmi - pred {0} rokom + pred {0} roka pred {0} rokmi @@ -1750,6 +1830,9 @@ For terms of use, see http://www.unicode.org/copyright.html štvrťrok + minulý štvrťrok + tento štvrťrok + budúci štvrťrok o {0} štvrťrok o {0} štvrťroky @@ -1759,12 +1842,15 @@ For terms of use, see http://www.unicode.org/copyright.html pred {0} štvrťrokom pred {0} štvrťrokmi - pred {0} štvrťrokom + pred {0} štvrťroka pred {0} štvrťrokmi Q + minulý štvrťr. + tento štvrťr. + budúci štvrťr. o {0} štvrťr. o {0} štvrťr. @@ -1780,6 +1866,9 @@ For terms of use, see http://www.unicode.org/copyright.html Q + minulý štvrťr. + tento štvrťr. + budúci štvrťr. o {0} štvrťr. o {0} štvrťr. @@ -1807,7 +1896,7 @@ For terms of use, see http://www.unicode.org/copyright.html pred {0} mesiacom pred {0} mesiacmi - pred {0} mesiacom + pred {0} mesiaca pred {0} mesiacmi @@ -1829,16 +1918,16 @@ For terms of use, see http://www.unicode.org/copyright.html mes. - o {0} mes. - o {0} mes. - o {0} mes. - o {0} mes. + o {0} mes. + o {0} mes. + o {0} mes. + o {0} mes. - pred {0} mes. - pred {0} mes. - pred {0} mes. - pred {0} mes. + pred {0} mes. + pred {0} mes. + pred {0} mes. + pred {0} mes. @@ -1855,7 +1944,7 @@ For terms of use, see http://www.unicode.org/copyright.html pred {0} týždňom pred {0} týždňami - pred {0} týždňom + pred {0} týždňa pred {0} týždňami @@ -1877,16 +1966,16 @@ For terms of use, see http://www.unicode.org/copyright.html týž. - o {0} týž. - o {0} týž. - o {0} týž. - o {0} týž. + o {0} týž. + o {0} týž. + o {0} týž. + o {0} týž. - pred {0} týž. - pred {0} týž. - pred {0} týž. - pred {0} týž. + pred {0} týž. + pred {0} týž. + pred {0} týž. + pred {0} týž. @@ -1905,7 +1994,7 @@ For terms of use, see http://www.unicode.org/copyright.html pred {0} dňom pred {0} dňami - pred {0} dňom + pred {0} dňa pred {0} dňami @@ -1927,16 +2016,16 @@ For terms of use, see http://www.unicode.org/copyright.html d. - o {0} d - o {0} d - o {0} d - o {0} d + o {0} d. + o {0} d. + o {0} d. + o {0} d. - pred {0} d - pred {0} d - pred {0} d - pred {0} d + pred {0} d. + pred {0} d. + pred {0} d. + pred {0} d. @@ -1978,9 +2067,9 @@ For terms of use, see http://www.unicode.org/copyright.html budúci utorok - minulý ut. - tento ut. - budúci ut. + minulý utor. + tento utor. + budúci utor. minulý ut. @@ -2106,7 +2195,7 @@ For terms of use, see http://www.unicode.org/copyright.html pred {0} minútou pred {0} minútami - pred {0} minútou + pred {0} minúty pred {0} minútami @@ -2152,7 +2241,7 @@ For terms of use, see http://www.unicode.org/copyright.html pred {0} sekundou pred {0} sekundami - Pred {0} sekundami + pred {0} sekundy pred {0} sekundami @@ -2194,15 +2283,15 @@ For terms of use, see http://www.unicode.org/copyright.html +HH:mm;-HH:mm GMT{0} GMT - Časové pásmo {0} - {0} (+1) - {0} (+0) + časové pásmo {0} + {0} (+1) + {0} (+0) {1} ({0}) - Neznáme mesto + neznáme mesto - Andorra + Andorra Dubaj @@ -2211,10 +2300,10 @@ For terms of use, see http://www.unicode.org/copyright.html Kábul - Antigua + Antigua - Anguilla + Anguilla Tirana @@ -2223,7 +2312,7 @@ For terms of use, see http://www.unicode.org/copyright.html Jerevan - Luanda + Luanda Rothera @@ -2235,7 +2324,7 @@ For terms of use, see http://www.unicode.org/copyright.html Troll - Syowa + Šówa Mawson @@ -2256,100 +2345,100 @@ For terms of use, see http://www.unicode.org/copyright.html McMurdo - Rio Gallegos + Rio Gallegos - Mendoza + Mendoza - San Juan + San Juan - Ushuaia + Ushuaia - La Rioja + La Rioja - San Luis + San Luis - Catamarca + Catamarca - Salta + Salta - Jujuy + Jujuy - Tucuman + Tucuman Córdoba - Buenos Aires + Buenos Aires - Pago Pago + Pago Pago Viedeň - Perth + Perth - Eucla + Eucla - Darwin + Darwin - Adelaide + Adelaide - Broken Hill + Broken Hill - Currie + Currie - Melbourne + Melbourne - Hobart + Hobart - Lindeman + Lindeman - Sydney + Sydney - Brisbane + Brisbane - Macquarie + Macquarie - Lord Howe + Lord Howe - Aruba + Aruba - Mariehamn + Mariehamn - Baku + Baku - Sarajevo + Sarajevo - Barbados + Barbados Dháka @@ -2358,19 +2447,19 @@ For terms of use, see http://www.unicode.org/copyright.html Brusel - Ouagadougou + Ouagadougou - Sofia + Sofia Bahrajn - Bujumbura + Bujumbura - Porto-Novo + Porto-Novo Svätý Bartolomej @@ -2382,25 +2471,25 @@ For terms of use, see http://www.unicode.org/copyright.html Brunej - La Paz + La Paz - Kralendijk + Kralendijk Eirunepé - Rio Branco + Rio Branco - Porto Velho + Porto Velho - Boa Vista + Boa Vista - Manaus + Manaus Cuiabá @@ -2409,124 +2498,124 @@ For terms of use, see http://www.unicode.org/copyright.html Santarém - Campo Grande + Campo Grande Belém - Araguaina + Araguaina São Paulo - Bahia + Bahia - Fortaleza + Fortaleza Maceió - Recife + Recife - Noronha + Noronha - Nassau + Nassau - Thimphu + Thimphu - Gaborone + Gaborone - Minsk + Minsk - Belize + Belize - Dawson + Dawson - Whitehorse + Whitehorse - Inuvik + Inuvik - Vancouver + Vancouver - Dawson Creek + Dawson Creek - Creston + Creston - Yellowknife + Yellowknife - Edmonton + Edmonton - Swift Current + Swift Current - Cambridge Bay + Cambridge Bay - Regina + Regina - Winnipeg + Winnipeg - Resolute + Resolute - Rainy River + Rainy River - Rankin Inlet + Rankin Inlet - Atikokan + Atikokan - Thunder Bay + Thunder Bay - Nipigon + Nipigon - Toronto + Toronto - Iqaluit + Iqaluit - Pangnirtung + Pangnirtung - Moncton + Moncton - Halifax + Halifax - Goose Bay + Goose Bay - Glace Bay + Glace Bay - Blanc-Sablon + Blanc-Sablon St. John’s @@ -2535,34 +2624,34 @@ For terms of use, see http://www.unicode.org/copyright.html Kokosové ostrovy - Kinshasa + Kinshasa - Lubumbashi + Lubumbashi - Bangui + Bangui - Brazzaville + Brazzaville Zürich - Abidjan + Abidjan - Rarotonga + Rarotonga Veľkonočný ostrov - Santiago + Santiago - Douala + Douala Urumči @@ -2571,13 +2660,13 @@ For terms of use, see http://www.unicode.org/copyright.html Šanghaj - Bogota + Bogotá Kostarika - Havana + Havana Kapverdy @@ -2601,7 +2690,7 @@ For terms of use, see http://www.unicode.org/copyright.html Berlín - Džibutsko + Džibuti Kodaň @@ -2610,7 +2699,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dominika - Santo Domingo + Santo Domingo Alžír @@ -2619,10 +2708,10 @@ For terms of use, see http://www.unicode.org/copyright.html Galapágy - Guayaquil + Guayaquil - Tallinn + Tallinn Káhira @@ -2631,37 +2720,37 @@ For terms of use, see http://www.unicode.org/copyright.html El-Aaiún - Asmara + Asmara Kanárske ostrovy - Ceuta + Ceuta - Madrid + Madrid Addis Abeba - Helsinki + Helsinki Fidži - Stanley + Stanley - Chuuk + Chuuk - Pohnpei + Pohnpei - Kosrae + Kosrae Faerské ostrovy @@ -2670,55 +2759,55 @@ For terms of use, see http://www.unicode.org/copyright.html Paríž - Libreville + Libreville - Britský letný čas + britský letný čas Londýn - Grenada + Grenada - Tbilisi + Tbilisi - Cayenne + Cayenne - Guernsey + Guernsey - Accra + Accra Gibraltár - Thule + Thule - Nuuk + Nuuk - Ittoqqortoormiit + Ittoqqortoormiit - Danmarkshavn + Danmarkshavn - Banjul + Banjul - Conakry + Conakry - Guadeloupe + Guadeloupe - Malabo + Malabo Atény @@ -2727,49 +2816,49 @@ For terms of use, see http://www.unicode.org/copyright.html Južná Georgia - Guatemala + Guatemala - Guam + Guam - Bissau + Bissau - Guyana + Guyana Hongkong - Tegucigalpa + Tegucigalpa Záhreb - Port-au-Prince + Port-au-Prince - Budapešť + Budapešť - Jakarta + Jakarta - Pontianak + Pontianak - Makassar + Makassar - Jayapura + Jayapura - Írsky štandardný čas + írsky štandardný čas - Dublin + Dublin Jeruzalem @@ -2796,7 +2885,7 @@ For terms of use, see http://www.unicode.org/copyright.html Rím - Jersey + Jersey Jamajka @@ -2808,7 +2897,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tokio - Nairobi + Nairobi Biškek @@ -2817,16 +2906,16 @@ For terms of use, see http://www.unicode.org/copyright.html Phnom Pénh - Enderbury + Enderbury - Kiritimati + Kiritimati - Tarawa + Tarawa - Comoro + Komory St. Kitts @@ -2841,7 +2930,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kuvajt - Cayman + Kajmanie ostrovy Aktau @@ -2856,7 +2945,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kyzylorda - Alma-Ata + Almaty Vientian @@ -2865,7 +2954,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bejrút - Svätá Lucia + Svätá Lucia Vaduz @@ -2874,25 +2963,25 @@ For terms of use, see http://www.unicode.org/copyright.html Kolombo - Monrovia + Monrovia - Maseru + Maseru - Vilnius + Vilnius Luxembursko - Riga + Riga Tripolis - Casablanca + Casablanca Monako @@ -2901,31 +2990,31 @@ For terms of use, see http://www.unicode.org/copyright.html Kišiňov - Podgorica + Podgorica - Marigot + Marigot - Antananarivo + Antananarivo - Kwajalein + Kwajalein - Majuro + Majuro - Skopje + Skopje - Bamako + Bamako Rangún - Hovd + Chovd Ulanbátar @@ -2937,19 +3026,19 @@ For terms of use, see http://www.unicode.org/copyright.html Macao - Saipan + Saipan Martinik - Nouakchott + Nouakchott - Montserrat + Montserrat - Malta + Malta Maurícius @@ -2958,37 +3047,37 @@ For terms of use, see http://www.unicode.org/copyright.html Maldivy - Blantyre + Blantyre - Tijuana + Tijuana - Santa Isabel + Santa Isabel - Hermosillo + Hermosillo Mazatlán - Chihuahua + Chihuahua - Bahia Banderas + Bahia Banderas - Ojinaga + Ojinaga - Monterrey + Monterrey - Mexiko (mesto) + México - Matamoros + Matamoros Mérida @@ -2997,61 +3086,61 @@ For terms of use, see http://www.unicode.org/copyright.html Cancún - Kuala Lumpur + Kuala Lumpur Kučing - Maputo + Maputo - Windhoek + Windhoek Nouméa - Niamey + Niamey - Norfolk + Norfolk - Lagos + Lagos - Managua + Managua Amsterdam - Oslo + Oslo Káthmandu - Nauru + Nauru - Niue + Niue - Chatham + Chatham - Auckland + Auckland Maskat - Panama + Panama - Lima + Lima Tahiti @@ -3063,10 +3152,13 @@ For terms of use, see http://www.unicode.org/copyright.html Gambier - Port Moresby + Port Moresby + + + Bougainville - Manila + Manila Karáči @@ -3075,7 +3167,7 @@ For terms of use, see http://www.unicode.org/copyright.html Varšava - Miquelon + Miquelon Pitcairn @@ -3084,22 +3176,22 @@ For terms of use, see http://www.unicode.org/copyright.html Portoriko - Gaza + Gaza - Hebron + Hebron - Azorské ostrovy + Azory - Madeira + Madeira Lisabon - Palau + Palau Asunción @@ -3117,25 +3209,25 @@ For terms of use, see http://www.unicode.org/copyright.html Belehrad - Kaliningrad + Kaliningrad - Simferopol + Simferopol Moskva - Volgograd + Volgograd - Samara + Samara Jekaterinburg - Omsk + Omsk Novosibirsk @@ -3149,6 +3241,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Čita + Jakutsk @@ -3165,22 +3260,25 @@ For terms of use, see http://www.unicode.org/copyright.html Usť-Nera - Magadan + Magadan + + + Srednekolymsk Kamčatka - Anadyr + Anadyr - Kigali + Kigali - Rijád + Rijád - Guadalcanal + Guadalcanal Mahé @@ -3195,34 +3293,34 @@ For terms of use, see http://www.unicode.org/copyright.html Singapur - Sv. Helena + Svätá Helena Ľubľana - Longyearbyen + Longyearbyen Bratislava - Freetown + Freetown San Maríno - Dakar + Dakar Mogadišo - Paramaribo + Paramaribo - Juba + Juba Svätý Tomáš @@ -3237,22 +3335,22 @@ For terms of use, see http://www.unicode.org/copyright.html Damask - Mbabane + Mbabane - Grand Turk + Grand Turk - Ndjamena + N’Djamena Kergueleny - Lome + Lomé - Bangkok + Bangkok Dušanbe @@ -3261,22 +3359,22 @@ For terms of use, see http://www.unicode.org/copyright.html Fakaofo - Dili + Dili Ašchabad - Tunis + Tunis Tongatapu - Istanbul + Istanbul - Port of Spain + Port of Spain Funafuti @@ -3285,7 +3383,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tchaj-pej - Dar es Salaam + Dar es Salaam Užhorod @@ -3297,7 +3395,7 @@ For terms of use, see http://www.unicode.org/copyright.html Záporožie - Kampala + Kampala Midway @@ -3309,40 +3407,40 @@ For terms of use, see http://www.unicode.org/copyright.html Wake - Adak + Adak - Nome + Nome - Honolulu + Honolulu Anchorage - Yakutat + Yakutat - Sitka + Sitka - Juneau + Juneau - Metlakatla + Metlakatla - Los Angeles + Los Angeles - Boise + Boise - Phoenix + Phoenix - Denver + Denver Beulah, Severná Dakota @@ -3354,52 +3452,52 @@ For terms of use, see http://www.unicode.org/copyright.html Center, Severná Dakota - Chicago + Chicago - Menominee + Menominee - Vincennes, Indiana + Vincennes, Indiana - Petersburg, Indiana + Petersburg, Indiana - Tell City, Indiana + Tell City, Indiana - Knox, Indiana + Knox, Indiana - Winamac, Indiana + Winamac, Indiana - Marengo, Indiana + Marengo, Indiana - Indianapolis + Indianapolis - Louisville + Louisville - Vevay, Indiana + Vevay, Indiana - Monticello, Kentucky + Monticello, Kentucky - Detroit + Detroit - New York + New York - Montevideo + Montevideo - Samarkand + Samarkand Taškent @@ -3408,22 +3506,22 @@ For terms of use, see http://www.unicode.org/copyright.html Vatikán - Sv. Vincent + Sv. Vincent - Caracas + Caracas - Tortola + Tortola - Sv. Tomáš + Sv. Tomáš - Hočiminovo Mesto + Hočiminovo Mesto - Efate + Efate Wallis @@ -3432,87 +3530,87 @@ For terms of use, see http://www.unicode.org/copyright.html Apia - Aden + Aden - Mayotte + Mayotte - Johannesburg + Johannesburg - Lusaka + Lusaka - Harare + Harare - Afganský čas + afganský čas - Stredoafrický čas + stredoafrický čas - Východoafrický čas + východoafrický čas - Juhoafrický čas + juhoafrický čas - Západoafrický čas - Západoafrický štandardný čas - Západoafrický letný čas + západoafrický čas + západoafrický štandardný čas + západoafrický letný čas - Aljašský čas - Aljašský štandardný čas - Aljašský letný čas + aljašský čas + aljašský štandardný čas + aljašský letný čas - Amazonský čas - Amazonský štandardný čas - Amazonský letný čas + amazonský čas + amazonský štandardný čas + amazonský letný čas - Centrálny čas - Centrálny štandardný čas - Centrálny letný čas + severoamerický centrálny čas + severoamerický centrálny štandardný čas + severoamerický centrálny letný čas - Východný čas - Východný štandardný čas - Východný letný čas + severoamerický východný čas + severoamerický východný štandardný čas + severoamerický východný letný čas - Horský čas - Horský štandardný čas - Horský letný čas + severoamerický horský čas + severoamerický horský štandardný čas + severoamerický horský letný čas - Tichomorský čas - Tichomorský štandardný čas - Tichomorský letný čas + severoamerický tichomorský čas + severoamerický tichomorský štandardný čas + severoamerický tichomorský letný čas @@ -3524,220 +3622,220 @@ For terms of use, see http://www.unicode.org/copyright.html - Apijský čas - Apijský štandardný čas - Apijský letný čas + apijský čas + apijský štandardný čas + apijský letný čas - Arabský čas - Arabský štandardný čas - Arabský letný čas + arabský čas + arabský štandardný čas + arabský letný čas - Argentínsky čas - Argentínsky štandardný čas - Argentínsky letný čas + argentínsky čas + argentínsky štandardný čas + argentínsky letný čas - Západoargentínsky čas - Západoargentínsky štandardný čas - Západoargentínsky letný čas + západoargentínsky čas + západoargentínsky štandardný čas + západoargentínsky letný čas - Arménsky čas - Arménsky štandardný čas - Arménsky letný čas + arménsky čas + arménsky štandardný čas + arménsky letný čas - Atlantický čas - Atlantický štandardný čas - Atlantický letný čas + atlantický čas + atlantický štandardný čas + atlantický letný čas - Stredoaustrálsky čas - Stredoaustrálsky štandardný čas - Stredoaustrálsky letný čas + stredoaustrálsky čas + stredoaustrálsky štandardný čas + stredoaustrálsky letný čas - Stredozápadný austrálsky čas - Stredozápadný austrálsky štandardný čas - Stredozápadný austrálsky letný čas + stredozápadný austrálsky čas + stredozápadný austrálsky štandardný čas + stredozápadný austrálsky letný čas - Východoaustrálsky čas - Východoaustrálsky štandardný čas - Východoaustrálsky letný čas + východoaustrálsky čas + východoaustrálsky štandardný čas + východoaustrálsky letný čas - Západoaustrálsky čas - Západoaustrálsky štandardný čas - Západoaustrálsky letný čas + západoaustrálsky čas + západoaustrálsky štandardný čas + západoaustrálsky letný čas - Azerbajdžanský čas - Azerbajdžanský štandardný čas - Azerbajdžanský letný čas + azerbajdžanský čas + azerbajdžanský štandardný čas + azerbajdžanský letný čas - Azorský čas - Azorský štandardný čas - Azorský letný čas + azorský čas + azorský štandardný čas + azorský letný čas - Bangladéšsky čas - Bangladéšsky štandardný čas - Bangladéšsky letný čas + bangladéšsky čas + bangladéšsky štandardný čas + bangladéšsky letný čas - Bhutánsky čas + bhutánsky čas - Bolívijský čas + bolívijský čas - Brazílsky čas - Brazílsky štandardný čas - Brazílsky letný čas + brazílsky čas + brazílsky štandardný čas + brazílsky letný čas - Brunejský čas + brunejský čas - Kapverdský čas - Kapverdský štandardný čas - Kapverdský letný čas + kapverdský čas + kapverdský štandardný čas + kapverdský letný čas - Chamorrský štandardný čas + chamorrský štandardný čas - Chathamský čas - Chathamský štandardný čas - Chathamský letný čas + chathamský čas + chathamský štandardný čas + chathamský letný čas - Čilský čas - Čilský štandardný čas - Čilský letný čas + čilský čas + čilský štandardný čas + čilský letný čas - Čínsky čas - Čínsky štandardný čas - Čínsky letný čas + čínsky čas + čínsky štandardný čas + čínsky letný čas - Choibalsanský čas - Čojbalsanský štandardný čas - Choibalsanský letný čas + čojbalsanský čas + čojbalsanský štandardný čas + čojbalsanský letný čas - Čas Vianočného ostrova + čas Vianočného ostrova - Čas Kokosových ostrovov + čas Kokosových ostrovov - Kolumbijský čas - Kolumbijský štandardný čas - Kolumbijský letný čas + kolumbijský čas + kolumbijský štandardný čas + kolumbijský letný čas - Čas Cookových ostrovov - Štandardný čas Cookových ostrovov - Letný čas Cookových ostrovov + čas Cookových ostrovov + štandardný čas Cookových ostrovov + letný čas Cookových ostrovov - Kubánsky čas - Kubánsky štandardný čas - Kubánsky letný čas + kubánsky čas + kubánsky štandardný čas + kubánsky letný čas - Čas Davisovej stanice + čas Davisovej stanice - Čas stanice Dumonta d’Urvillea + čas stanice Dumonta d’Urvillea - Východotimorský čas + východotimorský čas - Čas Veľkonočného ostrova - Štandardný čas Veľkonočného ostrova - Letný čas Veľkonočného ostrova + čas Veľkonočného ostrova + štandardný čas Veľkonočného ostrova + letný čas Veľkonočného ostrova - Ekvádorský čas + ekvádorský čas - Stredoeurópsky čas - Stredoeurópsky štandardný čas - Stredoeurópsky letný čas + stredoeurópsky čas + stredoeurópsky štandardný čas + stredoeurópsky letný čas SEČ @@ -3747,175 +3845,175 @@ For terms of use, see http://www.unicode.org/copyright.html - Východoeurópsky čas - Východoeurópsky štandardný čas - Východoeurópsky letný čas + východoeurópsky čas + východoeurópsky štandardný čas + východoeurópsky letný čas - Ďalší východoeurópsky čas + minský čas - Západoeurópsky čas - Západoeurópsky štandardný čas - Západoeurópsky letný čas + západoeurópsky čas + západoeurópsky štandardný čas + západoeurópsky letný čas - Čas Falklandských ostrovov - Štandardný čas Falklandských ostrovov - Letný čas Falklandských ostrovov + falklandský čas + falklandský štandardný čas + falklandský letný čas - Fidžijský čas - Fidžijský štandardný čas - Fidžijský letný čas + fidžijský čas + fidžijský štandardný čas + fidžijský letný čas - Čas Francúzskej Guyany + francúzskoguyanský čas - Francúzsky južný a antarktický čas + čas Francúzskych južných a antarktických území - Galapágsky čas + galapágsky čas - Gambierský čas + gambierský čas - Gruzínsky čas - Gruzínsky štandardný čas - Gruzínsky letný čas + gruzínsky čas + gruzínsky štandardný čas + gruzínsky letný čas - Čas Gilbertových ostrovov + čas Gilbertových ostrovov - Greenwichský čas + greenwichský čas - Východogrónsky čas - Východogrónsky štandardný čas - Východogrónsky letný čas + východogrónsky čas + východogrónsky štandardný čas + východogrónsky letný čas - Západogrónsky čas - Západogrónsky štandardný čas - Západogrónsky letný čas + západogrónsky čas + západogrónsky štandardný čas + západogrónsky letný čas - Štandardný čas Perzského zálivu + štandardný čas Perzského zálivu - Guyanský čas + guyanský čas - Havajsko-aleutský čas - Havajsko-aleutský štandardný čas - Havajsko-aleutský letný čas + havajsko-aleutský čas + havajsko-aleutský štandardný čas + havajsko-aleutský letný čas - Hongkongský čas - Hongkongský štandardný čas - Hongkongský letný čas + hongkonský čas + hongkonský štandardný čas + hongkonský letný čas - Chovdský čas - Chovdský štandardný čas - Chovdský letný čas + chovdský čas + chovdský štandardný čas + chovdský letný čas - Indický čas + indický čas - Čas Indického oceánu + indickooceánsky čas - Indočínsky čas + indočínsky čas - Stredoindonézsky čas + stredoindonézsky čas - Východoindonézsky čas + východoindonézsky čas - Západoindonézsky čas + západoindonézsky čas - Iránsky čas - Iránsky štandardný čas - Iránsky letný čas + iránsky čas + iránsky štandardný čas + iránsky letný čas - Irkutský čas - Irkutský štandardný čas - Irkutský letný čas + irkutský čas + irkutský štandardný čas + irkutský letný čas - Izraelský čas - Izraelský štandardný čas - Izraelský letný čas + izraelský čas + izraelský štandardný čas + izraelský letný čas - Japonský čas - Japonský štandardný čas - Japonský letný čas + japonský čas + japonský štandardný čas + japonský letný čas @@ -3927,264 +4025,264 @@ For terms of use, see http://www.unicode.org/copyright.html - Východokazašský čas + východokazachstanský čas - Západokazašský čas + západokazachstanský čas - Kórejský čas - Kórejský štandardný čas - Kórejský letný čas + kórejský čas + kórejský štandardný čas + kórejský letný čas - Kosraeský čas + kosrajský čas - Krasnojarský čas - Krasnojarský štandardný čas - Krasnojarský letný čas + krasnojarský čas + krasnojarský štandardný čas + krasnojarský letný čas - Kirgizský čas + kirgizský čas - Čas Rovníkových ostrovov + čas Rovníkových ostrovov - Čas ostrova lorda Howa - Štandardný čas ostrova lorda Howa - Letný čas ostrova lorda Howa + čas ostrova lorda Howa + štandardný čas ostrova lorda Howa + letný čas ostrova lorda Howa - Čas ostrova Macquarie + čas ostrova Macquarie - Magadanský čas - Magadanský štandardný čas - Magadanský letný čas + magadanský čas + magadanský štandardný čas + magadanský letný čas - Malajzijský čas + malajzijský čas - Maldivský čas + maldivský čas - Markézsky čas + markézsky čas - Čas Marshallových ostrovov + čas Marshallových ostrovov - Maurícijský čas - Maurícijský štandardný čas - Maurícijský letný čas + maurícijský čas + maurícijský štandardný čas + maurícijský letný čas - Čas Mawsonovej stanice + čas Mawsonovej stanice - Severozápadný mexický čas - Severozápadný mexický štandardný čas - Severozápadný mexický letný čas + severozápadný mexický čas + severozápadný mexický štandardný čas + severozápadný mexický letný čas - Mexický tichomorský čas - Mexický tichomorský štandardný čas - Mexický tichomorský letný čas + mexický tichomorský čas + mexický tichomorský štandardný čas + mexický tichomorský letný čas - Ulanbátarský čas - Ulanbátarský štandardný čas - Ulanbátarský letný čas + ulanbátarský čas + ulanbátarský štandardný čas + ulanbátarský letný čas - Moskovský čas - Moskovský štandardný čas - Moskovský letný čas + moskovský čas + moskovský štandardný čas + moskovský letný čas - Mjanmarský čas + mjanmarský čas - Čas ostrova Nauru + nauruský čas - Nepálsky čas + nepálsky čas - Novokaledónsky čas - Novokaledónsky štandardný čas - Novokaledónsky letný čas + novokaledónsky čas + novokaledónsky štandardný čas + novokaledónsky letný čas - Novozélandský čas - Novozélandský štandardný čas - Novozélandský letný čas + novozélandský čas + novozélandský štandardný čas + novozélandský letný čas - Newfoundlandský čas - Newfoundlandský štandardný čas - Newfoundlandský letný čas + newfoundlandský čas + newfoundlandský štandardný čas + newfoundlandský letný čas - Čas ostrova Niue + niuejský čas - Čas Norfolkských ostrovov + norfolský čas - Čas ostrova Fernando de Noronha - Štandardný čas ostrova Fernando de Noronha - Letný čas ostrovov Fernanda de Noronha + čas súostrovia Fernando de Noronha + štandardný čas súostrovia Fernando de Noronha + letný čas súostrovia Fernando de Noronha - Novosibírsky čas - Novosibirský štandardný čas - Novosibírsky letný čas + novosibirský čas + novosibirský štandardný čas + novosibirský letný čas - Omský čas - Omský štandardný čas - Omský letný čas + omský čas + omský štandardný čas + omský letný čas - Pakistanský čas - Pakistanský štandardný čas - Pakistanský letný čas + pakistanský čas + pakistanský štandardný čas + pakistanský letný čas - Palauský čas + palauský čas - Čas Papuy-Novej Guiney + čas Papuy-Novej Guiney - Paraguajský čas - Paraguajský štandardný čas - Paraguajský letný čas + paraguajský čas + paraguajský štandardný čas + paraguajský letný čas - Peruánsky čas - Peruánsky štandardný čas - Peruánsky letný čas + peruánsky čas + peruánsky štandardný čas + peruánsky letný čas - Filipínsky čas - Filipínsky štandardný čas - Filipínsky letný čas + filipínsky čas + filipínsky štandardný čas + filipínsky letný čas - Čas Fénixových ostrovov + čas Fénixových ostrovov - Čas ostrovov Saint-Pierre a Miquelon - Štandardný čas ostrovov Saint-Pierre a Miquelon - Letný čas ostrovov Saint-Pierre a Miquelon + pierre-miquelonský čas + pierre-miquelonský štandardný čas + pierre-miquelonský letný čas - Čas Pitcairnovho ostrova + čas Pitcairnových ostrovov - Ponapský čas + ponapský čas - Réunionský čas + réunionský čas - Čas Rotherovej stanice + čas Rotherovej stanice - Sachalinský čas - Sachalinský štandardný čas - Sachalinský letný čas + sachalinský čas + sachalinský štandardný čas + sachalinský letný čas @@ -4196,154 +4294,154 @@ For terms of use, see http://www.unicode.org/copyright.html - Samojský čas - Samojský štandardný čas - Samojský letný čas + samojský čas + samojský štandardný čas + samojský letný čas - Seychelský čas + seychelský čas - Singapurský štandardný čas + singapurský štandardný čas - Čas Šalamúnových ostrovov + čas Šalamúnových ostrovov - Čas Južnej Georgie + čas Južnej Georgie - Surinamský čas + surinamský čas - Čas stanice Šówa + čas stanice Šówa - Tahitský čas + tahitský čas - Tchajpejský čas - Tchajpejský štandardný čas - Tchajpejský letný čas + tchajpejský čas + tchajpejský štandardný čas + tchajpejský letný čas - Tadžický čas + tadžický čas - Tokelauský čas + tokelauský čas - Tonžský čas - Tonžský štandardný čas - Tonžský letný čas + tonžský čas + tonžský štandardný čas + tonžský letný čas - Chuukský čas + chuukský čas - Turkménsky čas - Turkménsky štandardný čas - Turkménsky letný čas + turkménsky čas + turkménsky štandardný čas + turkménsky letný čas - Tuvalský čas + tuvalský čas - Uruguajský čas - Uruguajský štandardný čas - Uruguajský letný čas + uruguajský čas + uruguajský štandardný čas + uruguajský letný čas - Uzbecký čas - Uzbecký štandardný čas - Uzbecký letný čas + uzbecký čas + uzbecký štandardný čas + uzbecký letný čas - Vanuatský čas - Vanuatský štandardný čas - Vanuatský letný čas + vanuatský čas + vanuatský štandardný čas + vanuatský letný čas - Venezuelský čas + venezuelský čas - Vladivostocký čas - Vladivostocký štandardný čas - Vladivostocký letný čas + vladivostocký čas + vladivostocký štandardný čas + vladivostocký letný čas - Volgogradský čas - Volgogradský štandardný čas - Volgogradský letný čas + volgogradský čas + volgogradský štandardný čas + volgogradský letný čas - Čas stanice Vostok + čas stanice Vostok - Čas ostrova Wake + čas ostrova Wake - Čas ostrovov Wallis a Futuna + čas ostrovov Wallis a Futuna - Jakutský čas - Jakutský štandardný čas - Jakutský letný čas + jakutský čas + jakutský štandardný čas + jakutský letný čas - Jekaterinburgský čas - Jekaterinburgský štandardný čas - Jekaterinburský letný čas + jekaterinburský čas + jekaterinburský štandardný čas + jekaterinburský letný čas @@ -4377,52 +4475,52 @@ For terms of use, see http://www.unicode.org/copyright.html 0 tisíc - 0 tisíc - 0 tisíc + 0 tisíce + 0 tisíca 0 tisíc 00 tisíc 00 tisíc - 00 tisíc + 00 tisíca 00 tisíc 000 tisíc 000 tisíc - 000 tisíc + 000 tisíca 000 tisíc 0 milión 0 milióny - 0 miliónov + 0 milióna 0 miliónov - 00 milión - 00 milióny - 00 miliónov + 00 miliónov + 00 miliónov + 00 milióna 00 miliónov - 000 milión - 000 milióny - 000 miliónov + 000 miliónov + 000 miliónov + 000 milióna 000 miliónov 0 miliarda 0 miliardy - 0 miliard - 0 miliard - 00 miliarda - 00 miliárdy - 00 miliárd + 0 miliardy + 0 miliárd + 00 miliárd + 00 miliárd + 00 miliardy 00 miliárd - 000 miliarda - 000 miliárdy - 000 miliárd + 000 miliárd + 000 miliárd + 000 miliardy 000 miliárd 0 bilión 0 bilióny - 0 biliónov + 0 bilióna 0 biliónov - 00 bilión - 00 bilióny - 00 biliónov + 00 biliónov + 00 biliónov + 00 bilióna 00 biliónov - 000 bilión - 000 bilióny - 000 biliónov + 000 biliónov + 000 biliónov + 000 bilióna 000 biliónov @@ -4502,6 +4600,58 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤;(#,##0.00 ¤) + + + 0 tis'.' ¤ + 0 tis'.' ¤ + 0 tis'.' ¤ + 0 tis'.' ¤ + 00 tis'.' ¤ + 00 tis'.' ¤ + 00 tis'.' ¤ + 00 tis'.' ¤ + 000 tis'.' ¤ + 000 tis'.' ¤ + 000 tis'.' ¤ + 000 tis'.' ¤ + 0 mil'.' ¤ + 0 mil'.' ¤ + 0 mil'.' ¤ + 0 mil'.' ¤ + 00 mil'.' ¤ + 00 mil'.' ¤ + 00 mil'.' ¤ + 00 mil'.' ¤ + 000 mil'.' ¤ + 000 mil'.' ¤ + 000 mil'.' ¤ + 000 mil'.' ¤ + 0 mld'.' ¤ + 0 mld'.' ¤ + 0 mld'.' ¤ + 0 mld'.' ¤ + 00 mld'.' ¤ + 00 mld'.' ¤ + 00 mld'.' ¤ + 00 mld'.' ¤ + 000 mld'.' ¤ + 000 mld'.' ¤ + 000 mld'.' ¤ + 000 mld'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + + {0} {1} {0} {1} {0} {1} @@ -4509,7 +4659,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Andorská peseta + andorská peseta SAE dirham @@ -4558,21 +4708,22 @@ For terms of use, see http://www.unicode.org/copyright.html angolskej kwanzy angolských kwánz AOA + Kz - Angolská kwanza (1977–1990) + angolská kwanza (1977–1990) Angolská nová kwanza (1990–2000) - Angolská kwanza Reajustado (1995–1999) + angolská kwanza reajustado (1995–1999) - Argentinský austral + argentínsky austral - Argentinské peso (1983–1985) + argentínske peso (1983 – 1985) argentínske peso @@ -4584,7 +4735,7 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Rakúsky šiling + rakúsky šiling austrálsky dolár @@ -4604,11 +4755,12 @@ For terms of use, see http://www.unicode.org/copyright.html AWG - Azerbajdžanský manat (1993–2006) + azerbajdžanský manat (1993–2006) azerbajdžanský manat (1993–2006) azerbajdžanské manaty (1993–2006) azerbajdžanského manatu (1993–2006) azerbajdžanských manatov (1993–2006) + AZM azerbajdžanský manat @@ -4619,7 +4771,7 @@ For terms of use, see http://www.unicode.org/copyright.html AZN - Bosnianský dinár + bosniansko-hercegovinský dinár (1992–1994) konvertibilná marka @@ -4628,6 +4780,7 @@ For terms of use, see http://www.unicode.org/copyright.html konvertibilnej marky konvertibilných mariek BAM + KM barbadoský dolár @@ -4648,16 +4801,16 @@ For terms of use, see http://www.unicode.org/copyright.html - Belgický frank (konvertibilný) + belgický frank (konvertibilný) - Belgický frank + belgický frank - Belgický frank (finančný) + belgický frank (finančný) - Bulharský leva + bulharský tvrdý lev bulharský lev @@ -4708,21 +4861,22 @@ For terms of use, see http://www.unicode.org/copyright.html bolívijského boliviana bolívijských bolivian BOB + Bs - Bolivíjske peso + bolívijské peso - Bolivíjske mvdol + bolívijské MVDOL - Bolivíjske Cruzeiro Novo (1967–1986) + brazílske cruzeiro novo (1967–1986) - Bolivíjske cruzado + brazílske cruzado (1986 – 1989) - Bolivíjske cruzeiro (1990–1993) + brazílske cruzeiro (1990 – 1993) brazílsky real @@ -4766,6 +4920,7 @@ For terms of use, see http://www.unicode.org/copyright.html botswanskej puly botswanských púl BWP + P Bieloruský nový rubeľ (1994–1999) @@ -4866,6 +5021,7 @@ For terms of use, see http://www.unicode.org/copyright.html kubánskeho konvertibilného pesa kubánskych konvertibilných pesos CUC + $ kubánske peso @@ -4894,6 +5050,7 @@ For terms of use, see http://www.unicode.org/copyright.html českej koruny českých korún CZK + Východonemecká marka @@ -4916,6 +5073,7 @@ For terms of use, see http://www.unicode.org/copyright.html dánskej koruny dánskych korún DKK + kr dominikánske peso @@ -4955,6 +5113,7 @@ For terms of use, see http://www.unicode.org/copyright.html egyptskej libry egyptských libier EGP + eritrejská nakfa @@ -4981,6 +5140,8 @@ For terms of use, see http://www.unicode.org/copyright.html eurá eura eur + + Finská marka @@ -5001,6 +5162,7 @@ For terms of use, see http://www.unicode.org/copyright.html falklandskej libry falklandských libier FKP + £ Francúzsky frank @@ -5024,6 +5186,7 @@ For terms of use, see http://www.unicode.org/copyright.html gruzínskeho lari gruzínskych lari GEL + Ghanský cedi (1979–2007) @@ -5064,6 +5227,7 @@ For terms of use, see http://www.unicode.org/copyright.html guinejského franku guinejských frankov GNF + FG Guinejský syli @@ -5081,6 +5245,7 @@ For terms of use, see http://www.unicode.org/copyright.html guatemalského quetzala guatemalských quetzalov GTQ + Q Portugalská Guinea eskudo @@ -5118,6 +5283,7 @@ For terms of use, see http://www.unicode.org/copyright.html honduraskej lempiry honduraských lempír HNL + L Chorvátsky dinár @@ -5129,6 +5295,7 @@ For terms of use, see http://www.unicode.org/copyright.html chorvátskej kuny chorvátskych kún HRK + kn haitské gourde @@ -5145,6 +5312,7 @@ For terms of use, see http://www.unicode.org/copyright.html maďarského forinta maďarských forintov HUF + Ft indonézska rupia @@ -5153,6 +5321,7 @@ For terms of use, see http://www.unicode.org/copyright.html indonézskej rupie indonézskych rupií IDR + Rp Írska libra @@ -5201,6 +5370,7 @@ For terms of use, see http://www.unicode.org/copyright.html islandskej koruny islandských korún ISK + kr Talianská lira @@ -5263,6 +5433,7 @@ For terms of use, see http://www.unicode.org/copyright.html komorského franku komorských frankov KMF + CF severokórejský won @@ -5271,6 +5442,7 @@ For terms of use, see http://www.unicode.org/copyright.html severokórejskeho wonu severokórejských wonov KPW + juhokórejský won @@ -5323,6 +5495,7 @@ For terms of use, see http://www.unicode.org/copyright.html libanonskej libry libanonských libier LBP + srílanská rupia @@ -5331,6 +5504,7 @@ For terms of use, see http://www.unicode.org/copyright.html srílanskej rupie srílanských rupií LKR + Rs libérijský dolár @@ -5403,6 +5577,7 @@ For terms of use, see http://www.unicode.org/copyright.html malgašského ariary malgašských ariary MGA + Ar Madagaskarský frank @@ -5425,6 +5600,7 @@ For terms of use, see http://www.unicode.org/copyright.html mjanmarského kyatu mjanmarských kyatov MMK + K mongolský tugrik @@ -5464,6 +5640,7 @@ For terms of use, see http://www.unicode.org/copyright.html maurícijskej rupie maurícijských rupií MUR + Rs maldivská rupia @@ -5503,6 +5680,7 @@ For terms of use, see http://www.unicode.org/copyright.html malajzijského ringgitu malajzijských ringgitov MYR + RM Mozambické escudo @@ -5559,6 +5737,7 @@ For terms of use, see http://www.unicode.org/copyright.html nikaragujskej córdoby nikaragujských córdob NIO + C$ Nizozemský guilder @@ -5570,6 +5749,7 @@ For terms of use, see http://www.unicode.org/copyright.html nórskej koruny nórskych korún NOK + kr nepálska rupia @@ -5578,6 +5758,7 @@ For terms of use, see http://www.unicode.org/copyright.html nepálskej rupie nepálskych rupií NPR + Rs novozélandský dolár @@ -5642,6 +5823,7 @@ For terms of use, see http://www.unicode.org/copyright.html pakistanskej rupie pakistanských rupií PKR + Rs poľský zlotý @@ -5650,6 +5832,7 @@ For terms of use, see http://www.unicode.org/copyright.html poľského zlotého poľských zlotých PLN + Polský zloty (1950–1995) @@ -5708,6 +5891,7 @@ For terms of use, see http://www.unicode.org/copyright.html ruského rubľa ruských rubľov RUB + @@ -5720,6 +5904,7 @@ For terms of use, see http://www.unicode.org/copyright.html rwandského franku rwandských frankov RWF + RF saudskoarabský rial @@ -5771,6 +5956,7 @@ For terms of use, see http://www.unicode.org/copyright.html švédskej koruny švédskych korún SEK + kr singapurský dolár @@ -5788,6 +5974,7 @@ For terms of use, see http://www.unicode.org/copyright.html svätohelenskej libry svätohelenských libier SHP + £ Slovinský Tolar @@ -5839,6 +6026,7 @@ For terms of use, see http://www.unicode.org/copyright.html svätotomášskej dobry svätotomášskych dobier STD + Db Sovietsky rubeľ @@ -5858,6 +6046,7 @@ For terms of use, see http://www.unicode.org/copyright.html sýrskej libry sýrskych libier SYP + £ svazijské lilangeni @@ -5874,6 +6063,7 @@ For terms of use, see http://www.unicode.org/copyright.html thajského bahtu thajských bahtov THB + ฿ Tadžický rubeľ @@ -5916,6 +6106,7 @@ For terms of use, see http://www.unicode.org/copyright.html tongského pa’anga tongských pa’anga TOP + T$ Timorské eskudo @@ -6031,6 +6222,7 @@ For terms of use, see http://www.unicode.org/copyright.html venezuelského bolívaru venezuelských bolívarov VEF + Bs vietnamský dong @@ -6075,6 +6267,7 @@ For terms of use, see http://www.unicode.org/copyright.html východokaribského dolára východokaribských dolárov EC$ + $ Špeciálne práva čerpania @@ -6138,6 +6331,7 @@ For terms of use, see http://www.unicode.org/copyright.html juhoafrického randu juhoafrických randov ZAR + R Zambijská kwacha (1968–2012) @@ -6153,6 +6347,7 @@ For terms of use, see http://www.unicode.org/copyright.html zambijskej kwachy zambijských kwách ZMW + ZK Zairský nový zaire @@ -6185,13 +6380,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0}+ - {0}–{1} + {0} – {1} - {0} za {1} + {0} za {1} jednotky preťaženia @@ -6207,6 +6402,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metra za sekundu na druhú {0} metrov za sekundu na druhú + + otáčky + {0} otáčka + {0} otáčky + {0} otáčky + {0} otáčok + + + radiány + {0} radián + {0} radiány + {0} radiánu + {0} radiánov + + + stupne + {0} stupeň + {0} stupne + {0} stupňa + {0} stupňov + minúty {0} minúta @@ -6221,26 +6437,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sekundy {0} sekúnd - - stupne - {0} stupeň - {0} stupne - {0} stupňa - {0} stupňov - - - radiány - {0} radián - {0} radiány - {0} radiánu - {0} radiánov - - - akre - {0} aker - {0} akre - {0} akra - {0} akrov + + štvorcové kilometre + {0} kilometer štvorcový + {0} kilometre štvorcové + {0} kilometra štvorcového + {0} kilometrov štvorcových hektáre @@ -6249,12 +6451,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hektára {0} hektárov + + štvorcové metre + {0} meter štvorcový + {0} metre štvorcové + {0} metra štvorcového + {0} metrov štvorcových + {0} na meter štvorcový + štvorcové centimetre {0} štvorcový centimeter {0} štvorcové centimetre {0} štvorcového centimetra {0} štvorcových centimetrov + {0} na štvorcový centimeter + + + štvorcové míle + {0} míľa štvorcová + {0} míle štvorcové + {0} míle štvorcovej + {0} míľ štvorcových + + + akre + {0} aker + {0} akre + {0} akra + {0} akrov + + + štvorcové yardy + {0} štvorcový yard + {0} štvorcové yardy + {0} štvorcového yardu + {0} štvorcových yardov štvorcové stopy @@ -6269,34 +6501,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} štvorcové palce {0} štvorcového palca {0} štvorcových palcov + {0} na štvorcový palec - - štvorcové kilometre - {0} kilometer štvorcový - {0} kilometre štvorcové - {0} kilometra štvorcového - {0} kilometrov štvorcových - - - štvorcové metre - {0} meter štvorcový - {0} metre štvorcové - {0} metra štvorcového - {0} metrov štvorcových - - - štvorcové míle - {0} míľa štvorcová - {0} míle štvorcové - {0} míle štvorcovej - {0} míľ štvorcových - - - štvorcové yardy - {0} štvorcový yard - {0} štvorcové yardy - {0} štvorcového yardu - {0} štvorcových yardov + + karáty + {0} karát + {0} karáty + {0} karátu + {0} karátov litre na kilometer @@ -6305,6 +6517,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litra na kilometer {0} litrov na kilometer + + litre na 100 kilometrov + {0} liter na 100 kilometrov + {0} litre na 100 kilometrov + {0} litra na 100 kilometrov + {0} litrov na 100 kilometrov + míle na galón {0} míľa na galón @@ -6312,69 +6531,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} míle na galón {0} míľ na galón - - bity - {0} bit - {0} bity - {0} bitu - {0} bitov - - - bajty - {0} bajt - {0} bajty - {0} bajtu - {0} bajtov - - - gigabity - {0} gigabit - {0} gigabity - {0} gigabitu - {0} gigabitov - - - gigabajty - {0} gigabajt - {0} gigabajty - {0} gigabajtu - {0} gigabajtov - - - kilobity - {0} kilobit - {0} kilobity - {0} kilobitu - {0} kilobitov - - - kilobajty - {0} kilobajt - {0} kilobajty - {0} kilobajtu - {0} kilobajtov - - - megabity - {0} megabit - {0} megabity - {0} megabitu - {0} megabitov - - - megabajty - {0} megabajt - {0} megabajty - {0} megabajtu - {0} megabajtov - - - terabity - {0} terabit - {0} terabity - {0} terabitu - {0} terabitov - terabajty {0} terabajt @@ -6382,12 +6538,107 @@ For terms of use, see http://www.unicode.org/copyright.html {0} terabajtu {0} terabajtov + + terabity + {0} terabit + {0} terabity + {0} terabitu + {0} terabitov + + + gigabajty + {0} gigabajt + {0} gigabajty + {0} gigabajtu + {0} gigabajtov + + + gigabity + {0} gigabit + {0} gigabity + {0} gigabitu + {0} gigabitov + + + megabajty + {0} megabajt + {0} megabajty + {0} megabajtu + {0} megabajtov + + + megabity + {0} megabit + {0} megabity + {0} megabitu + {0} megabitov + + + kilobajty + {0} kilobajt + {0} kilobajty + {0} kilobajtu + {0} kilobajtov + + + kilobity + {0} kilobit + {0} kilobity + {0} kilobitu + {0} kilobitov + + + bajty + {0} bajt + {0} bajty + {0} bajtu + {0} bajtov + + + bity + {0} bit + {0} bity + {0} bitu + {0} bitov + + + storočia + {0} storočie + {0} storočia + {0} storočia + {0} storočí + + + roky + {0} rok + {0} roky + {0} roka + {0} rokov + {0} za rok + + + mesiace + {0} mesiac + {0} mesiace + {0} mesiaca + {0} mesiacov + {0} za mesiac + + + týždne + {0} týždeň + {0} týždne + {0} týždňa + {0} týždňov + {0} za týždeň + dni {0} deň {0} dni {0} dňa {0} dní + {0} za deň hodiny @@ -6397,40 +6648,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hodín {0} za hodinu - - mikrosekundy - {0} mikrosekunda - {0} mikrosekundy - {0} mikrosekundy - {0} mikrosekúnd - - - milisekundy - {0} milisekunda - {0} milisekundy - {0} milisekundy - {0} milisekúnd - minúty {0} minúta {0} minúty {0} minúty {0} minút - - - mesiace - {0} mesiac - {0} mesiace - {0} mesiaca - {0} mesiacov - - - nanosekundy - {0} nanosekunda - {0} nanosekundy - {0} nanosekundy - {0} nanosekúnd + {0} za minútu sekundy @@ -6440,19 +6664,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sekúnd {0} za sekundu - - týždne - {0} týždeň - {0} týždne - {0} týždňa - {0} týždňov + + milisekundy + {0} milisekunda + {0} milisekundy + {0} milisekundy + {0} milisekúnd - - roky - {0} rok - {0} roky - {0} roka - {0} rokov + + mikrosekundy + {0} mikrosekunda + {0} mikrosekundy + {0} mikrosekundy + {0} mikrosekúnd + + + nanosekundy + {0} nanosekunda + {0} nanosekundy + {0} nanosekundy + {0} nanosekúnd ampéry @@ -6482,6 +6713,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} voltu {0} voltov + + kilokalórie + {0} kilokalória + {0} kilokalórie + {0} kilokalórie + {0} kilokalórií + kalórie {0} kalória @@ -6496,20 +6734,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kalórie {0} kalórií - - jouly - joule - {0} jouly - {0} joulu - {0} joulov - - - kilokalórie - {0} kilokalória - {0} kilokalórie - {0} kilokalórie - {0} kilokalórií - kilojouly {0} kilojoule @@ -6517,6 +6741,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilojoulu {0} kilojoulov + + jouly + joule + {0} jouly + {0} joulu + {0} joulov + kilowatthodiny {0} kilowatthodina @@ -6531,12 +6762,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigahertza {0} gigahertzov - - hertze - {0} hertz - {0} hertze - {0} hertza - {0} hertzov + + megahertze + {0} megahertz + {0} megahertze + {0} megahertza + {0} megahertzov kilohertze @@ -6545,26 +6776,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilohertza {0} kilohertzov - - megahertze - {0} megahertz - {0} megahertze - {0} megahertza - {0} megahertzov + + hertze + {0} hertz + {0} hertze + {0} hertza + {0} hertzov - - astronomické jednotky - {0} astronomická jednotka - {0} astronomické jednotky - {0} astronomickej jednotky - {0} astronomických jednotiek + + kilometre + {0} kilometer + {0} kilometre + {0} kilometra + {0} kilometrov + {0} na kilometer - - centimetre - {0} centimeter - {0} centimetre - {0} centimetra - {0} centimetrov + + metre + {0} meter + {0} metre + {0} metra + {0} metrov + {0} na meter decimetre @@ -6573,54 +6806,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} decimetra {0} decimetrov - - stopy - {0} stopa - {0} stopy - {0} stopy - {0} stôp - - - palce - {0} palec - {0} palce - {0} palca - {0} palcov - - - kilometre - {0} kilometer - {0} kilometre - {0} kilometra - {0} kilometrov - - - svetelné roky - {0} svetelný rok - {0} svetelné roky - {0} svetelného roku - {0} svetelných rokov - - - metre - {0} meter - {0} metre - {0} metra - {0} metrov - - - mikrometre - {0} mikrometer - {0} mikrometre - {0} mikrometra - {0} mikrometrov - - - míle - {0} míľa - {0} míle - {0} míle - {0} míľ + + centimetre + {0} centimeter + {0} centimetre + {0} centimetra + {0} centimetrov + {0} na centimeter milimetre @@ -6629,6 +6821,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milimetra {0} milimetrov + + mikrometre + {0} mikrometer + {0} mikrometre + {0} mikrometra + {0} mikrometrov + nanometre {0} nanometer @@ -6636,20 +6835,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nanometra {0} nanometrov - - námorné míle - {0} námorná míľa - {0} námorné míle - {0} námornej míle - {0} námorných míľ - - - parseky - {0} parsek - {0} parseky - {0} parseku - {0} parsekov - pikometre {0} pikometer @@ -6657,6 +6842,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pikometra {0} pikometrov + + míle + {0} míľa + {0} míle + {0} míle + {0} míľ + yardy {0} yard @@ -6664,6 +6856,57 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yardu {0} yardov + + stopy + {0} stopa + {0} stopy + {0} stopy + {0} stôp + {0} na stopu + + + palce + {0} palec + {0} palce + {0} palca + {0} palcov + {0} na palec + + + parseky + {0} parsek + {0} parseky + {0} parseku + {0} parsekov + + + svetelné roky + {0} svetelný rok + {0} svetelné roky + {0} svetelného roku + {0} svetelných rokov + + + astronomické jednotky + {0} astronomická jednotka + {0} astronomické jednotky + {0} astronomickej jednotky + {0} astronomických jednotiek + + + námorné míle + {0} námorná míľa + {0} námorné míle + {0} námornej míle + {0} námorných míľ + + + škandinávske míle + {0} škandinávska míľa + {0} škandinávske míle + {0} škandinávskej míle + {0} škandinávskych míľ + luxy {0} lux @@ -6671,27 +6914,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} luxu {0} luxov - - karáty - {0} karát - {0} karáty - {0} karátu - {0} karátov - - - gramy - {0} gram - {0} gramy - {0} gramu - {0} gramov - - - kilogramy - {0} kilogram - {0} kilogramy - {0} kilogramu - {0} kilogramov - tony {0} tona @@ -6699,12 +6921,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tony {0} ton - - mikrogramy - {0} mikrogram - {0} mikrogramy - {0} mikrogramu - {0} mikrogramov + + kilogramy + {0} kilogram + {0} kilogramy + {0} kilogramu + {0} kilogramov + {0} na kilogram + + + gramy + {0} gram + {0} gramy + {0} gramu + {0} gramov + {0} na gram miligramy @@ -6713,26 +6944,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} miligramu {0} miligramov - - unce - {0} unca - {0} unce - {0} unce - {0} uncí - - - trojské unce - {0} trojská unca - {0} trojské unce - {0} trojskej unce - {0} trojských uncí - - - libry - {0} libra - {0} libry - {0} libry - {0} libier + + mikrogramy + {0} mikrogram + {0} mikrogramy + {0} mikrogramu + {0} mikrogramov americké tony @@ -6741,6 +6958,36 @@ For terms of use, see http://www.unicode.org/copyright.html {0} americkej tony {0} amerických ton + + libry + {0} libra + {0} libry + {0} libry + {0} libier + {0} na libru + + + unce + {0} unca + {0} unce + {0} unce + {0} uncí + {0} na uncu + + + trojské unce + {0} trojská unca + {0} trojské unce + {0} trojskej unce + {0} trojských uncí + + + karáty + {0} karát + {0} karáty + {0} karátu + {0} karátov + gigawatty {0} gigawatt @@ -6748,20 +6995,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigawattu {0} gigawattov - - konské sily - {0} konská sila - {0} konské sily - {0} konskej sily - {0} konských síl - - - kilowatty - {0} kilowatt - {0} kilowatty - {0} kilowattu - {0} kilowattov - megawatty {0} megawatt @@ -6769,12 +7002,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} megawattu {0} megawattov - - milliwatty - {0} milliwatt - {0} milliwatty - {0} milliwattu - {0} milliwattov + + kilowatty + {0} kilowatt + {0} kilowatty + {0} kilowattu + {0} kilowattov watty @@ -6783,6 +7016,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} wattu {0} wattov + + milliwatty + {0} milliwatt + {0} milliwatty + {0} milliwattu + {0} milliwattov + + + konské sily + {0} konská sila + {0} konské sily + {0} konskej sily + {0} konských síl + hektopascaly {0} hektopascal @@ -6790,20 +7037,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hektopascala {0} hektopascalov - - palce ortuťového stĺpca - {0} palec ortuťového stĺpca - {0} palce ortuťového stĺpca - {0} palca ortuťového stĺpca - {0} palcov ortuťového stĺpca - - - milibary - {0} milibar - {0} milibary - {0} milibaru - {0} milibarov - milimetre ortuťového stĺpca {0} milimeter ortuťového stĺpca @@ -6818,12 +7051,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} libry sily na štvorcový palec {0} libier sily na štvorcový palec - - karáty - {0} karát - {0} karáty - {0} karátu - {0} karátov + + palce ortuťového stĺpca + {0} palec ortuťového stĺpca + {0} palce ortuťového stĺpca + {0} palca ortuťového stĺpca + {0} palcov ortuťového stĺpca + + + milibary + {0} milibar + {0} milibary + {0} milibaru + {0} milibarov kilometre za hodinu @@ -6846,6 +7086,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} míle za hodinu {0} míľ za hodinu + + uzly + {0} uzol + {0} uzly + {0} uzla + {0} uzlov + + + ° + {0} ° + {0} ° + {0} ° + {0} ° + stupne Celzia {0} stupeň Celzia @@ -6867,41 +7121,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvina {0} kelvinov - - akrové stopy - {0} akrová stopa - {0} akrové stopy - {0} akrovej stopy - {0} akrových stôp - - - centilitre - {0} centiliter - {0} centilitre - {0} centilitra - {0} centilitrov - - - kubické centimetre - {0} kubický centimeter - {0} kubické centimetre - {0} kubického centimetra - {0} kubických centimetrov - - - kubické stopy - {0} kubická stopa - {0} kubické stopy - {0} kubickej stopy - {0} kubických stôp - - - kubické palce - {0} kubický palec - {0} kubické palce - {0} kubického palca - {0} kubických palcov - kubické kilometre {0} kubický kilometer @@ -6915,6 +7134,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubické metre {0} kubického metra {0} kubických metrov + {0} na kubický meter + + + kubické centimetre + {0} kubický centimeter + {0} kubické centimetre + {0} kubického centimetra + {0} kubických centimetrov + {0} na kubický centimeter kubické míle @@ -6930,33 +7158,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubického yardu {0} kubických yardov - - hrnčeky - {0} hrnček - {0} hrnčeky - {0} hrnčeka - {0} hrnčekov + + kubické stopy + {0} kubická stopa + {0} kubické stopy + {0} kubickej stopy + {0} kubických stôp - - decilitre - {0} deciliter - {0} decilitre - {0} decilitra - {0} decilitrov + + kubické palce + {0} kubický palec + {0} kubické palce + {0} kubického palca + {0} kubických palcov - - tekuté unce - {0} tekutá unca - {0} tekuté unce - {0} tekutej unce - {0} tekutých uncí - - - galóny - {0} galón - {0} galóny - {0} galónu - {0} galónov + + megalitre + {0} megaliter + {0} megalitre + {0} megalitra + {0} megalitrov hektolitre @@ -6971,13 +7192,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litre {0} litra {0} litrov + {0} na liter - - megalitre - {0} megaliter - {0} megalitre - {0} megalitra - {0} megalitrov + + decilitre + {0} deciliter + {0} decilitre + {0} decilitra + {0} decilitrov + + + centilitre + {0} centiliter + {0} centilitre + {0} centilitra + {0} centilitrov mililitre @@ -6986,12 +7215,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mililitra {0} mililitrov - - pinty - {0} pinta - {0} pinty - {0} pinty - {0} pínt + + metrické pinty + {0} metrická pinta + {0} metrické pinty + {0} metrickej pinty + {0} metrických pínt + + + metrické hrnčeky + {0} metrický hrnček + {0} metrické hrnčeky + {0} metrického hrnčeka + {0} metrických hrnčekov + + + akrové stopy + {0} akrová stopa + {0} akrové stopy + {0} akrovej stopy + {0} akrových stôp + + + galóny + {0} galón + {0} galóny + {0} galónu + {0} galónov + {0} na galón quarty @@ -7000,6 +7251,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} quartu {0} quartov + + pinty + {0} pinta + {0} pinty + {0} pinty + {0} pínt + + + hrnčeky + {0} hrnček + {0} hrnčeky + {0} hrnčeka + {0} hrnčekov + + + tekuté unce + {0} tekutá unca + {0} tekuté unce + {0} tekutej unce + {0} tekutých uncí + polievkové lyžice {0} polievková lyžica @@ -7014,10 +7286,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} čajovej lyžice {0} čajových lyžíc + + {0} E + {0} N + {0} S + {0} W + - {0}/{1} + {0}/{1} jednotka preťaženia @@ -7028,10 +7306,31 @@ For terms of use, see http://www.unicode.org/copyright.html m/s² - {0} m/s² - {0} m/s² - {0} m/s² - {0} m/s² + {0} m/s² + {0} m/s² + {0} m/s² + {0} m/s² + + + ot. + {0} ot. + {0} ot. + {0} ot. + {0} ot. + + + rad + {0} rad + {0} rad + {0} rad + {0} rad + + + ° + {0}° + {0}° + {0}° + {0}° @@ -7047,26 +7346,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - ° - {0}° - {0}° - {0}° - {0}° - - - rad - {0} rad - {0} rad - {0} rad - {0} rad - - - akre - {0} ac - {0} ac - {0} ac - {0} ac + + km² + {0} km² + {0} km² + {0} km² + {0} km² hektáre @@ -7075,12 +7360,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha + + + {0} m² + {0} m² + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² {0} cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + {0} mi² + {0} mi² + + + akre + {0} ac + {0} ac + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² + {0} yd² + {0} yd² ft² @@ -7091,38 +7406,18 @@ For terms of use, see http://www.unicode.org/copyright.html in² - {0} in² - {0} in² - {0} in² - {0} in² + {0} in² + {0} in² + {0} in² + {0} in² + {0}/in² - - km² - {0} km² - {0} km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt + {0} kt + {0} kt l/km @@ -7131,6 +7426,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l/km {0} l/km + + l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km + mpg {0} mpg @@ -7138,12 +7440,61 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mpg {0} mpg - - bit - {0} b - {0} b - {0} b - {0} b + + TB + {0} TB + {0} TB + {0} TB + {0} TB + + + Tb + {0} Tb + {0} Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + {0} kb + {0} kb bajt @@ -7152,61 +7503,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} B {0} B - - Gb - {0} Gb - {0} Gb - {0} Gb - {0} Gb + + bit + {0} b + {0} b + {0} b + {0} b - - GB - {0} GB - {0} GB - {0} GB - {0} GB + + stor. + {0} stor. + {0} stor. + {0} stor. + {0} stor. - - kb - {0} kb - {0} kb - {0} kb - {0} kb + + r. + {0} r. + {0} r. + {0} r. + {0} r. + {0}/r. - - kB - {0} kB - {0} kB - {0} kB - {0} kB + + mes. + {0} mes. + {0} mes. + {0} mes. + {0} mes. + {0}/mes. - - Mb - {0} Mb - {0} Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - {0} Tb - {0} Tb - - - TB - {0} TB - {0} TB - {0} TB - {0} TB + + týž. + {0} týž. + {0} týž. + {0} týž. + {0} týž. + {0}/týž. dni @@ -7214,6 +7547,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dni {0} dňa {0} dní + {0}/deň h @@ -7223,40 +7557,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0}/h - - μs - {0} μs - {0} μs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - {0} ms - {0} ms - min {0} min {0} min {0} min {0} min - - - mes. - {0} mes. - {0} mes. - {0} mes. - {0} mes. - - - ns - {0} ns - {0} ns - {0} ns - {0} ns + {0}/min s @@ -7266,54 +7573,68 @@ For terms of use, see http://www.unicode.org/copyright.html {0} s {0}/s - - týž. - {0} týž. - {0} týž. - {0} týž. - {0} týž. + + ms + {0} ms + {0} ms + {0} ms + {0} ms - - r. - {0} r. - {0} r. - {0} r. - {0} r. + + μs + {0} μs + {0} μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns + {0} ns + {0} ns A - {0} A - {0} A - {0} A - {0} A + {0} A + {0} A + {0} A + {0} A mA - {0} mA - {0} mA - {0} mA - {0} mA + {0} mA + {0} mA + {0} mA + {0} mA Ω - {0} Ω - {0} Ω - {0} Ω - {0} Ω + {0} Ω + {0} Ω + {0} Ω + {0} Ω V - {0} V - {0} V - {0} V - {0} V + {0} V + {0} V + {0} V + {0} V + + + kcal + {0} kcal + {0} kcal + {0} kcal + {0} kcal - cal - {0} cal - {0} cal - {0} cal - {0} cal + cal + {0} cal + {0} cal + {0} cal + {0} cal cal @@ -7322,96 +7643,54 @@ For terms of use, see http://www.unicode.org/copyright.html {0} cal {0} cal - - J - {0} J - {0} J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - {0} kcal - {0} kcal - kJ - {0} kJ - {0} kJ - {0} kJ - {0} kJ + {0} kJ + {0} kJ + {0} kJ + {0} kJ + + + J + {0} J + {0} J + {0} J + {0} J kWh - {0} kWh - {0} kWh - {0} kWh - {0} kWh + {0} kWh + {0} kWh + {0} kWh + {0} kWh - GHz - {0} GHz - {0} GHz - {0} GHz - {0} GHz - - - Hz - {0} Hz - {0} Hz - {0} Hz - {0} Hz - - - kHz - {0} kHz - {0} kHz - {0} kHz - {0} kHz + GHz + {0} GHz + {0} GHz + {0} GHz + {0} GHz MHz - {0} MHz - {0} MHz - {0} MHz - {0} MHz + {0} MHz + {0} MHz + {0} MHz + {0} MHz - - au - {0} au - {0} au - {0} au - {0} au + + kHz + {0} kHz + {0} kHz + {0} kHz + {0} kHz - - cm - {0} cm - {0} cm - {0} cm - {0} cm - - - dm - {0} dm - {0} dm - {0} dm - {0} dm - - - ft - {0} ft - {0} ft - {0} ft - {0} ft - - - in - {0} in - {0} in - {0} in - {0} in + + Hz + {0} Hz + {0} Hz + {0} Hz + {0} Hz km @@ -7419,13 +7698,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} km {0} km {0} km - - - ly - {0} ly - {0} ly - {0} ly - {0} ly + {0}/km m @@ -7433,20 +7706,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m {0} m {0} m + {0}/m - - µm - {0} µm - {0} µm - {0} µm - {0} µm + + dm + {0} dm + {0} dm + {0} dm + {0} dm - - mi - {0} mi - {0} mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0} cm + {0} cm + {0}/cm mm @@ -7455,26 +7730,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mm {0} mm + + µm + {0} µm + {0} µm + {0} µm + {0} µm + nm - {0} nm - {0} nm - {0} nm - {0} nm - - - NM - {0} NM - {0} NM - {0} NM - {0} NM - - - pc - {0} pc - {0} pc - {0} pc - {0} pc + {0} nm + {0} nm + {0} nm + {0} nm pm @@ -7483,6 +7751,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + mi + {0} mi + {0} mi + {0} mi + {0} mi + yd {0} yd @@ -7490,6 +7765,57 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd {0} yd + + ft + {0} ft + {0} ft + {0} ft + {0} ft + {0}/ft + + + in + {0} in + {0} in + {0} in + {0} in + {0}/in + + + pc + {0} pc + {0} pc + {0} pc + {0} pc + + + ly + {0} ly + {0} ly + {0} ly + {0} ly + + + au + {0} au + {0} au + {0} au + {0} au + + + NM + {0} NM + {0} NM + {0} NM + {0} NM + + + ŠM + {0} ŠM + {0} ŠM + {0} ŠM + {0} ŠM + lx {0} lx @@ -7497,19 +7823,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lx {0} lx - - ct - {0} ct - {0} ct - {0} ct - {0} ct - - - gramy - {0} g - {0} g - {0} g - {0} g + + t + {0} t + {0} t + {0} t + {0} t kg @@ -7517,13 +7836,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kg {0} kg {0} kg + {0}/kg - - t - {0} t - {0} t - {0} t - {0} t + + g + {0} g + {0} g + {0} g + {0} g + {0}/g + + + mg + {0} mg + {0} mg + {0} mg + {0} mg µg @@ -7532,34 +7860,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} µg {0} µg - - mg - {0} mg - {0} mg - {0} mg - {0} mg - - - oz - {0} oz - {0} oz - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb - {0} lb - {0} lb - to {0} to @@ -7567,19 +7867,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} to {0} to + + lb + {0} lb + {0} lb + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0} oz + {0} oz + {0}/oz + + + oz t + {0} oz t + {0} oz t + {0} oz t + {0} oz t + + + ct + {0} ct + {0} ct + {0} ct + {0} ct + GW - {0} GW - {0} GW - {0} GW - {0} GW + {0} GW + {0} GW + {0} GW + {0} GW - - hp - {0} hp - {0} hp - {0} hp - {0} hp + + MW + {0} MW + {0} MW + {0} MW + {0} MW kW @@ -7588,20 +7918,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kW {0} kW - - MW - {0} MW - {0} MW - {0} MW - {0} MW - - - mW - {0} mW - {0} mW - {0} mW - {0} mW - W {0} W @@ -7609,6 +7925,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + mW + {0} mW + {0} mW + {0} mW + {0} mW + + + hp + {0} hp + {0} hp + {0} hp + {0} hp + hPa {0} hPa @@ -7616,6 +7946,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hPa {0} hPa + + mm Hg + {0} mm Hg + {0} mm Hg + {0} mm Hg + {0} mm Hg + + + psi + {0} psi + {0} psi + {0} psi + {0} psi + inHg {0} inHg @@ -7630,27 +7974,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mbar {0} mbar - - mm Hg - {0} mm Hg - {0} mm Hg - {0} mm Hg - {0} mm Hg - - - psi - {0} psi - {0} psi - {0} psi - {0} psi - - - kt - {0} kt - {0} kt - {0} kt - {0} kt - km/h {0} km/h @@ -7672,6 +7995,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + kn + {0} kn + {0} kn + {0} kn + {0} kn + + + ° + {0} ° + {0} ° + {0} ° + {0} ° + °C {0} °C @@ -7693,41 +8030,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - {0} ac ft - {0} ac ft - - - cl - {0} cl - {0} cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -7737,10 +8039,19 @@ For terms of use, see http://www.unicode.org/copyright.html - {0} m³ - {0} m³ - {0} m³ - {0} m³ + {0} m³ + {0} m³ + {0} m³ + {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -7751,38 +8062,31 @@ For terms of use, see http://www.unicode.org/copyright.html yd³ - {0} yd³ - {0} yd³ - {0} yd³ - {0} yd³ + {0} yd³ + {0} yd³ + {0} yd³ + {0} yd³ - - c - {0} c - {0} c - {0} c - {0} c + + ft³ + {0} ft³ + {0} ft³ + {0} ft³ + {0} ft³ - - dl - {0} dl - {0} dl - {0} dl - {0} dl + + in³ + {0} in³ + {0} in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml + {0} Ml + {0} Ml hl @@ -7797,13 +8101,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl + {0} cl + {0} cl ml @@ -7812,26 +8124,69 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ml {0} ml - - pt - {0} pt - {0} pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + {0} mpt + {0} mpt + + + mc + {0} mc + {0} mc + {0} mc + {0} mc + + + ac ft + {0} ac ft + {0} ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0} gal + {0} gal + {0}/gal qt - {0} qt - {0} qt - {0} qt - {0} qt + {0} qt + {0} qt + {0} qt + {0} qt + + + pt + {0} pt + {0} pt + {0} pt + {0} pt + + + c + {0} c + {0} c + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + {0} fl oz + {0} fl oz - tbsp - {0} tbsp - {0} tbsp - {0} tbsp - {0} tbsp + tbsp + {0} tbsp + {0} tbsp + {0} tbsp + {0} tbsp tsp @@ -7840,10 +8195,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0} E + {0} N + {0} S + {0} W + - {0}/{1} + {0}/{1} {0}G @@ -7857,6 +8218,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + {0} rad + {0} rad + {0} rad + {0} rad + + + {0}° + {0}° + {0}° + {0}° + {0}′ {0}′ @@ -7869,23 +8242,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - {0}° - {0}° - - - {0} rad - {0} rad - {0} rad - {0} rad - - - {0}ac - {0}ac - {0}ac - {0}ac + + {0} km² + {0} km² + {0} km² + {0} km² {0}ha @@ -7893,12 +8254,36 @@ For terms of use, see http://www.unicode.org/copyright.html {0}ha {0}ha + + {0} m² + {0} m² + {0} m² + {0} m² + {0} cm² {0} cm² {0} cm² {0} cm² + + {0}mi² + {0}mi² + {0}mi² + {0}mi² + + + {0}ac + {0}ac + {0}ac + {0}ac + + + {0} yd² + {0} yd² + {0} yd² + {0} yd² + {0}ft² {0}ft² @@ -7911,29 +8296,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² - - {0} km² - {0} km² - {0} km² - {0} km² - - - {0} m² - {0} m² - {0} m² - {0} m² - - - {0}mi² - {0}mi² - {0}mi² - {0}mi² - - - {0} yd² - {0} yd² - {0} yd² - {0} yd² + + {0} kt + {0} kt + {0} kt + {0} kt {0} l/km @@ -7941,23 +8308,51 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l/km {0} l/km + + l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km + {0} mpg {0} mpg {0} mpg {0} mpg + + {0} B + {0} B + {0} B + {0} B + {0} b {0} b {0} b {0} b - - {0} B - {0} B - {0} B - {0} B + + r. + {0} r. + {0} r. + {0} r. + {0} r. + + + m. + {0} m. + {0} m. + {0} m. + {0} m. + + + t. + {0} t. + {0} t. + {0} t. + {0} t. d. @@ -7973,19 +8368,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} h {0} h - - {0} μs - {0} μs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - {0} ms - {0} ms - min {0} min @@ -7993,19 +8375,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} min {0} min - - m. - {0} m. - {0} m. - {0} m. - {0} m. - - - {0} ns - {0} ns - {0} ns - {0} ns - s {0} s @@ -8013,52 +8382,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} s {0} s - - t. - {0} t. - {0} t. - {0} t. - {0} t. + + ms + {0} ms + {0} ms + {0} ms + {0} ms - - r. - {0} r. - {0} r. - {0} r. - {0} r. + + {0} μs + {0} μs + {0} μs + {0} μs - - au - {0} au - {0} au - {0} au - {0} au - - - cm - {0} cm - {0} cm - {0} cm - {0} cm - - - dm - {0} dm - {0} dm - {0} dm - {0} dm - - - {0}′ - {0}′ - {0}′ - {0}′ - - - {0}in - {0}in - {0}in - {0}in + + {0} ns + {0} ns + {0} ns + {0} ns km @@ -8067,12 +8408,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} km {0} km - - {0}ly - {0}ly - {0}ly - {0}ly - m {0} m @@ -8080,18 +8415,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m {0} m - - µm - {0} µm - {0} µm - {0} µm - {0} µm + + dm + {0} dm + {0} dm + {0} dm + {0} dm - - {0}mi - {0}mi - {0}mi - {0}mi + + cm + {0} cm + {0} cm + {0} cm + {0} cm mm @@ -8100,6 +8436,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mm {0} mm + + µm + {0} µm + {0} µm + {0} µm + {0} µm + nm {0} nm @@ -8113,30 +8456,54 @@ For terms of use, see http://www.unicode.org/copyright.html {0}pm {0}pm + + {0}mi + {0}mi + {0}mi + {0}mi + {0}yd {0}yd {0}yd {0}yd + + {0}′ + {0}′ + {0}′ + {0}′ + + + {0}in + {0}in + {0}in + {0}in + + + {0}ly + {0}ly + {0}ly + {0}ly + + + au + {0} au + {0} au + {0} au + {0} au + {0} lx {0} lx {0} lx {0} lx - - {0} ct - {0} ct - {0} ct - {0} ct - - - g - {0} g - {0} g - {0} g - {0} g + + {0} t + {0} t + {0} t + {0} t kg @@ -8145,11 +8512,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kg {0} kg - - {0} t - {0} t - {0} t - {0} t + + g + {0} g + {0} g + {0} g + {0} g + + + {0} mg + {0} mg + {0} mg + {0} mg {0} µg @@ -8157,11 +8531,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} µg {0} µg - - {0} mg - {0} mg - {0} mg - {0} mg + + {0} to + {0} to + {0} to + {0} to + + + {0}lb + {0}lb + {0}lb + {0}lb {0}oz @@ -8175,29 +8555,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} oz t {0} oz t - - {0}lb - {0}lb - {0}lb - {0}lb - - - {0} to - {0} to - {0} to - {0} to - - - {0}hp - {0}hp - {0}hp - {0}hp - - - {0}kW - {0}kW - {0}kW - {0}kW + + {0} ct + {0} ct + {0} ct + {0} ct {0} MW @@ -8205,11 +8567,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} MW {0} MW - - {0} mW - {0} mW - {0} mW - {0} mW + + {0}kW + {0}kW + {0}kW + {0}kW {0}W @@ -8217,6 +8579,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0}W {0}W + + {0} mW + {0} mW + {0} mW + {0} mW + + + {0}hp + {0}hp + {0}hp + {0}hp + {0}hPa {0}hPa @@ -8235,12 +8609,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mb {0}mb - - {0} kt - {0} kt - {0} kt - {0} kt - km/h {0} km/h @@ -8279,36 +8647,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - {0} ac ft - {0} ac ft - {0} ac ft - {0} ac ft - - - {0} cl - {0} cl - {0} cl - {0} cl - - - {0} cm³ - {0} cm³ - {0} cm³ - {0} cm³ - - - {0} ft³ - {0} ft³ - {0} ft³ - {0} ft³ - - - {0} in³ - {0} in³ - {0} in³ - {0} in³ - {0}km³ {0}km³ @@ -8321,6 +8659,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + + {0} cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0}mi³ {0}mi³ @@ -8333,29 +8677,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - {0} c - {0} c - {0} c - {0} c + + {0} ft³ + {0} ft³ + {0} ft³ + {0} ft³ - - {0} dl - {0} dl - {0} dl - {0} dl + + {0} in³ + {0} in³ + {0} in³ + {0} in³ - - {0} fl oz - {0} fl oz - {0} fl oz - {0} fl oz - - - {0} gal - {0} gal - {0} gal - {0} gal + + {0} Ml + {0} Ml + {0} Ml + {0} Ml {0} hl @@ -8370,11 +8708,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l - - {0} Ml - {0} Ml - {0} Ml - {0} Ml + + {0} dl + {0} dl + {0} dl + {0} dl + + + {0} cl + {0} cl + {0} cl + {0} cl {0} ml @@ -8382,11 +8726,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ml {0} ml - - {0} pt - {0} pt - {0} pt - {0} pt + + {0} ac ft + {0} ac ft + {0} ac ft + {0} ac ft + + + {0} gal + {0} gal + {0} gal + {0} gal {0} qt @@ -8394,6 +8744,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} qt {0} qt + + {0} pt + {0} pt + {0} pt + {0} pt + + + {0} c + {0} c + {0} c + {0} c + + + {0} fl oz + {0} fl oz + {0} fl oz + {0} fl oz + {0} tbsp {0} tbsp @@ -8406,6 +8774,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0} E + {0} N + {0} S + {0} W + h:mm @@ -8422,7 +8796,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0}, {1} {0}, {1} {0} a {1} - {0} a {1} + {0} a {1} {0}, {1} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sk_SK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sk_SK.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sk_SK.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sk_SK.xml index 5bbcd799ac7..7cbf6d336a0 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sk_SK.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sk_SK.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sl.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sl.xml similarity index 80% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sl.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sl.xml index 0012d3b85f0..6f80da8290f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sl.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sl.xml @@ -1,13 +1,12 @@ - - - + @@ -59,6 +58,7 @@ For terms of use, see http://www.unicode.org/copyright.html bemba benajščina bolgarščina + zahodnobalučijščina bodžpuri bislamščina bikolski jezik @@ -230,7 +230,7 @@ For terms of use, see http://www.unicode.org/copyright.html kongovščina kasi kotanščina - koyra chiini + koyra chiini kikujščina kvanjama kazaščina @@ -250,7 +250,7 @@ For terms of use, see http://www.unicode.org/copyright.html kuruk kašmirščina shambala - bafia + bafia kurdščina kumiščina kutenajščina @@ -271,6 +271,7 @@ For terms of use, see http://www.unicode.org/copyright.html laoščina mongo lozi + severnolurijščina litovščina luba-katanga luba-lulua @@ -289,12 +290,12 @@ For terms of use, see http://www.unicode.org/copyright.html mokšavščina mandarščina mende - meru + meru morisjenščina malagaščina srednja irščina - makuva-meto - meta + makuva-meto + meta marshallovščina maorščina mikmaščina @@ -309,30 +310,32 @@ For terms of use, see http://www.unicode.org/copyright.html maratščina malajščina malteščina - mundang + mundang več jezikov mirandeščina marvarščina burmanščina erzjanščina + mazanderanščina naurujščina napolitanščina khoekhoe knjižna norveščina severna ndebelščina nizka nemščina + nizka saščina nepalščina nevarščina niaščina niuejščina nizozemščina flamščina - kwasio + kwasio novonorveščina norveščina nogajščina stara nordijščina - n’ko + n’ko južna ndebelščina severna sotščina nuerščina @@ -366,7 +369,7 @@ For terms of use, see http://www.unicode.org/copyright.html brazilska portugalščina iberska portugalščina kečuanščina - quiche + quiche radžastanščina rapanujščina rarotongščina @@ -374,7 +377,7 @@ For terms of use, see http://www.unicode.org/copyright.html rundščina romunščina moldavščina - rombo + rombo romščina ruščina aromunščina @@ -391,10 +394,11 @@ For terms of use, see http://www.unicode.org/copyright.html sicilijanščina škotščina sindščina + južna kurdščina severna samijščina - sena + sena selkupščina - koyraboro senni + koyraboro senni sango stara irščina srbohrvaščina @@ -423,8 +427,8 @@ For terms of use, see http://www.unicode.org/copyright.html sumerščina švedščina svahili + svahili (Kongo) šikomor - svahili (Kongo) klasična sirščina sirščina tamilščina @@ -457,7 +461,7 @@ For terms of use, see http://www.unicode.org/copyright.html tasawaq tahitščina tuvinščina - tamašek (srednji atlas) + tamašek (srednji atlas) udmurtščina ujgurščina ugaritski jezik @@ -471,14 +475,15 @@ For terms of use, see http://www.unicode.org/copyright.html vietnamščina volapuk votjaščina - vunjo + vunjo valonščina valamščina varajščina vašajščina + varlpirščina volofščina kalmiščina - xhosa + koščina sogščina jaojščina japščina @@ -499,7 +504,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -571,7 +576,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -661,7 +666,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angvila Albanija Armenija - Nizozemski Antili Angola Antarktika Argentina @@ -701,6 +705,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kongo (Republika) Švica Slonokoščena obala + Côte d’Ivoire Cookovi otoki Čile Kamerun @@ -733,7 +738,7 @@ For terms of use, see http://www.unicode.org/copyright.html Finska Fidži Falklandski otoki - Falklandski otoki (Malvinski otoki) + Falklandski otoki (Malvini) Mikronezija Ferski otoki Francija @@ -970,102 +975,115 @@ For terms of use, see http://www.unicode.org/copyright.html Številsko razvrščanje Moč razvrščanja valuta - Številke + urni prikaz (12 ali 24) + Slog preloma vrstic + merski sistem + številke Časovni pas Različica območnih nastavitev Razvrščanje kot simboli Private-Use - Arabskoindijske števke - Razširjene arabskoindijske števke - Armenske številke - Armenske majhne številke - Bengalske števke - razvrščanje po sistemu tradicionalne kitajščine - Big5 - budistični koledar - kitajski koledar - Koptski koledar - stari korejski koledar - Devangarske števke - Vrstni red razvrščanja v slovarju - Privzeto razvrščanje Unicode - Etiopijske številke - Etiopski koledar - Etiopsko ametsko alemski koledar - Finančne številke - Števke polne širine - razvrščanje po sistemu poenostavljene kitajščine - GB2312 - Gruzijske številke - gregorijanski koledar - Grške številke - Grške male številke - Gudžaratske števke - Gurmuške števke - Kitajske decimalne številke - Poenostavljene kitajske številke - Poenostavljene kitajske finančne številke - Tradicionalne kitajske številke - Tradicionalne kitajske finančne številke - Hebrejske številke - hebrejski koledar - Razvrščanje vsega - indijanski koledar - islamski koledar - islamski civilni koledar - koledar ISO-8601 - japonski koledar - Japonske številke - Japonske finančne številke - Kmerske števke - Kanaredske števke - Laoške števke - Zahodne števke - Razvrščanje malih črk najprej - Malajalamske števke - Mongolske števke - Mjanmarske števke - Domače števke - Navadno razvrščanje naglasov - Razvrščanje v običajnem zaporedju velikih/malih črk - Razvrščanje ne glede na velike/male črke - Razvrščanje kana ločeno - Razvrščanje brez normaliziranja - Ločeno razvrščanje številk - Razvrščanje simbolov - Orijske števke - Perzijski koledar - razvrščanje po abecedi - Fonetično razvrščanje - razvrščanje po sistemu pinjin - Razvrščanje samo osnovnih črk - Razvrščanje po naglasih/velikih črkah/malih črkah/širini/kana - Reformirano razvrščanje - kitajski državni koledar - Rimske številke - Rimske male številke - Splošno iskanje - Iskanje po začetnem soglasniku hangul - Razvrščanje naglasov - Razvrščanje s prezrtjem simbolov - Standardno razvrščanje - razvrščanje po zaporedju pisanja pismenk - Tamilske številke - Tamilske števke - Teluške števke - Razvrščanje po naglasih/velikih črkah/malih črkah/širini - Tajske števke - Tibetanske števke - razvrščanje po tradicionalnem sistemu - Tradicionalne številke - Razvrščanje koren-poteza - Razvrščanje velikih črk najprej - Številke vai - Obratno razvrščanje naglasov - Razvrščanje ob upoštevanju velikih/malih črk - Razvrščanje kana različno - Normalizirano razvrščanje Unicode - Številsko razvrščanje števk + budistični koledar + kitajski koledar + Koptski koledar + stari korejski koledar + etiopski koledar + Etiopsko ametsko alemski koledar + gregorijanski koledar + hebrejski koledar + indijanski koledar + islamski koledar + islamski civilni koledar + koledar ISO-8601 + japonski koledar + perzijski koledar + kitajski državni koledar + Razvrščanje simbolov + Razvrščanje s prezrtjem simbolov + Navadno razvrščanje naglasov + Obratno razvrščanje naglasov + Razvrščanje malih črk najprej + Razvrščanje v običajnem zaporedju velikih/malih črk + Razvrščanje velikih črk najprej + Razvrščanje ne glede na velike/male črke + Razvrščanje ob upoštevanju velikih/malih črk + Razvrščanje kana ločeno + Razvrščanje kana različno + razvrščanje po sistemu tradicionalne kitajščine - Big5 + Vrstni red razvrščanja v slovarju + Privzeto razvrščanje Unicode + razvrščanje po sistemu poenostavljene kitajščine - GB2312 + razvrščanje po abecedi + Fonetično razvrščanje + razvrščanje po sistemu pinjin + Reformirano razvrščanje + Splošno iskanje + Iskanje po začetnem soglasniku hangul + Standardno razvrščanje + razvrščanje po zaporedju pisanja pismenk + razvrščanje po tradicionalnem sistemu + Razvrščanje koren-poteza + Razvrščanje brez normaliziranja + Normalizirano razvrščanje Unicode + Ločeno razvrščanje številk + Številsko razvrščanje števk + Razvrščanje vsega + Razvrščanje samo osnovnih črk + Razvrščanje po naglasih/velikih črkah/malih črkah/širini/kana + Razvrščanje naglasov + Razvrščanje po naglasih/velikih črkah/malih črkah/širini + 12-urni sistem (0–11) + 12-urni sistem (1–12) + 24-urni sistem (0–23) + 24-urni sistem (1–24) + Prosti slog preloma vrstic + Običajni slog preloma vrstic + Strogi slog preloma vrstic + metrični sistem + imperialni merski sistem + merski sistem Združenih držav + arabskoindijske števke + razširjene arabskoindijske števke + armenske številke + armenske majhne številke + Bengalske števke + devangarske števke + Etiopijske številke + Finančne številke + števke polne širine + gruzijske številke + grške številke + grške male številke + gudžaratske števke + gurmuške števke + kitajske decimalne številke + poenostavljene kitajske številke + poenostavljene kitajske finančne številke + tradicionalne kitajske številke + tradicionalne kitajske finančne številke + hebrejske številke + japonske številke + japonske finančne številke + kmerske števke + Kanaredske števke + laoške števke + zahodne števke + malajalamske števke + Mongolske števke + mjanmarske števke + Domače števke + orijske števke + rimske številke + rimske male številke + tamilske številke + tamilske števke + teluške števke + tajske števke + tibetanske števke + Tradicionalne številke + Številke vai BGN @@ -1081,7 +1099,7 @@ For terms of use, see http://www.unicode.org/copyright.html metrični - Angleški + angleški imperialni @@ -1094,13 +1112,13 @@ For terms of use, see http://www.unicode.org/copyright.html [a b c č d e f g h i j k l m n o p r s š t u v z ž] [á à ă â å ä ā æ ç ć đ é è ĕ ê ë ē í ì ĭ î ï ī ñ ó ò ŏ ô ö ø ō œ q ú ù ŭ û ü ū w x y ÿ] [A B C Č Ć D Đ E F G H I J K L M N O P Q R S Š T U V W X Y Z Ž] - {0}… - …{0} - {0}…{1} - {0} … - … {0} - {0} … {1} - ? + {0}… + …{0} + {0}…{1} + {0} … + … {0} + {0} … {1} + ? @@ -1156,6 +1174,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E, d. y G M/y G @@ -1174,6 +1193,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d. MMM E, d. MMM + d MMMM mm:ss y y G @@ -1456,16 +1476,16 @@ For terms of use, see http://www.unicode.org/copyright.html - Q1 - Q2 - Q3 - Q4 + 1. čet. + 2. čet. + 3. čet. + 4. čet. - 1 - 2 - 3 - 4 + 1 + 2 + 3 + 4 1. četrtletje @@ -1476,16 +1496,16 @@ For terms of use, see http://www.unicode.org/copyright.html - Q1 - Q2 - Q3 - Q4 + 1. čet. + 2. čet. + 3. čet. + 4. čet. - 1 - 2 - 3 - 4 + 1 + 2 + 3 + 4 1. četrtletje @@ -1497,28 +1517,88 @@ For terms of use, see http://www.unicode.org/copyright.html + + poln. + dop. + pold. + pop. + zjut. + dop. + pop. + zveč. + noč + - d - n - p + 24.00 + d + 12.00 + p + zj + d + p + zv + po + polnoč dop. - poldne + poldne pop. + jutro + dopoldan + popoldan + večer + noč + + + + + poln. + dop. + pold. + pop. + zjut. + dop. + pop. + zveč. + pon. + + + polnoč + dop. + poldne + pop. + zjutraj + dopoldne + popoldne + zvečer + ponoči + + + polnoč + dopoldne + poldne + popoldne + zjutraj + dopoldne + popoldne + zvečer + ponoči - pred našim štetjem + pred Kristusom + pred našim štetjem naše štetje - po n. št. + po n. št. - pr. n. št. - po Kr. - po n. št. + pr. Kr. + pr. n. št. + po n. št. + n. št. @@ -1568,75 +1648,80 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1} {0} - {1} {0} + {1} {0} - {1} {0} + {1} {0} - {1} {0} + {1} {0} - d - ccc + d. + ccc E, d. - E h:mm a - E HH:mm - E h:mm:ss a - E HH:mm:ss - y G - M/y G - MMM y G - d. MMM y G - E, d. MMM y G - h a - HH - h:mm a + E h:mm a + E HH:mm + E h:mm:ss a + E HH:mm:ss + y G + MMM y G + MMM y G + d. MMM y G + E, d. MMM y G + h a + HH + h:mm a HH:mm - h:mm:ss a + h:mm:ss a HH:mm:ss - L + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v + L d. M. - E, d. MM. - LLL + E, d. M. + LLL d. MMM E, d. MMM + d MMMM mm:ss y - M/y + M/y d. M. y E, d. M. y MMM y - d. MMM y + d. MMM y E, d. MMM y MMMM y - QQQ y - QQQQ y + QQQ y + QQQQ y - {0} {1} + {0} {1} - {0} – {1} + {0}–{1} d.–d. - h a – h a + h a–h a h–h a - HH–HH + HH–HH h:mm a – h:mm a @@ -1644,8 +1729,8 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm–h:mm a - HH:mm–HH:mm - HH:mm–HH:mm + HH:mm–HH:mm + HH:mm–HH:mm h:mm a – h:mm a v @@ -1653,49 +1738,49 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm–h:mm a v - HH:mm–HH:mm v - HH:mm–HH:mm v + HH:mm–HH:mm v + HH:mm–HH:mm v h a – h a v h–h a v - HH–HH v + HH–HH v M.–M. - d. – d. M. - d. M. – d. M. + d.–d. M. + d. M.–d. M. - E, d. – E, d. M. - E, d. M. – E, d. M. + E, d.–E, d. M. + E, d. M.–E, d. M. MMM–MMM d.–d. MMM - d. MMM – d. MMM + d. MMM–d. MMM - E, d. – E, d. MMM - E, d. MMM – E, d. MMM + E, d.–E, d. MMM + E, d. MMM–E, d. MMM y–y M.–M. y - M. y – M. y + M. y–M. y - d. M. y – d. M. y - d. M. – d. M. y - d. M. y – d. M. y + d. M. y–d. M. y + d. M.–d. M. y + d. M. y–d. M. y E, d. – E, d. M. y @@ -1703,22 +1788,22 @@ For terms of use, see http://www.unicode.org/copyright.html E, d. M. y – E, d. M. y - MMM – MMM y - MMM y – MMM y + MMM–MMM y + MMM y–MMM y d.–d. MMM y - d. MMM – d. MMM y - d. MMM y – d. MMM y + d. MMM–d. MMM y + d. MMM y–d. MMM y - E, d. MMM – E, d. MMM y - E, d. MMM – E, d. MMM y - E, d. MMM y – E, d. MMM y + E, d. MMM–E, d. MMM y + E, d. MMM–E, d. MMM y + E, d. MMM y–E, d. MMM y - MMMM–MMMM y - MMMM y – MMMM y + MMMM–MMMM y + MMMM y–MMMM y @@ -1726,10 +1811,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Doba + doba - Leto + leto lani letos naslednje leto @@ -1777,7 +1862,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Četrtletje + četrtletje + zadnje četrtletje + to četrtletje + naslednje četrtletje čez {0} četrtletje čez {0} četrtletji @@ -1793,36 +1881,42 @@ For terms of use, see http://www.unicode.org/copyright.html četrtl. + zadnje četrtletje + to četrtletje + naslednje četrtletje - čez {0} četrtletje - čez {0} četrtletji - čez {0} četrtletja - čez {0} četrtletja + čez {0} četrtl. + čez {0} četrtl. + čez {0} četrtl. + čez {0} četrtl. - pred {0} četrtletjem - pred {0} četrtletjema - pred {0} četrtletji - pred {0} četrtletji + pred {0} četrtl. + pred {0} četrtl. + pred {0} četrtl. + pred {0} četrtl. - čet. + četr. + zadnje četrtletje + to četrtletje + naslednje četrtletje - čez {0} četrtletje - čez {0} četrtletji - čez {0} četrtletja - čez {0} četrtletij + čez {0} četr. + čez {0} četr. + čez {0} četr. + čez {0} četr. - pred {0} četrtletjem - pred {0} četrtletjema - pred {0} četrtletji - pred {0} četrtletji + pred {0} četr. + pred {0} četr. + pred {0} četr. + pred {0} četr. - Mesec + mesec prejšnji mesec ta mesec naslednji mesec @@ -1842,16 +1936,16 @@ For terms of use, see http://www.unicode.org/copyright.html mes. - čez {0} mesec - čez {0} meseca + čez {0} mes. + čez {0} mes. čez {0} mesece - čez {0} mesece + čez {0} mes. - pred {0} mesecem - pred {0} mesecema - pred {0} meseci - pred {0} meseci + pred {0} mes. + pred {0} mes. + pred {0} mes. + pred {0} mes. @@ -1870,7 +1964,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Teden + teden prejšnji teden ta teden naslednji teden @@ -1890,31 +1984,31 @@ For terms of use, see http://www.unicode.org/copyright.html ted. - čez {0} teden - čez {0} tedna - čez {0} tedne - čez {0} tednov + čez {0} ted. + čez {0} ted. + čez {0} ted. + čez {0} ted. - pred {0} tednom - pred {0} tednoma - pred {0} tedni - pred {0} tedni + pred {0} ted. + pred {0} ted. + pred {0} ted. + pred {0} ted. ted. - čez {0} teden - čez {0} tedna - čez {0} tedne - čez {0} tednov + čez {0} ted. + čez {0} ted. + čez {0} ted. + čez {0} ted. - pred {0} tednom - pred {0} tednoma - pred {0} tedni - pred {0} tedni + pred {0} ted. + pred {0} ted. + pred {0} ted. + pred {0} ted. @@ -1938,37 +2032,37 @@ For terms of use, see http://www.unicode.org/copyright.html - Dan + dan - čez {0} d - čez {0} d - čez {0} d - čez {0} d + čez {0} dan + čez {0} dneva + čez {0} dni + čez {0} dni - pred {0} d - pred {0} d - pred {0} d - pred {0} d + pred {0} dnevom + pred {0} dnevoma + pred {0} dnevi + pred {0} dnevi - Dan + dan čez {0} dan - čez {0} d - čez {0} d - čez {0} d + čez {0} dneva + čez {0} dni + čez {0} dni - pred {0} d - pred {0} d - pred {0} d - pred {0} d + pred {0} dnevom + pred {0} dnevoma + pred {0} dnevi + pred {0} dnevi - Dan v tednu + dan v tednu prejšnjo nedeljo @@ -2001,111 +2095,111 @@ For terms of use, see http://www.unicode.org/copyright.html nasl. pon. - Prejšnji torek - Ta torek - Naslednji torek + prejšnji torek + ta torek + naslednji torek - Prejšnji tor. - Ta tor. - Naslednji tor. + prejšnji tor. + ta tor. + naslednji tor. - Prejš. tor. - Ta tor. - Nasl. tor. + prejš. tor. + ta tor. + nasl. tor. - Prejšnjo sredo - To sredo - Naslednjo sredo + prejšnjo sredo + to sredo + naslednjo sredo - Prejšnjo sr. - To sr. - Naslednjo sr. + prejšnjo sre. + to sre. + naslednjo sre. - Prejš. sr. - To sr. - Nasl. sr. + prejš. sre. + to sre. + nasl. sre. - Prejšnji četrtek - Ta četrtek - Naslednji četrtek + prejšnji četrtek + ta četrtek + naslednji četrtek - Prejšnji čet. - Ta čet. - Naslednji čet. + prejšnji čet. + ta čet. + naslednji čet. - Prejš. čet. - Ta čet. - Nasl. čet. + prejš. čet. + ta čet. + nasl. čet. - Prejšnji petek - Ta petek - Naslednji petek + prejšnji petek + ta petek + naslednji petek - Prejšnji pet. - Ta pet. - Naslednji pet. + prejšnji pet. + ta pet. + naslednji pet. - Prejš. pet. - Ta pet. - Nasl. pet. + prejš. pet. + ta pet. + nasl. pet. - Prejšnjo soboto - To soboto - Naslednjo soboto + prejšnjo soboto + to soboto + naslednjo soboto - Prejšnjo sob. - To sob. - Naslednjo sob. + prejšnjo sob. + to sob. + naslednjo sob. - Prejš. sob. - To sob. - Nasl. sob. + prejš. sob. + to sob. + nasl. sob. Čas dneva - Ura + ura - čez {0} h - čez {0} h - čez {0} h - čez {0} h + čez {0} uro + čez {0} uri + čez {0} ure + čez {0} ur - pred {0} h - pred {0} h - pred {0} h - pred {0} h + pred {0} uro + pred {0} urama + pred {0} urami + pred {0} urami ura - čez {0} h - čez {0} h - čez {0} h - čez {0} h + čez {0} uro + čez {0} uri + čez {0} ure + čez {0} ur - pred {0} h - pred {0} h - pred {0} h - pred {0} h + pred {0} uro + pred {0} urama + pred {0} urami + pred {0} urami @@ -2124,7 +2218,22 @@ For terms of use, see http://www.unicode.org/copyright.html - Minuta + minuta + + čez {0} minuto + čez {0} minuti + čez {0} minute + čez {0} minut + + + pred {0} minuto + pred {0} minutama + pred {0} minutami + pred {0} minutami + + + + min. čez {0} min. čez {0} min. @@ -2138,23 +2247,8 @@ For terms of use, see http://www.unicode.org/copyright.html pred {0} min. - - min. - - čez {0} min - čez {0} min - čez {0} min - čez {0} min - - - pred {0} min - pred {0} min - pred {0} min - pred {0} min - - - min. + min čez {0} min čez {0} min @@ -2169,7 +2263,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Sekunda + sekunda zdaj čez {0} sekundo @@ -2215,19 +2309,19 @@ For terms of use, see http://www.unicode.org/copyright.html - Časovni pas + časovni pas - +HH:mm;-HH:mm + +HH.mm;-HH.mm GMT{0} GMT {0} čas - {0} (+1) - {0} (+0) + {0} poletni čas + {0} standardni čas {1} ({0}) - neznano + neznano mesto Andora @@ -2795,7 +2889,7 @@ For terms of use, see http://www.unicode.org/copyright.html - irski poletni čas + irski standardni čas Dublin @@ -3093,6 +3187,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -3177,6 +3274,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Chita + Jakutsk @@ -3195,6 +3295,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolymsk + Kamčatka @@ -4385,7 +4488,7 @@ For terms of use, see http://www.unicode.org/copyright.html + - e - × + × NaN @@ -4435,18 +4538,18 @@ For terms of use, see http://www.unicode.org/copyright.html 000 milijardi 000 milijarde 000 milijard - 0 bilijon - 0 bilijona - 0 bilijoni - 0 bilijonov - 00 bilijon - 00 bilijona - 00 bilijoni - 00 bilijonov - 000 bilijon - 000 bilijona - 000 bilijoni( - 000 bilijonov + 0 bilijon + 0 bilijona + 0 bilijoni + 0 bilijonov + 00 bilijon + 00 bilijona + 00 bilijoni + 00 bilijonov + 000 bilijon + 000 bilijona + 000 bilijoni + 000 bilijonov @@ -4463,30 +4566,30 @@ For terms of use, see http://www.unicode.org/copyright.html 000 tis'.' 000 tis'.' 000 tis'.' - 0 mio'.' - 0 mio'.' - 0 mio'.' - 0 mio'.' - 00 mio'.' - 00 mio'.' - 00 mio'.' - 00 mio'.' - 000 mio'.' - 000 mio'.' - 000 mio'.' - 000 mio'.' - 0 mrd'.' - 0 mrd'.' - 0 mrd'.' - 0 mrd'.' - 00 mrd'.' - 00 mrd'.' - 00 mrd'.' - 00 mrd'.' - 000 mrd'.' - 000 mrd'.' - 000 mrd'.' - 000 mrd'.' + 0 mio'.' + 0 mio'.' + 0 mio'.' + 0 mio'.' + 00 mio'.' + 00 mio'.' + 00 mio'.' + 00 mio'.' + 000 mio'.' + 000 mio'.' + 000 mio'.' + 000 mio'.' + 0 mrd'.' + 0 mrd'.' + 0 mrd'.' + 0 mrd'.' + 00 mrd'.' + 00 mrd'.' + 00 mrd'.' + 00 mrd'.' + 000 mrd'.' + 000 mrd'.' + 000 mrd'.' + 000 mrd'.' 0 bil'.' 0 bil'.' 0 bil'.' @@ -4522,13 +4625,65 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ - #,##0.00 ¤;(#,##0.00 ¤) + #,##0.00 ¤;(#,##0.00 ¤) - {0} {1} - {0} {1} - {0} {1} - {0} {1} + + + 0 tis'.' ¤ + 0 tis'.' ¤ + 0 tis'.' ¤ + 0 tis'.' ¤ + 00 tis'.' ¤ + 00 tis'.' ¤ + 00 tis'.' ¤ + 00 tis'.' ¤ + 000 tis'.' ¤ + 000 tis'.' ¤ + 000 tis'.' ¤ + 000 tis'.' ¤ + 0 mio'.' ¤ + 0 mio'.' ¤ + 0 mio'.' ¤ + 0 mio'.' ¤ + 00 mio'.' ¤ + 00 mio'.' ¤ + 00 mio'.' ¤ + 00 mio'.' ¤ + 000 mio'.' ¤ + 000 mio'.' ¤ + 000 mio'.' ¤ + 000 mio'.' ¤ + 0 mrd'.' ¤ + 0 mrd'.' ¤ + 0 mrd'.' ¤ + 0 mrd'.' ¤ + 00 mrd'.' ¤ + 00 mrd'.' ¤ + 00 mrd'.' ¤ + 00 mrd'.' ¤ + 000 mrd'.' ¤ + 000 mrd'.' ¤ + 000 mrd'.' ¤ + 000 mrd'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + + + {0} {1} + {0} {1} + {0} {1} + {0} {1} @@ -4537,9 +4692,9 @@ For terms of use, see http://www.unicode.org/copyright.html dirham Združenih arabskih emiratov dirham Združenih arabskih emiratov - dirham Združenih arabskih emiratov - dirham Združenih arabskih emiratov - dirham Združenih arabskih emiratov + dirhama Združenih arabskih emiratov + dirhami Združenih arabskih emiratov + dirhamov Združenih arabskih emiratov AED @@ -4556,8 +4711,8 @@ For terms of use, see http://www.unicode.org/copyright.html albanski lek albanski lek - albanski lek - albanski lek + albanska leka + albanski leki albanski lek ALL @@ -4565,25 +4720,26 @@ For terms of use, see http://www.unicode.org/copyright.html armenski dram armenski dram armenski dram - armenski dram - armenski dram + armenski drami + armenskih dramov AMD nizozemsko-antilski gulden nizozemsko-antilski gulden - nizozemsko-antilski gulden - nizozemsko-antilski gulden - nizozemsko-antilski gulden + nizozemsko-antilska guldna + nizozemsko-antilski guldni + nizozemsko-antilskih guldnov ANG angolska kvanza angolska kvanza - angolska kvanza - angolska kvanza - angolska kvanza + angolski kvanzi + angolske kvanze + angolskih kvanz AOA + Kz stara angolska kvanza (1977–1990) @@ -4603,8 +4759,8 @@ For terms of use, see http://www.unicode.org/copyright.html argentinski peso argentinski peso - argentinski peso - argentinski peso + argentinska pesa + argentinski pesi argentinski peso ARS $ @@ -4635,9 +4791,9 @@ For terms of use, see http://www.unicode.org/copyright.html azerbajdžanski manat azerbajdžanski manat - azerbajdžanski manat - azerbajdžanski manat - azerbajdžanski manat + azerbajdžanska manata + azerbajdžanski manati + azerbajdžanskih manatov AZN @@ -4650,22 +4806,23 @@ For terms of use, see http://www.unicode.org/copyright.html bosansko-hercegovske konvertibilne marke bosansko-hercegovskih konvertibilnih mark BAM + KM barbadoški dolar barbadoški dolar - barbadoški dolar - barbadoški dolar - barbadoški dolar + barbadoška dolarja + barbadoški dolarji + barbadoških dolarjev BBD $ bangladeška taka bangladeška taka - bangladeška taka - bangladeška taka - bangladeška taka + bangladeški taki + bangladeške take + bangladeških tak BDT @@ -4688,9 +4845,9 @@ For terms of use, see http://www.unicode.org/copyright.html bolgarski lev bolgarski lev - bolgarski lev - bolgarski lev - bolgarski lev + bolgarska leva + bolgarski levi + bolgarskih levov BGN @@ -4704,36 +4861,37 @@ For terms of use, see http://www.unicode.org/copyright.html burundski frank burundski frank - burundski frank - burundski frank - burundski frank + burundska franka + burundski franki + burundskih frankov BIF bermudski dolar bermudski dolar - bermudski dolar - bermudski dolar - bermudski dolar + bermudska dolarja + bermudski dolarji + bermudskih dolarjev BMD $ brunejski dolar brunejski dolar - brunejski dolar - brunejski dolar - brunejski dolar + brunejska dolarja + brunejski dolarji + brunejskih dolarjev BND $ bolivijski boliviano bolivijski boliviano - bolivijski boliviano - bolivijski boliviano - bolivijski boliviano + bolivijska boliviana + bolivijski boliviani + bolivijskih bolivianov BOB + Bs bolivijski peso @@ -4753,9 +4911,9 @@ For terms of use, see http://www.unicode.org/copyright.html brazilski real brazilski real - brazilski real - brazilski real - brazilski real + brazilska reala + brazilski reali + brazilskih realov R$ R$ @@ -4768,18 +4926,18 @@ For terms of use, see http://www.unicode.org/copyright.html bahamski dolar bahamski dolar - bahamski dolar - bahamski dolar - bahamski dolar + bahamska dolarja + bahamski dolarji + bahamskih dolarjev BSD $ butanski ngultrum butanski ngultrum - butanski ngultrum - butanski ngultrum - butanski ngultrum + butanska ngultruma + butanski ngultrumi + butanskih ngultrumov BTN @@ -4788,10 +4946,11 @@ For terms of use, see http://www.unicode.org/copyright.html bocvanska pula bocvanska pula - bocvanska pula - bocvanska pula - bocvanska pula + bocvanski puli + bocvanske pule + bocvanskih pul BWP + P beloruski novi rubelj (1994–1999) @@ -4799,34 +4958,34 @@ For terms of use, see http://www.unicode.org/copyright.html beloruski rubelj beloruski rubelj - beloruski rubelj - beloruski rubelj - beloruski rubelj + beloruska rublja + beloruski rublji + beloruskih rubljev BYR р. belizejski dolar belizejski dolar - belizejski dolar - belizejski dolar - belizejski dolar + belizejska dolarja + belizejski dolarji + belizejskih dolarjev BZD $ kanadski dolar kanadski dolar - kanadski dolar - kanadski dolar - kanadski dolar + kanadska dolarja + kanadski dolarji + kanadskih dolarjev CAD $ kongoški frank kongoški frank - kongoški frank + kongoška franka kongoški frank kongoški frank CDF @@ -4837,9 +4996,9 @@ For terms of use, see http://www.unicode.org/copyright.html švicarski frank švicarski frank - švicarski frank - švicarski frank - švicarski frank + švicarska franka + švicarski franki + švicarskih frankov CHF @@ -4851,14 +5010,14 @@ For terms of use, see http://www.unicode.org/copyright.html čilski peso čilski peso - čilski peso - čilski peso - čilski peso + čilska pesa + čilski pesi + čilskih pesov CLP $ - kitajski juan renminbi + kitajski juan kitajski juan renminbi kitajski juan renminbi kitajski juan renminbi @@ -4869,9 +5028,9 @@ For terms of use, see http://www.unicode.org/copyright.html kolumbijski peso kolumbijski peso - kolumbijski peso - kolumbijski peso - kolumbijski peso + kolumbijska pesa + kolumbijski pesi + kolumbijskih pesov COP $ @@ -4881,9 +5040,9 @@ For terms of use, see http://www.unicode.org/copyright.html kostariški kolon kostariški kolon - kostariški kolon - kostariški kolon - kostariški kolon + kostariška kolona + kostariški koloni + kostariških kolonov CRC @@ -4896,26 +5055,27 @@ For terms of use, see http://www.unicode.org/copyright.html kubanski konvertibilni peso kubanski konvertibilni peso - kubanski konvertibilni peso - kubanski konvertibilni peso - kubanski konvertibilni peso + kubanska konvertibilna pesa + kubanski konvertibilni pesi + kubanskih konvertibilnih pesov CUC + $ kubanski peso kubanski peso - kubanski peso - kubanski peso - kubanski peso + kubanska pesa + kubanski pesi + kubanskih pesov CUP $ zelenortski eskudo zelenortski eskudo - zelenortski eskudo - zelenortski eskudo - zelenortski eskudo + zelenortska eskuda + zelenortski eskudi + zelenortskih eskudov CVE @@ -4924,10 +5084,11 @@ For terms of use, see http://www.unicode.org/copyright.html češka krona češka krona - češka krona - češka krona - češka krona + češki kroni + češke krone + čeških kron CZK + vzhodnonemška marka @@ -4942,9 +5103,9 @@ For terms of use, see http://www.unicode.org/copyright.html džibutski frank džibutski frank - džibutski frank - džibutski frank - džibutski frank + džibutska franka + džibutski franki + džibutskih frankov DJF @@ -4954,22 +5115,23 @@ For terms of use, see http://www.unicode.org/copyright.html danske krone danskih kron DKK + kr dominikanski peso dominikanski peso - dominikanski peso - dominikanski peso - dominikanski peso + dominikanska pesa + dominikanski pesi + dominikanskih pesov DOP $ alžirski dinar alžirski dinar - alžirski dinar - alžirski dinar - alžirski dinar + alžirska dinarja + alžirski dinarji + alžirskih dinarjev DZD @@ -4984,17 +5146,18 @@ For terms of use, see http://www.unicode.org/copyright.html egiptovski funt egiptovski funt - egiptovski funt - egiptovski funt - egiptovski funt + egiptovska funta + egiptovski funti + egiptovskih funtov EGP + eritrejska nakfa eritrejska nakfa - eritrejska nakfa - eritrejska nakfa - eritrejska nakfa + eritrejski nakfi + eritrejske nakfe + eritrejskih nakf ERN @@ -5009,9 +5172,9 @@ For terms of use, see http://www.unicode.org/copyright.html etiopski bir etiopski bir - etiopski bir - etiopski bir - etiopski bir + etiopska bira + etiopski biri + etiopskih birov ETB @@ -5029,29 +5192,30 @@ For terms of use, see http://www.unicode.org/copyright.html fidžijski dolar fidžijski dolar - fidžijski dolar - fidžijski dolar - fidžijski dolar + fidžijska dolarja + fidžijski dolarji + fidžijskih dolarjev FJD $ falklandski funt falklandski funt - falklandski funt - falklandski funt - falklandski funt + falklandska funta + falklandski funti + falklandskih funtov FKP + £ francoski frank britanski funt - britanski funt - britanskih funtov - britanski funti - britanskih funtov + britanski funt + britanska funta + britanski funti + britanskih funtov £ £ @@ -5061,10 +5225,11 @@ For terms of use, see http://www.unicode.org/copyright.html gruzijski lari gruzijski lari - gruzijski lari + gruzijska lara gruzijski lari - gruzijski lari + gruzijskih larov GEL + stari ganski cedi (1979–2007) @@ -5080,27 +5245,28 @@ For terms of use, see http://www.unicode.org/copyright.html gibraltarski funt gibraltarski funt - gibraltarski funt - gibraltarski funt - gibraltarski funt + gibraltarska funta + gibraltarski funti + gibraltarskih funtov GIP £ gambijski dalasi gambijski dalasi - gambijski dalasi + gambijska dalasa gambijski dalasi - gambijski dalasi + gambijskih dalasov GMD gvinejski frank gvinejski frank - gvinejski frank - gvinejski frank - gvinejski frank + gvinejska franka + gvinejski franki + gvinejskih frankov GNF + FG gvinejski sili @@ -5114,10 +5280,11 @@ For terms of use, see http://www.unicode.org/copyright.html gvatemalski kecal gvatemalski kecal - gvatemalski kecal - gvatemalski kecal - gvatemalski kecal + gvatemalska kecala + gvatemalski kecali + gvatemalskih kecalov GTQ + Q eskudo Portugalske Gvineje @@ -5128,28 +5295,29 @@ For terms of use, see http://www.unicode.org/copyright.html gvajanski dolar gvajanski dolar - gvajanski dolar - gvajanski dolar - gvajanski dolar + gvajanska dolarja + gvajanski dolarji + gvajanskih dolarjev GYD $ hongkonški dolar hongkonški dolar - hongkonški dolar - hongkonški dolar - hongkonški dolar + hongkonška dolarja + hongkonški dolarji + hongkonških dolarjev HK$ $ honduraška lempira honduraška lempira - honduraška lempira - honduraška lempira - honduraška lempira + honduraški lempiri + honduraške lempire + honduraških lempir HNL + L hrvaški dinar @@ -5157,34 +5325,37 @@ For terms of use, see http://www.unicode.org/copyright.html hrvaška kuna hrvaška kuna - hrvaška kuna - hrvaška kuna - hrvaška kuna + hrvaški kuni + hrvaške kune + hrvaških kun HRK + kn haitski gurd haitski gurd - haitski gurd - haitski gurd - haitski gurd + haitska gurda + haitski gurdi + haitskih gurdov HTG madžarski forint madžarski forint - madžarski forint - madžarski forint - madžarski forint + madžarska forinta + madžarski forinti + madžarskih forintov HUF + Ft indonezijska rupija indonezijska rupija - indonezijska rupija - indonezijska rupija - indonezijska rupija + indonezijski rupiji + indonezijske rupije + indonezijskih rupij IDR + Rp irski funt @@ -5195,44 +5366,45 @@ For terms of use, see http://www.unicode.org/copyright.html izraelski šekel izraelski šekel - izraelski šekel - izraelski šekel - izraelski šekel + izraelska šekela + izraelski šekeli + izraelskih šekelov indijska rupija indijska rupija - indijska rupija - indijska rupija - indijska rupija + indijski rupiji + indijske rupije + indijskih rupij iraški dinar iraški dinar - iraški dinar - iraški dinar - iraški dinar + iraška dinarja + iraški dinarji + iraških dinarjev IQD iranski rial iranski rial - iranski rial - iranski rial + iranska riala + iranski riali iranski rial IRR islandska krona islandska krona - islandska krona - islandska krona - islandska krona + islandski kroni + islandske krone + islandskih kron ISK + kr italijanska lira @@ -5240,92 +5412,94 @@ For terms of use, see http://www.unicode.org/copyright.html jamajški dolar jamajški dolar - jamajški dolar - jamajški dolar - jamajški dolar + jamajška dolarja + jamajški dolarji + jamajških dolarjev JMD $ jordanski dinar jordanski dinar - jordanski dinar - jordanski dinar - jordanski dinar + jordanska dinarja + jordanski dinarji + jordanskih dinarjev JOD japonski jen japonski jen - japonski jen - japonski jen - japonski jen + japonska jena + japonski jeni + japonskih jenov ¥ ¥ kenijski šiling kenijski šiling - kenijski šiling - kenijski šiling - kenijski šiling + kenijska šilinga + kenijski šilingi + kenijskih šilingov KES kirgiški som kirgiški som - kirgiški som - kirgiški som - kirgiški som + kirgiška soma + kirgiški somi + kirgiških somov KGS kamboški riel kamboški riel - kamboški riel - kamboški riel - kamboški riel + kamboška riela + kamboški rieli + kamboških rielov KHR komorski frank komorski frank - komorski frank - komorski frank - komorski frank + komorska franka + komorski franki + komorskih frankov KMF + CF severnokorejski von severnokorejski von - severnokorejski von - severnokorejski von - severnokorejski von + severnokorejska vona + severnokorejski voni + severnokorejskih vonov KPW + južnokorejski von južnokorejski von - južnokorejski von - južnokorejski von - južnokorejski von + južnokorejska vona + južnokorejski voni + južnokorejskih vonov kuvajtski dinar kuvajtski dinar - kuvajtski dinar - kuvajtski dinar - kuvajtski dinar + kuvajtska dinarja + kuvajtski dinarji + kuvajtskih dinarjev KWD kajmanski dolar kajmanski dolar - kajmanski dolar - kajmanski dolar + kajmanska dolarja + kajmanski dolarji kajmanski dolar KYD $ @@ -5342,34 +5516,36 @@ For terms of use, see http://www.unicode.org/copyright.html laoški kip laoški kip - laoški kip - laoški kip - laoški kip + laoška kipa + laoški kipi + laoških kipov LAK libanonski funt libanonski funt - libanonski funt - libanonski funt - libanonski funt + libanonska funta + libanonski funti + libanonskih funtov LBP + šrilanška rupija šrilanška rupija - šrilanška rupija - šrilanška rupija - šrilanška rupija + šrilanški rupiji + šrilanške rupije + šrilanških rupij LKR + Rs liberijski dolar liberijski dolar - liberijski dolar - liberijski dolar - liberijski dolar + liberijska dolarja + liberijski dolarji + liberijskih dolarjev LRD $ @@ -5410,17 +5586,17 @@ For terms of use, see http://www.unicode.org/copyright.html libijski dinar libijski dinar - libijski dinar - libijski dinar - libijski dinar + libijska dinarja + libijski dinarji + libijskih dinarjev LYD maroški dirham maroški dirham - maroški dirham - maroški dirham - maroški dirham + maroška dirhama + maroški dirhami + maroških dirhamov MAD @@ -5437,10 +5613,11 @@ For terms of use, see http://www.unicode.org/copyright.html malgaški ariarij malgaški ariarij - malgaški ariarij - malgaški ariarij - malgaški ariarij + malgaška ariarija + malgaški ariariji + malgaških ariarijev MGA + Ar malgaški frank @@ -5448,9 +5625,9 @@ For terms of use, see http://www.unicode.org/copyright.html makedonski denar makedonski denar - makedonski denar - makedonski denar - makedonski denar + makedonska denarja + makedonski denarji + makedonskih denarjev MKD @@ -5459,34 +5636,35 @@ For terms of use, see http://www.unicode.org/copyright.html mjanmarski kjat mjanmarski kjat - mjanmarski kjat - mjanmarski kjat - mjanmarski kjat + mjanmarska kjata + mjanmarski kjati + mjanmarskih kjatov MMK + K mongolski tugrik mongolski tugrik - mongolski tugrik - mongolski tugrik - mongolski tugrik + mongolska tugrika + mongolski tugriki + mongolskih tugrikov MNT makavska pataka makavska pataka - makavska pataka - makavska pataka - makavska pataka + makavski pataki + makavske patake + makavskih patak MOP mavretanska uguija mavretanska uguija - mavretanska uguija - mavretanska uguija - mavretanska uguija + mavretanski uguiji + mavretanske uguije + mavretanskih uguij MRO @@ -5498,33 +5676,34 @@ For terms of use, see http://www.unicode.org/copyright.html mavricijska rupija mavricijska rupija - mavricijska rupija - mavricijska rupija - mavricijska rupija + mavricijski rupiji + mavricijske rupije + mavricijskih rupij MUR + Rs maldivska rufija maldivska rufija - maldivska rufija - maldivska rufija - maldivska rufija + maldivski rufiji + maldivske rufije + maldivskih rufij MVR malavijska kvača malavijska kvača - malavijska kvača - malavijska kvača - malavijska kvača + malavijski kvači + malavijske kvače + malavijskih kvač MWK mehiški peso mehiški peso - mehiški peso - mehiški peso - mehiški peso + mehiška pesa + mehiški pesi + mehiških pesov MX$ $ @@ -5537,10 +5716,11 @@ For terms of use, see http://www.unicode.org/copyright.html malezijski ringit malezijski ringit - malezijski ringit - malezijski ringit - malezijski ringit + malezijska ringita + malezijski ringiti + malezijskih ringitov MYR + RM mozambiški eskudo @@ -5551,26 +5731,26 @@ For terms of use, see http://www.unicode.org/copyright.html mozambiški metikal mozambiški metikal - mozambiški metikal - mozambiški metikal - mozambiški metikal + mozambiška metikala + mozambiški metikali + mozambiških metikalov MZN namibijski dolar namibijski dolar - namibijski dolar - namibijski dolar - namibijski dolar + namibijska dolarja + namibijski dolarji + namibijskih dolarjev NAD $ nigerijska naira nigerijska naira - nigerijska naira - nigerijska naira - nigerijska naira + nigerijski nairi + nigerijske naire + nigerijskih nair NGN @@ -5580,10 +5760,11 @@ For terms of use, see http://www.unicode.org/copyright.html nikaraška zlata kordova nikaraška zlata kordova - nikaraška zlata kordova - nikaraška zlata kordova - nikaraška zlata kordova + nikaraški zlati kordovi + nikaraške zlate kordove + nikaraških zlatih kordov NIO + C$ nizozemski gulden @@ -5591,42 +5772,44 @@ For terms of use, see http://www.unicode.org/copyright.html norveška krona norveška krona - norveška krona - norveška krona - norveška krona + norveški kroni + norveške krone + norveških kron NOK + kr nepalska rupija nepalska rupija - nepalska rupija - nepalska rupija - nepalska rupija + nepalski rupiji + nepalske rupije + nepalskih rupij NPR + Rs novozelandski dolar novozelandski dolar - novozelandski dolar - novozelandski dolar - novozelandski dolar + novozelandska dolarja + novozelandski dolarji + novozelandskih dolarjev NZ$ $ omanski rial omanski rial - omanski rial - omanski rial - omanski rial + omanska riala + omanski riali + omanskih rialov OMR panamska balboa panamska balboa - panamska balboa - panamska balboa - panamska balboa + panamski balboi + panamske balboe + panamskih balbov PAB @@ -5635,9 +5818,9 @@ For terms of use, see http://www.unicode.org/copyright.html perujski novi sol perujski novi sol - perujski novi sol - perujski novi sol - perujski novi sol + perujska nova sola + perujski novi soli + perujskih novih solov PEN @@ -5654,27 +5837,29 @@ For terms of use, see http://www.unicode.org/copyright.html filipinski peso filipinski peso - filipinski peso - filipinski peso - filipinski peso + filipinska pesa + filipinski pesi + filipinskih pesov PHP pakistanska rupija pakistanska rupija - pakistanska rupija - pakistanska rupija - pakistanska rupija + pakistanski rupiji + pakistanske rupije + pakistanskih rupij PKR + Rs poljski novi zlot poljski novi zlot - poljski novi zlot - poljski novi zlot - poljski novi zlot + poljska nova zlota + poljski novi zloti + poljskih novih zlotov PLN + stari poljski zlot (1950–1995) @@ -5694,9 +5879,9 @@ For terms of use, see http://www.unicode.org/copyright.html katarski rial katarski rial - katarski rial - katarski rial - katarski rial + katarska riala + katarski riali + katarskih rialov QAR @@ -5716,18 +5901,19 @@ For terms of use, see http://www.unicode.org/copyright.html srbski dinar srbski dinar - srbski dinar - srbski dinar - srbski dinar + srbska dinarja + srbski dinarji + srbskih dinarjev RSD ruski rubelj ruski rubelj - ruski rubelj - ruski rubelj - ruski rubelj + ruska rublja + ruski rublji + ruskih rubljev RUB + ruski rubelj (1991–1998) @@ -5735,34 +5921,35 @@ For terms of use, see http://www.unicode.org/copyright.html ruandski frank ruandski frank - ruandski frank - ruandski frank - ruandski frank + ruandska franka + ruandski franki + ruandskih frankov RWF + RF saudski rial saudski rial - saudski rial - saudski rial - saudski rial + saudska riala + saudski riali + saudskih rialov SAR solomonski dolar solomonski dolar - solomonski dolar - solomonski dolar - solomonski dolar + solomonska dolarja + solomonski dolarji + solomonskih dolarjev SBD $ sejšelska rupija sejšelska rupija - sejšelska rupija - sejšelska rupija - sejšelska rupija + sejšelski rupiji + sejšelske rupije + sejšelskih rupij SCR @@ -5771,9 +5958,9 @@ For terms of use, see http://www.unicode.org/copyright.html sudanski funt sudanski funt - sudanski funt - sudanski funt - sudanski funt + sudanska funta + sudanski funti + sudanskih funtov SDG @@ -5782,27 +5969,29 @@ For terms of use, see http://www.unicode.org/copyright.html švedska krona švedska krona - švedska krona - švedska krona - švedska krona + švedski kroni + švedske krone + švedskih kron SEK + kr singapurski dolar singapurski dolar - singapurski dolar - singapurski dolar - singapurski dolar + singapurska dolarja + singapurski dolarji + singapurskih dolarjev SGD $ funt Sv. Helene funt Sv. Helene - funt Sv. Helene - funt Sv. Helene - funt Sv. Helene + funta Sv. Helene + funti Sv. Helene + funtov Sv. Helene SHP + £ slovenski tolar @@ -5821,25 +6010,25 @@ For terms of use, see http://www.unicode.org/copyright.html sieraleonski leone sieraleonski leone - sieraleonski leone - sieraleonski leone - sieraleonski leone + sieraleonska leona + sieraleonski leoni + sieraleonskih leonov SLL somalski šiling somalski šiling - somalski šiling - somalski šiling - somalski šiling + somalska šilinga + somalski šilingi + somalskih šilingov SOS surinamski dolar surinamski dolar - surinamski dolar - surinamski dolar - surinamski dolar + surinamska dolarja + surinamski dolarji + surinamskih dolarjev SRD $ @@ -5858,10 +6047,11 @@ For terms of use, see http://www.unicode.org/copyright.html saotomejska dobra saotomejska dobra - saotomejska dobra - saotomejska dobra - saotomejska dobra + saotomejski dobri + saotomejske dobre + saotomejskih dober STD + Db sovjetski rubelj @@ -5872,10 +6062,11 @@ For terms of use, see http://www.unicode.org/copyright.html sirijski funt sirijski funt - sirijski funt - sirijski funt - sirijski funt + sirijska funta + sirijski funti + sirijskih funtov SYP + £ svazijski lilangeni @@ -5888,10 +6079,11 @@ For terms of use, see http://www.unicode.org/copyright.html tajski baht tajski baht - tajski baht - tajski baht - tajski baht + tajska bahta + tajski bahti + tajskih bahtov ฿ + ฿ tadžikistanski rubelj @@ -5910,26 +6102,27 @@ For terms of use, see http://www.unicode.org/copyright.html turkmenistanski novi manat turkmenistanski novi manat - turkmenistanski novi manat - turkmenistanski novi manat - turkmenistanski novi manat + turkmenistanska nova manata + turkmenistanski novi manati + turkmenistanskih novih manatov TMT tunizijski dinar tunizijski dinar - tunizijski dinar - tunizijski dinar + tunizijska dinarja + tunizijski dinarji tunizijski dinar TND tongovska paanga tongovska paanga - tongovska paanga - tongovska paanga + tongovski paangi + tongovske paange tongovska paanga TOP + T$ timorski eskudo @@ -5940,44 +6133,45 @@ For terms of use, see http://www.unicode.org/copyright.html nova turška lira nova turška lira - nova turška lira - nova turška lira - nova turška lira + novi turški liri + nove turške lire + novih turških lir TRY + TL dolar Trinidada in Tobaga dolar Trinidada in Tobaga - dolar Trinidada in Tobaga - dolar Trinidada in Tobaga - dolar Trinidada in Tobaga + dolarja Trinidada in Tobaga + dolarji Trinidada in Tobaga + dolarjev Trinidada in Tobaga TTD $ novi tajvanski dolar novi tajvanski dolar - novi tajvanski dolar - novi tajvanski dolar - novi tajvanski dolar + nova tajvanska dolarja + novi tajvanski dolarji + novih tajvanskih dolarjev NT$ NT$ tanzanijski šiling tanzanijski šiling - tanzanijski šiling - tanzanijski šiling - tanzanijski šiling + tanzanijska šilinga + tanzanijski šilingi + tanzanijskih šilingov TZS ukrajinska grivna ukrajinska grivna - ukrajinska grivna - ukrajinska grivna - ukrajinska grivna + ukrajinski grivni + ukrajinske grivne + ukrajinskih grivn UAH @@ -5990,17 +6184,17 @@ For terms of use, see http://www.unicode.org/copyright.html ugandski šiling ugandski šiling - ugandski šiling - ugandski šiling - ugandski šiling + ugandska šilinga + ugandski šilingi + ugandskih šilingov UGX ameriški dolar - ameriški dolar - ameriška dolarja - ameriški dolarji - ameriških dolarjev + ameriški dolar + ameriška dolarja + ameriški dolarji + ameriških dolarjev $ $ @@ -6016,18 +6210,18 @@ For terms of use, see http://www.unicode.org/copyright.html urugvajski peso urugvajski peso - urugvajski peso - urugvajski peso - urugvajski peso + urugvajska pesa + urugvajski pesi + urugvajskih pesov UYU $ uzbeški sum uzbeški sum - uzbeški sum - uzbeški sum - uzbeški sum + uzbeška suma + uzbeški sumi + uzbeških sumov UZS @@ -6036,10 +6230,11 @@ For terms of use, see http://www.unicode.org/copyright.html venezuelski bolivar venezuelski bolivar - venezuelski bolivar - venezuelski bolivar - venezuelski bolivar + venezuelska bolivarja + venezuelski bolivarji + venezuelskih bolivarjev VEF + Bs vientnamski dong @@ -6053,25 +6248,25 @@ For terms of use, see http://www.unicode.org/copyright.html vanuatujski vatu vanuatujski vatu - vanuatujski vatu - vanuatujski vatu - vanuatujski vatu + vanuatujska vata + vanuatujski vati + vanuatujskih vatov VUV samoanska tala samoanska tala - samoanska tala - samoanska tala - samoanska tala + samoanski tali + samoanske tale + samoanskih tal WST CFA frank BEAC - CFA frank BEAC - CFA frank BEAC - CFA frank BEAC - CFA frank BEAC + srednjeafriški frank CFA + franka CFA BEAC + franki CFA BEAC + srednjeafriški frank CFA FCFA @@ -6095,10 +6290,11 @@ For terms of use, see http://www.unicode.org/copyright.html vzhodnokaribski dolar vzhodnokaribski dolar - vzhodnokaribski dolar - vzhodnokaribski dolar - vzhodnokaribski dolar + vzhodnokaribska dolarja + vzhodnokaribski dolarji + vzhodnokaribskih dolarjev EC$ + $ posebne pravice črpanja @@ -6113,11 +6309,11 @@ For terms of use, see http://www.unicode.org/copyright.html frank UIC - CFA frank BCEAO - CFA frank BCEAO - CFA frank BCEAO - CFA frank BCEAO - CFA frank BCEAO + zahodnoafriški frank CFA + zahodnoafriški frank CFA + franka CFA BCEAO + franki CFA BCEAO + zahodnoafriški frank CFA CFA @@ -6126,9 +6322,9 @@ For terms of use, see http://www.unicode.org/copyright.html CFP frank CFP frank - CFP frank - CFP frank - CFP frank + franka CFP + franki CFP + frankov CFP CFPF @@ -6138,7 +6334,7 @@ For terms of use, see http://www.unicode.org/copyright.html koda za potrebe testiranja - neznana ali neveljavna valuta + neznana valuta neznana ali neveljavna valuta neznana ali neveljavna valuta neznana ali neveljavna valuta @@ -6150,9 +6346,9 @@ For terms of use, see http://www.unicode.org/copyright.html jemenski rial jemenski rial - jemenski rial - jemenski rial - jemenski rial + jemenska riala + jemenski riali + jemenskih rialov YER @@ -6170,10 +6366,11 @@ For terms of use, see http://www.unicode.org/copyright.html južnoafriški rand južnoafriški rand - južnoafriški rand - južnoafriški rand - južnoafriški rand + južnoafriška randa + južnoafriški randi + južnoafriških randov ZAR + R zambijska kvača (1968–2012) @@ -6181,10 +6378,11 @@ For terms of use, see http://www.unicode.org/copyright.html zambijska kvača zambijska kvača - zambijska kvača - zambijska kvača - zambijska kvača + zambijski kvači + zambijske kvače + zambijskih kvač ZMW + ZK zairski novi zaire @@ -6201,13 +6399,13 @@ For terms of use, see http://www.unicode.org/copyright.html ⩾{0} - {0}–{1} + {0}–{1} - {0}/{1} + {0} na {1} G @@ -6223,26 +6421,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metri na sekundo kvadrat {0} metrov na sekundo kvadrat - - kotna minuta - {0}′ - {0}′ - {0}′ - {0}′ - - - kotna sekunda - {0}″ - {0}″ - {0}″ - {0}″ - - - stopinja - {0} ° - {0} ° - {0} ° - {0} ° + + vrtljaj + {0} vrtljaj + {0} vrtljaja + {0} vrtljaji + {0} vrtljajev radian @@ -6251,12 +6435,33 @@ For terms of use, see http://www.unicode.org/copyright.html {0} radianov {0} radianov - - juter - {0} jutro - {0} jutri - {0} jutra - {0} juter + + stopinja + {0} stopinja + {0} stopinji + {0} stopinje + {0} stopinj + + + kotna minuta + {0} kotna minuta + {0} kotni minuti + {0} kotne minute + {0} kotnih minut + + + kotna sekunda + {0} kotna sekunda + {0} kotni sekundi + {0} kotne sekunde + {0} kotnih sekund + + + kvadratni kilometri + {0} kvadratni kilometer + {0} kvadratna kilometra + {0} kvadratni kilometri + {0} kvadratnih kilometrov ha @@ -6265,12 +6470,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha + + kvadratni metri + {0} kvadratni meter + {0} kvadratna metra + {0} kvadratni metri + {0} kvadratnih metrov + {0} na kvadratni meter + kvadratni centimetri {0} kvadratni centimeter {0} kvadratna centimetra {0} kvadratni centimetri {0} kvadratnih centimetrov + {0} na kvadratni centimeter + + + mi² + {0} mi² + {0} mi² + {0} mi² + {0} mi² + + + juter + {0} jutro + {0} jutri + {0} jutra + {0} juter + + + yd² + {0} yd² + {0} yd² + {0} yd² + {0} yd² ft² @@ -6285,34 +6520,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² {0} in² + {0} na kvadratni palec - - kvadratni kilometri - {0} km² - {0} km² - {0} km² - {0} km² - - - kvadratni metri - {0} m² - {0} m² - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² - {0} yd² - {0} yd² + + karat + {0} karat + {0} karata + {0} karati + {0} karatov litrov na kilometer @@ -6321,6 +6536,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litrov na kilometer {0} litrov na kilometer + + L/100km + {0} liter na 100 kilometrov + {0} litra na 100 kilometrov + {0} litri na 100 kilometrov + {0} litrov na 100 kilometrov + milj na galono {0} milja na galono @@ -6328,69 +6550,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milj na galono {0} milj na galono - - bit - {0} bit - {0} bita - {0} bite - {0} bitov - - - bajt - {0} bajt - {0} bajta - {0} bajti - {0} bajtov - - - gigabiti - {0} gigabit - {0} gigabita - {0} gigabiti - {0} gigabitov - - - gigabajti - {0} gigabajt - {0} gigabajta - {0} gigabajti - {0} gigabajtov - - - kilobiti - {0} kilobit - {0} kilobita - {0} kilobiti - {0} kilobitov - - - kilobajti - {0} kilobajt - {0} kilobajta - {0} kilobajti - {0} kilobajtov - - - megabiti - {0} megabit - {0} megabita - {0} megabiti - {0} megabitov - - - megabajti - {0} megabajt - {0} megabajta - {0} megabajti - {0} megabajtov - - - terabiti - {0} terabit - {0} terabita - {0} terabiti - {0} terabitov - terabajti {0} terabajt @@ -6398,77 +6557,152 @@ For terms of use, see http://www.unicode.org/copyright.html {0} terabajti {0} terabajtov - - dni - {0} dan - {0} dni - {0} dnevi - {0} dni + + terabiti + {0} terabit + {0} terabita + {0} terabiti + {0} terabitov - - ur - {0} ura - {0} uri - {0} ure - {0} ur - {0}/h + + gigabajti + {0} gigabajt + {0} gigabajta + {0} gigabajti + {0} gigabajtov - - μs - {0} μs - {0} μs - {0} μs - {0} μs + + gigabiti + {0} gigabit + {0} gigabita + {0} gigabiti + {0} gigabitov - - ms - {0} ms - {0} ms - {0} ms - {0} ms + + megabajti + {0} megabajt + {0} megabajta + {0} megabajti + {0} megabajtov - - minut - {0} minuta - {0} minuti - {0} minute - {0} minut + + megabiti + {0} megabit + {0} megabita + {0} megabiti + {0} megabitov - - mesecev - {0} mesec - {0} meseca - {0} meseci - {0} mesecev + + kilobajti + {0} kilobajt + {0} kilobajta + {0} kilobajti + {0} kilobajtov - - ns - {0} ns - {0} ns - {0} ns - {0} ns + + kilobiti + {0} kilobit + {0} kilobita + {0} kilobiti + {0} kilobitov - - sekund - {0} sekunda - {0} sekundi - {0} sekunde - {0} sekund - {0}/s + + bajt + {0} bajt + {0} bajta + {0} bajti + {0} bajtov - - tednov - {0} teden - {0} tedna - {0} tedni - {0} tednov + + bit + {0} bit + {0} bita + {0} bite + {0} bitov + + + stoletja + {0} stoletje + {0} stoletji + {0} stoletja + {0} stoletij - let - {0} leto - {0} leti - {0} leta - {0} let + let + {0} leto + {0} leti + {0} leta + {0} let + {0} na leto + + + mesecev + {0} mesec + {0} meseca + {0} meseci + {0} mesecev + {0} na mesec + + + tednov + {0} teden + {0} tedna + {0} tedni + {0} tednov + {0} na teden + + + dni + {0} dan + {0} dneva + {0} dnevi + {0} dni + {0} na dan + + + ur + {0} ura + {0} uri + {0} ure + {0} ur + {0}/h + + + minut + {0} minuta + {0} minuti + {0} minute + {0} minut + {0} na minuto + + + sekund + {0} sekunda + {0} sekundi + {0} sekunde + {0} sekund + {0}/s + + + ms + {0} ms + {0} millisekundi + {0} millisekunde + {0} millisekund + + + μs + {0} μs + {0} μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns + {0} ns + {0} ns amperi @@ -6498,6 +6732,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} voltov {0} voltov + + kcal + {0} kcal + {0} kcal + {0} kcal + {0} kcal + cal {0} cal @@ -6512,20 +6753,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kalorij {0} kalorij - - joule - {0} J - {0} J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - {0} kcal - {0} kcal - kJ {0} kJ @@ -6533,6 +6760,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kJ {0} kJ + + joule + {0} J + {0} J + {0} J + {0} J + kWh {0} kWh @@ -6547,12 +6781,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigahertzev {0} gigahertzev - - hertz - {0} hertz - {0} hertza - {0} hertzev - {0} hertzev + + megahertz + {0} megahertz + {0} megahertza + {0} megahertzev + {0} megahertzev kilohertz @@ -6561,26 +6795,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilohertzev {0} kilohertzev - - megahertz - {0} megahertz - {0} megahertza - {0} megahertzev - {0} megahertzev + + hertz + {0} hertz + {0} hertza + {0} hertzev + {0} hertzev - - au - {0} au - {0} au - {0} au - {0} au + + kilometri + {0} kilometer + {0} kilometra + {0} kilometri + {0} kilometrov + {0} na kilometer - - centimetri - {0} cm - {0} cm - {0} cm - {0} cm + + metri + {0} meter + {0} metra + {0} metri + {0} metrov + {0} na meter decimetri @@ -6589,40 +6825,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} decimetri {0} decimetrov - - ft - {0} ft - {0} ft - {0} ft - {0} ft + + centimetri + {0} centimeter + {0} centimetra + {0} centimetri + {0} centimetrov + {0} na centimeter - - in - {0} in - {0} in - {0} in - {0} in - - - kilometri - {0} km - {0} km - {0} km - {0} km - - - svetlobnih let - {0} svetlobno leto - {0} svetlobni leti - {0} svetlobna leta - {0} svetlobnih let - - - metri - {0} m - {0} m - {0} m - {0} m + + milimetri + {0} milimeter + {0} milimetra + {0} milimetri + {0} milimetrov mikrometri @@ -6631,20 +6847,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mikrometri {0} mikrometrov - - milje - {0} mi - {0} mi - {0} mi - {0} mi - - - milimetri - {0} mm - {0} mm - {0} mm - {0} mm - nanometri {0} nanometer @@ -6652,20 +6854,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nanometri {0} nanometrov - - nmi - {0} nmi - {0} nmi - {0} nmi - {0} nmi - - - pc - {0} pc - {0} pc - {0} pc - {0} pc - pm {0} pm @@ -6673,6 +6861,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + milje + {0} milja + {0} milji + {0} milje + {0} milj + yd {0} yd @@ -6680,6 +6875,57 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd {0} yd + + ft + {0} ft + {0} ft + {0} ft + {0} ft + {0} na čevelj + + + in + {0} in + {0} in + {0} in + {0} in + {0} na palec + + + pc + {0} pc + {0} pc + {0} pc + {0} pc + + + svetlobnih let + {0} svetlobno leto + {0} svetlobni leti + {0} svetlobna leta + {0} svetlobnih let + + + au + {0} au + {0} au + {0} au + {0} au + + + nmi + {0} nmi + {0} nmi + {0} nmi + {0} nmi + + + skandinavska milja + {0} skandinavska milja + {0} skandinavski milji + {0} skandinavske milje + {0} skandinavskih milj + luks {0} luks @@ -6687,27 +6933,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} luksi {0} luksov - - CD - {0} CD - {0} CD - {0} CD - {0} CD - - - g - {0} g - {0} g - {0} g - {0} g - - - kg - {0} kg - {0} kg - {0} kg - {0} kg - t {0} t @@ -6715,12 +6940,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} t {0} t - - µg - {0} µg - {0} µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0} kg + {0} kg + {0}/kg + + + g + {0} g + {0} g + {0} g + {0} g + {0}/g mg @@ -6729,26 +6963,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mg {0} mg - - oz - {0} oz - {0} oz - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb - {0} lb - {0} lb + + µg + {0} µg + {0} µg + {0} µg + {0} µg tn @@ -6757,6 +6977,36 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tn {0} tn + + lb + {0} lb + {0} lb + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0} oz + {0} oz + {0}/oz + + + oz t + {0} oz t + {0} oz t + {0} oz t + {0} oz t + + + CD + {0} CD + {0} CD + {0} CD + {0} CD + GW {0} GW @@ -6764,20 +7014,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GW {0} GW - - KM - {0} KM - {0} KM - {0} KM - {0} KM - - - kW - {0} kW - {0} kW - {0} kW - {0} kW - MW {0} MW @@ -6785,12 +7021,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} MW {0} MW - - mW - {0} mW - {0} mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW + {0} kW + {0} kW W @@ -6799,6 +7035,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + mW + {0} mW + {0} mW + {0} mW + {0} mW + + + KM + {0} KM + {0} KM + {0} KM + {0} KM + hPa {0} hPa @@ -6806,20 +7056,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -6834,33 +7070,54 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - karat - {0} karat - {0} karata - {0} karati - {0} karatov + + inHg + {0} inHg + {0} inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar + {0} mbar + {0} mbar kilometri na uro - {0} km/h - {0} km/h - {0} km/h - {0} km/h + {0} kilometer na uro + {0} kilometra na uro + {0} kilometri na uro + {0} kilometrov na uro metri na sekundo - {0} m/s - {0} m/s - {0} m/s - {0} m/s + {0} meter na sekundo + {0} metra na sekundo + {0} metri na sekundo + {0} metrov na sekundo milje na uro - {0} mi/h - {0} mi/h - {0} mi/h - {0} mi/h + {0} milja na uro + {0} milji na uro + {0} milje na uro + {0} milj na uro + + + vozel + {0} vozel + {0} vozla + {0} vozli + {0} vozlov + + + ° + {0}° + {0}° + {0}° + {0}° °C @@ -6883,19 +7140,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvini {0} kelvinov - - ac ft - {0} ac ft - {0} ac ft - {0} ac ft - {0} ac ft + + kubičnih kilometrov + {0} kubični kilometer + {0} kubična kilometra + {0} kubični kilometri + {0} kubičnih kilometrov - - centilitrov - {0} centiliter - {0} centilitra - {0} centilitri - {0} centilitrov + + kubičnih metrov + {0} kubični meter + {0} kubična metra + {0} kubični metri + {0} kubičnih metrov + {0} na kubični meter kubični centimeter @@ -6903,6 +7161,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubična centimetra {0} kubični centimetri {0} kubičnih centimetrov + {0} na kubični centimeter + + + kubične milje + {0} kubična milja + {0} kubični milji + {0} kubične milje + {0} kubičnih milj + + + kubični jard + {0} kubični jard + {0} kubična jarda + {0} kubični jardi + {0} kubičnih jardov kubični čevlji @@ -6918,61 +7191,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubični palci {0} kubičnih palcev - - kubičnih kilometrov - {0} km³ - {0} km³ - {0} km³ - {0} km³ - - - kubičnih metrov - {0} kubični meter - {0} kubična metra - {0} kubični metri - {0} kubičnih metrov - - - kubične milje - {0} mi³ - {0} mi³ - {0} mi³ - {0} mi³ - - - kubični jard - {0} kubični jard - {0} kubična jarda - {0} kubični jardi - {0} kubičnih jardov - - - skodelice - {0} skodelica - {0} skodelici - {0} skodelice - {0} skodelic - - - decilitri - {0} deciliter - {0} decilitra - {0} decilitri - {0} decilitrov - - - fl oz - {0} fl oz - {0} fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal - {0} gal - {0} gal + + megalitri + {0} megaliter + {0} megalitra + {0} megalitri + {0} megalitrov hektolitri @@ -6983,17 +7207,25 @@ For terms of use, see http://www.unicode.org/copyright.html litrov - {0} l - {0} l - {0} l - {0} l + {0} liter + {0} litra + {0} litri + {0} litrov + {0} na liter - - megalitri - {0} megaliter - {0} megalitra - {0} megalitri - {0} megalitrov + + decilitri + {0} deciliter + {0} decilitra + {0} decilitri + {0} decilitrov + + + centilitrov + {0} centiliter + {0} centilitra + {0} centilitri + {0} centilitrov mililitri @@ -7002,12 +7234,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mililitri {0} militrov - - pt - {0} pt - {0} pt - {0} pt - {0} pt + + metrične pinte + {0} metrična pinta + {0} metrični pinti + {0} metrične pinte + {0} metričnih pint + + + metrične skodelice + {0} metrična skodelica + {0} metrični skodelici + {0} metrične skodelice + {0} metričnih skodelic + + + ac ft + {0} ac ft + {0} ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0} gal + {0} gal + {0} na galono qt @@ -7016,6 +7270,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} qt {0} qt + + pt + {0} pt + {0} pt + {0} pt + {0} pt + + + skodelice + {0} skodelica + {0} skodelici + {0} skodelice + {0} skodelic + + + fl oz + {0} fl oz + {0} fl oz + {0} fl oz + {0} fl oz + jedilne žlice {0} jedilna žlica @@ -7030,6 +7305,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} čajne žličke {0} čajnih žličk + + {0} V + {0} S + {0} J + {0} Z + @@ -7049,6 +7330,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + vrt + {0} vrt + {0} vrt + {0} vrt + {0} vrt + + + rad + {0} rad + {0} rad + {0} rad + {0} rad + + + ° + {0} ° + {0} ° + {0} ° + {0} ° + {0}′ @@ -7063,26 +7365,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - ° - {0} ° - {0} ° - {0} ° - {0} ° - - - rad - {0} rad - {0} rad - {0} rad - {0} rad - - - juter - {0} jut. - {0} jut. - {0} jut. - {0} jut. + + km² + {0} km² + {0} km² + {0} km² + {0} km² ha @@ -7091,12 +7379,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha + + + {0} m² + {0} m² + {0} m² + {0} m² + {0} na m² + cm² {0} cm² {0} cm² {0} cm² {0} cm² + {0} na cm² + + + mi² + {0} mi² + {0} mi² + {0} mi² + {0} mi² + + + juter + {0} jut. + {0} jut. + {0} jut. + {0} jut. + + + yd² + {0} yd² + {0} yd² + {0} yd² + {0} yd² ft² @@ -7111,34 +7429,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² {0} in² + {0} na in² - - km² - {0} km² - {0} km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt + {0} kt + {0} kt L/km @@ -7147,6 +7445,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} L/km {0} L/km + + l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km + mpg {0} mpg @@ -7154,69 +7459,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mpg {0} mpg - - bit - {0} bit - {0} bit - {0} bit - {0} bit - - - bajt - {0} bajt - {0} bajta - {0} bajti - {0} bajtov - - - Gb - {0} Gb - {0} Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - {0} Tb - {0} Tb - TB {0} TB @@ -7224,77 +7466,152 @@ For terms of use, see http://www.unicode.org/copyright.html {0} TB {0} TB - - dni - {0} d - {0} d - {0} d - {0} d + + Tb + {0} Tb + {0} Tb + {0} Tb + {0} Tb - - ur - {0} h - {0} h - {0} h - {0} h - {0}/h + + GB + {0} GB + {0} GB + {0} GB + {0} GB - - μs - {0} μs - {0} μs - {0} μs - {0} μs + + Gb + {0} Gb + {0} Gb + {0} Gb + {0} Gb - - ms - {0} ms - {0} ms - {0} ms - {0} ms + + MB + {0} MB + {0} MB + {0} MB + {0} MB - - minut - {0} min - {0} min - {0} min - {0} min + + Mb + {0} Mb + {0} Mb + {0} Mb + {0} Mb - - mesecev - {0} m - {0} m - {0} m - {0} m + + kB + {0} kB + {0} kB + {0} kB + {0} kB - - ns - {0} ns - {0} ns - {0} ns - {0} ns + + kb + {0} kb + {0} kb + {0} kb + {0} kb - - sekund - {0} s - {0} s - {0} s - {0} s - {0}/s + + bajt + {0} bajt + {0} bajta + {0} bajti + {0} bajtov - - tednov - {0} t - {0} t - {0} t - {0} t + + bit + {0} bit + {0} bit + {0} bit + {0} bit + + + stol. + {0} stol. + {0} stol. + {0} stol. + {0} stol. - let - {0} l - {0} l - {0} l - {0} l + let + {0} l + {0} l + {0} l + {0} l + {0}/l + + + mesecev + {0} m + {0} m + {0} m + {0} m + {0}/m + + + tednov + {0} t + {0} t + {0} t + {0} t + {0}/t + + + dni + {0} d + {0} d + {0} d + {0} d + {0} na dan + + + ur + {0} h + {0} h + {0} h + {0} h + {0}/h + + + minut + {0} min + {0} min + {0} min + {0} min + {0}/min + + + sekund + {0} s + {0} s + {0} s + {0} s + {0}/s + + + ms + {0} ms + {0} ms + {0} ms + {0} ms + + + μs + {0} μs + {0} μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns + {0} ns + {0} ns amp @@ -7324,6 +7641,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + {0} kcal + {0} kcal + cal {0} cal @@ -7338,20 +7662,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - joule - {0} J - {0} J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - {0} kcal - {0} kcal - kJ {0} kJ @@ -7359,6 +7669,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kJ {0} kJ + + joule + {0} J + {0} J + {0} J + {0} J + kWh {0} kWh @@ -7373,12 +7690,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz + {0} MHz + {0} MHz kHz @@ -7387,26 +7704,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au - {0} au - {0} au + + km + {0} km + {0} km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm - {0} cm - {0} cm + + m + {0} m + {0} m + {0} m + {0} m + {0}/m dm @@ -7415,54 +7734,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dm {0} dm - - ft - {0} ft - {0} ft - {0} ft - {0} ft - - - in - {0} in - {0} in - {0} in - {0} in - - - km - {0} km - {0} km - {0} km - {0} km - - - sv. let - {0} sv. let - {0} sv. leti - {0} sv. leta - {0} sv. let - - - m - {0} m - {0} m - {0} m - {0} m - - - µm - {0} µm - {0} µm - {0} µm - {0} µm - - - mi - {0} mi - {0} mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0} cm + {0} cm + {0}/cm mm @@ -7471,6 +7749,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mm {0} mm + + µm + {0} µm + {0} µm + {0} µm + {0} µm + nm {0} nm @@ -7478,20 +7763,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - {0} nmi - {0} nmi - - - pc - {0} pc - {0} pc - {0} pc - {0} pc - pm {0} pm @@ -7499,6 +7770,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + mi + {0} mi + {0} mi + {0} mi + {0} mi + yd {0} yd @@ -7506,6 +7784,57 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd {0} yd + + ft + {0} ft + {0} ft + {0} ft + {0} ft + {0}/ft + + + in + {0} in + {0} in + {0} in + {0} in + {0}/in + + + pc + {0} pc + {0} pc + {0} pc + {0} pc + + + sv. let + {0} sv. let + {0} sv. leti + {0} sv. leta + {0} sv. let + + + au + {0} au + {0} au + {0} au + {0} au + + + nmi + {0} nmi + {0} nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + {0} smi + {0} smi + lx {0} lx @@ -7513,19 +7842,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lx {0} lx - - CD - {0} CD - {0} CD - {0} CD - {0} CD - - - g - {0} g - {0} g - {0} g - {0} g + + t + {0} t + {0} t + {0} t + {0} t kg @@ -7533,13 +7855,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kg {0} kg {0} kg + {0}/kg - - t - {0} t - {0} t - {0} t - {0} t + + g + {0} g + {0} g + {0} g + {0} g + {0}/g + + + mg + {0} mg + {0} mg + {0} mg + {0} mg µg @@ -7548,12 +7879,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} µg {0} µg - - mg - {0} mg - {0} mg - {0} mg - {0} mg + + tn + {0} tn + {0} tn + {0} tn + {0} tn + + + lb + {0} lb + {0} lb + {0} lb + {0} lb + {0}/lb oz @@ -7561,6 +7900,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} oz {0} oz {0} oz + {0}/oz oz t @@ -7569,19 +7909,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} oz t {0} oz t - - lb - {0} lb - {0} lb - {0} lb - {0} lb - - - tn - {0} tn - {0} tn - {0} tn - {0} tn + + CD + {0} CD + {0} CD + {0} CD + {0} CD GW @@ -7590,12 +7923,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GW {0} GW - - KM - {0} KM - {0} KM - {0} KM - {0} KM + + MW + {0} MW + {0} MW + {0} MW + {0} MW kW @@ -7604,12 +7937,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kW {0} kW - - MW - {0} MW - {0} MW - {0} MW - {0} MW + + W + {0} W + {0} W + {0} W + {0} W mW @@ -7618,12 +7951,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mW {0} mW - - W - {0} W - {0} W - {0} W - {0} W + + KM + {0} KM + {0} KM + {0} KM + {0} KM hPa @@ -7632,20 +7965,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -7660,12 +7979,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kt - {0} kt - {0} kt - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar + {0} mbar + {0} mbar km/h @@ -7688,6 +8014,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + kn + {0} kn + {0} kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + {0}° + {0}° + °C {0} °C @@ -7709,41 +8049,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - {0} ac ft - {0} ac ft - - - cL - {0} cL - {0} cL - {0} cL - {0} cL - - - cm³ - {0} cm³ - {0} cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -7757,6 +8062,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -7772,33 +8086,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - c - {0} c - {0} c - {0} c - {0} c + + ft³ + {0} ft³ + {0} ft³ + {0} ft³ + {0} ft³ - - dL - {0} dL - {0} dL - {0} dL - {0} dL + + in³ + {0} in³ + {0} in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml + {0} Ml + {0} Ml hL @@ -7813,13 +8120,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml - {0} Ml - {0} Ml + + dL + {0} dL + {0} dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL + {0} cL + {0} cL ml @@ -7828,12 +8143,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ml {0} ml - - pt - {0} pt - {0} pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + {0} mpt + {0} mpt + + + m. skod. + {0} m. skod. + {0} m. skod. + {0} m. skod. + {0} m. skod. + + + ac ft + {0} ac ft + {0} ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0} gal + {0} gal + {0}/gal qt @@ -7842,6 +8179,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} qt {0} qt + + pt + {0} pt + {0} pt + {0} pt + {0} pt + + + c + {0} c + {0} c + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + {0} fl oz + {0} fl oz + žlica {0} žlica @@ -7856,6 +8214,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} žličke {0} žličk + + {0} V + {0} S + {0} J + {0} Z + @@ -7867,6 +8231,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0} ° + {0} ° + {0} ° + {0} ° + {0}′ {0}′ @@ -7879,17 +8249,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0} ° - {0} ° - {0} ° - {0} ° - - - {0} jut. - {0} jut. - {0} jut. - {0} jut. + + {0} km² + {0} km² + {0} km² + {0} km² {0} ha @@ -7897,18 +8261,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha - - {0} ft² - {0} ft² - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} km² - {0} km² - {0} m² {0} m² @@ -7921,80 +8273,80 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² - - dni - {0} d - {0} d - {0} d - {0} d + + {0} jut. + {0} jut. + {0} jut. + {0} jut. - - ur - {0} h - {0} h - {0} h - {0} h + + {0} ft² + {0} ft² + {0} ft² + {0} ft² - - ms - {0} ms - {0} ms - {0} ms - {0} ms - - - minut - {0} min - {0} min - {0} min - {0} min - - - mesecev - {0} m - {0} m - {0} m - {0} m - - - sekund - {0} s - {0} s - {0} s - {0} s - - - tednov - {0} t - {0} t - {0} t - {0} t + + l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km + {0} l/100 km - let - {0} l - {0} l - {0} l - {0} l + let + {0} l + {0} l + {0} l + {0} l - - cm - {0} cm - {0} cm - {0} cm - {0} cm + + mesecev + {0} m + {0} m + {0} m + {0} m - - {0} ft - {0} ft - {0} ft - {0} ft + + tednov + {0} t + {0} t + {0} t + {0} t - - {0} in - {0} in - {0} in - {0} in + + dni + {0} d + {0} d + {0} d + {0} d + + + ur + {0} h + {0} h + {0} h + {0} h + + + minut + {0} min + {0} min + {0} min + {0} min + + + sekund + {0} s + {0} s + {0} s + {0} s + + + ms + {0} ms + {0} ms + {0} ms + {0} ms km @@ -8003,12 +8355,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} km {0} km - - {0} ly - {0} sv. l. - {0} sv. l. - {0} sv. l. - m {0} m @@ -8016,11 +8362,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m {0} m - - {0} mi - {0} mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0} cm + {0} cm mm @@ -8035,18 +8382,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} mi + {0} mi + {0} mi + {0} mi + {0} yd {0} yd {0} yd {0} yd - - g - {0} g - {0} g - {0} g - {0} g + + {0} ft + {0} ft + {0} ft + {0} ft + + + {0} in + {0} in + {0} in + {0} in + + + {0} ly + {0} sv. l. + {0} sv. l. + {0} sv. l. kg @@ -8055,11 +8419,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kg {0} kg - - {0} oz - {0} oz - {0} oz - {0} oz + + g + {0} g + {0} g + {0} g + {0} g {0} lb @@ -8067,11 +8432,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lb {0} lb - - {0} KM - {0} KM - {0} KM - {0} hp + + {0} oz + {0} oz + {0} oz + {0} oz {0} kW @@ -8085,6 +8450,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} KM + {0} KM + {0} KM + {0} hp + {0} hPa {0} hPa @@ -8154,39 +8525,45 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l + + {0} V + {0} S + {0} J + {0} Z + - h:mm + h.mm - h:mm:ss + h.mm.ss - m:ss + m.ss - {0}, {1} - {0}, {1} + {0}, {1} + {0}, {1} {0} in {1} {0} in {1} - {0}, {1} - {0}, {1} + {0}, {1} + {0}, {1} {0} in {1} {0} in {1} - {0}, {1} - {0}, {1} + {0}, {1} + {0}, {1} {0} in {1} {0} in {1} - {0}, {1} - {0}, {1} + {0}, {1} + {0}, {1} {0} in {1} {0} in {1} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sl_SI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sl_SI.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sl_SI.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sl_SI.xml index f9e232f2dd2..ed8c62a6eeb 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sl_SI.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sl_SI.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/smn.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/smn.xml similarity index 77% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/smn.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/smn.xml index 813c172a132..6a33c2ab2ba 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/smn.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/smn.xml @@ -1,13 +1,12 @@ - - - + @@ -82,6 +81,9 @@ For terms of use, see http://www.unicode.org/copyright.html oovtâkiärdánis kiinakielâ ärbivuáválâš kiinakielâ + + Suomâ + metrisâš brittilâš @@ -175,6 +177,12 @@ For terms of use, see http://www.unicode.org/copyright.html 3. niälj. 4. niälj. + + 1. niäljádâs + 2. niäljádâs + 3. niäljádâs + 4. niäljádâs + @@ -234,6 +242,48 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + ¤ 0K + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 000K + ¤ 0M + ¤ 0M + ¤ 0M + ¤ 00M + ¤ 00M + ¤ 00M + ¤ 000M + ¤ 000M + ¤ 000M + ¤ 0G + ¤ 0G + ¤ 0G + ¤ 00G + ¤ 00G + ¤ 00G + ¤ 000G + ¤ 000G + ¤ 000G + ¤ 0T + ¤ 0T + ¤ 0T + ¤ 00T + ¤ 00T + ¤ 00T + ¤ 000T + ¤ 000T + ¤ 000T + + + Tanska ruvnâ @@ -266,39 +316,39 @@ For terms of use, see http://www.unicode.org/copyright.html + + iveh + + + mánuppajeh + + + ohoh + peeivih tiijmeh + + minutteh + + + sekunteh + + + millisekunteh + mikrosekunteh {0} μs {0} μs {0} μs - - millisekunteh - - - minutteh - - - mánuppajeh - nanosekunteh - - sekunteh - - - ohoh - - - iveh - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/smn_FI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/smn_FI.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/smn_FI.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/smn_FI.xml index 2cee8ef0d71..450f493ccf1 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/smn_FI.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/smn_FI.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sn.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sn.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sn.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sn.xml index 9371dd73854..1088cbdee82 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sn.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sn.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguila Albania Armenia - Netherlands Antilles Angola Ajentina Samoa ye Amerika @@ -572,6 +570,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + @@ -751,3 +777,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sn_ZW.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sn_ZW.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sn_ZW.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sn_ZW.xml index 83754f5c72f..2e789abf6cd 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sn_ZW.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sn_ZW.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/so.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/so.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/so.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/so.xml index 99cf8afc7c7..3d235bf1af2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/so.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/so.xml @@ -1,13 +1,12 @@ - - - + @@ -108,7 +107,6 @@ For terms of use, see http://www.unicode.org/copyright.html Albaaniyaan Seerbiyaan Sesooto - Suudaaniis Swiidhis Sawaaxili Tamiil @@ -147,7 +145,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albaaniya Armeeniya - Netherlands Antilles Angoola Arjantiin Samowa Ameerika @@ -373,9 +370,9 @@ For terms of use, see http://www.unicode.org/copyright.html Lacag - Habeentiriska yuhuudda - Habeentiriska islaamka - Habeentiriska jabbaanka + Habeentiriska yuhuudda + Habeentiriska islaamka + Habeentiriska jabbaanka @@ -616,6 +613,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + sn. + gn. + sn. gn. @@ -830,6 +831,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00 + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/so_DJ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/so_DJ.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/so_DJ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/so_DJ.xml index a99030188d2..212e784b5ea 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/so_DJ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/so_DJ.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/so_ET.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/so_ET.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/so_ET.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/so_ET.xml index 4c749eec7ca..41934897172 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/so_ET.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/so_ET.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/so_KE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/so_KE.xml new file mode 100644 index 00000000000..1708bc615d9 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/so_KE.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + Ksh + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/so_SO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/so_SO.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/so_SO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/so_SO.xml index a1327a048c1..476216b11b0 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/so_SO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/so_SO.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sq.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sq.xml similarity index 86% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sq.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sq.xml index 64182471e57..398e76e00af 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sq.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sq.xml @@ -1,13 +1,12 @@ - - - + @@ -21,30 +20,34 @@ For terms of use, see http://www.unicode.org/copyright.html afrikanisht agemisht akanisht - amarike + amarikisht arabisht arabishte standarde moderne mapuçisht asamezisht asuisht - azere + azerbajxhanisht + azerisht bashkirisht bjellorusisht - bemba - bena + bembaisht + benaisht bullgarisht - bambara + balokishte perëndimore + bambarisht bengalisht tibetisht - bretone - bodo + bretonisht + bodoisht boshnjakisht katalonisht + çeçenisht çigisht - çeroki + çerokisht kurdishte sorani korsikanisht çekisht + çuvashisht uellsisht danisht taitisht @@ -53,9 +56,9 @@ For terms of use, see http://www.unicode.org/copyright.html gjermanishte zvicerane (dialekti i Alpeve) zarmisht sorbishte e poshtme - dualisht - xhula-fonji - xongka + dualaisht + xhulafonjisht + xhongaisht embuisht juisht greqisht @@ -63,8 +66,9 @@ For terms of use, see http://www.unicode.org/copyright.html anglishte australiane anglishte kanadeze anglishte britanike + anglishte e Mbretërisë së Bashkuar anglishte amerikane - anglisht (SHBA) + anglishte e SHBA-së esperanto spanjisht spanjishte amerikano-latine @@ -75,13 +79,13 @@ For terms of use, see http://www.unicode.org/copyright.html persisht finlandisht filipinase - fixhiane + fixhianisht faroisht frëngjisht frëngjishte kanadeze frëngjishte zvicerane frizianisht - irlandezçe + irlandisht gagauzisht Galisht galike @@ -89,37 +93,37 @@ For terms of use, see http://www.unicode.org/copyright.html gjermanishte zvicerane guxharatisht gusisht - mankse + manksisht hausisht - hauajane + huajanisht hebraisht - indishte + indisht kroatisht sorbiane e sipërme - haitiançe + haitianisht hungarisht armenisht Interlingua indonezisht Gjuha nderkombtare - igbe + igboisht sishuanisht islandisht italisht - inuktitut + inuktitutisht japonisht ngombisht maçamisht javanisht gjeorgjisht kabilisht - kambishte + kambaisht makondisht kabuverdianisht kojraçinisht kikujuisht kazakisht - kalalisute + kalalisutisht kalenjinisht kmere kanade @@ -130,7 +134,7 @@ For terms of use, see http://www.unicode.org/copyright.html shambalisht bafianisht kurde - kornisht + kornishisht kirgizisht latinisht langisht @@ -139,20 +143,21 @@ For terms of use, see http://www.unicode.org/copyright.html lakotisht lingalisht laosisht + lurishte veriore lituanisht - Lubakatange + lubakatangisht luoisht lujaisht letonisht masaisht meruisht norisjene - malageze - makuamito + malagezisht + makuamitoisht metaisht maorisht maqedonisht - malajalame + malajalamisht mongolisht mohaukisht maratisht @@ -160,12 +165,15 @@ For terms of use, see http://www.unicode.org/copyright.html maltisht mundagishte birmanisht + mazanderanisht namaishte bokmalishte norvegjeze ndebelishte veriore + gjermanishte e vendeve të ulëta + gjermanishte saksone e vendeve të ulëta nepalisht holandisht - flamande + flamandisht kuasisht ninorske norvegjeze Norvegjisht @@ -174,14 +182,14 @@ For terms of use, see http://www.unicode.org/copyright.html niankolisht Oksitanisht oromoisht - orije - panxhabe + orijaisht + panxhabisht polonisht - pashto + pashtoisht portugalisht portugalishte braziliane portugalishte evropiane - keçua + keçuaisht kiçeisht rome rundisht @@ -194,14 +202,15 @@ For terms of use, see http://www.unicode.org/copyright.html sanskritisht samburisht sanguisht - sindi + sindisht + kurdishte jugore samishte veriore senaishte senishte kojrabore sangoisht Serbo-Kroatisht - taçelit - sinhale + taçelitisht + sinhalisht sllovakisht sllovenisht samishte jugore @@ -216,7 +225,7 @@ For terms of use, see http://www.unicode.org/copyright.html sundanisht suedisht suahilisht - suahilishte kongoje + suahilishte kongoje tamile teluge tezoisht @@ -239,8 +248,9 @@ For terms of use, see http://www.unicode.org/copyright.html vaisht vietnamisht vunjisht + uarlipirisht ulufisht - xhose + xhozaisht sogisht Jiden jorubisht @@ -248,7 +258,7 @@ For terms of use, see http://www.unicode.org/copyright.html kinezisht kinezishte e thjeshtuar kinezishte tradicionale - zulu + zuluisht nuk ka përmbajtje gjuhësore @@ -346,12 +356,12 @@ For terms of use, see http://www.unicode.org/copyright.html Barbados Bangladesh Belgjikë - Burkina Faso + Burkina-Faso Bullgari Bahrein Burund Benin - Shën Bartolemeo + Shën-Bartolemeo Bermudë Brunej Bolivi @@ -359,12 +369,12 @@ For terms of use, see http://www.unicode.org/copyright.html Brazil Bahamas Butan - Ishujt Bove - Botsvanë + Ishujt Bove’ + Botsuanë Bjellorusi Belizë Kanada - Ishujt Kokos + Ishujt Kokosë Kongo-Kinshasa Kongo (RDK) Republika Afrikano-Qendrore @@ -378,7 +388,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kinë Kolumbi Ishulli Klipërton - Kosta Rikë + Kosta-Rikë Kubë Kepi i Gjelbër Kuraçao @@ -386,7 +396,7 @@ For terms of use, see http://www.unicode.org/copyright.html Qipro Republika Çeke Gjermani - Diego Garsia + Diego-Garsia Xhibut Danimarkë Dominikë @@ -423,14 +433,14 @@ For terms of use, see http://www.unicode.org/copyright.html Guadalupe Guineja Ekuatoriale Greqi - Xhorxha Jugore dhe Ishujt Senduiç të Jugut + Xhorxha Jugore dhe Ishujt Senduiçë të Jugut Guatemalë Guam Guine-Bisau Guajanë RVAK i Hong Kongut Hong Kong - Ishulli Hërd dhe Ishujt Mekdonald + Ishulli Hërd dhe Ishujt Mekdonaldë Honduras Kroaci Haiti @@ -455,7 +465,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kamboxhia Qiribati Komore - Shën Kits e Nevis + Shën-Kits dhe Nevis Koreja e Veriut Koreja e Jugut Kuvajt @@ -463,9 +473,9 @@ For terms of use, see http://www.unicode.org/copyright.html Kazakistan Laos Liban - Shën Luçia + Shën-Luçia Lihtënshtajn - Sri Lankë + Sri-Lankë Liberi Lesoto Lituani @@ -476,7 +486,7 @@ For terms of use, see http://www.unicode.org/copyright.html Monako Moldavi Mali i Zi - Shën Martin + Shën-Martin Madagaskar Ishujt Marshallë Maqedoni @@ -500,7 +510,7 @@ For terms of use, see http://www.unicode.org/copyright.html Namibi Kaledonia e Re Niger - Ishujt Norfolkë + Ishulli Norfolk Nigeri Nikaragua Holandë @@ -517,9 +527,9 @@ For terms of use, see http://www.unicode.org/copyright.html Filipine Pakistan Poloni - Shën Peir dhe Mikuelon + Shën-Peir dhe Mikuelon Ishujt Pitkernë - Porto Riko + Porto-Riko Territoret Palestineze Palestinë Portugali @@ -538,22 +548,22 @@ For terms of use, see http://www.unicode.org/copyright.html Sudan Suedi Singapor - Shën Helena + Shën-Helena Slloveni - Svalbard e Zhan Majen + Svalbard e Zhan-Majen Sllovaki - Siera Leone - San Marino + Siera-Leone + San-Marino Senegali Somali Surinami Sudani i Jugut - Sao Tome e Prinsipe + Sao-Tome e Prinsipe El Salvador - Shën Martin (Sint Maarten-pjesa e Mbretërisë së Holandës) + Shën-Martin (Sint Maarten - pjesa e Mbretërisë së Holandës) Siri - Svazilandë - Tristan da Kuna + Suazilandë + Tristan-da-Kuna Ishujt Turke dhe Kaike Çad Territoret Australiane Franceze @@ -578,7 +588,7 @@ For terms of use, see http://www.unicode.org/copyright.html Uruguai Uzbekistan Vatikan - Shën Vinsent dhe Grenadinet + Shën-Vinsent dhe Grenadinet Venezuelë Ishujt e Virgjër Britanikë Ishujt e Virgjër Amerikanë @@ -598,74 +608,87 @@ For terms of use, see http://www.unicode.org/copyright.html Kalendari Radhitja Valuta + Cikli orar (12 - 24) + Stili i gjerësisë së rreshtave + Sistemi i njësive matëse Numrat - shifra indo-arabe - shifra indo-arabe të zgjatura - numra armenë - numra armenë të vegjël - numra bengalë - Radhitje e kinezishtes tradicionale - Big5 - kalendar budist - kalendar kinez - Kalendari Koptik - kalendar dangi - shifra devanagari - Radhitje fjalori - radhitje unikode e parazgjedhur - numra etiopë - kalendar etiop - Kalendari Etiopas Amete Alem - shifra me largësi të brendshme - Radhitje e kinezishtes së thjeshtësuar - GB2312 - numra gjeorgjianë - kalendar gregorian - numra grekë - numra grekë të vegjël - shifra guxharati - shifra gurmuki - numra dhjetorë kinezë - numra të kinezishtes së thjeshtuar - numra financiarë të kinezishtes së thjeshtuar - numra të kinezishtes tradicionale - numra financiarë të kinezishtes tradicionale - numra hebraikë - kalendar hebraik - Kalendari Kombëtar Indian - kalendar islamik - Kalendari Islamik (tabelor, periudha civile) - Kalendari Islamik (tabelor, epoka austromikale) - Kalendari Islamik (Um al-Qura) - kalendar ISO-8601 - kalendar japonez - numra japonezë - numra financiarë japonezë - shifra kmere - shifra kanade - shifra lao - shifra latino-perëndimore - shifra malajalame - shifra mianmari - shifra orije - kalendar persian - Radhitje libri telefonik - Radhitje pinini - Radhitje e reformuar - kalendar minguo (kinez) - numra romakë - numra romakë të vegjël - kërkim i përgjithshëm - radhitje standarde - numra tamilë tradicionalë - shifra tamile - shifra teluguje - shifra tajlandeze - shifra tibetiane + kalendar budist + kalendar kinez + Kalendari Koptik + kalendar dangi + kalendar etiop + Kalendari Etiopas Amete Alem + kalendar gregorian + kalendar hebraik + Kalendari Kombëtar Indian + kalendar islamik + Kalendari Islamik (tabelor, periudha civile) + Kalendari Islamik (tabelor, epoka austromikale) + Kalendari Islamik (Um al-Qura) + kalendar ISO-8601 + kalendar japonez + kalendar persian + kalendar minguo (kinez) + Radhitje e kinezishtes tradicionale - Big5 + Radhitje fjalori + radhitje unikode e parazgjedhur + Radhitje e kinezishtes së thjeshtësuar - GB2312 + Radhitje libri telefonik + Radhitje pinini + Radhitje e reformuar + kërkim i përgjithshëm + radhitje standarde + Sistemi 12-orësh (0 - 11) + Sistemi 12-orësh (1 - 12) + Sistemi 24-orësh (0 - 23) + Sistemi 24-orësh (1 - 24) + Stili i gjerësisë së rreshtave - i larguar + Stili i gjerësisë së rreshtave - normal + Stili i gjerësisë së rreshtave - i ngushtuar + Sistemi metrik + Sistemi imperial (britanik) i njësive matëse + Sistemi amerikan i njësive matëse + shifra indo-arabe + shifra indo-arabe të zgjatura + numra armenë + numra armenë të vegjël + shifra bengali + shifra devanagari + numra etiopë + shifra me largësi të brendshme + numra gjeorgjianë + numra grekë + numra grekë të vegjël + shifra guxharati + shifra gurmuki + numra dhjetorë kinezë + numra të kinezishtes së thjeshtuar + numra financiarë të kinezishtes së thjeshtuar + numra të kinezishtes tradicionale + numra financiarë të kinezishtes tradicionale + numra hebraikë + numra japonezë + numra financiarë japonezë + shifra kmere + shifra kanade + shifra lao + shifra latino-perëndimore + shifra malajalame + shifra mianmari + shifra orije + numra romakë + numra romakë të vegjël + numra tamilë tradicionalë + shifra tamile + shifra teluguje + shifra tajlandeze + shifra tibetiane metrik - britanik + britanik (imperial) amerikan @@ -678,6 +701,7 @@ For terms of use, see http://www.unicode.org/copyright.html [a b c ç d {dh} e ë f g {gj} h i j k l {ll} m n {nj} o p q r {rr} s {sh} t {th} u v x {xh} y z {zh}] [w] [A B C Ç D {DH} E Ë F G {GJ} H I J K L {LL} M N {NJ} O P Q R {RR} S {SH} T {TH} U V X {XH} Y Z {ZH}] + [\- ‐ – — , ; \: ! ? . … ' ‘ ’ " “ ” « » ( ) \[ \] § @ * / \& # ′ ″ ~] {0}… {0} … ? @@ -736,6 +760,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E, d y G MMM y G @@ -1065,15 +1090,73 @@ For terms of use, see http://www.unicode.org/copyright.html + + mesnatë + e paradites + mesditë + e pasdites + mëngjes + e paradites + e pasdites + mbrëmje + natë + - AM - MD - PM + mesnatë + e paradites + mesditë + e pasdites + mëngjes + e paradites + e pasdites + mbrëmje + natë + mesnatë + e paradites + mesditë + e pasdites + mëngjes + e paradites + e pasdites + mbrëmje + natë + + + + + mesnatë paradite mesditë pasdite + mëngjes + paradite + pasdite + mbrëmje + natë + + + mesnatë + paradite + mesditë + pasdite + mëngjes + paradite + pasdite + mbrëmje + natë + + + mesnatë + paradite + mesditë + pasdite + mëngjes + paradite + pasdite + mbrëmje + natë @@ -1086,7 +1169,7 @@ For terms of use, see http://www.unicode.org/copyright.html p.e.r. - p.e.s + p.e.s. e.r. e.s. @@ -1122,22 +1205,22 @@ For terms of use, see http://www.unicode.org/copyright.html - HH:mm:ss zzzz + h:mm:ss a, zzzz - HH:mm:ss z + h:mm:ss a, z - HH:mm:ss + h:mm:ss a - HH:mm + h:mm a @@ -1180,6 +1263,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a, v + HH:mm:ss, v + h:mm a, v + HH:mm, v L d.M E, d.M @@ -1226,20 +1313,20 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm – HH:mm - h:mm a – h:mm a v - h:mm – h:mm a v - h:mm – h:mm a v + h:mm a – h:mm a, v + h:mm – h:mm a, v + h:mm – h:mm a, v - HH:mm – HH:mm v - HH:mm – HH:mm v + HH:mm – HH:mm, v + HH:mm – HH:mm, v - h a – h a v - h – h a v + h a – h a, v + h – h a, v - HH – HH v + HH – HH, v M – M @@ -1316,8 +1403,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} vjetësh - para {0} viti - para {0} vjetësh + {0} vit më parë + {0} vjet më parë @@ -1327,8 +1414,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} vjetësh - para {0} viti - para {0} vjetësh + {0} vit më parë + {0} vjet më parë @@ -1338,8 +1425,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} vjetësh - para {0} viti - para {0} vjetësh + {0} vit më parë + {0} vjet më parë @@ -1349,8 +1436,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} tremujorësh - para {0} tremujori - para {0} tremujorësh + {0} tremujor më parë + {0} tremujorë më parë @@ -1360,8 +1447,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} tremujorësh - para {0} tremujori - para {0} tremujorësh + {0} tremujor më parë + {0} tremujorë më parë @@ -1371,8 +1458,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} tremujorësh - para {0} tremujori - para {0} tremujorësh + {0} tremujor më parë + {0} tremujorë më parë @@ -1385,8 +1472,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} muajsh - para {0} muaji - para {0} muajsh + {0} muaj më parë + {0} muaj më parë @@ -1396,8 +1483,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} muajsh - para {0} muaji - para {0} muajsh + {0} muaj më parë + {0} muaj më parë @@ -1407,8 +1494,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} muajsh - para {0} muaji - para {0} muajsh + {0} muaj më parë + {0} muaj më parë @@ -1421,8 +1508,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} javësh - para {0} jave - para {0} javësh + {0} javë më parë + {0} javë më parë @@ -1432,8 +1519,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} javësh - para {0} jave - para {0} javësh + {0} javë më parë + {0} javë më parë @@ -1443,8 +1530,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} javësh - para {0} jave - para {0} javësh + {0} javë më parë + {0} javë më parë @@ -1457,8 +1544,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} ditësh - para {0} dite - para {0} ditësh + {0} ditë më parë + {0} ditë më parë @@ -1468,8 +1555,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} ditësh - para {0} dite - para {0} ditësh + {0} ditë më parë + {0} ditë më parë @@ -1479,8 +1566,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} ditësh - para {0} dite - para {0} ditësh + {0} ditë më parë + {0} ditë më parë @@ -1592,7 +1679,7 @@ For terms of use, see http://www.unicode.org/copyright.html të shtunën e ardhshme - periudhë e ditës + paradite/pasdite orë @@ -1601,8 +1688,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} orësh - para {0} ore - para {0} orësh + {0} orë më parë + {0} orë më parë @@ -1612,8 +1699,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} orësh - para {0} ore - para {0} orësh + {0} orë më parë + {0} orë më parë @@ -1623,8 +1710,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} orësh - para {0} ore - para {0} orësh + {0} orë më parë + {0} orë më parë @@ -1634,8 +1721,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} minutash - para {0} minute - para {0} minutash + {0} minutë më parë + {0} minuta më parë @@ -1645,8 +1732,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} min. - para {0} min. - para {0} min. + {0} min. më parë + {0} min. më parë @@ -1656,8 +1743,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} min. - para {0} min. - para {0} min. + {0} min. më parë + {0} min. më parë @@ -1668,8 +1755,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} sekondash - para {0} sekonde - para {0} sekondash + {0} sekondë më parë + {0} sekonda më parë @@ -1679,8 +1766,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} sek. - para {0} sek. - para {0} sek. + {0} sek. më parë + {0} sek. më parë @@ -1690,8 +1777,8 @@ For terms of use, see http://www.unicode.org/copyright.html pas {0} sek. - para {0} sek. - para {0} sek. + {0} sek. më parë + {0} sek. më parë @@ -1700,8 +1787,8 @@ For terms of use, see http://www.unicode.org/copyright.html +HH:mm;-HH:mm - GMT{0} - GMT + Ora e Grenuiçit: {0} + Ora e Grenuiçit Ora: {0} Ora verore: {0} Ora standarde: {0} @@ -1758,19 +1845,19 @@ For terms of use, see http://www.unicode.org/copyright.html Kejsi - Dumont d’Urvillë + Dumont-d’Urvilë Mekmurdo - Rio Galegos + Rio-Galegos Mendoza - San Huan + San-Huan Ushuaja @@ -1779,7 +1866,7 @@ For terms of use, see http://www.unicode.org/copyright.html La Rioha - Shën Luis + Shën-Luis Katamarka @@ -1797,10 +1884,10 @@ For terms of use, see http://www.unicode.org/copyright.html Kordoba - Buenos Aires + Buenos-Ajres - Pago Pago + Pago-Pago Vjenë @@ -1818,7 +1905,7 @@ For terms of use, see http://www.unicode.org/copyright.html Adelajde - Brokën Hill + Brokën-Hill Kuri @@ -1881,7 +1968,7 @@ For terms of use, see http://www.unicode.org/copyright.html Porto-Novo - Shën Bartolemeo + Shën-Bartolemeo Bermudë @@ -1899,13 +1986,13 @@ For terms of use, see http://www.unicode.org/copyright.html Ejrunep - Rio Branko + Rio-Branko - Porto Velho + Porto-Velho - Boa Vista + Boa-Vista Manaus @@ -1917,7 +2004,7 @@ For terms of use, see http://www.unicode.org/copyright.html Santarem - Kampo Grande + Kampo-Grande Belem @@ -1926,7 +2013,7 @@ For terms of use, see http://www.unicode.org/copyright.html Araguajana - Sao Paulo + Sao-Paulo Bahia @@ -2037,7 +2124,7 @@ For terms of use, see http://www.unicode.org/copyright.html Blank-Sablon - Shën Gjon + Shën-Gjon Kokos @@ -2082,7 +2169,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bogotë - Kosta Rikë + Kosta-Rikë Havanë @@ -2118,7 +2205,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dominikë - Santo Domingo + Santo-Domingo Algjer @@ -2151,7 +2238,7 @@ For terms of use, see http://www.unicode.org/copyright.html Madrid - Adis Ababë + Adis-Ababë Helsinki @@ -2247,7 +2334,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gujanë - Hong Kong + Hong-Kong Tegusigalpa @@ -2322,7 +2409,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bishkek - Pnom Pen + Pnom-Pen Enderbur @@ -2337,7 +2424,7 @@ For terms of use, see http://www.unicode.org/copyright.html Komore - Shën Kits + Shën-Kits Penian @@ -2367,13 +2454,13 @@ For terms of use, see http://www.unicode.org/copyright.html Almati - Vjentjanë + Vjentianë Bejrut - Shën Luçia + Shën-Luçia Vaduz @@ -2472,7 +2559,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tihuana - Santa Izabela + Santa-Izabela Hermosijo @@ -2484,7 +2571,7 @@ For terms of use, see http://www.unicode.org/copyright.html Çihahua - Bahia Banderas + Bahia-Banderas Ohinaga @@ -2505,7 +2592,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kankun - Kuala Lumpur + Kuala-Lumpur Kuçing @@ -2571,7 +2658,10 @@ For terms of use, see http://www.unicode.org/copyright.html Gambier - Port Moresbi + Port-Moresbi + + + Bunganvilë Manila @@ -2589,7 +2679,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pitkern - Porto Riko + Porto-Riko Gaza @@ -2657,6 +2747,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Çita + Jakutsk @@ -2675,6 +2768,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolimsk + Kamçatkë @@ -2703,7 +2799,7 @@ For terms of use, see http://www.unicode.org/copyright.html Singapor - Shën Helenë + Shën-Helenë Lubjanë @@ -2718,7 +2814,7 @@ For terms of use, see http://www.unicode.org/copyright.html Fritaun - San Marino + San-Marino Dakar @@ -2733,13 +2829,13 @@ For terms of use, see http://www.unicode.org/copyright.html Xhuba - Sao Tome + Sao-Tome El Salvador - Louer Prinsis Kuortër + Louer-Prinsis-Kuortër Damask @@ -2793,7 +2889,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tajpej - Dar es Salam + Dar-es-Salam Uzhgorod @@ -2856,7 +2952,7 @@ For terms of use, see http://www.unicode.org/copyright.html Beula, Dakota e Veriut - Nju Salem, Dakota e Veriut + Nju-Salem, Dakota e Veriut Qendër, Dakota e Veriut @@ -2874,7 +2970,7 @@ For terms of use, see http://www.unicode.org/copyright.html Petërsburg, Indiana - Tell Siti, Indiana + Tell-Siti, Indiana Noks, Indiana @@ -2901,7 +2997,7 @@ For terms of use, see http://www.unicode.org/copyright.html Detroit - Nju Jork + Nju-Jork Montevideo @@ -2916,7 +3012,7 @@ For terms of use, see http://www.unicode.org/copyright.html Vatikan - Shën Vinsent + Shën-Vinsent Karakas @@ -2925,10 +3021,10 @@ For terms of use, see http://www.unicode.org/copyright.html Tortolë - Shën Tomas + Shën-Tomas - Ho Çi Min + Ho-Çi-Min Efate @@ -3109,9 +3205,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Ora e Australisë Qendrore-Perëndimore - Ora standarde e Australisë Qendrore-Perëndimore - Ora verore e Australisë Qendrore-Perëndimore + Ora e Australisë Qendroro-Perëndimore + Ora standarde e Australisë Qendroro-Perëndimore + Ora verore e Australisë Qendroro-Perëndimore @@ -3168,7 +3264,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Ora e Brunei Durasalamit + Ora e Brunei-Durasalamit @@ -3389,9 +3485,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Ora e Hong Kongut - Ora standarde e Hong Kongut - Ora verore e Hong Kongut + Ora e Hong-Kongut + Ora standarde e Hong-Kongut + Ora verore e Hong-Kongut @@ -3440,9 +3536,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Ora e Irkutskit - Ora standarde e Irkutskit - Ora verore e Irkutskit + Ora e Irkutskut + Ora standarde e Irkutskut + Ora verore e Irkutskut @@ -3512,9 +3608,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Ora e Lord Houit - Ora standarde e Lord Houit - Ora verore e Lord Houit + Ora e Lord-Houit + Ora standarde e Lord-Houit + Ora verore e Lord-Houit @@ -3584,9 +3680,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Ora e Ulan Batorit - Ora standarde e Ulan Batorit - Ora verore e Ulan Batorit + Ora e Ulan-Batorit + Ora standarde e Ulan-Batorit + Ora verore e Ulan-Batorit @@ -3644,9 +3740,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Ora e Fernando de Noronjës - Ora standarde e Fernando de Noronjës - Ora verore e Fernando de Noronjës + Ora e Fernando-de-Noronjës + Ora standarde e Fernando-de-Noronjës + Ora verore e Fernando-de-Noronjës @@ -3713,9 +3809,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Ora e Shën Pierr dhe Mikuelon - Ora standarde e Shën Pierr dhe Mikuelon - Ora verore e Shën Pierr dhe Mikuelon + Ora e Shën-Pier dhe Mikuelon + Ora standarde e Shën-Pier dhe Mikuelon + Ora verore e Shën-Pier dhe Mikuelon @@ -3768,7 +3864,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Ora e Sejçelës + Ora e Sishelës @@ -4018,6 +4114,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤;(#,##0.00 ¤) + + + 0 mijë ¤ + 0 mijë ¤ + 00 mijë ¤ + 00 mijë ¤ + 000 mijë ¤ + 000 mijë ¤ + 0 Mln ¤ + 0 Mln ¤ + 00 Mln ¤ + 00 Mln ¤ + 000 Mln ¤ + 000 Mln ¤ + 0 Mld ¤ + 0 Mld ¤ + 00 Mld ¤ + 00 Mld ¤ + 000 Mld ¤ + 000 Mld ¤ + 0 Bln ¤ + 0 Bln ¤ + 00 Bln ¤ + 00 Bln ¤ + 000 Bln ¤ + 000 Bln ¤ + + {0} {1} {0} {1} @@ -4105,7 +4229,7 @@ For terms of use, see http://www.unicode.org/copyright.html franga burundiane - Dollari e Bermudeve + Dollari i Bermudeve dollar bermude dollarë bermude @@ -4136,9 +4260,9 @@ For terms of use, see http://www.unicode.org/copyright.html ngultrumë butanez - Pula botsvane - pulë botsvane - pula botsvane + Pula botsuane + pulë botsuane + pula botsuane Rubla bjelloruse @@ -4188,14 +4312,14 @@ For terms of use, see http://www.unicode.org/copyright.html kolonë kostarikan - Pezoja kubane e shkëmbyeshme - pezo kubane e shkëmbyeshme - pezo kubane të shkëmbyeshme + Pezoja kubaneze e shkëmbyeshme + pezo kubaneze e shkëmbyeshme + pezo kubaneze të shkëmbyeshme - Pezoja kubane - pezo kubane - pezo kubane + Pezoja kubaneze + pezo kubaneze + pezo kubaneze Eskudoja e Kepit të Gjelbër @@ -4333,7 +4457,7 @@ For terms of use, see http://www.unicode.org/copyright.html Shekeli izrealit shekel izrealit - shekelë izrealite + shekelë izrealit @@ -4430,7 +4554,7 @@ For terms of use, see http://www.unicode.org/copyright.html sterlina libaneze - Rupia e Sri Lankës + Rupia e Sri-Lankës rupi sri-lanke rupi sri-lanke @@ -4627,14 +4751,14 @@ For terms of use, see http://www.unicode.org/copyright.html rialë saudit - Dollari i Ishujve Solomon - dollar i Ishujve Solomon - dollarë të Ishujve Solomon + Dollari i Ishujve Solomonë + dollar i Ishujve Solomonë + dollarë të Ishujve Solomonë - Rupia e Ishujve Sejçelë - rupi e Ishujve Sejçelë - rupi të Ishujve Sejçelë + Rupia e Ishujve Sishelë + rupi e Ishujve Sishelë + rupi të Ishujve Sishelë Stërlina sudaneze @@ -4652,14 +4776,14 @@ For terms of use, see http://www.unicode.org/copyright.html dollarë singapori - Stërlina e Ishullit të Shën Helenës - stërlinë e Ishullit të Shën Helenës - stërlina të Ishullit të Shën Helenës + Stërlina e Ishullit të Shën-Helenës + stërlinë e Ishullit të Shën-Helenës + stërlina të Ishullit të Shën-Helenës - Leoni i Sierra Leones - leon i Sierra Leones - leonë të Sierra Leones + Leoni i Sierra-Leones + leon i Sierra-Leones + leonë të Sierra-Leones Shilinga somaleze @@ -4677,9 +4801,9 @@ For terms of use, see http://www.unicode.org/copyright.html stërlina të Sudanit të Jugut - Dobra e Sao Tomes dhe Prinsipes - dobër e Sao Tomes dhe Prinsipes - dobra të Sao Tomes dhe Prinsipes + Dobra e Sao-Tomes dhe Prinsipes + dobër e Sao-Tomes dhe Prinsipes + dobra të Sao-Tomes dhe Prinsipes Sterlina siriane @@ -4687,9 +4811,9 @@ For terms of use, see http://www.unicode.org/copyright.html sterlina siriane - Lilangeni i Svazilandit - lilangen svazilandi - lilangenë svazilandi + Lilangeni i Suazilandës + lilangen suazilande + lilangenë suazilande Bata tajlandeze @@ -4811,8 +4935,8 @@ For terms of use, see http://www.unicode.org/copyright.html Valutë e panjohur - (njësi e panjohur valute) - (njësi të panjohura valute) + (njësi e panjohur valutore) + (njësi të panjohura valutore) Riali i Jemenit @@ -4850,6 +4974,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metër për sekondë në katror {0} metra për sekondë në katror + + revolucion + {0} revolucion + {0} revolucione + + + radianë + {0} radianë + {0} radianë + + + gradë + {0} gradë + {0} gradë + hark-minuta {0} hark-minutë @@ -4860,30 +4999,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hark-sekondë {0} hark-sekonda - - gradë - {0} gradë - {0} gradë - - - radianë - {0} radianë - {0} radianë - - - akra - {0} akër - {0} akra + + kilometra katrore + {0} kilometër katror + {0} kilometra katrore hektarë {0} hektar {0} hektarë + + metra katrore + {0} metër katror + {0} metra katrore + {0}/metër katror + centimetra katrore {0} centimetër katror {0} centimetra katrore + {0}/centimetër katror + + + milje katrore + {0} milje katror + {0} milje katrore + + + akra + {0} akër + {0} akra + + + jardë katrore + {0} jard katror + {0} jardë katrore këmbë katrore @@ -4894,91 +5045,106 @@ For terms of use, see http://www.unicode.org/copyright.html inç katrore {0} inç katror {0} inç katrore + {0}/inç katror - - kilometra katrore - {0} kilometër katror - {0} kilometra katrore - - - metra katrore - {0} metër katror - {0} metra katrore - - - milje katrore - {0} milje katror - {0} milje katrore - - - jardë katrore - {0} jard katror - {0} jardë katrore + + karatë + {0} karat + {0} karatë litra për kilometër {0} litër për kilometër {0} litra për kilometër + + litra për 100 kilometra + {0} litër për 100 kilometra + {0} litra për 100 kilometra + milje për gallon {0} milje për gallon {0} milje për gallon - - bit - {0} bit - {0} bitë - - - bajt - {0} bajt - {0} bajt - - - gigabit - {0} gigabit - {0} gigabitë - - - gigabajt - {0} gigabajt - {0} gigabajt - - - kilobit - {0} kilobit - {0} kilobitë - - - kilobajt - {0} kilobajt - {0} kilobajt - - - megabit - {0} megabit - {0} megabitë - - - megabajt - {0} megabajt - {0} megabajt - - - terabit - {0} terabit - {0} terabitë - terabajt {0} terabajt {0} terabajt + + terabit + {0} terabit + {0} terabit + + + gigabajt + {0} gigabajt + {0} gigabajt + + + gigabit + {0} gigabit + {0} gigabit + + + megabajt + {0} megabajt + {0} megabajt + + + megabit + {0} megabit + {0} megabit + + + kilobajt + {0} kilobajt + {0} kilobajt + + + kilobit + {0} kilobit + {0} kilobit + + + bajt + {0} bajt + {0} bajt + + + bit + {0} bit + {0} bit + + + shekuj + {0} shekull + {0} shekuj + + + vjet + {0} vit + {0} vjet + {0}/vit + + + muaj + {0} muaj + {0} muaj + {0}/muaj + + + javë + {0} javë + {0} javë + {0}/javë + ditë {0} ditë {0} ditë + {0}/ditë orë @@ -4986,47 +5152,33 @@ For terms of use, see http://www.unicode.org/copyright.html {0} orë {0}/orë - - mikrosekonda - {0} mikrosekondë - {0} mikrosekonda + + minuta + {0} minutë + {0} minuta + {0}/minutë + + + sekonda + {0} sekondë + {0} sekonda + {0}/sekondë milisekonda {0} milisekondë {0} milisekonda - - minuta - {0} minutë - {0} minuta - - - muaj - {0} muaj - {0} muaj + + mikrosekonda + {0} mikrosekondë + {0} mikrosekonda nanosekonda {0} nanosekondë {0} nanosekonda - - sekonda - {0} sekondë - {0} sekonda - {0}/sek. - - - javë - {0} javë - {0} javë - - - vjet - {0} vit - {0} vjet - amper {0} amper @@ -5047,6 +5199,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volt + + kilokalori + {0} kilokalori + {0} kilokalori + kalori {0} kalori @@ -5057,21 +5214,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kalori ushqimore {0} kalori ushqimore - - zhul - {0} zhul - {0} zhul - - - kilokalori - {0} kilokalori - {0} kilokalori - kilozhul {0} kilozhul {0} kilozhul + + zhul + {0} zhul + {0} zhul + kilovat-orë {0} kilovat-orë @@ -5082,201 +5234,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigaherc {0} gigaherc - - herc - {0} herc - {0} herc + + megaherc + {0} megaherc + {0} megaherc kiloherc {0} kiloherc {0} kiloherc - - megaherc - {0} megaherc - {0} megaherc + + herc + {0} herc + {0} herc - - njësi astronomike - {0} njësi astronomike - {0} njësi astronomike + + kilometra + {0} kilometër + {0} kilometra + {0}/kilometër - - centimetra - {0} centimetër - {0} centimetra + + metra + {0} metër + {0} metra + {0}/metër decimetra {0} decimetër {0} decimetra - - këmbë - {0} këmbë - {0} këmbë - - - inç - {0} inç - {0} inç - - - kilometra - {0} kilometër - {0} kilometra - - - vite dritë - {0} vit drite - {0} vite dritë - - - metra - {0} metër - {0} metra - - - mikrometra - {0} mikrometër - {0} mikrometra - - - milje - {0} milje - {0} milje + + centimetra + {0} centimetër + {0} centimetra + {0}/centimetër milimetra {0} milimetër {0} milimetra + + mikrometra + {0} mikrometër + {0} mikrometra + nanometra {0} nanometër {0} nanometra - - milje nautike - {0} milje nautike - {0} milje nautike - - - parsekë - {0} parsek - {0} parsekë - pikometra {0} pikometër {0} pikometra + + milje + {0} milje + {0} milje + jardë {0} jard {0} jardë + + këmbë + {0} këmbë + {0} këmbë + {0}/këmbë + + + inç + {0} inç + {0} inç + {0}/inç + + + parsekë + {0} parsek + {0} parsekë + + + vite dritë + {0} vit drite + {0} vite dritë + + + njësi astronomike + {0} njësi astronomike + {0} njësi astronomike + + + milje nautike + {0} milje nautike + {0} milje nautike + + + milje skandinave + {0} milje skandinave + {0} milje skandinave + luks {0} luks {0} luks - - karatë - {0} karat - {0} karatë - - - gramë - {0} gram - {0} gramë - - - kilogram - {0} kilogram - {0} kilogramë - tonë metrik {0} ton metrik {0} tonë metrik - - mikrogramë - {0} mikrogram - {0} mikrogramë + + kilogram + {0} kilogram + {0} kilogramë + {0}/kilogram + + + gramë + {0} gram + {0} gramë + {0}/gram miligramë {0} miligram {0} miligramë - - onsë - {0} ons - {0} onsë - - - onsë troi - {0} ons troi - {0} onsë troi - - - paund - {0} paund - {0} paund + + mikrogramë + {0} mikrogram + {0} mikrogramë tonë {0} ton {0} tonë + + paund + {0} paund + {0} paund + {0}/paund + + + onsë + {0} ons + {0} onsë + {0}/ons + + + onsë troi + {0} ons troi + {0} onsë troi + + + karatë + {0} karat + {0} karatë + gigavat {0} gigavat {0} gigavat - - kuaj fuqi - {0} kalë fuqi - {0} kuaj fuqi - - - kilovat - {0} kilovat - {0} kilovat - megavat {0} megavat {0} megavat - - milivat - {0} milivat - {0} milivat + + kilovat + {0} kilovat + {0} kilovat vat {0} vat {0} vat + + milivat + {0} milivat + {0} milivat + + + kuaj fuqi + {0} kalë fuqi + {0} kuaj fuqi + hektopaskal {0} hektopaskal {0} hektopaskal - - inç merkuri - {0} inç merkuri - {0} inç merkuri - - - milibare - {0} milibar - {0} milibare - milimetra mërkuri {0} milimetër mërkuri @@ -5287,10 +5443,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} paund për inç në katror {0} paund për inç në katror - - karatë - {0} karat - {0} karatë + + inç merkuri + {0} inç merkuri + {0} inç merkuri + + + milibare + {0} milibar + {0} milibare kilometra në orë @@ -5307,6 +5468,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milje në orë {0} milje në orë + + milje nautike në orë + {0} milje nautike në orë + {0} milje nautike në orë + + + ° + {0}° + {0}° + gradë Celsius {0} gradë Celsius @@ -5322,31 +5493,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Kelvin {0} Kelvin - - akra-këmbë - {0} akër-këmbë - {0} akra-këmbë - - - centilitra - {0} centilitër - {0} centilitra - - - centimetra kub - {0} centimetër kub - {0} centimetra kub - - - këmbë kub - {0} këmbë kub - {0} këmbë kub - - - inç në kub - {0} inç në kub - {0} inç në kub - kilometra kub {0} kilometër kub @@ -5356,6 +5502,13 @@ For terms of use, see http://www.unicode.org/copyright.html metra kub {0} metër kub {0} metra kub + {0}/metër kub + + + centimetra kub + {0} centimetër kub + {0} centimetra kub + {0}/centimetër kub milje në kub @@ -5367,25 +5520,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} jard në kub {0} jardë në kub - - kupa - {0} kupë - {0} kupa + + këmbë kub + {0} këmbë kub + {0} këmbë kub - - decilitra - {0} decilitër - {0} decilitra + + inç në kub + {0} inç në kub + {0} inç në kub - - onsë fluidë - {0} ons fluidë - {0} onsë fluidë - - - gallonë - {0} gallon - {0} gallonë + + megalitra + {0} megalitër + {0} megalitra hektolitra @@ -5396,27 +5544,64 @@ For terms of use, see http://www.unicode.org/copyright.html litra {0} litër {0} litra + {0}/litër - - megalitra - {0} megalitër - {0} megalitra + + decilitra + {0} decilitër + {0} decilitra + + + centilitra + {0} centilitër + {0} centilitra mililitra {0} mililitër {0} mililitra - - pinta - {0} pintë - {0} pinta + + pinta metrike + {0} pintë metrike + {0} pinta metrike + + + kupa metrike + {0} kupë metrike + {0} kupa metrike + + + akra-këmbë + {0} akër-këmbë + {0} akra-këmbë + + + gallonë + {0} gallon + {0} gallonë + {0}/gallon çerekje {0} çerek {0} çerekje + + pinta + {0} pintë + {0} pinta + + + kupa + {0} kupë + {0} kupa + + + onsë fluidë + {0} ons fluidë + {0} onsë fluidë + lugë gjelle {0} lugë gjelle @@ -5427,13 +5612,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lugë çaji {0} lugë çaji + + {0}Lindje + {0}Veri + {0}Jug + {0}Perëndim + {0}/{1} - g-forcë + G {0} G {0} G @@ -5442,6 +5633,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rev + {0} rev + {0} rev + + + rad + {0} rad + {0} rad + + + ° + {0}° + {0}° + hark-min. {0} hark-min. @@ -5452,33 +5658,45 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hark-sek. {0} hark-sek. - - gradë - {0} gradë - {0} gradë - - - radianë - {0} rad - {0} rad - - - akra - {0} akër - {0} akra + + km² + {0} km² + {0} km² - hektarë + ha {0} ha {0} ha + + + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + + + ac + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² - këmbë katrore + ft² {0} ft² {0} ft² @@ -5486,91 +5704,106 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² - - - metra katrore - {0} m² - {0} m² - - - milje katrore - {0} mi² - {0} mi² - - - jd² - {0} jd² - {0} jd² + + kt + {0} kt + {0} kt - litra/km + L/km {0} L/km {0} L/km + + L/100km + {0} L/100km + {0} L/100km + - milje/gallon + mi/gallon {0} mi/gallon {0} mi/gallon - - bit - {0} bit - {0} bit - - - bajt - {0} bajt - {0} bajt - - - Gbit - {0} Gb - {0} Gb - - - Gbajt - {0} GB - {0} GB - - - kbit - {0} kb - {0} kb - - - kBajt - {0} kB - {0} kB - - - Mbit - {0} Mb - {0} Mb - - - MBajt - {0} MB - {0} MB - - - Tbit - {0} Tb - {0} Tb - TBajt {0} TB {0} TB + + Tbit + {0} Tb + {0} Tb + + + GBajt + {0} GB + {0} GB + + + Gbit + {0} Gb + {0} Gb + + + MBajt + {0} MB + {0} MB + + + Mbit + {0} Mb + {0} Mb + + + kBajt + {0} kB + {0} kB + + + kbit + {0} kb + {0} kb + + + bajt + {0} bajt + {0} bajt + + + bit + {0} bit + {0} bit + + + shek. + {0} shek. + {0} shek. + + + vjet + {0} vit + {0} vjet + {0}/vit + + + muaj + {0} muaj + {0} muaj + {0}/muaj + + + javë + {0} javë + {0} javë + {0}/javë + ditë {0} ditë {0} ditë + {0}/ditë orë @@ -5578,30 +5811,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} orë {0}/orë - - mikrosek. - {0} μs - {0} μs - - - milisek. - {0} ms - {0} ms - min. {0} min. {0} min. - - - muaj - {0} muaj - {0} muaj - - - nanosek. - {0} ns - {0} ns + {0}/min. sek. @@ -5609,266 +5823,275 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sek. {0}/sek. - - javë - {0} javë - {0} javë + + milisek. + {0} milisek. + {0} milisek. - - vjet - {0} vit - {0} vjet + + μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns - amper + A {0} A {0} A - miliamper + mA {0} mA {0} mA - om + Ω {0} Ω {0} Ω - volt + V {0} V {0} V + + kcal + {0} kcal + {0} kcal + - kal. - {0} kal. - {0} kal. + cal + {0} cal + {0} cal - kal. ushq. - {0} kal. ushq. - {0} kal. ushq. - - - zhul - {0} J - {0} J - - - kilokal. - {0} kilokal. - {0} kilokal. + Cal + {0} Cal + {0} Cal - kilozhul + kJ {0} kJ {0} kJ + + J + {0} J + {0} J + - kW/orë - {0} kW/orë - {0} kW/orë + kWh + {0} kWh + {0} kWh GHz {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + m + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - këmbë - {0} ft - {0} ft - - - inç - {0} in - {0} in - - - km - {0} km - {0} km - - - vite dritë - {0} v. dr. - {0} v. dr. - - - m - {0} m - {0} m - - - mikrometra - {0} µm - {0} µm - - - milje - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + µm + {0} µm + {0} µm + - nanometra + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - parsekë - {0} pc - {0} pc - pm {0} pm {0} pm + + mi + {0} mi + {0} mi + - jardë - {0} jd - {0} jd + yd + {0} yd + {0} yd + + + këmbë + {0} ft + {0} ft + {0}/ft + + + inç + {0} in + {0} in + {0}/in + + + pc + {0} pc + {0} pc + + + ly + {0} ly + {0} ly + + + au + {0} au + {0} au + + + nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi - luks + lx {0} lx {0} lx - - karatë - {0} CD - {0} CD - - - gramë - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + g + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - oz - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - - - paund - {0} lb - {0} lb + + µg + {0} µg + {0} µg tn {0} tn {0} tn + + lb + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0}/oz + + + oz t + {0} oz t + {0} oz t + + + CD + {0} CD + {0} CD + GW {0} GW {0} GW - - kuaj fuqi - {0} k-fuqi - {0} k-fuqi - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW + + kW + {0} kW + {0} kW + + + W + {0} W + {0} W + mW {0} mW {0} mW - - vat - {0} W - {0} W + + hp + {0} hp + {0} hp hPa {0} hPa {0} hPa - - inç Hg - {0} inHg - {0} inHg - - - mbar - {0} mb - {0} mb - mm Hg {0} mm Hg @@ -5879,10 +6102,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - karatë - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar km/orë @@ -5895,14 +6123,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s - mi/orë - {0} mi/orë - {0} mi/orë + mi/h + {0} mi/h + {0} mi/h + + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° gradë C - {0}°C - {0}°C + {0} gradë C + {0} gradë C °F @@ -5914,20 +6152,32 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - akra-këmbë - {0} ac ft - {0} ac ft + + km³ + {0} km³ + {0} km³ - - cL - {0} cL - {0} cL + + + {0} m³ + {0} m³ + {0}/m³ cm³ {0} cm³ {0} cm³ + {0}/cm³ + + + mi³ + {0} mi³ + {0} mi³ + + + yd³ + {0} yd³ + {0} yd³ ft³ @@ -5939,45 +6189,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in³ {0} in³ - - km³ - {0} km³ - {0} km³ - - - - {0} m³ - {0} m³ - - - mi³ - {0} mi³ - {0} mi³ - - - jd³ - {0} jd³ - {0} jd³ - - - kupa - {0} c - {0} c - - - dL - {0} dL - {0} dL - - - onsë fluidë - {0} on. fl. - {0} on. fl. - - - gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML hL @@ -5985,40 +6200,83 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hL - litra - {0} l - {0} l + L + {0} L + {0} L + {0}/L - - ML - {0} ML - {0} ML + + dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL mL {0} mL {0} mL - - pinta - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + + + mc + {0} mc + {0} mc + + + ac ft + {0} ac ft + {0} ac ft + + + gallon + {0} gal + {0} gal + {0}/gal - çerekje + qt {0} qt {0} qt + + pt + {0} pt + {0} pt + + + c + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + - lugë gjelle + tbsp {0} tbsp {0} tbsp - lugë çaji + tsp {0} tsp {0} tsp + + {0}L + {0}V + {0}J + {0}P + @@ -6028,6 +6286,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} g-forcë {0} g-forcë + + {0}° + {0}° + {0}′ {0}′ @@ -6036,26 +6298,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} ac - {0} ac + + {0} km² + {0} km² {0} ha {0} ha - - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} m² {0} m² @@ -6064,11 +6314,39 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} ac + {0} ac + + + {0} ft² + {0} ft² + + + L/100km + {0} L/100km + {0} L/100km + mpg {0}mpg {0}mpg + + vjet + {0} vit + {0} vjet + + + muaj + {0} muaj + {0} muaj + + + javë + {0} javë + {0} javë + ditë {0} ditë @@ -6079,70 +6357,39 @@ For terms of use, see http://www.unicode.org/copyright.html {0} orë {0} orë - - milisek. - {0} ms - {0} ms - min. {0} min. {0} min. - - muaj - {0} muaj - {0} muaj - sek. {0} sek. {0} sek. - - javë - {0} javë - {0} javë - - - vjet - {0} vit - {0} vjet + + ms + {0} ms + {0} ms {0} Kal. {0} Kal. - - cm - {0} cm - {0} cm - - - {0} ft - {0} ft - - - {0} inç - {0} inç - km {0} km {0} km - - {0} v. dr. - {0} v. dr. - m {0} m {0} m - - {0} mi - {0} mi + + cm + {0} cm + {0} cm mm @@ -6153,31 +6400,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} mi + {0} mi + {0} jd {0} jd - - g - {0} g - {0} g + + {0} ft + {0} ft + + + {0} inç + {0} inç + + + {0} v. dr. + {0} v. dr. kg {0} kg {0} kg - - {0} ons - {0} onsë + + g + {0} g + {0} g {0} lb {0} lb - - {0} hp - {0} hp + + {0} ons + {0} onsë {0} kW @@ -6187,21 +6446,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} hp + {0} hp + hPa {0} hPa {0} hPa - - inç Hg - {0} inHg - {0} inHg - - - mbar - {0} mb - {0} mb - mm Hg {0} mm Hg @@ -6212,6 +6465,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi + + inç Hg + {0} inHg + {0} inHg + + + mbar + {0} mb + {0} mb + km/orë {0} km/orë @@ -6249,10 +6512,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi³ - litër - {0} l - {0} l + L + {0} L + {0} L + + {0}L + {0}V + {0}J + {0}P + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sq_AL.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sq_AL.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sq_AL.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sq_AL.xml index 884e8f0e858..5298029dd70 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sq_AL.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sq_AL.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sq_MK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sq_MK.xml new file mode 100644 index 00000000000..7923f667c20 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sq_MK.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + den + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sq_XK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sq_XK.xml new file mode 100644 index 00000000000..b5c77e7640a --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sq_XK.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sr.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sr.xml similarity index 88% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sr.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sr.xml index 7fa8dbf3481..3e27dfbce30 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sr.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sr.xml @@ -1,13 +1,12 @@ - - - + @@ -59,6 +58,7 @@ For terms of use, see http://www.unicode.org/copyright.html бемба бена бугарски + западни белучки Бојпури Бислама Бикол @@ -129,6 +129,7 @@ For terms of use, see http://www.unicode.org/copyright.html Еламитски енглески енглески (УК) + амерички енглески енглески (САД) Средњи енглески есперанто @@ -172,7 +173,7 @@ For terms of use, see http://www.unicode.org/copyright.html Швајцарски немачки гуџарати гуси - Манкс + мански Гвич’ин хауса Хаида @@ -185,7 +186,7 @@ For terms of use, see http://www.unicode.org/copyright.html Хири Моту хрватски горњи лужичкосрпски - Хаитски + хаићански мађарски Хупа јерменски @@ -267,6 +268,7 @@ For terms of use, see http://www.unicode.org/copyright.html лаошки Монго Лози + северни лури литвански луба-катанга Луба-лулуа @@ -312,12 +314,14 @@ For terms of use, see http://www.unicode.org/copyright.html Марвари бурмански Ерзија + мазандерански Науру Неаполитански нама норвешки бокмал северни ндебеле Ниски немачки + нискосаксонски непалски Невари Ндонга @@ -330,7 +334,7 @@ For terms of use, see http://www.unicode.org/copyright.html Норвешки Ногаи Стари норски - Н’ко + н’ко Јужни ндебеле Северни сото нуер @@ -393,6 +397,7 @@ For terms of use, see http://www.unicode.org/copyright.html Сицилијански Шкотски синди + јужнокурдски северни сами сена Селкап @@ -421,14 +426,14 @@ For terms of use, see http://www.unicode.org/copyright.html Серер Свати Сесото - судански + сундански Сукума Сусу Сумерски шведски свахили + конго свахили Коморски - конго свахили Класични сиријски Сиријски тамилски @@ -437,7 +442,7 @@ For terms of use, see http://www.unicode.org/copyright.html тесо Терено Тетум - Тађик + таџички тајландски тигриња Тигре @@ -481,6 +486,7 @@ For terms of use, see http://www.unicode.org/copyright.html Валамо Варај Вашо + варлпири волоф Калмик коса @@ -605,7 +611,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -675,7 +681,6 @@ For terms of use, see http://www.unicode.org/copyright.html Ангвила Албанија Јерменија - Холандски Антили Ангола Антарктик Аргентина @@ -707,7 +712,7 @@ For terms of use, see http://www.unicode.org/copyright.html Белорусија Белизе Канада - Кокос (Келинг) Острва + Кокосова (Килингова) Острва Конго - Киншаса Конго (ДРК) Централноафричка Република @@ -771,7 +776,7 @@ For terms of use, see http://www.unicode.org/copyright.html Гуам Гвинеја-Бисао Гвајана - Хонг Конг С. А. Р. Кина + САР Хонгконг (Кина) Хонг Конг Острва Херд и Мекдоналд Хондурас @@ -843,7 +848,7 @@ For terms of use, see http://www.unicode.org/copyright.html Намибија Нова Каледонија Нигер - Норфолк Острво + Острво Норфок Нигерија Никарагва Холандија @@ -982,6 +987,9 @@ For terms of use, see http://www.unicode.org/copyright.html Нумеричко сортирање Сортирање према јачини валута + hc + стил прелома реда + ms бројеви Временска зона Варијанта локалитета @@ -989,95 +997,105 @@ For terms of use, see http://www.unicode.org/copyright.html Приватна употреба - арапско-индијске цифре - продужене арапско-индијске цифре - јерменски бројеви - мали јерменски бројеви - бенгалске цифре - Традиционално кинеско сортирање - будистички календар - кинески календар - коптски календар - данги календар - девангари цифре - Редослед сортирања у речнику - Подразумевани Unicode редослед сортирања - етиопски бројеви - етиопски календар - етиопски амет алем календар - Финансијски бројеви - цифре пуне ширине - Поједностављено кинеско сортирање - грузијски бројеви - грегоријански календар - грчки бројеви - мали грчки бројеви - гуџаратске цифре - гурмуки цифре - кинески децимални бројеви - поједностављени кинески бројеви - поједностављени кинески финансијски бројеви - традиционални кинески бројеви - традиционални кинески финансијски бројеви - хебрејски бројеви - хебрејски календар - Сортирај све - Индијски национални календар - исламски календар - Исламски цивилни календар - ISO-8601 календар - јапански календар - јапански бројеви - јапански финансијски бројеви - кмерске цифре - канада цифре - лаошке цифре - западне цифре - Сортирај прво мала слова - малајалам цифре - монголске цифре - мијанмарске цифре - Локалне цифре - Сортирај акценте нормално - Сортирај нормалан редослед великих и малих слова - Сортирај без обзира на велика и мала слова - Сортирај кана симболе одвојено - Сортирај без нормализације - Сортирај цифре појединачно - Сортирај симболе - орија цифре - персијски календар - Сортирање као телефонски именик - Фонетски редослед сортирања - Пињин сортирање - Сортирај само основна слова - Сортирај акценте/мала и велика слова/ширину/кана симболе - Реформисани редослед сортирања - календар Републике Кине - римски бројеви - мали римски бројеви - претрага опште намене - Претрага према хангул почетном сугласнику - Сортирај акценте - Сортирање уз игнорисање симбола - стандардни редослед сортирања - Сортирање по броју црта - тамилски бројеви - тамилске цифре - телугу цифре - Сортирај акценте/мала и велика слова/ширину - тајске цифре - тибетанске цифре - Традиционално сортирање - Традиционални бројеви - Редослед сортирања радикалним цртицама - Сортирај прво велика слова - Ваи цифре - Сортирај акценте обрнуто - Сортирај мала и велика слова - Сортирај кана симболе другачије - Сортирај Unicode нормализовано - Сортирај цифре нумерички + будистички календар + кинески календар + коптски календар + данги календар + етиопски календар + етиопски амет алем календар + грегоријански календар + хебрејски календар + Индијски национални календар + исламски календар + Исламски цивилни календар + ISO-8601 календар + јапански календар + персијски календар + календар Републике Кине + Сортирај симболе + Сортирање уз игнорисање симбола + Сортирај акценте нормално + Сортирај акценте обрнуто + Сортирај прво мала слова + Сортирај нормалан редослед великих и малих слова + Сортирај прво велика слова + Сортирај без обзира на велика и мала слова + Сортирај мала и велика слова + Сортирај кана симболе одвојено + Сортирај кана симболе другачије + Традиционално кинеско сортирање + Редослед сортирања у речнику + Подразумевани Unicode редослед сортирања + Поједностављено кинеско сортирање + Сортирање као телефонски именик + Фонетски редослед сортирања + Пињин сортирање + Реформисани редослед сортирања + претрага опште намене + Претрага према хангул почетном сугласнику + стандардни редослед сортирања + Сортирање по броју црта + Традиционално сортирање + Редослед сортирања радикалним цртицама + Сортирај без нормализације + Сортирај Unicode нормализовано + Сортирај цифре појединачно + Сортирај цифре нумерички + Сортирај све + Сортирај само основна слова + Сортирај акценте/мала и велика слова/ширину/кана симболе + Сортирај акценте + Сортирај акценте/мала и велика слова/ширину + 12-часовни систем (0-11) + 12-часовни систем (1-12) + 24-часовни систем (0-23) + 24-часовни систем (1-24) + loose + normal + strict + метрички + uksystem + ussystem + арапско-индијске цифре + продужене арапско-индијске цифре + јерменски бројеви + мали јерменски бројеви + бенгалске цифре + девангари цифре + етиопски бројеви + Финансијски бројеви + цифре пуне ширине + грузијски бројеви + грчки бројеви + мали грчки бројеви + гуџаратске цифре + гурмуки цифре + кинески децимални бројеви + поједностављени кинески бројеви + поједностављени кинески финансијски бројеви + традиционални кинески бројеви + традиционални кинески финансијски бројеви + хебрејски бројеви + јапански бројеви + јапански финансијски бројеви + кмерске цифре + канада цифре + лаошке цифре + западне цифре + малајалам цифре + монголске цифре + мијанмарске цифре + Локалне цифре + орија цифре + римски бројеви + мали римски бројеви + тамилски бројеви + тамилске цифре + телугу цифре + тајске цифре + тибетанске цифре + Традиционални бројеви + Ваи цифре БГН (BGN) @@ -1198,30 +1216,31 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1} {0} - {1} {0} + {1} {0} - {1} {0} + {1} {0} - {1} {0} + {1} {0} d + ccc E d. y. G MMM y. G - d. MMM y. G + d. MMM y. G E, d. MMM y. G hh a HH @@ -1243,19 +1262,19 @@ For terms of use, see http://www.unicode.org/copyright.html y. G y. G M.y. G - d.M.y. G - E, d.M.y. G + d.M.y. G + E, d.M.y. G MM.y. G dd.MM.y. G MMM y. G - d. MMM y. G + d. MMM y. G E, d. MMM y. G MMMM y. G - QQQ, y. G - QQQQ y. G + QQQ, y. G + QQQQ y. G - {0} - {1} + {0} – {1} d–d @@ -1306,7 +1325,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM–MMM - dd.–dd. MMM + dd – dd. MMM dd. MMM – dd. MMM @@ -1314,25 +1333,25 @@ For terms of use, see http://www.unicode.org/copyright.html E, dd. MMM – E, dd. MMM - y–y + y – y. G - y M – M - M.y – M.y + M.y – M.y. GGGGG + M.y – M.y. GGGGG - d.M.y. – d.M.y. + d.M.y – d.M.y. GGGGG d.M.y. – d.M.y. - d.M.y. – d.M.y. + d.M.y – d.M.y. GGGGG - E, d.M.y. – E, d.M.y. - E, d.M.y. – E, d.M.y. - E, d.M.y. – E, d.M.y. + E, d.M.y – E, d.M.y. GGGGG + E, d.M.y – E, d.M.y. GGGGG + E, d.M.y – E, d.M.y. GGGGG MMM–MMM y. - MMM y. – MMM y. + MMM y – MMM y. G dd.–dd. MMM y. @@ -1346,7 +1365,7 @@ For terms of use, see http://www.unicode.org/copyright.html y-MM – MM - y-MM – y-MM + MMMM y – MMMM y. G @@ -1535,10 +1554,10 @@ For terms of use, see http://www.unicode.org/copyright.html 4. - Прво тромесечје - Друго тромесечје - Треће тромесечје - Четврто тромесечје + први квартал + други квартал + трећи квартал + четврти квартал @@ -1549,39 +1568,91 @@ For terms of use, see http://www.unicode.org/copyright.html К4 - 1. - 2. - 3. - 4. + 1. + 2. + 3. + 4. - Прво тромесечје - Друго тромесечје - Треће тромесечје - Четврто тромесечје + први квартал + други квартал + трећи квартал + четврти квартал + + поноћ + пре подне + подне + по подне + јутро + по под. + вече + ноћ + + у поноћ a - n + у подне p + ујутру + по подне + увече + ноћу + поноћ пре подне - у подне + подне по подне + јутро + поподне + вече + ноћ + + + + + поноћ + пре подне + подне + по подне + јутро + поподне + вече + ноћ + + + поноћ + пре подне + подне + по подне + јутро + поподне + вече + ноћ + + + поноћ + пре подне + подне + по подне + јутро + поподне + вече + ноћ - Пре нове ере - п. н. е. - Нове ере - н. е. + пре нове ере + п. н. е. + нове ере + н. е. п. н. е. @@ -1639,61 +1710,65 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1} {0} - {1} {0} + {1} {0} - {1} {0} + {1} {0} - {1} {0} + {1} {0} d - E + E E d. - E, h:mm a - E, HH:mm - E, h:mm:ss a - E, HH:mm:ss - y. G - MMM y. G - d. MMM y. G - E, d. MMM y. G - hh a + E, h.mm a + E, HH.mm + E, h.mm.ss a + E, HH.mm.ss + y. G + MMM y. G + d. MMM y. G + E, d. MMM y. G + h a HH hh.mm a HH.mm hh.mm.ss a HH.mm.ss + h.mm.ss a v + HH.mm.ss v + h.mm a v + HH.mm v L d/M - E, M-d + E, d.M. MM-dd LLL d. MMM dd.MMM E d. MMM d. MMMM - E d. MMMM + E, d. MMMM mm.ss y. M.y. - d.M.y. + d.M.y. E, d.M.y. MM.y. dd.MM.y. MMM y. - d. MMM y. + d. MMM y. E, d. MMM y. MMMM y. QQQ. y @@ -1703,7 +1778,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} {1} - {0} - {1} + {0} – {1} d–d @@ -1765,8 +1840,8 @@ For terms of use, see http://www.unicode.org/copyright.html y–y - y M – M - y M – M + M – M, y + M.y. – M.y. d.M.y. – d.M.y. @@ -1793,8 +1868,8 @@ For terms of use, see http://www.unicode.org/copyright.html E, dd. MMM y. – E, dd. MMM y. - y-MM – MM - y-MM – y-MM + MMMM – MMMM y. + MMMM y – MMMM y. @@ -1853,7 +1928,7 @@ For terms of use, see http://www.unicode.org/copyright.html Мух. Саф. Реб. 1 - Реб 2 + Реб. 2 Џум. 1 Џум. 2 Реџ. @@ -1904,238 +1979,238 @@ For terms of use, see http://www.unicode.org/copyright.html - Таика (645-650) - Хакучи (650-671) - Хакухо (672-686) - Шучо (686-701) - Таихо (701-704) - Кеиун (704-708) - Вадо (708-715) - Реики (715-717) - Јоро (717-724) - Јинки (724-729) - Темпио (729-749) + Таика (645–650) + Хакучи (650–671) + Хакухо (672–686) + Шучо (686–701) + Таихо (701–704) + Кеиун (704–708) + Вадо (708–715) + Реики (715–717) + Јоро (717–724) + Јинки (724–729) + Темпио (729–749) Темпио-кампо (749-749) Темпио-шохо (749-757) Темпио-хођи (757-765) Темпо-ђинго (765-767) Ђинго-кеиун (767-770) - Хоки (770-780) + Хоки (770–780) Тен-о (781-782) - Енрјаку (782-806) - Даидо (806-810) - Конин (810-824) - Тенчо (824-834) - Шова (834-848) - Кајо (848-851) - Нињу (851-854) - Саико (854-857) - Тенан (857-859) - Јоган (859-877) - Генкеи (877-885) - Ниња (885-889) - Кампјо (889-898) - Шотаи (898-901) - Енђи (901-923) - Енчо (923-931) - Шохеи (931-938) - Тенгјо (938-947) - Тенриаку (947-957) - Тентоку (957-961) - Ова (961-964) - Кохо (964-968) - Ана (968-970) - Тенроку (970-973) + Енрјаку (782–806) + Даидо (806–810) + Конин (810–824) + Тенчо (824–834) + Шова (834–848) + Кајо (848–851) + Нињу (851–854) + Саико (854–857) + Тенан (857–859) + Јоган (859–877) + Генкеи (877–885) + Ниња (885–889) + Кампјо (889–898) + Шотаи (898–901) + Енђи (901–923) + Енчо (923–931) + Шохеи (931–938) + Тенгјо (938–947) + Тенриаку (947–957) + Тентоку (957–961) + Ова (961–964) + Кохо (964–968) + Ана (968–970) + Тенроку (970–973) Тен-ен (973-976) - Јоген (976-978) - Тенген (978-983) - Еикан (983-985) - Кана (985-987) + Јоген (976–978) + Тенген (978–983) + Еикан (983–985) + Кана (985–987) Еи-ен (987-989) - Еисо (989-990) - Шорјаку (990-995) - Чотоку (995-999) - Чохо (999-1004) - Канко (1004-1012) - Чова (1012-1017) - Канин (1017-1021) - Ђиан (1021-1024) - Мању (1024-1028) - Чоген (1028-1037) - Чорјаку (1037-1040) - Чокју (1040-1044) - Кантоку (1044-1046) - Еишо (1046-1053) - Тенђи (1053-1058) - Кохеи (1058-1065) - Ђирјаку (1065-1069) - Енкју (1069-1074) - Шохо (1074-1077) - Шорјаку (1077-1081) - Еишо (1081-1084) - Отоку (1084-1087) - Канђи (1087-1094) - Кахо (1094-1096) - Еичо (1096-1097) - Шотоку (1097-1099) - Кова (1099-1104) - Чођи (1104-1106) - Кашо (1106-1108) - Тенин (1108-1110) + Еисо (989–990) + Шорјаку (990–995) + Чотоку (995–999) + Чохо (999–1004) + Канко (1004–1012) + Чова (1012–1017) + Канин (1017–1021) + Ђиан (1021–1024) + Мању (1024–1028) + Чоген (1028–1037) + Чорјаку (1037–1040) + Чокју (1040–1044) + Кантоку (1044–1046) + Еишо (1046–1053) + Тенђи (1053–1058) + Кохеи (1058–1065) + Ђирјаку (1065–1069) + Енкју (1069–1074) + Шохо (1074–1077) + Шорјаку (1077–1081) + Еишо (1081–1084) + Отоку (1084–1087) + Канђи (1087–1094) + Кахо (1094–1096) + Еичо (1096–1097) + Шотоку (1097–1099) + Кова (1099–1104) + Чођи (1104–1106) + Кашо (1106–1108) + Тенин (1108–1110) Тен-еи (1110-1113) - Еикју (1113-1118) + Еикју (1113–1118) Ђен-еи (1118-1120) - Хоан (1120-1124) - Тенђи (1124-1126) - Даиђи (1126-1131) - Теншо (1131-1132) - Чошао (1132-1135) - Хоен (1135-1141) - Еиђи (1141-1142) - Кођи (1142-1144) - Тењо (1144-1145) - Кјуан (1145-1151) - Нинпеи (1151-1154) - Кјују (1154-1156) - Хоген (1156-1159) - Хеиђи (1159-1160) - Еирјаку (1160-1161) - Охо (1161-1163) - Чокан (1163-1165) - Еиман (1165-1166) + Хоан (1120–1124) + Тенђи (1124–1126) + Даиђи (1126–1131) + Теншо (1131–1132) + Чошао (1132–1135) + Хоен (1135–1141) + Еиђи (1141–1142) + Кођи (1142–1144) + Тењо (1144–1145) + Кјуан (1145–1151) + Нинпеи (1151–1154) + Кјују (1154–1156) + Хоген (1156–1159) + Хеиђи (1159–1160) + Еирјаку (1160–1161) + Охо (1161–1163) + Чокан (1163–1165) + Еиман (1165–1166) Нин-ан (1166-1169) - Као (1169-1171) - Шоан (1171-1175) - Анген (1175-1177) - Ђишо (1177-1181) - Јова (1181-1182) - Ђуеи (1182-1184) - Генрјуку (1184-1185) - Бунђи (1185-1190) - Кенкју (1190-1199) - Шођи (1199-1201) - Кенин (1201-1204) - Генкју (1204-1206) + Као (1169–1171) + Шоан (1171–1175) + Анген (1175–1177) + Ђишо (1177–1181) + Јова (1181–1182) + Ђуеи (1182–1184) + Генрјуку (1184–1185) + Бунђи (1185–1190) + Кенкју (1190–1199) + Шођи (1199–1201) + Кенин (1201–1204) + Генкју (1204–1206) Кен-еи (1206-1207) - Шоген (1207-1211) - Кенрјаку (1211-1213) - Кенпо (1213-1219) - Шокју (1219-1222) - Ђу (1222-1224) - Ђенин (1224-1225) - Кароку (1225-1227) - Антеи (1227-1229) - Канки (1229-1232) - Ђоеи (1232-1233) - Темпуку (1233-1234) - Бунрјаку (1234-1235) - Катеи (1235-1238) - Рјакунин (1238-1239) + Шоген (1207–1211) + Кенрјаку (1211–1213) + Кенпо (1213–1219) + Шокју (1219–1222) + Ђу (1222–1224) + Ђенин (1224–1225) + Кароку (1225–1227) + Антеи (1227–1229) + Канки (1229–1232) + Ђоеи (1232–1233) + Темпуку (1233–1234) + Бунрјаку (1234–1235) + Катеи (1235–1238) + Рјакунин (1238–1239) Ен-о (1239-1240) - Нињи (1240-1243) - Канген (1243-1247) - Хођи (1247-1249) - Кенчо (1249-1256) - Коген (1256-1257) - Шока (1257-1259) - Шоген (1259-1260) + Нињи (1240–1243) + Канген (1243–1247) + Хођи (1247–1249) + Кенчо (1249–1256) + Коген (1256–1257) + Шока (1257–1259) + Шоген (1259–1260) Бун-о (1260-1261) - Кочо (1261-1264) + Кочо (1261–1264) Бун-еи (1264-1275) - Кенђи (1275-1278) - Коан (1278-1288) - Шу (1288-1293) - Еинин (1293-1299) - Шоан (1299-1302) - Кенген (1302-1303) - Каген (1303-1306) - Токуђи (1306-1308) - Енкеи (1308-1311) - Очо (1311-1312) - Шова (1312-1317) - Бунпо (1317-1319) - Ђено (1319-1321) - Ђенкјо (1321-1324) - Шочу (1324-1326) - Кареки (1326-1329) - Гентоку (1329-1331) - Генко (1331-1334) - Кему (1334-1336) - Енген (1336-1340) - Кококу (1340-1346) - Шохеи (1346-1370) - Кентоку (1370-1372) - Бучу (1372-1375) - Тењу (1375-1379) - Корјаку (1379-1381) - Кова (1381-1384) - Генчу (1384-1392) - Меитоку (1384-1387) - Какеи (1387-1389) - Ку (1389-1390) - Меитоку (1390-1394) - Оеи (1394-1428) - Шочо (1428-1429) - Еикјо (1429-1441) - Какитсу (1441-1444) + Кенђи (1275–1278) + Коан (1278–1288) + Шу (1288–1293) + Еинин (1293–1299) + Шоан (1299–1302) + Кенген (1302–1303) + Каген (1303–1306) + Токуђи (1306–1308) + Енкеи (1308–1311) + Очо (1311–1312) + Шова (1312–1317) + Бунпо (1317–1319) + Ђено (1319–1321) + Ђенкјо (1321–1324) + Шочу (1324–1326) + Кареки (1326–1329) + Гентоку (1329–1331) + Генко (1331–1334) + Кему (1334–1336) + Енген (1336–1340) + Кококу (1340–1346) + Шохеи (1346–1370) + Кентоку (1370–1372) + Бучу (1372–1375) + Тењу (1375–1379) + Корјаку (1379–1381) + Кова (1381–1384) + Генчу (1384–1392) + Меитоку (1384–1387) + Какеи (1387–1389) + Ку (1389–1390) + Меитоку (1390–1394) + Оеи (1394–1428) + Шочо (1428–1429) + Еикјо (1429–1441) + Какитсу (1441–1444) Бун-ан (1444-1449) - Хотоку (1449-1452) - Кјотоку (1452-1455) - Кошо (1455-1457) - Чороку (1457-1460) - Каншо (1460-1466) - Буншо (1466-1467) - Онин (1467-1469) - Бунмеи (1469-1487) - Чокјо (1487-1489) - Ентоку (1489-1492) - Меио (1492-1501) - Бунки (1501-1504) - Еишо (1504-1521) - Таиеи (1521-1528) - Кјороку (1528-1532) - Тенмон (1532-1555) - Кођи (1555-1558) - Еироку (1558-1570) - Генки (1570-1573) - Теншо (1573-1592) - Бунроку (1592-1596) - Кеичо (1596-1615) - Генва (1615-1624) + Хотоку (1449–1452) + Кјотоку (1452–1455) + Кошо (1455–1457) + Чороку (1457–1460) + Каншо (1460–1466) + Буншо (1466–1467) + Онин (1467–1469) + Бунмеи (1469–1487) + Чокјо (1487–1489) + Ентоку (1489–1492) + Меио (1492–1501) + Бунки (1501–1504) + Еишо (1504–1521) + Таиеи (1521–1528) + Кјороку (1528–1532) + Тенмон (1532–1555) + Кођи (1555–1558) + Еироку (1558–1570) + Генки (1570–1573) + Теншо (1573–1592) + Бунроку (1592–1596) + Кеичо (1596–1615) + Генва (1615–1624) Кан-еи (1624-1644) - Шохо (1644-1648) - Кеиан (1648-1652) - Шу (1652-1655) - Меирјаку (1655-1658) - Мањи (1658-1661) - Канбун (1661-1673) - Енпо (1673-1681) - Тенва (1681-1684) - Јокјо (1684-1688) - Генроку (1688-1704) - Хоеи (1704-1711) - Шотоку (1711-1716) - Кјохо (1716-1736) - Генбун (1736-1741) - Канпо (1741-1744) - Енкјо (1744-1748) + Шохо (1644–1648) + Кеиан (1648–1652) + Шу (1652–1655) + Меирјаку (1655–1658) + Мањи (1658–1661) + Канбун (1661–1673) + Енпо (1673–1681) + Тенва (1681–1684) + Јокјо (1684–1688) + Генроку (1688–1704) + Хоеи (1704–1711) + Шотоку (1711–1716) + Кјохо (1716–1736) + Генбун (1736–1741) + Канпо (1741–1744) + Енкјо (1744–1748) Кан-ен (1748-1751) - Хорјаку (1751-1764) - Меива (1764-1772) + Хорјаку (1751–1764) + Меива (1764–1772) Ан-еи (1772-1781) - Тенмеи (1781-1789) - Кансеи (1789-1801) - Кјова (1801-1804) - Бунка (1804-1818) - Бунсеи (1818-1830) - Тенпо (1830-1844) - Кока (1844-1848) - Каеи (1848-1854) - Ансеи (1854-1860) + Тенмеи (1781–1789) + Кансеи (1789–1801) + Кјова (1801–1804) + Бунка (1804–1818) + Бунсеи (1818–1830) + Тенпо (1830–1844) + Кока (1844–1848) + Каеи (1848–1854) + Ансеи (1854–1860) Ман-ен (1860-1861) - Бункју (1861-1864) - Генђи (1864-1865) - Кеико (1865-1868) + Бункју (1861–1864) + Генђи (1864–1865) + Кеико (1865–1868) Меиђи Таишо Шова @@ -2247,6 +2322,9 @@ For terms of use, see http://www.unicode.org/copyright.html квартал + прошлог квартала + овог квартала + следећег квартала за {0} квартал за {0} квартала @@ -2259,29 +2337,35 @@ For terms of use, see http://www.unicode.org/copyright.html - квартал + кв. + прошлог квартала + овог квартала + следећег квартала - за {0} квартала - за {0} квартала - за {0} квартала + за {0} кв. + за {0} кв. + за {0} кв. - пре {0} квартала - пре {0} квартала - пре {0} квартала + пре {0} кв. + пре {0} кв. + пре {0} кв. - квартал + кв. + прошлог квартала + овог квартала + следећег квартала - за {0} квартала - за {0} квартала - за {0} квартала + за {0} кв. + за {0} кв. + за {0} кв. - пре {0} квартала - пре {0} квартала - пре {0} квартала + пре {0} кв. + пре {0} кв. + пре {0} кв. @@ -2441,9 +2525,9 @@ For terms of use, see http://www.unicode.org/copyright.html следећег пон - прошлог пон - у пон - следећег пон + прошлог пон + у пон + следећег пон прошлог уторка @@ -2768,7 +2852,7 @@ For terms of use, see http://www.unicode.org/copyright.html Брокен Хил - Курие + Кари Мелбурн @@ -3129,7 +3213,7 @@ For terms of use, see http://www.unicode.org/copyright.html - британско летње време + Британија летње рачунање времена Лондон @@ -3222,7 +3306,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ирско летње време + Ирска стандардно време Даблин @@ -3520,6 +3604,9 @@ For terms of use, see http://www.unicode.org/copyright.html Порт Морзби + + Буганвил + Манила @@ -3604,6 +3691,9 @@ For terms of use, see http://www.unicode.org/copyright.html Иркуцк + + Чита + Јакутск @@ -3622,6 +3712,9 @@ For terms of use, see http://www.unicode.org/copyright.html Магадан + + Средњеколимск + Камчатка @@ -3686,7 +3779,7 @@ For terms of use, see http://www.unicode.org/copyright.html Салвадор - Лоуер Принсиз Квортер + Лоуер Принсиз Квортер Дамаск @@ -3937,9 +4030,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Аљашко време - Аљашко стандардно време - Аљашко летње време + Аљаска + Аљаска, стандардно време + Аљаска, летње рачунање времена @@ -4035,9 +4128,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Арменија време - Арменија стандардно време - Арменија летње рачунање времена + Јерменија време + Јерменија стандардно време + Јерменија летње рачунање времена @@ -4120,9 +4213,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Зелениртско време - Зелениртско стандардно време - Зеленортско летње рачунање времена + Зеленортска Острва време + Зеленортска Острва стандардно време + Зеленортска Острва летње рачунање времена @@ -4160,7 +4253,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Божићна острва време + Божићно острво време @@ -4288,7 +4381,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Гамбијер време + Гамбије време @@ -4467,7 +4560,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Лине Острва време + Острва Лајн време @@ -4486,7 +4579,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Макверијско време + Острво Маквери време @@ -4685,7 +4778,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Понпеи време + Понпеј време @@ -4748,7 +4841,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Суринам + Суринам време @@ -4891,7 +4984,7 @@ For terms of use, see http://www.unicode.org/copyright.html NaN - : + . @@ -5003,6 +5096,46 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤;(#,##0.00 ¤) + + + 0 хиљ'.' ¤ + 0 хиљ'.' ¤ + 0 хиљ'.' ¤ + 00 хиљ'.' ¤ + 00 хиљ'.' ¤ + 00 хиљ'.' ¤ + 000 хиљ'.' ¤ + 000 хиљ'.' ¤ + 000 хиљ'.' ¤ + 0 мил'.' ¤ + 0 мил'.' ¤ + 0 мил'.' ¤ + 00 мил'.' ¤ + 00 мил'.' ¤ + 00 мил'.' ¤ + 000 мил'.' ¤ + 000 мил'.' ¤ + 000 мил'.' ¤ + 0 млрд'.' ¤ + 0 млрд'.' ¤ + 0 млрд'.' ¤ + 00 млрд'.' ¤ + 00 млрд'.' ¤ + 00 млрд'.' ¤ + 000 млрд'.' ¤ + 000 млрд'.' ¤ + 000 млрд'.' ¤ + 0 бил'.' ¤ + 0 бил'.' ¤ + 0 бил'.' ¤ + 00 бил'.' ¤ + 00 бил'.' ¤ + 00 бил'.' ¤ + 000 бил'.' ¤ + 000 бил'.' ¤ + 000 бил'.' ¤ + + {0} {1} {0} {1} {0} {1} @@ -5066,6 +5199,7 @@ For terms of use, see http://www.unicode.org/copyright.html анголске кванзе анголских кванзи AOA + Kz Анголијска кванза (1977–1990) @@ -5126,7 +5260,7 @@ For terms of use, see http://www.unicode.org/copyright.html Аустралијски долар аустралијски долар - Аустралијска долара + аустралијска долара аустралијских долара AUD $ @@ -5163,6 +5297,7 @@ For terms of use, see http://www.unicode.org/copyright.html босанско-херцеговачке конвертибилне маркe босанско-херцеговачких конвертибилних марака КМ + KM Босанско-херцеговачки нови динар @@ -5260,11 +5395,12 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Боливијски Боливиано - боливијски боливиано - боливијска боливиана - боливијских боливиана + Боливијски боливијано + боливијски боливијано + боливијска боливијана + боливијских боливијана BOB + Bs Стари боливијски боливијано @@ -5355,6 +5491,7 @@ For terms of use, see http://www.unicode.org/copyright.html боцванске пуле боцванских пула BWP + P Белоруска нова рубља (1994–1999) @@ -5368,6 +5505,7 @@ For terms of use, see http://www.unicode.org/copyright.html белоруске рубље белоруских рубљи [BYR] + р. Белиски долар @@ -5387,9 +5525,9 @@ For terms of use, see http://www.unicode.org/copyright.html Конгоански франак - конголски франак - конголска франка - конголских франака + конгоански франак + конгоанска франка + конгоанских франака CDF @@ -5485,6 +5623,7 @@ For terms of use, see http://www.unicode.org/copyright.html кубанска конвертибилна пезоса кубанских конвертибилних пезоса CUC + $ Кубански пезос @@ -5513,6 +5652,7 @@ For terms of use, see http://www.unicode.org/copyright.html чешке круне чешких крунa CZK + Источно-немачка марка @@ -5539,6 +5679,7 @@ For terms of use, see http://www.unicode.org/copyright.html данске круне данских круна DKK + kr Доминикански пезос @@ -5579,6 +5720,7 @@ For terms of use, see http://www.unicode.org/copyright.html египатске фунте египатских фунти EGP + Eритрејска накфa @@ -5606,10 +5748,10 @@ For terms of use, see http://www.unicode.org/copyright.html шпанске пезете - Етиопијски бир - етиопијски бир - етиопијска бира - етиопијских бира + Етиопски бир + етиопски бир + етиопска бира + етиопских бира ETB @@ -5618,6 +5760,7 @@ For terms of use, see http://www.unicode.org/copyright.html евра евра + Финска марка @@ -5639,6 +5782,7 @@ For terms of use, see http://www.unicode.org/copyright.html фокландске фунте фокландских фунти FKP + £ Француски франак @@ -5652,6 +5796,7 @@ For terms of use, see http://www.unicode.org/copyright.html британске фунте британских фунти £ + £ Грузијски купон ларит @@ -5665,6 +5810,7 @@ For terms of use, see http://www.unicode.org/copyright.html грузијска ларија грузијских ларија GEL + Гански цеди (1979–2007) @@ -5691,7 +5837,7 @@ For terms of use, see http://www.unicode.org/copyright.html Гамбијски даласи гамбијски даласи гамбијска даласа - гамбијских даласа + гамбијских даласија GMD @@ -5700,6 +5846,7 @@ For terms of use, see http://www.unicode.org/copyright.html гвинејска франка гвинејских франака GNF + FG Гвинејски сили @@ -5725,6 +5872,7 @@ For terms of use, see http://www.unicode.org/copyright.html гватемалска кецала гватемалских кецала GTQ + Q Португалска гвинеја ескудо @@ -5756,10 +5904,11 @@ For terms of use, see http://www.unicode.org/copyright.html Хондурашка лемпира - хондурашки лемпир - хондурашка лемпира + хондурашка лемпира + хондурашке лемпире хондурашких лемпира HNL + L Хрватски динар @@ -5773,6 +5922,7 @@ For terms of use, see http://www.unicode.org/copyright.html хрватске куне хрватских куна HRK + kn Хаићански гурд @@ -5787,6 +5937,7 @@ For terms of use, see http://www.unicode.org/copyright.html мађарске форинте мађарских форинти HUF + Ft Индонежанска рупија @@ -5794,6 +5945,7 @@ For terms of use, see http://www.unicode.org/copyright.html индонежанске рупије индонежанских рупијa IDR + Rp Ирска фунта @@ -5855,6 +6007,7 @@ For terms of use, see http://www.unicode.org/copyright.html исландске круне исландских круна ISK + kr Италијанска лира @@ -5864,9 +6017,9 @@ For terms of use, see http://www.unicode.org/copyright.html Јамајчански долар - jамајкански долар - jамајканскa доларa - jамајканскиx доларa + jамајчански долар + jамајчанска долара + jамајчанскиx долара JMD $ @@ -5913,6 +6066,7 @@ For terms of use, see http://www.unicode.org/copyright.html коморскa франкa коморских франакa KMF + CF Севернокорејски вон @@ -5920,6 +6074,7 @@ For terms of use, see http://www.unicode.org/copyright.html севернокорејска вона севернокорејских вона KPW + Јужнокорејски хван @@ -5959,8 +6114,8 @@ For terms of use, see http://www.unicode.org/copyright.html Казахстански тенге казахстански тенге - казахстанске тенге - казахстанских тенги + казахстанска тенгеа + казахстанских тенгеа KZT @@ -5978,6 +6133,7 @@ For terms of use, see http://www.unicode.org/copyright.html либанскe фунтe либанских фунти LBP + Шриланканскa рупиja @@ -5985,6 +6141,7 @@ For terms of use, see http://www.unicode.org/copyright.html шриланканскe рупијe шриланканских рупија LKR + Rs Либеријски долар @@ -6053,8 +6210,8 @@ For terms of use, see http://www.unicode.org/copyright.html Марокански дирхам - мароканска дирхама - мароканске дирхаме + марокански дирхам + мароканска дирхама мароканских дирхама MAD @@ -6084,11 +6241,12 @@ For terms of use, see http://www.unicode.org/copyright.html MDL - Малагасијски ариари + Мадагаскарски ариари малагасијски ариари малагасијскa ариариja малагасијских ариариja MGA + Ar Малагасијски франак @@ -6121,6 +6279,7 @@ For terms of use, see http://www.unicode.org/copyright.html мјанмарскa кјатa мјанмарских кјатa MMK + K Монголски тугрик @@ -6131,10 +6290,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Маканишка патака - маканешка патака - маканешке патаке - маканешких патака + Макаоска патака + макаоска патака + макаоске патаке + макаоских патака MOP @@ -6162,6 +6321,7 @@ For terms of use, see http://www.unicode.org/copyright.html маурицијскe рупијe маурицијских рупија MUR + Rs Малдивска руфија @@ -6198,11 +6358,12 @@ For terms of use, see http://www.unicode.org/copyright.html мексичких унидадс де инверзиона - Малезијски ринггит - малезијски ринггит - малезијска ринггита - малезијских ринггита + Малезијски рингит + малезијски рингит + малезијска рингита + малезијских рингита MYR + RM Мозамбијски ескудо @@ -6217,10 +6378,10 @@ For terms of use, see http://www.unicode.org/copyright.html старих мозамбијских метикала - Мозамбијски метикал - мозамбијски метикал - мозамбијска метикала - мозамбијских метикала + Мозамбички метикал + мозамбички метикал + мозамбичка метикала + мозамбичких метикала MZN @@ -6251,6 +6412,7 @@ For terms of use, see http://www.unicode.org/copyright.html никарагванске златне кордобе никарагванских златних кордоба NIO + C$ Холандски гулден @@ -6264,6 +6426,7 @@ For terms of use, see http://www.unicode.org/copyright.html норвешке круне норвешких круна NOK + kr Непалскa рупиja @@ -6271,6 +6434,7 @@ For terms of use, see http://www.unicode.org/copyright.html непалске рупије непалских рупија NPR + Rs Новозеландски долар @@ -6301,10 +6465,10 @@ For terms of use, see http://www.unicode.org/copyright.html перувијских интија - Перуански нуево сол - перуански нуево сол - перуанска нуево сола - перуанских нуево сола + Перуански нови сол + перуански нови сол + перуанска нова сола + перуанских нових сола PEN @@ -6334,6 +6498,7 @@ For terms of use, see http://www.unicode.org/copyright.html пакистанске рупије пакистанских рупија PKR + Rs Пољски злот @@ -6341,6 +6506,7 @@ For terms of use, see http://www.unicode.org/copyright.html пољска злота пољских злота PLN + Пољски злоти (1950–1995) @@ -6401,6 +6567,7 @@ For terms of use, see http://www.unicode.org/copyright.html руске рубље руских рубљи RUB + руб Руска рубља (1991–1998) @@ -6414,6 +6581,7 @@ For terms of use, see http://www.unicode.org/copyright.html руандскa франка руандских франака RWF + RF Саудијски ријал @@ -6462,6 +6630,7 @@ For terms of use, see http://www.unicode.org/copyright.html шведске круне шведских круна SEK + kr Сингапурски долар @@ -6477,6 +6646,7 @@ For terms of use, see http://www.unicode.org/copyright.html св. јеленске фунте св. јеленских фунти SHP + £ Словеначки толар @@ -6491,7 +6661,7 @@ For terms of use, see http://www.unicode.org/copyright.html словачких круна - Сијера-леоншки леоне + Сијералеонски леоне сијералеонски леоне сијералеонска леона сијералеонских леона @@ -6527,11 +6697,12 @@ For terms of use, see http://www.unicode.org/copyright.html £ - Сао Томе и Принципе добра - сао томе и принципе добар - сао томе и принципе добра - сао томе и принципе добра + Саотомска добра + саотомска добра + саотомске добре + саотомских добри STD + Db Совјетска рубља @@ -6551,12 +6722,13 @@ For terms of use, see http://www.unicode.org/copyright.html сиријске фунте сиријских фунти SYP + £ - Свази лилангени - свази емаланген - свази емалангена - свази емалангена + Свазилендски лилангени + свазилендски лилангени + свазилендска лилангенија + свазилендских лилангенија SZL @@ -6565,6 +6737,7 @@ For terms of use, see http://www.unicode.org/copyright.html тајландска бата тајландских бата THB + ฿ Таџихистанска рубља @@ -6600,10 +6773,10 @@ For terms of use, see http://www.unicode.org/copyright.html TND - Тонгоншка Панга - тонгашка панга - тонгашке панге - тонгашких панга + Тонганска панга + тонганска панга + тонганске панге + тонганских панги TOP @@ -6625,6 +6798,7 @@ For terms of use, see http://www.unicode.org/copyright.html турских лира TRY + TL Тринидад-тобагошки долар @@ -6650,10 +6824,10 @@ For terms of use, see http://www.unicode.org/copyright.html TZS - Украјинска гривна + Украјинска хривња украјинскa хривњa украјинскe хривњe - украјинских гривни + украјинских хривњи UAH @@ -6735,6 +6909,7 @@ For terms of use, see http://www.unicode.org/copyright.html венецуеланска боливара венецуеланских боливара VEF + Bs Вијетнамски донг @@ -6810,9 +6985,10 @@ For terms of use, see http://www.unicode.org/copyright.html Источнокарипски долар источнокарипски долар - источно-карипскa доларa - источно-карипскиx доларa + источнокарипскa доларa + источнокарипскиx доларa EC$ + $ Посебна цртаћа права @@ -6877,10 +7053,10 @@ For terms of use, see http://www.unicode.org/copyright.html кодова тестиране валуте - Непозната или неважећа валута - непозната или неважећа валута - непознате или неважеће валуте - непознатих или неважећих валута + Непозната валута + непозната јединица валуте + непознате валуте + непознатих валута Јеменски динар @@ -6926,11 +7102,12 @@ For terms of use, see http://www.unicode.org/copyright.html јужноафричких ранда (финансијских) - Јужно-афрички ранд - јужно-афрички ранд - јужно-афричка ранда - јужно-афричких ранда + Јужноафрички ранд + јужноафрички ранд + јужноафричка ранда + јужноафричких ранда ZAR + R Замбијска квача (1968–2012) @@ -6944,6 +7121,7 @@ For terms of use, see http://www.unicode.org/copyright.html замбијске кваче замбијских квача ZMW + ZK Заирски нови заир @@ -6984,7 +7162,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0}/{1} + {0}/{1} ге сила @@ -6998,23 +7176,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} метра у секунди на квадрат {0} метара у секунди на квадрат - - минути - {0} минут - {0} минута - {0} минута - - - секунде - {0} секунда - {0} секунде - {0} секунди - - - степени - {0} степен - {0} степена - {0} степени + + обртај + {0} обртај + {0} обртаја + {0} обртаја радијани @@ -7022,11 +7188,29 @@ For terms of use, see http://www.unicode.org/copyright.html {0} радијана {0} радијана - - акери - {0} акер - {0} акера - {0} акера + + степени + {0} степен + {0} степена + {0} степени + + + лучни минути + {0} лучни минут + {0} лучна минута + {0} лучних минута + + + лучне секунде + {0} лучна секунда + {0} лучне секунде + {0} лучних секунди + + + квадратни километри + {0} квадратни километар + {0} квадратна километра + {0} квадратних километара хектари @@ -7034,11 +7218,37 @@ For terms of use, see http://www.unicode.org/copyright.html {0} хектара {0} хектара + + квадратни метри + {0} квадратни метар + {0} квадратна метра + {0} квадратних метара + {0}/m² + квадратни центиметри {0} квадратни центиметар {0} квадратна центиметра {0} квадратних центиметара + {0}/cm² + + + квадратне миље + {0} квадратна миља + {0} квадратне миље + {0} квадратних миља + + + акери + {0} акер + {0} акера + {0} акера + + + квадратни јарди + {0} квадратни јард + {0} квадратна јарда + {0} квадратних јарди квадратне стопе @@ -7051,30 +7261,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} квадратни инч {0} квадратна инча {0} квадратних инча + {0}/in² - - квадратни километри - {0} квадратни километар - {0} квадратна километра - {0} квадратних километара - - - квадратни метри - {0} квадратни метар - {0} квадратна метра - {0} квадратних метара - - - квадратне миље - {0} квадратна миља - {0} квадратне миље - {0} квадратних миља - - - квадратни јарди - {0} квадратни јард - {0} квадратна јарда - {0} квадратних јарди + + карати + {0} карат + {0} карата + {0} карата литри по километру @@ -7082,90 +7275,132 @@ For terms of use, see http://www.unicode.org/copyright.html {0} литра по километру {0} литара по километру + + L/100km + {0} литар на 100 километара + {0} литра на 100 километара + {0} литара на 100 километара + миља по галону {0} миља по галону {0} миље по галону {0} миља по галону - - битови - {0} бит - {0} бита - {0} битова - - - бајтови - {0} бајт - {0} бајта - {0} бајтова - - - гигабитови - {0} гигабит - {0} гигабита - {0} гигабита - - - гигабајти - {0} гигабајт - {0} гигабајта - {0} гигабајта - - - килобитови - {0} килобит - {0} килобита - {0} килобита - - - килобајти - {0} килобајт - {0} килобајта - {0} килобајта - - - мегабитови - {0} мегабит - {0} мегабита - {0} мегабита - - - мегабајти - {0} мегабајт - {0} мегабајта - {0} мегабајта - - - терабитови - {0} терабит - {0} терабита - {0} терабита - терабајти {0} терабајт {0} терабајта {0} терабајта + + терабитови + {0} терабит + {0} терабита + {0} терабита + + + гигабајти + {0} гигабајт + {0} гигабајта + {0} гигабајта + + + гигабитови + {0} гигабит + {0} гигабита + {0} гигабита + + + мегабајти + {0} мегабајт + {0} мегабајта + {0} мегабајта + + + мегабитови + {0} мегабит + {0} мегабита + {0} мегабита + + + килобајти + {0} килобајт + {0} килобајта + {0} килобајта + + + килобитови + {0} килобит + {0} килобита + {0} килобита + + + бајтови + {0} бајт + {0} бајта + {0} бајтова + + + битови + {0} бит + {0} бита + {0} битова + + + векови + {0} век + {0} века + {0} векова + + + године + {0} година + {0} године + {0} година + {0} годишње + + + месеци + {0} месец + {0} месеца + {0} месеци + {0} месечно + + + недеље + {0} недеља + {0} недеље + {0} недеља + {0} недељно + дани {0} дан {0} дана {0} дана + {0}/дневно сати {0} сат {0} сата {0} сати - {0}/сат + {0}/сат - - микросекунде - {0} микросекунда - {0} микросекунде - {0} микросекунди + + минути + {0} минут + {0} минута + {0} минута + {0} у минуту + + + секунде + {0} секунда + {0} секунде + {0} секунди + {0}/сек милисекунде @@ -7173,17 +7408,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} милисекунде {0} милисекунди - - минути - {0} минут - {0} минута - {0} минута - - - месеци - {0} месец - {0} месеца - {0} месеци + + микросекунде + {0} микросекунда + {0} микросекунде + {0} микросекунди наносекунде @@ -7191,25 +7420,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} наносекунде {0} наносекунди - - секунде - {0} секунда - {0} секунде - {0} секунди - {0}/сек - - - недеље - {0} недеља - {0} недеље - {0} недеља - - - године - {0} година - {0} године - {0} година - ампери {0} ампер @@ -7234,6 +7444,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} волта {0} волти + + килокалорије + {0} килокалорија + {0} килокалорије + {0} килокалорија + калорије {0} калорија @@ -7246,24 +7462,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} калорије {0} калорија - - џули - {0} џул - {0} џула - {0} џула - - - килокалорије - {0} килокалорија - {0} килокалорије - {0} килокалорија - килоџули {0} килоџул {0} килоџула {0} килоџула + + џули + {0} џул + {0} џула + {0} џула + киловат-сати {0} киловат-сат @@ -7276,11 +7486,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гигахерца {0} гигахерца - - херци - {0} херц - {0} херца - {0} херца + + мегахерци + {0} мегахерц + {0} мегахерца + {0} мегахерца килохерци @@ -7288,23 +7498,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} килохерца {0} килохерца - - мегахерци - {0} мегахерц - {0} мегахерца - {0} мегахерца + + херци + {0} херц + {0} херца + {0} херца - - астрономске јединице - {0} астрономска јединица - {0} астрономске јединице - {0} астрономских јединица + + километри + {0} километар + {0} километра + {0} километара + {0}/km - - центиметри - {0} центиметар - {0} центиментра - {0} центиметара + + метри + {0} метар + {0} метра + {0} метара + {0}/m дециметри @@ -7312,47 +7524,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} дециметра {0} дециметара - - стопе - {0} стопа - {0} стопе - {0} стопа - - - инчи - {0} инч - {0} инча - {0} инча - - - километри - {0} километар - {0} километра - {0} километара - - - светлосне године - {0} светлосна година - {0} светлосне године - {0} светлосних година - - - метри - {0} метар - {0} метра - {0} метара - - - микрометри - {0} микрометар - {0} микрометра - {0} микрометара - - - миље - {0} миља - {0} миље - {0} миља + + центиметри + {0} центиметар + {0} центиментра + {0} центиметара + {0}/cm милиметри @@ -7360,71 +7537,105 @@ For terms of use, see http://www.unicode.org/copyright.html {0} милиметра {0} милиметара + + микрометри + {0} микрометар + {0} микрометра + {0} микрометара + нанометри {0} нанометар {0} нанометра {0} нанометара - - наутичке миље - {0} наутичка миља - {0} наутичке миље - {0} наутичких миља - - - парсеци - {0} парсек - {0} парсека - {0} парсека - пикометри {0} пикометар {0} пикометра {0} пикометара + + миље + {0} миља + {0} миље + {0} миља + јарди {0} јард {0} јарда {0} јарди + + стопе + {0} стопа + {0} стопе + {0} стопа + {0}/ft + + + инчи + {0} инч + {0} инча + {0} инча + {0}/in + + + парсеци + {0} парсек + {0} парсека + {0} парсека + + + светлосне године + {0} светлосна година + {0} светлосне године + {0} светлосних година + + + астрономске јединице + {0} астрономска јединица + {0} астрономске јединице + {0} астрономских јединица + + + наутичке миље + {0} наутичка миља + {0} наутичке миље + {0} наутичких миља + + + скандинавска миља + {0} smi + {0} smi + {0} smi + лукс {0} лукс {0} лукса {0} лукса - - карати - {0} карат - {0} карата - {0} карата - - - грами - {0} грам - {0} грама - {0} грама - - - килограми - {0} килограм - {0} килограма - {0} килограма - метричке тоне {0} метричка тона {0} метричке тоне {0} метричких тона - - микрограми - {0} микрограм - {0} микрограма - {0} микрограма + + килограми + {0} килограм + {0} килограма + {0} килограма + {0} по килограму + + + грами + {0} грам + {0} грама + {0} грама + {0} по граму милиграми @@ -7432,23 +7643,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} милиграма {0} милиграма - - унце - {0} унца - {0} унце - {0} унци - - - фине унце - {0} фина унца - {0} фине унце - {0} финих унци - - - фунте - {0} фунта - {0} фунте - {0} фунти + + микрограми + {0} микрограм + {0} микрограма + {0} микрограма тоне @@ -7456,35 +7655,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} тоне {0} тона + + фунте + {0} фунта + {0} фунте + {0} фунти + {0} по фунти + + + унце + {0} унца + {0} унце + {0} унци + {0} по унци + + + фине унце + {0} фина унца + {0} фине унце + {0} финих унци + + + карати + {0} карат + {0} карата + {0} карата + гигавати {0} гигават {0} гигавата {0} гигавати - - коњске снаге - {0} коњска снага - {0} коњске снаге - {0} коњских снага - - - киловати - {0} киловат - {0} киловата - {0} киловати - мегавати {0} мегават {0} мегавата {0} мегавати - - миливати - {0} миливат - {0} миливата - {0} миливати + + киловати + {0} киловат + {0} киловата + {0} киловати вати @@ -7492,24 +7705,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} вата {0} вати + + миливати + {0} миливат + {0} миливата + {0} миливати + + + коњске снаге + {0} коњска снага + {0} коњске снаге + {0} коњских снага + хектопаскали {0} хектопаскал {0} хектопаскала {0} хектопаскала - - инчи живиног стуба - {0} инч живиног стуба - {0} инча живиног стуба - {0} инча живиног стуба - - - милибари - {0} милибар - {0} милибара - {0} милибара - милиметри живиног стуба {0} милиметар живиног стуба @@ -7522,11 +7735,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} фунте по квадратном инчу {0} фунти по квадратном инчу - - карати - {0} карат - {0} карата - {0} карата + + инчи живиног стуба + {0} инч живиног стуба + {0} инча живиног стуба + {0} инча живиног стуба + + + милибари + {0} милибар + {0} милибара + {0} милибара километри на сат @@ -7546,6 +7765,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миље на сат {0} миља на сат + + kn + {0} kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + {0}° + степени Целзијуса {0} степен Целзијуса @@ -7564,36 +7795,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} келвина {0} келвина - - акер стопе - {0} акер стопа - {0} акер стопе - {0} акер стопа - - - центилитри - {0} центилитар - {0} центилитра - {0} центилитара - - - кубни центиметри - {0} кубни центиметар - {0} кубна центиметра - {0} кубних центиметара - - - кубне стопе - {0} кубна стопа - {0} кубне стопе - {0} кубних стопа - - - кубни инчи - {0} кубни инч - {0} кубна инча - {0} кубних инча - кубни километри {0} кубни километар @@ -7605,6 +7806,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кубни метар {0} кубна метра {0} кубних метара + {0}/m³ + + + кубни центиметри + {0} кубни центиметар + {0} кубна центиметра + {0} кубних центиметара + {0}/cm³ кубне миље @@ -7618,29 +7827,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кубна јарда {0} кубних јарди - - шоље - {0} шоља - {0} шоље - {0} шоља + + кубне стопе + {0} кубна стопа + {0} кубне стопе + {0} кубних стопа - - децилитри - {0} децилитар - {0} децилитра - {0} децилитара + + кубни инчи + {0} кубни инч + {0} кубна инча + {0} кубних инча - - унце течности - {0} унца течности - {0} унце течности - {0} унци течности - - - галони - {0} галон - {0} галона - {0} галона + + мегалитри + {0} мегалитар + {0} мегалитра + {0} мегалитара хектолитри @@ -7653,12 +7856,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} литар {0} литра {0} литара + {0} по литри - - мегалитри - {0} мегалитар - {0} мегалитра - {0} мегалитара + + децилитри + {0} децилитар + {0} децилитра + {0} децилитара + + + центилитри + {0} центилитар + {0} центилитра + {0} центилитара милилитри @@ -7666,11 +7876,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} милилитра {0} милилитара - - пинте - {0} пинта - {0} пинте - {0} пинти + + метричке пинте + {0} метричка пинта + {0} метричке пинте + {0} метричких пинти + + + метричка шоља + {0} метричка шоља + {0} метричке шоље + {0} метричких шоља + + + акер стопе + {0} акер стопа + {0} акер стопе + {0} акер стопа + + + галони + {0} галон + {0} галона + {0} галона + {0} по галону кварти @@ -7678,6 +7907,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кварта {0} кварата + + пинте + {0} пинта + {0} пинте + {0} пинти + + + шоље + {0} шоља + {0} шоље + {0} шоља + + + унце течности + {0} унца течности + {0} унце течности + {0} унци течности + кашике {0} кашика @@ -7690,10 +7937,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кашичице {0} кашичица + + {0}E + {0}N + {0}S + {0}W + - {0}/{1} + {0}/{1} ге сила @@ -7707,8 +7960,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rev + {0} rev + {0} rev + {0} rev + + + rad + {0} rad + {0} rad + {0} rad + + + степени + {0}° + {0}° + {0}° + - минути + лучни мин {0}′ {0}′ {0}′ @@ -7719,23 +7990,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - степени - {0}° - {0}° - {0}° - - - rad - {0} rad - {0} rad - {0} rad - - - акери - {0} ac - {0} ac - {0} ac + + квадратни километри + {0} km² + {0} km² + {0} km² хектари @@ -7743,11 +8002,37 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha + + квадратни метри + {0} m² + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + {0} mi² + + + акери + {0} ac + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² + {0} yd² квадратне стопе @@ -7760,30 +8045,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² {0} in² + {0}/in² - - квадратни километри - {0} km² - {0} km² - {0} km² - - - квадратни метри - {0} m² - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt + {0} kt L/km @@ -7791,90 +8059,132 @@ For terms of use, see http://www.unicode.org/copyright.html {0} L/km {0} L/km + + L/100km + {0} L/100km + {0} L/100km + {0} L/100km + mpg {0} mpg {0} mpg {0} mpg - - бит - {0} b - {0} b - {0} b - - - бајт - {0} B - {0} B - {0} B - - - Gb - {0} Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + {0} kb + + + бајт + {0} B + {0} B + {0} B + + + бит + {0} b + {0} b + {0} b + + + в. + {0} в + {0} в + {0} в + + + год. + {0} год + {0} год. + {0} год. + {0}/год + + + месеци + {0} мес. + {0} мес. + {0} мес. + {0}/m + + + нед. + {0} нед. + {0} нед. + {0} нед. + {0}/н + д. {0} дан {0} дана {0} дана + {0}/д - сати + сати {0} сат {0} сата {0} сати - {0}/с + {0}/с - - μs - {0} μs - {0} μs - {0} μs + + мин + {0} мин + {0} мин + {0} мин + {0}/min + + + сек + {0} сек + {0} сек + {0} сек + {0}/сек ms @@ -7882,17 +8192,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ms {0} ms - - мин - {0} мин - {0} мин - {0} мин - - - месеци - {0} мес. - {0} мес. - {0} мес. + + μs + {0} μs + {0} μs + {0} μs ns @@ -7900,25 +8204,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ns {0} ns - - сек - {0} сек - {0} сек - {0} сек - {0}/сек - - - нед. - {0} нед. - {0} нед. - {0} нед. - - - год. - {0} год - {0} год. - {0} год. - ампери {0} A @@ -7943,6 +8228,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + {0} kcal + cal {0} cal @@ -7955,24 +8246,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - џули - {0} J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ {0} kJ + + џули + {0} J + {0} J + {0} J + kWh {0} kWh @@ -7985,11 +8270,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz + {0} MHz kHz @@ -7997,23 +8282,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz + {0} Hz - - ај - {0} ај - {0} ај - {0} ај + + km + {0} km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm - {0} cm + + метри + {0} m + {0} m + {0} m + {0}/m dm @@ -8021,47 +8308,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dm {0} dm - - ft - {0} ft - {0} ft - {0} ft - - - инчи - {0} инч - {0} инча - {0} инча - - - km - {0} km - {0} km - {0} km - - - светлосне год. - {0} сг - {0} сг - {0} сг - - - метри - {0} m - {0} m - {0} m - - - µm - {0} µm - {0} µm - {0} µm - - - миље - {0} mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0} cm + {0}/cm mm @@ -8069,71 +8321,105 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mm {0} mm + + µm + {0} µm + {0} µm + {0} µm + nm {0} nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - {0} nmi - - - парсеци - {0} pc - {0} pc - {0} pc - пикометри {0} pm {0} pm {0} pm + + миље + {0} mi + {0} mi + {0} mi + јарди {0} јрд {0} јрд {0} јрд + + ft + {0} ft + {0} ft + {0} ft + {0}/ft + + + инчи + {0} инч + {0} инча + {0} инча + {0}/in + + + парсеци + {0} pc + {0} pc + {0} pc + + + светлосне год. + {0} сг + {0} сг + {0} сг + + + ај + {0} ај + {0} ај + {0} ај + + + nmi + {0} nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + {0} smi + lx {0} lx {0} lx {0} lx - - карати - {0} CD - {0} CD - {0} CD - - - грами - {0} g - {0} g - {0} g - - - kg - {0} kg - {0} kg - {0} kg - t {0} t {0} t {0} t - - µg - {0} µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0} kg + {0}/kg + + + грами + {0} g + {0} g + {0} g + {0}/g mg @@ -8141,23 +8427,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mg {0} mg - - oz - {0} унца - {0} унце - {0} унци - - - oz t - {0} oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb - {0} lb + + µg + {0} µg + {0} µg + {0} µg tn @@ -8165,35 +8439,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tn {0} tn + + lb + {0} lb + {0} lb + {0} lb + {0}/lb + + + oz + {0} унца + {0} унце + {0} унци + {0}/oz + + + oz t + {0} oz t + {0} oz t + {0} oz t + + + карати + {0} CD + {0} CD + {0} CD + GW {0} GW {0} GW {0} GW - - кс - {0} кс - {0} кс - {0} кс - - - kW - {0} kW - {0} kW - {0} kW - MW {0} MW {0} MW {0} MW - - mW - {0} mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW + {0} kW вати @@ -8201,24 +8489,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + mW + {0} mW + {0} mW + {0} mW + + + кс + {0} кс + {0} кс + {0} кс + hPa {0} hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -8231,11 +8519,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kt - {0} kt - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar + {0} mbar километри на сат @@ -8255,6 +8549,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + kn + {0} kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + {0}° + °C {0}°C @@ -8273,36 +8579,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - {0} ac ft - - - cL - {0} cL - {0} cL - {0} cL - - - cm³ - {0} cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -8314,6 +8590,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -8327,29 +8611,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - шоље - {0} ш. - {0} ш. - {0} ш. + + ft³ + {0} ft³ + {0} ft³ + {0} ft³ - - dL - {0} dL - {0} dL - {0} dL + + in³ + {0} in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML + {0} ML hL @@ -8362,12 +8640,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l {0} l + {0}/l - - ML - {0} ML - {0} ML - {0} ML + + dL + {0} dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL + {0} cL mL @@ -8375,11 +8660,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mL {0} mL - - pt - {0} pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + {0} mc + + + ac ft + {0} ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0} gal + {0}/gal qt @@ -8387,6 +8691,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} qt {0} qt + + pt + {0} pt + {0} pt + {0} pt + + + шоље + {0} ш. + {0} ш. + {0} ш. + + + fl oz + {0} fl oz + {0} fl oz + {0} fl oz + каш. {0} каш. @@ -8399,16 +8721,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кашич. {0} кашич. + + {0}E + {0}N + {0}S + {0}W + - {0}/{1} + {0}/{1} {0} G {0} G {0} G + + {0}° + {0}° + {0}° + {0}′ {0}′ @@ -8419,31 +8752,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - {0}° - - - {0} ac - {0} ac - {0} ac + + {0} km² + {0} km² + {0} km² {0} ha {0} ha {0} ha - - {0} ft² - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} km² - {0} m² {0} m² @@ -8454,17 +8772,63 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} ac + {0} ac + {0} ac + + + {0} ft² + {0} ft² + {0} ft² + + + L/100km + {0} L/100km + {0} L/100km + {0} L/100km + + + г. + {0} г + {0} г + {0} г + + + м. + {0} м + {0} м + {0} м + + + н. + {0} н + {0} н + {0} н + д. - {0} д - {0} д - {0} д + {0} д + {0} д + {0} д - сати - {0} сат - {0} сата - {0} сати + сат + {0} сат + {0} сата + {0} сати + + + мин + {0} м + {0} м + {0} м + + + сек + {0} сек + {0} сек + {0} сек ms @@ -8472,74 +8836,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ms {0} ms - - мин - {0} м - {0} м - {0} м - - - м. - {0} м - {0} м - {0} м - - - сек - {0} сек - {0} сек - {0} сек - - - н. - {0} н - {0} н - {0} н - - - г. - {0} г - {0} г - {0} г - - - cm - {0} cm - {0} cm - {0} cm - - - ft - {0} ft - {0} ft - {0} ft - - - {0} инч - {0} инча - {0} инча - km {0} km {0} km {0} km - - {0} сг - {0} сг - {0} сг - метар {0} m {0} m {0} m - - {0} миља - {0} миље - {0} миља + + cm + {0} cm + {0} cm + {0} cm mm @@ -8552,16 +8865,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} миља + {0} миље + {0} миља + {0} јрд {0} јрд {0} јрд - - g - {0} g - {0} g - {0} g + + ft + {0} ft + {0} ft + {0} ft + + + {0} инч + {0} инча + {0} инча + + + {0} сг + {0} сг + {0} сг kg @@ -8569,20 +8897,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kg {0} kg - - {0} унца - {0} унце - {0} унци + + g + {0} g + {0} g + {0} g {0} lb {0} lb {0} lb - - {0} кс - {0} кс - {0} кс + + {0} унца + {0} унце + {0} унци {0} kW @@ -8594,6 +8923,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} кс + {0} кс + {0} кс + {0} hPa {0} hPa @@ -8652,15 +8986,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l + + {0}E + {0}N + {0}S + {0}W + - h:mm + h.mm - h:mm:ss + h.mm.ss - m:ss + m.ss diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sr_Cyrl.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sr_Cyrl.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sr_Cyrl.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sr_Cyrl.xml index 7fa1c272762..5d9bc01be66 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sr_Cyrl.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sr_Cyrl.xml @@ -1,14 +1,14 @@ - - - + - + @@ -676,7 +682,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angvila Albanija Jermenija - Holandski Antili Angola Antarktik Argentina @@ -708,7 +713,7 @@ For terms of use, see http://www.unicode.org/copyright.html Belorusija Belize Kanada - Kokos (Keling) Ostrva + Kokosova (Kilingova) Ostrva Kongo - Kinšasa Kongo (DRK) Centralnoafrička Republika @@ -772,7 +777,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guam Gvineja-Bisao Gvajana - Hong Kong S. A. R. Kina + SAR Hongkong (Kina) Hong Kong Ostrva Herd i Mekdonald Honduras @@ -844,7 +849,7 @@ For terms of use, see http://www.unicode.org/copyright.html Namibija Nova Kaledonija Niger - Norfolk Ostrvo + Ostrvo Norfok Nigerija Nikaragva Holandija @@ -983,6 +988,9 @@ For terms of use, see http://www.unicode.org/copyright.html Numeričko sortiranje Sortiranje prema jačini valuta + hc + stil preloma reda + ms brojevi Vremenska zona Varijanta lokaliteta @@ -990,95 +998,105 @@ For terms of use, see http://www.unicode.org/copyright.html Privatna upotreba - arapsko-indijske cifre - produžene arapsko-indijske cifre - jermenski brojevi - mali jermenski brojevi - bengalske cifre - Tradicionalno kinesko sortiranje - budistički kalendar - kineski kalendar - koptski kalendar - dangi kalendar - devangari cifre - Redosled sortiranja u rečniku - Podrazumevani Unicode redosled sortiranja - etiopski brojevi - etiopski kalendar - etiopski amet alem kalendar - Finansijski brojevi - cifre pune širine - Pojednostavljeno kinesko sortiranje - gruzijski brojevi - gregorijanski kalendar - grčki brojevi - mali grčki brojevi - gudžaratske cifre - gurmuki cifre - kineski decimalni brojevi - pojednostavljeni kineski brojevi - pojednostavljeni kineski finansijski brojevi - tradicionalni kineski brojevi - tradicionalni kineski finansijski brojevi - hebrejski brojevi - hebrejski kalendar - Sortiraj sve - Indijski nacionalni kalendar - islamski kalendar - Islamski civilni kalendar - ISO-8601 kalendar - japanski kalendar - japanski brojevi - japanski finansijski brojevi - kmerske cifre - kanada cifre - laoške cifre - zapadne cifre - Sortiraj prvo mala slova - malajalam cifre - mongolske cifre - mijanmarske cifre - Lokalne cifre - Sortiraj akcente normalno - Sortiraj normalan redosled velikih i malih slova - Sortiraj bez obzira na velika i mala slova - Sortiraj kana simbole odvojeno - Sortiraj bez normalizacije - Sortiraj cifre pojedinačno - Sortiraj simbole - orija cifre - persijski kalendar - Sortiranje kao telefonski imenik - Fonetski redosled sortiranja - Pinjin sortiranje - Sortiraj samo osnovna slova - Sortiraj akcente/mala i velika slova/širinu/kana simbole - Reformisani redosled sortiranja - kalendar Republike Kine - rimski brojevi - mali rimski brojevi - pretraga opšte namene - Pretraga prema hangul početnom suglasniku - Sortiraj akcente - Sortiranje uz ignorisanje simbola - standardni redosled sortiranja - Sortiranje po broju crta - tamilski brojevi - tamilske cifre - telugu cifre - Sortiraj akcente/mala i velika slova/širinu - tajske cifre - tibetanske cifre - Tradicionalno sortiranje - Tradicionalni brojevi - Redosled sortiranja radikalnim crticama - Sortiraj prvo velika slova - Vai cifre - Sortiraj akcente obrnuto - Sortiraj mala i velika slova - Sortiraj kana simbole drugačije - Sortiraj Unicode normalizovano - Sortiraj cifre numerički + budistički kalendar + kineski kalendar + koptski kalendar + dangi kalendar + etiopski kalendar + etiopski amet alem kalendar + gregorijanski kalendar + hebrejski kalendar + Indijski nacionalni kalendar + islamski kalendar + Islamski civilni kalendar + ISO-8601 kalendar + japanski kalendar + persijski kalendar + kalendar Republike Kine + Sortiraj simbole + Sortiranje uz ignorisanje simbola + Sortiraj akcente normalno + Sortiraj akcente obrnuto + Sortiraj prvo mala slova + Sortiraj normalan redosled velikih i malih slova + Sortiraj prvo velika slova + Sortiraj bez obzira na velika i mala slova + Sortiraj mala i velika slova + Sortiraj kana simbole odvojeno + Sortiraj kana simbole drugačije + Tradicionalno kinesko sortiranje + Redosled sortiranja u rečniku + Podrazumevani Unicode redosled sortiranja + Pojednostavljeno kinesko sortiranje + Sortiranje kao telefonski imenik + Fonetski redosled sortiranja + Pinjin sortiranje + Reformisani redosled sortiranja + pretraga opšte namene + Pretraga prema hangul početnom suglasniku + standardni redosled sortiranja + Sortiranje po broju crta + Tradicionalno sortiranje + Redosled sortiranja radikalnim crticama + Sortiraj bez normalizacije + Sortiraj Unicode normalizovano + Sortiraj cifre pojedinačno + Sortiraj cifre numerički + Sortiraj sve + Sortiraj samo osnovna slova + Sortiraj akcente/mala i velika slova/širinu/kana simbole + Sortiraj akcente + Sortiraj akcente/mala i velika slova/širinu + 12-časovni sistem (0-11) + 12-časovni sistem (1-12) + 24-časovni sistem (0-23) + 24-časovni sistem (1-24) + loose + normal + strict + metrički + uksystem + ussystem + arapsko-indijske cifre + produžene arapsko-indijske cifre + jermenski brojevi + mali jermenski brojevi + bengalske cifre + devangari cifre + etiopski brojevi + Finansijski brojevi + cifre pune širine + gruzijski brojevi + grčki brojevi + mali grčki brojevi + gudžaratske cifre + gurmuki cifre + kineski decimalni brojevi + pojednostavljeni kineski brojevi + pojednostavljeni kineski finansijski brojevi + tradicionalni kineski brojevi + tradicionalni kineski finansijski brojevi + hebrejski brojevi + japanski brojevi + japanski finansijski brojevi + kmerske cifre + kanada cifre + laoške cifre + zapadne cifre + malajalam cifre + mongolske cifre + mijanmarske cifre + Lokalne cifre + orija cifre + rimski brojevi + mali rimski brojevi + tamilski brojevi + tamilske cifre + telugu cifre + tajske cifre + tibetanske cifre + Tradicionalni brojevi + Vai cifre BGN (BGN) @@ -1104,9 +1122,9 @@ For terms of use, see http://www.unicode.org/copyright.html - [a b c ć č d đ {dž} e f g h i j k l {lj} m n {nj} o p r s š t u v z ž] + [a b c č ć d {dž} đ e f g h i j k l {lj} m n {nj} o p r s š t u v z ž] [å q w x y] - [A B C Ć Č D {DŽ} E F G H I J K L {LJ} M N {NJ} O P Q R S Š T U V W X Y Z Ž] + [A B C Č Ć D {DŽ} E F G H I J K L {LJ} M N {NJ} O P Q R S Š T U V W X Y Z Ž] [\- ‐ – , ; \: ! ? . … ‘ ‚ “ „ ( ) \[ \] \{ \} * #] {0}… …{0} @@ -1199,30 +1217,31 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1} {0} - {1} {0} + {1} {0} - {1} {0} + {1} {0} - {1} {0} + {1} {0} d + ccc E d. y. G MMM y. G - d. MMM y. G + d. MMM y. G E, d. MMM y. G hh a HH @@ -1244,19 +1263,19 @@ For terms of use, see http://www.unicode.org/copyright.html y. G y. G M.y. G - d.M.y. G - E, d.M.y. G + d.M.y. G + E, d.M.y. G MM.y. G dd.MM.y. G MMM y. G - d. MMM y. G + d. MMM y. G E, d. MMM y. G MMMM y. G - QQQ, y. G - QQQQ y. G + QQQ, y. G + QQQQ y. G - {0} - {1} + {0} – {1} d–d @@ -1307,7 +1326,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM–MMM - dd.–dd. MMM + dd – dd. MMM dd. MMM – dd. MMM @@ -1315,25 +1334,25 @@ For terms of use, see http://www.unicode.org/copyright.html E, dd. MMM – E, dd. MMM - y–y + y – y. G - y M – M - M.y – M.y + M.y – M.y. GGGGG + M.y – M.y. GGGGG - d.M.y. – d.M.y. + d.M.y – d.M.y. GGGGG d.M.y. – d.M.y. - d.M.y. – d.M.y. + d.M.y – d.M.y. GGGGG - E, d.M.y. – E, d.M.y. - E, d.M.y. – E, d.M.y. - E, d.M.y. – E, d.M.y. + E, d.M.y – E, d.M.y. GGGGG + E, d.M.y – E, d.M.y. GGGGG + E, d.M.y – E, d.M.y. GGGGG MMM–MMM y. - MMM y. – MMM y. + MMM y – MMM y. G dd.–dd. MMM y. @@ -1347,7 +1366,7 @@ For terms of use, see http://www.unicode.org/copyright.html y-MM – MM - y-MM – y-MM + MMMM y – MMMM y. G @@ -1536,10 +1555,10 @@ For terms of use, see http://www.unicode.org/copyright.html 4. - Prvo tromesečje - Drugo tromesečje - Treće tromesečje - Četvrto tromesečje + prvi kvartal + drugi kvartal + treći kvartal + četvrti kvartal @@ -1550,39 +1569,91 @@ For terms of use, see http://www.unicode.org/copyright.html K4 - 1. - 2. - 3. - 4. + 1. + 2. + 3. + 4. - Prvo tromesečje - Drugo tromesečje - Treće tromesečje - Četvrto tromesečje + prvi kvartal + drugi kvartal + treći kvartal + četvrti kvartal + + ponoć + pre podne + podne + po podne + jutro + po pod. + veče + noć + + u ponoć a - n + u podne p + ujutru + po podne + uveče + noću + ponoć pre podne - u podne + podne po podne + jutro + popodne + veče + noć + + + + + ponoć + pre podne + podne + po podne + jutro + popodne + veče + noć + + + ponoć + pre podne + podne + po podne + jutro + popodne + veče + noć + + + ponoć + pre podne + podne + po podne + jutro + popodne + veče + noć - Pre nove ere - p. n. e. - Nove ere - n. e. + pre nove ere + p. n. e. + nove ere + n. e. p. n. e. @@ -1640,61 +1711,65 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1} {0} - {1} {0} + {1} {0} - {1} {0} + {1} {0} - {1} {0} + {1} {0} d - E + E E d. - E, h:mm a - E, HH:mm - E, h:mm:ss a - E, HH:mm:ss - y. G - MMM y. G - d. MMM y. G - E, d. MMM y. G - hh a + E, h.mm a + E, HH.mm + E, h.mm.ss a + E, HH.mm.ss + y. G + MMM y. G + d. MMM y. G + E, d. MMM y. G + h a HH hh.mm a HH.mm hh.mm.ss a HH.mm.ss + h.mm.ss a v + HH.mm.ss v + h.mm a v + HH.mm v L d/M - E, M-d + E, d.M. MM-dd LLL d. MMM dd.MMM E d. MMM d. MMMM - E d. MMMM + E, d. MMMM mm.ss y. M.y. - d.M.y. + d.M.y. E, d.M.y. MM.y. dd.MM.y. MMM y. - d. MMM y. + d. MMM y. E, d. MMM y. MMMM y. QQQ. y @@ -1704,7 +1779,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} {1} - {0} - {1} + {0} – {1} d–d @@ -1766,8 +1841,8 @@ For terms of use, see http://www.unicode.org/copyright.html y–y - y M – M - y M – M + M – M, y + M.y. – M.y. d.M.y. – d.M.y. @@ -1794,8 +1869,8 @@ For terms of use, see http://www.unicode.org/copyright.html E, dd. MMM y. – E, dd. MMM y. - y-MM – MM - y-MM – y-MM + MMMM – MMMM y. + MMMM y – MMMM y. @@ -1854,7 +1929,7 @@ For terms of use, see http://www.unicode.org/copyright.html Muh. Saf. Reb. 1 - Reb 2 + Reb. 2 Džum. 1 Džum. 2 Redž. @@ -1905,238 +1980,238 @@ For terms of use, see http://www.unicode.org/copyright.html - Taika (645-650) - Hakuči (650-671) - Hakuho (672-686) - Šučo (686-701) - Taiho (701-704) - Keiun (704-708) - Vado (708-715) - Reiki (715-717) - Joro (717-724) - Jinki (724-729) - Tempio (729-749) + Taika (645–650) + Hakuči (650–671) + Hakuho (672–686) + Šučo (686–701) + Taiho (701–704) + Keiun (704–708) + Vado (708–715) + Reiki (715–717) + Joro (717–724) + Jinki (724–729) + Tempio (729–749) Tempio-kampo (749-749) Tempio-šoho (749-757) Tempio-hođi (757-765) Tempo-đingo (765-767) Đingo-keiun (767-770) - Hoki (770-780) + Hoki (770–780) Ten-o (781-782) - Enrjaku (782-806) - Daido (806-810) - Konin (810-824) - Tenčo (824-834) - Šova (834-848) - Kajo (848-851) - Ninju (851-854) - Saiko (854-857) - Tenan (857-859) - Jogan (859-877) - Genkei (877-885) - Ninja (885-889) - Kampjo (889-898) - Šotai (898-901) - Enđi (901-923) - Enčo (923-931) - Šohei (931-938) - Tengjo (938-947) - Tenriaku (947-957) - Tentoku (957-961) - Ova (961-964) - Koho (964-968) - Ana (968-970) - Tenroku (970-973) + Enrjaku (782–806) + Daido (806–810) + Konin (810–824) + Tenčo (824–834) + Šova (834–848) + Kajo (848–851) + Ninju (851–854) + Saiko (854–857) + Tenan (857–859) + Jogan (859–877) + Genkei (877–885) + Ninja (885–889) + Kampjo (889–898) + Šotai (898–901) + Enđi (901–923) + Enčo (923–931) + Šohei (931–938) + Tengjo (938–947) + Tenriaku (947–957) + Tentoku (957–961) + Ova (961–964) + Koho (964–968) + Ana (968–970) + Tenroku (970–973) Ten-en (973-976) - Jogen (976-978) - Tengen (978-983) - Eikan (983-985) - Kana (985-987) + Jogen (976–978) + Tengen (978–983) + Eikan (983–985) + Kana (985–987) Ei-en (987-989) - Eiso (989-990) - Šorjaku (990-995) - Čotoku (995-999) - Čoho (999-1004) - Kanko (1004-1012) - Čova (1012-1017) - Kanin (1017-1021) - Đian (1021-1024) - Manju (1024-1028) - Čogen (1028-1037) - Čorjaku (1037-1040) - Čokju (1040-1044) - Kantoku (1044-1046) - Eišo (1046-1053) - Tenđi (1053-1058) - Kohei (1058-1065) - Đirjaku (1065-1069) - Enkju (1069-1074) - Šoho (1074-1077) - Šorjaku (1077-1081) - Eišo (1081-1084) - Otoku (1084-1087) - Kanđi (1087-1094) - Kaho (1094-1096) - Eičo (1096-1097) - Šotoku (1097-1099) - Kova (1099-1104) - Čođi (1104-1106) - Kašo (1106-1108) - Tenin (1108-1110) + Eiso (989–990) + Šorjaku (990–995) + Čotoku (995–999) + Čoho (999–1004) + Kanko (1004–1012) + Čova (1012–1017) + Kanin (1017–1021) + Đian (1021–1024) + Manju (1024–1028) + Čogen (1028–1037) + Čorjaku (1037–1040) + Čokju (1040–1044) + Kantoku (1044–1046) + Eišo (1046–1053) + Tenđi (1053–1058) + Kohei (1058–1065) + Đirjaku (1065–1069) + Enkju (1069–1074) + Šoho (1074–1077) + Šorjaku (1077–1081) + Eišo (1081–1084) + Otoku (1084–1087) + Kanđi (1087–1094) + Kaho (1094–1096) + Eičo (1096–1097) + Šotoku (1097–1099) + Kova (1099–1104) + Čođi (1104–1106) + Kašo (1106–1108) + Tenin (1108–1110) Ten-ei (1110-1113) - Eikju (1113-1118) + Eikju (1113–1118) Đen-ei (1118-1120) - Hoan (1120-1124) - Tenđi (1124-1126) - Daiđi (1126-1131) - Tenšo (1131-1132) - Čošao (1132-1135) - Hoen (1135-1141) - Eiđi (1141-1142) - Kođi (1142-1144) - Tenjo (1144-1145) - Kjuan (1145-1151) - Ninpei (1151-1154) - Kjuju (1154-1156) - Hogen (1156-1159) - Heiđi (1159-1160) - Eirjaku (1160-1161) - Oho (1161-1163) - Čokan (1163-1165) - Eiman (1165-1166) + Hoan (1120–1124) + Tenđi (1124–1126) + Daiđi (1126–1131) + Tenšo (1131–1132) + Čošao (1132–1135) + Hoen (1135–1141) + Eiđi (1141–1142) + Kođi (1142–1144) + Tenjo (1144–1145) + Kjuan (1145–1151) + Ninpei (1151–1154) + Kjuju (1154–1156) + Hogen (1156–1159) + Heiđi (1159–1160) + Eirjaku (1160–1161) + Oho (1161–1163) + Čokan (1163–1165) + Eiman (1165–1166) Nin-an (1166-1169) - Kao (1169-1171) - Šoan (1171-1175) - Angen (1175-1177) - Đišo (1177-1181) - Jova (1181-1182) - Đuei (1182-1184) - Genrjuku (1184-1185) - Bunđi (1185-1190) - Kenkju (1190-1199) - Šođi (1199-1201) - Kenin (1201-1204) - Genkju (1204-1206) + Kao (1169–1171) + Šoan (1171–1175) + Angen (1175–1177) + Đišo (1177–1181) + Jova (1181–1182) + Đuei (1182–1184) + Genrjuku (1184–1185) + Bunđi (1185–1190) + Kenkju (1190–1199) + Šođi (1199–1201) + Kenin (1201–1204) + Genkju (1204–1206) Ken-ei (1206-1207) - Šogen (1207-1211) - Kenrjaku (1211-1213) - Kenpo (1213-1219) - Šokju (1219-1222) - Đu (1222-1224) - Đenin (1224-1225) - Karoku (1225-1227) - Antei (1227-1229) - Kanki (1229-1232) - Đoei (1232-1233) - Tempuku (1233-1234) - Bunrjaku (1234-1235) - Katei (1235-1238) - Rjakunin (1238-1239) + Šogen (1207–1211) + Kenrjaku (1211–1213) + Kenpo (1213–1219) + Šokju (1219–1222) + Đu (1222–1224) + Đenin (1224–1225) + Karoku (1225–1227) + Antei (1227–1229) + Kanki (1229–1232) + Đoei (1232–1233) + Tempuku (1233–1234) + Bunrjaku (1234–1235) + Katei (1235–1238) + Rjakunin (1238–1239) En-o (1239-1240) - Ninji (1240-1243) - Kangen (1243-1247) - Hođi (1247-1249) - Kenčo (1249-1256) - Kogen (1256-1257) - Šoka (1257-1259) - Šogen (1259-1260) + Ninji (1240–1243) + Kangen (1243–1247) + Hođi (1247–1249) + Kenčo (1249–1256) + Kogen (1256–1257) + Šoka (1257–1259) + Šogen (1259–1260) Bun-o (1260-1261) - Kočo (1261-1264) + Kočo (1261–1264) Bun-ei (1264-1275) - Kenđi (1275-1278) - Koan (1278-1288) - Šu (1288-1293) - Einin (1293-1299) - Šoan (1299-1302) - Kengen (1302-1303) - Kagen (1303-1306) - Tokuđi (1306-1308) - Enkei (1308-1311) - Očo (1311-1312) - Šova (1312-1317) - Bunpo (1317-1319) - Đeno (1319-1321) - Đenkjo (1321-1324) - Šoču (1324-1326) - Kareki (1326-1329) - Gentoku (1329-1331) - Genko (1331-1334) - Kemu (1334-1336) - Engen (1336-1340) - Kokoku (1340-1346) - Šohei (1346-1370) - Kentoku (1370-1372) - Buču (1372-1375) - Tenju (1375-1379) - Korjaku (1379-1381) - Kova (1381-1384) - Genču (1384-1392) - Meitoku (1384-1387) - Kakei (1387-1389) - Ku (1389-1390) - Meitoku (1390-1394) - Oei (1394-1428) - Šočo (1428-1429) - Eikjo (1429-1441) - Kakitsu (1441-1444) + Kenđi (1275–1278) + Koan (1278–1288) + Šu (1288–1293) + Einin (1293–1299) + Šoan (1299–1302) + Kengen (1302–1303) + Kagen (1303–1306) + Tokuđi (1306–1308) + Enkei (1308–1311) + Očo (1311–1312) + Šova (1312–1317) + Bunpo (1317–1319) + Đeno (1319–1321) + Đenkjo (1321–1324) + Šoču (1324–1326) + Kareki (1326–1329) + Gentoku (1329–1331) + Genko (1331–1334) + Kemu (1334–1336) + Engen (1336–1340) + Kokoku (1340–1346) + Šohei (1346–1370) + Kentoku (1370–1372) + Buču (1372–1375) + Tenju (1375–1379) + Korjaku (1379–1381) + Kova (1381–1384) + Genču (1384–1392) + Meitoku (1384–1387) + Kakei (1387–1389) + Ku (1389–1390) + Meitoku (1390–1394) + Oei (1394–1428) + Šočo (1428–1429) + Eikjo (1429–1441) + Kakitsu (1441–1444) Bun-an (1444-1449) - Hotoku (1449-1452) - Kjotoku (1452-1455) - Košo (1455-1457) - Čoroku (1457-1460) - Kanšo (1460-1466) - Bunšo (1466-1467) - Onin (1467-1469) - Bunmei (1469-1487) - Čokjo (1487-1489) - Entoku (1489-1492) - Meio (1492-1501) - Bunki (1501-1504) - Eišo (1504-1521) - Taiei (1521-1528) - Kjoroku (1528-1532) - Tenmon (1532-1555) - Kođi (1555-1558) - Eiroku (1558-1570) - Genki (1570-1573) - Tenšo (1573-1592) - Bunroku (1592-1596) - Keičo (1596-1615) - Genva (1615-1624) + Hotoku (1449–1452) + Kjotoku (1452–1455) + Košo (1455–1457) + Čoroku (1457–1460) + Kanšo (1460–1466) + Bunšo (1466–1467) + Onin (1467–1469) + Bunmei (1469–1487) + Čokjo (1487–1489) + Entoku (1489–1492) + Meio (1492–1501) + Bunki (1501–1504) + Eišo (1504–1521) + Taiei (1521–1528) + Kjoroku (1528–1532) + Tenmon (1532–1555) + Kođi (1555–1558) + Eiroku (1558–1570) + Genki (1570–1573) + Tenšo (1573–1592) + Bunroku (1592–1596) + Keičo (1596–1615) + Genva (1615–1624) Kan-ei (1624-1644) - Šoho (1644-1648) - Keian (1648-1652) - Šu (1652-1655) - Meirjaku (1655-1658) - Manji (1658-1661) - Kanbun (1661-1673) - Enpo (1673-1681) - Tenva (1681-1684) - Jokjo (1684-1688) - Genroku (1688-1704) - Hoei (1704-1711) - Šotoku (1711-1716) - Kjoho (1716-1736) - Genbun (1736-1741) - Kanpo (1741-1744) - Enkjo (1744-1748) + Šoho (1644–1648) + Keian (1648–1652) + Šu (1652–1655) + Meirjaku (1655–1658) + Manji (1658–1661) + Kanbun (1661–1673) + Enpo (1673–1681) + Tenva (1681–1684) + Jokjo (1684–1688) + Genroku (1688–1704) + Hoei (1704–1711) + Šotoku (1711–1716) + Kjoho (1716–1736) + Genbun (1736–1741) + Kanpo (1741–1744) + Enkjo (1744–1748) Kan-en (1748-1751) - Horjaku (1751-1764) - Meiva (1764-1772) + Horjaku (1751–1764) + Meiva (1764–1772) An-ei (1772-1781) - Tenmei (1781-1789) - Kansei (1789-1801) - Kjova (1801-1804) - Bunka (1804-1818) - Bunsei (1818-1830) - Tenpo (1830-1844) - Koka (1844-1848) - Kaei (1848-1854) - Ansei (1854-1860) + Tenmei (1781–1789) + Kansei (1789–1801) + Kjova (1801–1804) + Bunka (1804–1818) + Bunsei (1818–1830) + Tenpo (1830–1844) + Koka (1844–1848) + Kaei (1848–1854) + Ansei (1854–1860) Man-en (1860-1861) - Bunkju (1861-1864) - Genđi (1864-1865) - Keiko (1865-1868) + Bunkju (1861–1864) + Genđi (1864–1865) + Keiko (1865–1868) Meiđi Taišo Šova @@ -2248,6 +2323,9 @@ For terms of use, see http://www.unicode.org/copyright.html kvartal + prošlog kvartala + ovog kvartala + sledećeg kvartala za {0} kvartal za {0} kvartala @@ -2260,29 +2338,35 @@ For terms of use, see http://www.unicode.org/copyright.html - kvartal + kv. + prošlog kvartala + ovog kvartala + sledećeg kvartala - za {0} kvartala - za {0} kvartala - za {0} kvartala + za {0} kv. + za {0} kv. + za {0} kv. - pre {0} kvartala - pre {0} kvartala - pre {0} kvartala + pre {0} kv. + pre {0} kv. + pre {0} kv. - kvartal + kv. + prošlog kvartala + ovog kvartala + sledećeg kvartala - za {0} kvartala - za {0} kvartala - za {0} kvartala + za {0} kv. + za {0} kv. + za {0} kv. - pre {0} kvartala - pre {0} kvartala - pre {0} kvartala + pre {0} kv. + pre {0} kv. + pre {0} kv. @@ -2442,9 +2526,9 @@ For terms of use, see http://www.unicode.org/copyright.html sledećeg pon - prošlog pon - u pon - sledećeg pon + prošlog pon + u pon + sledećeg pon prošlog utorka @@ -2769,7 +2853,7 @@ For terms of use, see http://www.unicode.org/copyright.html Broken Hil - Kurie + Kari Melburn @@ -3130,7 +3214,7 @@ For terms of use, see http://www.unicode.org/copyright.html - britansko letnje vreme + Britanija letnje računanje vremena London @@ -3223,7 +3307,7 @@ For terms of use, see http://www.unicode.org/copyright.html - irsko letnje vreme + Irska standardno vreme Dablin @@ -3521,6 +3605,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Morzbi + + Buganvil + Manila @@ -3605,6 +3692,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkuck + + Čita + Jakutsk @@ -3623,6 +3713,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednjekolimsk + Kamčatka @@ -3687,7 +3780,7 @@ For terms of use, see http://www.unicode.org/copyright.html Salvador - Louer Prinsiz Kvorter + Louer Prinsiz Kvorter Damask @@ -3938,9 +4031,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Aljaško vreme - Aljaško standardno vreme - Aljaško letnje vreme + Aljaska + Aljaska, standardno vreme + Aljaska, letnje računanje vremena @@ -4036,9 +4129,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Armenija vreme - Armenija standardno vreme - Armenija letnje računanje vremena + Jermenija vreme + Jermenija standardno vreme + Jermenija letnje računanje vremena @@ -4121,9 +4214,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Zelenirtsko vreme - Zelenirtsko standardno vreme - Zelenortsko letnje računanje vremena + Zelenortska Ostrva vreme + Zelenortska Ostrva standardno vreme + Zelenortska Ostrva letnje računanje vremena @@ -4161,7 +4254,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Božićna ostrva vreme + Božićno ostrvo vreme @@ -4289,7 +4382,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Gambijer vreme + Gambije vreme @@ -4468,7 +4561,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Line Ostrva vreme + Ostrva Lajn vreme @@ -4487,7 +4580,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Makverijsko vreme + Ostrvo Makveri vreme @@ -4686,7 +4779,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Ponpei vreme + Ponpej vreme @@ -4749,7 +4842,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Surinam + Surinam vreme @@ -4892,7 +4985,7 @@ For terms of use, see http://www.unicode.org/copyright.html NaN - : + . @@ -5004,6 +5097,46 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤;(#,##0.00 ¤) + + + 0 hilj'.' ¤ + 0 hilj'.' ¤ + 0 hilj'.' ¤ + 00 hilj'.' ¤ + 00 hilj'.' ¤ + 00 hilj'.' ¤ + 000 hilj'.' ¤ + 000 hilj'.' ¤ + 000 hilj'.' ¤ + 0 mil'.' ¤ + 0 mil'.' ¤ + 0 mil'.' ¤ + 00 mil'.' ¤ + 00 mil'.' ¤ + 00 mil'.' ¤ + 000 mil'.' ¤ + 000 mil'.' ¤ + 000 mil'.' ¤ + 0 mlrd'.' ¤ + 0 mlrd'.' ¤ + 0 mlrd'.' ¤ + 00 mlrd'.' ¤ + 00 mlrd'.' ¤ + 00 mlrd'.' ¤ + 000 mlrd'.' ¤ + 000 mlrd'.' ¤ + 000 mlrd'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 0 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 00 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + 000 bil'.' ¤ + + {0} {1} {0} {1} {0} {1} @@ -5067,6 +5200,7 @@ For terms of use, see http://www.unicode.org/copyright.html angolske kvanze angolskih kvanzi AOA + Kz Angolijska kvanza (1977–1990) @@ -5127,7 +5261,7 @@ For terms of use, see http://www.unicode.org/copyright.html Australijski dolar australijski dolar - Australijska dolara + australijska dolara australijskih dolara AUD $ @@ -5164,6 +5298,7 @@ For terms of use, see http://www.unicode.org/copyright.html bosansko-hercegovačke konvertibilne marke bosansko-hercegovačkih konvertibilnih maraka KM + KM Bosansko-hercegovački novi dinar @@ -5261,11 +5396,12 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Bolivijski Boliviano - bolivijski boliviano - bolivijska boliviana - bolivijskih boliviana + Bolivijski bolivijano + bolivijski bolivijano + bolivijska bolivijana + bolivijskih bolivijana BOB + Bs Stari bolivijski bolivijano @@ -5356,6 +5492,7 @@ For terms of use, see http://www.unicode.org/copyright.html bocvanske pule bocvanskih pula BWP + P Beloruska nova rublja (1994–1999) @@ -5369,6 +5506,7 @@ For terms of use, see http://www.unicode.org/copyright.html beloruske rublje beloruskih rublji [BYR] + r. Beliski dolar @@ -5388,9 +5526,9 @@ For terms of use, see http://www.unicode.org/copyright.html Kongoanski franak - kongolski franak - kongolska franka - kongolskih franaka + kongoanski franak + kongoanska franka + kongoanskih franaka CDF @@ -5486,6 +5624,7 @@ For terms of use, see http://www.unicode.org/copyright.html kubanska konvertibilna pezosa kubanskih konvertibilnih pezosa CUC + $ Kubanski pezos @@ -5514,6 +5653,7 @@ For terms of use, see http://www.unicode.org/copyright.html češke krune čeških kruna CZK + Istočno-nemačka marka @@ -5540,6 +5680,7 @@ For terms of use, see http://www.unicode.org/copyright.html danske krune danskih kruna DKK + kr Dominikanski pezos @@ -5580,6 +5721,7 @@ For terms of use, see http://www.unicode.org/copyright.html egipatske funte egipatskih funti EGP + Eritrejska nakfa @@ -5607,10 +5749,10 @@ For terms of use, see http://www.unicode.org/copyright.html španske pezete - Etiopijski bir - etiopijski bir - etiopijska bira - etiopijskih bira + Etiopski bir + etiopski bir + etiopska bira + etiopskih bira ETB @@ -5619,6 +5761,7 @@ For terms of use, see http://www.unicode.org/copyright.html evra evra + Finska marka @@ -5640,6 +5783,7 @@ For terms of use, see http://www.unicode.org/copyright.html foklandske funte foklandskih funti FKP + £ Francuski franak @@ -5653,6 +5797,7 @@ For terms of use, see http://www.unicode.org/copyright.html britanske funte britanskih funti £ + £ Gruzijski kupon larit @@ -5666,6 +5811,7 @@ For terms of use, see http://www.unicode.org/copyright.html gruzijska larija gruzijskih larija GEL + Ganski cedi (1979–2007) @@ -5692,7 +5838,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gambijski dalasi gambijski dalasi gambijska dalasa - gambijskih dalasa + gambijskih dalasija GMD @@ -5701,6 +5847,7 @@ For terms of use, see http://www.unicode.org/copyright.html gvinejska franka gvinejskih franaka GNF + FG Gvinejski sili @@ -5726,6 +5873,7 @@ For terms of use, see http://www.unicode.org/copyright.html gvatemalska kecala gvatemalskih kecala GTQ + Q Portugalska gvineja eskudo @@ -5757,10 +5905,11 @@ For terms of use, see http://www.unicode.org/copyright.html Honduraška lempira - honduraški lempir - honduraška lempira + honduraška lempira + honduraške lempire honduraških lempira HNL + L Hrvatski dinar @@ -5774,6 +5923,7 @@ For terms of use, see http://www.unicode.org/copyright.html hrvatske kune hrvatskih kuna HRK + kn Haićanski gurd @@ -5788,6 +5938,7 @@ For terms of use, see http://www.unicode.org/copyright.html mađarske forinte mađarskih forinti HUF + Ft Indonežanska rupija @@ -5795,6 +5946,7 @@ For terms of use, see http://www.unicode.org/copyright.html indonežanske rupije indonežanskih rupija IDR + Rp Irska funta @@ -5856,6 +6008,7 @@ For terms of use, see http://www.unicode.org/copyright.html islandske krune islandskih kruna ISK + kr Italijanska lira @@ -5865,9 +6018,9 @@ For terms of use, see http://www.unicode.org/copyright.html Jamajčanski dolar - jamajkanski dolar - jamajkanska dolara - jamajkanskix dolara + jamajčanski dolar + jamajčanska dolara + jamajčanskix dolara JMD $ @@ -5914,6 +6067,7 @@ For terms of use, see http://www.unicode.org/copyright.html komorska franka komorskih franaka KMF + CF Severnokorejski von @@ -5921,6 +6075,7 @@ For terms of use, see http://www.unicode.org/copyright.html severnokorejska vona severnokorejskih vona KPW + Južnokorejski hvan @@ -5960,8 +6115,8 @@ For terms of use, see http://www.unicode.org/copyright.html Kazahstanski tenge kazahstanski tenge - kazahstanske tenge - kazahstanskih tengi + kazahstanska tengea + kazahstanskih tengea KZT @@ -5979,6 +6134,7 @@ For terms of use, see http://www.unicode.org/copyright.html libanske funte libanskih funti LBP + Šrilankanska rupija @@ -5986,6 +6142,7 @@ For terms of use, see http://www.unicode.org/copyright.html šrilankanske rupije šrilankanskih rupija LKR + Rs Liberijski dolar @@ -6054,8 +6211,8 @@ For terms of use, see http://www.unicode.org/copyright.html Marokanski dirham - marokanska dirhama - marokanske dirhame + marokanski dirham + marokanska dirhama marokanskih dirhama MAD @@ -6085,11 +6242,12 @@ For terms of use, see http://www.unicode.org/copyright.html MDL - Malagasijski ariari + Madagaskarski ariari malagasijski ariari malagasijska ariarija malagasijskih ariarija MGA + Ar Malagasijski franak @@ -6122,6 +6280,7 @@ For terms of use, see http://www.unicode.org/copyright.html mjanmarska kjata mjanmarskih kjata MMK + K Mongolski tugrik @@ -6132,10 +6291,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Makaniška pataka - makaneška pataka - makaneške patake - makaneških pataka + Makaoska pataka + makaoska pataka + makaoske patake + makaoskih pataka MOP @@ -6163,6 +6322,7 @@ For terms of use, see http://www.unicode.org/copyright.html mauricijske rupije mauricijskih rupija MUR + Rs Maldivska rufija @@ -6199,11 +6359,12 @@ For terms of use, see http://www.unicode.org/copyright.html meksičkih unidads de inverziona - Malezijski ringgit - malezijski ringgit - malezijska ringgita - malezijskih ringgita + Malezijski ringit + malezijski ringit + malezijska ringita + malezijskih ringita MYR + RM Mozambijski eskudo @@ -6218,10 +6379,10 @@ For terms of use, see http://www.unicode.org/copyright.html starih mozambijskih metikala - Mozambijski metikal - mozambijski metikal - mozambijska metikala - mozambijskih metikala + Mozambički metikal + mozambički metikal + mozambička metikala + mozambičkih metikala MZN @@ -6252,6 +6413,7 @@ For terms of use, see http://www.unicode.org/copyright.html nikaragvanske zlatne kordobe nikaragvanskih zlatnih kordoba NIO + C$ Holandski gulden @@ -6265,6 +6427,7 @@ For terms of use, see http://www.unicode.org/copyright.html norveške krune norveških kruna NOK + kr Nepalska rupija @@ -6272,6 +6435,7 @@ For terms of use, see http://www.unicode.org/copyright.html nepalske rupije nepalskih rupija NPR + Rs Novozelandski dolar @@ -6302,10 +6466,10 @@ For terms of use, see http://www.unicode.org/copyright.html peruvijskih intija - Peruanski nuevo sol - peruanski nuevo sol - peruanska nuevo sola - peruanskih nuevo sola + Peruanski novi sol + peruanski novi sol + peruanska nova sola + peruanskih novih sola PEN @@ -6335,6 +6499,7 @@ For terms of use, see http://www.unicode.org/copyright.html pakistanske rupije pakistanskih rupija PKR + Rs Poljski zlot @@ -6342,6 +6507,7 @@ For terms of use, see http://www.unicode.org/copyright.html poljska zlota poljskih zlota PLN + Poljski zloti (1950–1995) @@ -6402,6 +6568,7 @@ For terms of use, see http://www.unicode.org/copyright.html ruske rublje ruskih rublji RUB + rub Ruska rublja (1991–1998) @@ -6415,6 +6582,7 @@ For terms of use, see http://www.unicode.org/copyright.html ruandska franka ruandskih franaka RWF + RF Saudijski rijal @@ -6463,6 +6631,7 @@ For terms of use, see http://www.unicode.org/copyright.html švedske krune švedskih kruna SEK + kr Singapurski dolar @@ -6478,6 +6647,7 @@ For terms of use, see http://www.unicode.org/copyright.html sv. jelenske funte sv. jelenskih funti SHP + £ Slovenački tolar @@ -6492,7 +6662,7 @@ For terms of use, see http://www.unicode.org/copyright.html slovačkih kruna - Sijera-leonški leone + Sijeraleonski leone sijeraleonski leone sijeraleonska leona sijeraleonskih leona @@ -6528,11 +6698,12 @@ For terms of use, see http://www.unicode.org/copyright.html £ - Sao Tome i Principe dobra - sao tome i principe dobar - sao tome i principe dobra - sao tome i principe dobra + Saotomska dobra + saotomska dobra + saotomske dobre + saotomskih dobri STD + Db Sovjetska rublja @@ -6552,12 +6723,13 @@ For terms of use, see http://www.unicode.org/copyright.html sirijske funte sirijskih funti SYP + £ - Svazi lilangeni - svazi emalangen - svazi emalangena - svazi emalangena + Svazilendski lilangeni + svazilendski lilangeni + svazilendska lilangenija + svazilendskih lilangenija SZL @@ -6566,6 +6738,7 @@ For terms of use, see http://www.unicode.org/copyright.html tajlandska bata tajlandskih bata THB + ฿ Tadžihistanska rublja @@ -6601,10 +6774,10 @@ For terms of use, see http://www.unicode.org/copyright.html TND - Tongonška Panga - tongaška panga - tongaške pange - tongaških panga + Tonganska panga + tonganska panga + tonganske pange + tonganskih pangi TOP @@ -6626,6 +6799,7 @@ For terms of use, see http://www.unicode.org/copyright.html turskih lira TRY + TL Trinidad-tobagoški dolar @@ -6651,10 +6825,10 @@ For terms of use, see http://www.unicode.org/copyright.html TZS - Ukrajinska grivna + Ukrajinska hrivnja ukrajinska hrivnja ukrajinske hrivnje - ukrajinskih grivni + ukrajinskih hrivnji UAH @@ -6736,6 +6910,7 @@ For terms of use, see http://www.unicode.org/copyright.html venecuelanska bolivara venecuelanskih bolivara VEF + Bs Vijetnamski dong @@ -6811,9 +6986,10 @@ For terms of use, see http://www.unicode.org/copyright.html Istočnokaripski dolar istočnokaripski dolar - istočno-karipska dolara - istočno-karipskix dolara + istočnokaripska dolara + istočnokaripskix dolara EC$ + $ Posebna crtaća prava @@ -6878,10 +7054,10 @@ For terms of use, see http://www.unicode.org/copyright.html kodova testirane valute - Nepoznata ili nevažeća valuta - nepoznata ili nevažeća valuta - nepoznate ili nevažeće valute - nepoznatih ili nevažećih valuta + Nepoznata valuta + nepoznata jedinica valute + nepoznate valute + nepoznatih valuta Jemenski dinar @@ -6927,11 +7103,12 @@ For terms of use, see http://www.unicode.org/copyright.html južnoafričkih randa (finansijskih) - Južno-afrički rand - južno-afrički rand - južno-afrička randa - južno-afričkih randa + Južnoafrički rand + južnoafrički rand + južnoafrička randa + južnoafričkih randa ZAR + R Zambijska kvača (1968–2012) @@ -6945,6 +7122,7 @@ For terms of use, see http://www.unicode.org/copyright.html zambijske kvače zambijskih kvača ZMW + ZK Zairski novi zair @@ -6985,7 +7163,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0}/{1} + {0}/{1} ge sila @@ -6999,23 +7177,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metra u sekundi na kvadrat {0} metara u sekundi na kvadrat - - minuti - {0} minut - {0} minuta - {0} minuta - - - sekunde - {0} sekunda - {0} sekunde - {0} sekundi - - - stepeni - {0} stepen - {0} stepena - {0} stepeni + + obrtaj + {0} obrtaj + {0} obrtaja + {0} obrtaja radijani @@ -7023,11 +7189,29 @@ For terms of use, see http://www.unicode.org/copyright.html {0} radijana {0} radijana - - akeri - {0} aker - {0} akera - {0} akera + + stepeni + {0} stepen + {0} stepena + {0} stepeni + + + lučni minuti + {0} lučni minut + {0} lučna minuta + {0} lučnih minuta + + + lučne sekunde + {0} lučna sekunda + {0} lučne sekunde + {0} lučnih sekundi + + + kvadratni kilometri + {0} kvadratni kilometar + {0} kvadratna kilometra + {0} kvadratnih kilometara hektari @@ -7035,11 +7219,37 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hektara {0} hektara + + kvadratni metri + {0} kvadratni metar + {0} kvadratna metra + {0} kvadratnih metara + {0}/m² + kvadratni centimetri {0} kvadratni centimetar {0} kvadratna centimetra {0} kvadratnih centimetara + {0}/cm² + + + kvadratne milje + {0} kvadratna milja + {0} kvadratne milje + {0} kvadratnih milja + + + akeri + {0} aker + {0} akera + {0} akera + + + kvadratni jardi + {0} kvadratni jard + {0} kvadratna jarda + {0} kvadratnih jardi kvadratne stope @@ -7052,30 +7262,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kvadratni inč {0} kvadratna inča {0} kvadratnih inča + {0}/in² - - kvadratni kilometri - {0} kvadratni kilometar - {0} kvadratna kilometra - {0} kvadratnih kilometara - - - kvadratni metri - {0} kvadratni metar - {0} kvadratna metra - {0} kvadratnih metara - - - kvadratne milje - {0} kvadratna milja - {0} kvadratne milje - {0} kvadratnih milja - - - kvadratni jardi - {0} kvadratni jard - {0} kvadratna jarda - {0} kvadratnih jardi + + karati + {0} karat + {0} karata + {0} karata litri po kilometru @@ -7083,90 +7276,132 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litra po kilometru {0} litara po kilometru + + L/100km + {0} litar na 100 kilometara + {0} litra na 100 kilometara + {0} litara na 100 kilometara + milja po galonu {0} milja po galonu {0} milje po galonu {0} milja po galonu - - bitovi - {0} bit - {0} bita - {0} bitova - - - bajtovi - {0} bajt - {0} bajta - {0} bajtova - - - gigabitovi - {0} gigabit - {0} gigabita - {0} gigabita - - - gigabajti - {0} gigabajt - {0} gigabajta - {0} gigabajta - - - kilobitovi - {0} kilobit - {0} kilobita - {0} kilobita - - - kilobajti - {0} kilobajt - {0} kilobajta - {0} kilobajta - - - megabitovi - {0} megabit - {0} megabita - {0} megabita - - - megabajti - {0} megabajt - {0} megabajta - {0} megabajta - - - terabitovi - {0} terabit - {0} terabita - {0} terabita - terabajti {0} terabajt {0} terabajta {0} terabajta + + terabitovi + {0} terabit + {0} terabita + {0} terabita + + + gigabajti + {0} gigabajt + {0} gigabajta + {0} gigabajta + + + gigabitovi + {0} gigabit + {0} gigabita + {0} gigabita + + + megabajti + {0} megabajt + {0} megabajta + {0} megabajta + + + megabitovi + {0} megabit + {0} megabita + {0} megabita + + + kilobajti + {0} kilobajt + {0} kilobajta + {0} kilobajta + + + kilobitovi + {0} kilobit + {0} kilobita + {0} kilobita + + + bajtovi + {0} bajt + {0} bajta + {0} bajtova + + + bitovi + {0} bit + {0} bita + {0} bitova + + + vekovi + {0} vek + {0} veka + {0} vekova + + + godine + {0} godina + {0} godine + {0} godina + {0} godišnje + + + meseci + {0} mesec + {0} meseca + {0} meseci + {0} mesečno + + + nedelje + {0} nedelja + {0} nedelje + {0} nedelja + {0} nedeljno + dani {0} dan {0} dana {0} dana + {0}/dnevno sati {0} sat {0} sata {0} sati - {0}/sat + {0}/sat - - mikrosekunde - {0} mikrosekunda - {0} mikrosekunde - {0} mikrosekundi + + minuti + {0} minut + {0} minuta + {0} minuta + {0} u minutu + + + sekunde + {0} sekunda + {0} sekunde + {0} sekundi + {0}/sek milisekunde @@ -7174,17 +7409,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milisekunde {0} milisekundi - - minuti - {0} minut - {0} minuta - {0} minuta - - - meseci - {0} mesec - {0} meseca - {0} meseci + + mikrosekunde + {0} mikrosekunda + {0} mikrosekunde + {0} mikrosekundi nanosekunde @@ -7192,25 +7421,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} nanosekunde {0} nanosekundi - - sekunde - {0} sekunda - {0} sekunde - {0} sekundi - {0}/sek - - - nedelje - {0} nedelja - {0} nedelje - {0} nedelja - - - godine - {0} godina - {0} godine - {0} godina - amperi {0} amper @@ -7235,6 +7445,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volta {0} volti + + kilokalorije + {0} kilokalorija + {0} kilokalorije + {0} kilokalorija + kalorije {0} kalorija @@ -7247,24 +7463,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kalorije {0} kalorija - - džuli - {0} džul - {0} džula - {0} džula - - - kilokalorije - {0} kilokalorija - {0} kilokalorije - {0} kilokalorija - kilodžuli {0} kilodžul {0} kilodžula {0} kilodžula + + džuli + {0} džul + {0} džula + {0} džula + kilovat-sati {0} kilovat-sat @@ -7277,11 +7487,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigaherca {0} gigaherca - - herci - {0} herc - {0} herca - {0} herca + + megaherci + {0} megaherc + {0} megaherca + {0} megaherca kiloherci @@ -7289,23 +7499,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kiloherca {0} kiloherca - - megaherci - {0} megaherc - {0} megaherca - {0} megaherca + + herci + {0} herc + {0} herca + {0} herca - - astronomske jedinice - {0} astronomska jedinica - {0} astronomske jedinice - {0} astronomskih jedinica + + kilometri + {0} kilometar + {0} kilometra + {0} kilometara + {0}/km - - centimetri - {0} centimetar - {0} centimentra - {0} centimetara + + metri + {0} metar + {0} metra + {0} metara + {0}/m decimetri @@ -7313,47 +7525,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} decimetra {0} decimetara - - stope - {0} stopa - {0} stope - {0} stopa - - - inči - {0} inč - {0} inča - {0} inča - - - kilometri - {0} kilometar - {0} kilometra - {0} kilometara - - - svetlosne godine - {0} svetlosna godina - {0} svetlosne godine - {0} svetlosnih godina - - - metri - {0} metar - {0} metra - {0} metara - - - mikrometri - {0} mikrometar - {0} mikrometra - {0} mikrometara - - - milje - {0} milja - {0} milje - {0} milja + + centimetri + {0} centimetar + {0} centimentra + {0} centimetara + {0}/cm milimetri @@ -7361,71 +7538,105 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milimetra {0} milimetara + + mikrometri + {0} mikrometar + {0} mikrometra + {0} mikrometara + nanometri {0} nanometar {0} nanometra {0} nanometara - - nautičke milje - {0} nautička milja - {0} nautičke milje - {0} nautičkih milja - - - parseci - {0} parsek - {0} parseka - {0} parseka - pikometri {0} pikometar {0} pikometra {0} pikometara + + milje + {0} milja + {0} milje + {0} milja + jardi {0} jard {0} jarda {0} jardi + + stope + {0} stopa + {0} stope + {0} stopa + {0}/ft + + + inči + {0} inč + {0} inča + {0} inča + {0}/in + + + parseci + {0} parsek + {0} parseka + {0} parseka + + + svetlosne godine + {0} svetlosna godina + {0} svetlosne godine + {0} svetlosnih godina + + + astronomske jedinice + {0} astronomska jedinica + {0} astronomske jedinice + {0} astronomskih jedinica + + + nautičke milje + {0} nautička milja + {0} nautičke milje + {0} nautičkih milja + + + skandinavska milja + {0} smi + {0} smi + {0} smi + luks {0} luks {0} luksa {0} luksa - - karati - {0} karat - {0} karata - {0} karata - - - grami - {0} gram - {0} grama - {0} grama - - - kilogrami - {0} kilogram - {0} kilograma - {0} kilograma - metričke tone {0} metrička tona {0} metričke tone {0} metričkih tona - - mikrogrami - {0} mikrogram - {0} mikrograma - {0} mikrograma + + kilogrami + {0} kilogram + {0} kilograma + {0} kilograma + {0} po kilogramu + + + grami + {0} gram + {0} grama + {0} grama + {0} po gramu miligrami @@ -7433,23 +7644,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} miligrama {0} miligrama - - unce - {0} unca - {0} unce - {0} unci - - - fine unce - {0} fina unca - {0} fine unce - {0} finih unci - - - funte - {0} funta - {0} funte - {0} funti + + mikrogrami + {0} mikrogram + {0} mikrograma + {0} mikrograma tone @@ -7457,35 +7656,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tone {0} tona + + funte + {0} funta + {0} funte + {0} funti + {0} po funti + + + unce + {0} unca + {0} unce + {0} unci + {0} po unci + + + fine unce + {0} fina unca + {0} fine unce + {0} finih unci + + + karati + {0} karat + {0} karata + {0} karata + gigavati {0} gigavat {0} gigavata {0} gigavati - - konjske snage - {0} konjska snaga - {0} konjske snage - {0} konjskih snaga - - - kilovati - {0} kilovat - {0} kilovata - {0} kilovati - megavati {0} megavat {0} megavata {0} megavati - - milivati - {0} milivat - {0} milivata - {0} milivati + + kilovati + {0} kilovat + {0} kilovata + {0} kilovati vati @@ -7493,24 +7706,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} vata {0} vati + + milivati + {0} milivat + {0} milivata + {0} milivati + + + konjske snage + {0} konjska snaga + {0} konjske snage + {0} konjskih snaga + hektopaskali {0} hektopaskal {0} hektopaskala {0} hektopaskala - - inči živinog stuba - {0} inč živinog stuba - {0} inča živinog stuba - {0} inča živinog stuba - - - milibari - {0} milibar - {0} milibara - {0} milibara - milimetri živinog stuba {0} milimetar živinog stuba @@ -7523,11 +7736,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} funte po kvadratnom inču {0} funti po kvadratnom inču - - karati - {0} karat - {0} karata - {0} karata + + inči živinog stuba + {0} inč živinog stuba + {0} inča živinog stuba + {0} inča živinog stuba + + + milibari + {0} milibar + {0} milibara + {0} milibara kilometri na sat @@ -7547,6 +7766,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} milje na sat {0} milja na sat + + kn + {0} kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + {0}° + stepeni Celzijusa {0} stepen Celzijusa @@ -7565,36 +7796,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvina {0} kelvina - - aker stope - {0} aker stopa - {0} aker stope - {0} aker stopa - - - centilitri - {0} centilitar - {0} centilitra - {0} centilitara - - - kubni centimetri - {0} kubni centimetar - {0} kubna centimetra - {0} kubnih centimetara - - - kubne stope - {0} kubna stopa - {0} kubne stope - {0} kubnih stopa - - - kubni inči - {0} kubni inč - {0} kubna inča - {0} kubnih inča - kubni kilometri {0} kubni kilometar @@ -7606,6 +7807,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubni metar {0} kubna metra {0} kubnih metara + {0}/m³ + + + kubni centimetri + {0} kubni centimetar + {0} kubna centimetra + {0} kubnih centimetara + {0}/cm³ kubne milje @@ -7619,29 +7828,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kubna jarda {0} kubnih jardi - - šolje - {0} šolja - {0} šolje - {0} šolja + + kubne stope + {0} kubna stopa + {0} kubne stope + {0} kubnih stopa - - decilitri - {0} decilitar - {0} decilitra - {0} decilitara + + kubni inči + {0} kubni inč + {0} kubna inča + {0} kubnih inča - - unce tečnosti - {0} unca tečnosti - {0} unce tečnosti - {0} unci tečnosti - - - galoni - {0} galon - {0} galona - {0} galona + + megalitri + {0} megalitar + {0} megalitra + {0} megalitara hektolitri @@ -7654,12 +7857,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} litar {0} litra {0} litara + {0} po litri - - megalitri - {0} megalitar - {0} megalitra - {0} megalitara + + decilitri + {0} decilitar + {0} decilitra + {0} decilitara + + + centilitri + {0} centilitar + {0} centilitra + {0} centilitara mililitri @@ -7667,11 +7877,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mililitra {0} mililitara - - pinte - {0} pinta - {0} pinte - {0} pinti + + metričke pinte + {0} metrička pinta + {0} metričke pinte + {0} metričkih pinti + + + metrička šolja + {0} metrička šolja + {0} metričke šolje + {0} metričkih šolja + + + aker stope + {0} aker stopa + {0} aker stope + {0} aker stopa + + + galoni + {0} galon + {0} galona + {0} galona + {0} po galonu kvarti @@ -7679,6 +7908,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kvarta {0} kvarata + + pinte + {0} pinta + {0} pinte + {0} pinti + + + šolje + {0} šolja + {0} šolje + {0} šolja + + + unce tečnosti + {0} unca tečnosti + {0} unce tečnosti + {0} unci tečnosti + kašike {0} kašika @@ -7691,10 +7938,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kašičice {0} kašičica + + {0}E + {0}N + {0}S + {0}W + - {0}/{1} + {0}/{1} ge sila @@ -7708,8 +7961,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rev + {0} rev + {0} rev + {0} rev + + + rad + {0} rad + {0} rad + {0} rad + + + stepeni + {0}° + {0}° + {0}° + - minuti + lučni min {0}′ {0}′ {0}′ @@ -7720,23 +7991,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - stepeni - {0}° - {0}° - {0}° - - - rad - {0} rad - {0} rad - {0} rad - - - akeri - {0} ac - {0} ac - {0} ac + + kvadratni kilometri + {0} km² + {0} km² + {0} km² hektari @@ -7744,11 +8003,37 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ha {0} ha + + kvadratni metri + {0} m² + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + {0} mi² + + + akeri + {0} ac + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² + {0} yd² kvadratne stope @@ -7761,30 +8046,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² {0} in² + {0}/in² - - kvadratni kilometri - {0} km² - {0} km² - {0} km² - - - kvadratni metri - {0} m² - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² - {0} yd² + + kt + {0} kt + {0} kt + {0} kt L/km @@ -7792,90 +8060,132 @@ For terms of use, see http://www.unicode.org/copyright.html {0} L/km {0} L/km + + L/100km + {0} L/100km + {0} L/100km + {0} L/100km + mpg {0} mpg {0} mpg {0} mpg - - bit - {0} b - {0} b - {0} b - - - bajt - {0} B - {0} B - {0} B - - - Gb - {0} Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + {0} kb + + + bajt + {0} B + {0} B + {0} B + + + bit + {0} b + {0} b + {0} b + + + v. + {0} v + {0} v + {0} v + + + god. + {0} god + {0} god. + {0} god. + {0}/god + + + meseci + {0} mes. + {0} mes. + {0} mes. + {0}/m + + + ned. + {0} ned. + {0} ned. + {0} ned. + {0}/n + d. {0} dan {0} dana {0} dana + {0}/d - sati + sati {0} sat {0} sata {0} sati - {0}/s + {0}/s - - μs - {0} μs - {0} μs - {0} μs + + min + {0} min + {0} min + {0} min + {0}/min + + + sek + {0} sek + {0} sek + {0} sek + {0}/sek ms @@ -7883,17 +8193,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ms {0} ms - - min - {0} min - {0} min - {0} min - - - meseci - {0} mes. - {0} mes. - {0} mes. + + μs + {0} μs + {0} μs + {0} μs ns @@ -7901,25 +8205,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ns {0} ns - - sek - {0} sek - {0} sek - {0} sek - {0}/sek - - - ned. - {0} ned. - {0} ned. - {0} ned. - - - god. - {0} god - {0} god. - {0} god. - amperi {0} A @@ -7944,6 +8229,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + {0} kcal + cal {0} cal @@ -7956,24 +8247,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - džuli - {0} J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ {0} kJ + + džuli + {0} J + {0} J + {0} J + kWh {0} kWh @@ -7986,11 +8271,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz + {0} MHz kHz @@ -7998,23 +8283,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz + {0} Hz - - aj - {0} aj - {0} aj - {0} aj + + km + {0} km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm - {0} cm + + metri + {0} m + {0} m + {0} m + {0}/m dm @@ -8022,47 +8309,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} dm {0} dm - - ft - {0} ft - {0} ft - {0} ft - - - inči - {0} inč - {0} inča - {0} inča - - - km - {0} km - {0} km - {0} km - - - svetlosne god. - {0} sg - {0} sg - {0} sg - - - metri - {0} m - {0} m - {0} m - - - µm - {0} µm - {0} µm - {0} µm - - - milje - {0} mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0} cm + {0}/cm mm @@ -8070,71 +8322,105 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mm {0} mm + + µm + {0} µm + {0} µm + {0} µm + nm {0} nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - {0} nmi - - - parseci - {0} pc - {0} pc - {0} pc - pikometri {0} pm {0} pm {0} pm + + milje + {0} mi + {0} mi + {0} mi + jardi {0} jrd {0} jrd {0} jrd + + ft + {0} ft + {0} ft + {0} ft + {0}/ft + + + inči + {0} inč + {0} inča + {0} inča + {0}/in + + + parseci + {0} pc + {0} pc + {0} pc + + + svetlosne god. + {0} sg + {0} sg + {0} sg + + + aj + {0} aj + {0} aj + {0} aj + + + nmi + {0} nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + {0} smi + lx {0} lx {0} lx {0} lx - - karati - {0} CD - {0} CD - {0} CD - - - grami - {0} g - {0} g - {0} g - - - kg - {0} kg - {0} kg - {0} kg - t {0} t {0} t {0} t - - µg - {0} µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0} kg + {0}/kg + + + grami + {0} g + {0} g + {0} g + {0}/g mg @@ -8142,23 +8428,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mg {0} mg - - oz - {0} unca - {0} unce - {0} unci - - - oz t - {0} oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb - {0} lb + + µg + {0} µg + {0} µg + {0} µg tn @@ -8166,35 +8440,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tn {0} tn + + lb + {0} lb + {0} lb + {0} lb + {0}/lb + + + oz + {0} unca + {0} unce + {0} unci + {0}/oz + + + oz t + {0} oz t + {0} oz t + {0} oz t + + + karati + {0} CD + {0} CD + {0} CD + GW {0} GW {0} GW {0} GW - - ks - {0} ks - {0} ks - {0} ks - - - kW - {0} kW - {0} kW - {0} kW - MW {0} MW {0} MW {0} MW - - mW - {0} mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW + {0} kW vati @@ -8202,24 +8490,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + mW + {0} mW + {0} mW + {0} mW + + + ks + {0} ks + {0} ks + {0} ks + hPa {0} hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -8232,11 +8520,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - kt - {0} kt - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar + {0} mbar kilometri na sat @@ -8256,6 +8550,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + kn + {0} kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + {0}° + °C {0}°C @@ -8274,36 +8580,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - {0} ac ft - - - cL - {0} cL - {0} cL - {0} cL - - - cm³ - {0} cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -8315,6 +8591,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -8328,29 +8612,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - šolje - {0} š. - {0} š. - {0} š. + + ft³ + {0} ft³ + {0} ft³ + {0} ft³ - - dL - {0} dL - {0} dL - {0} dL + + in³ + {0} in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML + {0} ML hL @@ -8363,12 +8641,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l {0} l + {0}/l - - ML - {0} ML - {0} ML - {0} ML + + dL + {0} dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL + {0} cL mL @@ -8376,11 +8661,30 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mL {0} mL - - pt - {0} pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + {0} mc + + + ac ft + {0} ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0} gal + {0}/gal qt @@ -8388,6 +8692,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0} qt {0} qt + + pt + {0} pt + {0} pt + {0} pt + + + šolje + {0} š. + {0} š. + {0} š. + + + fl oz + {0} fl oz + {0} fl oz + {0} fl oz + kaš. {0} kaš. @@ -8400,16 +8722,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kašič. {0} kašič. + + {0}E + {0}N + {0}S + {0}W + - {0}/{1} + {0}/{1} {0} G {0} G {0} G + + {0}° + {0}° + {0}° + {0}′ {0}′ @@ -8420,31 +8753,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - {0}° - - - {0} ac - {0} ac - {0} ac + + {0} km² + {0} km² + {0} km² {0} ha {0} ha {0} ha - - {0} ft² - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} km² - {0} m² {0} m² @@ -8455,17 +8773,63 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² + + {0} ac + {0} ac + {0} ac + + + {0} ft² + {0} ft² + {0} ft² + + + L/100km + {0} L/100km + {0} L/100km + {0} L/100km + + + g. + {0} g + {0} g + {0} g + + + m. + {0} m + {0} m + {0} m + + + n. + {0} n + {0} n + {0} n + d. - {0} d - {0} d - {0} d + {0} d + {0} d + {0} d - sati - {0} sat - {0} sata - {0} sati + sat + {0} sat + {0} sata + {0} sati + + + min + {0} m + {0} m + {0} m + + + sek + {0} sek + {0} sek + {0} sek ms @@ -8473,74 +8837,23 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ms {0} ms - - min - {0} m - {0} m - {0} m - - - m. - {0} m - {0} m - {0} m - - - sek - {0} sek - {0} sek - {0} sek - - - n. - {0} n - {0} n - {0} n - - - g. - {0} g - {0} g - {0} g - - - cm - {0} cm - {0} cm - {0} cm - - - ft - {0} ft - {0} ft - {0} ft - - - {0} inč - {0} inča - {0} inča - km {0} km {0} km {0} km - - {0} sg - {0} sg - {0} sg - metar {0} m {0} m {0} m - - {0} milja - {0} milje - {0} milja + + cm + {0} cm + {0} cm + {0} cm mm @@ -8553,16 +8866,31 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} milja + {0} milje + {0} milja + {0} jrd {0} jrd {0} jrd - - g - {0} g - {0} g - {0} g + + ft + {0} ft + {0} ft + {0} ft + + + {0} inč + {0} inča + {0} inča + + + {0} sg + {0} sg + {0} sg kg @@ -8570,20 +8898,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kg {0} kg - - {0} unca - {0} unce - {0} unci + + g + {0} g + {0} g + {0} g {0} lb {0} lb {0} lb - - {0} ks - {0} ks - {0} ks + + {0} unca + {0} unce + {0} unci {0} kW @@ -8595,6 +8924,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} ks + {0} ks + {0} ks + {0} hPa {0} hPa @@ -8653,15 +8987,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l + + {0}E + {0}N + {0}S + {0}W + - h:mm + h.mm - h:mm:ss + h.mm.ss - m:ss + m.ss diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sr_Latn_BA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sr_Latn_BA.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sr_Latn_BA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sr_Latn_BA.xml index 86fa571f66f..d1931d82c75 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sr_Latn_BA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sr_Latn_BA.xml @@ -1,13 +1,12 @@ - - - + + @@ -655,6 +684,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -701,6 +731,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -811,7 +842,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albanien Armenien - Nederländska Antillerna Angola Antarktis Argentina @@ -907,7 +937,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guam Guinea-Bissau Guyana - Hongkong (S.A.R. Kina) + Hongkong, S.A.R. Kina Hongkong Heardön och McDonaldöarna Honduras @@ -963,7 +993,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mali Myanmar (Burma) Mongoliet - Macao (S.A.R. Kina) + Macao, S.A.R. Kina Macao Nordmarianerna Martinique @@ -1105,6 +1135,7 @@ For terms of use, see http://www.unicode.org/copyright.html jauer-dialekt jyutping vanlig stavning + kociewiska standardstavning laukika-dialekt Lipovaz-dialekt @@ -1156,6 +1187,9 @@ For terms of use, see http://www.unicode.org/copyright.html Numerisk sortering Sorteringsstyrka valuta + 12- eller 24-timmarsklocka + radbrytningstyp + enhetssystem siffror Tidszon Språkvariant @@ -1163,121 +1197,133 @@ For terms of use, see http://www.unicode.org/copyright.html privat - indo-arabiska siffror - utökade indo-arabiska siffror - armeniska taltecken - små armeniska taltecken - balinesiska siffror - bengaliska siffror - big5-sorteringsordning - brahmiska siffror - buddistisk kalender - chakma-siffror - chamiska siffror - kinesisk kalender - koptisk kalender - koreansk kalender - devanagariska siffror - ordbokssorteringsordning - grundläggande Unicode-sorteringsordning - sorteringsordning för flerspråkliga europeiska dokument - etiopiska taltecken - etiopisk kalender - etiopisk amete-alem-kalender - Finansiella siffror - fullbreddssiffror - gb2312-sorteringsordning - georgiska taltecken - gregoriansk kalender - grekiska taltecken - små grekiska taltecken - gujaratiska siffror - gurmukhiska siffror - kinesiska decimaltal - förenklat kinesiskt stavade tal - förenklat kinesiskt finansiellt stavade tal - traditionellt kinesiskt stavade tal - traditionellt kinesiskt finansiellt stavade tal - hebreiska taltecken - hebreisk kalender - Sortera alla - indisk kalender - islamisk kalender - islamisk civil kalender - islamisk kalender, Saudi-Arabien - islamisk kalender, astronomisk - islamisk kalender, Umm al-Qura - ISO 8601-kalender - japansk kalender - javanesiska siffror - japanskt stavade tal - japanskt finansiellt stavade tal - kayah li-siffror - khmeriska siffror - kannadiska siffror - tai tham hora-siffror - tai tham tham-siffror - laotiska siffror - västerländska siffror - lepcha-siffror - limbu-siffror - Sortera gemener först - malayalamiska siffror - mongoliska siffror - meetei mayek-siffror - burmesiska siffror - burmesiska shan-siffror - Språkspecifika siffror - n-kå-siffor - sortera accenter normalt - Ordna normalt efter skiftläge - Sortera oavsett skiftläge - Sortera kana separat - sortera utan normalisering - Sortera siffror för sig - sortera symboler - ol chiki-siffror - oriyiska siffror - osmanya-siffror - persisk kalender - telefonkatalogssorteringsordning - fonetisk sorteringsordning - pinyin-sorteringsordning - Sortera endast efter grundbokstäver - Sortera efter accent/skiftläge/bredd/kana - reformerad sorteringsordning - kinesiska republikens kalender - romerska taltecken - små romerska taltecken - saurashtra-siffror - allmän sökning - söksorteringsordning för att söka på inledande Hangul-konsonant - Sortera accenter - Sortera oavsett symboler - sharada-siffror - sora sompeng-siffror - normal sorteringsordning - strecksorteringsordning - sundanesiska siffror - takri-siffror - ny tai lü-siffror - traditionella tamilska taltecken - tamilska siffror - telugiska siffror - Sortera accenter/skiftläge/bredd - thailändska siffror - tibetanska siffror - traditionell ordning - Traditionella siffror - radikal-streck-sorteringsordning - Sortera versaler först - vai-siffror - sortera accenter omvänt - Sortera efter skiftläge - Sortera efter kana - sortera med Unicode-normalisering - Sortera siffror numeriskt - zhuyin-sorteringsordning + buddistisk kalender + kinesisk kalender + koptisk kalender + koreansk kalender + etiopisk kalender + etiopisk amete-alem-kalender + gregoriansk kalender + hebreisk kalender + indisk kalender + islamisk kalender + islamisk civil kalender + islamisk kalender, Saudi-Arabien + islamisk kalender, astronomisk + islamisk kalender, Umm al-Qura + ISO 8601-kalender + japansk kalender + persisk kalender + kinesiska republikens kalender + sortera symboler + Sortera oavsett symboler + sortera accenter normalt + sortera accenter omvänt + Sortera gemener först + Ordna normalt efter skiftläge + Sortera versaler först + Sortera oavsett skiftläge + Sortera efter skiftläge + Sortera kana separat + Sortera efter kana + big5-sorteringsordning + bakåtkompatibel sortering + ordbokssorteringsordning + grundläggande Unicode-sorteringsordning + emojisortering + sorteringsordning för flerspråkliga europeiska dokument + gb2312-sorteringsordning + telefonkatalogssorteringsordning + fonetisk sorteringsordning + pinyin-sorteringsordning + reformerad sorteringsordning + allmän sökning + söksorteringsordning för att söka på inledande Hangul-konsonant + normal sorteringsordning + strecksorteringsordning + traditionell ordning + radikal-streck-sorteringsordning + zhuyin-sorteringsordning + sortera utan normalisering + sortera med Unicode-normalisering + Sortera siffror för sig + Sortera siffror numeriskt + Sortera alla + Sortera endast efter grundbokstäver + Sortera efter accent/skiftläge/bredd/kana + Sortera accenter + Sortera accenter/skiftläge/bredd + 12-timmarsklocka (0–11) + 12-timmarsklocka (1–12) + 24-timmarsklocka (0–23) + 24-timmarsklocka (1–24) + fri radbrytning + normal radbrytning + strikt radbrytning + SI-enheter + brittiskt måttsystem + USA:s måttsystem + indo-arabiska siffror + utökade indo-arabiska siffror + armeniska taltecken + små armeniska taltecken + balinesiska siffror + bengaliska siffror + brahmiska siffror + chakma-siffror + chamiska siffror + devanagariska siffror + etiopiska taltecken + Finansiella siffror + fullbreddssiffror + georgiska taltecken + grekiska taltecken + små grekiska taltecken + gujaratiska siffror + gurmukhiska siffror + kinesiska decimaltal + förenklat kinesiskt stavade tal + förenklat kinesiskt finansiellt stavade tal + traditionellt kinesiskt stavade tal + traditionellt kinesiskt finansiellt stavade tal + hebreiska taltecken + javanesiska siffror + japanskt stavade tal + japanskt finansiellt stavade tal + kayah li-siffror + khmeriska siffror + kannadiska siffror + tai tham hora-siffror + tai tham tham-siffror + laotiska siffror + västerländska siffror + lepcha-siffror + limbu-siffror + malayalamiska siffror + mongoliska siffror + meetei mayek-siffror + burmesiska siffror + burmesiska shan-siffror + Språkspecifika siffror + n-kå-siffor + ol chiki-siffror + oriyiska siffror + osmanya-siffror + romerska taltecken + små romerska taltecken + saurashtra-siffror + sharada-siffror + sora sompeng-siffror + sundanesiska siffror + takri-siffror + ny tai lü-siffror + traditionella tamilska taltecken + tamilska siffror + telugiska siffror + thailändska siffror + tibetanska siffror + Traditionella siffror + vai-siffror BGN @@ -1592,6 +1638,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d y G MMM y G @@ -1616,15 +1663,16 @@ For terms of use, see http://www.unicode.org/copyright.html mm:ss y G y G - G y-MM - G y-MM-dd - E, y-MM-dd G + y-MM G + y-MM-dd G + E y-MM-dd G G y-MM MMM y G d MMM y G E d MMM y G - G y QQQ - G y QQQQ + MMMM y G + QQQ y G + QQQQ y G {0} – {1} @@ -1668,7 +1716,7 @@ For terms of use, see http://www.unicode.org/copyright.html d–d/M - d/M – d/M + d/M–d/M E d/M – E d/M @@ -1698,9 +1746,9 @@ For terms of use, see http://www.unicode.org/copyright.html G y-MM-dd – y-MM-dd - E, y-MM-dd – E, y-MM-dd G - E, y-MM-dd – E, y-MM-dd G - E, y-MM-dd – E, y-MM-dd G + E y-MM-dd – E y-MM-dd + E y-MM-dd – E y-MM-dd G + E y-MM-dd – E y-MM-dd G MMM–MMM y G @@ -1771,18 +1819,18 @@ For terms of use, see http://www.unicode.org/copyright.html - Jan. - Feb. - Mars - Apr. - Maj - Juni - Juli - Aug. - Sep. - Okt. - Nov. - Dec. + jan. + feb. + mars + apr. + maj + juni + juli + aug. + sep. + okt. + nov. + dec. J @@ -1799,18 +1847,18 @@ For terms of use, see http://www.unicode.org/copyright.html D - Januari - Februari - Mars - April - Maj - Juni - Juli - Augusti - September - Oktober - November - December + januari + februari + mars + april + maj + juni + juli + augusti + september + oktober + november + december @@ -1855,13 +1903,13 @@ For terms of use, see http://www.unicode.org/copyright.html - Sön - Mån - Tis - Ons - Tor - Fre - Lör + sön + mån + tis + ons + tors + fre + lör S @@ -1873,22 +1921,22 @@ For terms of use, see http://www.unicode.org/copyright.html L - - - Ti - On - To - Fr - + + + ti + on + to + fr + - Söndag - Måndag - Tisdag - Onsdag - Torsdag - Fredag - Lördag + söndag + måndag + tisdag + onsdag + torsdag + fredag + lördag @@ -1937,32 +1985,66 @@ For terms of use, see http://www.unicode.org/copyright.html - FM - EM + midnatt + fm + em + på morg. + på förm. + på efterm. + på kvällen + på natten - f - p.d. - e + midn. + fm + em + på morg. + på förm. + på efterm. + på kvällen + på natten + midnatt fm - på dagen em + på morgonen + på förmiddagen + på eftermiddagen + på kvällen + på natten - fm - em + midnatt + f.m. + e.m. + morgon + förm. + efterm. + kväll + natt - f.m. - e.m. + midn. + fm + em + morg. + förm. + efterm. + kväll + natt - förmiddag - eftermiddag + midnatt + förmiddag + eftermiddag + morgon + förmiddag + eftermiddag + kväll + natt @@ -2012,21 +2094,25 @@ For terms of use, see http://www.unicode.org/copyright.html 'kl'. HH:mm:ss zzzz + 'kl'. HH.mm.ss zzzz HH:mm:ss z + HH.mm.ss z HH:mm:ss + HH.mm.ss HH:mm + HH.mm @@ -2092,8 +2178,9 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y d MMM y E d MMM y - y QQQ - y QQQQ + MMMM y + QQQ y + QQQQ y {0} {1} @@ -2140,7 +2227,7 @@ For terms of use, see http://www.unicode.org/copyright.html d–d/M - d/M – d/M + d/M–d/M E d/M – E d/M @@ -2386,6 +2473,246 @@ For terms of use, see http://www.unicode.org/copyright.html + + + Taika (645–650) + Hakuchi (650–671) + Hakuhō (672–686) + Shuchō (686–701) + Taihō (701–704) + Keiun (704–708) + Wadō (708–715) + Reiki (715–717) + Yōrō (717–724) + Jinki (724–729) + Tempyō (729–749) + Tempyō-kampō (749–749) + Tempyō-shōhō (749–757) + Tempyō-hōji (757–765) + Temphō-jingo (765–767) + Jingo-keiun (767–770) + Hōki (770–780) + Ten-ō (781–782) + Enryaku (782–806) + Daidō (806–810) + Kōnin (810–824) + Tenchō (824–834) + Jōwa (834–848) + Kajō (848–851) + Ninju (851–854) + Saiko (854–857) + Tennan (857–859) + Jōgan (859–877) + Genkei (877–885) + Ninna (885–889) + Kampyō (889–898) + Shōtai (898–901) + Engi (901–923) + Enchō (923–931) + Shōhei (931–938) + Tengyō (938–947) + Tenryaku (947–957) + Tentoku (957–961) + Ōwa (961–964) + Kōhō (964–968) + Anna (968–970) + Tenroku (970–973) + Ten-en (973–976) + Jōgen (976–978) + Tengen (978–983) + Eikan (983–985) + Kanna (985–987) + Ei-en (987–989) + Eiso (989–990) + Shōryaku (990–995) + Chōtoku (995–999) + Chōhō (999–1004) + Kankō (1004–1012) + Chōwa (1012–1017) + Kannin (1017–1021) + Jian (1021–1024) + Manju (1024–1028) + Chōgen (1028–1037) + Chōryaku (1037–1040) + Chōkyū (1040–1044) + Kantoku (1044–1046) + Eishō (1046–1053) + Tengi (1053–1058) + Kōhei (1058–1065) + Jiryaku (1065–1069) + Enkyū (1069–1074) + Shōho (1074–1077) + Shōryaku (1077–1081) + Eiho (1081–1084) + Ōtoku (1084–1087) + Kanji (1087–1094) + Kaho (1094–1096) + Eichō (1096–1097) + Shōtoku (1097–1099) + Kōwa (1099–1104) + Chōji (1104–1106) + Kashō (1106–1108) + Tennin (1108–1110) + Ten-ei (1110–1113) + Eikyū (1113–1118) + Gen-ei (1118–1120) + Hoan (1120–1124) + Tenji (1124–1126) + Daiji (1126–1131) + Tenshō (1131–1132) + Chōshō (1132–1135) + Hoen (1135–1141) + Eiji (1141–1142) + Kōji (1142–1144) + Tenyō (1144–1145) + Kyūan (1145–1151) + Ninpei (1151–1154) + Kyūju (1154–1156) + Hogen (1156–1159) + Heiji (1159–1160) + Eiryaku (1160–1161) + Ōho (1161–1163) + Chōkan (1163–1165) + Eiman (1165–1166) + Nin-an (1166–1169) + Kaō (1169–1171) + Shōan (1171–1175) + Angen (1175–1177) + Jishō (1177–1181) + Yōwa (1181–1182) + Juei (1182–1184) + Genryuku (1184–1185) + Bunji (1185–1190) + Kenkyū (1190–1199) + Shōji (1199–1201) + Kennin (1201–1204) + Genkyū (1204–1206) + Ken-ei (1206–1207) + Shōgen (1207–1211) + Kenryaku (1211–1213) + Kenpō (1213–1219) + Shōkyū (1219–1222) + Jōō (1222–1224) + Gennin (1224–1225) + Karoku (1225–1227) + Antei (1227–1229) + Kanki (1229–1232) + Jōei (1232–1233) + Tempuku (1233–1234) + Bunryaku (1234–1235) + Katei (1235–1238) + Ryakunin (1238–1239) + En-ō (1239–1240) + Ninji (1240–1243) + Kangen (1243–1247) + Hōji (1247–1249) + Kenchō (1249–1256) + Kōgen (1256–1257) + Shōka (1257–1259) + Shōgen (1259–1260) + Bun-ō (1260–1261) + Kōchō (1261–1264) + Bun-ei (1264–1275) + Kenji (1275–1278) + Kōan (1278–1288) + Shōō (1288–1293) + Einin (1293–1299) + Shōan (1299–1302) + Kengen (1302–1303) + Kagen (1303–1306) + Tokuji (1306–1308) + Enkei (1308–1311) + Ōchō (1311–1312) + Shōwa (1312–1317) + Bunpō (1317–1319) + Genō (1319–1321) + Genkyō (1321–1324) + Shōchū (1324–1326) + Kareki (1326–1329) + Gentoku (1329–1331) + Genkō (1331–1334) + Kemmu (1334–1336) + Engen (1336–1340) + Kōkoku (1340–1346) + Shōhei (1346–1370) + Kentoku (1370–1372) + Bunchū (1372–1375) + Tenju (1375–1379) + Kōryaku (1379–1381) + Kōwa (1381–1384) + Genchū (1384–1392) + Meitoku (1384–1387) + Kakei (1387–1389) + Kōō (1389–1390) + Meitoku (1390–1394) + Ōei (1394–1428) + Shōchō (1428–1429) + Eikyō (1429–1441) + Kakitsu (1441–1444) + Bun-an (1444–1449) + Hōtoku (1449–1452) + Kyōtoku (1452–1455) + Kōshō (1455–1457) + Chōroku (1457–1460) + Kanshō (1460–1466) + Bunshō (1466–1467) + Ōnin (1467–1469) + Bunmei (1469–1487) + Chōkyō (1487–1489) + Entoku (1489–1492) + Meiō (1492–1501) + Bunki (1501–1504) + Eishō (1504–1521) + Taiei (1521–1528) + Kyōroku (1528–1532) + Tenmon (1532–1555) + Kōji (1555–1558) + Eiroku (1558–1570) + Genki (1570–1573) + Tenshō (1573–1592) + Bunroku (1592–1596) + Keichō (1596–1615) + Genwa (1615–1624) + Kan-ei (1624–1644) + Shōho (1644–1648) + Keian (1648–1652) + Shōō (1652–1655) + Meiryaku (1655–1658) + Manji (1658–1661) + Kanbun (1661–1673) + Enpō (1673–1681) + Tenwa (1681–1684) + Jōkyō (1684–1688) + Genroku (1688–1704) + Hōei (1704–1711) + Shōtoku (1711–1716) + Kyōhō (1716–1736) + Genbun (1736–1741) + Kanpō (1741–1744) + Enkyō (1744–1748) + Kan-en (1748–1751) + Hōryaku (1751–1764) + Meiwa (1764–1772) + An-ei (1772–1781) + Tenmei (1781–1789) + Kansei (1789–1801) + Kyōwa (1801–1804) + Bunka (1804–1818) + Bunsei (1818–1830) + Tenpō (1830–1844) + Kōka (1844–1848) + Kaei (1848–1854) + Ansei (1854–1860) + Man-en (1860–1861) + Bunkyū (1861–1864) + Genji (1864–1865) + Keiō (1865–1868) + Meiji + Taishō + Shōwa + Heisei + + @@ -2490,10 +2817,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Era + era - År + år i fjol i år nästa år @@ -2508,6 +2835,9 @@ For terms of use, see http://www.unicode.org/copyright.html år + i fjol + i år + nästa år om {0} år om {0} år @@ -2519,17 +2849,23 @@ For terms of use, see http://www.unicode.org/copyright.html år + i fjol + i år + nästa år +{0} år +{0} år - -{0} år - -{0} år + −{0} år + −{0} år - Kvartal + kvartal + förra kvartalet + detta kvartal + nästa kvartal om {0} kvartal om {0} kvartal @@ -2541,6 +2877,9 @@ For terms of use, see http://www.unicode.org/copyright.html kv. + förra kv. + detta kv. + nästa kv. om {0} kv. om {0} kv. @@ -2552,17 +2891,20 @@ For terms of use, see http://www.unicode.org/copyright.html kv. + förra kv. + detta kv. + nästa kv. +{0} kv. +{0} kv. - -{0} kv. - -{0} kv. + −{0} kv + −{0} kv - Månad + månad förra månaden denna månad nästa månad @@ -2577,6 +2919,9 @@ For terms of use, see http://www.unicode.org/copyright.html m + förra mån. + denna mån. + nästa mån. om {0} mån. om {0} mån. @@ -2588,17 +2933,20 @@ For terms of use, see http://www.unicode.org/copyright.html m + förra mån. + denna mån. + nästa mån. +{0} mån. +{0} mån. - -{0} mån. - -{0} mån. + −{0} mån + −{0} mån - Vecka + vecka förra veckan denna vecka nästa vecka @@ -2613,6 +2961,9 @@ For terms of use, see http://www.unicode.org/copyright.html v + förra v. + denna v. + nästa v. om {0} v. om {0} v. @@ -2624,17 +2975,20 @@ For terms of use, see http://www.unicode.org/copyright.html v + förra v. + denna v. + nästa v. +{0} v. +{0} v. - -{0} v. - -{0} v. + −{0} v + −{0} v - Dag + dag i förrgår i går i dag @@ -2651,6 +3005,11 @@ For terms of use, see http://www.unicode.org/copyright.html dag + i förrgår + i går + i dag + i morgon + i övermorgon om {0} d om {0} d @@ -2662,6 +3021,11 @@ For terms of use, see http://www.unicode.org/copyright.html dag + i förrgår + i går + i dag + i morgon + i övermorgon +{0} d +{0} d @@ -2672,7 +3036,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Veckodag + veckodag söndag förra veckan @@ -2783,7 +3147,7 @@ For terms of use, see http://www.unicode.org/copyright.html fm/em - Timme + timme om {0} timme om {0} timmar @@ -2816,7 +3180,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Minut + minut om {0} minut om {0} minuter @@ -2840,8 +3204,8 @@ For terms of use, see http://www.unicode.org/copyright.html m - +{0} m - +{0} m + +{0} min + +{0} min −{0} min @@ -2849,7 +3213,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Sekund + sekund nu om {0} sekund @@ -2883,7 +3247,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Tidszon + tidszon @@ -3624,7 +3988,7 @@ For terms of use, see http://www.unicode.org/copyright.html Chovd - Ulan Bator + Ulaanbaatar Tjojbalsan @@ -3761,6 +4125,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manilla @@ -3845,6 +4212,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Tjita + Jakutsk @@ -3863,6 +4233,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolymsk + Kamtjatka @@ -4452,9 +4825,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Påsköns tid - Påsköns normaltid - Påsköns sommartid + Påskötid + Påskön, normaltid + Påskön, sommartid @@ -4488,7 +4861,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Kaliningradtid + Kaliningradtid @@ -4506,8 +4879,8 @@ For terms of use, see http://www.unicode.org/copyright.html Falklandsöarnas tid - Falklandsöarnas normaltid - Falklandsöarnas sommartid + Falklandsöarna, normaltid + Falklandsöarna, sommartid @@ -4776,9 +5149,9 @@ For terms of use, see http://www.unicode.org/copyright.html - nordvästra Mexiko-tid - nordvästra Mexiko, normaltid - nordvästra Mexiko, sommartid + nordvästmexikansk tid + nordvästmexikansk normaltid + nordvästmexikansk sommartid @@ -5125,6 +5498,14 @@ For terms of use, see http://www.unicode.org/copyright.html latn 1 + + ‏− + : + + + ‏− + : + ,   @@ -5133,11 +5514,12 @@ For terms of use, see http://www.unicode.org/copyright.html + ×10^ - · + × ¤¤¤ : + . @@ -5225,6 +5607,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0 tn ¤ + 0 tn ¤ + 00 tn ¤ + 00 tn ¤ + 000 tn ¤ + 000 tn ¤ + 0 mn ¤ + 0 mn ¤ + 00 mn ¤ + 00 mn ¤ + 000 mn ¤ + 000 mn ¤ + 0 md ¤ + 0 md ¤ + 00 md ¤ + 00 md ¤ + 000 md ¤ + 000 md ¤ + 0 bn ¤ + 0 bn ¤ + 00 bn ¤ + 00 bn ¤ + 000 bn ¤ + 000 bn ¤ + + {0} {1} {0} {1} @@ -5279,6 +5689,7 @@ For terms of use, see http://www.unicode.org/copyright.html angolansk kwanza angolanska kwanza AOA + Kz angolansk kwanza (1977–1990) @@ -5362,6 +5773,7 @@ For terms of use, see http://www.unicode.org/copyright.html bosnisk-hercegovinsk mark (konvertibel) bosnisk-hercegovinska mark (konvertibla) BAM + KM bosnisk-hercegovinsk dinar (1994–1998) @@ -5421,7 +5833,7 @@ For terms of use, see http://www.unicode.org/copyright.html bahrainsk dinar bahrainsk dinar - Bahrain-dinar + bahrainska dinarer BHD @@ -5449,6 +5861,7 @@ For terms of use, see http://www.unicode.org/copyright.html boliviansk boliviano bolivianska bolivianos BOB + Bs boliviansk boliviano (1864–1963) @@ -5525,6 +5938,7 @@ For terms of use, see http://www.unicode.org/copyright.html botswansk pula botswanska pula BWP + P vitrysk ny rubel (1994–1999) @@ -5549,7 +5963,7 @@ For terms of use, see http://www.unicode.org/copyright.html kanadensisk dollar kanadensisk dollar kanadensiska dollar - CAN$ + CA$ $ @@ -5638,6 +6052,7 @@ For terms of use, see http://www.unicode.org/copyright.html kubansk peso (konvertibel) kubanska pesos (konvertibla) CUC + $ kubansk peso @@ -5663,6 +6078,7 @@ For terms of use, see http://www.unicode.org/copyright.html tjeckisk koruna tjeckiska koruna CZK + östtysk mark @@ -5685,6 +6101,7 @@ For terms of use, see http://www.unicode.org/copyright.html dansk krona danska kronor Dkr + kr dominikansk peso @@ -5720,6 +6137,7 @@ For terms of use, see http://www.unicode.org/copyright.html egyptiskt pund egyptiska pund EG£ + eritreansk nakfa @@ -5773,6 +6191,7 @@ For terms of use, see http://www.unicode.org/copyright.html Falklandspund Falklandspund FKP + £ fransk franc @@ -5796,6 +6215,7 @@ For terms of use, see http://www.unicode.org/copyright.html georgisk lari georgiska lari GEL + ghanansk cedi (1979–2007) @@ -5826,6 +6246,7 @@ For terms of use, see http://www.unicode.org/copyright.html guineansk franc guineanska franc GNF + FG guineansk syli @@ -5847,6 +6268,7 @@ For terms of use, see http://www.unicode.org/copyright.html guatemalansk quetzal guatemalanska quetzal GTQ + Q Portugisiska Guinea-escudo @@ -5877,6 +6299,7 @@ For terms of use, see http://www.unicode.org/copyright.html honduransk lempira honduranska lempira HNL + L kroatisk dinar @@ -5888,6 +6311,7 @@ For terms of use, see http://www.unicode.org/copyright.html kroatisk kuna kroatiska kunor HRK + kn haitisk gourde @@ -5900,12 +6324,14 @@ For terms of use, see http://www.unicode.org/copyright.html ungersk forint ungerska forinter HUF + Ft indonesisk rupiah indonesisk rupiah indonesiska rupiah IDR + Rp irländskt pund @@ -5959,6 +6385,7 @@ For terms of use, see http://www.unicode.org/copyright.html isländsk krona isländska kronor Ikr + kr italiensk lire @@ -6010,12 +6437,14 @@ For terms of use, see http://www.unicode.org/copyright.html komorisk franc komoriska franc KMF + CF nordkoreansk won nordkoreansk won nordkoreanska won KPW + sydkoreansk hwan (1953–1962) @@ -6066,12 +6495,14 @@ For terms of use, see http://www.unicode.org/copyright.html libanesiskt pund libanesiska pund LBP + srilankesisk rupie srilankesisk rupie srilankesiska rupier LKR + Rs liberiansk dollar @@ -6160,6 +6591,7 @@ For terms of use, see http://www.unicode.org/copyright.html madagaskisk ariary madagaskiska ariary MGA + Ar madagaskisk franc @@ -6188,6 +6620,7 @@ For terms of use, see http://www.unicode.org/copyright.html myanmarisk kyat myanmariska kyat MMK + K mongolisk tögrög @@ -6203,9 +6636,9 @@ For terms of use, see http://www.unicode.org/copyright.html MOP - mauretansk ouquiya - mauretansk ouquiya - mauretanska ouquiya + mauretansk ouguiya + mauretansk ouguiya + mauretanska ouguiya MRO @@ -6224,6 +6657,7 @@ For terms of use, see http://www.unicode.org/copyright.html mauritisk rupie mauritiska rupier MUR + Rs maldivisk rupie @@ -6265,6 +6699,7 @@ For terms of use, see http://www.unicode.org/copyright.html malaysisk ringgit malaysiska ringgiter MYR + RM moçambikisk escudo @@ -6307,6 +6742,7 @@ For terms of use, see http://www.unicode.org/copyright.html nicaraguansk córdoba nicaraguanska córdobas NIO + C$ nederländsk gulden @@ -6318,12 +6754,14 @@ For terms of use, see http://www.unicode.org/copyright.html norsk krona norska kronor Nkr + kr nepalesisk rupie nepalesisk rupie nepalesiska rupier NPR + Rs nyzeeländsk dollar @@ -6378,12 +6816,14 @@ For terms of use, see http://www.unicode.org/copyright.html pakistansk rupie pakistanska rupier PKR + Rs polsk zloty polsk zloty polska zloty PLN + polsk zloty (1950–1995) @@ -6435,6 +6875,7 @@ For terms of use, see http://www.unicode.org/copyright.html rysk rubel ryska rubel RUB + rysk rubel (1991–1998) @@ -6446,6 +6887,7 @@ For terms of use, see http://www.unicode.org/copyright.html rwandisk franc rwandiska franc RWF + RF saudisk riyal @@ -6487,6 +6929,7 @@ For terms of use, see http://www.unicode.org/copyright.html svensk krona svenska kronor kr + kr singaporiansk dollar @@ -6500,6 +6943,7 @@ For terms of use, see http://www.unicode.org/copyright.html S:t Helena-pund S:t Helena-pund SHP + £ slovensk tolar @@ -6548,6 +6992,7 @@ For terms of use, see http://www.unicode.org/copyright.html saotomeansk dobra saotomeanska dobra STD + Db sovjetisk rubel @@ -6564,6 +7009,7 @@ For terms of use, see http://www.unicode.org/copyright.html syriskt pund syriska pund SYP + £ swaziländsk lilangeni @@ -6576,6 +7022,7 @@ For terms of use, see http://www.unicode.org/copyright.html thailändsk baht thailändska baht THB + ฿ tadzjikisk rubel @@ -6610,6 +7057,7 @@ For terms of use, see http://www.unicode.org/copyright.html tongansk paʻanga tonganska paʻanga TOP + T$ timoriansk escudo @@ -6628,6 +7076,7 @@ For terms of use, see http://www.unicode.org/copyright.html turkiska lira TRY + TL Trinidad och Tobago-dollar @@ -6722,6 +7171,7 @@ For terms of use, see http://www.unicode.org/copyright.html venezuelansk bolívar venezuelanska bolívar VEF + Bs vietnamesisk dong @@ -6788,6 +7238,7 @@ For terms of use, see http://www.unicode.org/copyright.html östkaribisk dollar östkaribiska dollar EC$ + $ IMF särskild dragningsrätt @@ -6853,7 +7304,7 @@ For terms of use, see http://www.unicode.org/copyright.html afrikanska kontoenheter - okänd eller ogiltig valuta + okänd valuta (okänd valutaenhet) (okända valutaenheter) @@ -6901,6 +7352,7 @@ For terms of use, see http://www.unicode.org/copyright.html sydafrikansk rand sydafrikanska rand ZAR + R zambisk kwacha (1968–2012) @@ -6912,6 +7364,7 @@ For terms of use, see http://www.unicode.org/copyright.html zambisk kwacha zambiska kwacha ZMW + ZK zairisk ny zaire @@ -6947,7 +7400,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {0} per {1} + {0} per {1} gånger jordens gravitation @@ -6959,6 +7412,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} meter per kvadratsekund {0} meter per kvadratsekund + + varv + {0} varv + {0} varv + + + radianer + {0} radian + {0} radianer + + + grader + {0} grad + {0} grader + bågminuter {0} bågminut @@ -6969,30 +7437,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} bågsekund {0} bågsekunder - - grader - {0} grad - {0} grader - - - radianer - {0} radian - {0} radianer - - - engelska tunnland - {0} engelskt tunnland - {0} engelska tunnland + + kvadratkilometer + {0} kvadratkilometer + {0} kvadratkilometer hektar {0} hektar {0} hektar + + kvadratmeter + {0} kvadratmeter + {0} kvadratmeter + {0} per kvadratmeter + kvadratcentimeter {0} kvadratcentimeter {0} kvadratcentimeter + {0} per kvadratcentimeter + + + engelska kvadratmil + {0} engelsk kvadratmil + {0} engelska kvadratmil + + + engelska tunnland + {0} engelskt tunnland + {0} engelska tunnland + + + yard² + {0} yard² + {0} yard² kvadratfot @@ -7003,147 +7483,148 @@ For terms of use, see http://www.unicode.org/copyright.html kvadrattum {0} kvadrattum {0} kvadrattum + {0} per kvadrattum - - kvadratkilometer - {0} kvadratkilometer - {0} kvadratkilometer - - - kvadratmeter - {0} kvadratmeter - {0} kvadratmeter - - - engelska kvadratmil - {0} engelsk kvadratmil - {0} engelska kvadratmil - - - yard² - {0} yard² - {0} yard² + + karat + {0} karat + {0} karat liter per kilometer {0} liter per kilometer {0} liter per kilometer + + liter per 100 kilometer + {0} liter per 100 kilometer + {0} liter per 100 kilometer + miles per gallon {0} mile per gallon {0} miles per gallon - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - gigabit - {0} gigabit - {0} gigabit - - - GB - {0} GB - {0} GB - - - kilobit - {0} kilobit - {0} kilobit - - - kB - {0} kB - {0} kB - - - megabit - {0} megabit - {0} megabit - - - MB - {0} MB - {0} MB - - - terabit - {0} terabit - {0} terabit - terabyte {0} terabyte {0} terabyte + + terabit + {0} terabit + {0} terabit + + + GB + {0} GB + {0} GB + + + gigabit + {0} gigabit + {0} gigabit + + + MB + {0} MB + {0} MB + + + megabit + {0} megabit + {0} megabit + + + kB + {0} kB + {0} kB + + + kilobit + {0} kilobit + {0} kilobit + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + århundraden + {0} århundrade + {0} århundraden + + + år + {0} år + {0} år + {0} per år + + + månader + {0} månad + {0} månader + {0} per månad + + + veckor + {0} vecka + {0} veckor + {0} per vecka + dygn {0} dygn {0} dygn + {0} per dygn timmar {0} timme {0} timmar - {0}/h + {0} per timme - - mikrosekunder - {0} mikrosekund - {0} mikrosekunder + + minuter + {0} minut + {0} minuter + {0} per minut + + + sekunder + {0} sekund + {0} sekunder + {0} per sekund millisekunder {0} millisekund {0} millisekunder - - minuter - {0} minut - {0} minuter - - - månader - {0} månad - {0} månader + + mikrosekunder + {0} mikrosekund + {0} mikrosekunder nanosekunder {0} nanosekund {0} nanosekunder - - sekunder - {0} sekund - {0} sekunder - {0}/s - - - veckor - {0} vecka - {0} veckor - - - år - {0} år - {0} år - ampere - ampere + {0} ampere {0} ampere milliampere - milliampere + {0} milliampere {0} milliampere @@ -7156,6 +7637,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volt + + kilokalorier + {0} kilokalori + {0} kilokalorier + kalorier {0} kalori @@ -7166,21 +7652,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilokalori {0} kilokalorier - - joule - {0} joule - {0} joule - - - kilokalorier - {0} kilokalori - {0} kilokalorier - kilojoule {0} kilojoule {0} kilojoule + + joule + {0} joule + {0} joule + kilowattimmar {0} kilowattimme @@ -7191,216 +7672,220 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigahertz {0} gigahertz - - hertz - {0} hertz - {0} hertz + + MHz + {0} MHz + {0} MHz kilohertz {0} kilohertz {0} kilohertz - - MHz - {0} MHz - {0} MHz + + hertz + {0} hertz + {0} hertz - - astronomiska enheter - {0} astronomisk enhet - {0} astronomiska enheter + + kilometer + {0} kilometer + {0} kilometer + {0} per kilometer - - centimeter - {0} centimeter - {0} centimeter + + meter + {0} meter + {0} meter + {0} per meter decimeter {0} decimeter {0} decimeter - - famnar - {0} famn - {0} famnar - - - fot - {0} fot - {0} fot - - - engelska plogfårelängder - {0} engelsk plogfårelängd - {0} engelska plogfårelängder - - - tum - {0} tum - {0} tum - - - kilometer - {0} kilometer - {0} kilometer - - - ljusår - {0} ljusår - {0} ljusår - - - meter - {0} meter - {0} meter - - - mikrometer - {0} mikrometer - {0} mikrometer - - - engelska mil - {0} engelsk mil - {0} engelska mil + + centimeter + {0} centimeter + {0} centimeter + {0} per centimeter millimeter {0} millimeter {0} millimeter + + mikrometer + {0} mikrometer + {0} mikrometer + nanometer {0} nanometer {0} nanometer - - nautiska mil - {0} nautisk mil - {0} nautiska mil - - - parsec - {0} parsec - {0} parsec - pikometer {0} pikometer {0} pikometer + + engelska mil + {0} engelsk mil + {0} engelska mil + engelska yard {0} engelsk yard {0} engelska yard + + fot + {0} fot + {0} fot + {0} per fot + + + tum + {0} tum + {0} tum + {0} per tum + + + parsec + {0} parsec + {0} parsec + + + ljusår + {0} ljusår + {0} ljusår + + + astronomiska enheter + {0} astronomisk enhet + {0} astronomiska enheter + + + engelska plogfårelängder + {0} engelsk plogfårelängd + {0} engelska plogfårelängder + + + famnar + {0} famn + {0} famnar + + + nautiska mil + {0} nautisk mil + {0} nautiska mil + + + mil + {0} mil + {0} mil + lux {0} lux {0} lux - - karat - {0} karat - {0} karat - - - gram - {0} gram - {0} gram - - - kilogram - {0} kilogram - {0} kilogram - ton {0} ton {0} ton - - mikrogram - {0} mikrogram - {0} mikrogram + + kilogram + {0} kilogram + {0} kilogram + {0} per kilogram + + + gram + {0} gram + {0} gram + {0} per gram milligram {0} milligram {0} milligram - - uns - {0} uns - {0} uns - - - troy uns - {0} troy uns - {0} troy uns - - - pund - {0} pund - {0} pund - - - engelska stenar - {0} engelsk sten - {0} engelska stenar + + mikrogram + {0} mikrogram + {0} mikrogram engelska korta ton {0} engelskt kort ton {0} engelska korta ton + + engelska stenar + {0} engelsk sten + {0} engelska stenar + + + pund + {0} pund + {0} pund + {0} per pund + + + uns + {0} uns + {0} uns + {0} per uns + + + troy uns + {0} troy uns + {0} troy uns + + + karat + {0} karat + {0} karat + gigawatt {0} gigawatt {0} gigawatt - - hästkrafter - {0} hästkraft - {0} hästkrafter - - - kilowatt - {0} kilowatt - {0} kilowatt - megawatt {0} megawatt {0} megawatt - - milliwatt - {0} milliwatt - {0} milliwatt + + kilowatt + {0} kilowatt + {0} kilowatt watt {0} watt {0} watt + + milliwatt + {0} milliwatt + {0} milliwatt + + + hästkrafter + {0} hästkraft + {0} hästkrafter + hektopascal {0} hektopascal {0} hektopascal - - tum kvicksilver - {0} tum kvicksilver - {0} tum kvicksilver - - - millibar - {0} millibar - {0} millibar - millimeter kvicksilver {0} millimeter kvicksilver @@ -7411,10 +7896,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pund per kvadrattum {0} pund per kvadrattum - - karat - {0} karat - {0} karat + + tum kvicksilver + {0} tum kvicksilver + {0} tum kvicksilver + + + millibar + {0} millibar + {0} millibar kilometer per timme @@ -7431,6 +7921,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} engelsk mil per timme {0} engelska mil per timme + + knop + {0} knop + {0} knop + + + grader + {0}° + {0}° + grader Celsius {0} grad Celsius @@ -7446,36 +7946,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvin {0} kelvin - - engelska tunnland gånger fot - {0} engelskt tunnland gånger fot - {0} engelska tunnland gånger fot - - - skäppor - {0} skäppa - {0} skäppor - - - centiliter - {0} centiliter - {0} centiliter - - - kubikcentimeter - {0} kubikcentimeter - {0} kubikcentimeter - - - kubikfot - {0} kubikfot - {0} kubikfot - - - kubiktum - {0} kubiktum - {0} kubiktum - kubikkilometer {0} kubikkilometer @@ -7485,6 +7955,13 @@ For terms of use, see http://www.unicode.org/copyright.html kubikmeter {0} kubikmeter {0} kubikmeter + {0} per kubikmeter + + + kubikcentimeter + {0} kubikcentimeter + {0} kubikcentimeter + {0} per kubikcentimeter engelska kubikmil @@ -7496,25 +7973,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} engelsk kubikyard {0} engelska kubikyard - - koppar - {0} kopp - {0} koppar + + kubikfot + {0} kubikfot + {0} kubikfot - - deciliter - {0} deciliter - {0} deciliter + + kubiktum + {0} kubiktum + {0} kubiktum - - fluid ounces - {0} fluid ounce - {0} fluid ounces - - - gallon - {0} gallon - {0} gallon + + megaliter + {0} megaliter + {0} megaliter hektoliter @@ -7525,27 +7997,69 @@ For terms of use, see http://www.unicode.org/copyright.html liter {0} liter {0} liter + {0} per liter - - megaliter - {0} megaliter - {0} megaliter + + deciliter + {0} deciliter + {0} deciliter + + + centiliter + {0} centiliter + {0} centiliter milliliter {0} milliliter {0} milliliter - - pint - {0} pint - {0} pint + + pint à 500 ml + {0} pint à 500 ml + {0} pint à 500 ml + + + koppar à 2,5 dl + {0} kopp à 2,5 dl + {0} koppar à 2,5 dl + + + engelska tunnland gånger fot + {0} engelskt tunnland gånger fot + {0} engelska tunnland gånger fot + + + skäppor + {0} skäppa + {0} skäppor + + + gallon + {0} gallon + {0} gallon + {0} per gallon quart {0} quart {0} quart + + pint + {0} pint + {0} pint + + + koppar + {0} kopp + {0} koppar + + + fluid ounces + {0} fluid ounce + {0} fluid ounces + matskedar {0} matsked @@ -7556,10 +8070,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tesked {0} teskedar + + {0} öst + {0} nord + {0} syd + {0} väst + - {0}/{1} + {0}/{1} G @@ -7571,6 +8091,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + varv + {0} varv + {0} varv + + + radianer + {0} rad + {0} rad + + + grader + {0}° + {0}° + bågminuter {0}′ @@ -7581,30 +8116,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - grader - {0}° - {0}° - - - radianer - {0} rad - {0} rad - - - eng. tunnland - {0} ac - {0} ac + + km² + {0} km² + {0} km² hektar {0} ha {0} ha + + + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + engelska kvadratmil + {0} eng.mil² + {0} eng.mil² + + + eng. tunnland + {0} ac + {0} ac + + + yard² + {0} yard² + {0} yard² kvadratfot @@ -7615,91 +8162,106 @@ For terms of use, see http://www.unicode.org/copyright.html tum² {0} tum² {0} tum² + {0}/tum² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - engelska kvadratmil - {0} eng.mil² - {0} eng.mil² - - - yard² - {0} yard² - {0} yard² + + karat + {0} kt + {0} kt liter/km {0} l/km {0} l/km + + l/100 km + {0} l/100 km + {0} l/100 km + mpg {0} mpg {0} mpg - - b - {0} b - {0} b - - - byte - {0} B - {0} B - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + byte + {0} B + {0} B + + + b + {0} b + {0} b + + + årh + {0} årh + {0} årh + + + år + {0} år + {0} år + {0}/år + + + mån + {0} mån + {0} mån + {0}/mån + + + vkr + {0} v + {0} v + {0}/v + dygn {0} d {0} d + {0}/d tim @@ -7707,30 +8269,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tim {0}/h - - μs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - min {0} min {0} min - - - mån - {0} mån - {0} mån - - - ns - {0} ns - {0} ns + {0}/min sek @@ -7738,15 +8281,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} s {0}/s - - vkr - {0} v - {0} v + + ms + {0} ms + {0} ms - - år - {0} år - {0} år + + μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns A @@ -7768,6 +8316,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -7778,21 +8331,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kcal {0} kcal - - J - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + J + {0} J + {0} J + kWh {0} kWh @@ -7803,216 +8351,220 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - AU - {0} AU - {0} AU + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + m + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - famnar - {0} famn - {0} famnar - - - fot - {0} fot - {0} fot - - - eng. plogfårelgd - {0} eng. plogfårelgd - {0} eng. plogfårelgd - - - tum - {0} tum - {0} tum - - - km - {0} km - {0} km - - - ljusår - {0} ly - {0} ly - - - m - {0} m - {0} m - - - μm - {0} μm - {0} μm - - - eng. mil - {0} eng. mil - {0} eng. mil + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + μm + {0} μm + {0} μm + nm {0} nm {0} nm - - naut. mil - {0} naut. mil - {0} naut. mil - - - parsec - {0} parsec - {0} parsec - pm {0} pm {0} pm + + eng. mil + {0} eng. mil + {0} eng. mil + engelska yard {0} eng. yard {0} eng. yard + + fot + {0} fot + {0} fot + {0}/fot + + + tum + {0} tum + {0} tum + {0}/tum + + + parsec + {0} parsec + {0} parsec + + + ljusår + {0} ly + {0} ly + + + AU + {0} AU + {0} AU + + + eng. plogfårelgd + {0} eng. plogfårelgd + {0} eng. plogfårelgd + + + famnar + {0} famn + {0} famnar + + + naut. mil + {0} naut. mil + {0} naut. mil + + + mil + {0} mil + {0} mil + lux {0} lux {0} lux - - karat - {0} ct - {0} ct - - - g - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - μg - {0} μg - {0} μg + + kg + {0} kg + {0} kg + {0}/kg + + + g + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - uns - {0} uns - {0} uns - - - ozt - {0} ozt - {0} ozt - - - pund - {0} pund - {0} pund - - - eng. sten - {0} eng. sten - {0} eng. sten + + μg + {0} μg + {0} μg eng. k. ton {0} eng. k. ton {0} eng. k. ton + + eng. sten + {0} eng. sten + {0} eng. sten + + + pund + {0} pund + {0} pund + {0}/pund + + + uns + {0} uns + {0} uns + {0}/uns + + + ozt + {0} ozt + {0} ozt + + + karat + {0} ct + {0} ct + GW {0} GW {0} GW - - hästkrafter - {0} hk - {0} hk - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW W {0} W {0} W + + mW + {0} mW + {0} mW + + + hästkrafter + {0} hk + {0} hk + hPa {0} hPa {0} hPa - - tum Hg - {0} tum Hg - {0} tum Hg - - - mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -8023,10 +8575,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - karat - {0} kt - {0} kt + + tum Hg + {0} tum Hg + {0} tum Hg + + + mbar + {0} mbar + {0} mbar km/h @@ -8043,6 +8600,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + knop + {0} knop + {0} knop + + + ° + {0}° + {0}° + °C {0} °C @@ -8058,36 +8625,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - eng. t:land·fot - {0} eng. t:d·fot - {0} eng. t:d·fot - - - skäppa - {0} skäppa - {0} skäppor - - - cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - - - fot³ - {0} fot³ - {0} fot³ - - - tum³ - {0} tum³ - {0} tum³ - km³ {0} km³ @@ -8097,6 +8634,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ engelska kubikmil @@ -8108,25 +8652,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} eng. yard³ {0} eng. yard³ - - koppar - {0} kopp - {0} koppar + + fot³ + {0} fot³ + {0} fot³ - - dl - {0} dl - {0} dl + + tum³ + {0} tum³ + {0} tum³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + Ml + {0} Ml + {0} Ml hl @@ -8137,27 +8676,69 @@ For terms of use, see http://www.unicode.org/copyright.html liter {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl ml {0} ml {0} ml - - pint - {0} pint - {0} pint + + pt à 500 ml + {0} pt à 500 ml + {0} pt à 500 ml + + + kp à 2,5 dl + {0} kp 2,5dl + {0} kp 2,5dl + + + eng. t:land·fot + {0} eng. t:d·fot + {0} eng. t:d·fot + + + skäppa + {0} skäppa + {0} skäppor + + + gal + {0} gal + {0} gal + {0}/gal quart {0} quart {0} quart + + pint + {0} pint + {0} pint + + + koppar + {0} kopp + {0} koppar + + + fl oz + {0} fl oz + {0} fl oz + msk {0} msk @@ -8168,10 +8749,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsk {0} tsk + + {0} Ö + {0} N + {0} S + {0} V + - {0}/{1} + {0}/{1} G @@ -8183,6 +8770,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0}m/s² {0}m/s² + + varv + {0}varv + {0}varv + + + rad + {0}rad + {0}rad + + + ° + {0}° + {0}° + bågmin {0}′ @@ -8193,30 +8795,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - ° - {0}° - {0}° - - - rad - {0}rad - {0}rad - - - eng. tunnland - {0} ac - {0} ac + + km² + {0}km² + {0}km² ha {0}ha {0}ha + + + {0}m² + {0}m² + {0}/m² + cm² {0}cm² {0}cm² + {0}/cm² + + + eng. mil² + {0} mi² + {0} mi² + + + eng. tunnland + {0} ac + {0} ac + + + eng. yard² + {0} en. yrd² + {0} en. yrd² fot² @@ -8227,71 +8841,81 @@ For terms of use, see http://www.unicode.org/copyright.html tum² {0} tum² {0} tum² - - - km² - {0}km² - {0}km² - - - - {0}m² - {0}m² - - - eng. mil² - {0} mi² - {0} mi² - - - eng. yard² - {0} en. yrd² - {0} en. yrd² + {0}/tum² L/km {0}L/km {0}L/km + + l/100 km + {0} l/100 km + {0} l/100 km + eng.mil/gallon {0}e.mil/gn {0}e.mil/gn - - b - {0}b - {0}b - - - B - {0}B - {0}B - - - Gb - {0}Gb - {0}Gb - - - kb - {0}kb - {0}kb - - - Mb - {0}Mb - {0}Mb - Tb {0}Tb {0}Tb + + Gb + {0}Gb + {0}Gb + + + Mb + {0}Mb + {0}Mb + + + kb + {0}kb + {0}kb + + + B + {0}B + {0}B + + + b + {0}b + {0}b + + + årh + {0}årh + {0}årh + + + år + {0}å + {0}å + {0}/år + + + m + {0}m + {0}m + {0}/mån + + + v + {0}v + {0}v + {0}/v + d {0}d {0}d + {0}/d h @@ -8299,30 +8923,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}h {0}/h - - μs - {0}μs - {0}μs - - - ms - {0}ms - {0}ms - m {0}m {0}m - - - m - {0}m - {0}m - - - ns - {0}ns - {0}ns + {0}/min sek @@ -8330,15 +8935,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0}s {0}/s - - v - {0}v - {0}v + + ms + {0}ms + {0}ms - - år - {0}å - {0}å + + μs + {0}μs + {0}μs + + + ns + {0}ns + {0}ns A @@ -8360,6 +8970,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}V {0}V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -8370,21 +8985,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kcal {0} kcal - - J - {0}J - {0}J - - - kcal - {0} kcal - {0} kcal - kJ {0}kJ {0}kJ + + J + {0}J + {0}J + kWh {0}kWh @@ -8395,215 +9005,219 @@ For terms of use, see http://www.unicode.org/copyright.html {0}GHz {0}GHz - - Hz - {0}Hz - {0}Hz + + MHz + {0}MHz + {0}MHz kHz {0}kHz {0}kHz - - MHz - {0}MHz - {0}MHz + + Hz + {0}Hz + {0}Hz - - AE - {0}AE - {0}AE + + km + {0}km + {0}km + {0}/km - - cm - {0}cm - {0}cm + + m + {0}m + {0}m + {0}/m dm {0}dm {0}dm - - famnar - {0} famn - {0} famnar - - - fot - {0} fot - {0} fot - - - eng. plogfårelgd - {0}en.pfrld - {0}en.pfrld - - - tum - {0} tum - {0} tum - - - km - {0}km - {0}km - - - ljusår - {0} ljusår - {0} ljusår - - - m - {0}m - {0}m - - - μm - {0}μm - {0}μm - - - eng. mil - {0}mi - {0}mi + + cm + {0}cm + {0}cm + {0}/cm mm {0}mm {0}mm + + μm + {0}μm + {0}μm + nm {0}nm {0}nm - - naut. mil - {0}M - {0}M - - - parsek - {0} parsek - {0} parsek - pm {0}pm {0}pm + + eng. mil + {0} mi + {0}mi + engelska yard {0}yd {0}yd + + fot + {0} fot + {0} fot + {0}/fot + + + tum + {0} tum + {0} tum + {0}/tum + + + parsek + {0} parsek + {0} parsek + + + ljusår + {0} ljusår + {0} ljusår + + + AE + {0}AE + {0}AE + + + eng. plogfårelgd + {0}en.pfrld + {0}en.pfrld + + + famnar + {0} famn + {0} famnar + + + naut. mil + {0}M + {0}M + + + mil + {0}mil + {0}mil + lx {0} lx {0} lx - - karat - {0} karat - {0} karat - - - g - {0}g - {0}g - - - kg - {0}kg - {0}kg - t {0}t {0}t - - μg - {0}μg - {0}μg + + kg + {0}kg + {0}kg + {0}/kg + + + g + {0}g + {0}g + {0}/g mg {0}mg {0}mg - - uns - {0} uns - {0} uns - - - {0} tr.uns - {0} tr.uns - - - s:pund - {0} skålpund - {0} skålpund - - - eng. sten - {0} eng. s:n - {0} eng. s:n + + μg + {0}μg + {0}μg eng. k. ton {0} en.k.ton {0} en.k.ton + + eng. sten + {0} eng. s:n + {0} eng. s:n + + + s:pund + {0} skålpund + {0} skålpund + {0}/libra·454g + + + uns + {0} uns + {0} uns + {0}/uns·28g + + + {0} tr.uns + {0} tr.uns + + + karat + {0} karat + {0} karat + GW {0}GW {0}GW - - hk - {0}hk - {0}hk - - - kW - {0}kW - {0}kW - MW {0}MW {0}MW - - mW - {0}mW - {0}mW + + kW + {0}kW + {0}kW W {0}W {0}W + + mW + {0}mW + {0}mW + + + hk + {0}hk + {0}hk + hPa {0}hPa {0}hPa - - tum Hg - {0} tum Hg - {0} tum Hg - - - mbar - {0}mbar - {0}mbar - mm Hg {0}mm Hg @@ -8614,6 +9228,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0}s:d/tum² {0}s:d/tum² + + tum Hg + {0} tum Hg + {0} tum Hg + + + mbar + {0}mbar + {0}mbar + km/h {0}km/h @@ -8629,6 +9253,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + knop + {0}knop + {0}knop + + + ° + {0}° + {0}° + °C {0} °C @@ -8644,36 +9278,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}K {0}K - - eng. t:land·fot - {0}en.td·fot - {0}en.td·fot - - - skäppa - {0} skäppa - {0} skäppor - - - cL - {0}cL - {0}cL - - - cm³ - {0}cm³ - {0}cm³ - - - fot³ - {0} fot³ - {0} fot³ - - - tum³ - {0} tum³ - {0} tum³ - km³ {0}km³ @@ -8683,6 +9287,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0}m³ {0} m³ + {0}/m³ + + + cm³ + {0}cm³ + {0}cm³ + {0}/cm³ eng. mil³ @@ -8694,25 +9305,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} en. yrd³ {0} en. yrd³ - - kp·2,5dL - {0}kp·2½dL - {0}kp·2½dL + + fot³ + {0} fot³ + {0} fot³ - - dL - {0}dL - {0}dL + + tum³ + {0} tum³ + {0} tum³ - - vätskeuns - {0} v:euns - {0} v:euns - - - USA vätskegallon - {0} v:egal:n - {0} v:egal:n + + ML + {0}ML + {0}ML hL @@ -8723,27 +9329,69 @@ For terms of use, see http://www.unicode.org/copyright.html liter {0} l {0} l + {0}/L - - ML - {0}ML - {0}ML + + dL + {0}dL + {0}dL + + + cL + {0}cL + {0}cL mL {0}mL {0}mL - - USA vätskepint - {0} v:epint - {0} v:epint + + pt à 500 ml + {0}pt·50cL + {0}pt·50cL + + + kp à 2,5 dl + {0}kp·2½dl + {0}kp·2½dl + + + eng. t:land·fot + {0}en.td·fot + {0}en.td·fot + + + skäppa + {0} skäppa + {0} skäppor + + + USA vätskegallon + {0} v:egal:n + {0} v:egal:n + {0}/äb·3,8L USA vätskequart {0} v:equart {0} v:equart + + USA vätskepint + {0} v:epint + {0} v:epint + + + kp·2,5dL + {0}kp·2½dL + {0}kp·2½dL + + + vätskeuns + {0} v:euns + {0} v:euns + msk {0}msk @@ -8754,15 +9402,24 @@ For terms of use, see http://www.unicode.org/copyright.html {0}tsk {0}tsk + + {0}Ö + {0}N + {0}S + {0}V + h:mm + h.mm h:mm:ss + h.mm.ss m:ss + m.ss diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sv_AX.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sv_AX.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sv_AX.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sv_AX.xml index b1ec173772f..df01e727abe 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sv_AX.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sv_AX.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sv_FI.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sv_FI.xml similarity index 78% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sv_FI.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sv_FI.xml index 2dded76956f..434f4692fa9 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sv_FI.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sv_FI.xml @@ -1,13 +1,12 @@ - - - + @@ -22,11 +21,11 @@ For terms of use, see http://www.unicode.org/copyright.html tidszon - kinesiska i big5-sorteringsordning - kinesiska i gb2312-sorteringsordning - kinesiska i pinyin-sorteringsordning - kinesiska i strecksorteringsordning - traditionell sorteringsordning + kinesiska i big5-sorteringsordning + kinesiska i gb2312-sorteringsordning + kinesiska i pinyin-sorteringsordning + kinesiska i strecksorteringsordning + traditionell sorteringsordning diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sv_SE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sv_SE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sv_SE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sv_SE.xml index 5636364451f..5cbd90e68fd 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sv_SE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sv_SE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sw.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sw.xml similarity index 84% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sw.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sw.xml index b3957550e7d..b997d1615c2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sw.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sw.xml @@ -1,13 +1,12 @@ - - - + @@ -45,22 +44,25 @@ For terms of use, see http://www.unicode.org/copyright.html Kibena Kibafut Kibulgaria + Kibalochi cha Magharibi Kikom Kibambara Kibengali Kitibeti Kibretoni - brx + Kibodo Kibosnia Kibulu Kimedumba Kikatalani + Kichechenia Kichiga Kicherokee Kikurdi cha Sorani Kikosikani Kikhufti Kicheki + Kichuvash Kiwelisi Kidenmaki Kitaita @@ -79,15 +81,15 @@ For terms of use, see http://www.unicode.org/copyright.html Kiekajuk Kigiriki Kiingereza + Kiingereza (US) Kiesperanto Kihispania - Kihispania cha Ulaya Kiestonia Kibasque Kiewondo Kiajemi Kifulfulde - Kifinlandi + Kifini Kifilipino Kifiji Kifaroe @@ -129,7 +131,7 @@ For terms of use, see http://www.unicode.org/copyright.html Sichuan Yi Kiaisilandi Kiitaliano - iu + Kiinuktitut Kijapani Kingomba Kimachame @@ -150,11 +152,11 @@ For terms of use, see http://www.unicode.org/copyright.html Kikalaallisut Kikalenjin Kikambodia - Kimbundu + Kimbundu Kikannada Kikorea Kikomipermyak - kok + Kikonkani Kikanuri Kikashmiri Kisambaa @@ -173,6 +175,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kilaosi Kimongo Kilozi + Kiluri cha Kaskazini Kilithuania Kiluba-Katanga Kiluba-Lulua @@ -202,9 +205,11 @@ For terms of use, see http://www.unicode.org/copyright.html Kimundang Lugha Nyingi Kiburma + Kimazanderani Kinama Kibokmal cha Norwe Kindebele cha Kaskazini + nds Kinepali Kinewari Kindonga @@ -249,12 +254,13 @@ For terms of use, see http://www.unicode.org/copyright.html Kisamburu Kisangu Kisindhi + Kikurdi cha Kusini Kisami cha Kaskazini Kisena Koyraboro Senni Kisango Kiserbia-kroeshia - Tachelhit + Kitachelhit Kiarabu cha Chadi Kisinhala Kislovakia @@ -277,8 +283,8 @@ For terms of use, see http://www.unicode.org/copyright.html Kisusu Kiswidi Kiswahili + Kingwana Shikomor - Kingwana Kitamil Kitelugu Kitemne @@ -300,7 +306,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kitasawaq Kitahiti Central Atlas Tamazight - Kiuiguri + Kiuyghur Kiukrania Lugha Isiyojulikana Kiurdu @@ -309,6 +315,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kivenda Kivietinamu Kivunjo + Kiwarlpiri Kiwolofu Kixhosa Kisoga @@ -318,6 +325,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kiyoruba Tamaziti Msingi ya Kimoroko Kichina + Kichina (Kilichorahisishwa) Kichina cha Jadi Kizulu Hakuna maudhui ya lugha @@ -352,7 +360,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -380,7 +388,7 @@ For terms of use, see http://www.unicode.org/copyright.html Afrika ya Kusini Amerika Amerika ya Kaskazini - Karibi + Karibiani Asia Mashariki Asia ya Kusini Asia ya Kusini Mashariki @@ -405,7 +413,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antili za Uholanzi Angola Antaktika Ajentina @@ -431,7 +438,7 @@ For terms of use, see http://www.unicode.org/copyright.html Uholanzi ya Karibiani Brazili Bahama - Butani + Bhutan Kisiwa cha Bouvet Botswana Belarusi @@ -439,6 +446,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kanada Visiwa vya Cocos (Keeling) Jamhuri ya Kidemokrasia ya Kongo + Kongo (DRC) Jamhuri ya Afrika ya Kati Kongo - Brazzaville Jamhuri ya Kongo @@ -456,12 +464,12 @@ For terms of use, see http://www.unicode.org/copyright.html Kepuvede Kurakao Kisiwa cha Krismasi - Saiprasi + Cyprus Jamhuri ya Cheki Ujerumani Diego Garcia Jibuti - Denmaki + Denmark Dominika Jamhuri ya Dominika Aljeria @@ -481,7 +489,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mikronesia Visiwa vya Faroe Ufaransa - Gaboni + Gabon Uingereza Uingereza Grenada @@ -538,11 +546,11 @@ For terms of use, see http://www.unicode.org/copyright.html Lebanoni Santalusia Liechtenstein - Sirilanka + Sri Lanka Liberia Lesoto Litwania - Lasembagi + Luxembourg Lativia Libya Moroko @@ -551,7 +559,7 @@ For terms of use, see http://www.unicode.org/copyright.html Montenegro Saint Martin Madagaska - Visiwa vya Marshal + Visiwa vya Marshall Masedonia Masedonia (FYROM) Mali @@ -565,20 +573,20 @@ For terms of use, see http://www.unicode.org/copyright.html Montserrati Malta Morisi - Modivu + Maldives Malawi Meksiko Malesia Msumbiji Namibia Nyukaledonia - Nijeri + Niger Kisiwa cha Norfolk Nigeria Nikaragwa Uholanzi Norwe - Nepali + Nepal Nauru Niue Nyuzilandi @@ -586,19 +594,19 @@ For terms of use, see http://www.unicode.org/copyright.html Panama Peru Polinesia ya Ufaransa - Papua - Filipino + Papua New Guinea + Ufilipino Pakistani Polandi - Santapieri na Mikeloni - Pitkairni - Pwetoriko + Santapierre na Miquelon + Visiwa vya Pitcairn + Puerto Rico Maeneo ya Palestina Palestina Ureno Palau Paragwai - Katari + Qatar Oceania ya Nje Riyunioni Romania @@ -610,38 +618,39 @@ For terms of use, see http://www.unicode.org/copyright.html Shelisheli Sudani Uswidi - Singapoo + Singapore Santahelena Slovenia Svalbard na Jan Mayen Slovakia Siera Leoni - Samarino + San Marino Senegali Somalia Surinamu Sudani Kusini São Tomé na Príncipe Elsavado - Santamatini - Siria + Sint Maarten + Syria Uswazi Tristan da Cunha Visiwa vya Turki na Kaiko - Chadi + Chad Maeneo ya Kusini ya Ufaransa Togo Tailandi Tajikistani Tokelau - Timor ya Mashariki + Timor-Leste + Timor ya Mashariki Turukimenistani Tunisia Tonga Uturuki Trinidad na Tobago Tuvalu - Taiwani + Taiwan Tanzania Ukraini Uganda @@ -655,7 +664,7 @@ For terms of use, see http://www.unicode.org/copyright.html Venezuela Visiwa vya Virgin vya Uingereza Visiwa vya Virgin vya Marekani - Vietinamu + Vietnam Vanuatu Walis na Futuna Samoa @@ -674,11 +683,14 @@ For terms of use, see http://www.unicode.org/copyright.html Upangaji wa Herufi kubwa/Herufi ndogo Upangaji Unaoathiriwa na Herufi Upangaji wa Kana - Utaratibu wa Kupanga + Mpangilio Upangaji wa Kawaida Upangaji wa Namba Nguvu ya Upangaji Sarafu + hc + lb + ms Nambari Ukanda Saa Tofauti ya Mandhari @@ -686,99 +698,109 @@ For terms of use, see http://www.unicode.org/copyright.html Matumizi ya Kibinafsi - Nambari za Kiarabu/Kihindi - Nambari za Kiarabu/Kihindi Zilizopanuliwa - Nambari za Kiarmenia - Nambari Ndogo za Kiamenia - Nambari za Kibengali - Mpangilio wa Kichina cha Jadi - Big5 - Kalenda ya Kibuddha - Nambari za Kichami - Kalenda ya Kichina - Kalenda ya Koptiki - Kalenda ya Dangi - Nambari za Kidevanagari - Mpangilio wa Kamusi - Mpangilio wa Chaguo-Msingi wa Unicode - Nambari za Kiethiopia - Kalenda ya Kiethiopia - Kalenda ya Kiethiopia ya Amete Alem - Tarakimu za Kifedha - Nambari za Upana Kamili - Mpangilio wa Kichina Rahisi - GB2312 - Nambari za Georgia - Kalenda ya Kigregori - Nambari za Kigiriki - Nambari Ndogo za Kigiriki - Nambari za Kigujarati - Nambari za Kigurumukhi - Nambari za Desimali za Kichina - Nambari za Kichina Rahisi - Nambari za Kifedha za Kichina Rahisi - Nambari za Kichina cha Jadi - Nambari za Kichina za Fedha - Nambari za Kihebrania - Kalenda ya Kihebrania - Panga Zote - Kalenda ya Taifa ya India - Kalenda ya Kiislamu - Kalenda ya Kiislamu/Rasmi - Kalenda ya ISO-8601 - Kalenda ya Kijapani - Nambari za Kijava - Nambari za Kijapani - Nambari za Kifedha za Kijapani - Nambari za Kikhmeri - Nambari za Kikannada - Nambari za Kilao - Nambari za Magharibi - Nambari za Kilimbu - Panga Herufi ndogo Kwanza - Nambari za Kimalayamu - Nambari za Kimongolia - Nambari za Myama - Digiti Asili - Panga Viinitoni kwa Kawaida - Panga Utaratibu wa Herufi ya Kawaida - Panga Isiyoathiriwa na Herufi - Panga Kana Kando - Panga Bila Ukawaida - Panga Tarakimu Kivyake - Panga Alama - Nambari za Kioriya - Kalenda ya Kiajemi - Mpangilio wa Orodha za Nambari za Simu - Utaratibu wa Kupanga Fonetiki - Mpangilio wa Kipinyin - Panga Herufi Msingi Tu - Panga Viinitoni/Herufi/Upana/Kana - Mpangilio Uliorekebishwa - Kalenda ya Minguo - Nambari za Kirumi - Nambari Ndogo za Kirumi - Utafutaji wa Kijumla - Tafuta kwa Konsonanti Halisi ya Hangul - Panga Viinitoni - Panga Alama za Kupuuza - standard - Mpangilio wa Mikwaju - Nambari za Kitakri - Nambari za Kitamili - Nambari za Kitamili - Nambari za Kitelugu - Panga Viinitoni/Herufi/Upana - Nambari za Kitai - Nambari za Kitibeti - Mpangilio wa Kawaida - Tarakimu za Jadi - Mpangilio wa Mikwaju ya Shina - Panga Herufi kubwa Kwanza - Dijiti za Vai - Panga Viinitoni Kumegeuzwa - Panga kwa Inayoathiriwa na Herufi - Panga Kana Kitofauti - Upangaji Msimbosare Umekawaidishwa - Panga Dijiti kwa Namba + Kalenda ya Kibuddha + Kalenda ya Kichina + Kalenda ya Koptiki + Kalenda ya Dangi + Kalenda ya Kiethiopia + Kalenda ya Kiethiopia ya Amete Alem + Kalenda ya Kigregori + Kalenda ya Kiebrania + Kalenda ya Taifa ya India + Kalenda ya Kiislamu + Kalenda ya Kiislamu/Rasmi + Kalenda ya ISO-8601 + Kalenda ya Kijapani + Kalenda ya Kiajemi + Kalenda ya Minguo + Panga Alama + Panga Alama za Kupuuza + Panga Viinitoni kwa Kawaida + Panga Viinitoni Kumegeuzwa + Panga Herufi ndogo Kwanza + Panga Utaratibu wa Herufi ya Kawaida + Panga Herufi kubwa Kwanza + Panga Isiyoathiriwa na Herufi + Panga kwa Inayoathiriwa na Herufi + Panga Kana Kando + Panga Kana Kitofauti + Mpangilio wa Kichina cha Jadi - Big5 + Mpangilio wa Kamusi + Mpangilio Chaguo-Msingi wa Unicode + Mpangilio wa Kichina Rahisi - GB2312 + Mpangilio wa Orodha za Nambari za Simu + Utaratibu wa Kupanga Fonetiki + Mpangilio wa Kipinyin + Mpangilio Uliorekebishwa + Utafutaji wa Kijumla + Tafuta kwa Konsonanti Halisi ya Hangul + Mpangilio wa Kawaida + Mpangilio wa Mikwaju + Mpangilio wa Kawaida + Mpangilio wa Mikwaju ya Shina + Panga Bila Ukawaida + Upangaji Msimbosare Umekawaidishwa + Panga Tarakimu Kivyake + Panga Dijiti kwa Namba + Panga Zote + Panga Herufi Msingi Tu + Panga Viinitoni/Herufi/Upana/Kana + Panga Viinitoni + Panga Viinitoni/Herufi/Upana + h11 + h12 + h23 + h24 + loose + normal + strict + metriki + mfumo wa UK + Mfumo wa US + Nambari za Kiarabu/Kihindi + Nambari za Kiarabu/Kihindi Zilizopanuliwa + Nambari za Kiarmenia + Nambari Ndogo za Kiarmenia + Nambari za Kibengali + Nambari za Kichami + Nambari za Kidevanagari + Nambari za Kiethiopia + Tarakimu za Kifedha + Nambari za Upana Kamili + Nambari za Georgia + Nambari za Kigiriki + Nambari Ndogo za Kigiriki + Nambari za Kigujarati + Nambari za Kigurumukhi + Nambari za Desimali za Kichina + Nambari za Kichina Rahisi + Nambari za Kifedha za Kichina Rahisi + Nambari za Kichina cha Jadi + Nambari za Kichina za Fedha + Nambari za Kiebrania + Nambari za Kijava + Nambari za Kijapani + Nambari za Kifedha za Kijapani + Nambari za Kikhmeri + Nambari za Kikannada + Nambari za Kilao + Nambari za Magharibi + Nambari za Kilimbu + Nambari za Kimalayamu + Nambari za Kimongolia + Nambari za Myama + Digiti Asili + Nambari za Kioriya + Nambari za Kirumi + Nambari Ndogo za Kirumi + Nambari za Kitakri + Nambari za Kitamili + Nambari za Kitamili + Nambari za Kitelugu + Nambari za Kitai + Nambari za Kitibeti + Tarakimu za Jadi + Dijiti za Vai BGN @@ -869,6 +891,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d y G MMM y G @@ -913,7 +936,7 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm a – h:mm a - h:mm–h:mm a + h:mm – h:mm a h:mm – h:mm a @@ -1168,10 +1191,10 @@ For terms of use, see http://www.unicode.org/copyright.html - R1 - R2 - R3 - R4 + Robo ya 1 + Robo ya 2 + Robo ya 3 + Robo ya 4 1 @@ -1188,10 +1211,10 @@ For terms of use, see http://www.unicode.org/copyright.html - R1 - R2 - R3 - R4 + Robo ya 1 + Robo ya 2 + Robo ya 3 + Robo ya 4 1 @@ -1209,15 +1232,73 @@ For terms of use, see http://www.unicode.org/copyright.html + + saa sita za usiku + AM + saa sita za mchana + PM + alfajiri + asubuhi + mchana + jioni + usiku + + saa sita za usiku am - PM + saa sita za mchana pm + alfajiri + asubuhi + mchana + jioni + usiku + saa sita za usiku AM - PM + saa sita za mchana PM + alfajiri + asubuhi + mchana + jioni + usiku + + + + + saa sita za usiku + AM + saa sita za mchana + PM + alfajiri + asubuhi + mchana + jioni + usiku + + + saa sita za usiku + am + saa sita za mchana + pm + alfajiri + asubuhi + mchana + jioni + usiku + + + saa sita za usiku + AM + saa sita za mchana + PM + alfajiri + asubuhi + mchana + jioni + usiku @@ -1260,22 +1341,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -1318,6 +1399,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d/M E, d/M @@ -1335,7 +1420,7 @@ For terms of use, see http://www.unicode.org/copyright.html d MMM y E, MMM d, y MMMM y - QQQ y + y QQQ QQQQ y @@ -1390,18 +1475,18 @@ For terms of use, see http://www.unicode.org/copyright.html E, d/M – E, d/M - MMM – MMM + LLL–LLL MMM d–d MMM d – MMM d - E, MMM d– E, MMM d - E, MMM d– E, MMM d + MMM d, E – MMM d, E + MMM d, E – MMM d, E - y – y + y–y M/y – M/y @@ -1843,7 +1928,7 @@ For terms of use, see http://www.unicode.org/copyright.html GMT Saa za {0} Saa za Mchana za {0} - Saa za Msingi za {0} + Saa za wastani za {0} {1} ({0}) Jiji Lisilojulikana @@ -2227,7 +2312,7 @@ For terms of use, see http://www.unicode.org/copyright.html Havana - Kepuvede + Cape Verde Kurakao @@ -2712,6 +2797,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -2796,6 +2884,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Chita + Yakutsk @@ -2814,6 +2905,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolymsk + Kamchatka @@ -3123,7 +3217,7 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Alaska - Saa Wastani za Alaska + Saa za Wastani za Alaska Saa za Mchana za Alaska @@ -3187,7 +3281,7 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Ajentina Saa Wastani za Ajentina - Saa za Kiangazi za Ajentina + Saa za Majira ya joto za Ajentina @@ -3214,14 +3308,14 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Australia ya Kati - Saa za Wastani za Australia ya Kati + Saa Wastani za Australia ya Kati Saa za Mchana za Australia ya Kati Saa za Magharibi ya Kati ya Australia - Saa za Wastani za Magharibi ya Kati ya Australia + Saa Wastani za Magharibi ya Kati ya Australia Saa za Mchana za Magharibi ya Kati ya Australia @@ -3235,7 +3329,7 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Australia Magharibi - Saa za Wastani za Australia Magharibi + Saa Wastani za Australia Magharibi Saa za Mchana za Australia Magharibi @@ -3248,9 +3342,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Saa za Azorena - Saa Wastani za Azorena - Saa za Majira ya joto za Azorerna + Saa za Azores + Saa Wastani za Azores + Saa za Majira ya joto za Azores @@ -3274,7 +3368,7 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Brasilia Saa Wastani za Brasilia - Saa za Kiangazi za Brasilia + Saa za Majira ya joto za Brasilia @@ -3286,7 +3380,7 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Cape Verde Saa Wastani za Cape Verde - Saa ya Majira ya joto ya Cape Verde + Saa za Majira ya joto za Cape Verde @@ -3319,7 +3413,7 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Choibalsan Saa Wastani za Choibalsan - Saa za Kiangazi za Choibalsan + Saa za Majira ya joto za Choibalsan @@ -3343,14 +3437,14 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Visiwa vya Cook Saa Wastani za Visiwa vya Cook - Saa Majira nusu ya joto za Visiwa Cook + Saa za Majira nusu ya joto za Visiwa Cook - Saa ya Kuba - Saa Wastani ya Kuba - Saa ya Mchana ya Kuba + Saa za Cuba + Saa za Wastani ya Cuba + Saa za Mchana za Cuba @@ -3396,7 +3490,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Further-eastern European Time + Saa za Further-eastern European Time @@ -3459,16 +3553,16 @@ For terms of use, see http://www.unicode.org/copyright.html - Saa ya Grinilandi Mashariki - Saa Wastani ya Grinilandi Mashariki - Saa ya Majira ya joto ya Grinilandi Mashariki + Saa za Greenland Mashariki + Saa za Wastani za Greenland Mashariki + Saa za Majira ya joto za Greenland Mashariki - Saa ya Grinilandi Magharibi - Saa Wastani wa Grinilandi Magharibi - Saa ya Majira ya joto ya Grinilandi Magharibi + Saa za Greenland Magharibi + Saa za Wastani za Greenland Magharibi + Saa za Majira ya joto za Greenland Magharibi @@ -3484,8 +3578,8 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Hawaii-Aleutian - Saa Wastani ya Hawaii-Aleutian - Saa ya Mchana ya Hawaii-Aleutian + Saa za Wastani za Hawaii-Aleutian + Saa za Mchana za Hawaii-Aleutian @@ -3499,7 +3593,7 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Hovd Saa Wastani za Hovd - Saa za Kiangazi za Hovd + Saa za Majira ya joto za Hovd @@ -3543,7 +3637,7 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Irkutsk Saa Wastani za Irkutsk - Saa za Kiangazi za Irkutsk + Saa za Majira ya joto za Irkutsk @@ -3593,7 +3687,7 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Krasnoyarsk Saa Wastani za Krasnoyaski - Saa za Kiangazi za Krasnoyarsk + Saa za Majira ya joto za Krasnoyarsk @@ -3609,7 +3703,7 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Lord Howe - Saa za Wastani za Lord Howe + Saa Wastani za Lord Howe Saa za Mchana za Lord Howe @@ -3622,7 +3716,7 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Magadan Saa Wastani za Magadani - Saa za Kiangazi za Magadan + Saa za Majira ya joto za Magadan @@ -3659,15 +3753,15 @@ For terms of use, see http://www.unicode.org/copyright.html - saa za Meksiko Kaskazini Magharibi - saa wastani za Meksiko Kaskazini Magharibi - saa za mchana za Meksiko Kaskazini Magharibi + Saa za Meksiko Kaskazini Magharibi + Saa za wastani za Meksiko Kaskazini Magharibi + Saa za mchana za Meksiko Kaskazini Magharibi Saa za pasifiki za Meksiko - Saa wastani za pasifiki za Meksiko + Saa za wastani za pasifiki za Meksiko Saa za mchana za pasifiki za Meksiko @@ -3675,14 +3769,14 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Ulan Bator Saa Wastani za Ulan Bator - Saa za Kiangazi za Ulan Bator + Saa za Majira ya joto za Ulan Bator Saa za Moscow Saa za Wastani za Moscow - Saa za Kiangazi za Moscow + Saa za Majira ya joto za Moscow @@ -3735,21 +3829,21 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Fernando de Noronha Saa Wastani za Fernando de Noronha - Saa za Kiangazi za Fernando de Noronha + Saa za Majira ya joto za Fernando de Noronha Saa za Novosibirsk Saa Wastani za Novosibirsk - Saa za Kiangazi za Novosibirsk + Saa za Majira ya joto za Novosibirsk Saa za Omsk Saa Wastani za Omsk - Saa za Kiangazi za Omsk + Saa za Majira ya joto za Omsk @@ -3797,9 +3891,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Saa ya Saint-Pierre na Mikuelon - Saa Wastani ya Saint-Pierre na Mikuelon - Saa ya Mchana ya Saint-Pierre na Mikuelon + Saa za Saint-Pierre na Miquelon + Saa za Wastani ya Saint-Pierre na Miquelon + Saa za Mchana za Saint-Pierre na Miquelon @@ -3826,7 +3920,7 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Sakhalin Saa Wastani za Sakhalin - Saa za Kiangazi za Sakhalin + Saa za Majira ya joto za Sakhalin @@ -3949,14 +4043,14 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Vladivostok Saa Wastani za Vladivostok - Saa za Kiangazi za Vladivostok + Saa za Majira ya joto za Vladivostok Saa za Volgograd Saa Wastani za Volgograd - Saa za Kiangazi za Volgograd + Saa za Majira ya joto za Volgograd @@ -3978,14 +4072,14 @@ For terms of use, see http://www.unicode.org/copyright.html Saa za Yakutsk Saa Wastani za Yakutsk - Saa za Kiangazi za Yakutsk + Saa za Majira ya joto za Yakutsk Saa za Yekaterinburg Saa Wastani za Yekaterinburg - Saa za Kiangazi za Yekaterinburg + Saa za Majira ya joto za Yekaterinburg @@ -4096,6 +4190,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤elfu 0 + ¤elfu 0 + ¤elfu 00 + ¤elfu 00 + ¤elfu 000 + ¤elfu 000 + ¤M0 + ¤M0 + ¤M00 + ¤M00 + ¤M000 + ¤M000 + ¤B0 + ¤B0 + ¤B00 + ¤B00 + ¤B000 + ¤B000 + ¤T0 + ¤T0 + ¤T00 + ¤T00 + ¤T000 + ¤T000 + + {1} {0} {1} {0} @@ -4107,9 +4229,9 @@ For terms of use, see http://www.unicode.org/copyright.html AED - Afghani ya Afuganistani - Afghani ya Afuganistani - Afghani za Afuganistani + Afghani ya Afghanistan + Afghani ya Afghanistan + Afghani za Afghanistan AFN @@ -4135,6 +4257,7 @@ For terms of use, see http://www.unicode.org/copyright.html kwanza ya Angola kwanza za Angola AOA + Kz Peso ya Ajentina @@ -4167,6 +4290,7 @@ For terms of use, see http://www.unicode.org/copyright.html Convertible Mark ya Bosnia na Hezegovina Convertible Mark za Bosnia na Hezegovina BAM + KM Dola ya Barbados @@ -4189,9 +4313,9 @@ For terms of use, see http://www.unicode.org/copyright.html BGN - Dinari ya Bahareni - dinari ya Bahareni - dinari za Bahareni + Dinar ya Bahareni + Dinar ya Bahareni + Dinar za Bahareni BHD @@ -4219,6 +4343,7 @@ For terms of use, see http://www.unicode.org/copyright.html Boliviano ya Bolivia Boliviano za Bolivia BOB + Bs Real ya Brazil @@ -4245,6 +4370,7 @@ For terms of use, see http://www.unicode.org/copyright.html pula ya Botswana pula za Botswana BWP + P Ruble ya Belarusi @@ -4312,6 +4438,7 @@ For terms of use, see http://www.unicode.org/copyright.html Peso ya Cuba Inayoweza Kubadilishwa Peso za Cuba Zinazoweza Kubadilishwa CUC + $ Peso ya Cuba @@ -4321,9 +4448,9 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Eskudo ya Kepuvede - eskudo ya Kepuvede - eskudo za Kepuvede + Eskudo ya Cape Verde + Eskudo ya Cape Verde + Eskudo za Cape Verde CVE @@ -4331,6 +4458,7 @@ For terms of use, see http://www.unicode.org/copyright.html Koruna ya Jamhuri ya Cheki Koruna za Jamhuri ya Cheki CZK + Faranga ya Jibuti @@ -4343,6 +4471,7 @@ For terms of use, see http://www.unicode.org/copyright.html Krone ya Denmaki Krone za Denmaki DKK + kr Peso ya Dominika @@ -4362,6 +4491,7 @@ For terms of use, see http://www.unicode.org/copyright.html pauni ya Misri pauni za Misri EGP + Nakfa ya Eritrea @@ -4370,7 +4500,7 @@ For terms of use, see http://www.unicode.org/copyright.html ERN - Nirr ya Uhabeshi + Birr ya Uhabeshi birr ya Uhabeshi birr za Uhabeshi ETB @@ -4394,6 +4524,7 @@ For terms of use, see http://www.unicode.org/copyright.html Pauni ya Visiwa vya Falkland Pauni za Visiwa vya Falkland FKP + £ Pauni ya Uingereza @@ -4407,6 +4538,7 @@ For terms of use, see http://www.unicode.org/copyright.html Lari ya Georgia Lari za Georgia GEL + Sedi ya Ghana @@ -4435,6 +4567,7 @@ For terms of use, see http://www.unicode.org/copyright.html faranga ya Guinea faranga za Guinea GNF + FG Faranga ya Gine @@ -4444,6 +4577,7 @@ For terms of use, see http://www.unicode.org/copyright.html Quetzal ya Guatemala Quetzal za Guatemala GTQ + Q Dola ya Guyana @@ -4464,12 +4598,14 @@ For terms of use, see http://www.unicode.org/copyright.html Lempira ya Hondurasi Lempira za Hondurasi HNL + L Kuna ya Kroeshia Kuna ya Kroeshia Kuna za Kroeshia HRK + kn Gourde ya Haiti @@ -4482,12 +4618,14 @@ For terms of use, see http://www.unicode.org/copyright.html Forint ya Hungaria Forint za Hungaria HUF + Ft Rupiah ya Indonesia Rupiah ya Indonesia Rupiah za Indonesia IDR + Rp Sheqel Mpya ya Israeli @@ -4504,9 +4642,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Dinari ya Iraki - Dinari ya Iraki - Dinari za Iraki + Dinar ya Iraki + Dinar ya Iraki + Dinar za Iraki IQD @@ -4516,10 +4654,11 @@ For terms of use, see http://www.unicode.org/copyright.html IRR - Krona ya Isilandi - Krona ya Isilandi - Krona za Isilandi + Krona ya Aisilandi + Krona ya Aisilandi + Krona za Aisilandi ISK + kr Dola ya Jamaica @@ -4529,9 +4668,9 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Dinari ya Yordani - Dinari ya Yordani - Dinari za Yordani + Dinar ya Yordani + Dinar ya Yordani + Dinar za Yordani JOD @@ -4548,9 +4687,9 @@ For terms of use, see http://www.unicode.org/copyright.html Ksh - Som ya Kirigistani - Som ya Kirigistani - Som za Kirigistani + Som ya Kyrgystani + Som ya Kyrgystani + Som za Kyrgystani KGS @@ -4565,12 +4704,14 @@ For terms of use, see http://www.unicode.org/copyright.html faranga ya Komoro faranga za Komoro KMF + CF Won ya Korea Kaskazini Won ya Korea Kaskazini Won za Korea Kaskazini KPW + Won ya Korea Kusini @@ -4580,9 +4721,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Dinari ya Kuwaiti - Dinari ya Kuwaiti - Dinari za Kuwaiti + Dinar ya Kuwaiti + Dinar ya Kuwaiti + Dinar za Kuwaiti KWD @@ -4611,12 +4752,14 @@ For terms of use, see http://www.unicode.org/copyright.html Pauni ya Lebanon Pauni za Lebanon LBP + - Rupia ya Sirilanka - Rupia ya Sirilanka - Rupia za Sirilanka + Rupia ya Sri Lanka + Rupia ya Sri Lanka + Rupia za Sri Lanka LKR + Rs Dola ya Liberia @@ -4663,6 +4806,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ariari ya Madagaska Ariari za Madagaska MGA + Ar Denar ya Masedonia @@ -4675,6 +4819,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kyat ya Myama Kyat za Myama MMK + K Tugrik ya Mongolia @@ -4700,6 +4845,7 @@ For terms of use, see http://www.unicode.org/copyright.html rupia ya Morisi rupia za Morisi MUR + Rs Rufiyaa ya Maldivi @@ -4725,6 +4871,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ringgit ya Malaysia Ringgit za Malaysia MYR + RM Metikali ya Msumbiji (1980–2006) @@ -4756,18 +4903,21 @@ For terms of use, see http://www.unicode.org/copyright.html Cordoba ya Nikaragua Cordoba za Nikaragua NIO + C$ Krone ya Norwe Krone ya Norwe Krone za Norwe NOK + kr Rupia ya Nepali Rupia ya Nepali Rupia za Nepali NPR + Rs Dola ya Nyuzilandi @@ -4812,12 +4962,14 @@ For terms of use, see http://www.unicode.org/copyright.html Rupia ya Pakistani Rupia za Pakistani PKR + Rs Zloty ya Polandi Zloty ya Polandi Zloty za Polandi PLN + Guarani ya Paragwai @@ -4827,9 +4979,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Rial ya Katari - Rial ya Katari - Rial za Katari + Rial ya Qatari + Rial ya Qatari + Rial za Qatari QAR @@ -4849,12 +5001,14 @@ For terms of use, see http://www.unicode.org/copyright.html Ruble ya Urusi Ruble za Urusi RUB + Faranga ya Rwanda faranga ya Rwanda faranga za Rwanda RWF + RF Riyal ya Saudia @@ -4891,6 +5045,7 @@ For terms of use, see http://www.unicode.org/copyright.html Krona ya Uswidi Krona za Uswidi SEK + kr Dola ya Singapore @@ -4904,11 +5059,12 @@ For terms of use, see http://www.unicode.org/copyright.html pauni ya Santahelena pauni za Santahelena SHP + £ - Leoni - leoni - leoni + Leone + Leone + Leone SLL @@ -4936,12 +5092,14 @@ For terms of use, see http://www.unicode.org/copyright.html dobra ya Sao Tome na Principe dobra za Sao Tome na Principe STD + Db Pauni ya Syria Pauni ya Syria Pauni za Syria SYP + £ Lilangeni @@ -4954,6 +5112,7 @@ For terms of use, see http://www.unicode.org/copyright.html Baht ya Tailandi Baht za Tailandi ฿ + ฿ Somoni ya Tajikistani @@ -4978,6 +5137,7 @@ For terms of use, see http://www.unicode.org/copyright.html Paʻanga ya Tonga Paʻanga za Tonga TOP + T$ Lira ya Uturuki @@ -4985,6 +5145,7 @@ For terms of use, see http://www.unicode.org/copyright.html Lira za Uturuki TRY + TL Dola ya Trinidad na Tobago @@ -5044,11 +5205,12 @@ For terms of use, see http://www.unicode.org/copyright.html Bolivar ya Venezuela Bolivar za Venezuela VEF + Bs - Dong ya Vietinamu - Dong ya Vietinamu - Dong za Vietinamu + Dong ya Vietnam + Dong ya Vietnam + Dong za Vietnam @@ -5075,6 +5237,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dola ya Karibea ya Mashariki Dola za Karibea ya Mashariki EC$ + $ CFA faranga za BCEAO @@ -5089,9 +5252,9 @@ For terms of use, see http://www.unicode.org/copyright.html CFPF - Fedha Zisizojulikana - Fedha Zisizojulikana - Fedha Zisizojulikana + Sarafu isiyojulikana + sarafu isiyojulikana + sarafu zisizojulikana Rial ya Yemeni @@ -5104,6 +5267,7 @@ For terms of use, see http://www.unicode.org/copyright.html randi ya Afrika Kusini randi za Afrika Kusini ZAR + R Kwacha ya Zambia (1968–2012) @@ -5113,6 +5277,7 @@ For terms of use, see http://www.unicode.org/copyright.html kwacha ya Zambia kwacha za Zambia ZMW + ZK Dola ya Zimbabwe @@ -5126,18 +5291,33 @@ For terms of use, see http://www.unicode.org/copyright.html - {0}kwa kila{1} + {0} kwa kila {1} - Mvuto wa graviti - Mvuto wa graviti {0} - Mvuto wa graviti {0} + mvuto wa graviti + mvuto wa graviti {0} + mvuto wa graviti {0} mita kwa kila sekunde mraba mita {0} kwa kila sekunde mraba mita {0} kwa kila sekunde mraba + + mzunguko + mzunguko {0} + mizunguko {0} + + + radiani + radiani {0} + radiani {0} + + + digrii + digrii {0} + digrii {0} + dakika dakika {0} @@ -5148,173 +5328,186 @@ For terms of use, see http://www.unicode.org/copyright.html sekunde {0} sekunde {0} - - digrii - digrii {0} - digrii {0} - - - radiani - radiani {0} - radiani {0} - - - Ekari - Ekari {0} - Ekari {0} + + kilomita za mraba + kilomita {0} ya mraba + kilomita {0} za mraba - Hektari - Hektari {0} - Hektari {0} + hekta + hekta {0} + hekta {0} + + + mita za mraba + mita {0} ya mraba + mita {0} za mraba + {0} kwa kila mita ya mraba sentimita mraba sentimita mraba {0} sentimita mraba {0} - - - futi za mraba - Futi {0} ya mraba - Futi {0} za mraba - - - inchi za mraba - inchi {0} ya mraba - inchi {0} za mraba - - - kilomita za mraba - Kilomita {0} ya mraba - Kilomita {0} za mraba - - - mita za mraba - Mita {0} ya mraba - Mita {0} za mraba + {0} kwa kila sentimita mraba maili za mraba - Maili {0} ya mraba - Maili {0} za mraba + maili {0} ya mraba + maili {0} za mraba + + + ekari + ekari {0} + ekari {0} yadi za mraba yadi {0} ya mraba yadi {0} za mraba + + futi za mraba + futi {0} ya mraba + futi {0} za mraba + + + inchi za mraba + inchi {0} ya mraba + inchi {0} za mraba + {0} kwa kila inchi ya mraba + + + karati + karati {0} + karati {0} + - lita kwa kilomita + lita kwa kila kilomita lita {0} kwa kilomita lita {0} kwa kilomita + + lita kwa kilomita 100 + lita {0} kwa kilomita 100 + lita {0} kwa kilomita 100 + maili kwa kila galoni maili {0} kwa kila galoni maili {0} kwa kila galoni - - biti - biti {0} - biti {0} - - - baiti - baiti {0} - baiti {0} - - - gigabiti - gigabiti {0} - gigabiti {0} - - - gigabaiti - Gigabaiti {0} - Gigabaiti {0} - - - kilobiti - kilobiti {0} - kilobiti {0} - - - kilobaiti - kilobaiti {0} - kilobaiti {0} - - - megabiti - megabiti {0} - megabiti {0} - - - megabaiti - Megabaiti {0} - Megabaiti {0} + + terabaiti + terabaiti {0} + terabaiti {0} terabiti terabiti {0} terabiti {0} - - terabaiti - terabaiti {0} - terabaiti {0} + + gigabaiti + gigabaiti {0} + gigabaiti {0} + + + gigabiti + gigabiti {0} + gigabiti {0} + + + megabaiti + megabaiti {0} + megabaiti {0} + + + megabiti + megabiti {0} + megabiti {0} + + + kilobaiti + kilobaiti {0} + kilobaiti {0} + + + kilobiti + kilobiti {0} + kilobiti {0} + + + baiti + baiti {0} + baiti {0} + + + biti + biti {0} + biti {0} + + + karne + karne ya {0} + karne za {0} + + + miaka + mwaka {0} + miaka {0} + {0} kwa mwaka + + + miezi + mwezi {0} + miezi {0} + {0} kwa mwezi + + + wiki + wiki {0} + wiki {0} + {0} kwa wiki siku siku {0} siku {0} + {0} kwa siku saa saa {0} saa {0} - {0}/h + {0} kwa saa - - mikrosekunde - mikrosekunde {0} - mikrosekunde {0} + + dakika + dakika {0} + dakika {0} + {0} kwa kila dakika + + + sekunde + sekunde {0} + sekunde {0} + {0} kwa kila sekunde millisekunde millisekunde {0} millisekunde {0} - - dakika - dakika {0} - dakika {0} - - - miezi - mwezi {0} - miezi {0} + + mikrosekunde + mikrosekunde {0} + mikrosekunde {0} nanosekunde nanosekunde {0} nanosekunde {0} - - sekunde - sekunde {0} - sekunde {0} - {0}/s - - - wiki - wiki {0} - wiki {0} - - - miaka - mwaka {0} - miaka {0} - ampea ampea {0} @@ -5335,6 +5528,11 @@ For terms of use, see http://www.unicode.org/copyright.html volti {0} volti {0} + + kilokalori + kilokalori {0} + kilokalori {0} + kalori kalori {0} @@ -5345,21 +5543,16 @@ For terms of use, see http://www.unicode.org/copyright.html kalori {0} kalori {0} - - jouli - jouli {0} - jouli {0} - - - kilokalori - kilokalori {0} - kilokalori {0} - kilojuli kilojuli {0} kilojuli {0} + + jouli + jouli {0} + jouli {0} + kilowati kwa saa kilowati {0} kwa saa @@ -5370,200 +5563,204 @@ For terms of use, see http://www.unicode.org/copyright.html gigahezi {0} gigahezi {0} - - hezi - hezi {0} - hezi {0} + + megahezi + megahezi {0} + megahezi {0} kilohezi kilohezi {0} kilohezi {0} - - megahezi - megahezi {0} - megahezi {0} + + hezi + hezi {0} + hezi {0} - - vipimo vya astronomia - kipimo {0} cha astronomia - vipimo {0} vya astronomia + + kilomita + kilomita {0} + kilomita {0} + {0} kwa kila kilomita - - Sentimita - Sentimita {0} - Sentimita {0} + + mita + mita {0} + mita {0} + {0} kwa kila mita desimita desimita {0} desimita {0} - - Futi - Futi {0} - Futi {0} + + sentimita + sentimita {0} + sentimita {0} + {0} kwa kila sentimita - - Inchi - Inchi {0} - Inchi {0} - - - Kilomita - Kilomita {0} - Kilomita {0} - - - Miaka ya mwanga - Mwaka wa mwanga {0} - Miaka ya mwanga {0} - - - Mita - Mita {0} - Mita {0} + + milimita + milimita {0} + milimita {0} mikromita mikromita {0} mikromita {0} - - Maili - Maili {0} - Maili {0} - - - Millimita - Millimita {0} - Millimita {0} - nanomita nanomita {0} nanomita {0} - - maili za kibaharia - maili {0} ya kibaharia - maili {0} za kibaharia + + pikomita + pikomita {0} + pikomita {0} + + + maili + maili {0} + maili {0} + + + yadi + yadi {0} + yadi {0} + + + futi + futi {0} + futi {0} + {0} kwa kila futi + + + inchi + inchi {0} + inchi {0} + {0} kwa kila inchi parsecs parsec {0} parsecs {0} - - Pikomita - Pikomita {0} - Pikomita {0} + + miaka ya mwanga + miaka ya mwanga {0} + miaka ya mwanga {0} - - Yadi - Yadi {0} - Yadi {0} + + vipimo vya astronomia + kipimo {0} cha astronomia + vipimo {0} vya astronomia + + + maili za kibaharia + maili {0} ya kibaharia + maili {0} za kibaharia + + + smi + {0} smi + {0} smi lux lux {0} lux {0} - - karati - karati {0} - karati {0} - - - Gramu - Gramu {0} - Gramu {0} - - - Kilogramu - Kilogramu {0} - Kilogramu {0} - tani mita tani mita {0} tani mita {0} - - mikrogramu - mikrogramu {0} - mikrogramu {0} + + kilogramu + kilogramu {0} + kilogramu {0} + {0} kwa kila kilogramu + + + gramu + gramu {0} + gramu {0} + {0} kwa kila gramu miligramu miligramu {0} miligramu {0} - - Aunsi - Aunsi {0} - Aunsi {0} - - - tola aunsi - tola aunsi {0} - tola aunsi {0} - - - Ratili - Ratili {0} - Ratili {0} + + mikrogramu + mikrogramu {0} + mikrogramu {0} tani tani {0} tani {0} + + ratili + ratili {0} + ratili {0} + {0} kwa kila ratili + + + aunsi + aunsi {0} + aunsi {0} + {0} kwa kila aunsi + + + tola aunsi + tola aunsi {0} + tola aunsi {0} + + + karati + karati {0} + karati {0} + gigawati gigawati {0} gigawati {0} - - Kipimo cha Hospawa - Kipimo cha Hospawa {0} - Kipimo cha Hospawa {0} - - - Kilowati - Kilowati {0} - Kilowati {0} - megawati megawati {0} megawati {0} + + kilowati + kilowati {0} + kilowati {0} + + + wati + wati {0} + wati {0} + miliwati miliwati {0} miliwati {0} - - Wati - Wati {0} - Wati {0} + + kipimo cha hospawa + kipimo cha hospawa {0} + kipimo cha hospawa {0} - Hektopaskali - Hektopaskali {0} - Hektopaskali {0} - - - Inchi za zebaki - Inchi za zebaki {0} - Inchi za zebaki {0} - - - Kipimo cha milibari - Kipimo cha milibari {0} - Kipimo cha milibari {0} + hektopaskali + hektopaskali {0} + hektopaskali {0} milimita za zebaki @@ -5575,55 +5772,82 @@ For terms of use, see http://www.unicode.org/copyright.html pauni {0} kwa kila inchi mraba pauni {0} kwa kila inchi mraba - - karati - karati {0} - karati {0} + + inchi za zebaki + inchi {0} ya zebaki + inchi {0} za zebaki + + + kipimo cha milibari + kipimo cha milibari {0} + kipimo cha milibari {0} kilomita kwa saa - Kilomita {0} kwa saa - Kilomita {0} kwa saa + kilomita {0} kwa saa + kilomita {0} kwa saa mita kwa kila sekunde - Mita {0} kwa sekunde - Mita {0} kwa sekunde + mita {0} kwa sekunde + mita {0} kwa sekunde maili kwa kila saa - Maili {0} kwa saa - Maili {0} kwa saa + maili {0} kwa saa + maili {0} kwa saa + + + noti + noti {0} + noti {0} + + + ° + {0}° + {0}° - Nyuzi za Selisiasi - Nyuzi za Selisiasi {0} - Nyuzi za Selisiasi {0} + nyuzi za selisiasi + nyuzi ya selisiasi {0} + nyuzi za selisiasi {0} - Nyuzi za Farenheiti - Nyuzi za Farenheiti {0} - Nyuzi za Farenheiti {0} + nyuzi za farenheiti + nyuzi za farenheiti {0} + nyuzi za farenheiti {0} kelvini kelvini {0} kelvini {0} - - ekari futi - ekari futi {0} - ekari futi {0} + + kilomita za ujazo + kilomita {0} ya ujazo + kilomita {0} za ujazo - - sentilita - sentilita {0} - sentilita {0} + + mita za ujazo + mita {0} ya ujazo + mita {0} za ujazo + {0} kwa kila mita ya ujazo sentimita za ujazo sentimita {0} ya ujazo sentimita {0} za ujazo + {0} kwa kila sentimita ya ujazo + + + maili za ujazo + maili {0} ya ujazo + maili {0} za ujazo + + + yadi za ujazo + yadi {0} ya ujazo + yadi {0} za ujazo futi za ujazo @@ -5635,45 +5859,10 @@ For terms of use, see http://www.unicode.org/copyright.html inchi {0} ya ujazo inchi {0} za ujazo - - kilomita za ujazo - Kilomita {0} ya ujazo - Kilomita {0} ya ujazo - - - mita za ujazo - mita {0} ya ujazo - mita {0} za ujazo - - - maili za ujazo - Maili {0} ya ujazo - Maili {0} ya ujazo - - - yadi za ujazo - yadi {0} ya ujazo - yadi {0} za ujazo - - - vikombe - kikombe {0} - vikombe {0} - - - desilita - desilita {0} - desilita {0} - - - aunsi za ujazo - aunsi {0} ya ujazo - aunsi {0} za ujazo - - - galoni - galoni {0} - galoni {0} + + megalita + megalita {0} + megalita {0} hektolita @@ -5681,30 +5870,67 @@ For terms of use, see http://www.unicode.org/copyright.html hektolita {0} - Lita - Lita {0} - Lita {0} + lita + lita {0} + lita {0} + {0} kwa kila lita - - megalita - megalita {0} - megalita {0} + + desilita + desilita {0} + desilita {0} + + + sentilita + sentilita {0} + sentilita {0} mililita mililita {0} mililita {0} - - painti - painti {0} - painti {0} + + painti za mizani + painti {0} ya mizani + painti {0} za mizani + + + vikombe vya mizani + kikombe {0} cha mizani + vikombe {0} vya mizani + + + ekari futi + ekari futi {0} + ekari futi {0} + + + galoni + galoni {0} + galoni {0} + {0} kwa kila galoni kwati kwati {0} kwati {0} + + painti + painti {0} + painti {0} + + + vikombe + kikombe {0} + vikombe {0} + + + aunsi za ujazo + aunsi {0} ya ujazo + aunsi {0} za ujazo + vijiko vikubwa kijiko {0} kikubwa @@ -5715,13 +5941,19 @@ For terms of use, see http://www.unicode.org/copyright.html kijiko {0} kidogo vijiko {0} vidogo + + {0}E + {0}N + {0}S + {0}W + {0}/{1} - Mvuto wa graviti + mvuto wa graviti G {0} G {0} @@ -5730,6 +5962,21 @@ For terms of use, see http://www.unicode.org/copyright.html m {0}/s² m {0}/s² + + mzunguko + mzunguko {0} + mizunguko {0} + + + radiani + radiani {0} + radiani {0} + + + digrii + digrii {0} + digrii {0} + dakika dakika {0} @@ -5740,173 +5987,186 @@ For terms of use, see http://www.unicode.org/copyright.html sekunde {0} sekunde {0} - - digrii - digrii {0} - Digrii {0}° - - - radiani - radiani {0} - radiani {0} - - - Ekari - Ekari {0} - Ekari {0} + + kilomita za mraba + km² {0} + km² {0} - Hektari - Hektari {0} - Hektari {0} + hekta + hekta {0} + hekta {0} + + + mita za mraba + mita {0} ya mraba + m² {0} + {0}/m² sentimita mraba - sentimita mraba {0} - sentimita mraba {0} + cm² {0} + cm² {0} + {0}/cm² + + + maili za mraba + maili {0} ya mraba + maili {0} za mraba + + + ekari + ekari {0} + ekari {0} + + + yadi za mraba + yadi {0} ya mraba + yadi {0} za mraba - ft² + futi za mraba ft² {0} ft² {0} inchi za mraba - inchi {0} ya mraba - inchi {0} za mraba + in² {0} + in² {0} + {0}/in² - - km² - km² {0} - km² {0} - - - - m² {0} - m² {0} - - - mi² - mi² {0} - mi² {0} - - - yd² - yd² {0} - yd² {0} + + karati + karati {0} + karati {0} - L/km + lita kwa kila kilomita lita {0} kwa kilomita lita {0} kwa kilomita + + lita kwa kilomita 100 + lita {0} kwa kilomita 100 + lita {0} kwa kilomita 100 + maili kwa kila galoni maili {0} kwa kila galoni maili {0} kwa kila galoni - - biti - biti {0} - biti {0} - - - baiti - baiti {0} - baiti {0} - - - gigabiti - gigabiti {0} - gigabiti {0} - - - GB - GB {0} - GB {0} - - - kilobiti - kilobiti {0} - kilobiti {0} - - - kilobaiti - kilobaiti {0} - kilobaiti {0} - - - megabiti - megabiti {0} - megabiti {0} - - - MB - MB {0} - MB {0} + + terabaiti + terabaiti {0} + terabaiti {0} terabiti terabiti {0} terabiti {0} - - terabaiti - terabaiti {0} - terabaiti {0} + + GB + GB {0} + GB {0} + + + gigabiti + gigabiti {0} + gigabiti {0} + + + MB + MB {0} + MB {0} + + + Mb + megabiti {0} + megabiti {0} + + + kilobaiti + kilobaiti {0} + kilobaiti {0} + + + kilobiti + kilobiti {0} + kilobiti {0} + + + baiti + baiti {0} + baiti {0} + + + biti + biti {0} + biti {0} + + + karne + karne ya {0} + karne za {0} + + + miaka + mwaka {0} + miaka {0} + {0} kwa mwaka + + + miezi + mwezi {0} + miezi {0} + {0} kwa mwezi + + + wiki + wiki {0} + wiki {0} + {0} kwa wiki siku siku {0} siku {0} + {0} kwa siku saa saa {0} saa {0} - {0}/h + {0} kwa saa + + + dakika + dakika {0} + dakika {0} + {0} kwa kila dakika + + + sekunde + sekunde {0} + sekunde {0} + {0} kwa kila sekunde + + + millisekunde + millisekunde {0} + millisekunde {0} mikrosekunde mikrosekunde {0} mikrosekunde {0} - - millisekunde - ms {0} - ms {0} - - - dakika - dakika {0} - dakika {0} - - - miezi - mwezi {0} - miezi {0} - nanosekunde nanosekunde {0} nanosekunde {0} - - sekunde - sekunde {0} - sekunde {0} - {0}/s - - - wiki - wiki {0} - wiki {0} - - - miaka - mwaka {0} - miaka {0} - ampea ampea {0} @@ -5927,236 +6187,240 @@ For terms of use, see http://www.unicode.org/copyright.html volti {0} volti {0} + + kilokalori + kilokalori {0} + kilokalori {0} + - kalori + cal kalori {0} - kalori {0} + {0} cal kalori kalori {0} kalori {0} - - jouli - jouli {0} - jouli {0} - - - kilokalori - kilokalori {0} - kilokalori {0} - kilojuli kilojuli {0} kilojuli {0} + + jouli + jouli {0} + jouli {0} + kilowati kwa saa - kilowati {0} kwa saa - kilowati {0} kwa saa + {0} kWh + {0} kWh gigahezi gigahezi {0} gigahezi {0} - - hezi - hezi {0} - hezi {0} + + megahezi + megahezi {0} + megahezi {0} kilohezi kilohezi {0} kilohezi {0} - - megahezi - megahezi {0} - megahezi {0} + + hezi + hezi {0} + hezi {0} - - vipimo vya astronomia - au {0} - au {0} + + kilomita + km {0} + km {0} + {0} kwa kila kilomita - - Sentimita - Sentimita {0} - Sentimita {0} + + mita + mita {0} + mita {0} + {0} kwa kila mita desimita desimita {0} desimita {0} - - Futi - Futi {0} - Futi {0} + + sentimita + sentimita {0} + sentimita {0} + {0} kwa kila sentimita - - Inchi - Inchi {0} - Inchi {0} - - - Kilomita - Kilomita {0} - Kilomita {0} - - - Miaka ya mwanga - ly {0} - ly {0} - - - Mita - Mita {0} - Mita {0} + + milimita + milimita {0} + milimita {0} mikromita mikromita {0} mikromita {0} - - Maili - Maili {0} - Maili {0} - - - Millimita - Millimita {0} - Millimita {0} - nanomita nanomita {0} nanomita {0} + + pikomita + pikomita {0} + pikomita {0} + + + maili + maili {0} + maili {0} + + + yadi + yadi {0} + yadi {0} + + + futi + futi {0} + futi {0} + {0} kwa kila futi + + + inchi + inchi {0} + inchi {0} + {0} kwa kila inchi + + + parsecs + {0} pc + {0} pc + + + miaka ya mwanga + ly {0} + ly {0} + + + vipimo vya astronomia + au {0} + au {0} + maili za kibaharia maili {0} ya kibaharia maili {0} za kibaharia - - parsecs - pc {0} - pc {0} - - - Pikomita - Pikomita {0} - Pikomita {0} - - - Yadi - Yadi {0} - Yadi {0} + + smi + {0} smi + {0} smi lux - lux {0} - lux {0} - - - karati - karati {0} - karati {0} - - - Gramu - Gramu {0} - Gramu {0} - - - Kilogramu - kg {0} - kg {0} + lx {0} + lx {0} tani mita tani mita {0} tani mita {0} - - mikrogramu - mikrogramu {0} - mikrogramu {0} + + kilogramu + kg {0} + kg {0} + {0}/kg + + + gramu + gramu {0} + gramu {0} + {0} kwa kila gramu miligramu mg {0} mg {0} - - Aunsi - Aunsi {0} - Aunsi {0} - - - tola aunsi - tola aunsi {0} - tola aunsi {0} - - - Ratili - Ratili {0} - Ratili {0} + + mikrogramu + mikrogramu {0} + mikrogramu {0} tani tani {0} tani {0} + + ratili + ratili {0} + ratili {0} + {0}/lb + + + aunsi + aunsi {0} + aunsi {0} + {0}/oz + + + tola aunsi + tola aunsi {0} + tola aunsi {0} + + + karati + karati {0} + karati {0} + gigawati gigawati {0} gigawati {0} - - Kipimo cha Hospawa - hp {0} - hp {0} - - - Kilowati - Kilowati {0} - Kilowati {0} - megawati megawati {0} megawati {0} + + kilowati + kilowati {0} + kilowati {0} + + + wati + wati {0} + wati {0} + miliwati miliwati {0} miliwati {0} - - Wati - Wati {0} - Wati {0} + + kipimo cha hospawa + {0} hp + {0} hp - Hektopaskali + hektopaskali hPa {0} hPa {0} - - Inchi za zebaki - {0} inHg - {0} inHg - - - Kipimo cha milibari - mbar {0} - mbar {0} - milimita za zebaki milimita {0} ya zebaki @@ -6167,10 +6431,15 @@ For terms of use, see http://www.unicode.org/copyright.html psi {0} psi {0} - - karati - karati {0} - karati {0} + + inchi za zebaki + {0} inHg + {0} inHg + + + kipimo cha milibari + mbar {0} + mbar {0} kilomita kwa saa @@ -6179,21 +6448,31 @@ For terms of use, see http://www.unicode.org/copyright.html mita kwa kila sekunde - m {0}/s - m {0}/s + {0} m/s + {0} m/s maili kwa kila saa - mi {0}/saa - mi {0}/saa + {0} mph + {0} mph + + + noti + noti {0} + noti {0} + + + ° + {0}° + {0}° - Nyuzi za Selisiasi + nyuzi za selisiasi {0}°C {0}°C - Nyuzi za Farenheiti + nyuzi za farenheiti {0}°F {0}°F @@ -6202,31 +6481,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ekari futi - ekari futi {0} - ekari futi {0} - - - sentilita - sentilita {0} - sentilita {0} - - - sentimita za ujazo - cm³ {0} - cm³ {0} - - - futi za ujazo - futi {0} ya ujazo - futi {0} za ujazo - - - inchi za ujazo - inchi {0} ya ujazo - inchi {0} za ujazo - kilomita za ujazo km³ {0} @@ -6234,8 +6488,15 @@ For terms of use, see http://www.unicode.org/copyright.html mita za ujazo - mita {0} ya ujazo + m³ {0} mita {0} za ujazo + {0}/m³ + + + sentimita za ujazo + cm³ {0} + cm³ {0} + {0}/cm³ maili za ujazo @@ -6244,28 +6505,23 @@ For terms of use, see http://www.unicode.org/copyright.html yadi za ujazo - yadi {0} ya ujazo - yadi {0} za ujazo + yd³ {0} + yd³ {0} - - vikombe - kikombe {0} - vikombe {0} + + futi za ujazo + ft³ {0} + ft³ {0} - - desilita - desilita {0} - desilita {0} + + inchi za ujazo + in³ {0} + in³ {0} - - aunsi za ujazo - aunsi {0} ya ujazo - aunsi {0} za ujazo - - - galoni - galoni {0} - galoni {0} + + megalita + megalita {0} + megalita {0} hektolita @@ -6273,30 +6529,67 @@ For terms of use, see http://www.unicode.org/copyright.html hektolita {0} - Lita - Lita {0} - Lita {0} + lita + lita {0} + lita {0} + {0} kwa kila lita - - megalita - megalita {0} - megalita {0} + + desilita + desilita {0} + desilita {0} + + + sentilita + sentilita {0} + sentilita {0} mililita mililita {0} mililita {0} - - painti - painti {0} - painti {0} + + painti za mizani + mpt {0} + mpt {0} + + + vikombe vya mizani + mc {0} + vikombe {0} vya mizani + + + ekari futi + ekari futi {0} + ekari futi {0} + + + galoni + galoni {0} + galoni {0} + {0}/gal kwati kwati {0} kwati {0} + + painti + painti {0} + painti {0} + + + vikombe + kikombe {0} + vikombe {0} + + + aunsi za ujazo + fl oz {0} + fl oz {0} + vijiko vikubwa kijiko {0} kikubwa @@ -6307,6 +6600,12 @@ For terms of use, see http://www.unicode.org/copyright.html kijiko {0} kidogo vijiko {0} vidogo + + {0}E + {0}N + {0}S + {0}W + @@ -6316,6 +6615,10 @@ For terms of use, see http://www.unicode.org/copyright.html G {0} G {0} + + {0}° + {0}° + {0}′ {0}′ @@ -6324,26 +6627,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - Ekari {0} - Ekari {0} + + km² {0} + km² {0} ha {0} ha {0} - - ft² {0} - ft² {0} - - - km² {0} - km² {0} - m² {0} m² {0} @@ -6352,6 +6643,34 @@ For terms of use, see http://www.unicode.org/copyright.html mi² {0} mi² {0} + + Ekari {0} + Ekari {0} + + + ft² {0} + ft² {0} + + + lita kwa kilomita 100 + {0}L/100km + {0}L/100km + + + mwaka + mwaka {0} + miaka {0} + + + mwezi + mwezi {0} + miezi {0} + + + wiki + wiki {0} + wiki {0} + siku siku {0} @@ -6362,110 +6681,100 @@ For terms of use, see http://www.unicode.org/copyright.html saa {0} saa {0} - - millisekunde - ms {0} - ms {0} - dakika dakika {0} dakika {0} - - mwezi - mwezi {0} - miezi {0} - sekunde - s {0} - s {0} + sekunde {0} + sekunde {0} - - wiki - wiki {0} - wiki {0} + + millisekunde + ms {0} + ms {0} - - mwaka - mwaka {0} - miaka {0} + + volti + + + km + km {0} + km {0} + + + mita + mita {0} + mita {0} - Sentimita - cm {0} - cm {0} + sentimita + {0} cm + {0} cm + + + milimita + {0} mm + {0} mm + + + pm {0} + pm {0} + + + Maili {0} + Maili {0} + + + Yadi {0} + Yadi {0} Futi {0} Futi {0} + Inchi Inchi {0} Inchi {0} - - Kilomita - km {0} - km {0} - ly {0} ly {0} - - Mita - Mita {0} - Mita {0} - - - Maili {0} - Maili {0} - - - Millimita - mm {0} - mm {0} - - - pm {0} - pm {0} - - - Yadi {0} - Yadi {0} - - - Gramu - g {0} - g {0} - - Kilogramu + kilogramu kg {0} kg {0} - - Aunsi {0} - Aunsi {0} + + gramu + gramu {0} + gramu {0} Ratili {0} Ratili {0} - - hp {0} - hp {0} + + Aunsi {0} + Aunsi {0} kW {0} kW {0} + wati Wati {0} Wati {0} + + hp {0} + hp {0} + hPa {0} hPa {0} @@ -6492,9 +6801,9 @@ For terms of use, see http://www.unicode.org/copyright.html mi {0}/saa - Nyuzi za Selisiasi - {0}° - {0}° + nyuzi za selisiasi + {0}°C + {0}°C {0}°F @@ -6509,10 +6818,16 @@ For terms of use, see http://www.unicode.org/copyright.html mi³ {0} - Lita - Lita {0} - Lita {0} + lita + lita {0} + lita {0} + + {0}E + {0}N + {0}S + {0}W + h:mm @@ -6528,25 +6843,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0}, {1} {0}, {1} - {0}, na {1} + {0} na {1} {0} na {1} {0}, {1} {0}, {1} - {0}, na {1} + {0} na {1} {0} na {1} {0}, {1} {0}, {1} - {0}, na {1} + {0} na {1} {0} na {1} {0}, {1} {0}, {1} - {0}, na {1} + {0} na {1} {0} na {1} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sw_CD.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sw_CD.xml similarity index 90% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sw_CD.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sw_CD.xml index eb2ac006681..3af71b3a1d9 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sw_CD.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sw_CD.xml @@ -1,13 +1,12 @@ - - - + @@ -17,7 +16,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kibangla Kichecki Kingereza - Kiswahili ya Kongo + Kiswahili ya Kongo Afuganistani @@ -174,28 +173,6 @@ For terms of use, see http://www.unicode.org/copyright.html - - - - HH:mm:ss zzzz - - - - - HH:mm:ss z - - - - - HH:mm:ss - - - - - HH:mm - - - E d/M diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sw_KE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sw_KE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sw_KE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sw_KE.xml index 1295fe3bff3..cbf05663738 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sw_KE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sw_KE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sw_TZ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sw_TZ.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sw_TZ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sw_TZ.xml index 17bd364b18a..d51d2cc7044 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sw_TZ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sw_TZ.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sw_UG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sw_UG.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sw_UG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sw_UG.xml index 95f88fcc6c2..f9cdba57929 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/sw_UG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/sw_UG.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ta.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ta.xml similarity index 84% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ta.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ta.xml index a724ffa584e..acef4dfaf8b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ta.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ta.xml @@ -1,13 +1,12 @@ - - - + @@ -38,12 +37,12 @@ For terms of use, see http://www.unicode.org/copyright.html பழைய ஆங்கிலம் அங்கிகா அரபிக் - மாடர்ன் ஸ்டாண்டர்ட் அரபிக் + நவீன நிலையான அரபிக் அராமைக் மபுசே அரபஹோ அராவாக் - அஸ்ஸாமி + அஸ்ஸாமீஸ் அசு அஸ்துரியன் அவேரிக் @@ -51,7 +50,7 @@ For terms of use, see http://www.unicode.org/copyright.html அய்மரா அஸர்பைஜானி அஸேரி - பாஷ்கிர் + பஷ்கிர் பெலுசி பலினீஸ் பாஸா @@ -61,6 +60,7 @@ For terms of use, see http://www.unicode.org/copyright.html பெனா படகா பல்கேரியன் + மேற்கு பலோச்சி போஜ்பூரி பிஸ்லாமா பிகோல் @@ -81,7 +81,7 @@ For terms of use, see http://www.unicode.org/copyright.html கேடோ கரீப் ஆட்சம் - செசென் + செச்சென் செபுவானோ சிகா சாமோரோ @@ -92,10 +92,10 @@ For terms of use, see http://www.unicode.org/copyright.html சினூக் ஜார்கான் சோக்தௌ சிபெவ்யான் - செரொகி + செரோகீ செயேனி - சொரானி குர்திஷ் - கோர்சிகன் + மத்திய குர்திஷ் + கார்சிகன் காப்டிக் க்ரீ கிரிமியன் துர்க்கி @@ -103,7 +103,7 @@ For terms of use, see http://www.unicode.org/copyright.html கஷுபியன் சர்ச் ஸ்லாவிக் சுவாஷ் - வெல்ஷ் + வேல்ஷ் டேனிஷ் தகோடா தார்குவா @@ -132,19 +132,17 @@ For terms of use, see http://www.unicode.org/copyright.html கிரேக்கம் எலமைட் ஆங்கிலம் - ஆஸ்திரேலியன் ஆங்கிலம் - கனடியன் ஆங்கிலம் + ஆஸ்திரேலிய ஆங்கிலம் + கனடிய ஆங்கிலம் பிரிட்டிஷ் ஆங்கிலம் ஆங்கிலம் (யூகே) அமெரிக்க ஆங்கிலம் மத்திய ஆங்கிலம் எஸ்பரேன்டோ ஸ்பானிஷ் - லத்தின் அமெரிக்க ஸ்பானிஷ் - ஐரோப்பிய ஸ்பானிஷ் - மெக்சிகன் ஸ்பானிஷ் + ஸ்பானிஷ் (ஐரோப்பா) எஸ்டோனியன் - பஸ்க் + பாஸ்க் எவோன்டோ பெர்ஷியன் ஃபங்க் @@ -163,7 +161,7 @@ For terms of use, see http://www.unicode.org/copyright.html வடக்கு ஃப்ரிஸியான் கிழக்கு ஃப்ரிஸியான் ஃப்ரியூலியன் - மேற்கத்திய ஃப்ரிஷியன் + மேற்கு ஃப்ரிஷியன் ஐரிஷ் கா காகௌஸ் @@ -181,7 +179,7 @@ For terms of use, see http://www.unicode.org/copyright.html கோதிக் க்ரேபோ பண்டைய கிரேக்கம் - ஸ்விஸ் ஜெர்மன் + ஜெர்மன் (ஸ்விஸ்) குஜராத்தி குஸி மேங்க்ஸ் @@ -213,7 +211,7 @@ For terms of use, see http://www.unicode.org/copyright.html இலோகோ இங்குஷ் இடோ - ஐஸ்லென்டிக் + ஐஸ்லேண்டிக் இத்தாலியன் இனுகிடூட் ஜப்பானியம் @@ -222,7 +220,7 @@ For terms of use, see http://www.unicode.org/copyright.html மாசெம் ஜூதேயோ-பெர்ஷியன் ஜூதேயோ-அராபிக் - ஜாவானீஸ் + ஜாவனீஸ் ஜார்ஜியன் காரா-கல்பாக் கபாய்ல் @@ -279,6 +277,7 @@ For terms of use, see http://www.unicode.org/copyright.html லாவோ மோங்கோ லோசி + வடக்கு லுரி லிதுவேனியன் லுபா-கடாங்கா லுபா-லுலுலா @@ -312,7 +311,7 @@ For terms of use, see http://www.unicode.org/copyright.html மங்கோலியன் மன்சு மனிபூரி - மோஹாவ்க் + மொஹாக் மோஸ்ஸி மராத்தி மலாய் @@ -322,21 +321,23 @@ For terms of use, see http://www.unicode.org/copyright.html க்ரீக் மிரான்டீஸ் மார்வாரி - பர்மிஸ் + பர்மீஸ் ஏர்ஜியா + மசந்தேரனி நவ்ரூ நியோபோலிடன் நாமா நார்வேஜியன் பொக்மால் வடக்கு தெபெலே லோ ஜெர்மன் + லோ சாக்ஸன் நேபாளி நெவாரி தோங்கா நியாஸ் நியூவான் டச்சு - பிலெமிஷ் + ஃப்லெமிஷ் க்வாசியோ நார்வேஜியன் நியூநார்ஸ்க் நார்வே @@ -377,7 +378,7 @@ For terms of use, see http://www.unicode.org/copyright.html புஷ்தோ போர்ச்சுக்கீஸ் போர்ச்சுகீஸ் (பிரேசில்) - ஐரோப்பிய போர்ச்சுகீஸ் + போர்ச்சுகீஸ் (ஐரோப்பா) கிவேசுவா கீசீ ராஜஸ்தானி @@ -407,6 +408,7 @@ For terms of use, see http://www.unicode.org/copyright.html சிசிலியன் ஸ்காட்ஸ் சிந்தி + தெற்கு குர்திஷ் வடக்கு சமி செனா செல்குப் @@ -441,8 +443,8 @@ For terms of use, see http://www.unicode.org/copyright.html சுமேரியன் ஸ்வீடிஷ் சுவாஹிலி + காங்கோ சுவாஹிலி கொமோரியன் - காங்கோ சுவாஹிலி பாரம்பரிய சிரியாக் சிரியாக் தமிழ் @@ -456,7 +458,7 @@ For terms of use, see http://www.unicode.org/copyright.html டிக்ரின்யா டைக்ரே டிவ் - டர்க்மென் + துருக்மென் டோகேலௌ டாகாலோக் க்ளிங்கோன் @@ -466,7 +468,7 @@ For terms of use, see http://www.unicode.org/copyright.html டோங்கான் நயாசா டோங்கா டோக் பிஸின் - டர்கிஷ் + துருக்கிஷ் ஸோங்கா ட்ஸிம்ஷியன் டாடர் @@ -476,7 +478,7 @@ For terms of use, see http://www.unicode.org/copyright.html டசவாக் டஹிதியான் டுவினியன் - மத்திய அட்லஸ் தமசைட் + மத்திய அட்லஸ் டமசைட் உட்முர்ட் உய்குர் உகாரிட்க் @@ -495,6 +497,7 @@ For terms of use, see http://www.unicode.org/copyright.html வாலாமோ வாரே வாஷோ + வல்பிரி ஒலூஃப் கல்மிக் ஹோசா @@ -529,7 +532,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -556,13 +559,13 @@ For terms of use, see http://www.unicode.org/copyright.html - + - + - - + + @@ -572,7 +575,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -649,7 +652,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -663,7 +666,7 @@ For terms of use, see http://www.unicode.org/copyright.html கிழக்கு ஆப்ரிக்கா வடக்கு ஆப்ரிக்கா மத்திய ஆப்ரிக்கா - தென்னாப்ரிக்கா + தெற்கு ஆப்ரிக்கா அமெரிக்காஸ் வடக்கு அமெரிக்கா கரீபியன் @@ -690,8 +693,7 @@ For terms of use, see http://www.unicode.org/copyright.html ஆண்டிகுவா மற்றும் பார்புடா அங்குய்லா அல்பேனியா - ஆர்மேனியா - நெதர்லாந்து ஆண்டில்லெஸ் + அர்மேனியா அங்கோலா அண்டார்டிகா அர்ஜென்டினா @@ -701,7 +703,7 @@ For terms of use, see http://www.unicode.org/copyright.html அரூபா ஆலந்து தீவுகள் அசர்பைஜான் - போஸ்னியா மற்றும் ஹெர்ஸிகோவினா + போஸ்னியா & ஹெர்ஸகோவினா பார்படோஸ் பங்களாதேஷ் பெல்ஜியம் @@ -752,7 +754,7 @@ For terms of use, see http://www.unicode.org/copyright.html டொமினிகா டொமினிகன் குடியரசு அல்ஜீரியா - சியூடா மற்றும் மெலில்லா + சியூடா & மெலில்லா ஈக்வடார் எஸ்டோனியா எகிப்து @@ -760,7 +762,7 @@ For terms of use, see http://www.unicode.org/copyright.html எரிட்ரியா ஸ்பெயின் எதியோப்பியா - ஐரோப்பியன் யூனியன் + ஐரோப்பிய யூனியன் பின்லாந்து ஃபிஜி ஃபாக்லாந்து தீவுகள் @@ -770,7 +772,7 @@ For terms of use, see http://www.unicode.org/copyright.html பிரான்ஸ் கேபான் ஐக்கிய பேரரசு - யூ.கே. + யூகே கிரனெடா ஜார்ஜியா பிரெஞ்சு கயானா @@ -781,22 +783,22 @@ For terms of use, see http://www.unicode.org/copyright.html காம்பியா கினியா க்வாதேலோப் - ஈக்குவாடோரியல் கினியா + ஈக்வடோரியல் கினியா கிரீஸ் தென் ஜியார்ஜியா மற்றும் தென் சான்ட்விச் தீவுகள் கவுதமாலா குவாம் - கினி-பிஸ்ஸாவ் + கினியா-பிஸ்ஸாவ் கயானா ஹாங்காங் எஸ்ஏஆர் சீனா ஹாங்காங் ஹேர்ட் மற்றும் மெக்டொனால்டு தீவுகள் ஹோண்டூராஸ் - குரோசியா - ஹெய்தி + குரேஷியா + ஹைட்டி ஹங்கேரி கேனரி தீவுகள் - இந்தோனேஷியா + இந்தோனேசியா அயர்லாந்து இஸ்ரேல் ஐல் ஆஃப் மேன் @@ -815,11 +817,11 @@ For terms of use, see http://www.unicode.org/copyright.html கம்போடியா கிரிபடி கோமரோஸ் - செயின்ட் கிட்ஸ் மற்றும் நெவிஸ் + செயின்ட் கிட்ஸ் & நெவிஸ் வட கொரியா தென் கொரியா குவைத் - கேமென் தீவுகள் + கெய்மென் தீவுகள் கஸகஸ்தான் லாவோஸ் லெபனான் @@ -844,23 +846,23 @@ For terms of use, see http://www.unicode.org/copyright.html மாலி மியான்மார் (பர்மா) மங்கோலியா - மகாவோ எஸ்ஏஆர் சீனா - மகாவோ + மகாவ் எஸ்ஏஆர் சீனா + மகாவ் வடக்கு மரியானா தீவுகள் மார்டினிக் மௌரிடானியா - மௌன்ட்செராட் + மாண்ட்செராட் மால்டா மொரிசியஸ் மாலத்தீவு - மாலவி + மலாவி மெக்சிகோ - மலேஷியா + மலேசியா மொசாம்பிக் நமீபியா நியூ கேலிடோனியா நைஜர் - நார்ஃபாக் தீவுகள் + நார்ஃபோக் தீவுகள் நைஜீரியா நிகரகுவா நெதர்லாந்து @@ -873,11 +875,11 @@ For terms of use, see http://www.unicode.org/copyright.html பனாமா பெரு பிரெஞ்சு பாலினேஷியா - பாப்புவா நியூ கினி + பப்புவா நியூ கினியா பிலிப்பைன்ஸ் பாகிஸ்தான் போலந்து - செயின்ட் பியர் மற்றும் மிக்வேலான் + செயின்ட் பியர் & மிக்வேலான் பிட்கெய்ர்ன் தீவுகள் பியூர்டோ ரிகோ பாலஸ்தீனிய பிரதேசங்கள் @@ -886,7 +888,7 @@ For terms of use, see http://www.unicode.org/copyright.html பாலோ பராகுவே கத்தார் - ஔட்லையிங் ஓசானியா + வெளிப்புற ஓஷியானியா ரீயூனியன் ருமேனியா செர்பியா @@ -894,27 +896,27 @@ For terms of use, see http://www.unicode.org/copyright.html ருவான்டா சவூதி அரேபியா சாலமன் தீவுகள் - ஸேசேல்ஸ் + சீஷெல்ஸ் சூடான் ஸ்வீடன் சிங்கப்பூர் செயின்ட் ஹெலெனா ஸ்லோவேனியா - ஸ்வல்பார்டு மற்றும் ஜான் மேயன் + ஸ்வல்பார்டு & ஜான் மேயன் ஸ்லோவாகியா - சியர்ரா லியோன் - சான் மெரினோ + சியாரா லியோன் + சான் மரினோ செனெகல் சோமாலியா சுரினாம் தெற்கு சூடான் - சாவ் தோம் மற்றும் ப்ரின்சிபி + சாவ் தோம் & ப்ரின்சிபி எல் சால்வடார் சின்ட் மார்டென் சிரியா ஸ்வாஸிலாந்து டிரிஸ்டன் டா குன்ஹா - டர்க்ஸ் மற்றும் கைகோஸ் தீவுகள் + டர்க்ஸ் & கைகோஸ் தீவுகள் சாட் பிரெஞ்சு தெற்கு பிரதேசங்கள் டோகோ @@ -922,24 +924,24 @@ For terms of use, see http://www.unicode.org/copyright.html தாஜிகிஸ்தான் டோகேலோ தைமூர்-லெஸ்தே - கிழக்கு தைமோர் + கிழக்கு தைமூர் துர்க்மெனிஸ்தான் டுனிசியா டோங்கா துருக்கி - ட்ரினிடாட் மற்றும் டுபாகோ + ட்ரினிடாட் & டொபாகோ துவாலூ தைவான் தான்சானியா உக்ரைன் உகாண்டா - யூஎஸ் அவுட்லேயிங் தீவுகள் + யூ.எஸ். வெளிப்புற தீவுகள் அமெரிக்கா யூஎஸ் உருகுவே உஸ்பெகிஸ்தான் வாடிகன் நகரம் - செயின்ட் வின்சென்ட் மற்றும் கிரெனடைன்ஸ் + செயின்ட் வின்சென்ட் & கிரெனடைன்ஸ் வெனிசுலா பிரிட்டீஷ் கன்னித் தீவுகள் யூ.எஸ். கன்னித் தீவுகள் @@ -949,7 +951,7 @@ For terms of use, see http://www.unicode.org/copyright.html சமோவா கொசோவோ ஏமன் - மயோத் + மயோட் தென் ஆப்பிரிக்கா ஜாம்பியா ஜிம்பாப்வே @@ -966,11 +968,14 @@ For terms of use, see http://www.unicode.org/copyright.html பெரெழுத்து/சிற்றெழுத்து வரிசைமுறை எழுத்து உணர்ந்து வரிசைபடுத்துதல் கானா வரிசைபடுத்துதல் - வரிசைப்படுத்தல் முறை + வரிசை முறை இயல்பாக்கப்பட்ட வரிசைபடுத்துதல் எண்முறை வரிசைபடுத்துதல் வரிசைப்படுத்தல் வலிமை நாணயம் + மணிநேர சுழற்சி (12, 24) + வரி முறிப்பு ஸ்டைல் + அளவிடும் முறை எண்கள் நேர மண்டலம் மொழி மாறிலி @@ -978,95 +983,105 @@ For terms of use, see http://www.unicode.org/copyright.html தனிப்பட்ட பயன் - அரபிய-இந்திய இலக்கங்கள் - நீட்டிக்கப்பட்ட அரபிய-இந்திய இலக்கங்கள் - ஆர்மேனியன் எண்கள் - ஆர்மேனியன் சிற்றெழுத்து எண்கள் - பெங்காலி இலக்கங்கள் - பாரம்பரிய சீன வரிசை வடிவம் - Big5 - புத்த நாள்காட்டி - சீன நாள்காட்டி - காப்டிக் நாள்காட்டி - டேங்கி நாள்காட்டி - தேவநாகரி இலக்கங்கள் - அகராதி வரிசை முறை - இயல்புநிலை யுனிகோட் வரிசை முறை - எத்தியோப்பிக் எண்கள் - எத்தியோப்பிக் நாள்காட்டி - எத்தியோபிக் அமேதே ஆலெம் நாள்காட்டி - நிதி எண்கள் - முழு அகல இலக்கங்கள் - எளிமையாக்கப்பட்ட சீன வரிசை வடிவம் - GB2312 - ஜியாரிஜியன் எண்கள் - கிரிகோரியன் நாள்காட்டி - கிரீக் எண்கள் - கிரீக் சிறியஎழுத்து எண்கள் - குஜராத்தி இலக்கங்கள் - குர்முகி இலக்கங்கள் - சீன பின்ன எண்கள் - எளிதாக்கப்பட்ட சீன எண்கள் - எளிதாக்கப்பட்ட சீன நிதி எண்கள் - பாரம்பரிய சீன எண்கள் - பாரம்பரிய சீன நிதி எண்கள் - ஹீப்ரு எண்கள் - ஹீப்ரு நாள்காட்டி - அனைத்தையும் வரிசைப்படுத்து - இந்திய தேச நாள்காட்டி - இஸ்லாமிய நாள்காட்டி - இஸ்லாமிய சிவில் நாள்காட்டி - ISO-8601 நாள்காட்டி - ஜப்பானிய நாள்காட்டி - ஜப்பானிய எண்கள் - ஜப்பானிய நிதி எண்கள் - கெமெர் இலக்கங்கள் - கன்னட இலக்கங்கள் - லாவோ இலக்கங்கள் - மேற்கத்திய இலக்கங்கள் - முதலில் சிற்றெழுத்துகளை வரிசைப்படுத்து - மலையாள இலக்கங்கள் - மங்கோலியன் இலக்கங்கள் - மியான்மர் இலக்கங்கள் - சொந்த இலக்கங்கள் - உச்சரிப்புகளை இயல்பாக வரிசைபடுத்து - இயல்பான எழுத்து வடிவில் வரிசைபடுத்து - எழுத்து உணர்வின்றி வரிசைபடுத்து - கானாவை தனியாக வரிசைப்படுத்து - இயல்பாக்கம் இல்லாமல் வரிசைபடுத்து - இலக்கங்களை, தனியாக வரிசைப்படுத்து - சின்னங்களை வரிசைப்படுத்து - ஒரியா இலக்கங்கள் - பெர்சியன் நாள்காட்டி - தொலைபேசி புத்தக வரிசை முறை - ஒலியியல் வரிசைப்படுத்தல் முறை - பின்யின் வரிசை முறை - அடிப்படை எழுத்துகளை மட்டும் வரிசைபடுத்து - உச்சரிப்புகள்/எழுத்து/அகலம்/கானாவை வரிசைப்படுத்து - சீர்திருத்தப்பட்ட வரிசை முறை - மின்கோ நாள்காட்டி - ரோமன் எண்கள் - சிறிய ரோமானிய எண்கள் - பொதுப்படையான தேடல் - ஹங்குல் முதன்மை மெய்யெழுத்தின்படி தேடு - உச்சரிப்புகளை வரிசைபடுத்து - சின்னங்களைப் புறக்கணித்து வரிசைப்படுத்து - நிலையான வரிசை முறை - ஸ்ட்ரோக் வரிசை முறை - பாரம்பரிய தமிழ் எண்கள் - தமிழ் இலக்கங்கள் - தெலுங்கு இலக்கங்கள் - உச்சரிப்புகள்/எழுத்து/அகலத்தை வரிசைப்படுத்து - தாய் இலக்கங்கள் - திபெத்தியன் எண்கள் - பாரம்பரிய வரிசை முறை - பாரம்பரிய எண்கள் - ரேடியன் ஸ்ட்ரோக் வரிசை முறை - முதலில் பேரெழுத்துகளை வரிசைப்படுத்து - வை எண்கள் - உச்சரிப்புகளை நேர்மறையாக வரிசைபடுத்து - எழுத்து உணர்வில் வரிசைபடுத்து - கானாவை வேறுபட்டதாக வரிசைப்படுத்து - இயல்பாக்கப்பட்ட யூனிகோடை வரிசைப்படுத்து - இலக்கங்களை எண்களாக வரிசைப்படுத்து + புத்த நாள்காட்டி + சீன நாள்காட்டி + காப்டிக் நாள்காட்டி + டேங்கி நாள்காட்டி + எத்தியோப்பிக் நாள்காட்டி + எத்தியோபிக் அமேதே ஆலெம் நாள்காட்டி + கிரிகோரியன் நாள்காட்டி + ஹீப்ரு நாள்காட்டி + இந்திய தேச நாள்காட்டி + இஸ்லாமிய நாள்காட்டி + இஸ்லாமிய சிவில் நாள்காட்டி + ISO-8601 நாள்காட்டி + ஜப்பானிய நாள்காட்டி + பெர்சியன் நாள்காட்டி + மின்கோ நாள்காட்டி + சின்னங்களை வரிசைப்படுத்து + சின்னங்களைப் புறக்கணித்து வரிசைப்படுத்து + உச்சரிப்புகளை இயல்பாக வரிசைபடுத்து + உச்சரிப்புகளை நேர்மறையாக வரிசைபடுத்து + முதலில் சிற்றெழுத்துகளை வரிசைப்படுத்து + இயல்பான எழுத்து வடிவில் வரிசைபடுத்து + முதலில் பேரெழுத்துகளை வரிசைப்படுத்து + எழுத்து உணர்வின்றி வரிசைபடுத்து + எழுத்து உணர்வில் வரிசைபடுத்து + கானாவை தனியாக வரிசைப்படுத்து + கானாவை வேறுபட்டதாக வரிசைப்படுத்து + பாரம்பரிய சீன வரிசை வடிவம் - Big5 + அகராதி வரிசை முறை + இயல்புநிலை யுனிகோட் வரிசை முறை + எளிமையாக்கப்பட்ட சீன வரிசை வடிவம் - GB2312 + தொலைபேசி புத்தக வரிசை முறை + ஒலியியல் வரிசைப்படுத்தல் முறை + பின்யின் வரிசை முறை + சீர்திருத்தப்பட்ட வரிசை முறை + பொதுப்படையான தேடல் + ஹங்குல் முதன்மை மெய்யெழுத்தின்படி தேடு + நிலையான வரிசை முறை + ஸ்ட்ரோக் வரிசை முறை + பாரம்பரிய வரிசை முறை + ரேடியன் ஸ்ட்ரோக் வரிசை முறை + இயல்பாக்கம் இல்லாமல் வரிசைபடுத்து + இயல்பாக்கப்பட்ட யூனிகோடை வரிசைப்படுத்து + இலக்கங்களை, தனியாக வரிசைப்படுத்து + இலக்கங்களை எண்களாக வரிசைப்படுத்து + அனைத்தையும் வரிசைப்படுத்து + அடிப்படை எழுத்துகளை மட்டும் வரிசைபடுத்து + உச்சரிப்புகள்/எழுத்து/அகலம்/கானாவை வரிசைப்படுத்து + உச்சரிப்புகளை வரிசைபடுத்து + உச்சரிப்புகள்/எழுத்து/அகலத்தை வரிசைப்படுத்து + 12 மணிநேர முறைமை (0–11) + 12 மணிநேர முறைமை (1–12) + 24 மணிநேர முறைமை (0–23) + 24 மணிநேர முறைமை (1–24) + தளர்வான வரி முறிப்பு ஸ்டைல் + சாதாரண வரி முறிப்பு ஸ்டைல் + கண்டிப்பான வரி முறிப்பு ஸ்டைல் + மெட்ரிக் முறை + இம்பீரியல் அளவிடும் முறை + அமெரிக்க அளவிடும் முறை + அரபிய-இந்திய இலக்கங்கள் + நீட்டிக்கப்பட்ட அரபிய-இந்திய இலக்கங்கள் + ஆர்மேனியன் எண்கள் + ஆர்மேனியன் சிற்றெழுத்து எண்கள் + பெங்காலி இலக்கங்கள் + தேவநாகரி இலக்கங்கள் + எத்தியோப்பிய எண்கள் + நிதி எண்கள் + முழு-அகல இலக்கங்கள் + ஜார்ஜியன் எண்கள் + கிரீக் எண்கள் + கிரீக் சிற்றெழுத்து எண்கள் + குஜராத்தி இலக்கங்கள் + குர்முகி இலக்கங்கள் + சீன பின்ன எண்கள் + எளிதாக்கப்பட்ட சீன எண்கள் + எளிதாக்கப்பட்ட சீன நிதி எண்கள் + பாரம்பரிய சீன எண்கள் + பாரம்பரிய சீன நிதி எண்கள் + ஹீப்ரு எண்கள் + ஜப்பானிய எண்கள் + ஜப்பானிய நிதி எண்கள் + கெமெர் இலக்கங்கள் + கன்னட இலக்கங்கள் + லாவோ இலக்கங்கள் + மேற்கத்திய இலக்கங்கள் + மலையாள இலக்கங்கள் + மங்கோலியன் இலக்கங்கள் + மியான்மர் இலக்கங்கள் + சொந்த இலக்கங்கள் + ஒரியா இலக்கங்கள் + ரோமன் எண்கள் + ரோமன் சிற்றெழுத்து எண்கள் + பாரம்பரிய தமிழ் எண்கள் + தமிழ் இலக்கங்கள் + தெலுங்கு இலக்கங்கள் + தாய் இலக்கங்கள் + திபெத்தியன் இலக்கங்கள் + பாரம்பரிய எண்கள் + வை எண்கள் BGN @@ -1272,16 +1287,17 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d E y G MMM y G d MMM, y G E, d MMM, y G - h a + a h HH - h:mm a + a h:mm HH:mm - h:mm:ss a + a h:mm:ss HH:mm:ss L d/M @@ -1311,33 +1327,33 @@ For terms of use, see http://www.unicode.org/copyright.html d–d - h a – h a - h–h a + a h – a h + a h–h HH–HH - h:mm a – h:mm a - h:mm–h:mm a - h:mm–h:mm a + a h:mm – a h:mm + a h:mm–h:mm + a h:mm–h:mm HH:mm–HH:mm HH:mm–HH:mm - h:mm a – h:mm a v - h:mm–h:mm a v - h:mm–h:mm a v + a h:mm – a h:mm v + a h:mm–h:mm v + a h:mm–h:mm v HH:mm–HH:mm v HH:mm–HH:mm v - h a – h a v - h–h a v + a h – a h v + a h–h v HH–HH v @@ -1496,13 +1512,13 @@ For terms of use, see http://www.unicode.org/copyright.html - ஞா - தி - செ - பு - வி - வெ - + ஞாயி. + திங். + செவ். + புத. + வியா. + வெள். + சனி ஞா @@ -1534,13 +1550,13 @@ For terms of use, see http://www.unicode.org/copyright.html - ஞா - தி - செ - பு - வி - வெ - + ஞாயி. + திங். + செவ். + புத. + வியா. + வெள். + சனி ஞா @@ -1574,10 +1590,10 @@ For terms of use, see http://www.unicode.org/copyright.html - காலாண்டு1 - காலாண்டு2 - காலாண்டு3 - காலாண்டு4 + காலா.1 + காலா.2 + காலா.3 + காலா.4 1 @@ -1586,18 +1602,18 @@ For terms of use, see http://www.unicode.org/copyright.html 4 - முதல் காலாண்டு - இரண்டாம் காலாண்டு - மூன்றாம் காலாண்டு - நான்காம் காலாண்டு + 1ஆம் காலாண்டு + 2ஆம் காலாண்டு + 3ஆம் காலாண்டு + 4ஆம் காலாண்டு - காலாண்டு1 - காலாண்டு2 - காலாண்டு3 - காலாண்டு4 + காலா.1 + காலா.2 + காலா.3 + காலா.4 1 @@ -1606,28 +1622,94 @@ For terms of use, see http://www.unicode.org/copyright.html 4 - முதல் காலாண்டு - இரண்டாம் காலாண்டு - மூன்றாம் காலாண்டு - நான்காம் காலாண்டு + 1ஆம் காலாண்டு + 2ஆம் காலாண்டு + 3ஆம் காலாண்டு + 4ஆம் காலாண்டு - முற்பகல் - பிற்பகல் - - - மு.ப - - பி.ப - - + நள்ளிரவு முற்பகல் நண்பகல் பிற்பகல் + அதிகாலை + காலை + மதியம் + பிற்பகல் + மாலை + அந்தி மாலை + இரவு + + + நள். + மு.ப + நண். + பி.ப + அதி. + கா. + மதி. + பிற். + மா. + அந்தி மா. + இர. + + + நள்ளிரவு + முற்பகல் + நண்பகல் + பிற்பகல் + அதிகாலை + காலை + மதியம் + பிற்பகல் + மாலை + அந்தி மாலை + இரவு + + + + + நள்ளிரவு + முற்பகல் + நண்பகல் + பிற்பகல் + அதிகாலை + காலை + மதியம் + பிற்பகல் + மாலை + அந்தி மாலை + இரவு + + + நள். + மு.ப + நண். + பி.ப + அதி. + கா. + மதி. + பிற். + மா. + அந்தி மா. + இ. + + + நள்ளிரவு + முற்பகல் + நண்பகல் + பிற்பகல் + அதிகாலை + காலை + மதியம் + பிற்பகல் + மாலை + அந்தி மாலை + இரவு @@ -1635,7 +1717,7 @@ For terms of use, see http://www.unicode.org/copyright.html கிறிஸ்துவுக்கு முன் பொ.ச.மு - அனோ டோமினி + அன்னோ டோமினி பொ.ச @@ -1663,29 +1745,29 @@ For terms of use, see http://www.unicode.org/copyright.html - d-M-yy + d/M/yy - h:mm:ss a zzzz + a h:mm:ss zzzz - h:mm:ss a z + a h:mm:ss z - h:mm:ss a + a h:mm:ss - h:mm a + a h:mm @@ -1714,9 +1796,9 @@ For terms of use, see http://www.unicode.org/copyright.html d ccc d E - E h:mm a + E a h:mm E HH:mm - E h:mm:ss a + E a h:mm:ss E HH:mm:ss G y G y MMM @@ -1728,6 +1810,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm a h:mm:ss HH:mm:ss + a h:mm:ss v + HH:mm:ss v + a h:mm v + HH:mm v L d/M MM-dd, E @@ -1774,17 +1860,17 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm – HH:mm - h:mm a – h:mm a v - h:mm – h:mm a v - h:mm – h:mm a v + a h:mm – a h:mm v + a h:mm – h:mm v + a h:mm – h:mm v HH:mm – HH:mm v HH:mm – HH:mm v - h a – h a v - h – h a v + a h – a h v + a h – h v HH – HH v @@ -1870,6 +1956,9 @@ For terms of use, see http://www.unicode.org/copyright.html ஆண்டு + கடந்த ஆண்டு + இந்த ஆண்டு + அடுத்த ஆண்டு {0} ஆண்டில் {0} ஆண்டுகளில் @@ -1880,18 +1969,24 @@ For terms of use, see http://www.unicode.org/copyright.html - ஆண்டு + ஆ. + கடந்த ஆண்டு + இந்த ஆண்டு + அடுத்த ஆண்டு - {0} ஆண்டில் - {0} ஆண்டுகளில் + {0} ஆ. + {0} ஆ. - {0} ஆண்டிற்கு முன் - {0} ஆண்டுகளுக்கு முன் + {0} ஆ. முன் + {0} ஆ. முன் காலாண்டு + இறுதி காலாண்டு + இந்த காலாண்டு + அடுத்த காலாண்டு +{0} காலாண்டில் {0} காலாண்டுகளில் @@ -1903,9 +1998,12 @@ For terms of use, see http://www.unicode.org/copyright.html காலாண்டு + இறுதி காலாண்டு + இந்த காலாண்டு + அடுத்த காலாண்டு {0} காலா. - {0} காலாண்டுகளில் + {0} காலா. {0} காலா. முன் @@ -1914,13 +2012,16 @@ For terms of use, see http://www.unicode.org/copyright.html காலாண்டு + இறுதி காலாண்டு + இந்த காலாண்டு + அடுத்த காலாண்டு - {0} காலாண்டில் - {0} காலாண்டுகளில் + {0} கா. + {0} கா. - -{0} கா. - -{0} கா. + {0} கா. முன் + {0} கா. முன் @@ -1939,24 +2040,30 @@ For terms of use, see http://www.unicode.org/copyright.html மாதம் + கடந்த மாதம் + இந்த மாதம் + அடுத்த மாதம் - {0} மாதத்தில் - {0} மாதங்களில் + {0} மாத. + {0} மாத. - {0} மாதத்திற்கு முன் - {0} மாதங்களுக்கு முன் + {0} மாத. முன் + {0} மாத. முன் - மாதம் + மா. + கடந்த மாதம் + இந்த மாதம் + அடுத்த மாதம் - {0} மாதத்தில் - {0} மாதங்களில் + {0} மா. + {0} மா. - {0} மாதத்திற்கு முன் - {0} மாதங்களுக்கு முன் + {0} மா. முன் + {0} மா. முன் @@ -1975,24 +2082,30 @@ For terms of use, see http://www.unicode.org/copyright.html வாரம் + கடந்த வாரம் + இந்த வாரம் + அடுத்த வாரம் - {0} வாரத்தில் - {0} வாரங்களில் + {0} வார. + {0} வார. - {0} வாரத்திற்கு முன் - {0} வாரங்களுக்கு முன் + {0} வார. முன் + {0} வார. முன் - வாரம் + வா. + கடந்த வாரம் + இந்த வாரம் + அடுத்த வாரம் - {0} வாரத்தில் - {0} வாரங்களில் + {0} வா. + {0} வா. - {0} வாரத்திற்கு முன் - {0} வாரங்களுக்கு முன் + {0} வா. முன் + {0} வா. முன் @@ -2013,6 +2126,11 @@ For terms of use, see http://www.unicode.org/copyright.html நாள் + நேற்று முன் தினம் + நேற்று + இன்று + நாளை + நாளை மறுநாள் {0} நாளில் {0} நாட்களில் @@ -2023,14 +2141,19 @@ For terms of use, see http://www.unicode.org/copyright.html - நாள் + நா. + நேற்று முன் தினம் + நேற்று + இன்று + நாளை + நாளை மறுநாள் - {0} நாளில் - {0} நாட்களில் + {0} நா. + {0} நா. - {0} நாளைக்கு முன் - {0} நாட்களுக்கு முன் + {0} நா. முன் + {0} நா. முன் @@ -2042,14 +2165,14 @@ For terms of use, see http://www.unicode.org/copyright.html அடுத்த ஞாயிறு - கடந்த ஞாயிறு - இந்த ஞாயிறு - அடுத்த ஞாயிறு + கடந்த ஞாயி. + இந்த ஞாயி. + அடுத்த ஞாயி. - கடந்த ஞாயிறு - இந்த ஞாயிறு - அடுத்த ஞாயிறு + கடந்த ஞா. + இந்த ஞா. + அடுத்த ஞா. கடந்த திங்கள் @@ -2057,14 +2180,14 @@ For terms of use, see http://www.unicode.org/copyright.html அடுத்த திங்கள் - கடந்த திங்கள் - இந்த திங்கள் - அடுத்த திங்கள் + கடந்த திங். + இந்த திங். + அடுத்த திங். - கடந்த திங்கள் - இந்த திங்கள் - அடுத்த திங்கள் + கடந்த திங். + இந்த திங். + அடுத்த திங். கடந்த செவ்வாய் @@ -2072,14 +2195,14 @@ For terms of use, see http://www.unicode.org/copyright.html அடுத்த செவ்வாய் - கடந்த செவ்வாய் - இந்த செவ்வாய் - அடுத்த செவ்வாய் + கடந்த செவ். + இந்த செவ். + அடுத்த செவ். - கடந்த செவ்வாய் - இந்த செவ்வாய் - அடுத்த செவ்வாய் + கடந்த செவ். + இந்த செவ். + அடுத்த செவ். கடந்த புதன் @@ -2087,14 +2210,14 @@ For terms of use, see http://www.unicode.org/copyright.html அடுத்த புதன் - கடந்த புதன் - இந்த புதன் - அடுத்த புதன் + கடந்த புத. + இந்த புத. + அடுத்த புத. - கடந்த புதன் - இந்த புதன் - அடுத்த புதன் + கடந்த புத. + இந்த புத. + அடுத்த புத. கடந்த வியாழன் @@ -2102,14 +2225,14 @@ For terms of use, see http://www.unicode.org/copyright.html அடுத்த வியாழன் - கடந்த வியாழன் - இந்த வியாழன் - அடுத்த வியாழன் + கடந்த வியா. + இந்த வியா. + அடுத்த வியா. - கடந்த வியாழன் - இந்த வியாழன் - அடுத்த வியாழன் + கடந்த வியா. + இந்த வியா. + அடுத்த வியா. கடந்த வெள்ளி @@ -2117,14 +2240,14 @@ For terms of use, see http://www.unicode.org/copyright.html அடுத்த வெள்ளி - கடந்த வெள்ளி - இந்த வெள்ளி - அடுத்த வெள்ளி + கடந்த வெள். + இந்த வெள். + அடுத்த வெள். - கடந்த வெள்ளி - இந்த வெள்ளி - அடுத்த வெள்ளி + கடந்த வெள். + இந்த வெள். + அடுத்த வெள். கடந்த சனி @@ -2156,25 +2279,25 @@ For terms of use, see http://www.unicode.org/copyright.html - மநே. + மணி. - {0} மணிநேரத்தில் - {0} மணிநேரத்தில் + {0} மணி. + {0} மணி. - {0} மணிநேரம் முன் - {0} மணிநேரம் முன் + {0} மணி. முன் + {0} மணி. முன் - + ம. - {0} மணிநேரத்தில் - {0} மணிநேரத்தில் + {0} ம. + {0} ம. - {0} மணிநேரம் முன் - {0} மணிநேரம் முன் + {0} ம. முன் + {0} ம. முன் @@ -2191,23 +2314,23 @@ For terms of use, see http://www.unicode.org/copyright.html நிமி. - {0} நிமிடங்களில் - {0} நிமிடங்களில் + {0} நிமி. + {0} நிமி. - {0} நிமிடத்திற்கு முன் - {0} நிமிடங்களுக்கு முன் + {0} நிமி. முன் + {0} நிமி. முன் - நிமி + நிமி. - {0} நிமிடங்களில் - {0} நிமிடங்களில் + {0} நி. + {0} நி. - {0} நிமிடத்திற்கு முன் - {0} நிமிடங்களுக்கு முன் + {0} நி. முன் + {0} நி. முன் @@ -2225,23 +2348,23 @@ For terms of use, see http://www.unicode.org/copyright.html விநா. - {0} விநாடியில் - {0} விநாடிகளில் + {0} விநா. + {0} விநா. - {0} விநாடிக்கு முன் - {0} விநாடிகளுக்கு முன் + {0} விநா. முன் + {0} விநா. முன் - வி + வி. - {0} விநாடியில் - {0} விநாடிகளில் + {0} வி. + {0} வி. - {0} விநாடிக்கு முன் - {0} விநாடிகளுக்கு முன் + {0} வி. முன் + {0} வி. முன் @@ -2253,7 +2376,7 @@ For terms of use, see http://www.unicode.org/copyright.html GMT{0} GMT {0} நேரம் - {0} பகல் நேரம் + {0} பகலொளி நேரம் {0} நிலையான நேரம் {1} ({0}) @@ -2296,7 +2419,7 @@ For terms of use, see http://www.unicode.org/copyright.html ஸ்யோவா - மவுசன் + மாசன் டேவிஸ் @@ -2308,7 +2431,7 @@ For terms of use, see http://www.unicode.org/copyright.html கேஸி - டூமாண்ட் டி’உர்வில்லி + டுமோண்ட்-டி உர்வில்லே மெக்மர்டோ @@ -2332,7 +2455,7 @@ For terms of use, see http://www.unicode.org/copyright.html சான் லூயிஸ் - கடமரகா + கடமார்கா சால்டா @@ -2341,7 +2464,7 @@ For terms of use, see http://www.unicode.org/copyright.html ஜூஜுய் - துகுமன் + டுகுமன் கார்டோபா @@ -2377,7 +2500,7 @@ For terms of use, see http://www.unicode.org/copyright.html மெல்போர்ன் - ஹொபார்ட் + ஹோபர்ட் லின்டெமன் @@ -2389,7 +2512,7 @@ For terms of use, see http://www.unicode.org/copyright.html பிரிஸ்பேன் - மேக்வாரி + மாக்கியூரி லார்டு ஹோவே @@ -2422,7 +2545,7 @@ For terms of use, see http://www.unicode.org/copyright.html சோஃபியா - பஹ்ரெய்ன் + பஹ்ரைன் புஜும்புரா @@ -2458,7 +2581,7 @@ For terms of use, see http://www.unicode.org/copyright.html போவா விஸ்டா - மனாவுஸ் + மனாஸ் குயாபே @@ -2476,7 +2599,7 @@ For terms of use, see http://www.unicode.org/copyright.html அரகுவாய்னா - சவோ பவுலோ + சாவோ பவுலோ பாஹியா @@ -2485,7 +2608,7 @@ For terms of use, see http://www.unicode.org/copyright.html ஃபோர்டாலெசா - மேகியோ + மேசியோ ரெஸிஃபி @@ -2518,7 +2641,7 @@ For terms of use, see http://www.unicode.org/copyright.html இனுவிக் - வாங்கூவர் + வான்கூவர் டாவ்சன் கிரீக் @@ -2539,7 +2662,7 @@ For terms of use, see http://www.unicode.org/copyright.html கேம்பிரிட்ஜ் வளைகுடா - ரெகினா + ரெஜினா வின்னிபெக் @@ -2581,7 +2704,7 @@ For terms of use, see http://www.unicode.org/copyright.html கூஸ் பே - கிலாஸ் வளைகுடா + கிலேஸ் வளைகுடா ப்லாங்க்-சப்லான் @@ -2599,7 +2722,7 @@ For terms of use, see http://www.unicode.org/copyright.html லுபும்பாஷி - பேங்குயீ + பாங்குயீ பிராஸாவில்லி @@ -2638,7 +2761,7 @@ For terms of use, see http://www.unicode.org/copyright.html ஹவானா - கேப் வெர்ட் + கேப் வெர்டே க்யூராகோ @@ -2662,7 +2785,7 @@ For terms of use, see http://www.unicode.org/copyright.html டிஜிபவ்டி - கோபென்ஹகன் + கோபன்ஹேகன் டொமினிகா @@ -2713,7 +2836,7 @@ For terms of use, see http://www.unicode.org/copyright.html ஸ்டேன்லி - சூக் + சுக் ஃபோன்பெய் @@ -2722,10 +2845,10 @@ For terms of use, see http://www.unicode.org/copyright.html கோஸ்ரே - பேரோ + ஃபரோ - பாரிஸ் + பாரீஸ் லிப்ரேவில்லே @@ -2737,7 +2860,7 @@ For terms of use, see http://www.unicode.org/copyright.html லண்டன் - கிரேனடா + கிரனடா த்பிலிசி @@ -3001,10 +3124,10 @@ For terms of use, see http://www.unicode.org/copyright.html மார்ட்டினிக் - நவுக்சோத் + நோவாக்சோட் - மான்ஸ்ரேட் + மான்செரேட் மால்டா @@ -3031,7 +3154,7 @@ For terms of use, see http://www.unicode.org/copyright.html மஸட்லன் - சிஹூவாஹுவா + சுவாவா பஹியா பந்தேராஸ் @@ -3097,7 +3220,7 @@ For terms of use, see http://www.unicode.org/copyright.html நியு - சாதம் + சத்தாம் ஆக்லாந்து @@ -3112,10 +3235,10 @@ For terms of use, see http://www.unicode.org/copyright.html லிமா - தாஹிதி + தஹிதி - மார்குசாஸ் + மார்கியூசாஸ் கேம்பியர் @@ -3123,6 +3246,9 @@ For terms of use, see http://www.unicode.org/copyright.html போர்ட் மோர்ஸ்பை + + போகெய்ன்வில்லே + மணிலா @@ -3136,10 +3262,10 @@ For terms of use, see http://www.unicode.org/copyright.html மிக்யூலன் - பிட்காரின் + பிட்கெய்ர்ன் - புயர்டோ ரிகோ + பியூர்டோ ரிகோ காஸா @@ -3166,7 +3292,7 @@ For terms of use, see http://www.unicode.org/copyright.html கத்தார் - ரியூனியன் + ரீயூனியன் புசாரெஸ்ட் @@ -3207,6 +3333,9 @@ For terms of use, see http://www.unicode.org/copyright.html இர்குட்ஸ்க் + + சிடா + யகுட்ஸ்க் @@ -3225,6 +3354,9 @@ For terms of use, see http://www.unicode.org/copyright.html மகதன் + + ஸ்ரெட்நிகோலிம்ஸ்க் + காம்சட்கா @@ -3241,7 +3373,7 @@ For terms of use, see http://www.unicode.org/copyright.html கவுடால்கேனல் - மாஹி + மாஹே கார்டோம் @@ -3253,13 +3385,13 @@ For terms of use, see http://www.unicode.org/copyright.html சிங்கப்பூர் - செயின்ட் ஹெலினா + செயின்ட் ஹெலெனா - லுஜுபுல்ஜானா + ஜுப்லானா - லாங்கர்பியன் + லாங்இயர்பியன் பிரடிஸ்லாவா @@ -3271,10 +3403,10 @@ For terms of use, see http://www.unicode.org/copyright.html சான் மாரினோ - தாக்கர் + டாகர் - மோகாதிஷு + மொகாதிஷு பரமரிபோ @@ -3286,7 +3418,7 @@ For terms of use, see http://www.unicode.org/copyright.html சாவோ டோமே - எல் சால்வேடார் + எல் சால்வடோர் லோயர் பிரின்ஸஸ் குவார்ட்டர் @@ -3295,13 +3427,13 @@ For terms of use, see http://www.unicode.org/copyright.html டமாஸ்கஸ் - அம்பபான் + பபான் கிராண்ட் துர்க் - நிட்ஜமேனா + ஜமேனா கெர்யூலென் @@ -3340,10 +3472,10 @@ For terms of use, see http://www.unicode.org/copyright.html ஃபுனாஃபுடி - தாய்பே + தைபே - தார் ஸ் சலாம் + தார் எஸ் சலாம் உஜ்கோரோட் @@ -3376,7 +3508,7 @@ For terms of use, see http://www.unicode.org/copyright.html ஹோனோலூலூ - அங்கரேஜ் + அங்கோரேஜ் யகுடட் @@ -3409,16 +3541,16 @@ For terms of use, see http://www.unicode.org/copyright.html நியூ சலேம், வடக்கு டகோடா - மையம், வடக்கு டகோடா + சென்டர், வடக்கு டகோடா சிகாகோ - மெனோமி + மெனோமினி - விண்செனேஸ், இண்டியானா + வின்செனேஸ், இண்டியானா பீட்டர்ஸ்பெர்க், இண்டியானா @@ -3439,7 +3571,7 @@ For terms of use, see http://www.unicode.org/copyright.html இண்டியானாபொலிஸ் - லோய்ஸ்வில்லே + லூயிஸ்வில்லே வேவே, இண்டியானா @@ -3454,7 +3586,7 @@ For terms of use, see http://www.unicode.org/copyright.html நியூயார்க் - மொண்டேவீடியோ + மான்டேவீடியோ சமார்கண்ட் @@ -3490,7 +3622,7 @@ For terms of use, see http://www.unicode.org/copyright.html அபியா - ஏதேன் + ஏடன் மயோட்டி @@ -3617,9 +3749,9 @@ For terms of use, see http://www.unicode.org/copyright.html - அரேபியன் நேரம் - அரேபியன் நிலையான நேரம் - அரேபியன் பகல் நேரம் + அரேபிய நேரம் + அரேபிய நிலையான நேரம் + அரேபிய பகலொளி நேரம் @@ -3638,9 +3770,9 @@ For terms of use, see http://www.unicode.org/copyright.html - ஆர்மேனியா நேரம் - ஆர்மேனியா நிலையான நேரம் - ஆர்மேனியா கோடை நேரம் + ஆர்மேனிய நேரம் + ஆர்மேனிய நிலையான நேரம் + ஆர்மேனிய கோடை நேரம் @@ -3687,8 +3819,8 @@ For terms of use, see http://www.unicode.org/copyright.html - அசோர்ஸ் நேரம் - அசோர்ஸ் நிலையான நேரம் + அசோரஸ் நேரம் + அசோரஸ் நிலையான நேரம் அசோர்ஸ் கோடை நேரம் @@ -3711,14 +3843,14 @@ For terms of use, see http://www.unicode.org/copyright.html - ப்ரசிலியா நேரம் - ப்ரசிலியா நிலையான நேரம் - ப்ரசிலியா கோடை நேரம் + பிரேசிலியா நேரம் + பிரேசிலியா நிலையான நேரம் + பிரேசிலியா கோடை நேரம் - புருணை டாரு சலாம் நேரம் + புருனே டருஸ்ஸலாம் நேரம் @@ -3750,8 +3882,8 @@ For terms of use, see http://www.unicode.org/copyright.html சீன நேரம் - சீனா நிலையான நேரம் - சீனா பகலொளி நேரம் + சீன நிலையான நேரம் + சீன பகலொளி நேரம் @@ -3799,7 +3931,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ட்யூமோண்ட்-டி உர்வில்லே நேரம் + டுமோண்ட்-டி உர்வில்லே நேரம் @@ -3816,7 +3948,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ஈக்வெடார் நேரம் + ஈக்வடார் நேரம் @@ -3829,8 +3961,8 @@ For terms of use, see http://www.unicode.org/copyright.html கிழக்கத்திய ஐரோப்பிய நேரம் - கிழக்கத்திய ஐரோப்பியன் நிலையான நேரம் - கிழக்கித்திய ஐரோப்பிய கோடை நேரம் + கிழக்கத்திய ஐரோப்பிய நிலையான நேரம் + கிழக்கத்திய ஐரோப்பிய கோடை நேரம் @@ -3866,7 +3998,7 @@ For terms of use, see http://www.unicode.org/copyright.html - ஃபிரஞ்சு தெற்கத்திய மற்றும் அண்டார்டிக் நேரம் + ஃபிரஞ்சு தெற்கத்திய & அண்டார்டிக் நேரம் @@ -3899,14 +4031,14 @@ For terms of use, see http://www.unicode.org/copyright.html கிழக்கு கிரீன்லாந்து நேரம் - கிழக்கு க்ரீன்லாந்து நிலையான நேரம் + கிழக்கு கிரீன்லாந்து நிலையான நேரம் கிழக்கு கிரீன்லாந்து கோடை நேரம் மேற்கு கிரீன்லாந்து நேரம் - மேற்கு க்ரீன்லாந்து நிலையான நேரம் + மேற்கு கிரீன்லாந்து நிலையான நேரம் மேற்கு கிரீன்லாந்து கோடை நேரம் @@ -3917,7 +4049,7 @@ For terms of use, see http://www.unicode.org/copyright.html - வளைகுடா நேரம் + வளைகுடா நிலையான நேரம் @@ -3927,16 +4059,16 @@ For terms of use, see http://www.unicode.org/copyright.html - ஹவாய்-அலேஸியன் நேரம் - ஹவாய்-அலேஸியன் நிலையான நேரம் - ஹவாய்-அலேஸியன் பகலொளி நேரம் + ஹவாய்-அலேஷியன் நேரம் + ஹவாய்-அலேஷியன் நிலையான நேரம் + ஹவாய்-அலேஷியன் பகலொளி நேரம் - ஹாங் காங் நேரம் - ஹாங் காங் நிலையான நேரம் - ஹாங் காங் கோடை நேரம் + ஹாங்காங் நேரம் + ஹாங்காங் நிலையான நேரம் + ஹாங்காங் கோடை நேரம் @@ -3966,17 +4098,17 @@ For terms of use, see http://www.unicode.org/copyright.html - மத்திய இந்தோனேசிய நேரம் + மத்திய இந்தோனேசியா நேரம் - கிழக்கத்திய இந்தோனேசிய நேரம் + கிழக்கத்திய இந்தோனேசியா நேரம் - மேற்கத்திய இந்தோனேசிய நேரம் + மேற்கத்திய இந்தோனேசியா நேரம் @@ -4026,9 +4158,9 @@ For terms of use, see http://www.unicode.org/copyright.html - கொரியன் நேரம் - கொரியன் நிலையான நேரம் - கொரியன் பகலொளி நேரம் + கொரிய நேரம் + கொரிய நிலையான நேரம் + கொரிய பகலொளி நேரம் @@ -4086,12 +4218,12 @@ For terms of use, see http://www.unicode.org/copyright.html - மலேசிய நேரம் + மலேஷிய நேரம் - மாலத்தீவு நேரம் + மாலத்தீவுகள் நேரம் @@ -4113,13 +4245,13 @@ For terms of use, see http://www.unicode.org/copyright.html - மவுசன் நேரம் + மாசன் நேரம் - வடகிழக்கு மெக்ஸிகோ நேரம் - வடகிழக்கு மெக்ஸிகோ நிலையான நேரம் + வடமேற்கு மெக்ஸிகோ நேரம் + வடமேற்கு மெக்ஸிகோ நிலையான நேரம் வடமேற்கு மெக்ஸிகோ பகலொளி நேரம் @@ -4175,9 +4307,9 @@ For terms of use, see http://www.unicode.org/copyright.html - நியூஃபவுன்லாந்து நேரம் - நியூஃபவுன்லாந்து நிலையான நேரம் - நியூஃபவுன்லாந்து பகலொளி நேரம் + நியூஃபவுண்ட்லாந்து நேரம் + நியூஃபவுண்ட்லாந்து நிலையான நேரம் + நியூஃபவுண்ட்லாந்து பகலொளி நேரம் @@ -4250,7 +4382,7 @@ For terms of use, see http://www.unicode.org/copyright.html பிலிப்பைன் நேரம் - பிலிப்பைன் நேரப்படி + பிலிப்பைன் நிலையான நேரம் பிலிப்பைன் கோடை நேரம் @@ -4261,9 +4393,9 @@ For terms of use, see http://www.unicode.org/copyright.html - செயின்ட் பியரி மற்றும் மிக்குயிலான் நேரம் - செயின்ட் பியரி மற்றும் மிக்குயிலான் நிலையான நேரம் - செயின்ட் பியரி மற்றும் மிக்குயிலான் பகலொளி நேரம் + செயின்ட் பியரி & மிக்குயிலான் நேரம் + செயின்ட் பியரி & மிக்குயிலான் நிலையான நேரம் + செயின்ட் பியரி & மிக்குயிலான் பகலொளி நேரம் @@ -4321,7 +4453,7 @@ For terms of use, see http://www.unicode.org/copyright.html - சிங்கப்பூர் நேரம் + சிங்கப்பூர் நிலையான நேரம் @@ -4568,6 +4700,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤ 0ஆ + ¤ 0ஆ + ¤ 00ஆ + ¤ 00ஆ + ¤ 000ஆ + ¤ 000ஆ + ¤ 0மி + ¤ 0மி + ¤ 00மி + ¤ 00மி + ¤ 000மி + ¤ 000மி + ¤ 0பி + ¤0பி + ¤ 00பி + ¤ 00பி + ¤ 000பி + ¤000பி + ¤ 0டி + ¤ 0டி + ¤ 00டி + ¤ 00டி + ¤ 000டி + ¤ 000டி + + {0} {1} {0} {1} @@ -4607,6 +4767,7 @@ For terms of use, see http://www.unicode.org/copyright.html அங்கோலன் க்வான்ஸா அங்கோலன் க்வான்ஸாக்கள் AOA + Kz அர்ஜென்டினா பேசோ @@ -4639,6 +4800,7 @@ For terms of use, see http://www.unicode.org/copyright.html போஸ்னியா-ஹெர்ஸேகோவினா கன்வெர்டிபில் மார்க் போஸ்னியா-ஹெர்ஸேகோவினா கன்வெர்டிபில் மார்க்குகள் BAM + KM பார்பேடியன் டாலர் @@ -4655,9 +4817,9 @@ For terms of use, see http://www.unicode.org/copyright.html - புல்கேரியன் லெவ் - புல்கேரியன் லெவ் - புல்கேரியன் லெவ் + பல்கேரியன் லேவ் + பல்கேரியன் லேவ் + பல்கேரியன் லேவா BGN @@ -4691,6 +4853,7 @@ For terms of use, see http://www.unicode.org/copyright.html பொலிவியன் பொலிவியானோ பொலிவியன் பொலிவியானோக்கள் BOB + Bs பிரேசிலியன் ரியால் @@ -4707,9 +4870,9 @@ For terms of use, see http://www.unicode.org/copyright.html $ - பூட்டானிஷ் நிகுல்ட்ரம் - பூட்டானிஷ் நிகுல்ட்ரம் - பூட்டானிஷ் நிகுல்ட்ரம்கள் + பூட்டானீஸ் குல்ட்ரம் + பூட்டானீஸ் குல்ட்ரம் + பூட்டானீஸ் குல்ட்ரம்கள் BTN @@ -4717,6 +4880,7 @@ For terms of use, see http://www.unicode.org/copyright.html போட்ஸ்வானா புலா போட்ஸ்வானா புலாக்கள் BWP + P பெலருசியன் ரூபில் @@ -4726,9 +4890,9 @@ For terms of use, see http://www.unicode.org/copyright.html р. - பெலீஷ் டாலர் - பெலீஷ் டாலர் - பெலீஷ் டாலர்கள் + பெலீஸ் டாலர் + பெலீஸ் டாலர் + பெலீஸ் டாலர்கள் BZD $ @@ -4784,6 +4948,7 @@ For terms of use, see http://www.unicode.org/copyright.html கியூபன் கன்வெர்டிபில் பேசோ கியூபன் கன்வெர்டிபில் பேசோக்கள் CUC + $ கியூபன் பெசோ @@ -4803,6 +4968,7 @@ For terms of use, see http://www.unicode.org/copyright.html செக் குடியரசு கொருனா செக்குடியரசு கொருனாக்கள் CZK + ஜிபவ்டியென் ஃப்ராங்க் @@ -4815,6 +4981,7 @@ For terms of use, see http://www.unicode.org/copyright.html டானிஷ் க்ரோன் டானிஷ் க்ரோன் DKK + kr டொமினிக்கன் பேசோ @@ -4834,6 +5001,7 @@ For terms of use, see http://www.unicode.org/copyright.html எகிப்திய பவுண்டு எகிப்திய பவுண்டுகள் EGP + இரிடிரியன் நக்ஃபா @@ -4866,6 +5034,7 @@ For terms of use, see http://www.unicode.org/copyright.html ஃபாக்லாந்து தீவுகள் பவுண்டு ஃபாக்லாந்து தீவுகள் பவுண்டுகள் FKP + £ பிரிட்டிஷ் பவுண்ட் ஸ்டெர்லிங் @@ -4879,6 +5048,7 @@ For terms of use, see http://www.unicode.org/copyright.html ஜியார்ஜியன் லாரி ஜியார்ஜியன் லாரிகள் GEL + கானயன் சேடி @@ -4904,12 +5074,14 @@ For terms of use, see http://www.unicode.org/copyright.html கினியன் ஃப்ராங்க் கினியன் ஃப்ராங்குகள் GNF + FG குவாடெமெலன் குயூட்ஸல் குவாடெமெலன் குயூட்ஸல் குவாடெமெலன் குயூட்ஸல்கள் GTQ + Q கயானீஸ் டாலர் @@ -4930,17 +5102,19 @@ For terms of use, see http://www.unicode.org/copyright.html ஹோன்டூரன் லெம்பீரா ஹோன்டூரன் லெம்பீராக்கள் HNL + L குரோஷியன் குனா குரோஷியன் குனா குரோஷியன் குனாக்கள் HRK + kn - ஹயேத்தியன் கோர்டே - ஹயேத்தியன் கோர்டே - ஹயேத்தியன் கோர்டேக்கள் + ஹைட்டியன் கோர்டே + ஹைட்டியன் கோர்டே + ஹைட்டியன் கோர்டேக்கள் HTG @@ -4948,12 +5122,14 @@ For terms of use, see http://www.unicode.org/copyright.html ஹங்கேரியன் ஃபோரின்ட் ஹங்கேரியன் ஃபோரின்ட்கள் HUF + Ft இந்தோனேஷியன் ருபியா இந்தோனேஷியன் ருபியா இந்தோனேஷியன் ருபியாக்கள் IDR + Rp இஸ்ரேலி நியூ ஷிகேல் @@ -4976,9 +5152,9 @@ For terms of use, see http://www.unicode.org/copyright.html IQD - இரானியன் ரியால் - இரானியன் ரியால் - இரானியன் ரியால்கள் + ஈரானியன் ரியால் + ஈரானியன் ரியால் + ஈரானியன் ரியால்கள் IRR @@ -4986,6 +5162,7 @@ For terms of use, see http://www.unicode.org/copyright.html ஐஸ்லாண்டிக் க்ரோனா ஐஸ்லாண்டிக் க்ரோனர் ISK + kr ஜமைக்கான் டாலர் @@ -4995,9 +5172,9 @@ For terms of use, see http://www.unicode.org/copyright.html $ - ஜோர்டானியன் டைனர் - ஜோர்டானியன் டைனர் - ஜோர்டானியன் டைனர்கள் + ஜோர்டானிய தினார் + ஜோர்டானிய தினார் + ஜோர்டானிய தினார்கள் JOD @@ -5031,12 +5208,14 @@ For terms of use, see http://www.unicode.org/copyright.html கமோரியன் ஃப்ராங்க் கமோரியன் ஃப்ராங்க்குகள் KMF + CF வட கொரிய வான் வட கொரிய வான் வட கொரிய வான் KPW + தென் கொரிய வான் @@ -5066,9 +5245,9 @@ For terms of use, see http://www.unicode.org/copyright.html - லவுட்டியன் கிப் - லவுட்டியன் கிப் - லவுட்டியன் கிப்கள் + லவோஷியன் கிப் + லவோஷியன் கிப் + லவோஷியன் கிப்கள் LAK @@ -5077,12 +5256,14 @@ For terms of use, see http://www.unicode.org/copyright.html லெபனீஸ் பவுண்ட் லெபனீஸ் பவுண்டுகள் LBP + இலங்கை ரூபாய் இலங்கை ரூபாய் இலங்கை ரூபாய்கள் LKR + Rs லைபீரியன் டாலர் @@ -5121,7 +5302,7 @@ For terms of use, see http://www.unicode.org/copyright.html மால்டோவன் லியூ மால்டோவன் லியூ - மால்டோவன் லியூ + மால்டோவன் லேய் MDL @@ -5129,11 +5310,12 @@ For terms of use, see http://www.unicode.org/copyright.html மலகாசி ஏரியரி மலகாசி ஏரியரிகள் MGA + Ar - மெசிடோனியன் தினார் - மெசிடோனியன் தினார் - மெசிடோனியன் தினாரி + மாசிடோனியன் டேனார் + மாசிடோனியன் டேனார் + மாசிடோனியன் டேனாரி MKD @@ -5141,6 +5323,7 @@ For terms of use, see http://www.unicode.org/copyright.html மியான்மர் கியாத் மியான்மர் கியாத்கள் MMK + K மங்கோலியன் டுக்ரிக் @@ -5166,6 +5349,7 @@ For terms of use, see http://www.unicode.org/copyright.html மொரீஷியன் ருபீ மொரீஷியன் ருபீக்கள் MUR + Rs மாலத்தீவு ருஃபியா @@ -5187,10 +5371,11 @@ For terms of use, see http://www.unicode.org/copyright.html $ - மலேஷியன் ரிங்கித் - மலேஷியன் ரிங்கித் - மலேஷியன் ரிங்கித்கள் + மலேஷியன் ரிங்கிட் + மலேஷியன் ரிங்கிட் + மலேஷியன் ரிங்கிட்கள் MYR + RM மொசாம்பிகேன் மெடிகல் @@ -5217,18 +5402,21 @@ For terms of use, see http://www.unicode.org/copyright.html நிகாராகுவான் கோர்டோபா நிகாராகுவான் கோர்டோபாக்கள் NIO + C$ நார்வேஜியன் க்ரோன் நார்வேஜியன் க்ரோன் நார்வேஜியன் க்ரோனர் NOK + kr நேபாளீஸ் ரூபாய் நேபாளீஸ் ரூபாய் நேபாளீஸ் ரூபாய்கள் NPR + Rs நியூசிலாந்து டாலர் @@ -5244,9 +5432,9 @@ For terms of use, see http://www.unicode.org/copyright.html OMR - பனாமானியன் பால்போபா - பனாமானியன் பால்போபா - பனாமானியன் பால்போபாக்கள் + பனாமானியன் பால்போவா + பனாமானியன் பால்போவா + பனாமானியன் பால்போவாக்கள் PAB @@ -5273,12 +5461,14 @@ For terms of use, see http://www.unicode.org/copyright.html பாகிஸ்தானி ரூபாய் பாகிஸ்தானி ரூபாய்கள் PKR + Rs போலிஷ் ஸ்லாட்டி போலிஷ் ஸ்லாட்டி - போலிஷ் ஸ்லாட்டி + போலிஷ் ஸ்லாட்டிகள் PLN + பராகுவன் குவாரானி @@ -5310,12 +5500,14 @@ For terms of use, see http://www.unicode.org/copyright.html ரஷியன் ரூபிள் ரஷியன் ரூபிள்கள் RUB + ருவாண்டா ஃப்ராங்க் ருவாண்டா ஃப்ராங்க் ருவாண்டா ஃப்ராங்க்குகள் RWF + RF சவுதி ரியால் @@ -5343,10 +5535,11 @@ For terms of use, see http://www.unicode.org/copyright.html SDG - ஸ்வேதிஷ் க்ரோனா - ஸ்வேதிஷ் க்ரோனா - ஸ்வேதிஷ் க்ரோனர் + ஸ்வீடிஷ் க்ரோனா + ஸ்வீடிஷ் க்ரோனா + ஸ்வீடிஷ் க்ரோனர் SEK + kr சிங்கப்பூர் டாலர் @@ -5360,6 +5553,7 @@ For terms of use, see http://www.unicode.org/copyright.html செயின்ட் ஹெலேனா பவுண்டு செயின்ட் ஹெலேனா பவுண்டுகள் SHP + £ சியாரா லியோனியன் லியோன் @@ -5392,12 +5586,14 @@ For terms of use, see http://www.unicode.org/copyright.html சாவ் டோமி மற்றும் பிரின்ஸ்பி டோப்ரா சாவ் டோமி மற்றும் பிரின்ஸ்பி டோப்ராக்கள் STD + Db சிரியன் பவுண்ட் சிரியன் பவுண்ட் சிரியன் பவுண்டுகள் SYP + £ சுவாஸி லிலாங்கனி @@ -5410,6 +5606,7 @@ For terms of use, see http://www.unicode.org/copyright.html தாய் பாட் தாய் பாட் ฿ + ฿ தஜிகிஸ்தானி சோமோனி @@ -5434,6 +5631,7 @@ For terms of use, see http://www.unicode.org/copyright.html தொங்கான் பங்கா தொங்கான் பங்கா TOP + T$ துருக்கிஷ் லீரா @@ -5441,11 +5639,12 @@ For terms of use, see http://www.unicode.org/copyright.html துருக்கிஷ் லீரா TRY + TL - டிரினாட் மற்றும் டோபாகோ டாலர் - டிரினாட் மற்றும் டோபாகோ டாலர் - டிரினாட் மற்றும் டோபாகோ டாலர்கள் + டிரினிடாட் மற்றும் டோபாகோ டாலர் + டிரினிடாட் மற்றும் டோபாகோ டாலர் + டிரினிடாட் மற்றும் டோபாகோ டாலர்கள் TTD $ @@ -5490,16 +5689,17 @@ For terms of use, see http://www.unicode.org/copyright.html $ - உஸ்பெக்கிஸ்தான் சோம் - உஸ்பெக்கிஸ்தான் சோம் - உஸ்பெக்கிஸ்தான் சோம் + உஸ்பெக்கிஸ்தானி சோம் + உஸ்பெக்கிஸ்தானி சோம் + உஸ்பெக்கிஸ்தானி சோம் UZS - வெனிசுலியன் போலிவர் - வெனிசுலியன் போலிவர் - வெனிசுலியன் போலிவர்கள் + வெனிசுலன் போலிவர் + வெனிசுலன் போலிவர் + வெனிசுலன் போலிவர்கள் VEF + Bs வியட்நாமீஸ் டாங் @@ -5521,9 +5721,9 @@ For terms of use, see http://www.unicode.org/copyright.html WST - ஃப்ராங்க் (CFA BEAC) - ஃப்ராங்க் (CFA BEAC) - ஃப்ராங்குகள் (CFA BEAC) + மத்திய ஆப்பிரிக்க CFA ஃப்ராங்க் + மத்திய ஆப்பிரிக்க CFA ஃப்ராங்க் + மத்திய ஆப்பிரிக்க CFA ஃப்ராங்க்குகள் FCFA @@ -5531,11 +5731,12 @@ For terms of use, see http://www.unicode.org/copyright.html கிழக்கு கரீபியன் டாலர் கிழக்கு கரீபியன் டாலர்கள் EC$ + $ - CFA ஃப்ராங்க் BCEAO - CFA ஃப்ராங்க் BCEAO - CFA ஃப்ராங்க் BCEAO + மேற்கு ஆப்பிரிக்கன் CFA ஃப்ராங்க் + மேற்கு ஆப்பிரிக்கன் CFA ஃப்ராங்க் + மேற்கு ஆப்பிரிக்கன் CFA ஃப்ராங்க்குகள் CFA @@ -5560,6 +5761,7 @@ For terms of use, see http://www.unicode.org/copyright.html தென் ஆப்ரிக்க ராண்ட் தென் ஆப்ரிக்க ராண்ட் ZAR + R ஸாம்பியன் குவாசா (1968–2012) @@ -5569,6 +5771,7 @@ For terms of use, see http://www.unicode.org/copyright.html ஸாம்பியன் குவாசா ஸாம்பியன் குவாசாக்கள் ZMW + ZK @@ -5591,6 +5794,21 @@ For terms of use, see http://www.unicode.org/copyright.html சதுர வினாடிக்கு {0} மீட்டர் சதுர வினாடிக்கு {0} மீட்டர்கள் + + சுழற்சி + {0} சுழற்சி + {0} சுழற்சிகள் + + + ரேடியன் + {0} ரேடியன் + {0} ரேடியன் + + + டிகிரி + {0} டிகிரி + {0} டிகிரி + ஆர்க் நிமிடங்கள் {0} ஆர்க் நிமிடம் @@ -5598,33 +5816,45 @@ For terms of use, see http://www.unicode.org/copyright.html ஆர்க் விநாடிகள் - {0}ஆர்க்விநாடி + {0} ஆர்க் விநாடி {0} ஆர்க் விநாடிகள் - - டிகிரி - {0} டிகிரி - {0} டிகிரி - - - ரேடியன் - {0} ரேடியன் - {0} ரேடியன் - - - ஏக்கர் - {0} ஏக்கர் - {0} ஏக்கர் + + சதுர கிலோமீட்டர்கள் + {0} சதுர கிலோமீட்டர் + {0} சதுர கிலோமீட்டர்கள் ஹெக்டேர் {0} ஹெக்டேர் {0} ஹெக்டேர் + + சதுர மீட்டர்கள் + {0} சதுர மீட்டர் + {0} சதுர மீட்டர் + {0}/சதுர மீட்டர் + சதுர சென்டி மீட்டர்கள் {0} சதுர சென்டிமீட்டர் {0} சதுர சென்டிமீட்டர்கள் + {0}/சதுர சென்டிமீட்டர் + + + சதுர மைல்கள் + {0} சதுர மைல் + {0} சதுர மைல் + + + ஏக்கர் + {0} ஏக்கர் + {0} ஏக்கர் + + + சதுர யார்டுகள் + {0} சதுர யார்டு + {0} சதுர யார்டுகள் சதுர அடி @@ -5635,91 +5865,106 @@ For terms of use, see http://www.unicode.org/copyright.html சதுர அங்குலங்கள் {0} சதுர அங்குலம் {0} சதுர அங்குலங்கள் + {0}/சதுர அங்குலம் - - சதுர கிலோமீட்டர்கள் - {0} சதுர கிலோமீட்டர் - {0} சதுர கிலோமீட்டர்கள் - - - சதுர மீட்டர்கள் - {0} சதுர மீட்டர் - {0} சதுர மீட்டர் - - - சதுர மைல்கள் - {0} சதுர மைல் - {0} சதுர மைல் - - - சதுர யார்டுகள் - {0} சதுர யார்டு - {0} சதுர யார்டுகள் + + காரட்கள் + {0} காரட் + {0} காரட்கள் லிட்டர்கள்/கிலோமீட்டர் {0} லிட்டர்/கிலோமீட்டர் {0} லிட்டர்கள்/கிலோமீட்டர் + + லிட்டர்/100கி.மீ + {0} லிட்டர்/100கி.மீ + {0} லிட்டர்/100கி.மீ + மைல்கள்/கேலன் {0} மைல்/காலன் - {0} மைல்/காலன் - - - பிட்கள் - {0} பிட் - {0} பிட்கள் - - - பைட்கள் - {0} பைட் - {0} பைட்கள் - - - கிகாபிட்கள் - {0} கிகாபிட் - {0} கிகாபிட்கள் - - - கிகாபைட்கள் - {0} கிகாபைட் - {0} கிகாபைட்கள் - - - கிலோ பிட்கள் - {0} கிலோ பிட் - {0} கிலோ பிட்கள் - - - கிலோ பைட்கள் - {0} கிலோ பைட் - {0} கிலோ பைட்கள் - - - மெகா பிட்கள் - {0} மெகா பிட் - {0} Mb - - - மெகாபைட்கள் - {0} மெகாபைட் - {0} மெகாபைட்கள் - - - டெரா பிட்கள் - {0} டெரா பிட் - {0} டெரா பிட்கள் + {0} மைல்கள்/காலன் டெராபைட்கள் {0} டெராபைட் {0} டெராபைட்கள் + + டெரா பிட்கள் + {0} டெரா பிட் + {0} டெரா பிட்கள் + + + கிகாபைட்கள் + {0} கிகாபைட் + {0} கிகாபைட்கள் + + + கிகாபிட்கள் + {0} கிகாபிட் + {0} கிகாபிட்கள் + + + மெகாபைட்கள் + {0} மெகாபைட் + {0} மெகாபைட்கள் + + + மெகா பிட்கள் + {0} மெகா பிட் + {0} Mb + + + கிலோ பைட்கள் + {0} கிலோ பைட் + {0} கிலோ பைட்கள் + + + கிலோ பிட்கள் + {0} கிலோ பிட் + {0} கிலோ பிட்கள் + + + பைட்கள் + {0} பைட் + {0} பைட்கள் + + + பிட்கள் + {0} பிட் + {0} பிட்கள் + + + நூற்றாண்டுகள் + {0} நூற்றாண்டு + {0} நூற்றாண்டுகள் + + + ஆண்டுகள் + {0} ஆண்டு + {0} ஆண்டுகள் + ஒரு வருடத்தில் {0} + + + மாதங்கள் + {0} மாதம் + {0} மாதங்கள் + {0}/மா + + + வாரங்கள் + {0} வாரம் + {0} வாரங்கள் + {0}/வா + நாட்கள் {0} நாள் {0} நாட்கள் + {0}/நாள் மணிநேரங்கள் @@ -5727,47 +5972,33 @@ For terms of use, see http://www.unicode.org/copyright.html {0} மணிநேரங்கள் {0}/மணிநேரம் - - மைக்ரோவிநாடிகள் - {0} மைக்ரோவிநாடி - {0} மைக்ரோவிநாடிகள் + + நிமிடங்கள் + {0} நிமிடம் + {0} நிமிடங்கள் + {0}/நிமிடம் + + + விநாடிகள் + {0} விநாடி + {0} விநாடிகள் + {0}/விநாடி மில்லிவிநாடிகள் {0} மில்லிவிநாடி {0} மில்லிவிநாடிகள் - - நிமிடங்கள் - {0} நிமிடம் - {0} நிமிடங்கள் - - - மாதங்கள் - {0} மாதம் - {0} மாதங்கள் + + மைக்ரோவிநாடிகள் + {0} மைக்ரோவிநாடி + {0} மைக்ரோவிநாடிகள் நானோசெகண்டுகள் {0} நானோசெகண்டு {0} நானோசெகண்டுகள் - - விநாடிகள் - {0} விநாடி - {0} விநாடிகள் - {0}/விநாடிக்கு - - - வாரங்கள் - {0} வாரம் - {0} வாரங்கள் - - - ஆண்டுகள் - {0} ஆண்டு - {0} ஆண்டுகள் - ஆம்பியர்கள் {0} ஆம்பியர் @@ -5788,6 +6019,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} வோல்ட் {0} வோல்ட்கள் + + கிலோகலோரிகள் + {0} கிலோகலோரி + {0} கிலோகலோரிகள் + கலோரிகள் {0} கலோரி @@ -5798,21 +6034,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} கலோரி {0} கலோரிகள் - - ஜூல் - {0} ஜூல் - {0} ஜூல்கள் - - - கிலோகலோரிகள் - {0} கிலோகலோரி - {0} கிலோகலோரிகள் - கிலோஜூல்கள் {0} கிலோஜூல் {0} கிலோஜூல்கள் + + ஜூல்கள் + {0} ஜூல் + {0} ஜூல்கள் + கிலோவாட் மணிநேரம் {0} கிலோவாட் மணிநேரம் @@ -5823,191 +6054,215 @@ For terms of use, see http://www.unicode.org/copyright.html {0} கிகாஹெர்ட்ஸ் {0} கிகாஹெர்ட்ஸ் - - ஹெர்ட்ஸ் - {0} ஹெர்ட்ஸ் - {0} ஹெர்ட்ஸ் + + மெகாஹெர்ட்ஸ் + {0} மெகாஹெர்ட்ஸ் + {0} மெகாஹெர்ட்ஸ் கிலோஹெர்ட்ஸ் {0} கிலோஹெர்ட்ஸ் {0} கிலோஹெர்ட்ஸ் - - மெஹாஹெர்ட்ஸ் - {0} மெஹாஹெர்ட்ஸ் - {0} மெஹாஹெர்ட்ஸ் + + ஹெர்ட்ஸ் + {0} ஹெர்ட்ஸ் + {0} ஹெர்ட்ஸ் - - வானியல் அலகு - {0} வானியல் அலகு - {0} வானியல் அலகுகள் + + கிலோமீட்டர்கள் + {0} கிலோமீட்டர் + {0} கிலோமீட்டர்கள் + {0}/கிலோமீட்டர் - - சென்டிமீட்டர்கள் - {0} சென்டிமீட்டர் - {0} சென்டிமீட்டர்கள் + + மீட்டர்கள் + {0} மீட்டர் + {0} மீட்டர்கள் + {0}/மீ. டெசிமீட்டர்கள் {0} டெசிமீட்டர் {0} டெசிமீட்டர்கள் - - அடி - {0} அடி - {0} அடி - - - அங்குலங்கள் - {0} அங்குலம் - {0} அங்குலங்கள் - - - கிலோமீட்டர்கள் - {0} கிலோமீட்டர் - {0} கிலோமீட்டர்கள் - - - ஒளி ஆண்டுகள் - {0} ஒளி ஆண்டு - {0} ஒளி ஆண்டுகள் - - - மீட்டர்கள் - {0} மீட்டர் - {0} மீட்டர்கள் - - - மைக்ரோமீட்டர்கள் - {0} மைக்ரோமீட்டர் - {0} மைக்ரோமீட்டர்கள் - - - மைல்கள் - {0} மைல் - {0} மைல்கள் + + சென்டிமீட்டர்கள் + {0} சென்டிமீட்டர் + {0} சென்டிமீட்டர்கள் + {0}/செ.மீ. மில்லிமீட்டர்கள் {0} மில்லிமீட்டர் {0} மில்லிமீட்டர்கள் + + மைக்ரோமீட்டர்கள் + {0} மைக்ரோமீட்டர் + {0} மைக்ரோமீட்டர்கள் + நானோமீட்டர்கள் {0} நானோமீட்டர் {0} நானோமீட்டர்கள் - - கடல் மைல்கள் - {0} கடல் மைல் - {0} கடல் மைல்கள் - - - புடைநொடிகள் - {0} புடைநொடி - {0} புடைநொடிகள் - பைக்கோமீட்டர்கள் {0} பைக்கோமீட்டர் {0} பைக்கோமீட்டர்கள் + + மைல்கள் + {0} மைல் + {0} மைல்கள் + கெஜம் {0} கெஜம் {0} கெஜம் + + அடி + {0} அடி + {0} அடி + {0}/அடி + + + அங்குலங்கள் + {0} அங்குலம் + {0} அங்குலங்கள் + {0}/அங்குலம் + + + புடைநொடிகள் + {0} புடைநொடி + {0} புடைநொடிகள் + + + ஒளி ஆண்டுகள் + {0} ஒளி ஆண்டு + {0} ஒளி ஆண்டுகள் + + + வானியல் அலகுகள் + {0} வானியல் அலகு + {0} வானியல் அலகுகள் + + + கடல் மைல்கள் + {0} கடல் மைல் + {0} கடல் மைல்கள் + + + ஸ்கேண்டிநேவியன் மைல் + {0} ஸ்கேண்டிநேவியன் மைல் + {0} ஸ்கேண்டிநேவியன் மைல்கள் + லக்ஸ் {0} லக்ஸ் {0} லக்ஸ் - - கேரட்கள் - {0} கேரட் - {0} கேரட்கள் - - - கிராம்கள் - {0} கிராம் - {0} கிராம்கள் - - - கிலோகிராம்கள் - {0} கிலோகிராம் - {0} கிலோகிராம்கள் - மெட்ரிக் டன்கள் {0} மெட்ரிக் டன் {0} மெட்ரிக் டன்கள் - - மைக்ரோ கிராம்கள் - {0} மைக்ரோ கிராம் - {0} மைக்ரோ கிராம்கள் + + கிலோகிராம்கள் + {0} கிலோகிராம் + {0} கிலோகிராம்கள் + {0}/கிலோகிராம் + + + கிராம்கள் + {0} கிராம் + {0} கிராம்கள் + {0}/கிராம் மில்லி கிராம்கள் {0} மில்லி கிராம் {0} மில்லி கிராம்கள் - - அவுன்ஸ்கள் - {0} அவுன்ஸ் - {0} அவுன்ஸ்கள் - - - ட்ராய் அவுன்ஸ்கள் - {0} ட்ராய் அவுன்ஸ் - {0} ட்ராய் அவுன்ஸ்கள் - - - பவுண்டுகள் - {0} பவுண்டு - {0} பவுண்டுகள் + + மைக்ரோ கிராம்கள் + {0} மைக்ரோ கிராம் + {0} மைக்ரோ கிராம்கள் டன்கள் {0} டன் {0} டன்கள் + + பவுண்டுகள் + {0} பவுண்டு + {0} பவுண்டுகள் + {0}/பவுண்டு + + + அவுன்ஸ்கள் + {0} அவுன்ஸ் + {0} அவுன்ஸ்கள் + {0}/அவுன்ஸ் + + + ட்ராய் அவுன்ஸ்கள் + {0} ட்ராய் அவுன்ஸ் + {0} ட்ராய் அவுன்ஸ்கள் + + + கேரட்கள் + {0} கேரட் + {0} கேரட்கள் + கிகாவாட்ஸ் {0} கிகாவாட் {0} கிகாவாட்ஸ் - - குதிரைத்திறன் - {0} குதிரைத்திறன் - {0} குதிரைத்திறன் - - - கிலோவாட்கள் - {0} கிலோவாட் - {0} கிலோவாட்கள் - மெகாவாட்ஸ் {0} மெகாவாட் {0} மெகாவாட்ஸ் - - மில்லிவாட்ஸ் - {0} மில்லிவாட் - {0} மில்லிவாட்ஸ் + + கிலோவாட்கள் + {0} கிலோவாட் + {0} கிலோவாட்கள் வாட்ஸ் {0} வாட் {0} வாட்ஸ் + + மில்லிவாட்ஸ் + {0} மில்லிவாட் + {0} மில்லிவாட்ஸ் + + + குதிரைத்திறன் + {0} குதிரைத்திறன் + {0} குதிரைத்திறன் + ஹெக்டோபாஸ்கல் {0} ஹெக்டோபாஸ்கல் {0} ஹெக்டோபாஸ்கல் + + பாதரச மில்லிமீட்டர்கள் + {0} பாதரச மில்லிமீட்டர் + {0} பாதரச மில்லிமீட்டர்கள் + + + பவுண்டுகள்/சதுர அங்குலம் + {0} பவுண்டு/சதுர அங்குலம் + {0} பவுண்டுகள்/சதுர அங்குலம் + பாதரச அங்குலங்கள் {0} பாதரச அங்குலம் @@ -6018,21 +6273,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} மில்லிபார் {0} மில்லிபார்கள் - - பாதரச மில்லிமீட்டர்கள் - {0} பாதரச மில்லிமீட்டர் - {0} பாதரச மில்லிமீட்டர்கள் - - - சதுர அங்குலத்திற்கு பவுண்டுகள் - {0} சதுர அங்குலத்திற்கு பவுண்டு - {0} சதுர அங்குலத்திற்கு பவுண்டுகள் - - - காரட்கள் - {0} காரட்கள் - {0} காரட்கள் - கிலோமீட்டர்கள்/மணிநேரம் {0} கிலோமீட்டர்/மணிநேரம் @@ -6048,6 +6288,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} மைல்/மணிநேரம் {0} மைல்கள்/மணிநேரம் + + நாட் + {0} நாட் + {0} நாட் + + + ° + {0}° + {0}° + டிகிரி செல்சியஸ் {0} டிகிரி செல்சியஸ் @@ -6059,34 +6309,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0} டிகிரி ஃபாரன்ஹீட் - கெல்வின்கள் + கெல்வின் {0} கெல்வின் - {0} கெல்வின்கள் - - - ஏக்கர் அடி - {0} ஏக்கர் அடி - {0} ஏக்கர் அடி - - - சென்டிலிட்டர்கள் - {0} சென்டிலிட்டர் - {0} சென்டிலிட்டர்கள் - - - கனசதுர சென்டிமீட்டர்கள் - {0} கனசதுர சென்டிமீட்டர் - {0} கனசதுர சென்டிமீட்டர்கள் - - - கனசதுர அடி - {0} கனசதுர அடி - {0} கனசதுர அடி - - - கனசதுர அங்குலங்கள் - {0} கனசதுர அங்குலம் - {0} கனசதுர அங்குலங்கள் + {0} கெல்வின் கன கிலோமீட்டர்கள் @@ -6097,6 +6322,13 @@ For terms of use, see http://www.unicode.org/copyright.html கன மீட்டர்கள் {0} கன மீட்டர் {0} கன மீட்டர்கள் + {0}/கன மீட்டர் + + + கனசதுர சென்டிமீட்டர்கள் + {0} கனசதுர சென்டிமீட்டர் + {0} கனசதுர சென்டிமீட்டர்கள் + {0}/கனசதுர சென்டிமீட்டர் கன மைல்கள் @@ -6108,25 +6340,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} கன யார்டு {0} கன யார்டுகள் - - கோப்பைகள் - {0} கோப்பை - {0} கோப்பைகள் + + கனசதுர அடி + {0} கனசதுர அடி + {0} கனசதுர அடி - - டெசிலிட்டர்கள் - {0} டெசிலிட்டர் - {0} டெசிலிட்டர்கள் + + கனசதுர அங்குலங்கள் + {0} கனசதுர அங்குலம் + {0} கனசதுர அங்குலங்கள் - - திரவ அவுன்ஸ் - {0} திரவ அவுன்ஸ் - {0} திரவ அவுன்ஸ் - - - கேலன்கள் - {0} கேலன் - {0} கேலன்கள் + + மெகாலிட்டர்கள் + {0} மெகாலிட்டர் + {0} மெகாலிட்டர்கள் ஹெக்டோலிட்டர்கள் @@ -6137,26 +6364,63 @@ For terms of use, see http://www.unicode.org/copyright.html லிட்டர்கள் {0} லிட்டர் {0} லிட்டர்கள் + {0}/லிட்டர் - - மெகாலிட்டர்கள் - {0} மெகாலிட்டர் - {0} மெகாலிட்டர்கள் + + டெசிலிட்டர்கள் + {0} டெசிலிட்டர் + {0} டெசிலிட்டர்கள் + + + சென்டிலிட்டர்கள் + {0} சென்டிலிட்டர் + {0} சென்டிலிட்டர்கள் மில்லிலிட்டர்கள் {0} மில்லிலிட்டர் {0} மில்லிலிட்டர்கள் + + மெட்ரிக் பின்ட்கள் + {0} மெட்ரிக் பின்ட் + {0} மெட்ரிக் பின்ட்கள் + + + மெட்ரிக் கோப்பைகள் + {0} மெட்ரிக் கோப்பை + {0} மெட்ரிக் கோப்பைகள் + + + ஏக்கர் அடி + {0} ஏக்கர் அடி + {0} ஏக்கர் அடி + + + கேலன்கள் + {0} கேலன் + {0} கேலன்கள் + {0}/கேலன் + + + குவார்ட்ஸ் + {0} குவார்ட் + {0} குவார்ட்ஸ் + பின்ட்கள் {0} பின்ட் {0} பின்ட்கள் - - குவார்ட்ஸ் - {0} குவார்ட்ஸ் - {0} குவார்ட்ஸ் + + கோப்பைகள் + {0} கோப்பை + {0} கோப்பைகள் + + + திரவ அவுன்ஸ் + {0} திரவ அவுன்ஸ் + {0} திரவ அவுன்ஸ் மேஜைக்கரண்டி @@ -6168,6 +6432,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} தேக்கரண்டி {0} தேக்கரண்டி + + {0}கி + {0}வ + {0}தெ + {0}மே + @@ -6183,6 +6453,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} மீ/வி² {0} மீ/வி² + + சுழற். + {0} சுழற். + {0} சுழற். + + + ரேடி. + {0} ரேடி. + {0} ரேடி. + + + டிகிரி + {0} டிகி. + {0} டிகி. + ஆர்க்நிமி. {0} ஆர்க்நிமி. @@ -6193,30 +6478,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ஆர்க்விநா. {0} ஆர்க்விநா. - - டிகிரி - {0} டிகி. - {0} டிகி. - - - ரேடி. - {0} ரேடி. - {0} ரேடி. - - - ஏக்கர் - {0} ஏக். - {0} ஏக். + + கி.மீ.² + {0} கி.மீ.² + {0} கி.மீ.² ஹெக்டேர் {0} ஹெக். {0} ஹெக். + + மீட்டர்கள்² + {0} மீ² + {0} மீ² + {0}/மீ² + செ.மீ.² {0} செ.மீ.² {0} செ.மீ.² + {0}/செ.மீ.² + + + சதுர மைல்கள் + {0} ச. மை. + {0} ச. மை. + + + ஏக்கர் + {0} ஏக். + {0} ஏக். + + + யார்டுகள்² + {0} யா² + {0} யா.² சதுர அடி @@ -6224,125 +6521,121 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ச.அ. - அங்.² + அங்குலங்கள்² {0} அங்.² {0} அங்.² + {0}/அங்.² - - கிமீ² - {0} கிமீ² - {0} கிமீ² - - - மீட்டர்கள்² - {0} மீ² - {0} மீ² - - - சதுர மைல்கள் - {0} ச. மை. - {0} ச. மை. - - - யா.² - {0} யா² - {0} யா.² + + காரட்கள் + {0} கார. + {0} கார. - லி/கி.மீ. - {0} லி/கி.மீ. - {0} லி/கி.மீ. + லி./கி.மீ. + {0} லி./கி.மீ. + {0} லி./கி.மீ. + + + லி./100கி.மீ + {0} லி./100கி.மீ + {0} லி./100கி.மீ மைல்கள்/கா. {0} மை./கா. {0} மை./கா. - - பிட் - {0} பிட் - {0} பிட் - - - பைட் - {0} பை. - {0} பை. - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB + + TB + {0} TB + {0} TB Tb {0} Tb {0} Tb - - TB - {0} TB - {0} TB + + கி.பைட் + {0} GB + {0} GB + + + கி.பிட் + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + பைட் + {0} பை. + {0} பை. + + + பிட் + {0} பிட் + {0} பிட் + + + நூ. + {0} நூ. + {0} நூ. + + + ஆண்டுகள் + {0} ஆண்டு + {0} ஆண்டு. + {0}/ஆ. + + + மாத + {0} மாதம் + {0} மாத + {0}/மா + + + வார + {0} வாரம் + {0} வார + {0}/வார நாட்கள் {0} நாள் {0} நாட்கள் + {0}/நா - மணிநேரங்கள் + மணிநேர {0} மணிநேரம் {0} மணிநேரம் - {0} /ம.நே. - - - μsecs - {0} μs - {0} μs - - - மில்லிவிநாடி - {0} மி.வி. - {0} மி.வி. + {0} /ம.நே - நிமிடங்கள் + நிமிட {0} நிமிடம் - {0} நிமிடங்கள் - - - மாதங்கள் - {0} மாதம் - {0} மாதங்கள் - - - நானோசெகண்டுகள் - {0} நா.செ. - {0} நா.செ. + {0} நிமிட + {0}/நிமிட விநாடிகள் @@ -6350,15 +6643,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} விநாடிகள் {0}/வி - - வாரங்கள் - {0} வாரம் - {0} வாரங்கள் + + மில்லிவிநாடி + {0} மி.வி. + {0} மி.வி. - - ஆண்டுகள் - {0} ஆண்டு - {0} ஆண்டு. + + μsecs + {0} μs + {0} μs + + + நானோசெகண்டுகள் + {0} நா.செ. + {0} நா.செ. ஆம்ப். @@ -6380,6 +6678,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} வோ. {0} வோ. + + கி.கலோ. + {0} கி.கலோ. + {0} கி.கலோ. + கலோ. {0} கலோ. @@ -6390,21 +6693,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} கலோ. {0} கலோ. - - ஜூல் - {0} ஜூ. - {0} ஜூ. - - - கி.கலோ. - {0} கி.கலோ. - {0} கி.கலோ. - கி.ஜூ. {0} கி.ஜூ. {0} கி.ஜூ. + + ஜூல் + {0} ஜூ. + {0} ஜூ. + கி.வா-ம.நே. {0} கி.வா.ம.நே. @@ -6415,218 +6713,227 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ஜி.ஹெஸ். {0} ஜி.ஹெஸ். - - ஹெஸ். - {0} ஹெஸ். - {0} ஹெஸ். + + மெ.ஹெஸ். + {0} மெ.ஹெஸ். + {0} மெ.ஹெஸ். கி.ஹெஸ். {0} கி.ஹெஸ். {0} கி.ஹெஸ். - - மெ.ஹெஸ். - {0} மெ.ஹெஸ். - {0} மெ.ஹெஸ். + + ஹெஸ். + {0} ஹெஸ். + {0} ஹெஸ். - - வா.அ. - {0} வா.அ. - {0} வா.அ. + + கி.மீ. + {0} கி.மீ. + {0} கி.மீ. + {0}/கி.மீ. - - செ.மீ. - {0} செ.மீ. - {0} செ.மீ. + + மீட்டர்கள் + {0} மீ. + {0} மீ. + {0}/மீ. டெ.மீ {0} டெ.மீ {0} டெ.மீ - - அடி - {0} அடி - {0} அடி + + செ.மீ. + {0} செ.மீ. + {0} செ.மீ. + {0}/செ.மீ. - - அங்குலங்கள் - {0} அங். - {0} அங். - - - கிமீ - {0} கி.மீ. - {0} கி.மீ. - - - ஒளி ஆண்டுகள் - {0} ஒ.ஆ. - {0} ஒ.ஆ. - - - மீட்டர்கள் - {0} மீ. - {0} மீ. + + மி.மீ. + {0} மி.மீ. + {0} மி.மீ. µமீ. {0} µமீ. {0} µமீ. - - மைல்கள் - {0} மை. - {0} மை. - - - மில்லிமீட்டர்கள் - {0} மி.மீ. - {0} மி.மீ. - நா.மீ. {0} நா.மீ. {0} நா.மீ. - - க.மை. - {0} க.மை. - {0} க.மை. - - - பு.நொ. - {0} பு.நொ. - {0} பு.நொ. - பை.மீ {0} பை.மீ. {0} பை.மீ. + + மைல்கள் + {0} மை. + {0} மை. + கெஜ. {0} கெஜ. {0} கெஜ. + + அடி + {0} அடி + {0} அடி + {0}/அடி + + + அங்குலங்கள் + {0} அங். + {0} அங். + {0}/அங். + + + பு.நொ. + {0} பு.நொ. + {0} பு.நொ. + + + ஒளி ஆண்டுகள் + {0} ஒ.ஆ. + {0} ஒ.ஆ. + + + வா.அ. + {0} வா.அ. + {0} வா.அ. + + + க.மை. + {0} க.மை. + {0} க.மை. + + + ஸ்.மை. + {0} ஸ்.மை. + {0} ஸ்.மை. + லக்ஸ் {0} லக். {0} லக். - - கேரட்கள் - {0} CD - {0} CD - - - கிராம்கள் - {0} கி. - {0} கி. - - - கி.கி. - {0} கி.கி. - {0} கி.கி. - ட. {0} ட. {0} ட. - - µகி - {0} µகி - {0} µகி + + கி.கி. + {0} கி.கி. + {0} கி.கி. + {0}/கி.கி. + + + கிராம்கள் + {0} கி. + {0} கி. + {0}/கி. மி.கி. {0} மி.கி. {0} மி.கி. + + µகி + {0} µகி + {0} µகி + + + டன்கள் + {0} டன் + {0} டன் + + + பவுண்டுகள் + {0} பவு. + {0} பவு. + {0}/பவு. + அவு. {0} அவு. {0} அவு. + {0}/அவு. அவு. டி. {0} அவு. டி. {0} அவு. டி. - - பவுண்டுகள் - {0} பவு. - {0} பவு. - - - tn - {0} டன் - {0} டன் + + கேரட்கள் + {0} CD + {0} CD கி.வாட். {0} கி.வாட். {0} கி.வாட். - - கு.தி. - {0} கு.தி. - {0} கு.தி. + + மெ.வா. + {0} மெ.வா. + {0} மெ.வா. கி.வா. {0} கி.வா. {0} கி.வா. - - மெ.வா. - {0} மெ.வா. - {0} மெ.வா. + + வாட்ஸ் + {0} வா. + {0} வா. மி.வா. {0} மி.வா. {0} மி.வா. - - வாட்ஸ் - {0} வா. - {0} வா. + + கு.தி. + {0} கு.தி. + {0} கு.தி. ஹெ.பாஸ். {0} ஹெ.பாஸ். {0} ஹெ.பாஸ். - - பாதரச அங்குலம் - {0} பா.அங். - {0} பா.அங். - - - மில்லிபார் - {0} மி.பா. - {0} மி.பா. - mm Hg - {0} mm Hg - {0} mm Hg + {0} Hg மி.மீ. + {0} Hg மி.மீ. psi {0} psi {0} psi - - காரட்கள் - {0} கார. - {0} கார. + + Hg அங். + {0} inHg + {0} inHg + + + மில்லிபார் + {0} மி.பா. + {0} மி.பா. - கிமீ/மணிநேரம் + கி.மீ./மணிநேரம் {0} கி.மீ./ம.நே. {0} கி.மீ./ம.நே. @@ -6640,8 +6947,18 @@ For terms of use, see http://www.unicode.org/copyright.html {0} மை/ம.நே. {0} மை/ம.நே. + + நா. + {0} நா. + {0} நா. + + + ° + {0}° + {0}° + - டிகிரி செல்சியஸ் + டிகிரி செ. {0}°செ. {0}°செ. @@ -6655,31 +6972,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} கெல் {0} கெல் - - ஏக். அடி - {0} ஏக். அடி - {0} ஏக். அடி - - - செ.லி. - {0} செ.லி. - {0} செ.லி. - - - செ.மீ.³ - {0} செ.மீ.³ - {0} செ.மீ.³ - - - அடி³ - {0} அடி³ - {0} அடி³ - - - அங்.³ - {0} அங்.³ - {0} அங்.³ - கிமீ³ {0} கிமீ³ @@ -6689,6 +6981,13 @@ For terms of use, see http://www.unicode.org/copyright.html மீ³ {0} மீ³ {0} மீ³ + {0}/மீ³ + + + செ.மீ.³ + {0} செ.மீ.³ + {0} செ.மீ.³ + {0}/cm³ மை³ @@ -6700,25 +6999,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} யா.³ {0} யா.³ - - கோப்பைகள் - {0} கோ. - {0} கோ. + + அடி³ + {0} அடி³ + {0} அடி³ - - டெ.லி. - {0} டெ.லி. - {0} டெ.லி. + + அங்.³ + {0} அங்.³ + {0} அங்.³ - - தி. அவு. - {0} தி. அவு. - {0} தி. அவு. - - - கேல. - {0} கேல. - {0} கேல. + + மெ.லி. + {0} மெ.லி. + {0} மெ.லி. ஹெ.லி. @@ -6729,27 +7023,64 @@ For terms of use, see http://www.unicode.org/copyright.html லிட்டர்கள் {0} லி. {0} லி. + {0}/லி. - - மெ.லி. - {0} மெ.லி. - {0} மெ.லி. + + டெ.லி. + {0} டெ.லி. + {0} டெ.லி. + + + செ.லி. + {0} செ.லி. + {0} செ.லி. மிலி {0} மிலி {0} மிலி - - பின். - {0} பின். - {0} பின். + + மெ.பி. + {0} மெ.பி. + {0} மெ.பி. + + + மெ.கோப்பை + {0} மெ.கோ. + {0} மெ.கோ. + + + ஏக். அடி + {0} ஏக். அடி + {0} ஏக். அடி + + + கேல. + {0} கேல. + {0} கேல. + {0}/கேல. குவாட். {0} குவாட். {0} குவாட். + + பின்ட்கள் + {0} பின். + {0} பின். + + + கோப்பைகள் + {0} கோ. + {0} கோ. + + + தி. அவு. + {0} தி. அவு. + {0} தி. அவு. + மே.க. {0} மே.க. @@ -6760,6 +7091,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} தே.க. {0} தே.க. + + {0}கி + {0}வ + {0}தெ + {0}மே + @@ -6769,6 +7106,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ஜி.ஃபோ. {0} ஜி.ஃபோ. + + {0}° + {0}° + {0}நிமி. {0}நிமி. @@ -6777,26 +7118,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}வி. {0}வி. - - {0}° - {0}° - - - {0} ஏக். - {0} ஏக். + + {0} ச.கிமீ. + {0} ச.கிமீ. {0} ஹெக். {0} ஹெக். - - {0} ச.அ. - {0} ச.அ. - - - {0} ச.கிமீ. - {0} ச.கிமீ. - {0} ச.மீ. {0} ச.மீ. @@ -6805,77 +7134,74 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ச. மை. {0} ச. மை. - - நாள் - {0} நா - {0} நா + + {0} ஏக். + {0} ஏக். - - மணிநேரம் - {0} ம.நே. - {0} ம.நே. + + {0} ச.அ. + {0} ச.அ. - - மில்லிவிநாடி - {0} மி.வி. - {0} மி.வி. - - - நிமிடம் - {0} நிமி. - {0} நிமி. - - - மாதம் - {0} மா - {0} மா - - - விநாடி - {0} வி. - {0} வி. - - - வாரம் - {0} வா - {0} வா + + லி./100கி.மீ + {0}லி./100கி.மீ + {0}லி./100கி.மீ ஆண்டு {0} ஆ {0} ஆ + + மா + {0} மா + {0} மா + + + வா + {0} வா + {0} வா + + + நா + {0} நா + {0} நா + + + மணி + {0} ம.நே. + {0} ம.நே. + + + நிமி. + {0} நிமி. + {0} நிமி. + + + வி. + {0} வி. + {0} வி. + + + மி.வி. + {0} மி.வி. + {0} மி.வி. + + + கி.மீ. + {0}கி.மீ. + {0}கி.மீ. + + + மீ. + {0}மீ. + {0}மீ. + செ.மீ. {0}செ.மீ. {0}செ.மீ. - - {0} அடி - {0} அடி - - - {0} அங். - {0} அங். - - - கிமீ - {0}கி.மீ. - {0}கி.மீ. - - - {0} ஒ.ஆ. - {0} ஒ.ஆ. - - - மீட்டர் - {0}மீ. - {0}மீ. - - - {0} மை. - {0} மை. - மி.மீ. {0}மி.மீ. @@ -6885,31 +7211,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} பை.மீ. {0} பை.மீ. + + {0} மை. + {0} மை. + {0} நீட். {0} நீட். - - கிராம் - {0} கி. - {0} கி. + + {0} அடி + {0} அடி + + + {0} அங். + {0} அங். + + + {0} ஒ.ஆ. + {0} ஒ.ஆ. கி.கி. {0}கி.கி. {0}கி.கி. - - {0} அவு. - {0} அவு. + + கிராம் + {0} கி. + {0} கி. {0} பவு. {0} பவு. - - {0} கு.வே. - {0} கு.வே. + + {0} அவு. + {0} அவு. {0} கி.வா. @@ -6919,6 +7257,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} வா. {0} வா. + + {0} கு.வே. + {0} கு.வே. + {0} ஹெ.பா. {0} ஹெ.பா. @@ -6932,7 +7274,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0} மி.பா. - கி.மீ./ம.நே. + கி.மீ./ம. {0}கி.மீ./ம. {0}கி.மீ./ம. @@ -6966,6 +7308,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}லி. {0}லி. + + {0}கி + {0}வ + {0}தெ + {0}மே + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ta_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ta_IN.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ta_IN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ta_IN.xml index 8181f5b6eaf..64107740d31 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ta_IN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ta_IN.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ta_LK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ta_LK.xml new file mode 100644 index 00000000000..d3a5b5d5018 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ta_LK.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + + + + + Rs. + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ta_MY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ta_MY.xml similarity index 90% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ta_MY.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ta_MY.xml index 80ddbdc3fea..73d1a29aa1d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ta_MY.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ta_MY.xml @@ -1,13 +1,12 @@ - - - + @@ -62,3 +61,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ta_SG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ta_SG.xml similarity index 90% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ta_SG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ta_SG.xml index 8f15b5ebe74..ab083555e10 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ta_SG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ta_SG.xml @@ -1,13 +1,12 @@ - - - + @@ -65,3 +64,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/te.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/te.xml similarity index 92% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/te.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/te.xml index 52c504a26ed..0f6f7f9576d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/te.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/te.xml @@ -1,13 +1,12 @@ - - - + @@ -61,6 +60,7 @@ For terms of use, see http://www.unicode.org/copyright.html బెంబా బీనా బల్గేరియన్ + పశ్చిమ బలూచీ భోజ్ పూరి బిస్లామా బికోల్ @@ -94,7 +94,7 @@ For terms of use, see http://www.unicode.org/copyright.html చిపెవ్యాన్ చెరోకీ చేయేన్ - సొరాని కుర్దిష్ + సెంట్రల్ కుర్దిష్ కోర్సికన్ కోప్టిక్ క్రి @@ -260,7 +260,7 @@ For terms of use, see http://www.unicode.org/copyright.html కాశ్మీరి శంబాలా బాఫియ - కర్డిష్ + కుర్దిష్ కుమ్యిక్ కుటేనై కోమి @@ -280,6 +280,7 @@ For terms of use, see http://www.unicode.org/copyright.html లావో మొంగో లోజి + ఉత్తర లూరీ లిథుయేనియన్ లూబ-కటాంగ లుబా-లులువ @@ -325,12 +326,14 @@ For terms of use, see http://www.unicode.org/copyright.html మార్వాడి బర్మీస్ ఎర్జియా + మాసన్‌దెరాని నౌరు నియాపోలిటన్ నమ నార్వీజియన్ బొక్మాల్ ఉత్తర దెబెలె లో జర్మన్ + లో సాక్సన్ నేపాలి నెవారి దోంగా @@ -406,6 +409,7 @@ For terms of use, see http://www.unicode.org/copyright.html సిసిలియన్ స్కాట్స్ సింధీ + దక్షిణ కుర్దిష్ ఉత్తర సామి సెనా సేల్కప్ @@ -440,8 +444,8 @@ For terms of use, see http://www.unicode.org/copyright.html సుమేరియాన్ స్వీడిష్ స్వాహిలి + కాంగో స్వాహిలి కొమొరియన్ - కాంగో స్వాహిలి సాంప్రదాయ సిరియాక్ సిరియాక్ తమిళము @@ -495,6 +499,7 @@ For terms of use, see http://www.unicode.org/copyright.html వాలామో వారే వాషో + వార్లపిరి వొలాఫ్ కల్మిక్ షోసా @@ -691,7 +696,6 @@ For terms of use, see http://www.unicode.org/copyright.html ఆంగవిల్లా అల్బేనియా ఆర్మేనియా - నేదేర్లేండ్స్ అంటిల్లిస్ అంగోలా అంటార్కటికా అర్జెంటీనా @@ -976,6 +980,9 @@ For terms of use, see http://www.unicode.org/copyright.html సంఖ్యాత్మక క్రమబద్ధీకరణ క్రమబద్ధీకరణ సామర్థ్యం కరెన్సీ + గంటల పద్ధతి (12 వర్సెస్ 24) + లైన్ బ్రేక్ శైలి + కొలమాన పద్ధతి సంఖ్యలు సమయ మండలి లొకేల్ రూపాంతరం @@ -983,95 +990,105 @@ For terms of use, see http://www.unicode.org/copyright.html ప్రైవేట్-ఉపయోగం - అరబిక్-ఇండిక్ అంకెలు - పొడిగించబడిన అరబిక్-ఇండిక్ అంకెలు - అమెరికా సంఖ్యలు - అమెరికన్ చిన్న సంఖ్యలు - బెంగాలీ అంకెలు - సాంప్రదాయ చైనీస్ క్రమబద్ధీకరణ క్రమం - Big5 - బుద్ధుల క్యాలెండర్‌ - చైనీస్ క్యాలెండర్ - కాప్టిక్ క్యాలెండర్ - దాంగీ క్యాలెండర్ - దేవనాగరి అంకెలు - నిఘంటువు క్రమబద్ధీకరణ క్రమం - డిఫాల్ట్ యూనీకోడ్ క్రమబద్ధీకరణ క్రమం - ఎథియోపిక్ సంఖ్యలు - ఎపోథిక్ క్యాలెండర్ - ఎథోపిక్ అమేటే అలెమ్ క్యాలెండర్ - ఆర్థిక సంఖ్యలు - పూర్తి వెడల్పు అంకెలు - సరళీకృత చైనీస్ క్రమబద్ధీకరణ క్రమం - GB2312 - జార్జియన్ సంఖ్యలు - గ్రేగోరియన్ క్యాలెండర్ - గ్రీక్ సంఖ్యలు - గ్రీక్ చిన్న సంఖ్యలు - గుజరాతీ అంకెలు - గుర్ముఖీ అంకెలు - చైనీయుల దశాంశ సంఖ్యలు - సరళీకృతం చెయ్యబడిన చైనీయుల సంఖ్యలు - సరళీకృతం చెయ్యబడిన చైనీయుల ఆర్థిక సంఖ్యలు - సాంప్రదాయ చైనీయుల సంఖ్యలు - సాంప్రదాయ చైనీయుల ఆర్థిక సంఖ్యలు - హిబ్రూ సంఖ్యలు - హిబ్రూ క్యాలెండర్ - అన్నింటినీ క్రమబద్ధీకరించు - భారతీయ జాతీయ క్యాలెండర్ - ఇస్లామిక్ క్యాలెండర్ - ఇస్లామిక్-సివిల్ క్యాలెండర్ - (ISO-8601) క్యాలెండర్ - జపానీయుల క్యాలెండర్ - జపానీయుల సంఖ్యలు - జపానీయలు ఆర్థిక సంఖ్యలు - ఖ్మేర్ అంకెలు - కన్నడ అంకెలు - లావో అంకెలు - పశ్చిమ అంకెలు - ముందు లోయర్‌కేస్‌ని క్రమబద్ధీకరించు - మలయాళం అంకెలు - మంగోలియన్ అంకెలు - మయన్మార్ అంకెలు - స్థానిక అంకెలు - ఉచ్ఛారణలను సాధారణంగా క్రమబద్ధీకరించు - సాధారణ కేస్ క్రమాన్ని క్రమబద్ధీకరించు - కేస్ ఇన్‌సెన్సిటివ్‌ను క్రమబద్ధీకరించు - కానాను వేరుగా క్రమబద్ధీకరించు - సాధారణీకరణ చేయకుండా క్రమబద్ధీకరించు - అంకెలను ఒక్కొక్కటిగా క్రమబద్ధీకరించు - చిహ్నాలను క్రమబద్ధీకరించు - ఒరియా అంకెలు - పర్షియన్ క్యాలెండర్ - ఫోన్‌బుక్ క్రమబద్ధీకరణ క్రమం - ధ్వని ఉచ్ఛారిత క్రమబద్ధీకరణ క్రమం - పిన్‌యిన్ క్రమబద్ధీకరణ క్రమం - ప్రాథమిక అక్షరాలను మాత్రమే క్రమబద్ధీకరించు - ఉచ్ఛారణలు/కేస్‌/వెడల్పు/కానాను క్రమబద్ధీకరించు - మళ్ళీ ఆకృతీకరించబడిన క్రమబద్ధీకరణ క్రమం - మింగ్యూ క్యాలెండర్ - రోమన్ సంఖ్యలు - రోమన్ చిన్న సంఖ్యలు - సాధారణ-ప్రయోజన శోధన - హాంగుల్ ప్రారంభ హల్లు ద్వారా శోధించు - ఉచ్ఛారణలని క్రమబద్ధీకరించు - చిహ్నాలను విస్మరించడాన్ని క్రమబద్ధీకరించు - ప్రామాణిక క్రమబద్ధీకరణ క్రమం - స్ట్రోక్ క్రమబద్ధీకరణ క్రమం - సాంప్రదాయ తమిళ సంఖ్యలు - తమిళ అంకెలు - తెలుగు అంకెలు - ఉచ్ఛారణలని/కేస్‌ని/వెడల్పుని క్రమబద్ధీకరించు - థాయ్ అంకెలు - టిబిటన్ అంకెలు - సాంప్రదాయ క్రమబద్ధీకరణ క్రమం - సాంప్రదాయ సంఖ్యలు - రాడికల్-స్ట్రోక్ క్రమబద్ధీకరణ క్రమం - ముందు అప్పర్‌కేస్‌ని క్రమబద్ధీకరించు - వాయ్ అంకెలు - ఉచ్ఛారణలను వ్యతిరేక క్రమంలో క్రమబద్ధీకరించు - కేస్ సెన్సిటివ్‌ని క్రమబద్ధీకరించు - కానాని భిన్నంగా క్రమబద్ధీకరించు - సాధారణీకరించిన యూనికోడ్‌ని క్రమబద్ధీకరించు - అంకెలను సంఖ్యాత్మకంగా క్రమబద్ధీకరించు + బుద్ధుల క్యాలెండర్‌ + చైనీస్ క్యాలెండర్ + కాప్టిక్ క్యాలెండర్ + దాంగీ క్యాలెండర్ + ఎపోథిక్ క్యాలెండర్ + ఎథోపిక్ అమేటే అలెమ్ క్యాలెండర్ + గ్రేగోరియన్ క్యాలెండర్ + హిబ్రూ క్యాలెండర్ + భారతీయ జాతీయ క్యాలెండర్ + ఇస్లామిక్ క్యాలెండర్ + ఇస్లామిక్-సివిల్ క్యాలెండర్ + (ISO-8601) క్యాలెండర్ + జపానీయుల క్యాలెండర్ + పర్షియన్ క్యాలెండర్ + మింగ్యూ క్యాలెండర్ + చిహ్నాలను క్రమబద్ధీకరించు + చిహ్నాలను విస్మరించడాన్ని క్రమబద్ధీకరించు + ఉచ్ఛారణలను సాధారణంగా క్రమబద్ధీకరించు + ఉచ్ఛారణలను వ్యతిరేక క్రమంలో క్రమబద్ధీకరించు + ముందు లోయర్‌కేస్‌ని క్రమబద్ధీకరించు + సాధారణ కేస్ క్రమాన్ని క్రమబద్ధీకరించు + ముందు అప్పర్‌కేస్‌ని క్రమబద్ధీకరించు + కేస్ ఇన్‌సెన్సిటివ్‌ను క్రమబద్ధీకరించు + కేస్ సెన్సిటివ్‌ని క్రమబద్ధీకరించు + కానాను వేరుగా క్రమబద్ధీకరించు + కానాని భిన్నంగా క్రమబద్ధీకరించు + సాంప్రదాయ చైనీస్ క్రమబద్ధీకరణ క్రమం - Big5 + నిఘంటువు క్రమబద్ధీకరణ క్రమం + డిఫాల్ట్ యూనీకోడ్ క్రమబద్ధీకరణ క్రమం + సరళీకృత చైనీస్ క్రమబద్ధీకరణ క్రమం - GB2312 + ఫోన్‌బుక్ క్రమబద్ధీకరణ క్రమం + ధ్వని ఉచ్ఛారిత క్రమబద్ధీకరణ క్రమం + పిన్‌యిన్ క్రమబద్ధీకరణ క్రమం + మళ్ళీ ఆకృతీకరించబడిన క్రమబద్ధీకరణ క్రమం + సాధారణ-ప్రయోజన శోధన + హాంగుల్ ప్రారంభ హల్లు ద్వారా శోధించు + ప్రామాణిక క్రమబద్ధీకరణ క్రమం + స్ట్రోక్ క్రమబద్ధీకరణ క్రమం + సాంప్రదాయ క్రమబద్ధీకరణ క్రమం + రాడికల్-స్ట్రోక్ క్రమబద్ధీకరణ క్రమం + సాధారణీకరణ చేయకుండా క్రమబద్ధీకరించు + సాధారణీకరించిన యూనికోడ్‌ని క్రమబద్ధీకరించు + అంకెలను ఒక్కొక్కటిగా క్రమబద్ధీకరించు + అంకెలను సంఖ్యాత్మకంగా క్రమబద్ధీకరించు + అన్నింటినీ క్రమబద్ధీకరించు + ప్రాథమిక అక్షరాలను మాత్రమే క్రమబద్ధీకరించు + ఉచ్ఛారణలు/కేస్‌/వెడల్పు/కానాను క్రమబద్ధీకరించు + ఉచ్ఛారణలని క్రమబద్ధీకరించు + ఉచ్ఛారణలని/కేస్‌ని/వెడల్పుని క్రమబద్ధీకరించు + 12 గంటల పద్ధతి (0–11) + 12 గంటల పద్ధతి (1–12) + 24 గంటల పద్ధతి (0–23) + 24 గంటల పద్ధతి (1–24) + వదులు లైన్ బ్రేక్ శైలి + సాధారణ లైన్ బ్రేక్ శైలి + కఠిన లైన్ బ్రేక్ శైలి + మెట్రిక్ పద్ధతి + ఇంపీరియల్ కొలమాన పద్ధతి + యు.ఎస్. కొలమాన పద్ధతి + అరబిక్-ఇండిక్ అంకెలు + పొడిగించబడిన అరబిక్-ఇండిక్ అంకెలు + అమెరికా సంఖ్యలు + అమెరికన్ చిన్న సంఖ్యలు + బెంగాలీ అంకెలు + దేవనాగరి అంకెలు + ఎథియోపిక్ సంఖ్యలు + ఆర్థిక సంఖ్యలు + పూర్తి వెడల్పు అంకెలు + జార్జియన్ సంఖ్యలు + గ్రీక్ సంఖ్యలు + గ్రీక్ చిన్న సంఖ్యలు + గుజరాతీ అంకెలు + గుర్ముఖీ అంకెలు + చైనీయుల దశాంశ సంఖ్యలు + సరళీకృతం చెయ్యబడిన చైనీయుల సంఖ్యలు + సరళీకృతం చెయ్యబడిన చైనీయుల ఆర్థిక సంఖ్యలు + సాంప్రదాయ చైనీయుల సంఖ్యలు + సాంప్రదాయ చైనీయుల ఆర్థిక సంఖ్యలు + హిబ్రూ సంఖ్యలు + జపానీయుల సంఖ్యలు + జపానీయలు ఆర్థిక సంఖ్యలు + ఖ్మేర్ అంకెలు + కన్నడ అంకెలు + లావో అంకెలు + పశ్చిమ అంకెలు + మలయాళం అంకెలు + మంగోలియన్ అంకెలు + మయన్మార్ అంకెలు + స్థానిక అంకెలు + ఒరియా అంకెలు + రోమన్ సంఖ్యలు + రోమన్ చిన్న సంఖ్యలు + సాంప్రదాయ తమిళ సంఖ్యలు + తమిళ అంకెలు + తెలుగు అంకెలు + థాయ్ అంకెలు + టిబిటన్ అంకెలు + సాంప్రదాయ సంఖ్యలు + వాయ్ అంకెలు BGN @@ -1163,6 +1180,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d y G MMM y G @@ -1277,7 +1295,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y – MMM y G - d–d MMM, y + G y MMM d–d d MMM – d MMM, y d MMM, y – d MMM, y @@ -1506,20 +1524,61 @@ For terms of use, see http://www.unicode.org/copyright.html + + అర్థరాత్రి + AM + PM + ఉదయం + మధ్యాహ్నం + సాయంత్రం + రాత్రి + + అర్థరాత్రి - మధ్యా సా + ఉదయం + మధ్యాహ్నం + సాయంత్రం + రాత్రి - రాత్రి + అర్థరాత్రి [AM] - ఉదయం - అర్ధరాత్రి - మధ్యాహ్నం - తెల్లవారుఝాము - మధ్యాహ్నం [PM] + ఉదయం + మధ్యాహ్నం + సాయంత్రం + రాత్రి + + + + + అర్థరాత్రి + AM + PM + ఉదయం + మధ్యాహ్నం + సాయంత్రం + రాత్రి + + + అర్థరాత్రి + AM + PM + ఉదయం + మధ్యాహ్నం + సాయంత్రం + రాత్రి + + + అర్థరాత్రి + AM + PM + ఉదయం + మధ్యాహ్నం + సాయంత్రం + రాత్రి @@ -1536,10 +1595,6 @@ For terms of use, see http://www.unicode.org/copyright.html క్రీశ [CE] - - ఈసాపూర్వ. - సన్. - @@ -1624,6 +1679,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d/M E, d/M @@ -1880,6 +1939,9 @@ For terms of use, see http://www.unicode.org/copyright.html నెల + గత నెల + ఈ నెల + తదుపరి నెల {0} నెలలో {0} నెలల్లో @@ -1891,6 +1953,9 @@ For terms of use, see http://www.unicode.org/copyright.html నె + గత నెల + ఈ నెల + తదుపరి నెల +{0} నెల +{0} నెలలు @@ -1916,6 +1981,9 @@ For terms of use, see http://www.unicode.org/copyright.html వారము + గత వారం + ఈ వారం + తదుపరి వారం {0} వారంలో {0} వారాల్లో @@ -1927,6 +1995,9 @@ For terms of use, see http://www.unicode.org/copyright.html వా + గత వారం + ఈ వారం + తదుపరి వారం +{0} వా. +{0} వా. @@ -1954,6 +2025,11 @@ For terms of use, see http://www.unicode.org/copyright.html దినం + మొన్న + నిన్న + ఈ రోజు + రేపు + ఎల్లుండి {0} రోజులో {0} రోజుల్లో @@ -1965,6 +2041,11 @@ For terms of use, see http://www.unicode.org/copyright.html ది + మొన్న + నిన్న + ఈ రోజు + రేపు + ఎల్లుండి +{0} రోజు +{0} రోజులు @@ -3064,6 +3145,9 @@ For terms of use, see http://www.unicode.org/copyright.html పోర్ట్ మోరెస్బే + + బొగెయిన్‌విల్లే + మనీలా @@ -3148,6 +3232,9 @@ For terms of use, see http://www.unicode.org/copyright.html ఇర్కుట్స్క్ + + చితా + యకుట్స్క్ @@ -3166,6 +3253,9 @@ For terms of use, see http://www.unicode.org/copyright.html మగడాన్ + + స్రెడ్నెకొలిమ్స్క్ + కమ్‌చత్కా @@ -3600,9 +3690,9 @@ For terms of use, see http://www.unicode.org/copyright.html - మధ్యమ ఆస్ట్రేలియా పశ్చిమ సమయం + మధ్యమ ఆస్ట్రేలియన్ పశ్చిమ సమయం మధ్యమ ఆస్ట్రేలియా పశ్చిమ ప్రామాణిక సమయం - మధ్యమ ఆస్ట్రేలియా పశ్చిమ పగటి సమయం + మధ్యమ ఆస్ట్రేలియన్ పశ్చిమ పగటి సమయం @@ -3615,8 +3705,8 @@ For terms of use, see http://www.unicode.org/copyright.html పశ్చిమ ఆస్ట్రేలియా సమయం - పశ్చిమ ఆస్ట్రేలియా ప్రామాణిక సమయం - పశ్చిమ ఆస్ట్రేలియా పగటి సమయం + పశ్చిమ ఆస్ట్రేలియన్ ప్రామాణిక సమయం + పశ్చిమ ఆస్ట్రేలియన్ పగటి సమయం @@ -3671,7 +3761,7 @@ For terms of use, see http://www.unicode.org/copyright.html - చామర్రో సమయం + చామర్రో ప్రామాణిక సమయం @@ -4508,6 +4598,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##,##0.00;(¤#,##,##0.00) + + + ¤0వే + ¤0వే + ¤00వే + ¤00వే + ¤000వే + ¤000వే + ¤0మి + ¤0మి + ¤00మి + ¤00మి + ¤000మి + ¤000మి + ¤0బి + ¤0బి + ¤00బి + ¤00బి + ¤000బి + ¤000బి + ¤0ట్రి + ¤0ట్రి + ¤00ట్రి + ¤00ట్రి + ¤000ట్రి + ¤000ట్రి + + {0} {1} {0} {1} @@ -4547,6 +4665,7 @@ For terms of use, see http://www.unicode.org/copyright.html అంగోలాన్ క్వాన్‌జా అంగోలాన్ క్వాన్‌జా‌లు AOA + Kz అర్జెంటీనా పెసో @@ -4579,6 +4698,7 @@ For terms of use, see http://www.unicode.org/copyright.html బోస్నియా-హెర్జగోవినా మార్పిడి చెయ్యగలిగే మార్క్ బోస్నియా-హెర్జగోవినా మార్పిడి చెయ్యగలిగే మార్క్‌లు BAM + KM బర్బాడియన్ డాలర్ @@ -4631,6 +4751,7 @@ For terms of use, see http://www.unicode.org/copyright.html బొలీవియన్ బొలీవియానో బొలీవియన్ బొలీవియానోలు BOB + Bs బ్రెజిలియన్ రియల్ @@ -4657,6 +4778,7 @@ For terms of use, see http://www.unicode.org/copyright.html బోట్స్‌వానా పులా బోట్స్‌వానా పులాలు BWP + P బెలరూసియన్ రూబల్ @@ -4724,6 +4846,7 @@ For terms of use, see http://www.unicode.org/copyright.html క్యూబన్ కన్వర్టబుల్ పెసో క్యూబన్ కన్వర్టబుల్ పెసోలు CUC + $ క్యూబన్ పెసో @@ -4743,6 +4866,7 @@ For terms of use, see http://www.unicode.org/copyright.html చెక్ రిపబ్లిక్ కోరునా చెక్ రిపబ్లిక్ కోరునాలు CZK + జిబోటియన్ ఫ్రాంక్ @@ -4755,6 +4879,7 @@ For terms of use, see http://www.unicode.org/copyright.html డానిష్ క్రోన్ డానిష్ క్రోనర్ DKK + kr డోమినికన్ పెసో @@ -4774,6 +4899,7 @@ For terms of use, see http://www.unicode.org/copyright.html ఈజిప్షియన్ పౌండ్ ఈజిప్షియన్ పౌండ్‌లు EGP + ఎరిట్రీన్ నక్ఫా @@ -4806,11 +4932,12 @@ For terms of use, see http://www.unicode.org/copyright.html ఫాక్‌ల్యాండ్ దీవులు పౌండ్ ఫాక్‌ల్యాండ్ దీవులు పౌండ్‌లు FKP + £ - బ్రిటిష్ పౌండ్ స్టెర్లింగ్ - బ్రిటిష్ పౌండ్ స్టెర్లింగ్ - బ్రిటిష్ పౌండ్‌ల స్టెర్లింగ్ + బ్రిటిష్ పౌండ్ + బ్రిటిష్ పౌండ్ + బ్రిటిష్ పౌండ్‌లు £ £ @@ -4819,6 +4946,7 @@ For terms of use, see http://www.unicode.org/copyright.html జార్జియన్ లారి జార్జియన్ లారీలు GEL + గానెయన్ సెడి @@ -4844,12 +4972,14 @@ For terms of use, see http://www.unicode.org/copyright.html గ్వినియన్ ఫ్రాంక్ గ్వినియన్ ఫ్రాంక్‌లు GNF + FG గ్యుటెమాలన్ క్వెట్‌జల్ గ్యుటెమాలన్ క్వెట్‌జల్ గ్యుటెమాలన్ క్వెట్‌జల్‌లు GTQ + Q గుయనియాస్ డాలర్ @@ -4870,12 +5000,14 @@ For terms of use, see http://www.unicode.org/copyright.html హోండురన్ లెమిపిరా హోండురన్ లెమిపిరాలు HNL + L క్రొయేషియన్ క్యూన క్రొయేషియన్ క్యూన క్రొయేషియన్ క్యూనాలు HRK + kn హైటియన్ గ్వోర్డే @@ -4888,12 +5020,14 @@ For terms of use, see http://www.unicode.org/copyright.html హంగేరియన్ ఫోరిన్ట్ హంగేరియన్ ఫోరిన్ట్‌లు HUF + Ft ఇండోనేషియా రూపాయి ఇండోనేషియా రూపాయి ఇండోనేషియా రూపాయలు IDR + Rp ఐరాయిలి న్యూ షెక్యెల్ @@ -4926,6 +5060,7 @@ For terms of use, see http://www.unicode.org/copyright.html ఐస్లాండిక్ క్రోనా ఐస్లాండిక్ క్రోనర్ ISK + kr జమైకన్ డాలర్ @@ -4971,12 +5106,14 @@ For terms of use, see http://www.unicode.org/copyright.html కొమోరియన్ ఫ్రాంక్ కొమోరియన్ ఫ్రాంక్‌లు KMF + CF ఉత్తర కొరియా వోన్ ఉత్తర కొరియా వోన్ ఉత్తర కొరియా వోన్ KPW + దక్షిణ కొరియా వోన్ @@ -5017,12 +5154,14 @@ For terms of use, see http://www.unicode.org/copyright.html లెబనీస్ పౌండ్ లెబనీస్ పౌండ్‌లు LBP + శ్రీలంక రూపాయి శ్రీలంక రూపాయి శ్రీలంక రూపాయలు LKR + Rs లిబేరియన్ డాలర్ @@ -5069,6 +5208,7 @@ For terms of use, see http://www.unicode.org/copyright.html మలగసీ అరియరీ మలగసీ అరియరీలు MGA + Ar మెసిడోనియన్ దినార్ @@ -5081,6 +5221,7 @@ For terms of use, see http://www.unicode.org/copyright.html మయన్మార్ క్యాట్ మయన్మార్ క్యాట్‌లు MMK + K మంగోలియన్ టుగ్రిక్ @@ -5106,6 +5247,7 @@ For terms of use, see http://www.unicode.org/copyright.html మారిషన్ రూపాయి మారిషన్ రూపాయలు MUR + Rs మాల్దీవుల రూపాయి @@ -5136,6 +5278,7 @@ For terms of use, see http://www.unicode.org/copyright.html మలేషియా రింగ్గిట్ మలేషియా రింగ్గిట్‌లు MYR + RM మొజాంబికన్ మెటికల్ @@ -5162,18 +5305,21 @@ For terms of use, see http://www.unicode.org/copyright.html నికరగ్యుయన్ కొర్‌డుబు నికరగ్యుయన్ కొర్‌డుబులు NIO + C$ నార్వేజీయన్ క్రోన్ నార్వేజీయన్ క్రోన్ నార్వేజీయన్ క్రోనర్ NOK + kr నేపాలీయుల రూపాయి నేపాలీయుల రూపాయి నేపాలీయుల రూపాయలు NPR + Rs న్యూజిలాండ్ డాలర్ @@ -5218,12 +5364,14 @@ For terms of use, see http://www.unicode.org/copyright.html పాకిస్థాన్ రూపాయి పాకిస్థాన్ రూపాయలు PKR + Rs పోలిష్ జ్లోటీ పోలిష్ జ్లోటీ పోలిష్ జ్లోటీలు PLN + పరగ్వాయన్ గ్వారని @@ -5255,12 +5403,14 @@ For terms of use, see http://www.unicode.org/copyright.html రష్యన్ రూబల్ రష్యన్ రూబల్‌లు RUB + ర్వానడాన్ ఫ్రాంక్ ర్వానడాన్ ఫ్రాంక్ ర్వానడాన్ ఫ్రాంక్‌లు RWF + RF సౌది రియల్ @@ -5292,6 +5442,7 @@ For terms of use, see http://www.unicode.org/copyright.html స్వీడిష్ క్రోనా స్వీడిష్ క్రోనర్ SEK + kr సింగపూర్ డాలర్ @@ -5305,6 +5456,7 @@ For terms of use, see http://www.unicode.org/copyright.html సెయింట్ హెలెనా పౌండ్ సెయింట్ హెలెనా పౌండ్‌లు SHP + £ సీయిరు లియోనియన్ లీయోన్ @@ -5337,12 +5489,14 @@ For terms of use, see http://www.unicode.org/copyright.html సావో టోమ్ మరియు ప్రిన్సిపి డోబ్రా సావో టోమ్ మరియు ప్రిన్సిపి డోబ్రాలు STD + Db సిరీయన్ పౌండ్ సిరీయన్ పౌండ్ సిరీయన్ పౌండ్‌లు SYP + £ స్వాజి లిలాన్గేని @@ -5355,6 +5509,7 @@ For terms of use, see http://www.unicode.org/copyright.html థాయ్ బాట్ థాయ్ బాట్ ฿ + ฿ తజికిస్థాన్ సమోని @@ -5379,6 +5534,7 @@ For terms of use, see http://www.unicode.org/copyright.html టోంగాన్ పాంʻగా టోంగాన్ పాంʻగా TOP + T$ తుర్కిష్ లిరా @@ -5386,6 +5542,7 @@ For terms of use, see http://www.unicode.org/copyright.html తుర్కిష్ లిరా TRY + TL ట్రినిడాడ్ మరియు టొబాగో డాలర్ @@ -5445,6 +5602,7 @@ For terms of use, see http://www.unicode.org/copyright.html వెనుజులా బోలివర్ వెనుజులా బోలివర్‌లు VEF + Bs వియత్నామీయుల డాంగ్ @@ -5482,6 +5640,7 @@ For terms of use, see http://www.unicode.org/copyright.html తూర్పు కరీబియన్ డాలర్ తూర్పు కరీబియన్ డాలర్‌లు EC$ + $ సిఎఫ్‌ఎ ఫ్రాంక్ బిసిఈఏఓ @@ -5514,6 +5673,7 @@ For terms of use, see http://www.unicode.org/copyright.html దక్షిణ ఆఫ్రికా ర్యాండ్ దక్షిణ ఆఫ్రికా ర్యాండ్ ZAR + R జాంబియన్ క్వాచా (1968–2012) @@ -5523,6 +5683,7 @@ For terms of use, see http://www.unicode.org/copyright.html జాంబియన్ క్వాచా జాంబియన్ క్వాచాలు ZMW + ZK @@ -5545,6 +5706,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} మీటరు/స్క్వేర్ సెకను {0} మీటర్లు/స్క్వేర్ సెకన్లు + + విప్లవం + {0} విప్లవం + {0} విప్లవంలు + + + రేడియన్లు + {0} రేడియన్ + {0} రేడియన్లు + + + డిగ్రీలు + {0} డిగ్రీ + {0} డిగ్రీలు + ఆర్క్ నిమిషాలు {0} ఆర్క్ నిమిషం @@ -5555,30 +5731,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ఆర్క్ సెకను {0} ఆర్క్ సెకన్లు - - డిగ్రీలు - {0} డిగ్రీ - {0} డిగ్రీలు - - - రేడియన్లు - {0} రేడియన్ - {0} రేడియన్లు - - - ఎకరాలు - {0} ఎకరం - {0} ఎకరాలు + + చదరపు కిలోమీటర్లు + {0} చదరపు కిలోమీటరు + {0} చదరపు కిలోమీటర్లు హెక్టార్లు {0} హెక్టారు {0} హెక్టార్లు + + చదరపు మీటర్లు + {0} చదరపు మీటరు + {0} చదరపు మీటర్లు + {0}/చదరపు మీటర్లు + చదరపు సెంటీమీటర్లు {0} చదరపు సెంటీమీటరు {0} చదరపు సెంటీమీటర్లు + {0}/చదరపు సెంటీమీటర్లు + + + చదరపు మైళ్లు + {0} చదరపు మైలు + {0} చదరపు మైళ్లు + + + ఎకరాలు + {0} ఎకరం + {0} ఎకరాలు + + + చదరపు గజాలు + {0} చదరపు గజం + {0} చదరపు గజాలు చదరపు అడుగులు @@ -5589,91 +5777,106 @@ For terms of use, see http://www.unicode.org/copyright.html చదరపు అంగుళాలు {0} చదరపు అంగుళం {0} చదరపు అంగుళాలు + {0}/చదరపు అంగుళాలు - - చదరపు కిలోమీటర్లు - {0} చదరపు కిలోమీటరు - {0} చదరపు కిలోమీటర్లు - - - చదరపు మీటర్లు - {0} చదరపు మీటరు - {0} చదరపు మీటర్లు - - - చదరపు మైళ్లు - {0} చదరపు మైలు - {0} చదరపు మైళ్లు - - - చదరపు గజాలు - {0} చదరపు గజం - {0} చదరపు గజాలు + + కేరట్లు + {0} కేరట్ + {0} కేరట్లు లీటర్లు/కిలోమీటరు {0} లీటరు/కిలోమీటరు {0} లీటర్లు/కిలోమీటరు + + లీటర్లు/100 కిలోమీటర్లకు + {0} లీటరు/100 కిలోమీటర్లకు + {0} లీటర్లు/100 కిలోమీటర్లకు + మైళ్లు/గ్యాలన్ {0} మైలు/గ్యాలన్ {0} మైళ్లు/గ్యాలన్ - - బిట్లు - {0} బిట్ - {0} బిట్లు - - - బైట్లు - {0} బైట్ - {0} బైట్‌లు - - - గిగాబిట్లు - {0} గిగాబిట్ - {0} గిగాబిట్లు - - - గిగాబైట్లు - {0} గిగాబైట్ - {0} గిగాబైట్లు - - - కిలోబిట్లు - {0} కిలోబిట్ - {0} కిలోబిట్లు - - - కిలోబైట్లు - {0} కిలోబైట్ - {0} కిలోబైట్లు - - - మెగాబిట్లు - {0} మెగాబిట్ - {0} మెగాబిట్లు - - - మెగాబైట్లు - {0} మెగాబైట్ - {0} మెగాబైట్లు - - - టెరాబిట్లు - {0} టెరాబిట్ - {0} టెరాబిట్లు - టెరాబైట్లు {0} టెరాబైట్ {0} టెరాబైట్లు + + టెరాబిట్లు + {0} టెరాబిట్ + {0} టెరాబిట్లు + + + గిగాబైట్లు + {0} గిగాబైట్ + {0} గిగాబైట్లు + + + గిగాబిట్లు + {0} గిగాబిట్ + {0} గిగాబిట్లు + + + మెగాబైట్లు + {0} మెగాబైట్ + {0} మెగాబైట్లు + + + మెగాబిట్లు + {0} మెగాబిట్ + {0} మెగాబిట్లు + + + కిలోబైట్లు + {0} కిలోబైట్ + {0} కిలోబైట్లు + + + కిలోబిట్లు + {0} కిలోబిట్ + {0} కిలోబిట్లు + + + బైట్లు + {0} బైట్ + {0} బైట్‌లు + + + బిట్లు + {0} బిట్ + {0} బిట్లు + + + శతాబ్దాలు + {0} శతాబ్దం + {0} శతాబ్దాలు + + + సంవత్సరాలు + {0} సంవత్సరం + {0} సంవత్సరాలు + సంవత్సరానికి {0} + + + నెలలు + {0} నెల + {0} నెలలు + నెలకు {0} + + + వారాలు + {0} వారం + {0} వారాలు + వారానికి {0} + రోజులు {0} రోజు {0} రోజులు + రోజుకు {0} గంటలు @@ -5681,30 +5884,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} గంటలు {0}/గంట - - మైక్రోసెకన్లు - {0} మైక్రోసెకను - {0} మైక్రోసెకన్లు - - - మిల్లీసెకన్లు - {0} మిల్లీసెకను - {0} మిల్లీసెకన్లు - నిమిషాలు {0} నిమిషం {0} నిమిషాలు - - - నెలలు - {0} నెల - {0} నెలలు - - - నానోసెకన్లు - {0} నానోసెకను - {0} నానోసెకన్లు + నిమిషానికి {0} సెకన్లు @@ -5712,15 +5896,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} సెకన్లు {0}/సెకను - - వారాలు - {0} వారం - {0} వారాలు + + మిల్లీసెకన్లు + {0} మిల్లీసెకను + {0} మిల్లీసెకన్లు - - సంవత్సరాలు - {0} సంవత్సరం - {0} సంవత్సరాలు + + మైక్రోసెకన్లు + {0} మైక్రోసెకను + {0} మైక్రోసెకన్లు + + + నానోసెకన్లు + {0} నానోసెకను + {0} నానోసెకన్లు ఆంపియర్స్ @@ -5742,6 +5931,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} వోల్ట్ {0} వోల్ట్స్ + + కిలోకేలరీలు + {0} కిలోకేలరీ + {0} కిలోకేలరీలు + కేలరీలు {0} కేలరీ @@ -5752,21 +5946,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} కేలరీ {0} కేలరీలు - - జౌల్స్ - {0} జౌల్ - {0} జౌల్స్ - - - కిలోకేలరీలు - {0} కిలోకేలరీ - {0} కిలోకేలరీలు - కిలోజౌల్స్ {0} కిలోజౌల్ {0} కిలోజౌల్స్ + + జౌల్స్ + {0} జౌల్ + {0} జౌల్స్ + కిలోవాట్-గంటలు {0} కిలోవాట్ గంట @@ -5777,206 +5966,210 @@ For terms of use, see http://www.unicode.org/copyright.html {0} గిగాహెర్ట్‌జ్ {0} గిగాహెర్ట్‌జ్ - - హెర్ట్‌జ్ - {0} హెర్ట్‌జ్ - {0} హెర్ట్‌జ్ + + మెగాహెర్ట్‌జ్ + {0} మెగాహెర్ట్‌జ్ + {0} మెగాహెర్ట్‌జ్ కిలోహెర్ట్‌జ్ {0} కిలోహెర్ట్‌జ్ {0} కిలోహెర్ట్‌జ్ - - మెగాహెర్ట్‌జ్ - {0} మెగాహెర్ట్‌జ్ - {0} మెగాహెర్ట్‌జ్ + + హెర్ట్‌జ్ + {0} హెర్ట్‌జ్ + {0} హెర్ట్‌జ్ - - ఖగోళ ప్రమాణాలు - {0} ఖగోళ ప్రమాణం - {0} ఖగోళ ప్రమాణాలు + + కిలోమీటర్లు + {0} కిలోమీటరు + {0} కిలోమీటర్లు + కిలోమీటరుకు {0} - - సెంటీమీటర్లు - {0} సెంటీమీటరు - {0} సెంటీమీటర్లు + + మీటర్లు + {0} మీటరు + {0} మీటర్లు + మీటరుకు {0} డెసిమీటర్లు {0} డెసిమీటరు {0} డెసిమీటర్లు - - అడుగులు - {0} అడుగు - {0} అడుగులు - - - ఫర్లాంగులు - {0} ఫర్లాంగు - {0} ఫర్లాంగులు - - - అంగుళాలు - {0} అంగుళం - {0} అంగుళాలు - - - కిలోమీటర్లు - {0} కిలోమీటరు - {0} కిలోమీటర్లు - - - కాంతి సంవత్సరాలు - {0} కాంతి సంవత్సరం - {0} కాంతి సంవత్సరాలు - - - మీటర్లు - {0} మీటరు - {0} మీటర్లు - - - మైక్రోమీటర్లు - {0} మైక్రోమీటరు - {0} మైక్రోమీటర్లు - - - మైళ్లు - {0} మైలు - {0} మైళ్లు + + సెంటీమీటర్లు + {0} సెంటీమీటరు + {0} సెంటీమీటర్లు + సెంటీమీటరుకు {0} మిల్లీమీటర్లు {0} మిల్లీమీటరు {0} మిల్లీమీటర్లు + + మైక్రోమీటర్లు + {0} మైక్రోమీటరు + {0} మైక్రోమీటర్లు + నానోమీటర్లు {0} నానోమీటరు {0} నానోమీటర్లు - - నాటికల్ మైళ్లు - {0} నాటికల్ మైలు - {0} నాటికల్ మైళ్లు - - - పార్సెక్‌లు - {0} పార్సెక్ - {0} పార్సెక్‌లు - పికోమీటర్లు {0} పికోమీటరు {0} పికోమీటర్లు + + మైళ్లు + {0} మైలు + {0} మైళ్లు + గజాలు {0} గజం {0} గజాలు + + అడుగులు + {0} అడుగు + {0} అడుగులు + అడుగుకి {0} + + + అంగుళాలు + {0} అంగుళం + {0} అంగుళాలు + అంగుళానికి {0} + + + పార్సెక్‌లు + {0} పార్సెక్ + {0} పార్సెక్‌లు + + + కాంతి సంవత్సరాలు + {0} కాంతి సంవత్సరం + {0} కాంతి సంవత్సరాలు + + + ఖగోళ ప్రమాణాలు + {0} ఖగోళ ప్రమాణం + {0} ఖగోళ ప్రమాణాలు + + + ఫర్లాంగులు + {0} ఫర్లాంగు + {0} ఫర్లాంగులు + + + నాటికల్ మైళ్లు + {0} నాటికల్ మైలు + {0} నాటికల్ మైళ్లు + + + స్కాండినేవియన్ మైలు + {0} స్కాండినేవియన్ మైలు + {0} స్కాండినేవియన్ మైళ్లు + లక్స్ {0} లక్స్ {0} లక్స్ - - క్యారెట్లు - {0} క్యారెట్ - {0} క్యారెట్లు - - - గ్రాములు - {0} గ్రాము - {0} గ్రాములు - - - కిలోగ్రాములు - {0} కిలోగ్రాము - {0} కిలోగ్రాములు - మెట్రిక్ టన్నులు {0} మెట్రిక్ టన్ను {0} మెట్రిక్ టన్నులు - - మైక్రోగ్రాములు - {0} మైక్రోగ్రాము - {0} మైక్రోగ్రాములు + + కిలోగ్రాములు + {0} కిలోగ్రాము + {0} కిలోగ్రాములు + కిలోగ్రాముకు {0} + + + గ్రాములు + {0} గ్రాము + {0} గ్రాములు + గ్రాముకు {0} మిల్లీగ్రాములు {0} మిల్లీగ్రాము {0} మిల్లీగ్రాములు - - ఔన్సులు - {0} ఔన్సు - {0} ఔన్సులు - - - ట్రాయ్ ఔన్సులు - {0} ట్రాయ్ ఔన్సు - {0} ట్రాయ్ ఔన్సులు - - - పౌండ్లు - {0} పౌండు - {0} పౌండ్లు + + మైక్రోగ్రాములు + {0} మైక్రోగ్రాము + {0} మైక్రోగ్రాములు టన్నులు {0} టన్ను {0} టన్నులు + + పౌండ్లు + {0} పౌండు + {0} పౌండ్లు + పౌండుకు {0} + + + ఔన్సులు + {0} ఔన్సు + {0} ఔన్సులు + ఔన్సుకు {0} + + + ట్రాయ్ ఔన్సులు + {0} ట్రాయ్ ఔన్సు + {0} ట్రాయ్ ఔన్సులు + + + క్యారెట్లు + {0} క్యారెట్ + {0} క్యారెట్లు + గిగావాట్లు {0} గిగావాట్ {0} గిగావాట్లు - - హార్స్‌పవర్ - {0} హార్స్‌పవర్ - {0} హార్స్‌పవర్ - - - కిలోవాట్లు - {0} కిలోవాట్ - {0} కిలోవాట్లు - మెగావాట్లు {0} మెగావాట్ {0} మెగావాట్లు - - మిల్లీవాట్లు - {0} మిల్లీవాట్ - {0} మిల్లీవాట్లు + + కిలోవాట్లు + {0} కిలోవాట్ + {0} కిలోవాట్లు వాట్లు {0} వాట్ {0} వాట్లు + + మిల్లీవాట్లు + {0} మిల్లీవాట్ + {0} మిల్లీవాట్లు + + + హార్స్‌పవర్ + {0} హార్స్‌పవర్ + {0} హార్స్‌పవర్ + హెక్టోపాస్కల్‌లు {0} హెక్టోపాస్కల్ {0} హెక్టోపాస్కల్‌లు - - అంగుళాల పాదరసం - {0} అంగుళం పాదరసం - {0} అంగుళాల పాదరసం - - - మిల్లీబార్‌లు - {0} మిల్లీబార్ - {0} మిల్లీబార్‌లు - మిల్లీమీటర్ల పాదరసం {0} మిల్లీమీటర్ పాదరసం @@ -5987,10 +6180,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} పౌండు/చదరపు అంగుళం {0} పౌండ్లు/చదరపు అంగుళం - - కేరట్లు - {0} కేరట్ - {0} కేరట్లు + + అంగుళాల పాదరసం + {0} అంగుళం పాదరసం + {0} అంగుళాల పాదరసం + + + మిల్లీబార్‌లు + {0} మిల్లీబార్ + {0} మిల్లీబార్‌లు కిలోమీటర్లు/గంట @@ -6007,6 +6205,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} మైలు/గంట {0} మైళ్లు/గంట + + నాట్ + {0} నాట్ + {0} నాటులు + + + ° + {0}° + {0}° + డిగ్రీల సెల్సియస్ {0} డిగ్రీ సెల్సియస్ @@ -6022,31 +6230,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} కెల్విన్ {0} కెల్విన్స్ - - ఎకరా-అడుగులు - {0} ఎకరా-అడుగు - {0} ఎకరా-అడుగులు - - - సెంటీలీటర్లు - {0} సెంటీలీటరు - {0} సెంటీలీటర్లు - - - క్యూబిక్ సెంటీమీటర్లు - {0} క్యూబిక్ సెంటీమీటరు - {0} క్యూబిక్ సెంటీమీటర్లు - - - ఘనపు అడుగులు - {0} ఘనపు అడుగు - {0} ఘనపు అడుగులు - - - ఘనపు అంగుళాలు - {0} ఘనపు అంగుళం - {0} ఘనపు అంగుళాలు - క్యూబిక్ కిలోమీటర్లు {0} క్యూబిక్ కిలోమీటరు @@ -6056,6 +6239,13 @@ For terms of use, see http://www.unicode.org/copyright.html క్యూబిక్ మీటర్లు {0} క్యూబిక్ మీటరు {0} క్యూబిక్ మీటర్లు + క్యూబిక్ మీటరుకు {0} + + + క్యూబిక్ సెంటీమీటర్లు + {0} క్యూబిక్ సెంటీమీటరు + {0} క్యూబిక్ సెంటీమీటర్లు + క్యూబిక్ సెంటీమీటరుకు {0} క్యూబిక్ మైళ్లు @@ -6067,25 +6257,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} క్యూబిక్ గజం {0} క్యూబిక్ గజాలు - - కప్పులు - {0} కప్పు - {0} కప్పులు + + ఘనపు అడుగులు + {0} ఘనపు అడుగు + {0} ఘనపు అడుగులు - - డెసిలీటర్లు - {0} డెసిలీటరు - {0} డెసిలీటర్లు + + ఘనపు అంగుళాలు + {0} ఘనపు అంగుళం + {0} ఘనపు అంగుళాలు - - ద్రవరూప ఔన్సులు - {0} ద్రవరూప ఔన్సు - {0} ద్రవరూప ఔన్సులు - - - గ్యాలన్లు - {0} గ్యాలన్ - {0} గ్యాలన్లు + + మెగాలీటర్లు + {0} మెగాలీటరు + {0} మెగాలీటర్లు హెక్టాలీటర్లు @@ -6096,27 +6281,64 @@ For terms of use, see http://www.unicode.org/copyright.html లీటర్లు {0} లీటరు {0} లీటర్లు + లీటరుకు {0} - - మెగాలీటర్లు - {0} మెగాలీటరు - {0} మెగాలీటర్లు + + డెసిలీటర్లు + {0} డెసిలీటరు + {0} డెసిలీటర్లు + + + సెంటీలీటర్లు + {0} సెంటీలీటరు + {0} సెంటీలీటర్లు మిల్లీలీటర్లు {0} మిల్లీలీటరు {0} మిల్లీలీటర్లు - - పింట్లు - {0} పింట్ - {0} పింట్లు + + మెట్రిక్ పింట్లు + {0} మెట్రిక్ పింటు + {0} మెట్రిక్ పింట్లు + + + మెట్రిక్ కప్పులు + {0} మెట్రిక్ కప్పు + {0} మెట్రిక్ కప్పులు + + + ఎకరా-అడుగులు + {0} ఎకరా-అడుగు + {0} ఎకరా-అడుగులు + + + గ్యాలన్లు + {0} గ్యాలన్ + {0} గ్యాలన్లు + గ్యాలనుకు {0} పావు వంతులు {0} పావు వంతు {0} పావు వంతులు + + పింట్లు + {0} పింట్ + {0} పింట్లు + + + కప్పులు + {0} కప్పు + {0} కప్పులు + + + ద్రవరూప ఔన్సులు + {0} ద్రవరూప ఔన్సు + {0} ద్రవరూప ఔన్సులు + టేబుల్ స్పూన్లు {0} టేబుల్ స్పూన్ @@ -6127,6 +6349,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} టీ స్పూన్ {0} టీ స్పూన్లు + + {0} తూర్పు + {0} ఉత్తరం + {0} దక్షిణం + {0} పశ్చిమం + @@ -6142,6 +6370,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} మీ/సె² {0} మీ/సె² + + వి. + {0} వి. + {0} వి. + + + రేడియన్లు + {0} రే. + {0} రే. + + + డిగ్రీలు + {0} డి. + {0} డి. + ఆర్క్ నిమి. {0} ఆర్క్ నిమి. @@ -6152,30 +6395,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ఆర్క్ సెక. {0} ఆర్క్ సెక. - - డిగ్రీలు - {0} డి. - {0} డి. - - - రేడియన్లు - {0} రే. - {0} రే. - - - ఎకరాలు - {0} ఎక. - {0} ఎక. + + కి.మీ² + {0} కి.మీ² + {0} కి.మీ² హెక్టార్లు {0} హె. {0} హె. + + మీటర్లు² + {0} మీ² + {0} మీ² + {0}/మీ² + సెం.మీ² {0} సెం.మీ² {0} సెం.మీ² + {0}/సెం.మీ² + + + చద. మైళ్లు + {0} చద. మై. + {0} చద. మై. + + + ఎకరాలు + {0} ఎక. + {0} ఎక. + + + గజాలు² + {0} గ² + {0} గ² చద. అడుగులు @@ -6186,91 +6441,106 @@ For terms of use, see http://www.unicode.org/copyright.html అంగుళాలు² {0} అం² {0} అం² + {0}/అం² - - కి.మీ² - {0} కి.మీ² - {0} కి.మీ² - - - మీటర్లు² - {0} మీ² - {0} మీ² - - - చద. మైళ్లు - {0} చద. మై. - {0} చద. మై. - - - గజాలు² - {0} గ² - {0} గ² + + కేరట్లు + {0} కేర. + {0} కేర. లీటర్లు/కి.మీ {0} లీ./కి.మీ {0} లీ./కి.మీ + + లీ/100 కి.మీ. + {0} లీ/100 కి.మీ. + {0} లీ/100 కి.మీ. + మైళ్లు/గ్యా. {0} మై./గ్యా. {0} మై./గ్యా. - - బిట్ - {0} బి - {0} బి - - - బైట్ - {0} బై - {0} బై - - - గి.బిట్ - {0} గి.బిట్ - {0} గి.బిట్లు - - - గి.బైట్ - {0} జీబీ - {0} జీబీ - - - కి.బిట్ - {0} కి.బిట్ - {0} కి.బిట్లు - - - కి.బైట్ - {0} కేబీ - {0} కేబీ - - - మె.బిట్ - {0} మె.బిట్ - {0} మె.బిట్లు - - - మె.బైట్ - {0} ఎమ్‌బి - {0} ఎమ్‌బి - - - టె.బిట్ - {0} టె.బిట్ - {0} టె.బిట్లు - టె.బైట్ {0} టీబీ {0} టీబీ + + టె.బిట్ + {0} టె.బిట్ + {0} టె.బిట్లు + + + గి.బైట్ + {0} జీబీ + {0} జీబీ + + + గి.బిట్ + {0} గి.బిట్ + {0} గి.బిట్లు + + + మె.బైట్ + {0} ఎమ్‌బి + {0} ఎమ్‌బి + + + మె.బిట్ + {0} మె.బిట్ + {0} మె.బిట్లు + + + కి.బైట్ + {0} కేబీ + {0} కేబీ + + + కి.బిట్ + {0} కి.బిట్ + {0} కి.బిట్లు + + + బైట్ + {0} బై + {0} బై + + + బిట్ + {0} బి + {0} బి + + + + {0} శ + {0} శ + + + సంవత్సరాలు + {0} సం. + {0} సం. + {0}/సం. + + + నెలలు + {0} నె. + {0} నె. + {0}/నె. + + + వారాలు + {0} వా. + {0} వా. + {0}/వా. + రోజులు {0} రోజు {0} రోజులు + {0}/రో గంటలు @@ -6278,30 +6548,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} గం. {0}/గం - - మై.సె. - {0} మై.సె - {0} మై.సె - - - మిల్లీసె. - {0} మి.సె - {0} మి.సె - నిమి. {0} నిమి. {0} నిమి. - - - నెలలు - {0} నె. - {0} నె. - - - నా.సె. - {0} నా.సె - {0} నా.సె + {0}/నిమి. సె. @@ -6309,15 +6560,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} సెక. {0}/సె - - వారాలు - {0} వా. - {0} వా. + + మిల్లీసె. + {0} మి.సె + {0} మి.సె - - సంవత్సరాలు - {0} సం. - {0} సం. + + మై.సె. + {0} మై.సె + {0} మై.సె + + + నా.సె. + {0} నా.సె + {0} నా.సె ఆంప్స్ @@ -6339,6 +6595,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} వో {0} వో + + కి.కే + {0} కి.కే + {0} కి.కే + కే {0} కే. @@ -6349,21 +6610,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} కే. {0} కే. - - జౌల్స్ - {0} జౌ. - {0} జౌ. - - - కి.కే - {0} కి.కే - {0} కి.కే - కిలోజౌల్ {0} కి.జౌ {0} కి.జౌ + + జౌల్స్ + {0} జౌ. + {0} జౌ. + కి.వా. గంట {0} కి.వా.గం @@ -6374,204 +6630,208 @@ For terms of use, see http://www.unicode.org/copyright.html {0} గిగా హె {0} గిగా హె - - హెర్ట్‌జ్ - {0} హెర్ట్‌జ్ - {0} హెర్ట్‌జ్ + + మె.హె + {0} మె.హె + {0} మె.హె కి.హె {0} కి.హె {0} కి.హె - - మె.హె - {0} మె.హె - {0} మె.హె + + హెర్ట్‌జ్ + {0} హెర్ట్‌జ్ + {0} హెర్ట్‌జ్ - - au - au - {0} au + + కి.మీ. + {0} కి.మీ. + {0} కి.మీ. + {0}/కి.మీ. - - సెం.మీ. - {0} సెం.మీ. - {0} సెం.మీ. + + మీటర్లు + {0} మీ. + {0} మీ. + {0}/మీ. డె.మీ. {0} డె.మీ. {0} డె.మీ. - - అడుగులు - {0} అ. - {0} అ. - - - ఫర్లాంగులు - - - అంగుళాలు - {0} అం. - {0} అం. - - - కి.మీ. - {0} కి.మీ. - {0} కి.మీ. - - - కాంతి సం. - {0} కాం. సం - {0} కాం. సం - - - మీటర్లు - {0} మీ. - {0} మీ. - - - మై.మీటర్లు - {0} మై.మీ. - {0} మై.మీ. - - - మైళ్లు - {0} మై. - {0} మై. + + సెం.మీ. + {0} సెం.మీ. + {0} సెం.మీ. + {0}/సెం.మీ. మి.మీ. {0} మి.మీ. {0} మి.మీ. + + మై.మీటర్లు + {0} మై.మీ. + {0} మై.మీ. + నా.మీ. {0} నా.మీ. {0} నా.మీ. - - నా.మై. - {0} నా.మై. - {0} నా.మై. - - - పార్సెక్‌లు - {0} పా. - {0} పా. - పి.మీ. {0} పి.మీ. {0} పి.మీ. + + మైళ్లు + {0} మై. + {0} మై. + గజాలు {0} గ. {0} గ. + + అడుగులు + {0} అ. + {0} అ. + {0}/అ. + + + అంగుళాలు + {0} అం. + {0} అం. + {0}/అం. + + + పార్సెక్‌లు + {0} పా. + {0} పా. + + + కాంతి సం. + {0} కాం. సం + {0} కాం. సం + + + au + au + {0} au + + + ఫర్లాంగులు + + + నా.మై. + {0} నా.మై. + {0} నా.మై. + + + స్కాం.మై. + {0} స్కాం.మై. + {0} స్కాం.మై. + లక్స్ {0} ల. {0} ల. - - క్యారెట్లు - {0} క్యారె. - {0} క్యారె. - - - గ్రాములు - {0} గ్రా. - {0} గ్రా. - - - కి.గ్రా. - {0} కి.గ్రా. - {0} కి.గ్రా. - {0} ట {0} ట - - మై.గ్రా. - {0} మై.గ్రా. - {0} మై.గ్రా. + + కి.గ్రా. + {0} కి.గ్రా. + {0} కి.గ్రా. + {0}/కి.గ్రా. + + + గ్రాములు + {0} గ్రా. + {0} గ్రా. + {0}/గ్రా. మి.గ్రా. {0} మి.గ్రా. {0} మి.గ్రా. - - ఔ. - {0} ఔ. - {0} ఔ. - - - ట్రా.ఔ. - {0} ట్రా.ఔ. - {0} ట్రా.ఔ. - - - పౌండ్లు - {0} పౌ. - {0} పౌ. + + మై.గ్రా. + {0} మై.గ్రా. + {0} మై.గ్రా. టన్నులు {0} టన్ను {0} టన్ను + + పౌండ్లు + {0} పౌ. + {0} పౌ. + {0}/పౌ. + + + ఔ. + {0} ఔ. + {0} ఔ. + {0}/ ఔ. + + + ట్రా.ఔ. + {0} ట్రా.ఔ. + {0} ట్రా.ఔ. + + + క్యారెట్లు + {0} క్యారె. + {0} క్యారె. + గి.వా {0} గి.వా {0} గి.వా - - హా.ప - {0} హా.ప - {0} హా.ప - - - కి.వా - {0} కి.వా - {0} కి.వా - మె.వా {0} మె.వా {0} మె.వా - - మి.వా - {0} మి.వా - {0} మి.వా + + కి.వా + {0} కి.వా + {0} కి.వా వాట్లు {0} వా. {0} వా. + + మి.వా + {0} మి.వా + {0} మి.వా + + + హా.ప + {0} హా.ప + {0} హా.ప + హె.పా {0} హె.పా {0} హె.పా - - అం.పాద - {0} అం.పాద - {0} అం.పాద - - - మి.బార్ - {0} మి.బార్ - {0} మి.బార్ - మిమీ. పాద {0} మిమీ. పాద @@ -6582,10 +6842,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} పౌ/చ.అం {0} పౌ/చ.అం - - కేరట్లు - {0} కేర. - {0} కేర. + + అం.పాద + {0} అం.పాద + {0} అం.పాద + + + మి.బార్ + {0} మి.బార్ + {0} మి.బార్ కి.మీ/గంట @@ -6602,6 +6867,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} మై/గం {0} మై/గం + + నా. + {0} నా. + {0} నా. + + + ° + {0}° + {0}° + డి.సెల్సి {0}°సెల్సి @@ -6617,31 +6892,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} కె {0} కె - - ఎ.అ. - {0} ఎ.అ. - {0} ఎ.అ. - - - సె.లీ. - {0} సె.లీ. - {0} సె.లీ. - - - సెం.మీ³ - {0} సెం.మీ³ - {0} సెం.మీ³ - - - అ³ - {0} అ³ - {0} అ³ - - - అం³ - {0} అం³ - {0} అం³ - కి.మీ³ {0} కి.మీ³ @@ -6651,6 +6901,13 @@ For terms of use, see http://www.unicode.org/copyright.html మీ³ {0} మీ³ {0} మీ³ + {0}/మీ³ + + + సెం.మీ³ + {0} సెం.మీ³ + {0} సెం.మీ³ + {0}/సెం.మీ³ మై³ @@ -6662,25 +6919,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} గ³ {0} గ³ - - కప్పులు - {0} క. - {0} క. + + అ³ + {0} అ³ + {0} అ³ - - డె.లీ. - {0} డె.లీ. - {0} డె.లీ. + + అం³ + {0} అం³ + {0} అం³ - - ద్ర.ఔ. - {0} ద్ర.ఔ. - {0} ద్ర.ఔ. - - - గ్యా. - {0} గ్యా. - {0} గ్యా. + + మె.లీ. + {0} మె.లీ. + {0} మె.లీ. హె.లీ. @@ -6691,27 +6943,64 @@ For terms of use, see http://www.unicode.org/copyright.html లీటర్లు {0} లీ. {0} లీ. + {0}/లీ. - - మె.లీ. - {0} మె.లీ. - {0} మె.లీ. + + డె.లీ. + {0} డె.లీ. + {0} డె.లీ. + + + సె.లీ. + {0} సె.లీ. + {0} సె.లీ. మి.లీ. {0} మి.లీ. {0} మి.లీ. - - పింట్లు - {0} పిం. - {0} పిం. + + మె.పిం. + {0} మె.పిం. + {0} మె.పిం. + + + మె.కప్పు + {0}/మె.క. + {0}/మె.క. + + + ఎ.అ. + {0} ఎ.అ. + {0} ఎ.అ. + + + గ్యా. + {0} గ్యా. + {0} గ్యా. + {0}/గ్యా. పావు వం. {0} పావు వం. {0} పావు వం. + + పింట్లు + {0} పిం. + {0} పిం. + + + కప్పులు + {0} క. + {0} క. + + + ద్ర.ఔ. + {0} ద్ర.ఔ. + {0} ద్ర.ఔ. + టే.స్పూ. {0} టే.స్పూ @@ -6722,6 +7011,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} టీ.స్పూ. {0} టీ.స్పూ. + + {0} తూ. + {0} ఉ. + {0}ద + {0} ప. + @@ -6731,6 +7026,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} గు {0} గు + + {0}° + {0}° + {0}′ {0}′ @@ -6739,26 +7038,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} ఎక. - {0} ఎక. + + {0} కి.మీ² + {0} కి.మీ² {0} హె. {0} హె. - - {0} అ² - {0} అ² - - - {0} కి.మీ² - {0} కి.మీ² - {0} మీ² {0} మీ² @@ -6767,6 +7054,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} మై² {0} మై² + + {0} ఎక. + {0} ఎక. + + + {0} అ² + {0} అ² + + + లీ/100 కి.మీ. + {0}లీ/100 కి.మీ. + {0}లీ/100 కి.మీ. + + + సం + {0}సం + {0}సం + + + నెల + {0}నె + {0}నె + + + వా + {0}వా + {0}వా + రోజు {0}రో @@ -6777,66 +7092,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0}గం {0}గం - - మి.సె. - {0}మి.సె - {0}మి.సె - నిమి {0}ని {0}ని - - నెల - {0}నె - {0}నె - సె {0}సె {0}సె - - వా - {0}వా - {0}వా - - - సం - {0}సం - {0}సం - - - సెం.మీ - {0}సెం.మీ - {0}సెం.మీ - - - {0}′ - {0}′ - - - {0}″ - {0}″ + + మి.సె. + {0}మి.సె + {0}మి.సె కి.మీ {0}కి.మీ {0}కి.మీ - - {0} కాం. సం - {0} కాం. సం - మీటరు {0}మీ {0}మీ - - {0} మై - {0} మై + + సెం.మీ + {0}సెం.మీ + {0}సెం.మీ మి.మీ @@ -6847,35 +7131,47 @@ For terms of use, see http://www.unicode.org/copyright.html {0} పి.మీ {0} పి.మీ + + {0} మై + {0} మై + {0} గ. {0} గ. - - గ్రాము - {0}గ్రా - {0}గ్రా + + {0}′ + {0}′ + + + {0}″ + {0}″ + + + {0} కాం. సం + {0} కాం. సం కి.గ్రా {0}కి.గ్రా {0}కి.గ్రా - - {0} ఔ. - {0} ఔ. - - - {0} పౌ. - {0} పౌ. + + గ్రాము + {0}గ్రా + {0}గ్రా {0} ట {0} ట - - {0} హా.ప - {0} హా.ప + + {0} పౌ. + {0} పౌ. + + + {0} ఔ. + {0} ఔ. {0} కి.వా @@ -6885,6 +7181,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} వా. {0} వా. + + {0} హా.ప + {0} హా.ప + {0} హె.పా {0} హె.పా @@ -6932,6 +7232,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}లీ {0}లీ + + {0} తూ. + {0} ఉ. + {0} ద. + {0} ప. + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/te_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/te_IN.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/te_IN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/te_IN.xml index 014fef001be..bc6d1f78a88 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/te_IN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/te_IN.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/teo.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/teo.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/teo.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/teo.xml index 516d45e5729..86313aae716 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/teo.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/teo.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Albania Armenia - Antili za Uholanzi Angola Ajentina Samoa ya Marekani @@ -448,6 +446,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Taparachu + Ebongi + Taparachu Ebongi @@ -489,22 +491,22 @@ For terms of use, see http://www.unicode.org/copyright.html - h:mm:ss a zzzz + HH:mm:ss zzzz - h:mm:ss a z + HH:mm:ss z - h:mm:ss a + HH:mm:ss - h:mm a + HH:mm @@ -581,6 +583,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/teo_KE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/teo_KE.xml similarity index 74% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/teo_KE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/teo_KE.xml index 825d8844e5e..fa34496daaa 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/teo_KE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/teo_KE.xml @@ -1,13 +1,12 @@ - - - + @@ -19,3 +18,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/teo_UG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/teo_UG.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/teo_UG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/teo_UG.xml index 99e01935553..1d8f24e3b85 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/teo_UG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/teo_UG.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/th.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/th.xml similarity index 90% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/th.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/th.xml index 0094d1ae3b3..8b563cd953a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/th.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/th.xml @@ -1,13 +1,12 @@ - - - + @@ -59,7 +58,6 @@ For terms of use, see http://www.unicode.org/copyright.html ไอย์มารา อาเซอร์ไบจาน อะเซอรี - อาเซอร์ไบจานใต้ บัชคีร์ บาลูชิ บาหลี @@ -76,6 +74,7 @@ For terms of use, see http://www.unicode.org/copyright.html บาฟัต พทคะ บัลแกเรีย + บาลูจิตะวันออก โภชปุรี บิสลามา บิกอล @@ -168,7 +167,9 @@ For terms of use, see http://www.unicode.org/copyright.html อังกฤษกลาง เอสเปอรันโต สเปน - สเปน (ยุโรป) + สเปน - ละตินอเมริกา + สเปน - ยุโรป + สเปน - เม็กซิโก ยูพิกกลาง เอสโตเนีย บัสเก @@ -185,6 +186,7 @@ For terms of use, see http://www.unicode.org/copyright.html แฟโร ฟอน ฝรั่งเศส + ฝรั่งเศส - แคนาดา ฝรั่งเศส (สวิส) ฝรั่งเศสกาฌ็อง ฝรั่งเศสกลาง @@ -334,6 +336,7 @@ For terms of use, see http://www.unicode.org/copyright.html ลาว มองโก โลซิ + ลูรีเหนือ ลิทัวเนีย ลัตเกล ลูบา-กาตองกา @@ -395,6 +398,7 @@ For terms of use, see http://www.unicode.org/copyright.html นอร์เวย์บุคมอล เอ็นเดเบเลเหนือ เยอรมันต่ำ - แซกซอนต่ำ + แซกซอนใต้ เนปาล เนวาร์ ดองกา @@ -489,6 +493,7 @@ For terms of use, see http://www.unicode.org/copyright.html สกอตส์ สินธุ ซาร์ดิเนียซาสซารี + เคอร์ดิชใต้ ซามิเหนือ เซนิกา เซนา @@ -531,8 +536,8 @@ For terms of use, see http://www.unicode.org/copyright.html ซูเมอ สวีเดน สวาฮีลี + สวาฮีลี-คองโก โคเมอเรียน - สวาฮีลี-คองโก ซีเรียแบบดั้งเดิม ซีเรีย ไซลีเซีย @@ -600,6 +605,7 @@ For terms of use, see http://www.unicode.org/copyright.html วาลาโม วาเรย์ วาโช + วอล์เพอร์รี โวลอฟ จีนอู๋ คัลมืยค์ @@ -836,7 +842,6 @@ For terms of use, see http://www.unicode.org/copyright.html แองกวิลลา แอลเบเนีย อาร์เมเนีย - เนเธอร์แลนด์แอนทิลลิส แองโกลา แอนตาร์กติกา อาร์เจนตินา @@ -1176,6 +1181,9 @@ For terms of use, see http://www.unicode.org/copyright.html การจัดเรียงตัวเลข ความแม่นยำในการจัดเรียง สกุลเงิน + วงจรชั่วโมง (เทียบ 12 และ 24) + รูปแบบการขึ้นบรรทัดใหม่ + ระบบการวัด ตัวเลข เขตเวลา ตัวแปรภาษาถิ่น @@ -1183,121 +1191,131 @@ For terms of use, see http://www.unicode.org/copyright.html ใช้งานส่วนบุคคล - ตัวเลขอินเดีย-อารบิก - ตัวเลขอินเดีย-อารบิกตัวเต็ม - ตัวเลขอาร์เมเนีย - ตัวเลขอาร์เมเนียพิมพ์เล็ก - ตัวเลขบาหลี - ตัวเลขบังกลาเทศ - เรียงตามอักษรจีนดั้งเดิม - ตัวเลขพราหมี - ปฏิทินพุทธ - ตัวเลขชากมา - ตัวเลขชาม - ปฏิทินจีน - ปฏิทินคอปติก - ปฏิทินทันกิ - ตัวเลขเทวนาครี - เรียงตามพจนานุกรม - ลำดับการจัดเรียงตาม Unicode เริ่มต้น - กฎการเรียงลำดับตามแบบยุโรป - ตัวเลขเอธิโอเปีย - ปฏิทินเอธิโอเปีย - ปฏิทินปีโลกเอธิโอเปีย - ตัวเลขทางการเงิน - ตัวเลขแบบเต็มขนาด - เรียงตามอักษรจีนประยุกต์ - ตัวเลขจอร์เจีย - ปฏิทินเกรกอเรียน - ตัวเลขกรีก - ตัวเลขกรีกพิมพ์เล็ก - ตัวเลขคุชราต - ตัวเลขกูร์มูคี - ตัวเลขทศนิยมจีน - ตัวเลขจีนตัวย่อ - ตัวเลขทางการเงินแบบตัวย่อของจีน - ตัวเลขจีนตัวเต็ม - ตัวเลขทางการเงินแบบตัวเต็มของจีน - ตัวเลขฮิบรู - ปฏิทินฮิบรู - จัดเรียงทั้งหมด - ปฏิทินแห่งชาติอินเดีย - ปฏิทินอิสลาม - ปฏิทินอิสลามซีวิล - ปฏิทินอิสลาม (ซาอุดีอาระเบีย แบบพระจันทร์เสี้ยว) - ปฏิทินอิสลาม (แบบตาราง สมัยดาราศาสตร์) - ปฏิทินอิสลาม (อุมม์อัลกุรา) - ปฏิทิน ISO-8601 - ปฏิทินญี่ปุ่น - ตัวเลขชวา - ตัวเลขญี่ปุ่น - ตัวเลขทางการเงินของญี่ปุ่น - ตัวเลขคยาห์ - ตัวเลขเขมร - ตัวเลขกันนาดา - ตัวเลขไททัมโฮรา - ตัวเลขไททัมทัม - ตัวเลขลาว - ตัวเลขอารบิค - ตัวเลขเลปชา - ตัวเลขลิมบู - จัดเรียงลำดับตัวพิมพ์เล็กก่อน - ตัวเลขมาลายาลัม - ตัวเลขมองโกเลีย - ตัวเลขเมไตมาเยก - ตัวเลขพม่า - ตัวเลขชานพม่า - ตัวเลขพื้นเมือง - ตัวเลขเอ็นโก - จัดเรียงเสียงหนักเบาตามปกติ - จัดเรียงลำดับตามตัวพิมพ์ปกติ - จัดเรียงตามความสำคัญของตัวพิมพ์ - จัดเรียงตัวอักษรคะนะแยกต่างหาก - จัดเรียงโดยไม่ต้องทำให้เป็นแบบปกติ - จัดเรียงตัวเลขแยก - จัดเรียงสัญลักษณ์ - ตัวเลขโอลจิกิ - ตัวเลขโอริยา - ตัวเลขออสมันยา - ปฏิทินเปอร์เชีย - เรียงตามสมุดโทรศัพท์ - ลำดักการจัดเรียงตามคำอ่าน - เรียงตามการถอดเสียงภาษาจีน - จัดเรียงตัวอักษรฐานเท่านั้น - จัดเรียงตามเสียงหนักเบา/ตัวพิมพ์/ความกว้าง/ตัวอักษรคะนะ - เรียงตามลำดับล่าสุด - ปฏิทินไต้หวัน - ตัวเลขโรมัน - ตัวเลขโรมันพิมพ์เล็ก - ตัวเลขเศารัชธรา - การค้นหาทั่วไป - ค้นหาตามพยัญชนะขึ้นต้นที่เป็นฮันกึล - จัดเรียงเสียงหนักเบา - จัดเรียงสัญลักษณ์ที่ละไว้ - ตัวเลขชาราดา - ตัวเลขโสราสมเป็ง - ลำดับการจัดเรียงแบบมาตรฐาน - เรียงตามการลากเส้น - ตัวเลขซุนดา - ตัวเลขทาครี - ตัวเลขไทลื้อใหม่ - ตัวเลขทมิฬดั้งเดิม - ตัวเลขทมิฬ - ตัวเลขเตลูกู - จัดเรียงเสียงหนักเบา/ตัวพิมพ์/ความกว้าง - ตัวเลขไทย - ตัวเลขทิเบต - เรียงตามแบบดั้งเดิม - ตัวเลขแบบดั้งเดิม - เรียงลำดับตามจำนวนขีด - จัดเรียงตัวพิมพ์ใหญ่ก่อน - ตัวเลขไว - จัดเรียงเสียงหนักเบาในลำดับถอยหลัง - จัดเรียงความสำคัญของตัวพิมพ์ - จัดเรียงตัวอักษรคะนะในแบบอื่น - จัดเรียงยูนิโค้ดแบบที่เป็นปกติ - จัดเรัยงตัวเลขตามลำดับตัวเลข - จัดเรียงตามการสะกดแบบจู้อิน + ปฏิทินพุทธ + ปฏิทินจีน + ปฏิทินคอปติก + ปฏิทินทันกิ + ปฏิทินเอธิโอเปีย + ปฏิทินปีโลกเอธิโอเปีย + ปฏิทินเกรกอเรียน + ปฏิทินฮิบรู + ปฏิทินแห่งชาติอินเดีย + ปฏิทินอิสลาม + ปฏิทินอิสลามซีวิล + ปฏิทินอิสลาม (ซาอุดีอาระเบีย แบบพระจันทร์เสี้ยว) + ปฏิทินอิสลาม (แบบตาราง สมัยดาราศาสตร์) + ปฏิทินอิสลาม (อุมม์อัลกุรา) + ปฏิทิน ISO-8601 + ปฏิทินญี่ปุ่น + ปฏิทินเปอร์เชีย + ปฏิทินไต้หวัน + จัดเรียงสัญลักษณ์ + จัดเรียงสัญลักษณ์ที่ละไว้ + จัดเรียงเสียงหนักเบาตามปกติ + จัดเรียงเสียงหนักเบาในลำดับถอยหลัง + จัดเรียงลำดับตัวพิมพ์เล็กก่อน + จัดเรียงลำดับตามตัวพิมพ์ปกติ + จัดเรียงตัวพิมพ์ใหญ่ก่อน + จัดเรียงตามความสำคัญของตัวพิมพ์ + จัดเรียงความสำคัญของตัวพิมพ์ + จัดเรียงตัวอักษรคะนะแยกต่างหาก + จัดเรียงตัวอักษรคะนะในแบบอื่น + เรียงตามอักษรจีนดั้งเดิม + เรียงตามพจนานุกรม + ลำดับการจัดเรียงตาม Unicode เริ่มต้น + กฎการเรียงลำดับตามแบบยุโรป + เรียงตามอักษรจีนประยุกต์ + เรียงตามสมุดโทรศัพท์ + ลำดักการจัดเรียงตามคำอ่าน + เรียงตามการถอดเสียงภาษาจีน + เรียงตามลำดับล่าสุด + การค้นหาทั่วไป + ค้นหาตามพยัญชนะขึ้นต้นที่เป็นฮันกึล + ลำดับการจัดเรียงแบบมาตรฐาน + เรียงตามการลากเส้น + เรียงตามแบบดั้งเดิม + เรียงลำดับตามจำนวนขีด + จัดเรียงตามการสะกดแบบจู้อิน + จัดเรียงโดยไม่ต้องทำให้เป็นแบบปกติ + จัดเรียงยูนิโค้ดแบบที่เป็นปกติ + จัดเรียงตัวเลขแยก + จัดเรัยงตัวเลขตามลำดับตัวเลข + จัดเรียงทั้งหมด + จัดเรียงตัวอักษรฐานเท่านั้น + จัดเรียงตามเสียงหนักเบา/ตัวพิมพ์/ความกว้าง/ตัวอักษรคะนะ + จัดเรียงเสียงหนักเบา + จัดเรียงเสียงหนักเบา/ตัวพิมพ์/ความกว้าง + ระบบ 12 ชั่วโมง (0–11) + ระบบ 12 ชั่วโมง (1–12) + ระบบ 24 ชั่วโมง (0–23) + ระบบ 24 ชั่วโมง (1–24) + รูปแบบที่ยืดหยุ่นของการขึ้นบรรทัดใหม่ + รูปแบบปกติของการขึ้นบรรทัดใหม่ + รูปแบบที่เคร่งครัดของการขึ้นบรรทัดใหม่ + ระบบเมตริก + ระบบการวัดอิมพีเรียล + ระบบการวัดอเมริกัน + ตัวเลขอินเดีย-อารบิก + ตัวเลขอินเดีย-อารบิกตัวเต็ม + ตัวเลขอาร์เมเนีย + ตัวเลขอาร์เมเนียพิมพ์เล็ก + ตัวเลขบาหลี + ตัวเลขบังกลาเทศ + ตัวเลขพราหมี + ตัวเลขชากมา + ตัวเลขชาม + ตัวเลขเทวนาครี + ตัวเลขเอธิโอเปีย + ตัวเลขทางการเงิน + ตัวเลขแบบเต็มขนาด + ตัวเลขจอร์เจีย + ตัวเลขกรีก + ตัวเลขกรีกพิมพ์เล็ก + ตัวเลขคุชราต + ตัวเลขกูร์มูคี + ตัวเลขทศนิยมจีน + ตัวเลขจีนตัวย่อ + ตัวเลขทางการเงินแบบตัวย่อของจีน + ตัวเลขจีนตัวเต็ม + ตัวเลขทางการเงินแบบตัวเต็มของจีน + ตัวเลขฮิบรู + ตัวเลขชวา + ตัวเลขญี่ปุ่น + ตัวเลขทางการเงินของญี่ปุ่น + ตัวเลขคยาห์ + ตัวเลขเขมร + ตัวเลขกันนาดา + ตัวเลขไททัมโฮรา + ตัวเลขไททัมทัม + ตัวเลขลาว + ตัวเลขอารบิค + ตัวเลขเลปชา + ตัวเลขลิมบู + ตัวเลขมาลายาลัม + ตัวเลขมองโกเลีย + ตัวเลขเมไตมาเยก + ตัวเลขพม่า + ตัวเลขชานพม่า + ตัวเลขพื้นเมือง + ตัวเลขเอ็นโก + ตัวเลขโอลจิกิ + ตัวเลขโอริยา + ตัวเลขออสมันยา + ตัวเลขโรมัน + ตัวเลขโรมันพิมพ์เล็ก + ตัวเลขเศารัชธรา + ตัวเลขชาราดา + ตัวเลขโสราสมเป็ง + ตัวเลขซุนดา + ตัวเลขทาครี + ตัวเลขไทลื้อใหม่ + ตัวเลขทมิฬดั้งเดิม + ตัวเลขทมิฬ + ตัวเลขเตลูกู + ตัวเลขไทย + ตัวเลขทิเบต + ตัวเลขแบบดั้งเดิม + ตัวเลขไว ชื่อมาตรฐานอังกฤษ (BGN) @@ -1323,10 +1341,10 @@ For terms of use, see http://www.unicode.org/copyright.html - [\u0E4E \u0E47 \u0E48 \u0E49 \u0E4A \u0E4B \u0E4C \u0E4D ๆ ก ข ฃ ค ฅ ฆ ง จ ฉ ช ซ ฌ ญ ฎ ฏ ฐ ฑ ฒ ณ ด ต ถ ท ธ น บ ป ผ ฝ พ ฟ ภ ม ย ร ฤ ล ฦ ว ศ ษ ส ห ฬ อ ฮ ฯ ะ \u0E31 า ำ \u0E34 \u0E35 \u0E36 \u0E37 \u0E38 \u0E39 \u0E3A เ แ โ ใ ไ ๅ] + [ฯ ๆ \u0E4E \u0E4C \u0E47 \u0E48 \u0E49 \u0E4A \u0E4B ก ข ฃ ค ฅ ฆ ง จ ฉ ช ซ ฌ ญ ฎ ฏ ฐ ฑ ฒ ณ ด ต ถ ท ธ น บ ป ผ ฝ พ ฟ ภ ม ย ร ฤ ล ฦ ว ศ ษ ส ห ฬ อ ฮ \u0E4D ะ \u0E31 า ๅ ำ \u0E34 \u0E35 \u0E36 \u0E37 \u0E38 \u0E39 เ แ โ ใ ไ \u0E3A] [\u200B] [ก ข ฃ ค ฅ ฆ ง จ ฉ ช ซ ฌ ญ ฎ ฏ ฐ ฑ ฒ ณ ด ต ถ ท ธ น บ ป ผ ฝ พ ฟ ภ ม ย ร ฤ ล ฦ ว ศ ษ ส ห ฬ อ ฮ] - [\- ‐ – — , \: ! . … ' ‘ ’ " “ ” ( ) \[ \] @ * / # ′ ″] + [! " # ' ( ) * , \- . / \: @ \[ \] ‐ – — ‘ ’ “ ” … ′ ″] {0}… …{0} {0}…{1} @@ -1377,6 +1395,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d G y MMM G y @@ -2204,6 +2223,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d G y MMM G y @@ -2223,6 +2243,7 @@ For terms of use, see http://www.unicode.org/copyright.html d MMM E d MMM EEEEที่ d MMM + d MMMM mm:ss G y G y @@ -2233,6 +2254,7 @@ For terms of use, see http://www.unicode.org/copyright.html d MMM G y E d MMM G y EEEEที่ d MMM G y + MMMM G y QQQ G y QQQQ G y @@ -2555,15 +2577,71 @@ For terms of use, see http://www.unicode.org/copyright.html - - a - n - p - - + + เที่ยงคืน ก่อนเที่ยง เที่ยง หลังเที่ยง + ในตอนเช้า + ในตอนบ่าย + บ่าย + ในตอนเย็น + ค่ำ + กลางคืน + + + เที่ยงคืน + a + n + p + เช้า + เที่ยง + บ่าย + เย็น + ค่ำ + กลางคืน + + + เที่ยงคืน + ก่อนเที่ยง + เที่ยง + หลังเที่ยง + ในตอนเช้า + ในตอนบ่าย + บ่าย + ในตอนเย็น + ค่ำ + กลางคืน + + + + + ก่อนเที่ยง + หลังเที่ยง + + + เที่ยงคืน + ก่อนเที่ยง + เที่ยง + หลังเที่ยง + เช้า + ช่วงเที่ยง + บ่าย + เย็น + ค่ำ + กลางคืน + + + เที่ยงคืน + ก่อนเที่ยง + เที่ยง + หลังเที่ยง + เช้า + ช่วงเที่ยง + บ่าย + เย็น + ค่ำ + กลางคืน @@ -2657,7 +2735,7 @@ For terms of use, see http://www.unicode.org/copyright.html ccc E d E h:mm a - E HH:mm + E HH:mm น. E h:mm:ss a E HH:mm:ss G y @@ -2668,7 +2746,7 @@ For terms of use, see http://www.unicode.org/copyright.html h a HH h:mm a - HH:mm + HH:mm น. h:mm:ss a HH:mm:ss h:mm:ss a v @@ -2723,8 +2801,8 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm–h:mm a - HH:mm–HH:mm - HH:mm–HH:mm + HH:mm น. – HH:mm น. + HH:mm น. – HH:mm น. h:mm a – h:mm a v @@ -2732,8 +2810,8 @@ For terms of use, see http://www.unicode.org/copyright.html h:mm–h:mm a v - H:mm–H:mm v - H:mm–H:mm v + H:mm น. – H:mm น. v + H:mm น. – H:mm น. v h a – h a v @@ -3060,10 +3138,10 @@ For terms of use, see http://www.unicode.org/copyright.html มุฮัร. เศาะ. - รอบี 1 - รอบี 2 - ญุมา 1 - ญุมา 2 + รอบี I + รอบี II + จุมาดา I + จุมาดา II เราะ. ชะอ์. เราะมะ. @@ -3104,10 +3182,10 @@ For terms of use, see http://www.unicode.org/copyright.html มุฮัร. เศาะ. - รอบี 1 - รอบี 2 - ญุมา 1 - ญุมา 2 + รอบี I + รอบี II + จุมาดา I + จุมาดา II เราะ. ชะอ์. เราะมะ. @@ -3205,238 +3283,238 @@ For terms of use, see http://www.unicode.org/copyright.html - ทะอิกะ (645-650) - ฮะกุชิ (650-671) - ฮากุโฮ (672-686) - ชุโช (686-701) - ทะอิโฮ (701-704) - เคอุง (704-708) - วะโด (708-715) - เรกิ (715-717) - โยโร (717-724) - จิงกิ (724-729) - เท็มเพียว (729-749) + ทะอิกะ (645–650) + ฮะกุชิ (650–671) + ฮากุโฮ (672–686) + ชุโช (686–701) + ทะอิโฮ (701–704) + เคอุง (704–708) + วะโด (708–715) + เรกิ (715–717) + โยโร (717–724) + จิงกิ (724–729) + เท็มเพียว (729–749) เท็มเพียว-คัมโป (749-749) เท็มเพียว-โชโฮ (749-757) เท็มเพียว-โฮจิ (757-765) เท็มเพียว-จิงโงะ (765-767) จิงโงะ-เคอุง (767-770) - โฮกิ (770-780) - เท็นโอ (781-782) - เอ็นเรียะกุ (782-806) - ดะอิโด (806-810) - โคนิง (810-824) - เท็นโช (824-834) - โชวะ (834-848) - คะโจ (848-851) - นินจุ (851-854) - ซะอิโกะ (854-857) - เท็นนัง (857-859) - โจงัง (859-877) - เก็งเก (877-885) - นินนะ (885-889) - คัมเพียว (889-898) - โชตะอิ (898-901) - เอ็งงิ (901-923) - เอ็นโช (923-931) - โชเฮ (931-938) - เท็งเงียว (938-947) - เท็นเรียะกุ (947-957) - เท็นโตะกุ (957-961) - โอวะ (961-964) - โคโฮ (964-968) - อันนะ (968-970) - เท็นโระกุ (970-973) - เท็นเอ็ง (973-976) - โจเง็ง (976-978) - เท็งเง็ง (978-983) - เอกัง (983-985) - คันนะ (985-987) - เอเอ็ง (987-989) - เอโซ (989-990) - โชเรียะกุ (990-995) - โชโตะกุ (995-999) - โชโฮ (999-1004) - คันโก (1004-1012) - โชวะ (1012-1017) - คันนิง (1017-1021) - จิอัง (1021-1024) - มันจุ (1024-1028) - โชเง็ง (1028-1037) - โชเรียะกุ (1037-1040) - โชคีว (1040-1044) - คันโตะกุ (1044-1046) - เอโช (1046-1053) - เท็งงิ (1053-1058) - โคเฮ (1058-1065) - จิเรียะกุ (1065-1069) - เอ็งคีว (1069-1074) - โชโฮ (1074-1077) - โชเรียะกุ (1077-1081) - เอโฮะ (1081-1084) - โอโตะกุ (1084-1087) - คันจิ (1087-1094) - คะโฮะ (1094-1096) - เอโช (1096-1097) - โชโตะกุ (1097-1099) - โควะ (1099-1104) - โชจิ (1104-1106) - คะโช (1106-1108) - เท็นนิง (1108-1110) - เท็นเอ (1110-1113) - เอกีว (1113-1118) - เก็นเอ (1118-1120) - โฮะอัง (1120-1124) - เท็นจิ (1124-1126) - ดะอิจิ (1126-1131) - เท็นโช (1131-1132) - โชโช (1132-1135) - โฮะเอ็ง (1135-1141) - เอจิ (1141-1142) - โคจิ (1142-1144) - เท็นโย (1144-1145) - คีวอัง (1145-1151) - นิมเป (1151-1154) - คีวจุ (1154-1156) - โฮะเง็ง (1156-1159) - เฮจิ (1159-1160) - เอเรียะกุ (1160-1161) - โอโฮ (1161-1163) - โชกัง (1163-1165) - เอมัง (1165-1166) - นินอัง (1166-1169) - คะโอ (1169-1171) - โชอัง (1171-1175) - อังเง็ง (1175-1177) - จิโช (1177-1181) - โยวะ (1181-1182) - จุเอ (1182-1184) - เก็นเรียะกุ (1184-1185) - บุนจิ (1185-1190) - เค็งกีว (1190-1199) - โชจิ (1199-1201) - เค็นนิง (1201-1204) - เก็งกีว (1204-1206) - เค็นเอ (1206-1207) - โชเก็ง (1207-1211) - เค็นเรียะกุ (1211-1213) - เค็มโป (1213-1219) - โชกีว (1219-1222) - โจโอ (1222-1224) - เก็นนิง (1224-1225) - คะโระกุ (1225-1227) - อันเต (1227-1229) - คังกิ (1229-1232) - โจเอ (1232-1233) - เท็มปุกุ (1233-1234) - บุนเรียะกุ (1234-1235) - คะเต (1235-1238) - เรียะกุนิง (1238-1239) - เอ็นโอ (1239-1240) - นินจิ (1240-1243) - คังเง็ง (1243-1247) - โฮจิ (1247-1249) - เค็นโช (1249-1256) - โคเง็ง (1256-1257) - โชกะ (1257-1259) - โชเง็ง (1259-1260) - บุนโอ (1260-1261) - โคโช (1261-1264) - บุนเอ (1264-1275) - เค็นจิ (1275-1278) - โคอัง (1278-1288) - โชโอ (1288-1293) - เอนิง (1293-1299) - โชอัง (1299-1302) - เค็งเง็ง (1302-1303) - คะเง็ง (1303-1306) - โทะกุจิ (1306-1308) - เอ็งเก (1308-1311) - โอโช (1311-1312) - โชวะ (1312-1317) - บุมโป (1317-1319) - เก็นโอ (1319-1321) - เก็งเกียว (1321-1324) - โชชู (1324-1326) - คะเระกิ (1326-1329) - เก็นโตะกุ (1329-1331) - เก็งโก (1331-1334) - เค็มมุ (1334-1336) - เอ็งเง็ง (1336-1340) - โคโกะกุ (1340-1346) - โชเฮ (1346-1370) - เค็นโตะกุ (1370-1372) - บุนชู (1372-1375) - เท็นจุ (1375-1379) - โคเรียะกุ (1379-1381) - โควะ (1381-1384) - เก็นชู (1384-1392) - เมโตะกุ (1384-1387) - คะเค (1387-1389) - โคโอ (1389-1390) - เมโตะกุ (1390-1394) - โอเอ (1394-1428) - โชโช (1428-1429) - เอเกียว (1429-1441) - คะกิสึ (1441-1444) - บุนอัง (1444-1449) - โฮโตะกุ (1449-1452) - เคียวโตะกุ (1452-1455) - โคโช (1455-1457) - โชโระกุ (1457-1460) - คันโช (1460-1466) - บุนโช (1466-1467) - โอนิง (1467-1469) - บุมเม (1469-1487) - โชเกียว (1487-1489) - เอ็นโตะกุ (1489-1492) - เมโอ (1492-1501) - บุงกิ (1501-1504) - เอโช (1504-1521) - ทะอิเอ (1521-1528) - เคียวโระกุ (1528-1532) - เท็มมน (1532-1555) - โคจิ (1555-1558) - เอโระกุ (1558-1570) - เก็งกิ (1570-1573) - เท็นโช (1573-1592) - บุนโระกุ (1592-1596) - เคโช (1596-1615) - เก็งวะ (1615-1624) - คันเอ (1624-1644) - โชโฮ (1644-1648) - เคอัง (1648-1652) - โชโอ (1652-1655) - เมเรียะกุ (1655-1658) - มันจิ (1658-1661) - คัมบุง (1661-1673) - เอ็มโป (1673-1681) - เท็นวะ (1681-1684) - โจเกียว (1684-1688) - เก็นโระกุ (1688-1704) - โฮเอ (1704-1711) - โชโตะกุ (1711-1716) - เคียวโฮ (1716-1736) - เก็มบุง (1736-1741) - คัมโป (1741-1744) - เอ็งเกียว (1744-1748) - คันเอ็ง (1748-1751) - โฮเรียะกุ (1751-1764) - เมวะ (1764-1772) - อันเอ (1772-1781) - เท็มเม (1781-1789) - คันเซ (1789-1801) - เคียววะ (1801-1804) - บุงกะ (1804-1818) - บุนเซ (1818-1830) - เท็มโป (1830-1844) - โคกะ (1844-1848) - คะเอ (1848-1854) - อันเซ (1854-1860) - มันเอ็ง (1860-1861) - บุงกีว (1861-1864) - เก็นจิ (1864-1865) - เคโอ (1865-1868) + โฮกิ (770–780) + เท็นโอ (781–782) + เอ็นเรียะกุ (782–806) + ดะอิโด (806–810) + โคนิง (810–824) + เท็นโช (824–834) + โชวะ (834–848) + คะโจ (848–851) + นินจุ (851–854) + ซะอิโกะ (854–857) + เท็นนัง (857–859) + โจงัง (859–877) + เก็งเก (877–885) + นินนะ (885–889) + คัมเพียว (889–898) + โชตะอิ (898–901) + เอ็งงิ (901–923) + เอ็นโช (923–931) + โชเฮ (931–938) + เท็งเงียว (938–947) + เท็นเรียะกุ (947–957) + เท็นโตะกุ (957–961) + โอวะ (961–964) + โคโฮ (964–968) + อันนะ (968–970) + เท็นโระกุ (970–973) + เท็นเอ็ง (973–976) + โจเง็ง (976–978) + เท็งเง็ง (978–983) + เอกัง (983–985) + คันนะ (985–987) + เอเอ็ง (987–989) + เอโซ (989–990) + โชเรียะกุ (990–995) + โชโตะกุ (995–999) + โชโฮ (999–1004) + คันโก (1004–1012) + โชวะ (1012–1017) + คันนิง (1017–1021) + จิอัง (1021–1024) + มันจุ (1024–1028) + โชเง็ง (1028–1037) + โชเรียะกุ (1037–1040) + โชคีว (1040–1044) + คันโตะกุ (1044–1046) + เอโช (1046–1053) + เท็งงิ (1053–1058) + โคเฮ (1058–1065) + จิเรียะกุ (1065–1069) + เอ็งคีว (1069–1074) + โชโฮ (1074–1077) + โชเรียะกุ (1077–1081) + เอโฮะ (1081–1084) + โอโตะกุ (1084–1087) + คันจิ (1087–1094) + คะโฮะ (1094–1096) + เอโช (1096–1097) + โชโตะกุ (1097–1099) + โควะ (1099–1104) + โชจิ (1104–1106) + คะโช (1106–1108) + เท็นนิง (1108–1110) + เท็นเอ (1110–1113) + เอกีว (1113–1118) + เก็นเอ (1118–1120) + โฮะอัง (1120–1124) + เท็นจิ (1124–1126) + ดะอิจิ (1126–1131) + เท็นโช (1131–1132) + โชโช (1132–1135) + โฮะเอ็ง (1135–1141) + เอจิ (1141–1142) + โคจิ (1142–1144) + เท็นโย (1144–1145) + คีวอัง (1145–1151) + นิมเป (1151–1154) + คีวจุ (1154–1156) + โฮะเง็ง (1156–1159) + เฮจิ (1159–1160) + เอเรียะกุ (1160–1161) + โอโฮ (1161–1163) + โชกัง (1163–1165) + เอมัง (1165–1166) + นินอัง (1166–1169) + คะโอ (1169–1171) + โชอัง (1171–1175) + อังเง็ง (1175–1177) + จิโช (1177–1181) + โยวะ (1181–1182) + จุเอ (1182–1184) + เก็นเรียะกุ (1184–1185) + บุนจิ (1185–1190) + เค็งกีว (1190–1199) + โชจิ (1199–1201) + เค็นนิง (1201–1204) + เก็งกีว (1204–1206) + เค็นเอ (1206–1207) + โชเก็ง (1207–1211) + เค็นเรียะกุ (1211–1213) + เค็มโป (1213–1219) + โชกีว (1219–1222) + โจโอ (1222–1224) + เก็นนิง (1224–1225) + คะโระกุ (1225–1227) + อันเต (1227–1229) + คังกิ (1229–1232) + โจเอ (1232–1233) + เท็มปุกุ (1233–1234) + บุนเรียะกุ (1234–1235) + คะเต (1235–1238) + เรียะกุนิง (1238–1239) + เอ็นโอ (1239–1240) + นินจิ (1240–1243) + คังเง็ง (1243–1247) + โฮจิ (1247–1249) + เค็นโช (1249–1256) + โคเง็ง (1256–1257) + โชกะ (1257–1259) + โชเง็ง (1259–1260) + บุนโอ (1260–1261) + โคโช (1261–1264) + บุนเอ (1264–1275) + เค็นจิ (1275–1278) + โคอัง (1278–1288) + โชโอ (1288–1293) + เอนิง (1293–1299) + โชอัง (1299–1302) + เค็งเง็ง (1302–1303) + คะเง็ง (1303–1306) + โทะกุจิ (1306–1308) + เอ็งเก (1308–1311) + โอโช (1311–1312) + โชวะ (1312–1317) + บุมโป (1317–1319) + เก็นโอ (1319–1321) + เก็งเกียว (1321–1324) + โชชู (1324–1326) + คะเระกิ (1326–1329) + เก็นโตะกุ (1329–1331) + เก็งโก (1331–1334) + เค็มมุ (1334–1336) + เอ็งเง็ง (1336–1340) + โคโกะกุ (1340–1346) + โชเฮ (1346–1370) + เค็นโตะกุ (1370–1372) + บุนชู (1372–1375) + เท็นจุ (1375–1379) + โคเรียะกุ (1379–1381) + โควะ (1381–1384) + เก็นชู (1384–1392) + เมโตะกุ (1384–1387) + คะเค (1387–1389) + โคโอ (1389–1390) + เมโตะกุ (1390–1394) + โอเอ (1394–1428) + โชโช (1428–1429) + เอเกียว (1429–1441) + คะกิสึ (1441–1444) + บุนอัง (1444–1449) + โฮโตะกุ (1449–1452) + เคียวโตะกุ (1452–1455) + โคโช (1455–1457) + โชโระกุ (1457–1460) + คันโช (1460–1466) + บุนโช (1466–1467) + โอนิง (1467–1469) + บุมเม (1469–1487) + โชเกียว (1487–1489) + เอ็นโตะกุ (1489–1492) + เมโอ (1492–1501) + บุงกิ (1501–1504) + เอโช (1504–1521) + ทะอิเอ (1521–1528) + เคียวโระกุ (1528–1532) + เท็มมน (1532–1555) + โคจิ (1555–1558) + เอโระกุ (1558–1570) + เก็งกิ (1570–1573) + เท็นโช (1573–1592) + บุนโระกุ (1592–1596) + เคโช (1596–1615) + เก็งวะ (1615–1624) + คันเอ (1624–1644) + โชโฮ (1644–1648) + เคอัง (1648–1652) + โชโอ (1652–1655) + เมเรียะกุ (1655–1658) + มันจิ (1658–1661) + คัมบุง (1661–1673) + เอ็มโป (1673–1681) + เท็นวะ (1681–1684) + โจเกียว (1684–1688) + เก็นโระกุ (1688–1704) + โฮเอ (1704–1711) + โชโตะกุ (1711–1716) + เคียวโฮ (1716–1736) + เก็มบุง (1736–1741) + คัมโป (1741–1744) + เอ็งเกียว (1744–1748) + คันเอ็ง (1748–1751) + โฮเรียะกุ (1751–1764) + เมวะ (1764–1772) + อันเอ (1772–1781) + เท็มเม (1781–1789) + คันเซ (1789–1801) + เคียววะ (1801–1804) + บุงกะ (1804–1818) + บุนเซ (1818–1830) + เท็มโป (1830–1844) + โคกะ (1844–1848) + คะเอ (1848–1854) + อันเซ (1854–1860) + มันเอ็ง (1860–1861) + บุงกีว (1861–1864) + เก็นจิ (1864–1865) + เคโอ (1865–1868) เมจิ ทะอิโช โชวะ @@ -3697,6 +3775,9 @@ For terms of use, see http://www.unicode.org/copyright.html ปี + ปีที่แล้ว + ปีนี้ + ปีหน้า ใน {0} ปี @@ -3706,6 +3787,9 @@ For terms of use, see http://www.unicode.org/copyright.html ปี + ปีที่แล้ว + ปีนี้ + ปีหน้า ใน {0} ปี @@ -3754,6 +3838,9 @@ For terms of use, see http://www.unicode.org/copyright.html เดือน + เดือนที่แล้ว + เดือนนี้ + เดือนหน้า ใน {0} เดือน @@ -3763,6 +3850,9 @@ For terms of use, see http://www.unicode.org/copyright.html เดือน + เดือนที่แล้ว + เดือนนี้ + เดือนหน้า ใน {0} เดือน @@ -3784,6 +3874,9 @@ For terms of use, see http://www.unicode.org/copyright.html สัปดาห์ + สัปดาห์ที่แล้ว + สัปดาห์นี้ + สัปดาห์หน้า ใน {0} สัปดาห์ @@ -3793,6 +3886,9 @@ For terms of use, see http://www.unicode.org/copyright.html สัปดาห์ + สัปดาห์ที่แล้ว + สัปดาห์นี้ + สัปดาห์หน้า ใน {0} สัปดาห์ @@ -3816,6 +3912,11 @@ For terms of use, see http://www.unicode.org/copyright.html วัน + เมื่อวานซืน + เมื่อวาน + วันนี้ + พรุ่งนี้ + มะรืนนี้ ใน {0} วัน @@ -3825,6 +3926,11 @@ For terms of use, see http://www.unicode.org/copyright.html วัน + เมื่อวานซืน + เมื่อวาน + วันนี้ + พรุ่งนี้ + มะรืนนี้ ใน {0} วัน @@ -4137,7 +4243,7 @@ For terms of use, see http://www.unicode.org/copyright.html เวียนนา - เพิิร์ท + เพิร์ท ยูคลา @@ -4904,6 +5010,9 @@ For terms of use, see http://www.unicode.org/copyright.html พอร์ตมอร์สบี + + บูเกนวิลล์ + มะนิลา @@ -4988,6 +5097,9 @@ For terms of use, see http://www.unicode.org/copyright.html อีร์คุตสค์ + + ชิตา + ยาคุตสค์ @@ -5006,6 +5118,9 @@ For terms of use, see http://www.unicode.org/copyright.html มากาดาน + + ซเรดเนคโคลิมสก์ + คามชัตกา @@ -6326,6 +6441,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0 พ'.' + ¤0 ม'.' + ¤0 ส'.' + ¤0 ล'.' + ¤00 ล'.' + ¤000 ล'.' + ¤0 พ'.'ล'.' + ¤0 ม'.'ล'.' + ¤0 ส'.'ล'.' + ¤0 ล'.'ล'.' + ¤00 ล'.'ล'.' + ¤000 ล'.'ล'.' + + {0} {1} @@ -6784,6 +6915,7 @@ For terms of use, see http://www.unicode.org/copyright.html ลารีจอร์เจีย ลารีจอร์เจีย GEL + เซดีกานา (1979–2007) @@ -6875,6 +7007,7 @@ For terms of use, see http://www.unicode.org/copyright.html รูเปียห์อินโดนีเซีย รูเปียห์อินโดนีเซีย IDR + Rp ปอนด์ไอริช @@ -7729,6 +7862,18 @@ For terms of use, see http://www.unicode.org/copyright.html เมตรต่อวินาทีกำลังสอง {0} เมตรต่อวินาทีกำลังสอง + + รอบ + {0} รอบ + + + เรเดียน + {0} เรเดียน + + + องศา + {0} องศา + ลิปดา {0} ลิปดา @@ -7737,25 +7882,35 @@ For terms of use, see http://www.unicode.org/copyright.html พิลิปดา {0} พิลิปดา - - องศา - {0} องศา - - - เรเดียน - {0} เรเดียน - - - เอเคอร์ - {0} เอเคอร์ + + ตารางกิโลเมตร + {0} ตารางกิโลเมตร เฮกตาร์ {0} เฮกตาร์ + + ตารางเมตร + {0} ตารางเมตร + {0} ต่อ ตร.ม. + ตารางเซนติเมตร {0} ตารางเซนติเมตร + {0} ต่อตารางเซนติเมตร + + + ตารางไมล์ + {0} ตารางไมล์ + + + เอเคอร์ + {0} เอเคอร์ + + + ตารางวา + {0} ตารางวา ตารางฟุต @@ -7764,112 +7919,114 @@ For terms of use, see http://www.unicode.org/copyright.html ตารางนิ้ว {0} ตร.นิ้ว + {0} ต่อตารางนิ้ว - - ตารางกิโลเมตร - {0} ตารางกิโลเมตร - - - ตารางเมตร - {0} ตารางเมตร - - - ตารางไมล์ - {0} ตารางไมล์ - - - ตารางวา - {0} ตารางวา + + กะรัต + {0} กะรัต ลิตรต่อกิโลเมตร {0} ลิตรต่อกิโลเมตร + + ลิตรต่อ100 กิโลเมตร + {0} ลิตร/100 กิโลเมตร + ไมล์ต่อแกลลอน {0} ไมล์ต่อแกลลอน - - บิต - {0} บิต - - - ไบต์ - {0} ไบต์ - - - กิกะบิต - {0} กิกะบิต - - - กิกะไบต์ - {0} กิกะไบต์ - - - กิโลบิต - {0} กิโลบิต - - - กิโลไบต์ - {0} กิโลไบต์ - - - เมกะบิต - {0} เมกะบิต - - - เมกะไบต์ - {0} เมกะไบต์ - - - เทราบิต - {0} เทราบิต - เทราไบต์ {0} เทราไบต์ + + เทราบิต + {0} เทราบิต + + + กิกะไบต์ + {0} กิกะไบต์ + + + กิกะบิต + {0} กิกะบิต + + + เมกะไบต์ + {0} เมกะไบต์ + + + เมกะบิต + {0} เมกะบิต + + + กิโลไบต์ + {0} กิโลไบต์ + + + กิโลบิต + {0} กิโลบิต + + + ไบต์ + {0} ไบต์ + + + บิต + {0} บิต + + + ศตวรรษ + {0} ศตวรรษ + + + ปี + {0} ปี + {0} ต่อปี + + + เดือน + {0} เดือน + {0} ต่อเดือน + + + สัปดาห์ + {0} สัปดาห์ + {0} ต่อสัปดาห์ + วัน {0} วัน + {0} ต่อวัน ชั่วโมง {0} ชั่วโมง {0} ต่อชั่วโมง - - ไมโครวินาที - {0} ไมโครวินาที - - - มิลลิวินาที - {0} มิลลิวินาที - นาที {0} นาที - - - เดือน - {0} เดือน - - - นาโนวินาที - {0} นาโนวินาที + {0} ต่อนาที วินาที {0} วินาที {0} ต่อวินาที - - สัปดาห์ - {0} สัปดาห์ + + มิลลิวินาที + {0} มิลลิวินาที - - ปี - {0} ปี + + ไมโครวินาที + {0} ไมโครวินาที + + + นาโนวินาที + {0} นาโนวินาที แอมแปร์ @@ -7887,6 +8044,10 @@ For terms of use, see http://www.unicode.org/copyright.html โวลต์ {0} โวลต์ + + กิโลแคลอรี่ + {0} กิโลแคลอรี่ + แคลอรี่ {0} แคลอรี่ @@ -7895,18 +8056,14 @@ For terms of use, see http://www.unicode.org/copyright.html แคลอรี่ {0} แคลอรี่ - - จูล - {0} จูล - - - กิโลแคลอรี่ - {0} กิโลแคลอรี่ - กิโลจูล {0} กิโลจูล + + จูล + {0} จูล + กิโลวัตต์-ชั่วโมง {0} กิโลวัตต์-ชั่วโมง @@ -7915,162 +8072,167 @@ For terms of use, see http://www.unicode.org/copyright.html กิกะเฮิรตซ์ {0} กิกะเฮิรตซ์ - - เฮิรตซ์ - {0} เฮิรตซ์ + + เมกะเฮิรตซ์ + {0} เมกะเฮิรตซ์ กิโลเฮิรตซ์ {0} กิโลเฮิรตซ์ - - เมกะเฮิรตซ์ - {0} เมกะเฮิรตซ์ + + เฮิรตซ์ + {0} เฮิรตซ์ - - หน่วยดาราศาสตร์ - {0} หน่วยดาราศาสตร์ + + กิโลเมตร + {0} กิโลเมตร + {0} ต่อกิโลเมตร - - เซนติเมตร - {0} เซนติเมตร + + เมตร + {0} เมตร + {0} ต่อเมตร เดซิเมตร {0} เดซิเมตร - - ฟุต - {0} ฟุต - - - นิ้ว - {0} นิ้ว - - - กิโลเมตร - {0} กิโลเมตร - - - ปีแสง - {0} ปีแสง - - - เมตร - {0} เมตร - - - ไมโครเมตร - {0} ไมโครเมตร - - - ไมล์ - {0} ไมล์ + + เซนติเมตร + {0} เซนติเมตร + {0} ต่อเซนติเมตร มิลลิเมตร {0} มิลลิเมตร + + ไมโครเมตร + {0} ไมโครเมตร + นาโนเมตร {0} นาโนเมตร - - ไมล์ทะเล - {0} ไมล์ทะเล - - - พาร์เซก - {0} พาร์เซก - พิโกเมตร {0} พิโกเมตร + + ไมล์ + {0} ไมล์ + หลา {0} หลา + + ฟุต + {0} ฟุต + {0} ต่อฟุต + + + นิ้ว + {0} นิ้ว + {0} ต่อนิ้ว + + + พาร์เซก + {0} พาร์เซก + + + ปีแสง + {0} ปีแสง + + + หน่วยดาราศาสตร์ + {0} หน่วยดาราศาสตร์ + + + ไมล์ทะเล + {0} ไมล์ทะเล + + + ไมล์สแกนดิเนเวีย + {0} ไมล์สแกนดิเนเวีย + ลักซ์ {0} ลักซ์ - - กะรัต - {0} กะรัต - - - กรัม - {0} กรัม - - - กิโลกรัม - {0} กิโลกรัม - เมตริกตัน {0} เมตริกตัน - - ไมโครกรัม - {0} ไมโครกรัม + + กิโลกรัม + {0} กิโลกรัม + {0} ต่อกิโลกรัม + + + กรัม + {0} กรัม + {0} ต่อกรัม มิลลิกรัม {0} มิลลิกรัม - - ออนซ์ - {0} ออนซ์ - - - ทรอยออนซ์ - {0} ทรอยออนซ์ - - - ปอนด์ - {0} ปอนด์ + + ไมโครกรัม + {0} ไมโครกรัม ตัน {0} ตัน + + ปอนด์ + {0} ปอนด์ + {0} ต่อปอนด์ + + + ออนซ์ + {0} ออนซ์ + {0} ต่อออนซ์ + + + ทรอยออนซ์ + {0} ทรอยออนซ์ + + + กะรัต + {0} กะรัต + กิกะวัตต์ {0} กิกะวัตต์ - - แรงม้า - {0} แรงม้า - - - กิโลวัตต์ - {0} กิโลวัตต์ - เมกะวัตต์ {0} เมกะวัตต์ - - มิลลิวัตต์ - {0} มิลลิวัตต์ + + กิโลวัตต์ + {0} กิโลวัตต์ วัตต์ {0} วัตต์ + + มิลลิวัตต์ + {0} มิลลิวัตต์ + + + แรงม้า + {0} แรงม้า + เฮกโตปาสกาล {0} เฮกโตปาสกาล - - นิ้วปรอท - {0} นิ้วปรอท - - - มิลลิบาร์ - {0} มิลลิบาร์ - มิลลิเมตรปรอท {0} มิลลิเมตรปรอท @@ -8079,9 +8241,13 @@ For terms of use, see http://www.unicode.org/copyright.html ปอนด์ต่อตารางนิ้ว {0} ปอนด์ต่อตารางนิ้ว - - กะรัต - {0} กะรัต + + นิ้วปรอท + {0} นิ้วปรอท + + + มิลลิบาร์ + {0} มิลลิบาร์ กิโลเมตรต่อชั่วโมง @@ -8095,6 +8261,14 @@ For terms of use, see http://www.unicode.org/copyright.html ไมล์ต่อชั่วโมง {0} ไมล์ต่อชั่วโมง + + นอต + {0} นอต + + + ° + {0}° + องศาเซลเซียส {0} องศาเซลเซียส @@ -8107,26 +8281,6 @@ For terms of use, see http://www.unicode.org/copyright.html เคลวิน {0} เคลวิน - - เอเคอร์-ฟุต - {0} เอเคอร์-ฟุต - - - เซนติลิตร - {0} เซนติลิตร - - - ลูกบาศก์เซนติเมตร - {0} ลูกบาศก์เซนติเมตร - - - ลูกบาศก์ฟุต - {0} ลูกบาศก์ฟุต - - - ลูกบาศก์นิ้ว - {0} ลูกบาศก์นิ้ว - ลูกบาศก์กิโลเมตร {0} ลูกบาศก์กิโลเมตร @@ -8134,6 +8288,12 @@ For terms of use, see http://www.unicode.org/copyright.html ลูกบาศก์เมตร {0} ลูกบาศก์เมตร + {0} ต่อลูกบาศก์เมตร + + + ลูกบาศก์เซนติเมตร + {0} ลูกบาศก์เซนติเมตร + {0} ต่อลูกบาศก์เซนติเมตร ลูกบาศก์ไมล์ @@ -8143,21 +8303,17 @@ For terms of use, see http://www.unicode.org/copyright.html ลูกบาศก์หลา {0} ลูกบาศก์หลา - - ถ้วย - {0} ถ้วย + + ลูกบาศก์ฟุต + {0} ลูกบาศก์ฟุต - - เดซิลิตร - {0} เดซิลิตร + + ลูกบาศก์นิ้ว + {0} ลูกบาศก์นิ้ว - - ฟลูอิดออนซ์ - {0} ฟลูอิดออนซ์ - - - แกลลอน - {0} แกลลอน + + เมกกะลิตร + {0} เมกกะลิตร เฮกโตลิตร @@ -8166,23 +8322,53 @@ For terms of use, see http://www.unicode.org/copyright.html ลิตร {0} ลิตร + {0} ต่อลิตร - - เมกกะลิตร - {0} เมกกะลิตร + + เดซิลิตร + {0} เดซิลิตร + + + เซนติลิตร + {0} เซนติลิตร มิลลิลิตร {0} มิลลิลิตร - - ไพนต - {0} ไพนต + + ไพนต์เมตริก + {0} ไพนต์เมตริก + + + ถ้วยเมตริก + {0} ถ้วยเมตริก + + + เอเคอร์-ฟุต + {0} เอเคอร์-ฟุต + + + แกลลอน + {0} แกลลอน + {0} ต่อแกลลอน ควอร์ต {0} ควอร์ต + + ไพนต์ + {0} ไพนต์ + + + ถ้วย + {0} ถ้วย + + + ฟลูอิดออนซ์ + {0} ฟลูอิดออนซ์ + ช้อนโต๊ะ {0} ช้อนโต๊ะ @@ -8191,6 +8377,12 @@ For terms of use, see http://www.unicode.org/copyright.html ช้อนชา {0} ช้อนชา + + {0}ตะวันออก + {0}เหนือ + {0}ใต้ + {0}ตะวันตก + @@ -8204,6 +8396,18 @@ For terms of use, see http://www.unicode.org/copyright.html เมตร/วินาที² {0} ม./วินาที² + + รอบ + {0} รอบ + + + เรเดียน + {0} เรเดียน + + + องศา + {0}° + ลิปดา {0} ลิปดา @@ -8212,25 +8416,35 @@ For terms of use, see http://www.unicode.org/copyright.html พิลิปดา {0} พิลิปดา - - องศา - {0}° - - - เรเดียน - {0} เรเดียน - - - เอเคอร์ - {0} เอเคอร์ + + ตร.กม. + {0} ตร.กม. เฮกตาร์ {0} เฮกตาร์ + + ตร.ม. + {0} ตร.ม. + {0} ต่อ ตร.ม. + ตร.ซม. {0} ตร.ซม. + {0} ต่อ ตร.ซม. + + + ตร.ไมล์ + {0} ตร.ไมล์ + + + เอเคอร์ + {0} เอเคอร์ + + + ตร.ว. + {0} ตร.ว. ตร.ฟุต @@ -8239,112 +8453,114 @@ For terms of use, see http://www.unicode.org/copyright.html ตร.นิ้ว {0} ตร.นิ้ว + {0} ต่อตารางนิ้ว - - ตร.กม. - {0} ตร.กม. - - - ตร.ม. - {0} ตร.ม. - - - ตร.ไมล์ - {0} ตร.ไมล์ - - - ตร.ว. - {0} ตร.ว. + + กะรัต + {0} กะรัต ลิตร/กม. {0} ล./กม. + + ลิตร/100 กิโลเมตร + {0} ล./100กม. + ไมล์/แกลลอน {0} ไมล์/แกลลอน - - บิต - {0} บิต - - - ไบต์ - {0} ไบต์ - - - Gb - {0} Gb - - - GB - {0} GB - - - kb - {0} kb - - - kB - {0} kB - - - Mb - {0} Mb - - - MB - {0} MB - - - Tb - {0} Tb - TB {0} TB + + Tb + {0} Tb + + + GB + {0} GB + + + Gb + {0} Gb + + + MB + {0} MB + + + Mb + {0} Mb + + + kB + {0} kB + + + kb + {0} kb + + + ไบต์ + {0} ไบต์ + + + บิต + {0} บิต + + + ศตวรรษ + {0} ศตวรรษ + + + ปี + {0} ปี + {0}/ปี + + + เดือน + {0} เดือน + {0}/เดือน + + + สัปดาห์ + {0} สัปดาห์ + {0}/สัปดาห์ + วัน {0} วัน + {0}/วัน ชั่วโมง {0} ชม. {0}/ชม. - - ไมโครวินาที - {0} ไมโครวิ - - - มิลลิวินาที - {0} มิลลิวินาที - นาที {0} นาที - - - เดือน - {0} เดือน - - - นาโนวินาที - {0} นาโนวิ + {0}/นาที วินาที {0} วิ {0}/วิ - - สัปดาห์ - {0} สัปดาห์ + + มิลลิวินาที + {0} มิลลิวินาที - - ปี - {0} ปี + + ไมโครวินาที + {0} ไมโครวิ + + + นาโนวินาที + {0} นาโนวิ แอมป์ @@ -8362,6 +8578,10 @@ For terms of use, see http://www.unicode.org/copyright.html โวลต์ {0} V + + กิโลแคลอรี่ + {0} กิโลแคลอรี่ + แคลอรี่ {0} แคลอรี่ @@ -8370,18 +8590,14 @@ For terms of use, see http://www.unicode.org/copyright.html แคลอรี่ {0} แคลอรี่ - - จูล - {0} จูล - - - กิโลแคลอรี่ - {0} กิโลแคลอรี่ - กิโลจูล {0} กิโลจูล + + จูล + {0} จูล + กว.-ชม. {0} กว.-ชม. @@ -8390,162 +8606,167 @@ For terms of use, see http://www.unicode.org/copyright.html GHz {0} GHz - - Hz - {0} Hz + + MHz + {0} MHz kHz {0} kHz - - MHz - {0} MHz + + Hz + {0} Hz - - หน่วยดาราศาสตร์ - {0} หน่วยดาราศาสตร์ + + กม. + {0} กม. + {0}/กม. - - ซม. - {0} ซม. + + เมตร + {0} ม. + {0}/ม. ดม. {0} ดม. - - ฟุต - {0} ฟุต - - - นิ้ว - {0} นิ้ว - - - กม. - {0} กม. - - - ปีแสง - {0} ปีแสง - - - เมตร - {0} ม. - - - ไมโครเมตร - {0} ไมโครเมตร - - - ไมล์ - {0} ไมล์ + + ซม. + {0} ซม. + {0}/ซม. มม. {0} มม. + + ไมโครเมตร + {0} ไมโครเมตร + น.ม. {0} น.ม. - - ไมล์ทะเล - {0} ไมล์ทะเล - - - พาร์เซก - {0} พาร์เซก - พิโกเมตร {0} พิโกเมตร + + ไมล์ + {0} ไมล์ + หลา {0} หลา + + ฟุต + {0} ฟุต + {0}/ฟุต + + + นิ้ว + {0} นิ้ว + {0}/นิ้ว + + + พาร์เซก + {0} พาร์เซก + + + ปีแสง + {0} ปีแสง + + + หน่วยดาราศาสตร์ + {0} หน่วยดาราศาสตร์ + + + ไมล์ทะเล + {0} ไมล์ทะเล + + + ไมล์สแกนดินีเวีย + {0} ไมล์สแกนดินีเวีย + ลักซ์ {0} ลักซ์ - - กะรัต - {0} กะรัต - - - กรัม - {0} ก. - - - กก. - {0} กก. - ต. {0} ต. - - มคก. - {0} มคก. + + กก. + {0} กก. + {0}/ก.ก. + + + กรัม + {0} ก. + {0}/กรัม มก. {0} มก. - - ออนซ์ - {0} ออนซ์ - - - ทรอยออนซ์ - {0} ทรอยออนซ์ - - - ปอนด์ - {0} ปอนด์ + + มคก. + {0} มคก. ตัน {0} ตัน + + ปอนด์ + {0} ปอนด์ + {0}/ปอนด์ + + + ออนซ์ + {0} ออนซ์ + {0}/ออนซ์ + + + ทรอยออนซ์ + {0} ทรอยออนซ์ + + + กะรัต + {0} กะรัต + กิกะวัตต์ {0} กิกะวัตต์ - - แรงม้า - {0} แรงม้า - - - กิโลวัตต์ - {0} กิโลวัตต์ - เมกะวัตต์ {0} เมกะวัตต์ - - มิลลิวัตต์ - {0} มิลลิวัตต์ + + กิโลวัตต์ + {0} กิโลวัตต์ วัตต์ {0} วัตต์ + + มิลลิวัตต์ + {0} มิลลิวัตต์ + + + แรงม้า + {0} แรงม้า + เฮกโตปาสกาล {0} เฮกโตปาสกาล - - นิ้วปรอท - {0} นิ้วปรอท - - - มิลลิบาร์ - {0} มิลลิบาร์ - มม. ปรอท {0} มม. ปรอท @@ -8554,9 +8775,13 @@ For terms of use, see http://www.unicode.org/copyright.html ปอนด์/ตร.นิ้ว {0} ปอนด์/ตร.นิ้ว - - กะรัต - {0} กะรัต + + นิ้วปรอท + {0} นิ้วปรอท + + + มิลลิบาร์ + {0} มิลลิบาร์ กม./ชั่วโมง @@ -8570,6 +8795,14 @@ For terms of use, see http://www.unicode.org/copyright.html ไมล์/ชั่วโมง {0} ไมล์/ชม. + + นอต + {0} นอต + + + ° + {0}° + องศาเซลเซียส {0}°C @@ -8582,26 +8815,6 @@ For terms of use, see http://www.unicode.org/copyright.html K {0} K - - เอเคอร์-ฟุต - {0} เอเคอร์-ฟุต - - - ซล. - {0} ซล. - - - ลบ.ซม. - {0} ลบ.ซม. - - - ลบ.ฟุต - {0} ลบ.ฟุต - - - ลบ.นิ้ว - {0} ลบ.นิ้ว - ลบ.กม. {0} ลบ.กม. @@ -8609,6 +8822,12 @@ For terms of use, see http://www.unicode.org/copyright.html ลบ.ม. {0} ลบ.ม. + {0}/ลบ.ม. + + + ลบ.ซม. + {0} ลบ.ซม. + {0}/ลบ.ซม. ลบ.ไมล์ @@ -8618,21 +8837,17 @@ For terms of use, see http://www.unicode.org/copyright.html ลบ.หลา {0} ลบ.หลา - - ถ้วย - {0} ถ. + + ลบ.ฟุต + {0} ลบ.ฟุต - - ดล. - {0} ดล. + + ลบ.นิ้ว + {0} ลบ.นิ้ว - - ฟลูอิดออนซ์ - {0} ฟลูอิดออนซ์ - - - แกลลอน - {0} แกลลอน + + เมกกะลิตร + {0} เมกกะลิตร ฮล. @@ -8641,23 +8856,53 @@ For terms of use, see http://www.unicode.org/copyright.html ลิตร {0} ล. + {0}/ล. - - เมกกะลิตร - {0} เมกกะลิตร + + ดล. + {0} ดล. + + + ซล. + {0} ซล. มล. {0} มล. - - ไพนต - {0} ไพนต + + ไพนต์เมตริก + {0} ไพนต์เมตริก + + + ถ. เมตริก + {0} ถ. เมตริก + + + เอเคอร์-ฟุต + {0} เอเคอร์-ฟุต + + + แกลลอน + {0} แกลลอน + {0}/แกลลอน คว. {0} คว. + + ไพนต์ + {0} ไพนต์ + + + ถ้วย + {0} ถ. + + + ฟลูอิดออนซ์ + {0} ฟลูอิดออนซ์ + ชต. {0} ชต. @@ -8666,6 +8911,12 @@ For terms of use, see http://www.unicode.org/copyright.html ชช. {0} ชช. + + {0} ตอ + {0} น + {0}ใต้ + {0} ตต + @@ -8674,33 +8925,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0}G + + {0}° + {0}นาที {0}วิ - - {0}° - - - {0}เอเคอร์ + + {0}ตร.กม. {0}เฮกตาร์ - - {0}ตร.ฟุต - - - {0}ตร.กม. - {0}ตร.ม. {0}ตร.ไมล์ + + {0}เอเคอร์ + + + {0}ตร.ฟุต + + + ล. /100 กม. + {0}ล/100กม + + + ปี + {0}ปี + + + เดือน + {0}เดือน + + + สัปดาห์ + {0}สัปดาห์ + วัน {0}วัน @@ -8709,53 +8976,29 @@ For terms of use, see http://www.unicode.org/copyright.html ชั่วโมง {0}ชม. - - มิลลิวินาที - {0} มิลลิวิ - นาที {0}นาที - - เดือน - {0}เดือน - วิ {0}วิ - - สัปดาห์ - {0}สัปดาห์ - - - ปี - {0}ปี - - - ซม. - {0}ซม. - - - {0}′ - - - {0}″ + + มิลลิวินาที + {0} มิลลิวิ กม. {0}กม. - - {0}ปีแสง - เมตร {0}ม. - - {0}ไมล์ + + ซม. + {0}ซม. มม. @@ -8764,25 +9007,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0}พิโกเมตร + + {0}ไมล์ + {0}หลา - - กรัม - {0}ก. + + {0}′ + + + {0}″ + + + {0}ปีแสง กก. {0}กก. - - {0}ออนซ์ + + กรัม + {0}ก. {0}# - - {0}แรงม้า + + {0}ออนซ์ {0}กิโลวัตต์ @@ -8790,6 +9042,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0}วัตต์ + + {0}แรงม้า + เฮกโตปาสกาล {0}hPa @@ -8827,6 +9082,12 @@ For terms of use, see http://www.unicode.org/copyright.html ลิตร {0}ล. + + {0} ตอ + {0} น + {0}ใต้ + {0} ตต + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/th_TH.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/th_TH.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/th_TH.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/th_TH.xml index baa38aa4a57..d095086ac5a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/th_TH.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/th_TH.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ti.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ti.xml similarity index 93% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ti.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ti.xml index e2f2a35608b..e9bbea09316 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ti.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ti.xml @@ -1,13 +1,12 @@ - - - + @@ -141,7 +140,6 @@ For terms of use, see http://www.unicode.org/copyright.html አንጉኢላ አልባኒያ አርሜኒያ - ኔዘርላንድስ አንቲልስ አንጐላ አንታርክቲካ አርጀንቲና @@ -489,6 +487,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + ንጉሆ ሰዓተ + ድሕር ሰዓት + ንጉሆ ሰዓተ ድሕር ሰዓት @@ -573,6 +575,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00 + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤0M + ¤00M + ¤00M + ¤000M + ¤000M + ¤0G + ¤0G + ¤00G + ¤00G + ¤000G + ¤000G + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + @@ -606,3 +636,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ti_ER.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ti_ER.xml similarity index 98% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ti_ER.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ti_ER.xml index 126f54987a7..4c475e17782 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ti_ER.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ti_ER.xml @@ -1,13 +1,12 @@ - - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ti_ET.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ti_ET.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ti_ET.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ti_ET.xml index f378302cd9e..9709e995b83 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ti_ET.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ti_ET.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tk.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tk.xml new file mode 100644 index 00000000000..ef41e103fa4 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tk.xml @@ -0,0 +1,5626 @@ + + + + + + + + + + + arapça + azerbaýjança + nemisçe + iňlisçe + ispança + parsça + fransuzça + ermençe + italýança + ýaponça + gruzinçe + gazakça + gyrgyzça + golland dilini + paştoça + orusça + täjikçe + türkmençe + türkçe + ukrainça + özbekçe + hytaýça + + + + + + + + Dunýä + Awstraliýa + Azerbaýjan + Hytaý + Germaniýa + Britaniýa + Ysraýyl + Hindistan + Eýran + Italiýa + Ýaponiýa + Pakistan + Orusýet + Türkmenistan + Türkiýe + Ukraina + A.B.Ş. + Özbegistan + + + Senenama + + + Buddist senenamasy + Hytaý senenamasy + Dangi senenamasy + Efiopik senenamasy + Gregorýan senenamasy + Ýewreý senenamasy + Yslam senenamasy + ISO-8601 senenamasy + Ýapon senenamasy + Pars senenamasy + Minguo senenamasy + + + Metrik + BK + ABŞ + + + + [a b ç d e ä f g h i j ž k l m n ň o ö p r s ş t u ü w y ý z] + [c q v x] + [A B Ç D E Ä F G H I J Ž K L M N Ň O Ö P R S Ş T U Ü W Y Ý Z] + [\- – — , ; \: ! ? . … " “ ” ( ) \[ \] \{ \} § @ * #] + {0}… + …{0} + {0}…{1} + {0} … + … {0} + {0} … {1} + ? + + + + + + + + + + + + + + ýb + db + sb + çb + pb + an + şb + + + ýekşenbe + duşenbe + sişenbe + çarşenbe + penşenbe + anna + şenbe + + + + + Ý + D + S + Ç + P + A + Ş + + + + + + + d MMMM y G EEEE + + + + + d MMMM y G + + + + + d MMM y G + + + + + dd.MM.y GGGGG + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + d + d E + HH + h:mm a + HH:mm + h:mm:ss a + HH:mm:ss + L + dd.MM + dd.MM E + LLL + d MMM + d MMM E + d MMMM + d MMMM E + mm:ss + mm:ss + y + MM.y + dd.MM.y + dd.MM.y E + MMM y + d MMM y + d MMM y E + MMMM y + + + {0} - {1} + + d–d + + + h a – h a + h–h a + + + HH–HH + + + h:mm a – h:mm a + h:mm–h:mm a + h:mm–h:mm a + + + HH:mm–HH:mm + HH:mm–HH:mm + + + h:mm a – h:mm a v + h:mm–h:mm a v + h:mm–h:mm a v + + + HH:mm–HH:mm v + HH:mm–HH:mm v + + + h a – h a v + h–h a v + + + HH–HH v + + + MM – MM + + + dd.MM – dd.MM + dd.MM – dd.MM + + + dd.MM E – dd.MM E + dd.MM E – dd.MM E + + + MMM–MMM + + + d – d MMM + d MMM – d MMM + + + d MMM E – d MMM E + d MMM E – d MMM E + + + y–y + + + MM.y – MM.y + MM.y – MM.y + + + dd.MM.y – dd.MM.y + dd.MM.y – dd.MM.y + dd.MM.y – dd.MM.y + + + dd.MM.y E – dd.MM.y E + dd.MM.y E – dd.MM.y E + dd.MM.y E – dd.MM.y E + + + MMM–MMM y + MMM y – MMM y + + + d – d MMM y + d MMM – d MMM y + d MMM y – d MMM y + + + d MMM y E – d MMM y E + d MMM y E – d MMM y E + d MMM y E – d MMM y E + + + MMMM–MMMM y + MMMM y – MMMM y + + + + + + + + + ýan + few + mart + apr + maý + iýun + iýul + awg + sen + okt + noý + dek + + + ýanwar + fewral + mart + aprel + maý + iýun + iýul + awgust + sentýabr + oktýabr + noýabr + dekabr + + + + + Ý + F + M + A + M + I + I + A + S + O + N + D + + + + + + + ýb + db + sb + çb + pb + an + şb + + + ýekşenbe + duşenbe + sişenbe + çarşenbe + penşenbe + anna + şenbe + + + + + Ý + D + S + Ç + P + A + Ş + + + + + + + d MMMM y EEEE + + + + + d MMMM y + + + + + d MMM y + + + + + dd.MM.y + + + + + + + HH:mm:ss zzzz + + + + + HH:mm:ss z + + + + + HH:mm:ss + + + + + HH:mm + + + + + + d + d E + HH + h:mm a + HH:mm + h:mm:ss a + HH:mm:ss + L + dd.MM + dd.MM E + LLL + d MMM + d MMM E + d MMMM + d MMMM E + mm:ss + mm:ss + y + MM.y + dd.MM.y + dd.MM.y E + MMM y + d MMM y + d MMM y E + MMMM y + + + {0} - {1} + + d–d + + + h a – h a + h–h a + + + HH–HH + + + h:mm a – h:mm a + h:mm–h:mm a + h:mm–h:mm a + + + HH:mm–HH:mm + HH:mm–HH:mm + + + h:mm a – h:mm a v + h:mm–h:mm a v + h:mm–h:mm a v + + + HH:mm–HH:mm v + HH:mm–HH:mm v + + + h a – h a v + h–h a v + + + HH–HH v + + + MM – MM + + + dd.MM – dd.MM + dd.MM – dd.MM + + + dd.MM E – dd.MM E + dd.MM E – dd.MM E + + + MMM–MMM + + + d – d MMM + d MMM – d MMM + + + d MMM E – d MMM E + d MMM E – d MMM E + + + y–y + + + MM.y – MM.y + MM.y – MM.y + + + dd.MM.y – dd.MM.y + dd.MM.y – dd.MM.y + dd.MM.y – dd.MM.y + + + dd.MM.y E – dd.MM.y E + dd.MM.y E – dd.MM.y E + dd.MM.y E – dd.MM.y E + + + MMM–MMM y + MMM y – MMM y + + + d – d MMM y + d MMM – d MMM y + d MMM y – d MMM y + + + d MMM y E – d MMM y E + d MMM y E – d MMM y E + d MMM y E – d MMM y E + + + MMMM–MMMM y + MMMM y – MMMM y + + + + + + + + döwür + + + ýyl + geçen ýyl + şu ýyl + indiki ýyl + + {0} ýyldan + {0} ýyldan + + + {0} ýyl öň + {0} ýyl öň + + + + ý. + + {0}ý.-dan + {0}ý.-dan + + + {0}ý. öň + {0}ý. öň + + + + ý. + + {0}ý.-dan + {0}ý.-dan + + + {0}ý. öň + {0}ý. öň + + + + çarýek + + {0} çärýekden + {0} çärýekden + + + {0} çärýek öň + {0} çärýek öň + + + + çär. + + {0} çär-den + {0} çär-den + + + {0} çär. öň + {0} çär. öň + + + + çär. + + {0} ç-den + {0} ç-den + + + {0} ç. öň + {0} ç. öň + + + + + geçen aý + şu aý + indiki aý + + {0} aýdan + {0} aýdan + + + {0} aý öň + {0} aý öň + + + + + + {0} aýdan + {0} aýdan + + + {0} aý öň + {0} aý öň + + + + + + {0} aýdan + {0} aýdan + + + {0} aý öň + {0} aý öň + + + + hepde + geçen hepde + şu hepde + indiki hepde + + {0} hepdeden + {0} hepdeden + + + {0} hepde öň + {0} hepde öň + + + + hep. + + {0} hep-den + {0} hep-den + + + {0} hep. öň + {0} hep. öň + + + + hep. + + {0} h-den + {0} h-den + + + {0} h. öň + {0} h. öň + + + + gün + düýn + şu gün + ertir + + {0} günden + {0} günden + + + {0} gün öň + {0} gün öň + + + + gün + + {0} g-den + {0} g-den + + + {0} g. öň + {0} g. öň + + + + gün + + {0} g-den + {0} g-den + + + {0} g. öň + {0} g. öň + + + + hepdäniň güni + + + güniň dowamy + + + sagat + + {0} sagatdan + {0} sagatdan + + + {0} sagat öň + {0} sagat öň + + + + sag. + + {0} sag-dan + {0} sag-dan + + + {0} sag. öň + {0} sag. öň + + + + sag. + + {0} sag-dan + {0} sag-dan + + + {0} sag. öň + {0} sag. öň + + + + minut + + {0} minutdan + {0} minutdan + + + {0} minut öň + {0} minut öň + + + + min. + + {0} min-dan + {0} min-dan + + + {0} min. öň + {0} min. öň + + + + min. + + {0} min-dan + {0} min-dan + + + {0} min. öň + {0} min. öň + + + + sekunt + + {0} sekuntdan + {0} sekuntdan + + + {0} sekunt öň + {0} sekunt öň + + + + sek. + + {0} sek-dan + {0} sek-dan + + + {0} sek. öň + {0} sek. öň + + + + sek. + + {0} sek-dan + {0} sek-dan + + + {0} sek. öň + {0} sek. öň + + + + sagat guşaklygy + + + + +HH:mm;-HH:mm + GMT{0} + GMT + {0} wagty + {0}, tomusky wagt + {0}, standart wagt + {1} ({0}) + + Näbelli + + + Andorra + + + Dubaý + + + Kabul + + + Antigua + + + Angilýa + + + Tirana + + + Ýerewan + + + Luanda + + + Rotera + + + Palmer + + + Trol + + + Sýowa + + + Mouson + + + Deýwis + + + Wostok + + + Keýsi + + + Dýumon-d-Ýurwil + + + Mak-Merdo + + + Rio-Galegos + + + Mendosa + + + San-Huan + + + Uşuaýa + + + La-Rioha + + + San-Luis + + + Katamarka + + + Salta + + + Žužuý + + + Tukuman + + + Kordowa + + + Buenos-Aýres + + + Pago-Pago + + + Wena + + + Pert + + + Ýukla + + + Darwin + + + Adelaýda + + + Broken-Hil + + + Kerri + + + Melburn + + + Hobart + + + Lindeman + + + Sidneý + + + Brisben + + + Makkuari + + + Lord-Hau + + + Aruba + + + Mariýehamn + + + Baku + + + Saraýewo + + + Barbados + + + Dakka + + + Brýussel + + + Uagadugu + + + Sofiýa + + + Bahreýn + + + Bujumbura + + + Porto-Nowo + + + Sen-Bartelmi + + + Bermuda + + + Bruneý + + + La-Pas + + + Kralendeýk + + + Eýrunepe + + + Riu-Branku + + + Portu-Welýu + + + Boa-Wista + + + Manaus + + + Kuýaba + + + Santarem + + + Kampu-Grandi + + + Belen + + + Araguaýna + + + San-Paulu + + + Baiýa + + + Fortaleza + + + Maseýo + + + Resifi + + + Noronha + + + Nassau + + + Timpu + + + Gaborone + + + Minsk + + + Beliz + + + Douson + + + Waýthors + + + Inuwik + + + Wankuwer + + + Dowson-Krik + + + Kreston + + + Ýellounaýf + + + Edmonton + + + Swift-Karent + + + Kembrij-Beý + + + Rejaýna + + + Winipeg + + + Rozulýut + + + Reýni-Riwer + + + Rankin-Inlet + + + Atikokan + + + Tander-Beý + + + Nipigon + + + Toronto + + + Ikaluit + + + Pangnirtang + + + Monkton + + + Galifaks + + + Gus-Beý + + + Gleýs-Beý + + + Blank-Sablon + + + Sent-Džons + + + Kokos + + + Kinşasa + + + Lubumbaşi + + + Bangi + + + Brazzawil + + + Tsýürih + + + Abijan + + + Rarotonga + + + Pashi adasy + + + Santiago + + + Duala + + + Urumçy + + + Şanhaý + + + Bogota + + + Kosta-Rika + + + Gawana + + + Kabo-Werde + + + Kýurasao + + + Krismas + + + Nikosiýa + + + Praga + + + Býuzingen + + + Berlin + + + Jibuti + + + Kopengagen + + + Dominika + + + Santo-Domingo + + + Aljir + + + Galapagos adalary + + + Guýakil + + + Tallin + + + Kair + + + El-Aýun + + + Asmera + + + Kanar adalary + + + Seuta + + + Madrid + + + Addid-Abeba + + + Helsinki + + + Fiji + + + Stenli + + + Çuuk + + + Ponape + + + Kosraýe + + + Farer adalary + + + Pariž + + + Librewil + + + + Beýik Britaniýa, tomusky wagt + + London + + + Grenada + + + Tbilisi + + + Kaýenna + + + Gernsi + + + Akkra + + + Gibraltar + + + Tule + + + Nuk + + + Illokkortoormiut + + + Denmarkshawn + + + Banjul + + + Konakri + + + Gwadelupa + + + Malabo + + + Afiny + + + Günorta Georgiýa + + + Gwatemala + + + Guam + + + Bisau + + + Gaýana + + + Gonkong + + + Tegusigalpa + + + Zagreb + + + Port-o-Prens + + + Budapeşt + + + Jakarta + + + Pontianak + + + Makasar + + + Jaýapura + + + + Irlandiýa, standart wagt + + Dublin + + + Iýerusalim + + + Men adasy + + + Kalkutta + + + Çagos + + + Bagdat + + + Tähran + + + Reýkýawik + + + Rim + + + Jersi + + + Ýamaýka + + + Amman + + + Tokýo + + + Naýrobi + + + Bişkek + + + Pnompen + + + Enderberi + + + Kiritimati + + + Tarawa + + + Komor adalary + + + Sent-Kits + + + Phenýan + + + Seul + + + Kuweýt + + + Kaýman adalary + + + Aktau + + + Oral + + + Aktobe + + + Gyzylorda + + + Almaty + + + Wýentýan + + + Beýrut + + + Sent-Lýusia + + + Waduz + + + Kolombo + + + Monrowiýa + + + Maseru + + + Wilnýus + + + Lýuksemburg + + + Riga + + + Tripoli + + + Kasablanka + + + Monako + + + Kişinýow + + + Podgorisa + + + Marigo + + + Antananariwu + + + Kwajaleýn + + + Majuro + + + Skopýe + + + Bamako + + + Rangun + + + Howd + + + Ulan-Bator + + + Çoýbalsan + + + Makao + + + Saýpan + + + Martinika + + + Nuakşot + + + Monserrat + + + Malta + + + Mawrikiý + + + Maldiwler + + + Blantaýr + + + Tihuana + + + Santa-Izabel + + + Ermosilo + + + Mazatlan + + + Çiuaua + + + Baiýa-de-Banderas + + + Ohinaga + + + Monterreý + + + Mehiko + + + Matamoros + + + Merida + + + Kankun + + + Kuala-Lumpur + + + Kuçing + + + Maputo + + + Windhuk + + + Numea + + + Niameý + + + Norfolk + + + Lagos + + + Managua + + + Amsterdam + + + Oslo + + + Katmandu + + + Nauru + + + Niue + + + Çatem + + + Oklend + + + Maskat + + + Panama + + + Lima + + + Taýiti + + + Markiz adalary + + + Gambýe + + + Port-Morsbi + + + Bugenwil + + + Manila + + + Karaçi + + + Warşawa + + + Mikelon + + + Pitkern + + + Puerto-Riko + + + Gaza + + + Hewron + + + Azor adalary + + + Madeýra adalary + + + Lissabon + + + Palau + + + Asunsýon + + + Katar + + + Reýunion + + + Buharest + + + Belgrad + + + Kaliningrad + + + Simferopol + + + Moskwa + + + Wolgograd + + + Samara + + + Ýekaterinburg + + + Omsk + + + Nowosibirsk + + + Nowokuznetsk + + + Krasnoýarsk + + + Irkutsk + + + Çita + + + Ýakutsk + + + Wladiwostok + + + Handyga + + + Sahalin + + + Ust-Nera + + + Magadan + + + Srednekolymsk + + + Kamçatka + + + Anadyr + + + Kigali + + + Er-Riýad + + + Gwadalkanal + + + Maýe + + + Hartum + + + Stokgolm + + + Singapur + + + Keramatly Elena adalary + + + Lýublýana + + + Longir + + + Bratislawa + + + Fritaun + + + San-Marino + + + Dakar + + + Mogadişo + + + Paramaribo + + + Juba + + + San-Tome + + + El Salwador + + + Lower-Prinses-Kuorter + + + Damask + + + Mbabane + + + Grand Türk + + + Jamena + + + Kergelen + + + Lome + + + Bangkok + + + Duşanbe + + + Fakaofo + + + Dili + + + Aşgabat + + + Tunis + + + Tongatapu + + + Stambul + + + Port-of-Speýn + + + Funafuti + + + Taýbeý + + + Dar-es-Salam + + + Užgorod + + + Kiýew + + + Zaporožýe + + + Kampala + + + Midweý + + + Jonston + + + Weýk + + + Adak adasy + + + Nom + + + Gonolulu + + + Ankoridž + + + Ýakutat + + + Sitka + + + Džuno + + + Metlakatla + + + Los-Anjeles + + + Boýse + + + Feniks + + + Denwer + + + Boýla, Demirgazyk Dakota + + + Nýu-Salem, D.g. Dakota + + + Sentr, Demirgazyk Dakota + + + Çikago + + + Menomini + + + Winsens, Indiana + + + Petersburg, Indiana + + + Tell-Siti, Indiana + + + Noks, Indiana + + + Winamak, Indiana + + + Marengo, Indiana + + + Indianapolis + + + Luiswill + + + Wiweý, Indiana + + + Montisello, Kentuki + + + Detroit + + + Nýu-Ýork + + + Montewideo + + + Samarkand + + + Taşkent + + + Watikan + + + Sent-Winsent + + + Karakas + + + Tortola + + + Sent-Tomas + + + Hoşimin + + + Efate + + + Wollis + + + Apiýa + + + Aden + + + Maýotta + + + Ýohannesburg + + + Lusaka + + + Harare + + + + Owganystan + + + + + Merkezi Afrika + + + + + Gündogar Afrika + + + + + Günorta Afrika, standart wagt + + + + + Günbatar Afrika + Günbatar Afrika, standart wagt + Günbatar Afrika, tomusky wagt + + + + + Alýaska + Alýaska, standart wagt + Alýaska, tomusky wagt + + + + + Amazonka + Amazonka, standart wagt + Amazonka, tomusky wagt + + + + + Merkezi Amerika + Merkezi Amerika, standart wagt + Merkezi Amerika, tomusky wagt + + + + + Günorta Amerika + Günorta Amerika, standart wagt + Günorta Amerika, tomusky wagt + + + + + Daglyk ýeri (ABŞ) + Daglyk ýeri, standart wagt (ABŞ) + Daglyk ýeri, tomusky wagt (ABŞ) + + + + + Ýuwaş umman + Ýuwaş umman, standart wagt + Ýuwaş umman, tomusky wagt + + + + + Apia + Apia, standart wagt + Apia, tomusky wagt + + + + + Arap ýurtlary + Arap ýurtlary, standart wagt + Arap ýurtlary, tomusky wagt + + + + + Argentina + Argentina, standart wagt + Argentina, tomusky wagt + + + + + Günbatar Argentina + Günbatar Argentina, standart wagt + Günbatar Argentina, tomusky wagt + + + + + Ermenistan + Ermenistan, standart wagt + Ermenistan, tomusky wagt + + + + + Atlantika + Atlantika, standart wagt + Atlantika, tomusky wagt + + + + + Merkezi Awstraliýa + Merkezi Awstraliýa, standart wagt + Merkezi Awstraliýa, tomusky wagt + + + + + Merkezi Awstraliýa, günbatar tarap + Merkezi Awstraliýa, günbatar tarap, standart wagt + Merkezi Awstraliýa, günbatar tarap, tomusky wagt + + + + + Gündogar Awstraliýa + Gündogar Awstraliýa, standart wagt + Gündogar Awstraliýa, tomusky wagt + + + + + Günbatar Awstraliýa + Günbatar Awstraliýa, standart wagt + Günbatar Awstraliýa, tomusky wagt + + + + + Azerbaýjan + Azerbaýjan, standart wagt + Azerbaýjan, tomusky wagt + + + + + Azor adalary + Azor adalary, standart wagt + Azor adalary, tomusky wagt + + + + + Bangladeş + Bangladeş, standart wagt + Bangladeş, tomusky wagt + + + + + Butan + + + + + Boliwiýa + + + + + Braziliýa + Braziliýa, standart wagt + Braziliýa, tomusky wagt + + + + + Bruneý-Darussalam + + + + + Kabo-Werde + Kabo-Werde, standart wagt + Kabo-Werde, tomusky wagt + + + + + Çamorro + + + + + Çatem + Çatem, standart wagt + Çatem, tomusky wagt + + + + + Çili + Çili, standart wagt + Çili, tomusky wagt + + + + + Hytaý + Hytaý, standart wagt + Hytaý, tomusky wagt + + + + + Çoýbalsan + Çoýbalsan, standart wagt + Çoýbalsan, tomusky wagt + + + + + Krismas adasy + + + + + Kokos adalary + + + + + Kolumbiýa + Kolumbiýa, standart wagt + Kolumbiýa, tomusky wagt + + + + + Kuka adalary + Kuka adalary, standart wagt + Kuka adalary, tomusky wagt + + + + + Kuba + Kuba, standart wagt + Kuba, tomusky wagt + + + + + Deýwis + + + + + Dýumon-d-Ýurwil + + + + + Gündogar Timor + + + + + Pasha adasy + Pasha adasy, standart wagt + Pasha adasy, tomusky wagt + + + + + Ekwador + + + + + Merkezi Ýewropa + Merkezi Ýewropa, standart wagt + Merkezi Ýewropa, tomusky wagt + + + + + Gündogar Ýewropa + Gündogar Ýewropa, standart wagt + Gündogar Ýewropa, tomusky wagt + + + + + Uzak Gündogar Ýewropa + + + + + Günbatar Ýewropa + Günbatar Ýewropa, standart wagt + Günbatar Ýewropa, tomusky wagt + + + + + Folklend adalary + Folklend adalary, standart wagt + Folklend adalary, tomusky wagt + + + + + Fiji + Fiji, standart wagt + Fiji, tomusky wagt + + + + + Fransuz Gwiana + + + + + Günorta Fransuz we Antarktika + + + + + Galapagos adalary + + + + + Gambýe + + + + + Gruziýa + Gruziýa, standart wagt + Gruziýa, tomusky wagt + + + + + Gilberta adalary + + + + + Grinwiç boýunça orta wagt + + + + + Gündogar Grenlandiýa + Gündogar Grenlandiýa, standart wagt + Gündogar Grenlandiýa, tomusky wagt + + + + + Günbatar Grenlandiýa + Günbatar Grenlandiýa, standart wagt + Günbatar Grenlandiýa, tomusky wagt + + + + + Pars aýlagy, standart wagt + + + + + Gaýana + + + + + Gawaý-Aleut + Gawaý-Aleut, standart wagt + Gawaý-Aleut, tomusky wagt + + + + + Gonkong + Gonkong, standart wagt + Gonkong, tomusky wagt + + + + + Howd + Howd, standart wagt + Howd, tomusky wagt + + + + + Hindistan + + + + + Hindi ummany + + + + + Hindihytaý + + + + + Merkezi Indoneziýa + + + + + Gündogar Indoneziýa + + + + + Günbatar Indoneziýa + + + + + Eýran + Eýran, standart wagt + Eýran, tomusky wagt + + + + + Irkutsk + Irkutsk, standart wagt + Irkutsk, tomusky wagt + + + + + Ysraýyl + Ysraýyl, standart wagt + Ysraýyl, tomusky wagt + + + + + Ýaponiýa + Ýaponiýa, standart wagt + Ýaponiýa, tomusky wagt + + + + + Gündogar Gazagystan + + + + + Günbatar Gazagystan + + + + + Koreýa + Koreýa, standart wagt + Koreýa, tomusky wagt + + + + + Kosraýe + + + + + Krasnoýarsk + Krasnoýarsk, standart wagt + Krasnoýarsk, tomusky wagt + + + + + Gyrgyzstan + + + + + Laýn adalary + + + + + Lord-Hau + Lord-Hau, standart wagt + Lord-Hau, tomusky wagt + + + + + Makkuori + + + + + Magadan + Magadan, standart wagt + Magadan, tomusky wagt + + + + + Malaýziýa + + + + + Maldiwler + + + + + Markiz adalary + + + + + Marşal adalary + + + + + Mawrikiý + Mawrikiý, standart wagt + Mawrikiý, tomusky wagt + + + + + Mouson + + + + + D.g.-G.b. Meksika + D.g.-G.b. Meksika, standart wagt + D.g.-G.b. Meksika, tomusky wagt + + + + + Meksikan Ýuwaş umman + Meksikan Ýuwaş umman, standart wagt + Meksikan Ýuwaş umman, tomusky wagt + + + + + Ulan-Bator + Ulan-Bator, standart wagt + Ulan-Bator, tomusky wagt + + + + + Moskwa + Moskwa, standart wagt + Moskwa, tomusky wagt + + + + + Mýanma + + + + + Nauru + + + + + Nepal + + + + + Täze Kaledoniýa + Täze Kaledoniýa, standart wagt + Täze Kaledoniýa, tomusky wagt + + + + + Täze Zelandiýa + Täze Zelandiýa, standart wagt + Täze Zelandiýa, tomusky wagt + + + + + Nýufaundlend + Nýufaundlend, standart wagt + Nýufaundlend, tomusky wagt + + + + + Niue + + + + + Norfolk + + + + + Fernandu-di-Noronýa + Fernandu-di-Noronýa, standart wagt + Fernandu-di-Noronýa, tomusky wagt + + + + + Nowosibirsk + Nowosibirsk, standart wagt + Nowosibisk, tomusky wagt + + + + + Omsk + Omsk, standart wagt + Omsk, tomusky wagt + + + + + Päkistan + Päkistan, standart wagt + Päkistan, tomusky wagt + + + + + Palau + + + + + Papua - Täze Gwineýa + + + + + Paragwaý + Paragwaý, standart wagt + Paragwaý, tomusky wagt + + + + + Peru + Peru, standart wagt + Peru, tomusky wagt + + + + + Filippinler + Filippinler, standart wagt + Filippinler, tomusky wagt + + + + + Feniks adalary + + + + + Sen Pýer we Mikelon + Sen Pýer we Mikelon, standart wagt + Sen Pýer we Mikelon, tomusky wagt + + + + + Pitkern + + + + + Ponape + + + + + Reýunýon + + + + + Rotera + + + + + Sahalin + Sahalin, standart wagt + Sahalin, tomusky wagt + + + + + Samoa + Samoa, standart wagt + Samoa, tomusky wagt + + + + + Seýşel adalary + + + + + Singapur, standart wagt + + + + + Solomon adalary + + + + + Günorta Georgiýa + + + + + Surinam + + + + + Sýowa + + + + + Taýiti + + + + + Taýbeý + Taýbeý, standart wagt + Taýbeý, tomusky wagt + + + + + Täjigistan + + + + + Tokelau + + + + + Tonga + Tonga, standart wagt + Tonga, tomusky wagt + + + + + Çuuk + + + + + Türkmenistan + Türkmenistan, standart wagt + Türkmenistan, tomusky wagt + + + TMT + TMT + TMST + + + + + Tuwalu + + + + + Urugwaý + Urugwaý, standart wagt + Urugwaý, tomusky wagt + + + + + Özbekistan + Özbekistan, standart wagt + Özbekistan, tomusky wagt + + + + + Wanuatu + Wanuatu, standart wagt + Wanuatu, tomusky wagt + + + + + Wenesuela + + + + + Wladiwostok + Wladiwostok, standart wagt + Wladiwostok, tomusky wagt + + + + + Wolgograd + Wolgograd, standart wagt + Wolgograd, tomusky wagt + + + + + Wostok + + + + + Weýk adasy + + + + + Wollis we Futuna + + + + + Ýakutsk + Ýakutsk, standart wagt + Ýakutsk, tomusky wagt + + + + + Ýekaterinburg + Ýekaterinburg, standart wagt + Ýekaterinburg, tomusky wagt + + + + + + latn + + latn + + 1 + + , +   + ; + % + + + - + E + × + + + san däl + : + + + + + #,##0.### + + + + + 0 müň + 0 müň + 00 müň + 00 müň + 000 müň + 000 müň + 0 million + 0 million + 00 million + 00 million + 000 million + 000 million + 0 milliard + 0 milliard + 00 milliard + 00 milliard + 000 milliard + 000 milliard + 0 trillion + 0 trillion + 00 trillion + 00 trillion + 000 trillion + 000 trillion + + + + + 0 müň + 0 müň + 00 müň + 00 müň + 000 müň + 000 müň + 0 mln + 0 mln + 00 mln + 00 mln + 000 mln + 000 mln + 0 mlrd + 0 mlrd + 00 mlrd + 00 mlrd + 000 mlrd + 000 mlrd + 0 trln + 0 trln + 00 trln + 00 trln + 000 trln + 000 trln + + + + + + + #E0 + + + + + + + #,##0 % + + + + + + + #,##0.00 ¤ + + + #,##0.00 ¤ + + + + + 0 müň ¤ + 0 müň ¤ + 00 müň ¤ + 00 müň ¤ + 000 müň ¤ + 000 müň ¤ + 0 mln ¤ + 0 mln ¤ + 00 mln ¤ + 00 mln ¤ + 000 mln ¤ + 000 mln ¤ + 0 mlrd ¤ + 0 mlrd ¤ + 00 mlrd ¤ + 00 mlrd ¤ + 000 mlrd ¤ + 000 mlrd ¤ + 0 trln ¤ + 0 trln ¤ + 00 trln ¤ + 00 trln ¤ + 000 trln ¤ + 000 trln ¤ + + + {0} {1} + {0} {1} + + + + BAE dirhemi + BAE dirhemi + BAE dirhemi + AED + + + Owgan afganisi + owgan afganisi + owgan afganisi + AFN + + + Alban leki + alban leki + alban leki + ALL + + + Ermeni dramy + ermeni dramy + ermeni dramy + AMD + + + Niderland antil guldeni + niderland antil guldeni + niderland antil guldeni + ANG + + + Angol kwanzasy + angol kwanzasy + angol kwanzasy + AOA + Kz + + + Argentin pesosy + argentin pesosy + argentin pesosy + ARS + $ + + + Awstraliýa dollary + awstraliýa dollary + awstraliýa dollary + A$ + $ + + + Aruba florini + aruba florini + aruba florini + AWG + + + Azerbaýjan manaty + azerbaýjan manaty + azerbaýjan manaty + AZN + + + Konwertirlenýän bosniýa we gersogowina markasy + konwertirlenýän bosniýa we gersogowina markasy + konwertirlenýän bosniýa we gersogowina markasy + BAM + KM + + + Barbados dollary + barbados dollary + barbados dollary + BBD + $ + + + Bangladeş takasy + bangladeş takasy + bangladeş takasy + BDT + + + + Bolgar lewy + bolgar lewy + bolgar lewy + BGN + + + Bahreýn dinary + bahreýn dinary + bahreýn dinary + BHD + + + Burundiý franky + burundiý franky + burundiý franky + BIF + + + Bermuda dollary + bermuda dollary + bermuda dollary + BMD + $ + + + Bruneý dollary + bruneý dollary + bruneý dollary + BND + $ + + + Boliwiýa boliwianosy + boliwiýa boliwianosy + boliwiýa boliwianosy + BOB + Bs + + + Brazil realy + brazil realy + brazil realy + R$ + R$ + + + Bagama dollary + bagama dollary + bagama dollary + BSD + $ + + + Butan ngultrumy + butan ngultrumy + butan ngultrumy + BTN + + + Botswana pulasy + botswana pulasy + botswana pulasy + BWP + P + + + Belorus rubly + belorus rubly + belorus rubly + BYR + р. + + + Beliz dollary + beliz dollary + beliz dollary + BZD + $ + + + Kanada dollary + kanada dollary + kanada dollary + CA$ + $ + + + Kongolez franky + kongolez franky + kongolez franky + CDF + + + Şweýsar franky + şweýsar franky + şweýsar franky + CHF + + + Çili pesosy + çili pesosy + çili pesosy + CLP + $ + + + Hytaý ýuany + hytaý ýuany + hytaý ýuany + CN¥ + ¥ + + + Kolumbiýa pesosy + kolumbiýa pesosy + kolumbiýa pesosy + COP + $ + + + Kosta-Rika kolony + kosta-rika kolony + kosta-rika kolony + CRC + + + + Konwertirlenýän kuba pesosy + konwertirlenýän kuba pesosy + konwertirlenýän kuba pesosy + CUC + $ + + + Kuba pesosy + kuba pesosy + kuba pesosy + CUP + $ + + + Kabo-Werde eskudosy + kabo-werde eskudosy + kabo-werde eskudosy + CVE + + + Çeh kronasy + çeh kronasy + çeh kronasy + CZK + + + + Jibuti franky + jibuti franky + jibuti franky + DJF + + + Daniýa kronasy + daniýa kronasy + daniýa kronasy + DKK + kr + + + Dominikan pesosy + dominikan pesosy + dominikan pesosy + DOP + $ + + + Aljir dinary + aljir dinary + aljir dinary + DZD + + + Müsür funty + müsür funty + müsür funty + EGP + + + + Eritreýa nakfasy + eritreýa nakfasy + eritreýa nakfasy + ERN + + + Efiopiýa byry + efiopiýa byry + efiopiýa byry + ETB + + + Ýewro + ýewro + ýewro + EUR + + + + Fiji dollary + fiji dollary + fiji dollary + FJD + $ + + + Folklend adalarynyň funty + folklend adalarynyň funty + folklend adalarynyň funty + FKP + £ + + + Iňlis funt sterlingi + iňlis funt sterlingi + iňlis funt sterlingi + GBP + £ + + + Gruzin lari + gruzin lari + gruzin lari + GEL + + + + Gano sedisi + gano sedisi + gano sedisi + GHS + + + Gibraltar funty + gibraltar funty + gibraltar funty + GIP + £ + + + Gambiýa dalasy + gambiýa dalasy + gambiýa dalasy + GMD + + + Gwineý franky + gwineý franky + gwineý franky + GNF + FG + + + Gwatemala ketsaly + gwatemala ketsaly + gwatemala ketsaly + GTQ + Q + + + Gaýan dollary + gaýan dollary + gaýan dollary + GYD + $ + + + Gonkong dollary + gonkong dollary + gonkong dollary + HK$ + $ + + + Gonduras lempirasy + gonduras lempirasy + gonduras lempirasy + HNL + L + + + Horwat kunasy + horwat kunasy + horwat kunasy + HRK + kn + + + Gaitýan gurdy + gaitýan gurdy + gaitýan gurdy + HTG + + + Wenger forinty + wenger forinty + wenger forinty + HUF + Ft + + + Indoneziýa rupiýasy + indoneziýa rupiýasy + indoneziýa rupiýasy + IDR + Rp + + + Täze Ysraýyl şekeli + täze ysraýyl şekeli + täze ysraýl şekeli + + + + + Hindi rupiýasy + hindi rupiýasy + hindi rupiýasy + + + + + Yrak dinary + yrak dinary + yrak dinary + IQD + + + Eýran rialy + eýran rialy + eýran rialy + IRR + + + Islandiýa kronasy + islandiýa kronasy + islandiýa kronasy + ISK + kr + + + Ýamaýka dollary + ýamaýka dollary + ýamaýka dollary + JMD + $ + + + Iordaniýa dinary + iordaniýa dinary + iordaniýa dinary + JOD + + + Ýapon ýeni + ýapon ýeni + ýapon ýeni + JP¥ + ¥ + + + Keniýa şillingi + keniýa şillingi + keniýa şillingi + KES + + + Gyrgyz somy + gyrgyz somy + gyrgyz somy + KGS + + + Kamboja riýeli + kamboja riýeli + kamboja riýeli + KHR + + + + Komor adalar franky + komor adalar franky + komor adalar franky + KMF + CF + + + Demirgazyk Koreýa wony + demirgazyk koreýa wony + demirgazyk koreýa wony + KPW + + + + Günorta Koreýa wony + günorta koreýa wony + günorta koreýa wony + + + + + Kuweýt dinary + kuweýt dinary + kuweýt dinary + KWD + + + Kaýman adalarynyň dollary + kaýman adalarynyň dollary + kaýman adalarynyň dollary + KYD + $ + + + Gazak teňňesi + gazak teňňesi + gazak teňňesi + KZT + + + + Laos kipi + laos kipi + laos kipi + LAK + + + + Liwan funty + liwan funty + liwan funty + LBP + + + + Şri-Lanka rupiýasy + şri-lanka rupiýasy + şri-lanka rupiýasy + LKR + Rs + + + Liberiýa dollary + liberiýa dollary + liberiýa dollary + LRD + $ + + + Liwiýa dinary + liwiýa dinary + liwiýa dinary + LYD + + + Marokka dirhamy + marokka dirhamy + marokka dirhamy + MAD + + + Moldaw leýi + moldaw leýi + moldaw leýi + MDL + + + Malagasiý ariarisi + malagasiý ariarisi + malagasiý ariarisi + MGA + Ar + + + Makedon dinary + makedon dinary + makedon dinary + MKD + + + Mýanma kýaty + mýanma kýaty + mýanma kýaty + MMK + K + + + Mongol tugrigi + mongol tugrigi + mongol tugrigi + MNT + + + + Makao patakasy + makao patakasy + makao patakasy + MOP + + + Mawritan ugiýasy + mawritan ugiýasy + mawritan ugiýasy + MRO + + + Mawrikiý rupiýasy + mawrikiý rupiýasy + mawrikiý rupiýasy + MUR + Rs + + + Maldiw rufiýasy + maldiw rufiýasy + maldiw rufiýasy + MVR + + + Malawi kwaçasy + malawi kwaçasy + malawi kwaçasy + MWK + + + Meksikan pesosy + meksikan pesosy + meksikan pesosy + MX$ + $ + + + Malaýziýa ringgiti + malaýziýa ringgiti + malaýziýa ringgiti + MYR + RM + + + Mozambik metikal + mozambik metikal + mozambik metikal + MZN + + + Namibiýa dollary + namibiýa dollary + namibiýa dollary + NAD + $ + + + Nigeriýa naýrasy + nigeriýa naýrasy + nigeriýa naýrasy + NGN + + + + Nikaragua kordobasy + nikaragua kordobasy + nikaragua kordobasy + NIO + C$ + + + Norwegiýa kronasy + norwegiýa kronasy + norwegiýa kronasy + NOK + kr + + + Nepal rupiýasy + nepal rupiýasy + nepal rupiýasy + NPR + Rs + + + Täze Zelandiýa dollary + täze zelandiýa dollary + täze zelandiýa dollary + NZ$ + $ + + + Oman rialy + oman rialy + oman rialy + OMR + + + Panama balboasy + panama balboasy + panama balboasy + PAB + + + Täze peru soly + täze peru soly + täze peru soly + PEN + + + Papua — Täze Gwineýa kinasy + papua — täze gwineýa kinasy + papua — täze gwineýa kinasy + PGK + + + Filippin pesosy + filippin pesosy + filippin pesosy + PHP + + + + Päkistan rupiýasy + päkistan rupiýasy + päkistan rupiýasy + PKR + Rs + + + Polýak zloty + polýak zloty + polýak zloty + PLN + + + + Paragwaý guarani + paragwaý guarani + paragwaý guarani + PYG + + + + Katar rialy + katar rialy + katar rialy + QAR + + + Rumyn leýi + rumyn leýi + rumyn leýi + RON + + + Serb dinary + serb dinary + serb dinary + RSD + + + Rus rubly + rus rubly + rus rubly + RUB + + + + Rwanda franky + rwanda franky + rwanda franky + RWF + RF + + + Saud rialy + saud rialy + saud rialy + SAR + + + Solomon adalarynyň dollary + solomon adalarynyň dollary + solomon adalarynyň dollary + SBD + $ + + + Seýşel rupiýasy + seýşel rupiýasy + seýşel rupiýasy + SCR + + + Sudan funty + sudan funty + sudan funty + SDG + + + Şwed kronasy + şwed kronasy + şwed kronasy + SEK + kr + + + Singapur dollary + singapur dollary + singapur dollary + SGD + $ + + + Keramatly Ýelena adasynyň funty + keramatly ýelena adasynyň funty + keramatly ýelena adasynyň funty + SHP + £ + + + Leon + leon + leon + SLL + + + Somali şilingi + somali şilingi + somali şilingi + SOS + + + Surinam dollary + surinam dollary + surinam dollary + SRD + $ + + + Günorta sudan funty + günorta sudan funty + günorta sudan funty + SSP + £ + + + San-Tome we Prinsipi dobrasy + san-tome we prinsipi dobrasy + san-tome we prinsipi dobrasy + STD + Db + + + Siriýa funty + siriýa funty + siriýa funty + SYP + £ + + + Swazi lilangeni + swazi lilangeni + swazi lilangeni + SZL + + + Taýland baty + taýland baty + taýland baty + THB + ฿ + + + Täjik somonisy + täjik somonisy + täjik somonisy + TJS + + + Türkmen manaty + türkmen manaty + türkmen manaty + TMT + + + Tunis dinary + tunis dinary + tunis dinary + TND + + + Tonga paangasy + tonga paangasy + tonga paangasy + TOP + T$ + + + Türk lirasy + türk lirasy + türk lirasy + TRY + + TL + + + Trininad we Tobago dollary + trininad we tobago dollary + trininad we tobago dollary + TTD + $ + + + Täze Taýwan dollary + täze taýwan dollary + täze taýwan dollary + NT$ + $ + + + Tanzaniýa şilingi + tanzaniýa şilingi + tanzaniýa şilingi + TZS + + + Ukrain griwnasy + ukrain griwnasy + ukrain griwnasy + UAH + + + + Uganda şilingi + uganda şilingi + uganda şilingi + UGX + + + ABŞ dollary + ABŞ dollary + ABŞ dollary + US$ + $ + + + Urugwaý pesosy + urugwaý pesosy + urugwaý pesosy + UYU + $ + + + Özbek somy + özbek somy + özbek somy + UZS + + + Wenezuela boliwary + wenezuela boliwary + wenezuela boliwary + VEF + Bs + + + Wýetnam dongy + wýetnam dongy + wýetnam dongy + + + + + Wanuatu watusy + wanuatu watusy + wanuatu watusy + VUV + + + Samoa talasy + samoa talasy + samoa talasy + WST + + + KFA BEAC franky + KFA BEAC franky + KFA BEAC franky + FCFA + + + Gündogar karib dollary + gündogar karib dollary + gündogar karib dollary + EC$ + $ + + + KFA BCEAO franky + KFA BCEAO franky + KFA BCEAO franky + CFA + + + Fransuz ýuwaş umman franky + fransuz ýuwaş umman franky + fransuz ýuwaş umman franky + CFPF + + + Näbelli ýa-da ýöremeýän pul birligi + näbelli ýa-da ýöremeýän pul birligi + näbelli ýa-da ýöremeýän pul birligi + + + Ýemen rialy + ýemen rialy + ýemen rialy + YER + + + Günorta Afrika rendi + günorta afrika rendi + günorta afrika rendi + ZAR + R + + + Zambiýa kwaçasy + zambiýa kwaçasy + zambiýa kwaçasy + ZMW + ZK + + + + ≥{0} + {0}–{1} + + + + + + {1} başyna {0} + + + erkin düşüş tizlenmesi + {0} G + {0} G + + + inedördül sekuntda metr + {0} inedördül sekuntda metr + {0} inedördül sekuntda metr + + + aýlaw + {0} aýlaw + {0} aýlaw + + + radian + {0} radian + {0} radian + + + dereje + {0} dereje + {0} dereje + + + minut + {0} minut + {0} minut + + + sekunt + {0} sekunt + {0} sekunt + + + inedördül kilometr + {0} inedördül kilometr + {0} inedördül kilometr + + + gektar + {0} gektar + {0} gektar + + + inedördül metr + {0} inedördül metr + {0} inedördül metr + {0}/inedördül metr + + + inedördül santimetr + {0} inedördül santimetr + {0} inedördül santimetr + {0}/inedördül santimetr + + + inedördül mil + {0} inedördül mil + {0} inedördül mil + + + akra + {0} akr + {0} akr + + + inedördül ýard + {0} inedördül ýard + {0} inedördül ýard + + + inedördül fut + {0} inedördül fut + {0} inedördül fut + + + inedördül dýuým + {0} inedördül dýuým + {0} inedördül dýuým + {0}/inedördül dýuým + + + karat + {0} karat + {0} karat + + + kilometrde litr + kilometrde {0} litr + kilometrde {0} litr + + + 100 kilometrde litr + 100 kilometrde {0} litr + 100 kilometrde {0} litr + + + galonda mil + galonda {0} mil + galonda {0} mil + + + terabaýt + {0} terabaýt + {0} terabaýt + + + terabit + {0} terabit + {0} terabit + + + gigabaýt + {0} gigabaýt + {0} gigabaýt + + + gigabit + {0} gigabit + {0} gigabit + + + megabaýt + {0} megabaýt + {0} megabaýt + + + megabit + {0} megabit + {0} megabit + + + kilobaýt + {0} kilobaýt + {0} kilobaýt + + + kilobit + {0} kilobit + {0} kilobit + + + baýt + {0} baýt + {0} baýt + + + bit + {0} bit + {0} bit + + + asyr + {0} asyr + {0} asyr + + + ýyl + {0} ýyl + {0} ýyl + {0}/ý + + + + {0} aý + {0} aý + {0}/aý + + + hepde + {0} hepde + {0} hepde + {0}/hepde + + + gün + {0} gün + {0} gün + {0}/gün + + + sagat + {0} sagat + {0} sagat + {0}/sagat + + + minut + {0} minut + {0} minut + {0}/minut + + + sekunt + {0} sekunt + {0} sekunt + {0}/sekunt + + + millisekunt + {0} millisekunt + {0} millisekunt + + + mikrosekunt + {0} mikrosekunt + {0} mikrosekunt + + + nanosekunt + {0} nanosekunt + {0} nanosekunt + + + amper + {0} amper + {0} amper + + + milliamper + {0} milliamper + {0} milliamper + + + om + {0} om + {0} om + + + wolt + {0} wolt + {0} wolt + + + kilokaloriýa + {0} kilokaloriýa + {0} kilokaloriýa + + + kaloriýa + {0} kaloriýa + {0} kaloriýa + + + Kaloriýa + {0} Kaloriýa + {0} Kaloriýa + + + kilodžul + {0} kilodžul + {0} kilodžul + + + + {0} džul + {0} džul + + + kilowat-sagat + {0} kilowat-sagat + {0} kilowat-sagat + + + gigagerts + {0} gigagerts + {0} gigagerts + + + megagerts + {0} megagerts + {0} megagerts + + + kilogerts + {0} kilogerts + {0} kilogerts + + + gerts + {0} gerts + {0} gerts + + + kilometr + {0} kilometr + {0} kilometr + {0}/kilometr + + + metr + {0} metr + {0} metr + {0}/m + + + desimetr + {0} desimetr + {0} desimetr + + + santimetr + {0} santimetr + {0} santimetr + {0}/sm + + + millimetr + {0} millimetr + {0} millimetr + + + mikrometr + {0} mikrometr + {0} mikrometr + + + nanometr + {0} nanometr + {0} nanometr + + + pikometr + {0} pikometr + {0} pikometr + + + mil + {0} mil + {0} mil + + + ýard + {0} ýard + {0} ýard + + + fut + {0} fut + {0} fut + {0}/fut + + + dýuým + {0} dýuým + {0} dýuým + {0}/dýuým + + + parsek + {0} parsek + {0} parsek + + + ýagtylyk ýyly + {0} ýagtylyk ýyly + {0} ýagtylyk ýyly + + + astronomik birlik + {0} astronomik birlik + {0} astronomik birlik + + + deňiz mili + {0} deňiz mili + {0} deňiz mili + + + skandinaw mili + {0} skandinaw mili + {0} skandinaw mili + + + lýuks + {0} lýuks + {0} lýuks + + + metrik tonna + {0} metrik tonna + {0} metrik tonna + + + kilogram + {0} kilogram + {0} kilogram + {0}/kilogram + + + gram + {0} gram + {0} gram + {0}/gram + + + milligram + {0} milligram + {0} milligram + + + mikrogram + {0} mikrogram + {0} mikrogram + + + tonna + {0} tonna + {0} tonna + + + funt + {0} funt + {0} funt + {0}/funt + + + unsiý + {0} unsiý + {0} unsiý + {0}/unsiý + + + troý unsiý + {0} troý unsiý + {0} troý unsiý + + + karat + {0} karat + {0} karat + + + gigawatt + {0} gigawatt + {0} gigawatt + + + megawatt + {0} megawatt + {0} megawatt + + + kilowatt + {0} kilowatt + {0} kilowatt + + + watt + {0} watt + {0} watt + + + milliwatt + {0} milliwatt + {0} milliwatt + + + at güýji + {0} at güýji + {0} at güýji + + + gektopaskal + {0} gektopaskal + {0} gektopaskal + + + simap sütüniň millimetri + {0} simap sütüniň millimetri + {0} simap sütüniň millimetri + + + inedörül dýuým başyna funt + inedörül dýuým başyna {0} funt + inedörül dýuým başyna {0} funt + + + simap sütüniň dýuýmy + {0} simap sütüniň dýuýmy + {0} simap sütüniň dýuýmy + + + millibar + {0} millibar + {0} millibar + + + sagatda kilometr + sagatda {0} kilometr + sagatda {0} kilometr + + + sekuntda metr + sekuntda {0} metr + sekuntda {0} metr + + + sagatda mil + sagatda {0} mil + sagatda {0} mil + + + uzel + {0} uzel + {0} uzel + + + ° + {0}° + {0}° + + + Selsiý gradusy + {0} Selsiý gradusy + {0} Selsiý gradusy + + + Farangeýt gradusy + {0} Farangeýt gradusy + {0} Farangeýt gradusy + + + Kelwin gradusy + {0} Kelwin gradusy + {0} Kelwin gradusy + + + kub kilometr + {0} kub kilometr + {0} kub kilometr + + + kub metr + {0} kub metr + {0} kub metr + {0}/kub metr + + + kub santimetr + {0} kub santimetr + {0} kub santimetr + {0}/kub santimetr + + + kub mil + {0} kub mil + {0} kub mil + + + kub ýard + {0} kub ýard + {0} kub ýard + + + kub fut + {0} kub fut + {0} kub fut + + + kub dýuým + {0} kub dýuým + {0} kub dýuým + + + megalitr + {0} megalitr + {0} megalitr + + + gektolitr + {0} gektolitr + {0} gektolitr + + + litr + {0} litr + {0} litr + {0}/l + + + desilitr + {0} desilitr + {0} desilitr + + + santilitr + {0} santilitr + {0} santilitr + + + millilitr + {0} millilitr + {0} millilitr + + + metrik pint + {0} metrik pint + {0} metrik pint + + + metrik käse + {0} metrik käse + {0} metrik käse + + + akrfut + {0} akrfut + {0} akrfut + + + gallon + {0} galon + {0} galon + {0}/galon + + + kwarta + {0} kwarta + {0} kwarta + + + pint + {0} pint + {0} pint + + + käse + {0} käse + {0} käse + + + suwuklyk unsiý + {0} suwuklyk unsiý + {0} suwuklyk unsiý + + + nahar çemçesi + {0} nahar çemçe + {0} nahar çemçe + + + çaý çemçesi + {0} çaý çemçe + {0} çaý çemçe + + + {0} gündogar + {0} günorta + {0} demirgazyk + {0} günbatar + + + + + {0}/{1} + + + G + {0} G + {0} G + + + m/s² + {0} m/s² + {0} m/s² + + + aýl. + {0} aýl. + {0} aýl. + + + rad + {0} rad + {0} rad + + + ° + {0}° + {0}° + + + + {0}′ + {0}′ + + + + {0}″ + {0}″ + + + km² + {0} km² + {0} km² + + + ga + {0} ga + {0} ga + + + + {0} m² + {0} m² + {0}/m² + + + cm² + {0} cm² + {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + + + akr + {0} akr + {0} akr + + + ýd² + {0} ýd² + {0} ýd² + + + ft² + {0} ft² + {0} ft² + + + dý² + {0} dý² + {0} dý² + {0}/dý² + + + kar + {0} kar + {0} kar + + + l/km + {0} l/km + {0} l/km + + + l/100 km + {0} l/100 km + {0} l/100 km + + + mil/gal. + {0} mil/gal. + {0} mil/gal. + + + TB + {0} TB + {0} TB + + + Tbit + {0} Tbit + {0} Tbit + + + GB + {0} GB + {0} GB + + + Gbit + {0} Gbit + {0} Gbit + + + MB + {0} MB + {0} MB + + + Mbit + {0} Mbit + {0} Mbit + + + kB + {0} kB + {0} kB + + + kbit + {0} kbit + {0} kbit + + + B + {0} B + {0} B + + + bit + {0} bit + {0} bit + + + as + {0} as + {0} as + + + ý. + {0} ý. + {0} ý. + {0}/ý. + + + + {0} a + {0} a + {0}/a + + + hep + {0} hep + {0} hep + {0}/hep + + + gün + {0} gün + {0} gün + {0}/gün + + + sag + {0} sag + {0} sag + {0}/sag + + + min + {0} min + {0} min + {0}/min + + + sek + {0} sek + {0} sek + {0}/sek + + + msek + {0} msek + {0} msek + + + μs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns + + + A + {0} A + {0} A + + + mA + {0} mA + {0} mA + + + Om + {0} Om + {0} Om + + + W + {0} W + {0} W + + + kkal + {0} kkal + {0} kkal + + + kal + {0} kal + {0} kal + + + Kal + {0} Kal + {0} Kal + + + kdž + {0} kdž + {0} kdž + + + + {0} dž + {0} dž + + + kWt-sag + {0} kWt-sag + {0} kWt-sag + + + GGs + {0} GGs + {0} GGs + + + MGs + {0} MGs + {0} MGs + + + kGs + {0} kGs + {0} kGs + + + Gs + {0} Gs + {0} Gs + + + km + {0} km + {0} km + {0}/km + + + metr + {0} m + {0} m + {0}/m + + + dm + {0} dm + {0} dm + + + sm + {0} sm + {0} sm + {0}/sm + + + mm + {0} mm + {0} mm + + + mkm + {0} mkm + {0} mkm + + + nm + {0} nm + {0} nm + + + pm + {0} pm + {0} pm + + + mi + {0} mi + {0} mi + + + ýd + {0} ýd + {0} ýd + + + ft + {0} ft + {0} ft + {0}/ft + + + + {0} dý + {0} dý + {0}/dý + + + pk + {0} pk + {0} pk + + + ýý + {0} ýý + {0} ýý + + + ab + {0} ab + {0} ab + + + dmi + {0} dmi + {0} dmi + + + smi + {0} smi + {0} smi + + + lk + {0} lk + {0} lk + + + m. t + {0} m. t + {0} m. t + + + kg + {0} kg + {0} kg + {0}/kg + + + g + {0} g + {0} g + {0}/g + + + mg + {0} mg + {0} mg + + + mkg + {0} mkg + {0} mkg + + + t + {0} t + {0} t + + + funt + {0} funt + {0} funt + {0}/funt + + + uns. + {0} uns. + {0} uns. + {0}/uns. + + + oz t + {0} oz t + {0} oz t + + + kar + {0} kar + {0} kar + + + GWt + {0} GWt + {0} GWt + + + MWt + {0} MWt + {0} MWt + + + kWt + {0} kWt + {0} kWt + + + Wt + {0} Wt + {0} Wt + + + mWt + {0} mWt + {0} mWt + + + a.g. + {0} a.g. + {0} a.g. + + + gPa + {0} gPa + {0} gPa + + + s. s. mm + {0} s. s. mm + {0} s. s. mm + + + f./dý² + {0} f./dý² + {0} f./dý² + + + s. s. dý. + {0} s. s. dý. + {0} s. s. dý. + + + mbar + {0} mbar + {0} mbar + + + km/sag + {0} km/sag + {0} km/sag + + + m/s + {0} m/s + {0} m/s + + + mil/sag + {0} mil/sag + {0} mil/sag + + + uz. + {0} uz. + {0} uz. + + + ° + {0}° + {0}° + + + °C + {0}°C + {0}°C + + + °F + {0}°F + {0}°F + + + K + {0} K + {0} K + + + km³ + {0} km³ + {0} km³ + + + + {0} m³ + {0} m³ + {0}/m³ + + + sm³ + {0} sm³ + {0} sm³ + {0}/sm³ + + + mi³ + {0} mi³ + {0} mi³ + + + ýd³ + {0} ýd³ + {0} ýd³ + + + ft³ + {0} ft³ + {0} ft³ + + + dý³ + {0} dý³ + {0} dý³ + + + Ml + {0} Ml + {0} Ml + + + gl + {0} gl + {0} gl + + + l + {0} l + {0} l + {0}/l + + + dl + {0} dl + {0} dl + + + sl + {0} sl + {0} sl + + + ml + {0} ml + {0} ml + + + mpt + {0} mpt + {0} mpt + + + mkä + {0} mkä + {0} mkä + + + akft + {0} akft + {0} akft + + + gal. + {0} gal. + {0} gal. + {0}/gal. + + + kwt + {0} kwt + {0} kwt + + + pt + {0} pt + {0} pt + + + käse + {0} kä + {0} kä + + + suw. uns. + {0} suw. uns. + {0} suw. uns. + + + n. ç. + {0} n. ç. + {0} n. ç. + + + ç. ç. + {0} ç. ç. + {0} ç. ç. + + + {0} g.d. + {0} g.o. + {0} d.g. + {0} g.b. + + + + + {0}/{1} + + + l/100 km + {0} l/100 km + {0} l/100 km + + + ý + {0}ý + {0}ý + + + a + {0}a + {0}a + + + h + {0}h + {0}h + + + g + {0}g + {0}g + + + sg + {0}sg + {0}sg + + + m + {0}m + {0}m + + + se + {0}se + {0}se + + + ms + {0}ms + {0}ms + + + km + {0}km + {0}km + + + m + {0}m + {0}m + + + sm + {0}sm + {0}sm + + + mm + {0}mm + {0}mm + + + kg + {0}kg + {0}kg + + + g + {0}g + {0}g + + + km/sag + {0}km/sag + {0}km/sag + + + °C + {0}°C + {0}°C + + + l + {0}l + {0}l + + + {0}g.d. + {0}g.o. + {0}d.g. + {0}g.b. + + + + hh:mm + + + hh:mm:ss + + + m:ss + + + + + {0}, {1} + {0}, {1} + {0} we {1} + {0} we {1} + + + {0}, {1} + {0}, {1} + {0} we {1} + {0} we {1} + + + {0} {1} + {0} {1} + {0} {1} + {0} {1} + + + {0}, {1} + {0}, {1} + {0} we {1} + {0}, {1} + + + + + hawa:h + ýok:ý + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ha_Latn.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tk_TM.xml similarity index 67% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ha_Latn.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tk_TM.xml index 594a056b4f6..3f03954c98d 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ha_Latn.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tk_TM.xml @@ -6,9 +6,8 @@ For terms of use, see http://www.unicode.org/copyright.html --> - - - - + @@ -679,6 +684,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -725,6 +731,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -746,6 +753,54 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -781,7 +836,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -835,7 +890,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anikuila ʻAlipania ʻĀmenia - Anitila fakahōlani ʻAngikola ʻAnitātika ʻAsenitina @@ -1063,7 +1117,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tailani Tasikitani Tokelau - Timoa Hahake + Timoa hahake Tūkimenisitani Tunīsia Tonga @@ -1100,100 +1154,114 @@ For terms of use, see http://www.unicode.org/copyright.html tohi māhina tohi hokohoko paʻanga + takai houa + fesiʻilaine + founga fakafuofua fika - fika fakaʻalepea - fika fakaʻalepea fakalahi - fika fakaʻāmenia - fika fakaʻāmenia fakalalo - fika fakapali - fika fakapengikali - siaina-nimalahi - fika fakapalami - fakaputa - fika fakakakema - fika fakakami - fakasiaina - fakakopitika - fakataniki - fika fakatevanākalī - tikisinale - ʻunikōti - fakaʻiulope - fika fakaʻītiōpia - fakaʻītiōpia - fakaʻītiōpia-ʻamete-ʻalemi - fika laulahi - siaina-fakafaingofua - fika fakaseōsia - fakakelekolia - fika fakakalisi - fika fakakalisi fakalalo - fika fakakutalati - fika fakakūmuki - fika fakasiaina - fika fakasiaina fakafaingofua - fika fakasiaina fakafaingofua fakapaʻanga - fika fakasiaina tukufakaholo - fika fakasiaina tukufakaholo fakapaʻanga - fika fakahepelū - fakahepelū - fakaʻinitia - fakamohameti - fakamohameti-sivile - fakamohameti-ʻasimāhina - fakamohameti -fakatēpile - fakamohameti-ʻumalakula - faka-iso8601 - fakasiapani - fika fakasava - fika fakasiapani - fika fakasiapani fakapaʻanga - fika fakakaialī - fika fakakamipōtia - fika fakakanata - fika fakatai-tami-hola - fika fakatai-tami-tami - fika fakalau - fika fakalatina - fika fakalepasā - fika fakalimipū - fika fakamalāialami - fika fakamongokōlia - fika fakametei-maieki - fika fakapema - fika fakapema-siani - fika fakanikō - fika fakaʻolisiki - fika fakaʻolia - fika fakaʻosimania - fakapēsia - fika telefoni - piniini - fakafoʻou - fakalēpupelika siaina - fika fakaloma - fika fakaloma fakalalo - fika fakasaulasitā - fakakumi ʻi hono anga lahi - konisinanite ʻuluaki - fika fakasalata - fika fakasola-somipenga - fakasīpinga - tongi - fika fakasunitā - fika fakatakili - fika fakatai-lue foʻou - fika fakatamili tukufakaholo - fika fakatamili - fika fakateluku - fika fakatailani - fika fakatipeti - tukufakaholo - tongi tefitoʻi - fika fakavai - sūini + fakaputa + fakasiaina + fakakopitika + fakataniki + fakaʻītiōpia + fakaʻītiōpia-ʻamete-ʻalemi + fakakelekolia + fakahepelū + fakaʻinitia + fakamohameti + fakamohameti-sivile + fakamohameti-ʻasimāhina + fakamohameti -fakatēpile + fakamohameti-ʻumalakula + faka-iso8601 + fakasiapani + fakapēsia + fakalēpupelika siaina + siaina-nimalahi + tikisinale + ʻunikōti + ʻemosi + fakaʻiulope + siaina-fakafaingofua + fika telefoni + piniini + fakafoʻou + fakakumi ʻi hono anga lahi + konisinanite ʻuluaki + fakasīpinga + tongi + tukufakaholo + tongi tefitoʻi + sūini + takai houa 0–11 + takai houa 1–12 + takai houa 0–23 + taki houa 1–24 + fesiʻilaine ngaloku + fesiʻilaine faʻafai + fesiʻilaine mafao + founga fakamita + founga fakapilitānia + founga fakaʻamelika + fika fakaʻalepea + fika fakaʻalepea fakalahi + fika fakaʻāmenia + fika fakaʻāmenia fakalalo + fika fakapali + fika fakapengikali + fika fakapalami + fika fakakakema + fika fakakami + fika fakatevanākalī + fika fakaʻītiōpia + fika laulahi + fika fakaseōsia + fika fakakalisi + fika fakakalisi fakalalo + fika fakakutalati + fika fakakūmuki + fika fakasiaina + fika fakasiaina fakafaingofua + fika fakasiaina fakafaingofua fakapaʻanga + fika fakasiaina tukufakaholo + fika fakasiaina tukufakaholo fakapaʻanga + fika fakahepelū + fika fakasava + fika fakasiapani + fika fakasiapani fakapaʻanga + fika fakakaialī + fika fakakamipōtia + fika fakakanata + fika fakatai-tami-hola + fika fakatai-tami-tami + fika fakalau + fika fakalatina + fika fakalepasā + fika fakalimipū + fika fakamalāialami + fika fakamongokōlia + fika fakametei-maieki + fika fakapema + fika fakapema-siani + fika fakanikō + fika fakaʻolisiki + fika fakaʻolia + fika fakaʻosimania + fika fakaloma + fika fakaloma fakalalo + fika fakasaulasitā + fika fakasalata + fika fakasola-somipenga + fika fakasunitā + fika fakatakili + fika fakatai-lue foʻou + fika fakatamili tukufakaholo + fika fakatamili + fika fakateluku + fika fakatailani + fika fakatipeti + fika fakavai fakamita @@ -1273,6 +1341,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E d y G MMM y G @@ -1311,6 +1380,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y G d MMM y G E d MMM y G + G y MMMM y QQQ G y QQQQ G @@ -1624,14 +1694,30 @@ For terms of use, see http://www.unicode.org/copyright.html + + AM + PM + + + AM + PM + + + AM + PM + + + + + AM + PM + AM - h PM AM - hoʻatā PM @@ -1645,16 +1731,8 @@ For terms of use, see http://www.unicode.org/copyright.html KM - BCE TS - CE - - KāMā - KM - TāSā - TS - @@ -1739,6 +1817,10 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d/M E d/M @@ -1879,6 +1961,9 @@ For terms of use, see http://www.unicode.org/copyright.html taʻu + taʻu kuoʻosi + taʻú ni + taʻu kahaʻu ʻi he taʻu ʻe {0} @@ -1888,6 +1973,9 @@ For terms of use, see http://www.unicode.org/copyright.html taʻu + taʻu kuoʻosi + taʻú ni + taʻu kahaʻu ʻi he taʻu ʻe {0} @@ -1897,6 +1985,9 @@ For terms of use, see http://www.unicode.org/copyright.html kuata + kuata kuoʻosi + kuata koʻeni + kuata hoko ʻi he kuata ʻe {0} @@ -1906,6 +1997,9 @@ For terms of use, see http://www.unicode.org/copyright.html kuata + kuata kuoʻosi + kuata koʻeni + kuata hoko ʻi he kuata ʻe {0} @@ -1915,6 +2009,9 @@ For terms of use, see http://www.unicode.org/copyright.html kuata + kuata kuoʻosi + kuata koʻeni + kuata hoko ʻi he kuata ʻe {0} @@ -1936,6 +2033,9 @@ For terms of use, see http://www.unicode.org/copyright.html māhina + māhina kuoʻosi + māhiná ni + māhina kahaʻu ʻi he māhina ʻe {0} @@ -1945,6 +2045,9 @@ For terms of use, see http://www.unicode.org/copyright.html māhina + māhina kuoʻosi + māhiná ni + māhina kahaʻu ʻi he māhina ʻe {0} @@ -1966,6 +2069,9 @@ For terms of use, see http://www.unicode.org/copyright.html uike + uike kuoʻosi + uiké ni + uike kahaʻu ʻi he uike ʻe {0} @@ -1975,6 +2081,9 @@ For terms of use, see http://www.unicode.org/copyright.html uike + uike kuoʻosi + uiké ni + uike kahaʻu ʻi he uike ʻe {0} @@ -1998,6 +2107,11 @@ For terms of use, see http://www.unicode.org/copyright.html ʻaho + ʻaneheafi + ʻaneafi + ʻahó ni + ʻapongipongi + ʻahepongipongi ʻi he ʻaho ʻe {0} @@ -2007,6 +2121,11 @@ For terms of use, see http://www.unicode.org/copyright.html ʻaho + ʻaneheafi + ʻaneafi + ʻahó ni + ʻapongipongi + ʻahepongipongi ʻi he ʻaho ʻe {0} @@ -2394,7 +2513,7 @@ For terms of use, see http://www.unicode.org/copyright.html Porto-Novo - St. Barthelemy + St. Barthélemy Bermuda @@ -3086,6 +3205,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -3123,13 +3245,13 @@ For terms of use, see http://www.unicode.org/copyright.html Palau - Asuncion + Asunción Qatar - Reunion + Réunion Bucharest @@ -3170,6 +3292,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Chita + Yakutsk @@ -3188,6 +3313,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolymsk + Kamchatka @@ -3246,7 +3374,7 @@ For terms of use, see http://www.unicode.org/copyright.html Juba - Sao Tome + São Tomé El Salvador @@ -3309,7 +3437,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dar es Salaam - Uzhgorod + Uzhhorod Kiev @@ -4508,6 +4636,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##0.00 + + + ¤ 0k + ¤ 00k + ¤ 000k + ¤ 0M + ¤ 00M + ¤ 000M + ¤ 0Ki + ¤ 00Ki + ¤ 000Ki + ¤ 0T + ¤ 00T + ¤ 000T + + {1} {0} @@ -4515,10 +4659,16 @@ For terms of use, see http://www.unicode.org/copyright.html AUD$ $ + + BRL + FJD $ + + + NZD$ $ @@ -4535,6 +4685,9 @@ For terms of use, see http://www.unicode.org/copyright.html Paʻanga fakatonga T$ + + $ + VUV @@ -4546,6 +4699,10 @@ For terms of use, see http://www.unicode.org/copyright.html CFPF + + Pa’anga Ta’e’ilo + Pa’anga Ta’e’ilo + {0}+ @@ -4565,6 +4722,18 @@ For terms of use, see http://www.unicode.org/copyright.html mita he sekoni sikuea mita he sekoni sikuea ʻe {0} + + takai + takai ʻe {0} + + + lētiani + lētiani ʻe {0} + + + tikili seakale + tikili seakale ʻe {0} + miniti seakale miniti seakale ʻe {0} @@ -4573,25 +4742,35 @@ For terms of use, see http://www.unicode.org/copyright.html sekoni seakale sekoni seakale ʻe {0} - - tikili seakale - tikili seakale ʻe {0} - - - lētiani - lētiani ʻe {0} - - - ʻeka ʻe - ʻeka ʻe {0} + + kilomita sikuea + kilomita sikuea ʻe {0} hekitale hekitale ʻe {0} + + mita sikuea ʻe + mita sikuea ʻe {0} + {0} ki he mita sikuea + senitimita sikuea senitimita sikuea ʻe {0} + {0} ki he senitimita sikuea + + + maile sikuea + maile sikuea ʻe {0} + + + ʻeka ʻe + ʻeka ʻe {0} + + + iate sikuea + iate sikuea ʻe {0} fute sikuea @@ -4600,112 +4779,114 @@ For terms of use, see http://www.unicode.org/copyright.html ʻinisi sikuea ʻinisi sikuea ʻe {0} + {0} ki he ʻinisi sikuea - - kilomita sikuea - kilomita sikuea ʻe {0} - - - mita sikuea ʻe - mita sikuea ʻe {0} - - - maile sikuea - maile sikuea ʻe {0} - - - iate sikuea - iate sikuea ʻe {0} + + kalati + kalati ʻe {0} lita he kilomita - lita he kilomita ʻe {0} + lita ʻe {0} he kilomita + + + lita he kilomita ʻe 100 + lita ʻe {0} he kilomita ʻe 100 maile he kālani - maile he kālani ʻe {0} - - - ʻū piti - piti ʻe {0} - - - paiti - paiti ʻe {0} - - - kikapiti - kikapiti ʻe {0} - - - kikapaiti - kikapaiti ʻe {0} - - - kilopiti - kilopiti ʻe {0} - - - kilopaiti - kilopaiti ʻe {0} - - - mekapiti - mekapiti ʻe {0} - - - mekapaiti - mekapaiti ʻe {0} - - - telapiti - telapiti ʻe {0} + maile ʻe {0} he kālani telapaiti telapaiti ʻe {0} + + telapiti + telapiti ʻe {0} + + + kikapaiti + kikapaiti ʻe {0} + + + kikapiti + kikapiti ʻe {0} + + + mekapaiti + mekapaiti ʻe {0} + + + mekapiti + mekapiti ʻe {0} + + + kilopaiti + kilopaiti ʻe {0} + + + kilopiti + kilopiti ʻe {0} + + + paiti + paiti ʻe {0} + + + ʻū piti + piti ʻe {0} + + + teautaʻu + teautaʻu ʻe {0} + + + taʻu + taʻu ʻe {0} + {0} ki he taʻu + + + māhina + māhina ʻe {0} + {0} ki he māhina + + + uike + uike ʻe {0} + {0} ki he uike + ʻaho ʻaho ʻe {0} + {0} ki he ʻaho houa houa ʻe {0} {0} ki he houa - - mikolosekoni - mikolosekoni ʻe {0} - - - milisekoni - milisekoni ʻe {0} - miniti miniti ʻe {0} - - - māhina - māhina ʻe {0} - - - nanosekoni - nanosekoni ʻe {0} + {0} ki he miniti sekoni sekoni ʻe {0} {0} ki he sekoni - - uike - uike ʻe {0} + + milisekoni + milisekoni ʻe {0} - - taʻu - taʻu ʻe {0} + + mikolosekoni + mikolosekoni ʻe {0} + + + nanosekoni + nanosekoni ʻe {0} ʻamipele @@ -4723,6 +4904,10 @@ For terms of use, see http://www.unicode.org/copyright.html volotā volotā ʻe {0} + + kilokaloli + kilokaloli ʻe {0} + ʻū kaloli kaloli ʻe {0} @@ -4731,18 +4916,14 @@ For terms of use, see http://www.unicode.org/copyright.html ʻū kaloli-kai kaloli-kai ʻe {0} - - siule - siule ʻe {0} - - - kilokaloli - kilokaloli ʻe {0} - kilosiule kilosiule ʻe {0} + + siule + siule ʻe {0} + kilouate-houa kilouate-houa ʻe {0} @@ -4751,174 +4932,175 @@ For terms of use, see http://www.unicode.org/copyright.html kikahēti kikahēti ʻe {0} - - hēti - hēti ʻe {0} + + megahēti + megahēti ʻe {0} kilohēti kilohēti ʻe {0} - - megahēti - megahēti ʻe {0} + + hēti + hēti ʻe {0} - - ʻiuniti fakaʻasitalōnoma - ʻiuniti fakaʻasitalōnoma ʻe {0} + + kilomita + kilomita ʻe {0} + {0} ki he kilomita - - senitimita - senitimita ʻe {0} + + mita + mita ʻe {0} + {0} ki he mita tesimita tesimita ʻe {0} - - ofa - ofa ʻe {0} - - - fute - fute ʻe {0} - - - fālongo - fālongo ʻe {0} - - - ʻinisi - ʻinisi ʻe {0} - - - kilomita - kilomita ʻe {0} - - - taʻumaama - taʻumaama ʻe {0} - - - mita - mita ʻe {0} - - - maikolomita - maikolomita ʻe {0} - - - maile - maile ʻe {0} + + senitimita + senitimita ʻe {0} + {0} ki he senitimita milimita milimita ʻe {0} + + maikolomita + maikolomita ʻe {0} + nanomita nanomita ʻe {0} - - maile ʻi tahi - maile ʻi tahi ʻe {0} - - - ngaofesekoni - ngaofesekoni ʻe {0} - pikomita pikomita ʻe {0} + + maile + maile ʻe {0} + iate iate ʻe {0} + + fute + fute ʻe {0} + {0} ki he fute + + + ʻinisi + ʻinisi ʻe {0} + {0} ki he ʻinise + + + ngaofesekoni + ngaofesekoni ʻe {0} + + + taʻumaama + taʻumaama ʻe {0} + + + ʻiuniti fakaʻasitalōnoma + ʻiuniti fakaʻasitalōnoma ʻe {0} + + + fālongo + fālongo ʻe {0} + + + ofa + ofa ʻe {0} + + + maile ʻi tahi + maile ʻi tahi ʻe {0} + lukisi lukisi ʻe {0} - - kalati - kalati ʻe {0} - - - kalami - kalami ʻe {0} - - - kilokalami - kilokalami ʻe {0} - toni toni ʻe {0} - - maikolokalami - maikolokalami ʻe {0} + + kilokalami + kilokalami ʻe {0} + {0} ki he kilokalami + + + kalami + kalami ʻe {0} + {0} ki he kalami milikalami milikalami ʻe {0} - - ʻaunise - ʻaunisi ʻe {0} - - - ʻaunisi koula - ʻaunisi koula ʻe {0} - - - pāuni - pāuni ʻe {0} - - - sitoni - sitoni ʻe {0} + + maikolokalami + maikolokalami ʻe {0} toni nounou toni nounou ʻe {0} + + sitoni + sitoni ʻe {0} + + + pāuni + pāuni ʻe {0} + {0} ki he pāuni + + + ʻaunise + ʻaunisi ʻe {0} + {0} ki he ʻaunise + + + ʻaunisi koula + ʻaunisi koula ʻe {0} + + + kalati + kalati ʻe {0} + kikauate kikauate ʻe {0} - - hoosipaoa - hoosipaoa ʻe {0} - - - kilouate - kilouate ʻe {0} - mekauate mekauate ʻe {0} - - miliuate - miliuate ʻe {0} + + kilouate + kilouate ʻe {0} uate uate ʻe {0} + + miliuate + miliuate ʻe {0} + + + hoosipaoa + hoosipaoa ʻe {0} + hēkitopasikale hēkitopasikale ʻe {0} - - ʻinisi mēkuli - ʻinisi mēkuli ʻe {0} - - - milipā - milipā ʻe {0} - milimita mēkuli milimita mēkuli ʻe {0} @@ -4927,9 +5109,13 @@ For terms of use, see http://www.unicode.org/copyright.html pāuni he ʻinisi sikuea pāuni he ʻinisi sikuea ʻe {0} - - kalati - kalati ʻe {0} + + ʻinisi mēkuli + ʻinisi mēkuli ʻe {0} + + + milipā + milipā ʻe {0} kilomita he houa @@ -4943,6 +5129,14 @@ For terms of use, see http://www.unicode.org/copyright.html maile he houa maile he houa ʻe {0} + + fakapona + fakapona ʻe {0} + + + ° + {0}° + tikili selisiasi tikili selisiasi ʻe {0} @@ -4955,30 +5149,6 @@ For terms of use, see http://www.unicode.org/copyright.html kelevini kelevini ʻe {0} - - ʻeka-fute - ʻeka-fute ʻe {0} - - - pūseli - pūseli ʻe {0} - - - senitilita - senitilita ʻe {0} - - - senitimita kiupiki - senitimita kiupiki ʻe {0} - - - fute kiupiki - fute kiupiki ʻe {0} - - - ʻinisi kiupiki - ʻinisi kiupiki ʻe {0} - kilomita kiupiki kilomita kiupiki ʻe {0} @@ -4986,6 +5156,12 @@ For terms of use, see http://www.unicode.org/copyright.html mita kiupiki mita kiupiki ʻe {0} + {0} ki he mita kiupiki + + + senitimita kiupiki + senitimita kiupiki ʻe {0} + {0} ki he senitimita kiupiki maile kiupiki @@ -4995,21 +5171,17 @@ For terms of use, see http://www.unicode.org/copyright.html iate kiupiki iate kiupiki ʻe {0} - - ipu - ipu ʻe {0} + + fute kiupiki + fute kiupiki ʻe {0} - - tesilita - tesilita ʻe {0} + + ʻinisi kiupiki + ʻinisi kiupiki ʻe {0} - - ʻaunise tafe - ʻaunise tafe ʻe {0} - - - kālani - kālani ʻe {0} + + mekalita + mekalita ʻe {0} hēkitolita @@ -5018,23 +5190,57 @@ For terms of use, see http://www.unicode.org/copyright.html lita lita ʻe {0} + {0} ki he lita - - mekalita - mekalita ʻe {0} + + tesilita + tesilita ʻe {0} + + + senitilita + senitilita ʻe {0} mililita mililita ʻe {0} - - painite - painite ʻe {0} + + painite fakamita + painite fakamita ʻe {0} + + + ipu fakamita + ipu fakamita ʻe {0} + + + ʻeka-fute + ʻeka-fute ʻe {0} + + + pūseli + pūseli ʻe {0} + + + kālani + kālani ʻe {0} + {0} ki he kālani kuata kuata ʻe {0} + + painite + painite ʻe {0} + + + ipu + ipu ʻe {0} + + + ʻaunise tafe + ʻaunise tafe ʻe {0} + sēpuni tēpile sēpuni tēpile ʻe {0} @@ -5043,6 +5249,12 @@ For terms of use, see http://www.unicode.org/copyright.html sēpuni tī sēpuni tī ʻe {0} + + hahake ʻe {0} + tokelau ʻe {0} + tonga ʻe {0} + hihifo ʻe {0} + @@ -5056,6 +5268,18 @@ For terms of use, see http://www.unicode.org/copyright.html m/s² m/s² ʻe {0} + + tak + tak ʻe {0} + + + lēt + lēt ʻe {0} + + + tsk + tsk ʻe {0} + msk msk ʻe {0} @@ -5064,139 +5288,151 @@ For terms of use, see http://www.unicode.org/copyright.html ssk ssk ʻe {0} - - tsk - tsk ʻe {0} - - - lēt - lēt ʻe {0} - - - ʻeka ʻe - ʻek ʻe {0} + + km² + km² ʻe {0} ha ha ʻe {0} + + mita sikuea ʻe + m² ʻe {0} + {0} /m² + sm² sm² ʻe {0} - - - ft² - sk ft² ʻe {0} - - - in² - sk in² ʻe {0} - - - km² - sk km² ʻe {0} - - - mita sikuea ʻe - sk m² ʻe {0} + {0} /sm² maile sikuea ʻe - sk mi² ʻe {0} + mi² ʻe {0} + + + ʻeka ʻe + ʻek ʻe {0} it² it² ʻe {0} + + ft² + ft² ʻe {0} + + + in² + in² ʻe {0} + {0} /in² + + + kt + kt ʻe {0} + l/km - l/km ʻe {0} + l ʻe {0}/km + + + l/100km + l ʻe {0}/100km mi/kā - mi/kā ʻe {0} - - - piti - piti ʻe {0} - - - ʻū paiti - paiti ʻe {0} - - - Gb - Gb ʻe {0} - - - kikapaiti - KP ʻe {0} - - - kilopiti - kb ʻe {0} - - - kilopaiti - kB ʻe {0} - - - mekapiti - Mb ʻe {0} - - - mekapaiti - MB ʻe {0} - - - telapiti - Tb ʻe {0} + mi ʻe {0}/kā telapaiti TB ʻe {0} + + telapiti + Tb ʻe {0} + + + kikapaiti + GB ʻe {0} + + + kikapiti + Gb ʻe {0} + + + mekapaiti + MB ʻe {0} + + + mekapiti + Mb ʻe {0} + + + kilopaiti + kB ʻe {0} + + + kilopiti + kb ʻe {0} + + + ʻū paiti + paiti ʻe {0} + + + piti + piti ʻe {0} + + + tt + tt ʻe {0} + + + taʻu + taʻu ʻe {0} + {0} /t + + + + mā ʻe {0} + {0} /mā + + + u + u ʻe {0} + {0} /u + ʻa ʻa ʻe {0} + {0} /ʻa h h ʻe {0} {0} /h - - μs - μs ʻe {0} - - - ms - ms ʻe {0} - m m ʻe {0} - - - - mā ʻe {0} - - - ns - ns ʻe {0} + {0} /m s s ʻe {0} {0} /s - - u - u ʻe {0} + + ms + ms ʻe {0} - - taʻu - taʻu ʻe {0} + + μs + μs ʻe {0} + + + ns + ns ʻe {0} A @@ -5214,6 +5450,10 @@ For terms of use, see http://www.unicode.org/copyright.html volotā V ʻe {0} + + kkal + kkal ʻe {0} + kal kal ʻe {0} @@ -5222,18 +5462,14 @@ For terms of use, see http://www.unicode.org/copyright.html kal-k kal-k ʻe {0} - - J - J ʻe {0} - - - kkal - kkal ʻe {0} - kJ kJ ʻe {0} + + J + J ʻe {0} + kWh kWh ʻe {0} @@ -5242,174 +5478,175 @@ For terms of use, see http://www.unicode.org/copyright.html GHz GHz ʻe {0} - - Hz - Hz ʻe {0} + + MHz + MHz ʻe {0} kHz kHz ʻe {0} - - MHz - MHz ʻe {0} + + Hz + Hz ʻe {0} - - ʻiʻa - ʻiʻa ʻe {0} + + km + km ʻe {0} + {0} /km - - sm - sm ʻe {0} + + m + m ʻe {0} + {0} /m tm tm ʻe {0} - - ofa - ofa ʻe {0} - - - ft - ft ʻe {0} - - - fāl - fāl ʻe {0} - - - in - in ʻe {0} - - - km - km ʻe {0} - - - tma - tma ʻe {0} - - - m - m ʻe {0} - - - µm - µm ʻe {0} - - - mi - mi ʻe {0} + + sm + sm ʻe {0} + {0} /sm mm mm ʻe {0} + + µm + µm ʻe {0} + nm nm ʻe {0} - - mt - mt ʻe {0} - - - ngs - ngs ʻe {0} - pm pm ʻe {0} + + mi + mi ʻe {0} + it it ʻe {0} + + ft + ft ʻe {0} + {0} /ft + + + in + in ʻe {0} + {0} /in + + + ngs + ngs ʻe {0} + + + tma + tma ʻe {0} + + + ʻiʻa + ʻiʻa ʻe {0} + + + fāl + fāl ʻe {0} + + + ofa + ofa ʻe {0} + + + mt + mt ʻe {0} + lx lx ʻe {0} - - kt - kt ʻe {0} - - - k - k ʻe {0} - - - kk - kk ʻe {0} - to to ʻe {0} - - μk - μk ʻe {0} + + kk + kk ʻe {0} + {0} /kk + + + k + k ʻe {0} + {0} /k mk mk ʻe {0} - - ʻau - ʻau ʻe {0} - - - ʻau-k - ʻau-k ʻe {0} - - - - pā ʻe {0} - - - st - st ʻe {0} + + μk + μk ʻe {0} tn tn ʻe {0} + + st + st ʻe {0} + + + + pā ʻe {0} + {0} /pā + + + ʻau + ʻau ʻe {0} + {0} /ʻau + + + ʻau-k + ʻau-k ʻe {0} + + + kt + kt ʻe {0} + GW GW ʻe {0} - - hp - hp ʻe {0} - - - kW - kW ʻe {0} - MW MW ʻe {0} - - mW - mW ʻe {0} + + kW + kW ʻe {0} uate W ʻe {0} + + mW + mW ʻe {0} + + + hp + hp ʻe {0} + hPa hPa ʻe {0} - - in-Hg - in-Hg ʻe {0} - - - mpā - mpā ʻe {0} - mm-Hg mm-Hg ʻe {0} @@ -5418,9 +5655,13 @@ For terms of use, see http://www.unicode.org/copyright.html pā/in² pā/in² ʻe {0} - - kt - kt ʻe {0} + + in-Hg + in-Hg ʻe {0} + + + mpā + mpā ʻe {0} km/h @@ -5434,6 +5675,14 @@ For terms of use, see http://www.unicode.org/copyright.html mi/h mi/h ʻe {0} + + fp + fp ʻe {0} + + + ° + {0}° + °S °S ʻe {0} @@ -5446,30 +5695,6 @@ For terms of use, see http://www.unicode.org/copyright.html K K ʻe {0} - - ʻe-ft - ʻe-ft ʻe {0} - - - - pū ʻe {0} - - - sl - sl ʻe {0} - - - sm³ - sm³ ʻe {0} - - - ft³ - ft³ ʻe {0} - - - in³ - in³ ʻe {0} - km³ km³ ʻe {0} @@ -5477,6 +5702,12 @@ For terms of use, see http://www.unicode.org/copyright.html m³ ʻe {0} + {0} /m³ + + + sm³ + sm³ ʻe {0} + {0} /sm³ mi³ @@ -5486,21 +5717,17 @@ For terms of use, see http://www.unicode.org/copyright.html it³ it³ ʻe {0} - - ip - ip ʻe {0} + + ft³ + ft³ ʻe {0} - - tl - tl ʻe {0} + + in³ + in³ ʻe {0} - - ʻau-tf - ʻau-tf ʻe {0} - - - - kā ʻe {0} + + Ml + Ml ʻe {0} hl @@ -5509,23 +5736,57 @@ For terms of use, see http://www.unicode.org/copyright.html l l ʻe {0} + {0} /l - - Ml - Ml ʻe {0} + + tl + tl ʻe {0} + + + sl + sl ʻe {0} ml ml ʻe {0} - - pt - pt ʻe {0} + + ptm + ptm ʻe {0} + + + ipm + ipm ʻe {0} + + + ʻe-ft + ʻe-ft ʻe {0} + + + + pū ʻe {0} + + + + kā ʻe {0} + {0} /kā ku ku ʻe {0} + + pt + pt ʻe {0} + + + ip + ip ʻe {0} + + + ʻau-tf + ʻau-tf ʻe {0} + sētē sētē ʻe {0} @@ -5534,6 +5795,12 @@ For terms of use, see http://www.unicode.org/copyright.html sētī sētī ʻe {0} + + ha ʻe {0} + tk ʻe {0} + to ʻe {0} + hi ʻe {0} + @@ -5547,6 +5814,18 @@ For terms of use, see http://www.unicode.org/copyright.html m/s² {0} m/s² + + tak + {0} tak + + + lēt + {0} lēt + + + ° + {0}° + {0}′ @@ -5555,25 +5834,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ - - ° - {0}° - - - lēt - {0} lēt - - - ʻek - {0} ʻek + + km² + {0} km² ha {0} ha + + + {0} m² + {0} /m² + sm² {0} sm² + {0} /sm² + + + mi² + {0} mi² + + + ʻek + {0} ʻek + + + it² + {0} it² ft² @@ -5582,112 +5871,114 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0} in² + {0} /in² - - km² - {0} km² - - - - {0} m² - - - mi² - {0} mi² - - - it² - {0} it² + + kt + {0} kt l/km {0} l/km + + l/100km + {0} l/100km + mi/kā {0} mi/kā - - b - {0} b - - - B - {0} B - - - Gb - {0} Gb - - - GB - {0} GB - - - kb - {0} kb - - - kB - {0} kB - - - Mb - {0} Mb - - - MB - {0} MB - - - Tb - {0} Tb - TB {0} TB + + Tb + {0} Tb + + + kikapaiti + KP ʻe {0} + + + Gb + {0} Gb + + + MB + {0} MB + + + Mb + {0} Mb + + + kB + {0} kB + + + kb + {0} kb + + + B + {0} B + + + b + {0} b + + + tt + tt ʻe {0} + + + t + {0} t + {0} /t + + + m + {0} m + {0} /m + + + u + {0} u + {0} /u + ʻa {0} ʻa + {0} /ʻa h {0} h {0} /h - - μs - {0} μs - - - ms - {0} ms - m {0} m - - - m - {0} m - - - ns - {0} ns + {0} /m s {0} s {0} /s - - u - {0} u + + ms + {0} ms - - t - {0} t + + μs + {0} μs + + + ns + {0} ns A @@ -5705,6 +5996,10 @@ For terms of use, see http://www.unicode.org/copyright.html V {0} V + + kkal + {0} kkal + kal {0} kal @@ -5713,18 +6008,14 @@ For terms of use, see http://www.unicode.org/copyright.html kal-k {0} kal-k - - J - J ʻe {0} - - - kkal - {0} kkal - kJ {0} kJ + + J + {0} J + kWh {0} kWh @@ -5733,174 +6024,174 @@ For terms of use, see http://www.unicode.org/copyright.html GHz {0} GHz - - Hz - {0} Hz + + MHz + {0} MHz kHz {0} kHz - - MHz - {0} MHz + + Hz + {0} Hz - - ʻiʻa - {0} ʻiʻa + + km + {0} km + {0} /km - - sm - {0} sm + + m + {0} m + {0} /m tm {0} tm - - o - {0} o - - - ft - {0} ft - - - fāl - {0} fāl - - - in - {0} in - - - km - {0} km - - - tma - {0} tma - - - m - {0} m - - - µm - {0} µm - - - mi - {0} mi + + sm + {0} sm + {0} /sm mm {0} mm + + µm + {0} µm + nm {0} nm - - mt - {0} mt - - - ngs - {0} ngs - pm {0} pm + + mi + {0} mi + it {0} it + + ft + {0} ft + {0} /ft + + + in + {0} in + {0} /in + + + ngs + {0} ngs + + + tma + {0} tma + + + ʻiʻa + {0} ʻiʻa + + + fāl + {0} fāl + + + o + {0} o + + + mt + {0} mt + lx {0} lx - - kt - {0} kt + + to + {0} to + + + kk + {0} kk + {0} /kk k {0} k - - kk - {0} kk - - - to - {0} to + + mk + {0} mk μk {0} μk - - mk - {0} mk - - - ʻau - {0} ʻau - - - ʻau-k - {0} ʻau-k - - - - {0} pā + + tn + {0} tn st {0} st - - tn - {0} tn + + + {0} pā + {0} /pā + + + ʻau + {0} ʻau + {0} /ʻau + + + ʻau-k + {0} ʻau-k + + + kt + {0} kt GW {0} GW - - hp - {0} hp + + MW + {0} MW kW {0} kW - - MW - {0} MW + + W + {0} W mW {0} mW - - W - {0} W + + hp + {0} hp hPa {0} hPa - - in-Hg - {0} in-Hg - - - mpā - {0} mpā - mm-Hg {0} mm-Hg @@ -5909,9 +6200,13 @@ For terms of use, see http://www.unicode.org/copyright.html pā/in² {0} pā/in² - - kt - {0} kt + + in-Hg + {0} in-Hg + + + mpā + {0} mpā km/h @@ -5925,6 +6220,14 @@ For terms of use, see http://www.unicode.org/copyright.html mi/h {0} mi/h + + fp + {0} fp + + + ° + {0}° + °S {0}°S @@ -5937,30 +6240,6 @@ For terms of use, see http://www.unicode.org/copyright.html K {0} K - - ʻe-ft - {0} ʻe-ft - - - - {0} pū - - - sl - {0} sl - - - sm³ - {0} sm³ - - - ft³ - {0} ft³ - - - in³ - {0} in³ - km³ {0} km³ @@ -5968,6 +6247,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ + {0} /m³ + + + sm³ + {0} sm³ + {0} /sm³ mi³ @@ -5977,21 +6262,17 @@ For terms of use, see http://www.unicode.org/copyright.html it³ {0} it³ - - ip - {0} ip + + ft³ + {0} ft³ - - tl - {0} tl + + in³ + {0} in³ - - ʻau-tf - {0} ʻau-tf - - - - {0} kā + + Ml + {0} Ml hl @@ -6000,23 +6281,57 @@ For terms of use, see http://www.unicode.org/copyright.html l {0} l + {0} /l - - Ml - {0} Ml + + tl + {0} tl + + + sl + {0} sl ml {0} ml - - pt - {0} pt + + ptm + {0} ptm + + + ipm + {0} ipm + + + ʻe-ft + {0} ʻe-ft + + + + {0} pū + + + + {0} kā + {0} /kā ku {0} ku + + pt + {0} pt + + + ip + {0} ip + + + ʻau-tf + {0} ʻau-tf + sētē {0} sētē @@ -6025,6 +6340,12 @@ For terms of use, see http://www.unicode.org/copyright.html sētī {0} sētī + + {0} ha + {0} tk + {0} to + {0} hi + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/to_TO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/to_TO.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/to_TO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/to_TO.xml index e120f987d99..38bf6d40f1b 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/to_TO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/to_TO.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/tr.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tr.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/tr.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tr.xml index 7c0d0d5a025..7adb40b8012 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/tr.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tr.xml @@ -1,13 +1,12 @@ - - - + @@ -59,7 +58,7 @@ For terms of use, see http://www.unicode.org/copyright.html Aymara Azerice Azerice - Güney Azerice + Güney Azerice Başkırtça Baluchi Bali Dili @@ -76,6 +75,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bafut Badaga Bulgarca + Batı Balochi Arayanice Bislama Bikol @@ -162,7 +162,6 @@ For terms of use, see http://www.unicode.org/copyright.html Avustralya İngilizcesi Kanada İngilizcesi İngiliz İngilizcesi - İngilizce (BK) Amerikan İngilizcesi Ortaçağ İngilizcesi Esperanto @@ -198,7 +197,7 @@ For terms of use, see http://www.unicode.org/copyright.html Batı Frizcesi İrlandaca Ga - Gagavuzca + Gagavuzca Gan Çincesi Gayo Gbaya @@ -261,7 +260,7 @@ For terms of use, see http://www.unicode.org/copyright.html Japonca Jamaika Patois Dili Lojban - Ngomba + Ngomba Machame Yahudi Farsçası Yahudi Arapçası @@ -298,7 +297,7 @@ For terms of use, see http://www.unicode.org/copyright.html Kimbundu Kannada Korece - Komi-Permyak + Komi-Permyak Konkani Kosraean Kpelle @@ -330,13 +329,14 @@ For terms of use, see http://www.unicode.org/copyright.html Limburgca Ligurca Livonca - Lakotaca + Lakotaca Lombardça Lingala Laoca Mongo Lozi - Litvanyaca + Kuzey Luri + Litvanca Latgalian Luba-Katanga Luba-Lulua @@ -364,7 +364,7 @@ For terms of use, see http://www.unicode.org/copyright.html Malgaşça Ortaçağ İrlandacası Makhuwa-Meetto - Meta’ + Meta’ Marshall Adaları Dili Maori Dili Micmac @@ -389,7 +389,7 @@ For terms of use, see http://www.unicode.org/copyright.html Burmaca Myene Erzya - Mazenderanca + Mazenderanca Nauru Dili Min Nan Çincesi Napolice @@ -397,6 +397,7 @@ For terms of use, see http://www.unicode.org/copyright.html Norveççe Bokmål Kuzey Ndebele Aşağı Almanca + Aşağı Saksonca Nepalce Nevari Ndonga @@ -454,7 +455,7 @@ For terms of use, see http://www.unicode.org/copyright.html Brezilya Portekizcesi Avrupa Portekizcesi Keçuvaca - Kiçece + Kiçece Chimborazo Highland Quichua Rajasthani Rapanui @@ -490,6 +491,7 @@ For terms of use, see http://www.unicode.org/copyright.html Scots Sindhi Sassari Sarduca + Güney Kürtçesi Kuzey Sami Seneca Sena @@ -532,8 +534,8 @@ For terms of use, see http://www.unicode.org/copyright.html Sümerce İsveççe Svahili + Kongo Svahili Komorca - Kongo Svahili Klasik Süryanice Süryanice Silezyaca @@ -600,6 +602,7 @@ For terms of use, see http://www.unicode.org/copyright.html Valamo Varay Vaşo + Warlpiri Volofça Wu Çincesi Kalmıkça @@ -836,7 +839,6 @@ For terms of use, see http://www.unicode.org/copyright.html Anguilla Arnavutluk Ermenistan - Hollanda Antilleri Angola Antarktika Arjantin @@ -887,7 +889,7 @@ For terms of use, see http://www.unicode.org/copyright.html Cape Verde Curaçao Christmas Adası - Güney Kıbrıs Rum Kesimi + Kıbrıs Çek Cumhuriyeti Almanya Diego Garcia @@ -1146,6 +1148,9 @@ For terms of use, see http://www.unicode.org/copyright.html Sayısal Sıralama Sıralama Gücü Para Birimi + Saat Sistemi (12 - 24) + lb + Ölçü Sistemi Rakamlar Saat Dilimi Yerel Varyant @@ -1153,114 +1158,124 @@ For terms of use, see http://www.unicode.org/copyright.html Özel Kullanım - Hint-Arap Rakamları - Genişletilmiş Hint-Arap Rakamları - Ermeni Rakamları - Küçük Harf Ermeni Rakamları - Bali Rakamları - Bengal Rakamları - Geleneksel Çince Sıralaması - Big5 - Brahmi Rakamları - Budist Takvimi - Chakma Rakamları - Cham Rakamları - Çin Takvimi - Kıpti Takvim - Dangi Takvimi - Devanagari Rakamları - Sözlük Sıralama Düzeni - Saptanmış Unicode Sıralaması - Avrupa Sıralama Kuralları - Ge’ez Rakamları - Etiyopik Takvim - Etiyopik Amete Alem Takvimi - Finansal Sayılar - Tam Genişlikte Rakamlar - Basitleştirilmiş Çince Sıralaması - GB2312 - Gürcü Rakamları - Miladi Takvim - Yunan Rakamları - Küçük Harf Yunan Rakamları - Gücerat Rakamları - Gurmukhi Rakamları - Çin Rakamları - Basitleştirilmiş Çin Rakamları - Finansal Basitleştirilmiş Çin Rakamları - Geleneksel Çin Rakamları - Finansal Geleneksel Çin Rakamları - İbrani Rakamları - Yahudi Takvimi - Tümünü Sıralama - Ulusal Hint Takvimi - Hicri Takvim - Arap Takvimi - Hicri Takvim (Suudi) - Hicri Takvim (Astronomik Evreler) - Hicri Takvim (Ümmü-l Kurra Takvimi) - ISO-8601 Takvimi - Japon Takvimi - Cava Rakamları - Japon Rakamları - Finansal Japon Rakamları - Kayah Li Rakamları - Kmer Rakamları - Kannada Rakamları - Tai Tham Hora Rakamları - Tai Tham Tham Rakamları - Lao Rakamları - Batı Rakamları - Lepça Rakamları - Limbu Rakamları - Önce Küçük Harfleri Sıralama - Malayalam Rakamları - Moğolca Rakamlar - Meetei Mayek Rakamları - Myanmar Rakamları - Myanmar Shan Rakamları - Yerel Rakamlar - N’Ko Rakamları - Aksanları Normal Olarak Sıralama - Normal Büyük/Küçük Harf Düzeninde Sıralama - Büyük/Küçük Harfe Duyarlı Olmadan Sıralama - Kana’yı Ayrı Sıralama - Normalleştirme Olmadan Sıralama - Rakamları Ayrı Sıralama - Sembolleri Sıralama - Ol Chiki Rakamları - Oriya Rakamları - İran Takvimi - Telefon Defteri Sıralaması - Fonetik Sıralama Düzeni - Basitleştirilmiş Çince Pinyin Sıralaması - Yalnızca Taban Harflerini Sıralama - Aksanları/Büyük-Küçük Harfleri/Genişliği/Kana’yı Sıralama - Yeni Sıralama Düzeni - Çin Cumhuriyeti Takvimi - Roma Rakamları - Küçük Harf Roma Rakamları - Genel Amaçlı Arama - Hangul İlk Sessiz Harfe Göre Arama - Aksanları Sıralama - Sembolleri Yoksayarak Sıralama - Standart Sıralama - Geleneksel Çince Vuruş Sıralaması - Geleneksel Tamil Rakamları - Tamil Rakamları - Telugu Rakamları - Aksanları/Büyük-Küçük Harfleri/Genişliği Sıralama - Tay Rakamları - Tibet Rakamları - Geleneksel Sıralama - Geleneksel Rakamlar - Radical-Stroke Sıralama Düzeni - Önce Büyük Harfleri Sıralama - Vai Rakamları - Aksanları Ters Sıralama - Büyük/Küçük Harfe Duyarla Sıralama - Kana’yı Farklı Sıralama - Unicode Normalleştirilmiş Olarak Sıralama - Rakamları Sayısal Olarak Sıralama - Zhuyin Sıralaması + Budist Takvimi + Çin Takvimi + Kıpti Takvim + Dangi Takvimi + Etiyopik Takvim + Etiyopik Amete Alem Takvimi + Miladi Takvim + Yahudi Takvimi + Ulusal Hint Takvimi + Hicri Takvim + Arap Takvimi + Hicri Takvim (Suudi) + Hicri Takvim (Astronomik Evreler) + Hicri Takvim (Ümmü-l Kurra Takvimi) + ISO-8601 Takvimi + Japon Takvimi + İran Takvimi + Çin Cumhuriyeti Takvimi + Sembolleri Sıralama + Sembolleri Yoksayarak Sıralama + Aksanları Normal Olarak Sıralama + Aksanları Ters Sıralama + Önce Küçük Harfleri Sıralama + Normal Büyük/Küçük Harf Düzeninde Sıralama + Önce Büyük Harfleri Sıralama + Büyük/Küçük Harfe Duyarlı Olmadan Sıralama + Büyük/Küçük Harfe Duyarla Sıralama + Kana’yı Ayrı Sıralama + Kana’yı Farklı Sıralama + Geleneksel Çince Sıralaması - Big5 + Sözlük Sıralama Düzeni + Saptanmış Unicode Sıralaması + Avrupa Sıralama Kuralları + Basitleştirilmiş Çince Sıralaması - GB2312 + Telefon Defteri Sıralaması + Fonetik Sıralama Düzeni + Basitleştirilmiş Çince Pinyin Sıralaması + Yeni Sıralama Düzeni + Genel Amaçlı Arama + Hangul İlk Sessiz Harfe Göre Arama + Standart Sıralama + Geleneksel Çince Vuruş Sıralaması + Geleneksel Sıralama + Radical-Stroke Sıralama Düzeni + Zhuyin Sıralaması + Normalleştirme Olmadan Sıralama + Unicode Normalleştirilmiş Olarak Sıralama + Rakamları Ayrı Sıralama + Rakamları Sayısal Olarak Sıralama + Tümünü Sıralama + Yalnızca Taban Harflerini Sıralama + Aksanları/Büyük-Küçük Harfleri/Genişliği/Kana’yı Sıralama + Aksanları Sıralama + Aksanları/Büyük-Küçük Harfleri/Genişliği Sıralama + 12 Saat Sistemi (0–11) + 12 Saat Sistemi (1–12) + 24 Saat Sistemi (0–23) + 24 Saat Sistemi (1–24) + loose + normal + strict + Metrik Sistem + İmperial Ölçü Sistemi + ABD Ölçü Sistemi + Hint-Arap Rakamları + Genişletilmiş Hint-Arap Rakamları + Ermeni Rakamları + Küçük Harf Ermeni Rakamları + Bali Rakamları + Bengal Rakamları + Brahmi Rakamları + Chakma Rakamları + Cham Rakamları + Devanagari Rakamları + Ge’ez Rakamları + Finansal Sayılar + Tam Genişlikte Rakamlar + Gürcü Rakamları + Yunan Rakamları + Küçük Harf Yunan Rakamları + Gücerat Rakamları + Gurmukhi Rakamları + Çin Rakamları + Basitleştirilmiş Çin Rakamları + Finansal Basitleştirilmiş Çin Rakamları + Geleneksel Çin Rakamları + Finansal Geleneksel Çin Rakamları + İbrani Rakamları + Cava Rakamları + Japon Rakamları + Finansal Japon Rakamları + Kayah Li Rakamları + Kmer Rakamları + Kannada Rakamları + Tai Tham Hora Rakamları + Tai Tham Tham Rakamları + Lao Rakamları + Batı Rakamları + Lepça Rakamları + Limbu Rakamları + Malayalam Rakamları + Moğolca Rakamlar + Meetei Mayek Rakamları + Myanmar Rakamları + Myanmar Shan Rakamları + Yerel Rakamlar + N’Ko Rakamları + Ol Chiki Rakamları + Oriya Rakamları + Roma Rakamları + Küçük Harf Roma Rakamları + Geleneksel Tamil Rakamları + Tamil Rakamları + Telugu Rakamları + Tay Rakamları + Tibet Rakamları + Geleneksel Rakamlar + Vai Rakamları BGN @@ -1407,6 +1422,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d E G y G MMM y @@ -1751,15 +1767,79 @@ For terms of use, see http://www.unicode.org/copyright.html - - öö - ö - ös - - + + gece yarısı ÖÖ öğle ÖS + sabah + öğleden önce + öğleden sonra + akşamüstü + akşam + gece + + + gece + öö + ö + ös + sabah + öğleden önce + öğleden sonra + akşamüstü + akşam + gece + + + gece yarısı + ÖÖ + öğle + ÖS + sabah + öğleden önce + öğleden sonra + akşamüstü + akşam + gece + + + + + gece yarısı + ÖÖ + öğle + ÖS + sabah + öğleden önce + öğleden sonra + akşamüstü + akşam + gece + + + gece yarısı + ÖÖ + öğle + ÖS + sabah + öğleden önce + öğleden sonra + akşamüstü + akşam + gece + + + gece yarısı + ÖÖ + öğle + ÖS + sabah + öğleden önce + öğleden sonra + akşamüstü + akşam + gece @@ -2078,9 +2158,6 @@ For terms of use, see http://www.unicode.org/copyright.html - @@ -2153,6 +2230,9 @@ For terms of use, see http://www.unicode.org/copyright.html yıl + geçen yıl + bu yıl + gelecek yıl {0} yıl sonra {0} yıl sonra @@ -2164,6 +2244,9 @@ For terms of use, see http://www.unicode.org/copyright.html yıl + geçen yıl + bu yıl + gelecek yıl {0} yıl sonra {0} yıl sonra @@ -2222,6 +2305,9 @@ For terms of use, see http://www.unicode.org/copyright.html ay + geçen ay + bu ay + gelecek ay {0} ay sonra {0} ay sonra @@ -2233,6 +2319,9 @@ For terms of use, see http://www.unicode.org/copyright.html ay + geçen ay + bu ay + gelecek ay {0} ay sonra {0} ay sonra @@ -2296,6 +2385,11 @@ For terms of use, see http://www.unicode.org/copyright.html gün + evvelsi gün + dün + bugün + yarın + öbür gün {0} gün sonra {0} gün sonra @@ -2307,6 +2401,11 @@ For terms of use, see http://www.unicode.org/copyright.html gün + evvelsi gün + dün + bugün + yarın + öbür gün {0} gün sonra {0} gün sonra @@ -3406,6 +3505,9 @@ For terms of use, see http://www.unicode.org/copyright.html Port Moresby + + Bougainville + Manila @@ -3490,6 +3592,9 @@ For terms of use, see http://www.unicode.org/copyright.html İrkutsk + + Chita + Yakutsk @@ -3508,6 +3613,9 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolymsk + Kamçatka @@ -3879,9 +3987,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Apia Saati - Apia Standart Saati - Apia Yaz Saati + Apia Saati + Apia Standart Saati + Apia Yaz Saati @@ -4123,7 +4231,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Daha Doğu Avrupa Saati + Daha Doğu Avrupa Saati @@ -4852,6 +4960,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤;(#,##0.00 ¤) + + + 0 B ¤ + 0 B ¤ + 00 B ¤ + 00 B ¤ + 000 B ¤ + 000 B ¤ + 0 Mn ¤ + 0 Mn ¤ + 00 Mn ¤ + 00 Mn ¤ + 000 Mn ¤ + 000 Mn ¤ + 0 Mr ¤ + 0 Mr ¤ + 00 Mr ¤ + 00 Mr ¤ + 000 Mr ¤ + 000 Mr ¤ + 0 Tn ¤ + 0 Tn ¤ + 00 Tn ¤ + 00 Tn ¤ + 000 Tn ¤ + 000 Tn ¤ + + {0} {1} {0} {1} @@ -4907,6 +5043,7 @@ For terms of use, see http://www.unicode.org/copyright.html Angola kvanzası Angola kvanzası AOA + Kz Angola Kvanzası (1977–1990) @@ -4990,6 +5127,7 @@ For terms of use, see http://www.unicode.org/copyright.html Konvertibl Bosna Hersek markı Konvertibl Bosna Hersek markı BAM + KM Yeni Bosna Hersek Dinarı (1994–1997) @@ -5084,6 +5222,7 @@ For terms of use, see http://www.unicode.org/copyright.html Bolivya bolivyanosu Bolivya bolivyanosu BOB + Bs Bolivya Bolivyanosu (1863–1963) @@ -5170,6 +5309,7 @@ For terms of use, see http://www.unicode.org/copyright.html Botsvana pulası Botsvana pulası BWP + P Yeni Beyaz Rusya Rublesi (1994–1999) @@ -5290,6 +5430,7 @@ For terms of use, see http://www.unicode.org/copyright.html Konvertibl Küba pesosu Konvertibl Küba pesosu CUC + $ Küba Pesosu @@ -5315,6 +5456,7 @@ For terms of use, see http://www.unicode.org/copyright.html Çek Cumhuriyeti korunası Çek Cumhuriyeti korunası CZK + Doğu Alman Markı @@ -5339,6 +5481,7 @@ For terms of use, see http://www.unicode.org/copyright.html Danimarka kronu Danimarka kronu DKK + kr Dominik Pesosu @@ -5376,6 +5519,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mısır lirası Mısır lirası EGP + Eritre Nakfası @@ -5433,6 +5577,7 @@ For terms of use, see http://www.unicode.org/copyright.html Falkland Adaları lirası Falkland Adaları lirası FKP + £ Fransız Frangı @@ -5458,6 +5603,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gürcistan larisi Gürcistan larisi GEL + Gana Sedisi (1979–2007) @@ -5486,6 +5632,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gine frangı Gine frangı GNF + FG Gine Sylisi @@ -5504,6 +5651,7 @@ For terms of use, see http://www.unicode.org/copyright.html Guatemala quetzalı Guatemala quetzalı GTQ + Q Portekiz Ginesi Esküdosu @@ -5530,6 +5678,7 @@ For terms of use, see http://www.unicode.org/copyright.html Honduras lempirası Honduras lempirası HNL + L Hırvatistan Dinarı @@ -5542,6 +5691,7 @@ For terms of use, see http://www.unicode.org/copyright.html Hırvatistan kunası Hırvatistan kunası HRK + kn Haiti Gurdu @@ -5554,12 +5704,14 @@ For terms of use, see http://www.unicode.org/copyright.html Macar forinti Macar forinti HUF + Ft Endonezya Rupiahı Endonezya rupiahı Endonezya rupiahı IDR + Rp İrlanda Lirası @@ -5614,6 +5766,7 @@ For terms of use, see http://www.unicode.org/copyright.html İzlanda kronu İzlanda kronu ISK + kr İtalyan Lireti @@ -5665,12 +5818,14 @@ For terms of use, see http://www.unicode.org/copyright.html Komorlar frangı Komorlar frangı KMF + CF Kuzey Kore Wonu Kuzey Kore wonu Kuzey Kore wonu KPW + Güney Kore Hwanı (1953–1962) @@ -5723,12 +5878,14 @@ For terms of use, see http://www.unicode.org/copyright.html Lübnan lirası Lübnan lirası LBP + Sri Lanka Rupisi Sri Lanka rupisi Sri Lanka rupisi LKR + Rs Liberya Doları @@ -5820,6 +5977,7 @@ For terms of use, see http://www.unicode.org/copyright.html Madagaskar ariarisi Madagaskar ariarisi MGA + Ar Madagaskar Frangı @@ -5844,6 +6002,7 @@ For terms of use, see http://www.unicode.org/copyright.html Myanmar kyatı Myanmar kyatı MMK + K Moğolistan Tugriki @@ -5881,6 +6040,7 @@ For terms of use, see http://www.unicode.org/copyright.html Mauritius rupisi Mauritius rupisi MUR + Rs Maldiv Rupisi @@ -5923,6 +6083,7 @@ For terms of use, see http://www.unicode.org/copyright.html Malezya ringgiti Malezya ringgiti MYR + RM Mozambik Esküdosu @@ -5961,6 +6122,7 @@ For terms of use, see http://www.unicode.org/copyright.html Nikaragua kordobası Nikaragua kordobası NIO + C$ Hollanda Florini @@ -5973,12 +6135,14 @@ For terms of use, see http://www.unicode.org/copyright.html Norveç kronu Norveç kronu NOK + kr Nepal Rupisi Nepal rupisi Nepal rupisi NPR + Rs Yeni Zelanda Doları @@ -6035,12 +6199,14 @@ For terms of use, see http://www.unicode.org/copyright.html Pakistan rupisi Pakistan rupisi PKR + Rs Polonya Zlotisi Polonya zlotisi Polonya zlotisi PLN + Polonya Zlotisi (1950–1995) @@ -6093,6 +6259,7 @@ For terms of use, see http://www.unicode.org/copyright.html Rus rublesi Rus rublesi RUB + Rus Rublesi (1991–1998) @@ -6106,6 +6273,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ruanda frangı Ruanda frangı RWF + RF Suudi Arabistan Riyali @@ -6143,6 +6311,7 @@ For terms of use, see http://www.unicode.org/copyright.html İsveç kronu İsveç kronu SEK + kr Singapur Doları @@ -6156,6 +6325,7 @@ For terms of use, see http://www.unicode.org/copyright.html Saint Helena lirası Saint Helena lirası SHP + £ Slovenya Toları @@ -6206,6 +6376,7 @@ For terms of use, see http://www.unicode.org/copyright.html São Tomé ve Príncipe dobrası São Tomé ve Príncipe dobrası STD + Db Sovyet Rublesi @@ -6224,6 +6395,7 @@ For terms of use, see http://www.unicode.org/copyright.html Suriye lirası Suriye lirası SYP + £ Svaziland Lilangenisi @@ -6236,6 +6408,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tayland bahtı Tayland bahtı ฿ + ฿ Tacikistan Rublesi @@ -6272,6 +6445,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tonga paʻangası Tonga paʻangası TOP + T$ Timor Esküdosu @@ -6292,6 +6466,7 @@ For terms of use, see http://www.unicode.org/copyright.html Türk lirası + TL Trinidad ve Tobago Doları @@ -6390,6 +6565,7 @@ For terms of use, see http://www.unicode.org/copyright.html Venezuela bolivarı Venezuela bolivarı VEF + Bs Vietnam Dongu @@ -6451,6 +6627,7 @@ For terms of use, see http://www.unicode.org/copyright.html Doğu Karayip doları Doğu Karayip doları EC$ + $ Özel Çekme Hakkı (SDR) @@ -6559,6 +6736,7 @@ For terms of use, see http://www.unicode.org/copyright.html Güney Afrika randı Güney Afrika randı ZAR + R Zambiya Kvaçası (1968–2012) @@ -6568,6 +6746,7 @@ For terms of use, see http://www.unicode.org/copyright.html Zambiya kvaçası Zambiya kvaçası ZMW + ZK Yeni Zaire Zairesi @@ -6608,6 +6787,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} metre/saniye² {0} metre/saniye² + + devir + {0} devir + {0} devir + + + radyan + {0} radyan + {0} radyan + + + derece + {0} derece + {0} derece + açısal dakika {0} açısal dakika @@ -6618,30 +6812,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} açısal saniye {0} açısal saniye - - derece - {0} derece - {0} derece - - - radyan - {0} radyan - {0} radyan - - - akre - {0} akre - {0} akre + + kilometrekare + {0} kilometrekare + {0} kilometrekare hektar {0} hektar {0} hektar + + metrekare + {0} metrekare + {0} metrekare + {0}/metrekare + santimetrekare {0} santimetrekare {0} santimetrekare + {0}/santimetrekare + + + mil kare + {0} mil kare + {0} mil kare + + + akre + {0} akre + {0} akre + + + yarda kare + {0} yarda kare + {0} yarda kare fit kare @@ -6649,94 +6855,109 @@ For terms of use, see http://www.unicode.org/copyright.html {0} fit kare - inç kare - {0} inç kare - {0} inç kare + inç kare + {0} inç kare + {0} inç kare + {0}/in² - - kilometrekare - {0} kilometrekare - {0} kilometrekare - - - metrekare - {0} metrekare - {0} metrekare - - - mil kare - {0} mil kare - {0} mil kare - - - yarda kare - {0} yarda kare - {0} yarda kare + + ayar + {0} ayar + {0} ayar - litre/kilometre + litre/kilometre {0} litre/kilometre {0} litre/kilometre + + litre/100 kilometre + {0} litre/100 kilometre + {0} litre/100 kilometre + mil/galon {0} mil/galon {0} mil/galon - - bit - {0} bit - {0} bit - - - bayt - {0} bayt - {0} bayt - - - gigabit - {0} gigabit - {0} gigabit - - - gigabayt - {0} gigabayt - {0} gigabayt - - - kilobit - {0} kilobit - {0} kilobit - - - kilobayt - {0} kilobayt - {0} kilobyte - - - megabit - {0} megabit - {0} megabit - - - megabayt - {0} megabayt - {0} megabayt + + terabayt + {0} terabayt + {0} terabayt terabit {0} terabit {0} terabit - - terabayt - {0} terabayt - {0} terabayt + + gigabayt + {0} gigabayt + {0} gigabayt + + + gigabit + {0} gigabit + {0} gigabit + + + megabayt + {0} megabayt + {0} megabayt + + + megabit + {0} megabit + {0} megabit + + + kilobayt + {0} kilobayt + {0} kilobyte + + + kilobit + {0} kilobit + {0} kilobit + + + bayt + {0} bayt + {0} bayt + + + bit + {0} bit + {0} bit + + + yüzyıl + {0} yüzyıl + {0} yüzyıl + + + yıl + {0} yıl + {0} yıl + {0}/yıl + + + ay + {0} ay + {0} ay + {0}/ay + + + hafta + {0} hafta + {0} hafta + {0}/hafta gün {0} gün {0} gün + {0}/gün saat @@ -6744,30 +6965,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} saat {0}/saat - - mikrosaniye - {0} mikrosaniye - {0} mikrosaniye - - - milisaniye - {0} milisaniye - {0} milisaniye - dakika {0} dakika {0} dakika - - - ay - {0} ay - {0} ay - - - nanosaniye - {0} nanosaniye - {0} nanosaniye + {0}/dakika saniye @@ -6775,15 +6977,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} saniye {0}/saniye - - hafta - {0} hafta - {0} hafta + + milisaniye + {0} milisaniye + {0} milisaniye - - yıl - {0} yıl - {0} yıl + + mikrosaniye + {0} mikrosaniye + {0} mikrosaniye + + + nanosaniye + {0} nanosaniye + {0} nanosaniye amper @@ -6805,6 +7012,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volt + + kilokalori + {0} kilokalori + {0} kilokalori + kalori {0} kalori @@ -6815,21 +7027,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kilokalori {0} kilokalori - - jul - {0} jul - {0} jul - - - kilokalori - {0} kilokalori - {0} kilokalori - kilojul {0} kilojul {0} kilojul + + jul + {0} jul + {0} jul + kilovatsaat {0} kilovatsaat @@ -6840,216 +7047,220 @@ For terms of use, see http://www.unicode.org/copyright.html {0} gigahertz {0} gigahertz - - hertz - {0} hertz - {0} hertz + + megahertz + {0} megahertz + {0} megahertz kilohertz {0} kilohertz {0} kilohertz - - megahertz - {0} megahertz - {0} megahertz + + hertz + {0} hertz + {0} hertz - - astronomik birim - {0} astronomik birim - {0} astronomik birim + + kilometre + {0} kilometre + {0} kilometre + {0}/kilometre - - santimetre - {0} santimetre - {0} santimetre + + metre + {0} metre + {0} metre + {0}/metre desimetre {0} desimetre {0} desimetre - - fathom - {0} fathom - {0} fathom + + santimetre + {0} santimetre + {0} santimetre + {0}/santimetre + + + milimetre + {0} milimetre + {0} milimetre + + + mikrometre + {0} mikrometre + {0} mikrometre + + + nanometre + {0} nanometre + {0} nanometre + + + pikometre + {0} pikometre + {0} pikometre + + + mil + {0} mil + {0} mil + + + yarda + {0} yarda + {0} yarda fit {0} fit {0} fit - - - furlong - {0} furlong - {0} furlong + {0}/fit inç {0} inç {0} inç + {0}/inç - - kilometre - {0} kilometre - {0} kilometre + + parsek + {0} parsek + {0} parsek ışık yılı {0} ışık yılı {0} ışık yılı - - metre - {0} metre - {0} metre + + astronomik birim + {0} astronomik birim + {0} astronomik birim - - mikrometre - {0} mikrometre - {0} mikrometre + + furlong + {0} furlong + {0} furlong - - mil - {0} mil - {0} mil - - - milimetre - {0} milimetre - {0} milimetre - - - nanometre - {0} nanometre - {0} nanometre + + fathom + {0} fathom + {0} fathom - deniz mili - {0} deniz mili - {0} deniz mili + deniz mili + {0} deniz mili + {0} deniz mili - - parsek - {0} parsek - {0} parsek - - - pikometre - {0} pikometre - {0} pikometre - - - yarda - {0} yarda - {0} yarda + + smi + {0} smi + {0} smi lüks {0} lüks {0} lüks - - karat - {0} karat - {0} karat - - - gram - {0} gram - {0} gram - - - kilogram - {0} kilogram - {0} kilogram - ton {0} ton {0} ton - - mikrogram - {0} mikrogram - {0} mikrogram + + kilogram + {0} kilogram + {0} kilogram + {0}/kg + + + gram + {0} gram + {0} gram + {0}/gram miligram {0} miligram {0} miligram - - ons - {0} ons - {0} ons - - - troy ons - {0} troy ons - {0} troy ons - - - libre - {0} libre - {0} libre - - - stone - {0} stone - {0} stone + + mikrogram + {0} mikrogram + {0} mikrogram Amerikan tonu {0} Amerikan tonu {0} Amerikan tonu + + stone + {0} stone + {0} stone + + + libre + {0} libre + {0} libre + {0}/libre + + + ons + {0} ons + {0} ons + {0}/oz + + + troy ons + {0} troy ons + {0} troy ons + + + karat + {0} karat + {0} karat + gigavat {0} gigavat {0} gigavat - - beygir gücü - {0} beygir gücü - {0} beygir gücü - - - kilovat - {0} kilovat - {0} kilovat - megavat {0} megavat {0} megavat - - milivat - {0} milivat - {0} milivat + + kilovat + {0} kilovat + {0} kilovat vat {0} vat {0} vat + + milivat + {0} milivat + {0} milivat + + + beygir gücü + {0} beygir gücü + {0} beygir gücü + hektopaskal {0} hektopaskal {0} hektopaskal - - inç cıva - {0} inç cıva - {0} inç cıva - - - milibar - {0} milibar - {0} milibar - milimetre cıva {0} milimetre cıva @@ -7060,10 +7271,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} libre/inç kare {0} libre/inç kare - - ayar - {0} ayar - {0} ayar + + inç cıva + {0} inç cıva + {0} inç cıva + + + milibar + {0} milibar + {0} milibar kilometre/saat @@ -7080,6 +7296,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mil/saat {0} mil/saat + + knot + {0} knot + {0} knot + + + ° + {0}° + {0}° + santigrat derece {0} santigrat derece @@ -7095,45 +7321,22 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kelvin {0} kelvin - - akre fit - {0} akre fit - {0} akre fit - - - buşel - {0} buşel - {0} buşel - - - santilitre - {0} santilitre - {0} santilitre - - - santimetreküp - {0} santimetreküp - {0} santimetreküp - - - fit küp - {0} fit küp - {0} fit küp - - - inç küp - {0} inç küp - {0} inç küp - - kilometre küp - {0} kilometre küp - {0} kilometre küp + kilometreküp + {0} kilometreküp + {0} kilometreküp metreküp {0} metreküp {0} metreküp + {0}/metreküp + + + santimetreküp + {0} santimetreküp + {0} santimetreküp + {0} /santimetreküp mil küp @@ -7145,25 +7348,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yarda küp {0} yarda küp - - su bardağı - {0} su bardağı - {0} su bardağı + + fit küp + {0} fit küp + {0} fit küp - - desilitre - {0} desilitre - {0} desilitre + + inç küp + {0} inç küp + {0} inç küp - - sıvı ons - {0} sıvı ons - {0} sıvı ons - - - galon - {0} galon - {0} galon + + megalitre + {0} megalitre + {0} megalitre hektolitre @@ -7174,37 +7372,85 @@ For terms of use, see http://www.unicode.org/copyright.html litre {0} litre {0} litre + {0}/litre - - megalitre - {0} megalitre - {0} megalitre + + desilitre + {0} desilitre + {0} desilitre + + + santilitre + {0} santilitre + {0} santilitre mililitre {0} mililitre {0} mililitre - - pint - {0} pint - {0} pint + + mpt + {0} metrik pint + {0} metrik pint + + + mcup + {0} mc + {0} mc + + + akre fit + {0} akre fit + {0} akre fit + + + buşel + {0} buşel + {0} buşel + + + galon + {0} galon + {0} galon + {0}/galon quart {0} quart {0} quart + + pint + {0} pint + {0} pint + + + su bardağı + {0} su bardağı + {0} su bardağı + + + sıvı ons + {0} sıvı ons + {0} sıvı ons + yemek kaşığı {0} yemek kaşığı {0} yemek kaşığı - çay kaşığı - {0} çay kaşığı - {0} çay kaşığı + tatlı kaşığı + {0} tatlı kaşığı + {0} tatlı kaşığı + + {0}Doğu + {0}Kuzey + {0}Güney + {0}Batı + @@ -7220,6 +7466,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/sn² {0} m/sn² + + dev + {0} dev + {0} dev + + + radyan + {0} rad + {0} rad + + + derece + {0}° + {0}° + dakika {0} dk. @@ -7230,30 +7491,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sn. {0} sn. - - derece - {0}° - {0}° - - - radyan - {0} rad - {0} rad - - - akre - {0} ac - {0} ac + + km² + {0} km² + {0} km² hektar {0} ha {0} ha + + + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + + + akre + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² ft² @@ -7261,94 +7534,109 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ft² - in² - {0} in² - {0} in² + in² + {0} in² + {0} in² + {0}/in² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² + + ayar + {0} ayar + {0} ayar l/km {0} l/km {0} l/km + + L/100km + {0} L/100km + {0} L/100km + mil/galon {0} mpg {0} mpg - - bit - {0} bit - {0} bit - - - bayt - {0} bayt - {0} bayt - - - Gbit - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kbit - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mbit - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tbit - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tbit + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gbit + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mbit + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kbit + {0} kb + {0} kb + + + bayt + {0} bayt + {0} bayt + + + bit + {0} bit + {0} bit + + + yy + {0} yy + {0} yy + + + yıl + {0} yıl + {0} yıl + {0}/y + + + ay + {0} ay + {0} ay + {0}/ay + + + hafta + {0} hf. + {0} hf. + {0}/hf. + gün {0} gün {0} gün + {0}/gün saat @@ -7356,30 +7644,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sa. {0}/sa - - μsn - {0} μsn - {0} μsn - - - milisaniye - {0} msn - {0} msn - dakika {0} dk. {0} dk. - - - ay - {0} ay - {0} ay - - - nanosaniye - {0} nsn - {0} nsn + {0}/dk. saniye @@ -7387,15 +7656,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} sn. {0}/sn - - hafta - {0} hf. - {0} hf. + + milisaniye + {0} msn + {0} msn - - yıl - {0} yıl - {0} yıl + + μsn + {0} μsn + {0} μsn + + + nanosaniye + {0} nsn + {0} nsn amper @@ -7417,6 +7691,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -7427,21 +7706,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kcal {0} kcal - - jul - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + jul + {0} J + {0} J + kWh {0} kWh @@ -7452,216 +7726,220 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - AU - {0} AU - {0} AU + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + metre + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - fathom - {0} fm - {0} fm + + cm + {0} cm + {0} cm + {0}/cm + + + mm + {0} mm + {0} mm + + + mikron + {0} µm + {0} µm + + + nm + {0} nm + {0} nm + + + pm + {0} pm + {0} pm + + + mil + {0} mil + {0} mil + + + yarda + {0} yd + {0} yd fit {0} fit {0} fit - - - furlong - {0} fur - {0} fur + {0}/ft inç {0} inç {0} inç + {0}/in - - km - {0} km - {0} km + + parsek + {0} pc + {0} pc ışık yılı {0} IY {0} IY - - metre - {0} m - {0} m + + AU + {0} AU + {0} AU - - mikron - {0} µm - {0} µm + + furlong + {0} fur + {0} fur - - mil - {0} mil - {0} mil - - - mm - {0} mm - {0} mm - - - nm - {0} nm - {0} nm + + fathom + {0} fm + {0} fm - nmi - {0} nmi - {0} nmi + nmi + {0} nmi + {0} nmi - - parsek - {0} pc - {0} pc - - - pm - {0} pm - {0} pm - - - yarda - {0} yd - {0} yd + + smi + {0} smi + {0} smi lüks {0} lüks {0} lüks - - karat - {0} ct - {0} ct - - - gram - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + gram + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - ons - {0} oz - {0} oz - - - troy ons - {0} oz t - {0} oz t - - - libre - {0} lb - {0} lb - - - stone - {0} st - {0} st + + µg + {0} µg + {0} µg Amerikan tonu {0} kısa ton {0} kısa ton + + stone + {0} st + {0} st + + + libre + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0}/oz + + + troy ons + {0} oz t + {0} oz t + + + karat + {0} ct + {0} ct + GW {0} GW {0} GW - - bg - {0} bg - {0} bg - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW vat {0} W {0} W + + mW + {0} mW + {0} mW + + + bg + {0} bg + {0} bg + hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -7672,10 +7950,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lb/in² {0} lb/in² - - ayar - {0} ayar - {0} ayar + + inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar km/sa @@ -7692,6 +7975,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mil/sa {0} mil/sa + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + °C {0}°C @@ -7707,36 +8000,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}K {0}K - - akre fit - {0} akre fit - {0} akre fit - - - buşel - {0} bu - {0} bu - - - cl - {0} cl - {0} cl - - - cm³ - {0} cm³ - {0} cm³ - - - fit³ - {0} fit³ - {0} fit³ - - - inç³ - {0} inç³ - {0} inç³ - km³ {0} km³ @@ -7746,6 +8009,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mil³ @@ -7757,25 +8027,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yarda³ {0} yarda³ - - su b. - {0} sb - {0} sb + + fit³ + {0} fit³ + {0} fit³ - - dl - {0} dl - {0} dl + + inç³ + {0} inç³ + {0} inç³ - - sıvı ons - {0} sıvı ons - {0} sıvı ons - - - galon - {0} galon - {0} galon + + Ml + {0} Ml + {0} Ml hl @@ -7786,37 +8051,85 @@ For terms of use, see http://www.unicode.org/copyright.html litre {0} l {0} l + {0}/l - - Ml - {0} Ml - {0} Ml + + dl + {0} dl + {0} dl + + + cl + {0} cl + {0} cl ml {0} ml {0} ml - - pint - {0} pint - {0} pint + + mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + akre fit + {0} akre fit + {0} akre fit + + + buşel + {0} bu + {0} bu + + + galon + {0} galon + {0} galon + {0}/gal quart {0} quart {0} quart + + pint + {0} pint + {0} pint + + + su b. + {0} sb + {0} sb + + + sıvı ons + {0} sıvı ons + {0} sıvı ons + yk {0} yk {0} yk - çk - {0} çk - {0} çk + tk + {0} tk + {0} tk + + {0}D + {0}K + {0}G + {0}B + @@ -7830,6 +8143,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/sn² {0} m/sn² + + {0} rad + {0} rad + + + {0}° + {0}° + {0}′ {0}′ @@ -7838,26 +8159,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} rad - {0} rad - - - {0} ac - {0} ac + + {0} km² + {0} km² {0} ha {0} ha + + {0} m² + {0} m² + {0} cm² {0} cm² + + {0} mi² + {0} mi² + + + {0} ac + {0} ac + + + {0} yd² + {0} yd² + {0} ft² {0} ft² @@ -7866,69 +8195,77 @@ For terms of use, see http://www.unicode.org/copyright.html {0} in² {0} in² - - {0} km² - {0} km² - - - {0} m² - {0} m² - - - {0} mi² - {0} mi² - - - {0} yd² - {0} yd² + + {0} ayar + {0} ayar {0} l/km {0} l/km + + L/100km + {0} L/100km + {0} L/100km + {0} mpg {0} mpg - - {0} bit - {0} bit - - - {0} byte - {0} byte - - - {0} Gb - {0} Gb - - - {0} GB - {0} GB - - - {0} kb - {0} kb - - - {0} kB - {0} kB - - - {0} Mb - {0} Mb - - - {0} MB - {0} MB + + {0} TB + {0} TB {0} Tb {0} Tb - - {0} TB - {0} TB + + {0} GB + {0} GB + + + {0} Gb + {0} Gb + + + {0} MB + {0} MB + + + {0} Mb + {0} Mb + + + {0} kB + {0} kB + + + {0} kb + {0} kb + + + {0} byte + {0} byte + + + {0} bit + {0} bit + + + yıl + {0}y + {0}y + + + ay + {0}a + {0}a + + + hafta + {0}h + {0}h gün @@ -7937,46 +8274,31 @@ For terms of use, see http://www.unicode.org/copyright.html saat - {0}s + {0} sa {0}s - - {0} μsn - {0} μsn - - - msn - {0}msn - {0}msn - dakika {0}d {0}d - - ay - {0}a - {0}a - - - {0} nsn - {0} nsn - saniye {0}sn {0}sn - - hafta - {0}h - {0}h + + msn + {0}msn + {0}msn - - yıl - {0}y - {0}y + + {0} μsn + {0} μsn + + + {0} nsn + {0} nsn {0} A @@ -7994,6 +8316,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + {0} kcal + {0} kcal + {0} cal {0} cal @@ -8002,18 +8328,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kcal {0} kcal - - {0} J - {0} J - - - {0} kcal - {0} kcal - {0} kJ {0} kJ + + {0} J + {0} J + {0} kWh {0} kWh @@ -8022,125 +8344,134 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - {0} Hz - {0} Hz + + {0} MHz + {0} MHz {0} kHz {0} kHz - - {0} MHz - {0} MHz - - - {0} AU - {0} AU - - - cm - {0} cm - {0} cm - - - {0} dm - {0} dm - - - fathom - {0} fm - {0} fm - - - {0}′ - {0}′ - - - furlong - {0} fur - {0} fur - - - {0}″ - {0}″ + + {0} Hz + {0} Hz km {0} km {0} km - - {0} IY - {0} IY - metre - {0} m - {0} m + {0} m + {0} m + + + {0} dm + {0} dm + + + cm + {0} cm + {0} cm + + + mm + {0} mm + {0} mm {0} µm {0} µm - - {0} mil - {0} mil - - - mm - {0} mm - {0} mm - {0} nm {0} nm - - {0} nmi - {0} nmi - - - {0} pc - {0} pc - {0} pm {0} pm + + {0} mil + {0} mil + {0} yd {0} yd + + {0}′ + {0}′ + + + {0}″ + {0}″ + + + {0} pc + {0} pc + + + {0} IY + {0} IY + + + {0} AU + {0} AU + + + furlong + {0} fur + {0} fur + + + fathom + {0} fm + {0} fm + + + {0} nmi + {0} nmi + {0} lüks {0} lüks - - {0} ct - {0} ct - - - gram - {0} g - {0} g + + {0} t + {0} t kg {0} kg {0} kg - - {0} t - {0} t + + gram + {0} g + {0} g + + + {0} mg + {0} mg {0} µg {0} µg - - {0} mg - {0} mg + + {0} kısa ton + {0} kısa ton + + + stone + {0} st + {0} st + + + {0} lb + {0} lb {0} oz @@ -8150,55 +8481,38 @@ For terms of use, see http://www.unicode.org/copyright.html {0} oz t {0} oz t - - {0} lb - {0} lb - - - stone - {0} st - {0} st - - - {0} kısa ton - {0} kısa ton + + {0} ct + {0} ct {0} GW {0} GW - - {0} hp - {0} hp + + {0} MW + {0} MW {0} kW {0} kW - - {0} MW - {0} MW + + {0} W + {0} W {0} mW {0} mW - - {0} W - {0} W + + {0} hp + {0} hp {0} hPa {0} hPa - - {0}" Hg - {0}" Hg - - - {0} mb - {0} mb - {0} mm Hg {0} mm Hg @@ -8207,9 +8521,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} lb/in² {0} lb/in² - - {0} ayar - {0} ayar + + {0}" Hg + {0}" Hg + + + {0} mb + {0} mb km/sa @@ -8237,31 +8555,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}°K {0}°K - - {0} akre fit - {0} akre fit - - - buşel - {0} bu - {0} bu - - - {0} cl - {0} cl - - - {0} cm³ - {0} cm³ - - - {0} fit³ - {0} fit³ - - - {0} inç³ - {0} inç³ - {0} km³ {0} km³ @@ -8270,6 +8563,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + + {0} cm³ + {0} cm³ + {0} mi³ {0} mi³ @@ -8278,21 +8575,17 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yarda³ {0} yarda³ - - {0} sb - {0} sb + + {0} fit³ + {0} fit³ - - {0} dl - {0} dl + + {0} inç³ + {0} inç³ - - {0} sıvı ons - {0} sıvı ons - - - {0} galon - {0} galon + + {0} Ml + {0} Ml {0} hl @@ -8303,22 +8596,47 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l - - {0} Ml - {0} Ml + + {0} dl + {0} dl + + + {0} cl + {0} cl {0} ml {0} ml - - {0} pint - {0} pint + + {0} akre fit + {0} akre fit + + + buşel + {0} bu + {0} bu + + + {0} galon + {0} galon {0} quart {0} quart + + {0} pint + {0} pint + + + {0} sb + {0} sb + + + {0} sıvı ons + {0} sıvı ons + {0} yk {0} yk @@ -8327,6 +8645,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} çk {0} çk + + {0}D + {0}K + {0}G + {0}B + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tr_CY.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tr_CY.xml new file mode 100644 index 00000000000..dc3f0df9904 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tr_CY.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + h:mm:ss a zzzz + + + + + h:mm:ss a z + + + + + h:mm:ss a + + + + + h:mm a + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/tr_TR.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tr_TR.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/tr_TR.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tr_TR.xml index 8752d37c4a3..f74f0576569 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/tr_TR.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tr_TR.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/twq.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/twq.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/twq.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/twq.xml index febc368ca00..c50132207f6 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/twq.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/twq.xml @@ -1,13 +1,12 @@ - - - + @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angiiya Albaani Armeeni - Hollandu Antiiyey Laboo Angoola Argentine Ameriki Samoa @@ -449,6 +447,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Subbaahi + Zaarikay b + Subbaahi Zaarikay b @@ -598,6 +600,22 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤ + + + 0K¤ + 00K¤ + 000K¤ + 0M¤ + 00M¤ + 000M¤ + 0G¤ + 00G¤ + 000G¤ + 0T¤ + 00T¤ + 000T¤ + + @@ -777,3 +795,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/twq_NE.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/twq_NE.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/twq_NE.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/twq_NE.xml index ccf4826caa3..2d5fbd5cb7f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/twq_NE.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/twq_NE.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/tzm.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tzm.xml similarity index 91% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/tzm.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tzm.xml index 43e2b754930..29c246ab47f 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/tzm.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tzm.xml @@ -1,13 +1,12 @@ - - - + @@ -50,7 +49,7 @@ For terms of use, see http://www.unicode.org/copyright.html Tatamilt Taṭayt Taturkit - Tamaziɣt + Tamaziɣt n laṭlaṣ Tukranit Turdut Taviṭnamit @@ -66,7 +65,6 @@ For terms of use, see http://www.unicode.org/copyright.html Angwilla Albanya Arminya - Antil Tihulanḍiyyin Angula Arjuntin Samwa Imirikaniyyin @@ -448,6 +446,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Zdat azal + Ḍeffir aza + Zdat azal Ḍeffir aza @@ -486,28 +488,6 @@ For terms of use, see http://www.unicode.org/copyright.html - - - - h:mm:ss a zzzz - - - - - h:mm:ss a z - - - - - h:mm:ss a - - - - - h:mm a - - - d @@ -585,6 +565,34 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00 ¤ + + + 0K ¤ + 0K ¤ + 00K ¤ + 00K ¤ + 000K ¤ + 000K ¤ + 0M ¤ + 0M ¤ + 00M ¤ + 00M ¤ + 000M ¤ + 000M ¤ + 0G ¤ + 0G ¤ + 00G ¤ + 00G ¤ + 000G ¤ + 000G ¤ + 0T ¤ + 0T ¤ + 00T ¤ + 00T ¤ + 000T ¤ + 000T ¤ + + @@ -764,3 +772,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/tzm_Latn_MA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tzm_MA.xml similarity index 65% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/tzm_Latn_MA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tzm_MA.xml index 49375040a1b..10aec7fb7e8 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/tzm_Latn_MA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/tzm_MA.xml @@ -1,15 +1,14 @@ - - - + - - + + @@ -535,14 +557,14 @@ For terms of use, see http://www.unicode.org/copyright.html - + - + @@ -564,7 +586,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -591,12 +613,13 @@ For terms of use, see http://www.unicode.org/copyright.html - + + @@ -620,7 +643,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -641,6 +664,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -651,12 +675,12 @@ For terms of use, see http://www.unicode.org/copyright.html - + - - + + @@ -665,7 +689,7 @@ For terms of use, see http://www.unicode.org/copyright.html Світ Африка - Північноамериканський континент + Північна Америка Південна Америка Океанія Західна Африка @@ -675,13 +699,13 @@ For terms of use, see http://www.unicode.org/copyright.html Центральна Африка Південна Африка Америка - Північна Америка + Північна Америка (регіон) Карибський басейн Східна Азія Південна Азія Південно-Східна Азія Південна Європа - Австралія та Нова Зеландія + Австралазія Меланезія Мікронезійський регіон Полінезія @@ -701,7 +725,6 @@ For terms of use, see http://www.unicode.org/copyright.html Ангілья Албанія Вірменія - Нідерландські Антильські Острови Ангола Антарктика Аргентина @@ -721,12 +744,12 @@ For terms of use, see http://www.unicode.org/copyright.html Бурунді Бенін Сен-Бартельмі - Бермуди + Бермудські острови Бруней Болівія Нідерландські Карибські острови Бразилія - Багами + Багамські Острови Бутан Острів Буве Ботсвана @@ -855,7 +878,7 @@ For terms of use, see http://www.unicode.org/copyright.html Малі Мʼянма (Бірма) Монголія - Макао О.А.Р. Китаю + Макао, О.А.Р Китаю Макао Північні Маріанські острови Мартиніка @@ -932,7 +955,8 @@ For terms of use, see http://www.unicode.org/copyright.html Таїланд Таджикистан Токелау - Східний Тимор + Тимор-Лешті + Східний Тимор Туркменістан Туніс Тонга @@ -960,7 +984,7 @@ For terms of use, see http://www.unicode.org/copyright.html Косово Ємен Майотта - ПАР + Південно-Африканська Республіка Замбія Зімбабве Невідомий регіон @@ -1001,113 +1025,130 @@ For terms of use, see http://www.unicode.org/copyright.html Романізація Вейда-Джайлза - Календар - Ігнорувати сортування за символами - Зворотне сортування за діактричними знаками - Упорядкування за великими/малими символами - Сортування з урахуванням регістру - Сортування кана - Порядок сортування - Уніфіковане сортування - Цифрове сортування - Інтенсивність сортування - Валюта - Цифри - Часовий пояс - Варіант мовного коду - Сортувати як символи - Особисте використання + календар + ігнорувати сортування за символами + зворотне сортування за діакритичними знаками + порядок верхнього/нижнього регістру + сортування з урахуванням регістру + сортування кана + порядок сортування + уніфіковане сортування + цифрове сортування + інтенсивність сортування + валюта + формат часу (12 або 24 години) + стиль розриву рядка + система вимірювання + цифри + часовий пояс + варіант мовного коду + сортувати як символи + особисте використання - Арабсько-індійські цифри - Арабсько-індійські розширені цифри - Вірменські цифри - Вірменські малі цифри - Бенгальські цифри - Китайський традиційний - Буддійський календар - Китайський календар - Коптський календар - Календар Дангі - Цифри деванагарі - Порядок сортування: за словником - Порядок сортування: Unicode за умовчанням - Ефіопські цифри - Ефіопський календар - Ефіопський Амете Алем календар - Фінансові символи чисел - Цифри повної ширини - Китайський спрощений - Грузинські цифри - Григоріанський календар - Грецькі цифри - Грецькі малі цифри - Цифри гуджараті - Цифри гурмукхі - Китайські десяткові цифри - Китайські символи чисел (спрощене письмо) - Китайські фінансові символи чисел (спрощене письмо) - Китайські символи чисел (традиційне письмо) - Китайські фінансові символи чисел (традиційне письмо) - Цифри івриту - Єврейський календар - Сортувати всі - Індійський світський календар - Мусульманський календар - Мусульманський світський календар - Календар ISO-8601 - Японський календар - Японські цифри - Японські фінансові цифри - Кхмерські цифри - Цифри каннада - Лаоські цифри - Західні цифри - Сортувати спершу за малими символами - Малаяламські цифри - Монгольські цифри - М’янмські цифри - Місцеві цифри - Сортувати за діактричними знаками уніфіковано - Сортувати в порядку звичайного регістру - Сортувати без урахування регістру - Сортувати за кана окремо - Сортувати без уніфікації - Сортувати за цифрами окремо - Сортувати за символами - Цифри орія - Перський календар - Телефонна книга - Фонетичний порядок сортування - Порядок піньїн - Сортувати лише за основними літерами - Сортувати за діактричними знаками/регістром/шириною/кана - Порядок сортування: за виправленнями - Китайський григоріанський календар - Римські цифри - Римські малі цифри - Універсальний пошук - Пошук за початковою приголосною хангул - Сортувати за діактричними знаками - Сортувати, ігноруючи символи - Стандартний порядок сортування - Порядок натискання клавіш - Тамільські традиційні цифри - Тамільські цифри - Цифри телугу - Сортувати за діактричними знаками/регістром/шириною - Тайські цифри - Тибетські цифри - Традиційний - Традиційні символи чисел - Порядок сортування: за штрихами в корені - Сортувати спершу за великими символами - Цифри ваї - Сортувати за діактричними знаками у зворотньому порядку - Сортувати з урахуванням регістру - Сортувати за кана інакше - Сортувати за Unicode уніфіковано - Сортувати за цифрами чисельно + буддійський календар + китайський календар + коптський календар + календар дангі + ефіопський календар + ефіопський амете алем календар + григоріанський календар + єврейський календар + індійський світський календар + мусульманський календар + мусульманський світський календар + календар ISO-8601 + японський календар + перський календар + китайський григоріанський календар + сортувати за символами + сортувати, ігноруючи символи + сортувати за діакритичними знаками уніфіковано + сортувати за діактричними знаками у зворотньому порядку + сортувати нижній регістр наперед + сортувати в порядку звичайного регістру + сортувати спершу за великими символами + сортувати без урахування регістру + сортувати з урахуванням регістру + сортувати кана окремо + сортувати за кана інакше + китайський традиційний порядок сортування Big5 + попередній порядок сортування, для сумісності + порядок сортування за словником + типовий порядок сортування Unicode + порядок сортування за емодзі + європейські правила упорядкування + китайський спрощений + порядок сортування за телефонним довідником + фонетичний порядок сортування + порядок сортування піньїнь + реформований порядок сортування + універсальний пошук + пошук за початковою приголосною хангул + стандартний порядок сортування + порядок сортування за рисками + традиційний порядок сортування + порядок сортування за ключами ієрогліфів + порядок сортування чжуїнь + сортувати без уніфікації + сортувати за Unicode уніфіковано + сортувати цифри окремо + сортувати за цифрами чисельно + сортувати всі + сортувати лише за основними літерами + сортувати за діактричними знаками/регістром/шириною/кана + сортувати за діактричними знаками + сортувати за діактричними знаками/регістром/шириною + 12-годинний формат (0–11) + 12-годинний формат (1–12) + 24-годинний формат (0–23) + 24-годинний формат (1–24) + вільний стиль розриву рядка + типовий стиль розриву рядка + строгий стиль розриву рядка + мертична система + англійська система мір + американська система мір + арабсько-індійські цифри + арабсько-індійські розширені цифри + вірменські цифри + вірменські малі цифри + бенгальські цифри + цифри деванагарі + ефіопські цифри + фінансові символи чисел + цифри повної ширини + грузинські цифри + грецькі цифри + грецькі малі цифри + цифри гуджараті + цифри гурмукхі + китайські десяткові цифри + китайські символи чисел (спрощене письмо) + китайські фінансові символи чисел (спрощене письмо) + китайські символи чисел (традиційне письмо) + китайські фінансові символи чисел (традиційне письмо) + цифри івриту + японські цифри + японські фінансові цифри + кхмерські цифри + цифри каннада + лаоські цифри + західні цифри + малаяламські цифри + монгольські цифри + м’янмські цифри + місцеві цифри + цифри орія + римські цифри + римські малі цифри + тамільські традиційні цифри + тамільські цифри + цифри телугу + тайські цифри + тибетські цифри + традиційні символи чисел + цифри ваї BGN @@ -1124,7 +1165,7 @@ For terms of use, see http://www.unicode.org/copyright.html Метрична Британська - США + Американська Мова: {0} @@ -1159,7 +1200,7 @@ For terms of use, see http://www.unicode.org/copyright.html - [ʼ а б в г ґ д е є ж з и і ї й к л м н о п р с т у ф х ц ч ш щ ь ю я] + [а б в г ґ д е є ж з и і ї й к л м н о п р с т у ф х ц ч ш щ ь ю я ʼ] [{а\u0301} {е\u0301} ё {є\u0301} {и\u0301} {і\u0301} {ї\u0301} {о\u0301} {у\u0301} ъ ы э {ю\u0301} {я\u0301}] [А Б В Г Ґ Д Е Є Ж З И І Ї Й К Л М Н О П Р С Т У Ф Х Ц Ч Ш Щ Ю Я] [\- – , ; \: ! ? . ' " “ „ « » ( ) \[ \] \{ \} § @ * / \\ №] @@ -1183,7 +1224,7 @@ For terms of use, see http://www.unicode.org/copyright.html - тот. + тот баб. хат. кіх. @@ -1236,69 +1277,112 @@ For terms of use, see http://www.unicode.org/copyright.html - мес. - тек. - хед. - тах. - тер. - єкат. - мег. - міяз. - ген. - сен. - хам. - нех. - паг. + мес. + тек. + хед. + тах. + тер. + єкат. + мег. + міяз. + ген. + сен. + хам. + нех. + паг. + + + 01 + 02 + 03 + 04 + 05 + 06 + 07 + 08 + 09 + 10 + 11 + 12 + 13 - мескерема - текемта - хедара - тахсаса - тера - єкатіта - мегабіта - міязія - генбота - сене - хамле - нехасе - пагумена + мескерема + текемта + хедара + тахсаса + тера + єкатіта + мегабіта + міязія + генбота + сене + хамле + нехасе + пагумена - Мес - Тек - Хед - Тах - Тер - Єкат - Мег - Міяз - Ген - Сен - Хам - Нех - Паг + мес. + тек. + хед. + тах. + тер. + єкат. + мег. + міяз. + ген. + сен. + хам. + нех. + паг. + + + 01 + 02 + 03 + 04 + 05 + 06 + 07 + 08 + 09 + 10 + 11 + 12 + 13 - Мескерем - Текемт - Хедар - Тахсас - Тер - Єкатіт - Мегабіт - Міязія - Генбот - Сене - Хамле - Нехасе - Пагумен + мескерема + Текемт + хедара + тахсаса + тера + єкатіта + мегабіта + міязія + генбота + сене + хамле + нехасе + пагумена + + + ERA0 + ERA1 + + + ERA0 + ERA1 + + + ERA1 + + @@ -1326,12 +1410,12 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1} 'о' {0} - {1} {0} + {1} 'о' {0} @@ -1346,6 +1430,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc E, d y G LLL y G @@ -1353,10 +1438,8 @@ For terms of use, see http://www.unicode.org/copyright.html E, d MMM y G h a HH - HH:mm - HH:mm:ss h:mm a - HH:mm + HH:mm h:mm:ss a HH:mm:ss L @@ -1432,43 +1515,43 @@ For terms of use, see http://www.unicode.org/copyright.html LLL–LLL - d–d MMM + d–d MMM d MMM – d MMM - E, d – E, d MMM - E, d MMM – E, d MMM + E, d – E, d MMM + E, d MMM – E, d MMM - y–y + y–y - MM.y – MM.y - MM.y – MM.y + MM.y – MM.y + MM.y – MM.y - dd.MM.y – dd.MM.y - dd.MM.y – dd.MM.y - dd.MM.y – dd.MM.y + dd.MM.y – dd.MM.y + dd.MM.y – dd.MM.y + dd.MM.y – dd.MM.y - E, dd.MM.y – E, dd.MM.y - E, dd.MM.y – E, dd.MM.y - E, dd.MM.y – E, dd.MM.y + E, dd.MM.y – E, dd.MM.y + E, dd.MM.y – E, dd.MM.y + E, dd.MM.y – E, dd.MM.y - LLL–LLL y - LLL y – LLL y + LLL–LLL y + LLL y – LLL y - d–d MMM y - d MMM – d MMM y - d MMM y – d MMM y + d–d MMM y + d MMM – d MMM y + d MMM y – d MMM y - E, d – E, d MMM y - E, d MMM – E, d MMM y - E, d MMM y – E, d MMM y + E, d – E, d MMM y + E, d MMM – E, d MMM y + E, d MMM y – E, d MMM y LLLL – LLLL y @@ -1553,18 +1636,18 @@ For terms of use, see http://www.unicode.org/copyright.html Г - Січень - Лютий - Березень - Квітень - Травень - Червень - Липень - Серпень - Вересень - Жовтень - Листопад - Грудень + січень + лютий + березень + квітень + травень + червень + липень + серпень + вересень + жовтень + листопад + грудень @@ -1636,23 +1719,23 @@ For terms of use, see http://www.unicode.org/copyright.html Сб - Неділя - Понеділок - Вівторок - Середа - Четвер - Пʼятниця - Субота + неділя + понеділок + вівторок + середа + четвер + пʼятниця + субота - I кв. - II кв. - III кв. - IV кв. + 1-й кв. + 2-й кв. + 3-й кв. + 4-й кв. 1 @@ -1661,10 +1744,10 @@ For terms of use, see http://www.unicode.org/copyright.html 4 - I квартал - II квартал - III квартал - IV квартал + 1-й квартал + 2-й квартал + 3-й квартал + 4-й квартал @@ -1690,40 +1773,76 @@ For terms of use, see http://www.unicode.org/copyright.html - - дня + + північ + дп + пополудні + пп + ранку + дня + вечора + ночі + + + північ + дп + п + пп + ранку + дня + вечора + ночі + + + північ + дп + пополудні + пп + ранку + дня + вечора + ночі + + + + + дп + полудень + пп + ранок + день + вечір + ніч + + дп - вечора - ранку - п пп - дня дп - вечора - ранку - ночі - полудня + полудень пп + ранок + день + вечір + ніч до нашої ери + до нової ери нашої ери + нової ери - до н.е. - н.е. - н. е. + до н. е. + н. е. до н.е. - до н. е. н.е. - н. е. @@ -1773,27 +1892,27 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1} 'о' {0} - {1} {0} + {1} 'о' {0} - {1} {0} + {1}, {0} - {1} {0} + {1}, {0} d - ccc + ccc E, d E h:mm a E HH:mm @@ -1805,13 +1924,15 @@ For terms of use, see http://www.unicode.org/copyright.html E, d MMM y G h a HH - HH:mm - HH:mm:ss h:mm a HH:mm h:mm:ss a HH:mm:ss - L + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v + LL dd.MM E, dd.MM LLL @@ -1975,65 +2096,76 @@ For terms of use, see http://www.unicode.org/copyright.html - чайт. - вайс. - джай. - асад. - шрав. - бхад. - асв. - кар. - агр. - паус. - маг. - фаль. + чайт. + вайс. + джай. + асад. + шрав. + бхад. + асв. + кар. + агр. + паус. + маг. + фаль. - чайтра - вайсакха - джайстха - асадха - шравана - бхадра - асвіна - картіка - аграхаяна - пауса - магха - фальгуна + чайтра + вайсакха + джайстха + асадха + шравана + бхадра + асвіна + картіка + аграхаяна + пауса + магха + фальгуна - Чайт - Вайс - Джай - Асад - Шрав - Бхад - Асв - Кар - Агр - Паус - Маг - Фаль + чайт. + вайс. + джай. + асад. + шрав. + бхад. + асв. + кар. + агр. + паус. + маг. + фаль. - Чайтра - Вайсакха - Джайстха - Асадха - Шравана - Бхадра - Асвіна - Картіка - Аграхаяна - Пауса - Магха - Фальгуна + чайтра + вайсакха + джайстха + асадха + шравана + бхадра + асвіна + картіка + аграхаяна + пауса + магха + фальгуна + + + Saka + + + Saka + + + Saka + + @@ -2041,8 +2173,8 @@ For terms of use, see http://www.unicode.org/copyright.html мух. саф. - раб. I - раб. II + рабі I + рабі II джум. I джум. II радж. @@ -2071,8 +2203,8 @@ For terms of use, see http://www.unicode.org/copyright.html Мух Саф - Раб I - Раб.II + Рабі I + Рабі II Джум I Джум II Радж @@ -2334,13 +2466,13 @@ For terms of use, see http://www.unicode.org/copyright.html фар. орд. хор. - тір. + тір мор. шах. мех. - абан. - азер. - дея + абан + азер + дей бах. есф. @@ -2370,7 +2502,7 @@ For terms of use, see http://www.unicode.org/copyright.html Мех Абан Азер - Дея + Дей Бах Есф @@ -2380,10 +2512,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Ера + ера - Рік + рік торік цього року наступного року @@ -2402,6 +2534,9 @@ For terms of use, see http://www.unicode.org/copyright.html р. + торік + цього року + наступного року через {0} р. через {0} р. @@ -2417,6 +2552,9 @@ For terms of use, see http://www.unicode.org/copyright.html р. + торік + цього року + наступного року +{0} р. +{0} р. @@ -2431,7 +2569,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Квартал + квартал + минулого кварталу + цього кварталу + наступного кварталу через {0} квартал через {0} квартали @@ -2447,6 +2588,9 @@ For terms of use, see http://www.unicode.org/copyright.html кв. + минулого кв. + цього кв. + наступного кв. через {0} кв. через {0} кв. @@ -2462,6 +2606,9 @@ For terms of use, see http://www.unicode.org/copyright.html кв. + минулого кв. + цього кв. + наступного кв. +{0} кв. +{0} кв. @@ -2476,7 +2623,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Місяць + місяць минулого місяця цього місяця наступного місяця @@ -2524,7 +2671,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Тиждень + тиждень минулого тижня цього тижня наступного тижня @@ -2572,7 +2719,7 @@ For terms of use, see http://www.unicode.org/copyright.html - День + день позавчора учора сьогодні @@ -2593,6 +2740,11 @@ For terms of use, see http://www.unicode.org/copyright.html д. + позавчора + учора + сьогодні + завтра + післязавтра через {0} д. через {0} дн. @@ -2608,6 +2760,11 @@ For terms of use, see http://www.unicode.org/copyright.html д. + позавчора + учора + сьогодні + завтра + післязавтра +{0} день +{0} дн. @@ -2622,7 +2779,7 @@ For terms of use, see http://www.unicode.org/copyright.html - День тижня + день тижня минулої неділі @@ -2730,10 +2887,10 @@ For terms of use, see http://www.unicode.org/copyright.html наст. сб - Частина доби + частина доби - Година + година через {0} годину через {0} години @@ -2778,7 +2935,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Хвилина + хвилина через {0} хвилину через {0} хвилини @@ -2823,7 +2980,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Секунда + секунда зараз через {0} секунду @@ -2869,7 +3026,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Часовий пояс + часовий пояс @@ -3295,7 +3452,7 @@ For terms of use, see http://www.unicode.org/copyright.html Санто-Домінго - м. Алжир + Алжир Галапагоські острови @@ -3356,7 +3513,7 @@ For terms of use, see http://www.unicode.org/copyright.html - за літнім часом у Великобританії + за літнім часом у Великій Британії Лондон @@ -3747,6 +3904,9 @@ For terms of use, see http://www.unicode.org/copyright.html Порт-Морсбі + + Бугенвіль + Маніла @@ -3831,6 +3991,9 @@ For terms of use, see http://www.unicode.org/copyright.html Іркутськ + + Чита + Якутськ @@ -3849,6 +4012,9 @@ For terms of use, see http://www.unicode.org/copyright.html Магадан + + Середньоколимськ + Камчатка @@ -3907,7 +4073,7 @@ For terms of use, see http://www.unicode.org/copyright.html Джуба - Сан-Томе і Принсіпі + Сан-Томе Сальвадор @@ -3949,7 +4115,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ашгабат - м. Туніс + Туніс Тонгатапу @@ -4213,9 +4379,9 @@ For terms of use, see http://www.unicode.org/copyright.html - за часом в Апіа - за стандартним часом в Апіа - за літнім часом в Апіа + за часом в Апіа + за стандартним часом в Апіа + за літнім часом в Апіа @@ -4309,7 +4475,7 @@ For terms of use, see http://www.unicode.org/copyright.html - за часом у Болівії + за болівійським часом @@ -4438,7 +4604,7 @@ For terms of use, see http://www.unicode.org/copyright.html - за далекосхідним європейським часом + за далекосхідним європейським часом @@ -5066,7 +5232,7 @@ For terms of use, see http://www.unicode.org/copyright.html × - Не число + NaN : @@ -5077,82 +5243,82 @@ For terms of use, see http://www.unicode.org/copyright.html - 0 тисяча - 0 тисячі - 0 тисяч - 0 тисячі - 00 тисяча - 00 тисячі - 00 тисяч - 00 тисячі - 000 тисяча - 000 тисячі - 000 тисяч - 000 тисячі - 0 мільйон - 0 мільйони - 0 мільйонів - 0 мільйона - 00 мільйон - 00 мільйони - 00 мільйонів - 00 мільйона - 000 мільйон - 000 мільйони - 000 мільйонів - 000 мільйона - 0 мільярд - 0 мільярди - 0 мільярдів - 0 мільярда - 00 мільярд - 00 мільярди - 00 мільярдів - 00 мільярда - 000 мільярд - 000 мільярди - 000 мільярдів - 000 мільярда - 0 трильйон - 0 трильйони - 0 трильйонів - 0 трильйона - 00 трильйон - 00 трильйони - 00 трильйонів - 00 трильйона - 000 трильйон - 000 трильйони - 000 трильйонів - 000 трильйона + 0 тисяча + 0 тисячі + 0 тисяч + 0 тисячі + 00 тисяча + 00 тисячі + 00 тисяч + 00 тисячі + 000 тисяча + 000 тисячі + 000 тисяч + 000 тисячі + 0 мільйон + 0 мільйони + 0 мільйонів + 0 мільйона + 00 мільйон + 00 мільйони + 00 мільйонів + 00 мільйона + 000 мільйон + 000 мільйони + 000 мільйонів + 000 мільйона + 0 мільярд + 0 мільярди + 0 мільярдів + 0 мільярда + 00 мільярд + 00 мільярди + 00 мільярдів + 00 мільярда + 000 мільярд + 000 мільярди + 000 мільярдів + 000 мільярда + 0 трильйон + 0 трильйони + 0 трильйонів + 0 трильйона + 00 трильйон + 00 трильйони + 00 трильйонів + 00 трильйона + 000 трильйон + 000 трильйони + 000 трильйонів + 000 трильйона - 0 тис - 0 тис - 0 тис - 0 тис - 00 тис - 00 тис - 00 тис - 00 тис - 000 тис - 000 тис - 000 тис - 000 тис - 0 млн - 0 млн - 0 млн - 0 млн - 00 млн - 00 млн - 00 млн - 00 млн - 000 млн - 000 млн - 000 млн - 000 млн + 0 тис'.' + 0 тис'.' + 0 тис'.' + 0 тис'.' + 00 тис'.' + 00 тис'.' + 00 тис'.' + 00 тис'.' + 000 тис'.' + 000 тис'.' + 000 тис'.' + 000 тис'.' + 0 млн + 0 млн + 0 млн + 0 млн + 00 млн + 00 млн + 00 млн + 00 млн + 000 млн + 000 млн + 000 млн + 000 млн 0 млрд 0 млрд 0 млрд @@ -5203,6 +5369,58 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤;(#,##0.00¤) + + + 0 тис'.' ¤ + 0 тис'.' ¤ + 0 тис'.' ¤ + 0 тис'.' ¤ + 00 тис'.' ¤ + 00 тис'.' ¤ + 00 тис'.' ¤ + 00 тис'.' ¤ + 000 тис'.' ¤ + 000 тис'.' ¤ + 000 тис'.' ¤ + 000 тис'.' ¤ + 0 млн ¤ + 0 млн ¤ + 0 млн ¤ + 0 млн ¤ + 00 млн ¤ + 00 млн ¤ + 00 млн ¤ + 00 млн ¤ + 000 млн ¤ + 000 млн ¤ + 000 млн ¤ + 000 млн ¤ + 0 млрд ¤ + 0 млрд ¤ + 0 млрд ¤ + 0 млрд ¤ + 00 млрд ¤ + 00 млрд ¤ + 00 млрд ¤ + 00 млрд ¤ + 000 млрд ¤ + 000 млрд ¤ + 000 млрд ¤ + 000 млрд ¤ + 0 трлн ¤ + 0 трлн ¤ + 0 трлн ¤ + 0 трлн ¤ + 00 трлн ¤ + 00 трлн ¤ + 00 трлн ¤ + 00 трлн ¤ + 000 трлн ¤ + 000 трлн ¤ + 000 трлн ¤ + 000 трлн ¤ + + {0} {1} {0} {1} {0} {1} @@ -5266,6 +5484,7 @@ For terms of use, see http://www.unicode.org/copyright.html ангольських кванз ангольської кванзи AOA + Kz ангольська кванза (1977–1990) @@ -5336,10 +5555,10 @@ For terms of use, see http://www.unicode.org/copyright.html азербайджанський манат - азербайджанський манат - азербайджанські манати - азербайджанських манатів - азербайджанського маната + азербайджанський манат + азербайджанські манати + азербайджанських манатів + азербайджанського маната AZN @@ -5352,6 +5571,7 @@ For terms of use, see http://www.unicode.org/copyright.html конвертованих марок Боснії і Герцеговини конвертованої марки Боснії і Герцеговини BAM + KM барбадоський долар @@ -5432,6 +5652,7 @@ For terms of use, see http://www.unicode.org/copyright.html болівійських болівіано болівійського болівіано BOB + Bs болівійське песо @@ -5490,6 +5711,7 @@ For terms of use, see http://www.unicode.org/copyright.html ботсванських пул ботсванської пули BWP + P білоруський новий рубль (1994–1999) @@ -5505,7 +5727,7 @@ For terms of use, see http://www.unicode.org/copyright.html білоруських рублів білоруського рубля BYR - руб. + р. белізький долар @@ -5602,6 +5824,7 @@ For terms of use, see http://www.unicode.org/copyright.html кубинських конвертованих песо кубинського конвертованого песо CUC + $ кубинський песо @@ -5630,6 +5853,7 @@ For terms of use, see http://www.unicode.org/copyright.html чеських крон чеської крони CZK + марка НДР @@ -5652,6 +5876,7 @@ For terms of use, see http://www.unicode.org/copyright.html данських крон данської крони DKK + kr домініканський песо @@ -5690,6 +5915,7 @@ For terms of use, see http://www.unicode.org/copyright.html єгипетських фунтів єгипетського фунта EGP + еритрейська накфа @@ -5744,6 +5970,7 @@ For terms of use, see http://www.unicode.org/copyright.html фунтів Фолклендських островів фунта Фолклендських островів FKP + £ французький франк @@ -5766,11 +5993,12 @@ For terms of use, see http://www.unicode.org/copyright.html грузинський ларі - грузинський ларі - грузинські ларі - грузинських ларі - грузинського ларі + грузинський ларі + грузинські ларі + грузинських ларі + грузинського ларі GEL + ганський седі (1979–2007) @@ -5807,6 +6035,7 @@ For terms of use, see http://www.unicode.org/copyright.html гвінейських франків гвінейського франка GNF + FG гвінейське сілі @@ -5824,6 +6053,7 @@ For terms of use, see http://www.unicode.org/copyright.html гватемальських кетсалів гватемальського кетсаля GTQ + Q ескудо португальської гвінеї @@ -5856,6 +6086,7 @@ For terms of use, see http://www.unicode.org/copyright.html гондураських лемпір гондураської лемпіри HNL + L хорватський динар @@ -5867,6 +6098,7 @@ For terms of use, see http://www.unicode.org/copyright.html хорватських кун хорватської куни HRK + kn гаїтянський гурд @@ -5883,6 +6115,7 @@ For terms of use, see http://www.unicode.org/copyright.html угорських форинтів угорського форинта HUF + Ft індонезійська рупія @@ -5891,6 +6124,7 @@ For terms of use, see http://www.unicode.org/copyright.html індонезійських рупій індонезійські рупії IDR + Rp ірландський фунт @@ -5900,19 +6134,19 @@ For terms of use, see http://www.unicode.org/copyright.html ізраїльський новий шекель - ізраїльський новий шекель - ізраїльські нові шекелі - ізраїльських нових шекелів - ізраїльського нового шекеля + ізраїльський новий шекель + ізраїльські нові шекелі + ізраїльських нових шекелів + ізраїльського нового шекеля ILS індійська рупія - індійська рупія - індійські рупії - індійських рупій - індійської рупії + індійська рупія + індійські рупії + індійських рупій + індійської рупії INR @@ -5939,6 +6173,7 @@ For terms of use, see http://www.unicode.org/copyright.html ісландських крон ісландської крони ISK + kr італійська ліра @@ -5979,10 +6214,10 @@ For terms of use, see http://www.unicode.org/copyright.html киргизький сом - киргизький сом - киргизькі соми - киргизьких сомів - киргизького сома + киргизький сом + киргизькі соми + киргизьких сомів + киргизького сома KGS @@ -6001,6 +6236,7 @@ For terms of use, see http://www.unicode.org/copyright.html коморських франків коморського франка KMF + CF північнокорейський вон @@ -6009,6 +6245,7 @@ For terms of use, see http://www.unicode.org/copyright.html північнокорейських вонів північнокорейського вона KPW + південнокорейський вон @@ -6038,10 +6275,10 @@ For terms of use, see http://www.unicode.org/copyright.html казахстанський тенге - казахстанський тенге - казахстанські тенге - казахстанських тенге - казахстанського тенге + казахстанський тенге + казахстанські тенге + казахстанських тенге + казахстанського тенге KZT @@ -6061,6 +6298,7 @@ For terms of use, see http://www.unicode.org/copyright.html ліванських фунтів ліванського фунта LBP + шрі-ланкійська рупія @@ -6069,6 +6307,7 @@ For terms of use, see http://www.unicode.org/copyright.html шрі-ланкійських рупій шрі-ланкійської рупії LKR + Rs ліберійський долар @@ -6147,6 +6386,7 @@ For terms of use, see http://www.unicode.org/copyright.html малагасійських аріарі малагасійського аріарі MGA + Ar мадагаскарський франк @@ -6169,6 +6409,7 @@ For terms of use, see http://www.unicode.org/copyright.html кʼятів Мʼянми кʼята Мʼянми MMK + K монгольський тугрик @@ -6208,6 +6449,7 @@ For terms of use, see http://www.unicode.org/copyright.html маврикійських рупій маврикійської рупії MUR + Rs мальдівська руфія @@ -6247,6 +6489,7 @@ For terms of use, see http://www.unicode.org/copyright.html малайзійських рингітів малайзійського рингіта MYR + RM мозамбіцький ескудо @@ -6281,15 +6524,20 @@ For terms of use, see http://www.unicode.org/copyright.html - нікарагуанська кордоба + нікарагуанська кордоба (1988–1991) + нікарагуанська кордоба (1988–1991) + нікарагуанські кордоби (1988–1991) + нікарагуанських кордоб (1988–1991) + нікарагуанської кордоби (1988–1991) - нікарагуанська кордоба оро - нікарагуанська кордоба оро - нікарагуанські кордоби оро - нікарагуанських кордоб оро - нікарагуанської кордоби оро + нікарагуанська кордоба + нікарагуанська кордоба + нікарагуанські кордоби + нікарагуанських кордоб + нікарагуанської кордоби NIO + C$ нідерландський гульден @@ -6301,6 +6549,7 @@ For terms of use, see http://www.unicode.org/copyright.html норвезьких крон норвезької крони NOK + kr непальська рупія @@ -6309,6 +6558,7 @@ For terms of use, see http://www.unicode.org/copyright.html непальських рупій непальської рупії NPR + Rs новозеландський долар @@ -6373,6 +6623,7 @@ For terms of use, see http://www.unicode.org/copyright.html пакистанських рупій пакистанської рупії PKR + Rs польський злотий @@ -6381,6 +6632,7 @@ For terms of use, see http://www.unicode.org/copyright.html польських злотих польського злотого PLN + польський злотий (1950–1995) @@ -6434,6 +6686,7 @@ For terms of use, see http://www.unicode.org/copyright.html російських рублів російського рубля RUB + російський рубль (1991–1998) @@ -6449,13 +6702,14 @@ For terms of use, see http://www.unicode.org/copyright.html руандійських франків руандійського франка RWF + RF саудівський ріал - саудівський ріал - саудівські ріали - саудівських ріалів - саудівського ріала + саудівський ріал + саудівські ріали + саудівських ріалів + саудівського ріала SAR @@ -6496,6 +6750,7 @@ For terms of use, see http://www.unicode.org/copyright.html шведських крон шведської крони SEK + kr сінгапурський долар @@ -6513,6 +6768,7 @@ For terms of use, see http://www.unicode.org/copyright.html фунтів острова Святої Єлени фунта острова Святої Єлени SHP + £ словенський толар @@ -6568,6 +6824,7 @@ For terms of use, see http://www.unicode.org/copyright.html добр Сан-Томе і Принсіпі добри Сан-Томе і Принсіпі STD + Db радянський рубль @@ -6586,6 +6843,7 @@ For terms of use, see http://www.unicode.org/copyright.html сирійських фунтів сирійського фунта SYP + £ свазілендський лілангені @@ -6602,16 +6860,17 @@ For terms of use, see http://www.unicode.org/copyright.html таїландських батів таїландського бата THB + ฿ таджицький рубль таджицький сомоні - таджицький сомоні - таджицькі сомоні - таджицьких сомоні - таджицького сомоні + таджицький сомоні + таджицькі сомоні + таджицьких сомоні + таджицького сомоні TJS @@ -6644,6 +6903,7 @@ For terms of use, see http://www.unicode.org/copyright.html тонганських паанг тонганської паанги TOP + T$ тіморський ескудо @@ -6657,12 +6917,13 @@ For terms of use, see http://www.unicode.org/copyright.html турецька ліра - турецька ліра - турецькі ліри - турецьких лір - турецької ліри + турецька ліра + турецькі ліри + турецьких лір + турецької ліри TRY + TL долар Тринідаду і Тобаго @@ -6675,10 +6936,10 @@ For terms of use, see http://www.unicode.org/copyright.html новий тайванський долар - новий тайванський долар - нові тайванські долари - нових тайванських доларів - нового тайванського долара + новий тайванський долар + нові тайванські долари + нових тайванських доларів + нового тайванського долара TWD NT$ @@ -6697,6 +6958,8 @@ For terms of use, see http://www.unicode.org/copyright.html гривень гривні + + грн. український карбованець @@ -6749,10 +7012,10 @@ For terms of use, see http://www.unicode.org/copyright.html узбецький сум - узбецький сум - узбецькі суми - узбецьких сумів - узбецького сума + узбецький сум + узбецькі суми + узбецьких сумів + узбецького сума UZS @@ -6765,6 +7028,7 @@ For terms of use, see http://www.unicode.org/copyright.html венесуельських боліварів венесуельського болівара VEF + Bs вʼєтнамський донг @@ -6824,6 +7088,7 @@ For terms of use, see http://www.unicode.org/copyright.html східнокарибських доларів східнокарибського долара XCD + $ спеціальні права запозичення @@ -6842,7 +7107,7 @@ For terms of use, see http://www.unicode.org/copyright.html французький франк UIC - західноафриканський франк BCEAO + західноафриканський франк західноафриканський франк західноафриканські франки західноафриканських франків @@ -6901,11 +7166,12 @@ For terms of use, see http://www.unicode.org/copyright.html південноафриканський ранд - південноафриканський ранд - південноафриканські ранди - південноафриканських рандів - південноафриканського ранда + південноафриканський ранд + південноафриканські ранди + південноафриканських рандів + південноафриканського ранда ZAR + R замбійська квача (1968–2012) @@ -6921,6 +7187,7 @@ For terms of use, see http://www.unicode.org/copyright.html замбійських квач замбійської квачі ZMW + ZK заїрський новий заїр @@ -6961,10 +7228,10 @@ For terms of use, see http://www.unicode.org/copyright.html сили тяжіння - {0} сила тяжіння - {0} сили тяжіння - {0} сил тяжіння - {0} сили тяжіння + {0} сила тяжіння + {0} сили тяжіння + {0} сил тяжіння + {0} сили тяжіння метри на секунду в квадраті @@ -6973,6 +7240,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} метрів на секунду в квадраті {0} метра на секунду в квадраті + + оберти + {0} оберт + {0} оберти + {0} обертів + {0} оберта + + + радіани + {0} радіан + {0} радіани + {0} радіанів + {0} радіана + + + градуси + {0} градус + {0} градуси + {0} градусів + {0} градуса + мінути {0} мінута @@ -6987,26 +7275,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кутових секунд {0} кутової секунди - - градуси - {0} градус - {0} градуси - {0} градусів - {0} градуса - - - радіани - {0} радіан - {0} радіани - {0} радіанів - {0} радіана - - - акри - {0} акр - {0} акри - {0} акрів - {0} акра + + квадратні кілометри + {0} квадратний кілометр + {0} квадратні кілометри + {0} квадратних кілометрів + {0} квадратного кілометра гектари @@ -7015,12 +7289,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гектарів {0} гектара + + квадтратні метри + {0} квадратний метр + {0} квадратні метри + {0} квадратних метрів + {0} квадратного метра + {0} на квадратний метр + квадратні сантиметри {0} квадратний сантиметр {0} квадратні сантиметри {0} квадратних сантиметрів {0} квадратного сантиметра + {0} на квадратний сантиметр + + + квадратні милі + {0} квадратна миля + {0} квадратні милі + {0} квадратних миль + {0} квадратної милі + + + акри + {0} акр + {0} акри + {0} акрів + {0} акра + + + квадратні ярди + {0} квадратний ярд + {0} квадратні ярди + {0} квадратних ярдів + {0} квадратного ярда квадратні фути @@ -7035,34 +7339,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} квадратні дюйми {0} квадратних дюймів {0} квадратного дюйма + {0} квадратний дюйм - - квадратні кілометри - {0} квадратний кілометр - {0} квадратні кілометри - {0} квадратних кілометрів - {0} квадратного кілометра - - - квадтратні метри - {0} квадратний метр - {0} квадратні метри - {0} квадратних метрів - {0} квадратного метра - - - квадратні милі - {0} квадратна миля - {0} квадратні милі - {0} квадратних миль - {0} квадратної милі - - - квадратні ярди - {0} квадратний ярд - {0} квадратні ярди - {0} квадратних ярдів - {0} квадратного ярда + + карати + {0} карат + {0} карати + {0} каратів + {0} карата літри на кілометр @@ -7071,6 +7355,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} літрів на кілометр {0} літра на кілометр + + літри на 100 кілометрів + {0} літр на 100 кілометрів + {0} літри на 100 кілометрів + {0} літрів на 100 кілометрів + {0} літра на 100 кілометрів + милі на галон {0} миля на галон @@ -7078,69 +7369,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миль на галон {0} милі на галон - - біти - {0} біт - {0} біти - {0} бітів - {0} біта - - - байти - {0} байт - {0} байти - {0} байтів - {0} байта - - - гігабіти - {0} гігабіт - {0} гігабіти - {0} гігабітів - {0} гігабіта - - - гігабайти - {0} гігабайт - {0} гігабайти - {0} гігабайтів - {0} гігабайта - - - кілобіти - {0} кілобіт - {0} кілобіти - {0} кілобітів - {0} кілобіта - - - кілобайти - {0} кілобайт - {0} кілобайти - {0} кілобайтів - {0} кілобайта - - - мегабіти - {0} мегабіт - {0} мегабіти - {0} мегабітів - {0} мегабіта - - - мегабайти - {0} мегабайт - {0} мегабайти - {0} мегабайтів - {0} мегабайта - - - терабіти - {0} терабіт - {0} терабіти - {0} терабітів - {0} терабіта - терабайти {0} терабайт @@ -7148,12 +7376,107 @@ For terms of use, see http://www.unicode.org/copyright.html {0} терабайтів {0} терабайта + + терабіти + {0} терабіт + {0} терабіти + {0} терабітів + {0} терабіта + + + гігабайти + {0} гігабайт + {0} гігабайти + {0} гігабайтів + {0} гігабайта + + + гігабіти + {0} гігабіт + {0} гігабіти + {0} гігабітів + {0} гігабіта + + + мегабайти + {0} мегабайт + {0} мегабайти + {0} мегабайтів + {0} мегабайта + + + мегабіти + {0} мегабіт + {0} мегабіти + {0} мегабітів + {0} мегабіта + + + кілобайти + {0} кілобайт + {0} кілобайти + {0} кілобайтів + {0} кілобайта + + + кілобіти + {0} кілобіт + {0} кілобіти + {0} кілобітів + {0} кілобіта + + + байти + {0} байт + {0} байти + {0} байтів + {0} байта + + + біти + {0} біт + {0} біти + {0} бітів + {0} біта + + + століття + {0} століття + {0} століття + {0} століть + {0} століття + + + роки + {0} рік + {0} роки + {0} років + {0} року + {0} на рік + + + місяці + {0} місяць + {0} місяці + {0} місяців + {0} місяця + {0} на місяць + + + тижні + {0} тиждень + {0} тижні + {0} тижнів + {0} тижня + {0} на тиждень + дні {0} день {0} дні {0} днів {0} дня + {0} на день години @@ -7163,40 +7486,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} години {0} на годину - - мікросекунди - {0} мікросекунда - {0} мікросекунди - {0} мікросекунд - {0} мікросекунди - - - мілісекунди - {0} мілісекунда - {0} мілісекунди - {0} мілісекунд - {0} мілісекунди - хвилини {0} хвилина {0} хвилини {0} хвилин {0} хвилини - - - місяці - {0} місяць - {0} місяці - {0} місяців - {0} місяця - - - наносекунди - {0} наносекунда - {0} наносекунди - {0} наносекунд - {0} наносекунди + {0} на хв секунди @@ -7206,19 +7502,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} секунди {0} на секунду - - тижні - {0} тиждень - {0} тижні - {0} тижнів - {0} тижня + + мілісекунди + {0} мілісекунда + {0} мілісекунди + {0} мілісекунд + {0} мілісекунди - - роки - {0} рік - {0} роки - {0} років - {0} року + + мікросекунди + {0} мікросекунда + {0} мікросекунди + {0} мікросекунд + {0} мікросекунди + + + наносекунди + {0} наносекунда + {0} наносекунди + {0} наносекунд + {0} наносекунди ампери @@ -7248,6 +7551,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} вольтів {0} вольта + + кілокалорії + {0} кілокалорія + {0} кілокалорії + {0} кілокалорій + {0} кілокалорії + калорії {0} калорія @@ -7262,20 +7572,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Калорій {0} Калорії - - джоулі - {0} джоуль - {0} джоулі - {0} джоулів - {0} джоуля - - - кілокалорії - {0} кілокалорія - {0} кілокалорії - {0} кілокалорій - {0} кілокалорії - кілоджоулі {0} кілоджоуль @@ -7283,6 +7579,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кілоджоулів {0} кілоджоуля + + джоулі + {0} джоуль + {0} джоулі + {0} джоулів + {0} джоуля + кіловат-години {0} кіловат-година @@ -7297,12 +7600,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гігагерців {0} гігагерца - - герци - {0} герц - {0} герци - {0} герців - {0} герца + + мегагерци + {0} мегагерц + {0} мегагерци + {0} мегагерців + {0} мегагерца кілогерци @@ -7311,26 +7614,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кілогерців {0} кілогерца - - мегагерци - {0} мегагерц - {0} мегагерци - {0} мегагерців - {0} мегагерца + + герци + {0} герц + {0} герци + {0} герців + {0} герца - - астрономічні одиниці - {0} астрономічна одиниця - {0} астрономічні одиниці - {0} астрономічних одиниць - {0} астрономічної одиниці + + кілометри + {0} кілометр + {0} кілометри + {0} кілометрів + {0} кілометра + {0} на кілометр - - сантиметри - {0} сантиметр - {0} сантиметри - {0} сантиметрів - {0} сантиметра + + метри + {0} метр + {0} метри + {0} метрів + {0} метра + {0} на метр дециметри @@ -7339,54 +7644,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} дециметрів {0} дециметра - - фути - {0} фут - {0} фути - {0} футів - {0} фута - - - дюйми - {0} дюйм - {0} дюйми - {0} дюймів - {0} дюйма - - - кілометри - {0} кілометр - {0} кілометри - {0} кілометрів - {0} кілометра - - - світлові роки - {0} світловий рік - {0} світлові роки - {0} світлових років - {0} світлового року - - - метри - {0} метр - {0} метри - {0} метрів - {0} метра - - - мікрометри - {0} мікрометр - {0} мікрометри - {0} мікрометрів - {0} мікрометра - - - милі - {0} миля - {0} милі - {0} миль - {0} милі + + сантиметри + {0} сантиметр + {0} сантиметри + {0} сантиметрів + {0} сантиметра + {0} на сантиметр міліметри @@ -7395,6 +7659,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} міліметрів {0} міліметра + + мікрометри + {0} мікрометр + {0} мікрометри + {0} мікрометрів + {0} мікрометра + нанометри {0} нанометр @@ -7402,20 +7673,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} нанометрів {0} нанометра - - морські милі - {0} морська миля - {0} морські милі - {0} морських миль - {0} морської милі - - - парсеки - {0} парсек - {0} парсеки - {0} парсеків - {0} парсека - пікометри {0} пікометр @@ -7423,6 +7680,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} пікометрів {0} пікометра + + милі + {0} миля + {0} милі + {0} миль + {0} милі + ярди {0} ярд @@ -7430,6 +7694,57 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ярдів {0} ярда + + фути + {0} фут + {0} фути + {0} футів + {0} фута + {0} на фут + + + дюйми + {0} дюйм + {0} дюйми + {0} дюймів + {0} дюйма + {0} на дюйм + + + парсеки + {0} парсек + {0} парсеки + {0} парсеків + {0} парсека + + + світлові роки + {0} світловий рік + {0} світлові роки + {0} світлових років + {0} світлового року + + + астрономічні одиниці + {0} астрономічна одиниця + {0} астрономічні одиниці + {0} астрономічних одиниць + {0} астрономічної одиниці + + + морські милі + {0} морська миля + {0} морські милі + {0} морських миль + {0} морської милі + + + скандинавська миля + {0} скандинавська миля + {0} скандинавські милі + {0} скандинавських миль + {0} скандинавської милі + люкси {0} люкс @@ -7437,27 +7752,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} люксів {0} люкса - - карати - {0} карат - {0} карати - {0} каратів - {0} карата - - - грами - {0} грам - {0} грами - {0} грамів - {0} грама - - - кілограми - {0} кілограм - {0} кілограми - {0} кілограмів - {0} кілограма - метричні тонни {0} метрична тонна @@ -7465,12 +7759,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} метричних тонн {0} метричної тонни - - мікрограми - {0} мікрограм - {0} мікрограми - {0} мікрограм - {0} мікрограма + + кілограми + {0} кілограм + {0} кілограми + {0} кілограмів + {0} кілограма + {0} на кілограм + + + грами + {0} грам + {0} грами + {0} грамів + {0} грама + {0} на грам міліграми @@ -7479,26 +7782,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} міліграм {0} міліграма - - унції - {0} унція - {0} унції - {0} унцій - {0} унції - - - тройські унції - {0} тройська унція - {0} тройські унції - {0} тройських унцій - {0} тройської унції - - - фунти - {0} фунт - {0} фунти - {0} фунтів - {0} фунта + + мікрограми + {0} мікрограм + {0} мікрограми + {0} мікрограм + {0} мікрограма тонни @@ -7507,6 +7796,36 @@ For terms of use, see http://www.unicode.org/copyright.html {0} тонн {0} тонни + + фунти + {0} фунт + {0} фунти + {0} фунтів + {0} фунта + {0} на фунт + + + унції + {0} унція + {0} унції + {0} унцій + {0} унції + {0} на унцію + + + тройські унції + {0} тройська унція + {0} тройські унції + {0} тройських унцій + {0} тройської унції + + + карати + {0} карат + {0} карати + {0} каратів + {0} карата + гігавати {0} гігават @@ -7514,20 +7833,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гігаватів {0} гігавата - - кінські сили - {0} кінська сила - {0} кінські сили - {0} кінських сил - {0} кінської сили - - - кіловати - {0} кіловат - {0} кіловати - {0} кіловатів - {0} кіловата - мегавати {0} мегават @@ -7535,12 +7840,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мегават {0} мегавата - - мілівати - {0} міліват - {0} мілівати - {0} міліват - {0} мілівата + + кіловати + {0} кіловат + {0} кіловати + {0} кіловатів + {0} кіловата вати @@ -7549,6 +7854,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ватів {0} вата + + мілівати + {0} міліват + {0} мілівати + {0} міліват + {0} мілівата + + + кінські сили + {0} кінська сила + {0} кінські сили + {0} кінських сил + {0} кінської сили + гектопаскалі {0} гектопаскаль @@ -7556,20 +7875,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гектопаскалів {0} гектопаскаля - - дюйми ртутного стовпа - {0} дюйм ртутного стовпа - {0} дюйми ртутного стовпа - {0} дюймів ртутного стовпа - {0} дюйма ртутного стовпа - - - мілібари - {0} мілібар - {0} мілібари - {0} мілібарів - {0} мілібара - міліметри ртутного стовпа {0} міліметр ртутного стовпа @@ -7584,12 +7889,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} фунтів на квадратний дюйм {0} фунта на квадратний дюйм - - Карати - {0} Карат - {0} Карати - {0} Каратів - {0} Карата + + дюйми ртутного стовпа + {0} дюйм ртутного стовпа + {0} дюйми ртутного стовпа + {0} дюймів ртутного стовпа + {0} дюйма ртутного стовпа + + + мілібари + {0} мілібар + {0} мілібари + {0} мілібарів + {0} мілібара кілометри на годину @@ -7612,6 +7924,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миль на годину {0} милі на годину + + вузол + {0} вузол + {0} вузли + {0} вузлів + {0} вузла + + + ° + {0}° + {0}° + {0}° + {0}° + градуси Цельсія {0} градус Цельсія @@ -7633,41 +7959,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кельвінів {0} кельвіна - - акр-фути - {0} акр-фут - {0} акр-фути - {0} акр-футів - {0} акр-фута - - - сантилітри - {0} сантилітр - {0} сантилітри - {0} сантилітрів - {0} сантилітра - - - кубічні сантиметри - {0} кубічний сантиметр - {0} кубічні сантиметри - {0} кубічних сантиметрів - {0} кубічного сантиметра - - - кубічні фути - {0} кубічний фут - {0} кубічні фути - {0} кубічних футів - {0} кубічного фута - - - кубічні дюйми - {0} кубічний дюйм - {0} кубічні дюйми - {0} кубічних дюймів - {0} кубічного дюйма - кубічні кілометри {0} кубічний кілометр @@ -7681,6 +7972,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кубічні метри {0} кубічних метрів {0} кубічного метра + {0} на кубічний метр + + + кубічні сантиметри + {0} кубічний сантиметр + {0} кубічні сантиметри + {0} кубічних сантиметрів + {0} кубічного сантиметра + {0} на кубічний сантиметр кубічні милі @@ -7696,33 +7996,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кубічних ярдів {0} кубічного ярда - - чашки - {0} чашка - {0} чашки - {0} чашок - {0} чашки + + кубічні фути + {0} кубічний фут + {0} кубічні фути + {0} кубічних футів + {0} кубічного фута - - децилітри - {0} децилітр - {0} децилітри - {0} децилітрів - {0} децилітра + + кубічні дюйми + {0} кубічний дюйм + {0} кубічні дюйми + {0} кубічних дюймів + {0} кубічного дюйма - - рідкі унції - {0} рідка унція - {0} рідкі унції - {0} рідких унцій - {0} рідкої унції - - - галони - {0} галон - {0} галони - {0} галонів - {0} галона + + мегалітри + {0} мегалітр + {0} мегалітри + {0} мегалітрів + {0} мегалітра гектолітри @@ -7737,13 +8030,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} літри {0} літрів {0} літра + {0} на літр - - мегалітри - {0} мегалітр - {0} мегалітри - {0} мегалітрів - {0} мегалітра + + децилітри + {0} децилітр + {0} децилітри + {0} децилітрів + {0} децилітра + + + сантилітри + {0} сантилітр + {0} сантилітри + {0} сантилітрів + {0} сантилітра мілілітри @@ -7752,12 +8053,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мілілітрів {0} мілілітра - - пінти - {0} пінта - {0} пінти - {0} пінт - {0} пінти + + метрична пінта + {0} метрична пінта + {0} метричні пінти + {0} метричних пінт + {0} метричної пінти + + + метричні склянки + {0} метрична склянка + {0} метричні склянки + {0} метричних склянок + {0} метричної склянки + + + акр-фути + {0} акр-фут + {0} акр-фути + {0} акр-футів + {0} акр-фута + + + галони + {0} галон + {0} галони + {0} галонів + {0} галона + {0} на галон кварти @@ -7766,6 +8089,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кварт {0} кварти + + пінти + {0} пінта + {0} пінти + {0} пінт + {0} пінти + + + склянки + {0} склянка + {0} склянки + {0} склянок + {0} склянки + + + рідкі унції + {0} рідка унція + {0} рідкі унції + {0} рідких унцій + {0} рідкої унції + cтолові ложки {0} столова ложка @@ -7780,6 +8124,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} чайних ложок {0} чайної ложки + + {0} на Схід + {0} на Північ + {0} на Південь + {0} на Захід + @@ -7799,6 +8149,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} м/с² {0} м/с² + + об + {0} об + {0} об + {0} об + {0} об + + + радіани + {0} рад. + {0} рад. + {0} рад. + {0} рад. + + + градуси + {0}° + {0}° + {0}° + {0}° + мінути {0} мін. @@ -7813,26 +8184,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кут. сек. {0} кут. сек. - - градуси - {0}° - {0}° - {0}° - {0}° - - - радіани - {0} рад. - {0} рад. - {0} рад. - {0} рад. - - - акри - {0} акр - {0} акри - {0} акрів - {0} акра + + км² + {0} км² + {0} км² + {0} км² + {0} км² гектари @@ -7841,12 +8198,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} га {0} га + + м² + {0} м² + {0} м² + {0} м² + {0} м² + {0}/м² + см² {0} см² {0} см² {0} см² {0} см² + {0}/см² + + + милі² + {0} миля² + {0} милі² + {0} миль² + {0} милі² + + + акри + {0} акр + {0} акри + {0} акрів + {0} акра + + + ярди² + {0} ярд² + {0} ярди² + {0} ярдів² + {0} ярда² фути² @@ -7861,34 +8248,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0} дюйми² {0} дюймів² {0} дюйма² + {0}/дюйм² - - км² - {0} км² - {0} км² - {0} км² - {0} км² - - - м² - {0} м² - {0} м² - {0} м² - {0} м² - - - милі² - {0} миля² - {0} милі² - {0} миль² - {0} милі² - - - ярди² - {0} ярд² - {0} ярди² - {0} ярдів² - {0} ярда² + + карати + {0} кар. + {0} кар. + {0} кар. + {0} кар. літри/км @@ -7897,6 +8264,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} л/км {0} л/км + + л/100 км + {0} л/100 км + {0} л/100 км + {0} л/100 км + {0} л/100 км + милі/галон {0} миля/галон @@ -7904,69 +8278,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миль/галон {0} милі/галон - - біт - {0} б - {0} б - {0} б - {0} б - - - байт - {0} Б - {0} Б - {0} Б - {0} Б - - - Гбіт - {0} Гб - {0} Гб - {0} Гб - {0} Гб - - - Гбайт - {0} ГБ - {0} ГБ - {0} ГБ - {0} ГБ - - - кбіт - {0} кб - {0} кб - {0} кб - {0} кб - - - кбайт - {0} кБ - {0} кБ - {0} кБ - {0} кБ - - - Мбіт - {0} Мб - {0} Мб - {0} Мб - {0} Мб - - - Мбайт - {0} МБ - {0} МБ - {0} МБ - {0} МБ - - - Тбіт - {0} Тб - {0} Тб - {0} Тб - {0} Тб - Тбайт {0} ТБ @@ -7974,27 +8285,131 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ТБ {0} ТБ + + Тбіт + {0} Тб + {0} Тб + {0} Тб + {0} Тб + + + Гбайт + {0} ГБ + {0} ГБ + {0} ГБ + {0} ГБ + + + Гбіт + {0} Гб + {0} Гб + {0} Гб + {0} Гб + + + Мбайт + {0} МБ + {0} МБ + {0} МБ + {0} МБ + + + Мбіт + {0} Мб + {0} Мб + {0} Мб + {0} Мб + + + кбайт + {0} кБ + {0} кБ + {0} кБ + {0} кБ + + + кбіт + {0} кб + {0} кб + {0} кб + {0} кб + + + байт + {0} Б + {0} Б + {0} Б + {0} Б + + + біт + {0} б + {0} б + {0} б + {0} б + + + ст. + {0} ст. + {0} ст. + {0} ст. + {0} ст. + + + р. + {0} р. + {0} р. + {0} р. + {0} р. + {0}/р. + + + міс. + {0} міс. + {0} міс. + {0} міс. + {0} міс. + {0}/міс. + + + тиж. + {0} тиж. + {0} тиж. + {0} тиж. + {0} тиж. + {0}/тиж. + дні {0} д. {0} дн. {0} дн. {0} дн. + {0}/дн. - години + год {0} год {0} год {0} год {0} год - на год + {0}/год - - мкс - {0} мкс - {0} мкс - {0} мкс - {0} мкс + + хв + {0} хв + {0} хв + {0} хв + {0} хв + {0}/хв + + + с + {0} с + {0} с + {0} с + {0} с + {0}/с мс @@ -8003,19 +8418,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мс {0} мс - - хв - {0} хв - {0} хв - {0} хв - {0} хв - - - міс. - {0} міс. - {0} міс. - {0} міс. - {0} міс. + + мкс + {0} мкс + {0} мкс + {0} мкс + {0} мкс нс @@ -8024,28 +8432,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} нс {0} нс - - с - {0} с - {0} с - {0} с - {0} с - на с - - - тиж. - {0} тиж. - {0} тиж. - {0} тиж. - {0} тиж. - - - р. - {0} р. - {0} р. - {0} р. - {0} р. - А {0} А @@ -8074,6 +8460,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} В {0} В + + Ккал + {0} Ккал + {0} Ккал + {0} Ккал + {0} Ккал + кал {0} кал @@ -8088,20 +8481,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Кал {0} Кал - - джоулі - {0} Дж - {0} Дж - {0} Дж - {0} Дж - - - Ккал - {0} Ккал - {0} Ккал - {0} Ккал - {0} Ккал - кілоджоуль {0} кДж @@ -8109,6 +8488,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кДж {0} кДж + + джоулі + {0} Дж + {0} Дж + {0} Дж + {0} Дж + кВт год {0} кВт год @@ -8123,12 +8509,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ГГц {0} ГГц - - Гц - {0} Гц - {0} Гц - {0} Гц - {0} Гц + + МГц + {0} МГц + {0} МГц + {0} МГц + {0} МГц кГц @@ -8137,26 +8523,28 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кГц {0} кГц - - МГц - {0} МГц - {0} МГц - {0} МГц - {0} МГц + + Гц + {0} Гц + {0} Гц + {0} Гц + {0} Гц - - а. о. - {0} а. о. - {0} а. о. - {0} а. о. - {0} а. о. + + км + {0} км + {0} км + {0} км + {0} км + {0}/км - - см - {0} см - {0} см - {0} см - {0} см + + метри + {0} м + {0} м + {0} м + {0} м + {0}/м дм @@ -8165,54 +8553,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} дм {0} дм - - фут - {0} фут - {0} фути - {0} футів - {0} фута - - - дюйми - {0} дюйм - {0} дюйми - {0} дюймів - {0} дюйма - - - км - {0} км - {0} км - {0} км - {0} км - - - св. р. - {0} св. р. - {0} св. р. - {0} св. р. - {0} св. р. - - - метри - {0} м - {0} м - {0} м - {0} м - - - мкм - {0} мкм - {0} мкм - {0} мкм - {0} мкм - - - милі - {0} миля - {0} милі - {0} миль - {0} милі + + см + {0} см + {0} см + {0} см + {0} см + {0}/см мм @@ -8221,6 +8568,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мм {0} мм + + мкм + {0} мкм + {0} мкм + {0} мкм + {0} мкм + нм {0} нм @@ -8228,20 +8582,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} нм {0} нм - - м. милі - {0} м. миля - {0} м. милі - {0} м. миль - {0} м. милі - - - парсеки - {0} пк - {0} пк - {0} пк - {0} пк - пм {0} пм @@ -8249,6 +8589,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} пм {0} пм + + милі + {0} миля + {0} милі + {0} миль + {0} милі + ярди {0} ярд @@ -8256,6 +8603,57 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ярдів {0} ярда + + фут + {0} фут + {0} фути + {0} футів + {0} фута + {0}/фут + + + дюйми + {0} дюйм + {0} дюйми + {0} дюймів + {0} дюйма + {0}/дюйм + + + парсеки + {0} пк + {0} пк + {0} пк + {0} пк + + + св. р. + {0} св. р. + {0} св. р. + {0} св. р. + {0} св. р. + + + а. о. + {0} а. о. + {0} а. о. + {0} а. о. + {0} а. о. + + + м. милі + {0} м. миля + {0} м. милі + {0} м. миль + {0} м. милі + + + сканд. миля + {0} сканд. миля + {0} сканд. милі + {0} сканд. миль + {0} сканд. милі + люкс {0} лк @@ -8263,27 +8661,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} лк {0} лк - - карати - {0} кар - {0} кар - {0} кар - {0} кар - - - грами - {0} г - {0} г - {0} г - {0} г - - - кг - {0} кг - {0} кг - {0} кг - {0} кг - метр. т {0} метр. т @@ -8291,12 +8668,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} метр. т {0} метр. т - - мкг - {0} мкг - {0} мкг - {0} мкг - {0} мкг + + кг + {0} кг + {0} кг + {0} кг + {0} кг + {0}/кг + + + грами + {0} г + {0} г + {0} г + {0} г + {0}/г мг @@ -8305,26 +8691,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мг {0} мг - - унції - {0} унція - {0} унції - {0} унцій - {0} унції - - - тр. унції - {0} тр. унція - {0} тр. унції - {0} тр. унцій - {0} тр. унції - - - фунти - {0} фунт - {0} фунти - {0} фунтів - {0} фунта + + мкг + {0} мкг + {0} мкг + {0} мкг + {0} мкг тонни @@ -8333,6 +8705,36 @@ For terms of use, see http://www.unicode.org/copyright.html {0} т {0} т + + фунти + {0} фунт + {0} фунти + {0} фунтів + {0} фунта + {0}/фунт + + + унц. + {0} унц. + {0} унц. + {0} унц. + {0} унц. + {0}/унц. + + + тр. унції + {0} тр. унція + {0} тр. унції + {0} тр. унцій + {0} тр. унції + + + карати + {0} кар + {0} кар + {0} кар + {0} кар + ГВт {0} ГВт @@ -8340,20 +8742,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ГВт {0} ГВт - - к. с. - {0} к. с. - {0} к. с. - {0} к. с. - {0} к. с. - - - кВт - {0} кВт - {0} кВт - {0} кВт - {0} кВт - МВт {0} МВт @@ -8361,12 +8749,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} МВт {0} МВт - - мВт - {0} мВт - {0} мВт - {0} мВт - {0} мВт + + кВт + {0} кВт + {0} кВт + {0} кВт + {0} кВт вати @@ -8375,6 +8763,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Вт {0} Вт + + мВт + {0} мВт + {0} мВт + {0} мВт + {0} мВт + + + к. с. + {0} к. с. + {0} к. с. + {0} к. с. + {0} к. с. + гПа {0} гПа @@ -8382,20 +8784,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} гПа {0} гПа - - дюйми рт. ст. - {0} дюйм рт. ст. - {0} дюйми рт. ст. - {0} дюймів рт. ст. - {0} дюйма рт. ст. - - - мбар - {0} мбар - {0} мбари - {0} мбарів - {0} мбара - мм рт. ст. {0} мм рт. ст. @@ -8410,12 +8798,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} фунтів/дюйм² {0} фунта/дюйм² - - Карати - {0} Кар. - {0} Кар. - {0} Кар. - {0} Кар. + + дюйми рт. ст. + {0} дюйм рт. ст. + {0} дюйми рт. ст. + {0} дюймів рт. ст. + {0} дюйма рт. ст. + + + мбар + {0} мбар + {0} мбари + {0} мбарів + {0} мбара км/годину @@ -8438,6 +8833,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миль/год {0} милі/год + + kn + {0} kn + {0} kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + {0}° + {0}° + градус Цельсія {0}°C @@ -8459,41 +8868,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} К {0} К - - акр-фути - {0} акр-фут - {0} акр-фути - {0} акр-футів - {0} акр-фута - - - сл - {0} сл - {0} сл - {0} сл - {0} сл - - - см³ - {0} см³ - {0} см³ - {0} см³ - {0} см³ - - - фути³ - {0} фут³ - {0} фути³ - {0} футів³ - {0} фута³ - - - дюйми³ - {0} дюйм³ - {0} дюйми³ - {0} дюймів³ - {0} дюйма³ - км³ {0} км³ @@ -8507,6 +8881,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} м³ {0} м³ {0} м³ + {0}/м³ + + + см³ + {0} см³ + {0} см³ + {0} см³ + {0} см³ + {0}/см³ милі³ @@ -8522,33 +8905,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ярдів³ {0} ярда³ - - чашка - {0} чаш. - {0} чаш. - {0} чаш. - {0} чаш. + + фути³ + {0} фут³ + {0} фути³ + {0} футів³ + {0} фута³ - - дл - {0} дл - {0} дл - {0} дл - {0} дл + + дюйми³ + {0} дюйм³ + {0} дюйми³ + {0} дюймів³ + {0} дюйма³ - - рід. ун. - {0} рід. ун. - {0} рід. ун. - {0} рід. ун. - {0} рід. ун. - - - гал. - {0} гал. - {0} гал. - {0} гал. - {0} гал. + + Мл + {0} Мл + {0} Мл + {0} Мл + {0} Мл гл @@ -8563,13 +8939,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} л {0} л {0} л + {0}/л - - Мл - {0} Мл - {0} Мл - {0} Мл - {0} Мл + + дл + {0} дл + {0} дл + {0} дл + {0} дл + + + сл + {0} сл + {0} сл + {0} сл + {0} сл мл @@ -8578,12 +8962,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0} мл {0} мл - - пінти - {0} пінта - {0} пінти - {0} пінт - {0} пінти + + метрична пінта + {0} метрична пінта + {0} метричні пінти + {0} метричних пінт + {0} метричної пінти + + + метричні скл. + {0} метрична скл. + {0} метричні скл. + {0} метричних скл. + {0} метричної скл. + + + акр-фути + {0} акр-фут + {0} акр-фути + {0} акр-футів + {0} акр-фута + + + гал. + {0} гал. + {0} гал. + {0} гал. + {0} гал. + {0}/гал. квар. @@ -8592,6 +8998,27 @@ For terms of use, see http://www.unicode.org/copyright.html {0} квар. {0} квар. + + пінти + {0} пінта + {0} пінти + {0} пінт + {0} пінти + + + склянки + {0} скл. + {0} скл. + {0} скл. + {0} скл. + + + рід. ун. + {0} рід. ун. + {0} рід. ун. + {0} рід. ун. + {0} рід. ун. + ст. л. {0} ст. л. @@ -8606,6 +9033,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} ч. л. {0} ч. л. + + {0} на Сх + {0} на Пн + {0} на Пд + {0} на Зх + @@ -8617,6 +9050,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}° + {0}° + {0}′ {0}′ @@ -8629,17 +9068,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - {0}° - {0}° - - - {0} акр - {0} акри - {0} акрів - {0} акра + + {0} км² + {0} км² + {0} км² + {0} км² {0} га @@ -8647,18 +9080,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} га {0} га - - {0} фут² - {0} фути² - {0} футів² - {0} фута² - - - {0} км² - {0} км² - {0} км² - {0} км² - {0} м² {0} м² @@ -8671,9 +9092,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0} миль² {0} милі² + + {0} акр + {0} акри + {0} акрів + {0} акра + + + {0} фут² + {0} фути² + {0} футів² + {0} фута² + + + л/100 км + {0} л/100 км + {0} л/100 км + {0} л/100 км + {0} л/100 км + + + р. + {0} р. + {0} р. + {0} р. + {0} р. + + + міс. + {0} міс. + {0} міс. + {0} міс. + {0} міс. + + + тиж. + {0} тиж. + {0} тиж. + {0} тиж. + {0} тиж. + день - {0} д. + {0} дн. {0} дн. {0} дн. {0} дн. @@ -8685,20 +9146,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} год {0} год - - мкс - {0} мкс - {0} мкс - {0} мкс - {0} мкс - - - мс - {0} мс - {0} мс - {0} мс - {0} мс - хв {0} хв @@ -8706,13 +9153,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} хв {0} хв - - міс. - {0} міс. - {0} міс. - {0} міс. - {0} міс. - с {0} с @@ -8720,38 +9160,19 @@ For terms of use, see http://www.unicode.org/copyright.html {0} с {0} с - - тиж. - {0} тиж. - {0} тиж. - {0} тиж. - {0} тиж. + + мс + {0} мс + {0} мс + {0} мс + {0} мс - - р. - {0} р. - {0} р. - {0} р. - {0} р. - - - см - {0} см - {0} см - {0} см - {0} см - - - {0} фут - {0} фути - {0} футів - {0} фута - - - {0} дюйм - {0} дюйми - {0} дюймів - {0} дюйма + + мкс + {0} мкс + {0} мкс + {0} мкс + {0} мкс км @@ -8760,12 +9181,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} км {0} км - - {0} св. р. - {0} св. р. - {0} св. р. - {0} св. р. - метр {0} м @@ -8773,11 +9188,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} м {0} м - - {0} миля - {0} милі - {0} миль - {0} милі + + см + {0} см + {0} см + {0} см + {0} см мм @@ -8792,18 +9208,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} пм {0} пм + + {0} миля + {0} милі + {0} миль + {0} милі + {0} ярд {0} ярди {0} ярдів {0} ярда - - грам - {0} г - {0} г - {0} г - {0} г + + {0} фут + {0} фути + {0} футів + {0} фута + + + {0} дюйм + {0} дюйми + {0} дюймів + {0} дюйма + + + {0} св. р. + {0} св. р. + {0} св. р. + {0} св. р. кг @@ -8812,11 +9245,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} кг {0} кг - - {0} унція - {0} унції - {0} унцій - {0} унції + + грам + {0} г + {0} г + {0} г + {0} г {0} фунт @@ -8824,11 +9258,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} фунтів {0} фунта - - {0} к.с. - {0} к.с. - {0} к.с. - {0} к.с. + + {0} унція + {0} унції + {0} унцій + {0} унції {0} кВт @@ -8842,6 +9276,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Вт {0} Вт + + {0} к.с. + {0} к.с. + {0} к.с. + {0} к.с. + {0} гПа {0} гПа @@ -8917,6 +9357,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} л {0} л + + {0} Сх + {0} Пн + {0} Пд + {0} Зх + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/uk_UA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/uk_UA.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/uk_UA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/uk_UA.xml index 5aea328ddb3..a1c019b08d7 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/uk_UA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/uk_UA.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ur.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ur.xml similarity index 90% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ur.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ur.xml index 67a5e83eed3..f7fab5db13a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ur.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ur.xml @@ -1,13 +1,12 @@ - - - + @@ -31,23 +30,27 @@ For terms of use, see http://www.unicode.org/copyright.html ایمارا آزربائیجانی ازیری + جنوبی آزربائیجانی باشکیر بیلاروسی بیمبا بینا بلغاری + مغربی بلوچی بمبارا بنگالی تبتی بریٹن بوڈو بوسنی - کیٹالان + کیٹالان + چیچن چیگا چیروکی سورانی کردش کوراسیکن چیک + چوواش ویلش ڈینش تائتا @@ -112,9 +115,9 @@ For terms of use, see http://www.unicode.org/copyright.html سچوان ای آئس لینڈک اطالوی - اینُکٹیٹٹ + اینُکٹیٹٹ جاپانی - نگومبا + نگومبا ماشیم جاوی جارجی @@ -124,7 +127,7 @@ For terms of use, see http://www.unicode.org/copyright.html كابويرديانو کانگو كويرا شيني - کیکویو + کیکویو قزاخ كالاليست كالينجين @@ -141,12 +144,13 @@ For terms of use, see http://www.unicode.org/copyright.html کرغیزی لاطینی لانگی - لگژمبرگش + لگژمبرگش گینڈا لاکوٹا لِنگَلا لاؤ لوزی + شمالی لری لتھُواینین لبا-كاتانجا لیوبا لولوآ @@ -162,16 +166,19 @@ For terms of use, see http://www.unicode.org/copyright.html ماؤری مقدونیائی مالایالم - منگؤلی - موہاک + منگؤلی + موہاک مراٹهی مالائی مالٹی منڈانگ برمی + مزندرانی ناما نارویجین بوکمل شمالی دبیل + ادنی جرمن + ادنی سیکسن نیپالی ڈچ فلیمِش @@ -197,20 +204,21 @@ For terms of use, see http://www.unicode.org/copyright.html كيشی رومانش رونڈی - رومینین - مالدووا + رومینین + مالدووا رومبو روسی کینیاروانڈا - روا + روا سَنسکرِت سامبورو سانگو سندھی + جنوبی کرد شمالی سامی سینا كويرابورو سينی - سانجو + ساںغو سربو-کروئیشین تشلحيت سنہالا @@ -220,7 +228,7 @@ For terms of use, see http://www.unicode.org/copyright.html جنوبی سامی لول سامی اناری سامی - سکولٹ سامی + سکولٹ سامی شونا صومالی البانی @@ -230,7 +238,7 @@ For terms of use, see http://www.unicode.org/copyright.html سنڈانیز سویڈش سواحلی - کانگو سواحلی + کانگو سواحلی تمل تیلگو تیسو @@ -260,13 +268,14 @@ For terms of use, see http://www.unicode.org/copyright.html وائی وینڈا ویتنامی - ونجو + ونجو + وارلپیری وولوف ژوسا سوگا یدش یوروبا - اسٹینڈرڈ مراقشی تمازیقی + اسٹینڈرڈ مراقشی تمازیقی چینی چینی (آسان کردہ) روایتی چینی @@ -348,7 +357,7 @@ For terms of use, see http://www.unicode.org/copyright.html شمالی یورپ مغربی یورپ لاطینی امریکہ - اسینشن آئلینڈ + اسینشن آئلینڈ انڈورا متحدہ عرب امارات افغانستان @@ -356,7 +365,6 @@ For terms of use, see http://www.unicode.org/copyright.html انگوئیلا البانیہ آرمینیا - نیدرلینڈز انٹیلیز انگولا انٹارکٹیکا ارجنٹینا @@ -367,7 +375,7 @@ For terms of use, see http://www.unicode.org/copyright.html آلینڈ آئلینڈز آذربائجان بوسنیا اور ہرزیگووینا - بارباڈوس + بارباڈوس بنگلہ دیش بیلجیم برکینا فاسو @@ -380,7 +388,7 @@ For terms of use, see http://www.unicode.org/copyright.html برونئی بولیویا کریبیائی نیدرلینڈز - برازیل + برازیل بہاماس بھوٹان بؤویٹ آئلینڈ @@ -402,7 +410,7 @@ For terms of use, see http://www.unicode.org/copyright.html کیمرون چین کولمبیا - کلپرٹن آئلینڈ + کلپرٹن آئلینڈ کوسٹا ریکا کیوبا کیپ ورڈی @@ -431,12 +439,12 @@ For terms of use, see http://www.unicode.org/copyright.html فاکلینڈ جزائر فاکلینڈ جزائر (مالویناس) مائکرونیشیا - فیرو آئلینڈز + جزائر فارو فرانس گیبون سلطنت متحدہ یو کے - گریناڈا + گریناڈا جارجیا فرینچ گیانا گوئرنسی @@ -525,7 +533,7 @@ For terms of use, see http://www.unicode.org/copyright.html نامیبیا نیو کلیڈونیا نائجر - نارفوک آئلینڈ + نارفوک آئلینڈ نائجیریا نکاراگووا نیدر لینڈز @@ -555,7 +563,7 @@ For terms of use, see http://www.unicode.org/copyright.html ری یونین رومانیا سربیا - روس + روس روانڈا سعودی عرب سولومن آئلینڈز @@ -632,6 +640,9 @@ For terms of use, see http://www.unicode.org/copyright.html عددی چھٹائی چھٹائی کی قوت کرنسی + گھنٹہ سائیکل (12 بنام 24) + لائن بریک انداز + پیمائش کا نظام اعداد منطقۂ وقت مقام کا متغیرہ @@ -639,95 +650,105 @@ For terms of use, see http://www.unicode.org/copyright.html نجی-استعمال - عربی ہندی ہندسے - توسیع شدہ عربی ہندی ہندسے - آرمینیائی اعداد - آرمینیائی زیریں اعداد - بنگالی ہندسے - روایتی چینی کی چھٹائی کی ترتیب - Big5 - بودھ کلینڈر - چینی کیلنڈر - کاپٹک کیلنڈر - ڈینگی کیلنڈر - دیوناگری ہندسے - لغت کی چھٹنی کی ترتیب - ڈیفالٹ یونیکوڈ کی چھٹنی کی ترتیب - ایتھوپیائی اعداد - ایتھوپیائی کیلنڈر - ایتھوپک امیٹ الیم کیلنڈر - مالیاتی ہندسے - پورے عرض والے ہندسے - آسان چینی کی چھٹائی کی ترتیب - GB2312 - جارجیائی اعداد - جارجیائی کیلنڈر - یونانی اعداد - یونانی زیریں اعداد - گجراتی ہندسے - گرمکھی ہندسے - چینی اعشاری اعداد - آسان چینی اعداد - آسان چینی مالی اعداد - روایتی چینی اعداد - روایتی چینی مالی اعداد - عبرانی اعداد - عبرانی کیلنڈر - سبھی کی چھٹائی کریں - ہندوستانی قومی کیلنڈر - اسلامی کیلنڈر - اسلامی شہری کیلنڈر - ISO-8601 کیلنڈر - جاپانی کیلنڈر - جاپانی اعداد - جاپانی مالی اعداد - خمیر ہندسے - کنڑ ہندسے - لاؤ ہندسے - مغربی ہندسے - پہلے چھوٹے حروف کی چھٹائی کریں - ملیالم ہندسے - منگولیائی ہندسے - میانمار کے ہندسے - اصل ہندسے - لہجوں کی چھٹائی معمول کے انداز میں کریں - معمول کے حروف کی ترتیب کی چھٹائی کریں - حروف کی عدم حساسیت کی چھٹائی کریں - Kana کی چھٹائی الگ الگ کریں - حسب معمول بنائے بغیر چھٹائی کریں - انفرادی طور پر ہندسوں کی چھٹائی کریں - علامات کی چھٹائی کریں - اڑیہ ہندسے - فارسی کیلنڈر - فون بک کی چھٹنی کی ترتیب - صوتی چھٹائی کی ترتیب - پن ین کی چھٹنی کی ترتیب - صرف اساسی حروف کی چھٹائی کریں - لہجہ/ بڑے چھوٹے حروف/چوڑائی/Kana کی چھٹائی کریں - دوبارہ تشکیل شدہ چھٹنی کی ترتیب - منگوو کیلنڈر - رومن اعداد - رومن زیریں اعداد - عام-مقصد کی تلاش - Hangul Initial Consonant کے لحاظ سے تلاش کریں - لہجوں کی چھٹائی کریں - علامات کو نظرانداز کرکے چھٹائی کریں - معیاری چھنٹائی کی ترتیب - سٹروک کی چھٹنی کی ترتیب - روایتی تمل اعداد - تمل اعداد - تیلگو ہندسے - لہجوں/حروف/چوڑائی کی چھٹائی کریں - تھائی ہندسے - تبتی اعداد - روایتی چھٹنی کی ترتیب - روایتی اعداد - اساسی-سٹروک کی چھٹنی کی ترتیب - پہلے بالائی حروف کی چھٹائی کریں - وائی ہندسے - لہجوں کی معکوس چھٹائی کریں - حروف کے تئیں حساس کی چھٹائی کریں - Kana کی مختلف طریقے سے چھٹائی کریں - معمول کے یونیکوڈ کی چھٹائی کریں - اعداد کے لحاظ سے ہندسوں کی چھٹائی کریں + بودھ کلینڈر + چینی کیلنڈر + کاپٹک کیلنڈر + ڈانگی کیلنڈر + ایتھوپیائی کیلنڈر + ایتھوپک امیٹ الیم کیلنڈر + جارجیائی کیلنڈر + عبرانی کیلنڈر + ہندوستانی قومی کیلنڈر + اسلامی کیلنڈر + اسلامی شہری کیلنڈر + ISO-8601 کیلنڈر + جاپانی کیلنڈر + فارسی کیلنڈر + منگوو کیلنڈر + علامات کی چھٹائی کریں + علامات کو نظرانداز کرکے چھٹائی کریں + لہجوں کی چھٹائی معمول کے انداز میں کریں + لہجوں کی معکوس چھٹائی کریں + پہلے چھوٹے حروف کی چھٹائی کریں + معمول کے حروف کی ترتیب کی چھٹائی کریں + پہلے بالائی حروف کی چھٹائی کریں + حروف کی عدم حساسیت کی چھٹائی کریں + حروف کے تئیں حساس کی چھٹائی کریں + Kana کی چھٹائی الگ الگ کریں + Kana کی مختلف طریقے سے چھٹائی کریں + روایتی چینی کی چھٹائی کی ترتیب - Big5 + لغت کی چھٹنی کی ترتیب + ڈیفالٹ یونیکوڈ کی چھٹنی کی ترتیب + آسان چینی کی چھٹائی کی ترتیب - GB2312 + فون بک کی چھٹنی کی ترتیب + صوتی چھٹائی کی ترتیب + پن ین کی چھٹنی کی ترتیب + دوبارہ تشکیل شدہ چھٹنی کی ترتیب + عام-مقصد کی تلاش + Hangul Initial Consonant کے لحاظ سے تلاش کریں + معیاری چھنٹائی کی ترتیب + سٹروک کی چھٹنی کی ترتیب + روایتی چھٹنی کی ترتیب + اساسی-سٹروک کی چھٹنی کی ترتیب + حسب معمول بنائے بغیر چھٹائی کریں + معمول کے یونیکوڈ کی چھٹائی کریں + انفرادی طور پر ہندسوں کی چھٹائی کریں + اعداد کے لحاظ سے ہندسوں کی چھٹائی کریں + سبھی کی چھٹائی کریں + صرف اساسی حروف کی چھٹائی کریں + لہجہ/ بڑے چھوٹے حروف/چوڑائی/Kana کی چھٹائی کریں + لہجوں کی چھٹائی کریں + لہجوں/حروف/چوڑائی کی چھٹائی کریں + 12 گھنٹے کا نظام (0–11) + 12 گھنٹے کا نظام (1–12) + 24 گھنٹے کا نظام (0–23) + 24 گھنٹے کا نظام (1–24) + ڈھیلا لائن بریک انداز + عمومی لائن بریک انداز + سخت لائن بریک انداز + میٹرک نظام + پیمائش کا امپیریل نظام + پیمائش کا برطانوی نظام + عربی ہندی ہندسے + توسیع شدہ عربی ہندی ہندسے + آرمینیائی اعداد + آرمینیائی زیریں اعداد + بنگالی ہندسے + دیوناگری ہندسے + ایتھوپیائی اعداد + مالیاتی ہندسے + پورے عرض والے ہندسے + جارجیائی اعداد + یونانی اعداد + یونانی زیریں اعداد + گجراتی ہندسے + گرمکھی ہندسے + چینی اعشاری اعداد + آسان چینی اعداد + آسان چینی مالی اعداد + روایتی چینی اعداد + روایتی چینی مالی اعداد + عبرانی اعداد + جاپانی اعداد + جاپانی مالی اعداد + خمیر ہندسے + کنڑ ہندسے + لاؤ ہندسے + مغربی ہندسے + ملیالم ہندسے + منگولیائی ہندسے + میانمار کے ہندسے + اصل ہندسے + اڑیہ ہندسے + رومن اعداد + رومن زیریں اعداد + روایتی تمل اعداد + تمل اعداد + تیلگو ہندسے + تھائی ہندسے + تبتی اعداد + روایتی اعداد + وائی ہندسے BGN @@ -824,6 +845,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d E y G MMM y G @@ -841,6 +863,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL d MMM E، d MMM + MMMM d mm:ss y G y G @@ -850,6 +873,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y G d MMM، y G E، d MMM، y G + G y MMMM QQQ y G QQQQ y G @@ -1164,31 +1188,77 @@ For terms of use, see http://www.unicode.org/copyright.html - ق.د. - ب.د. + آدھی رات + AM + PM + صبح + دوپہر + سہ پہر + شام + رات + آدھی رات a - n p + صبح + دوپہر + سہ پہر + شام + رات + آدھی رات قبل دوپہر - دوپہر بعد دوپہر + صبح + دوپہر + سہ پہر + شام + رات + + + + + آدھی رات + AM + PM + صبح + دوپہر + سہ پہر + شام + رات + + + آدھی رات + a + p + صبح + دوپہر + سہ پہر + شام + رات + + + آدھی رات + AM + PM + صبح + دوپہر + سہ پہر + شام + رات قبل مسیح - عیسوی سن - CE + عیسوی - ق م - عیسوی سن - CE + قبل مسیح + عیسوی @@ -1274,12 +1344,17 @@ For terms of use, see http://www.unicode.org/copyright.html HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L d/M E، d/M LLL d MMM E، d MMM + MMMM d mm:ss y M/y @@ -1288,6 +1363,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y d MMM، y E، d MMM، y + y MMMM QQQ y QQQQ y @@ -1375,7 +1451,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y – MMM y - d–d MMM، y + y MMM d–d d MMM – d MMM، y d MMM، y – d MMM، y @@ -1438,6 +1514,9 @@ For terms of use, see http://www.unicode.org/copyright.html سال + گزشتہ سال + اس سال + اگلے سال {0} سال میں {0} سال میں @@ -1449,6 +1528,9 @@ For terms of use, see http://www.unicode.org/copyright.html سال + گزشتہ سال + اس سال + اگلے سال +{0} سال میں +{0} سال میں @@ -1487,8 +1569,8 @@ For terms of use, see http://www.unicode.org/copyright.html {0} سہ ماہی میں - {0} سہ ماہی پہلے - {0} سہ ماہی پہلے + {0} سہ ماہی پہلے + {0} سہ ماہی پہلے @@ -1507,6 +1589,9 @@ For terms of use, see http://www.unicode.org/copyright.html ماہ + پچھلے مہینہ + اس مہینہ + اگلے مہینہ {0} ماہ میں {0} ماہ میں @@ -1523,8 +1608,8 @@ For terms of use, see http://www.unicode.org/copyright.html +{0} ماہ میں - {0} ماہ پہلے - {0} ماہ پہلے + {0} ماہ پہلے + {0} ماہ پہلے @@ -1543,6 +1628,9 @@ For terms of use, see http://www.unicode.org/copyright.html ہفتہ + پچھلے ہفتہ + اس ہفتہ + اگلے ہفتہ {0} ہفتے میں {0} ہفتے میں @@ -1554,13 +1642,16 @@ For terms of use, see http://www.unicode.org/copyright.html ہفتہ + پچھلے ہفتہ + اس ہفتہ + اگلے ہفتہ {0} ہفتہ میں {0} ہفتے میں - {0} ہفتہ پہلے - {0} ہفتے پہلے + {0} ہفتہ پہلے + {0} ہفتے پہلے @@ -1581,6 +1672,11 @@ For terms of use, see http://www.unicode.org/copyright.html دن + گزشتہ پرسوں + گزشتہ کل + آج + آئندہ کل + آنے والا پرسوں {0} دن میں {0} دنوں میں @@ -1592,13 +1688,18 @@ For terms of use, see http://www.unicode.org/copyright.html دن + گزشتہ پرسوں + گزشتہ کل + آج + آئندہ کل + آنے والا پرسوں {0} دنوں میں {0} دنوں میں - {0} دن پہلے - {0} دن پہلے + {0} دن پہلے + {0} دن پہلے @@ -1695,9 +1796,9 @@ For terms of use, see http://www.unicode.org/copyright.html اگلے جمعہ - گزشتہ ہفتہ - یہ ہفتہ - اگلے ہفتہ + گزشتہ سنیچر + اس سنیچر + اگلے سنیچر گزشتہ سنیچر @@ -2290,7 +2391,7 @@ For terms of use, see http://www.unicode.org/copyright.html کوسرائی - فروئی + فارو پیرس @@ -2377,7 +2478,7 @@ For terms of use, see http://www.unicode.org/copyright.html پورٹ او پرنس - بدھاپیسٹ + بڈاپسٹ جکارتہ @@ -2691,6 +2792,9 @@ For terms of use, see http://www.unicode.org/copyright.html پورٹ موریسبی + + بوگینولے + منیلا @@ -2775,6 +2879,9 @@ For terms of use, see http://www.unicode.org/copyright.html ارکتسک + + چیتا + یکوتسک @@ -2793,6 +2900,9 @@ For terms of use, see http://www.unicode.org/copyright.html میگیدن + + سرہدنیکولیمسک + کیمچٹکا @@ -3375,7 +3485,7 @@ For terms of use, see http://www.unicode.org/copyright.html - مزید مشرقی یورپی وقت + بعید مشرقی یورپی وقت @@ -4087,6 +4197,34 @@ For terms of use, see http://www.unicode.org/copyright.html ¤ #,##,##0.00 + + + ¤ 0 ہزار + ¤ 0 ہزار + ¤ 00 ہزار + ¤ 00 ہزار + ¤ 0 لاکھ + ¤ 0 لاکھ + ¤ 00 لاکھ + ¤ 00 لاکھ + ¤ 0 کروڑ + ¤ 0 کروڑ + ¤ 00 کروڑ + ¤ 00 کروڑ + ¤ 0 ارب + ¤ 0 ارب + ¤ 00 ارب + ¤ 00 ارب + ¤ 0 کھرب + ¤ 0 کھرب + ¤0 ٹریلین + ¤0 ٹریلین + ¤ 00 ٹریلین + ¤ 00 ٹریلین + ¤ 000 ٹریلین + ¤ 000 ٹریلین + + {0} {1} {0} {1} @@ -4126,6 +4264,7 @@ For terms of use, see http://www.unicode.org/copyright.html انگولا کا کوانزا انگولا کا کوانزا AOA + Kz ارجنٹائن پیسہ @@ -4158,6 +4297,7 @@ For terms of use, see http://www.unicode.org/copyright.html بوسنیا ہرزیگووینا کا قابل منتقلی نشان بوسنیا ہرزیگووینا کا قابل منتقلی نشان BAM + KM باربیڈین ڈالر @@ -4210,6 +4350,7 @@ For terms of use, see http://www.unicode.org/copyright.html بولیوین بولیویانو بولیوین بولیویانو BOB + Bs برازیلی ریئل @@ -4236,6 +4377,7 @@ For terms of use, see http://www.unicode.org/copyright.html بوتسوانا کا پولا بوتسوانا کا پولا BWP + P بیلاروسی روبل @@ -4303,6 +4445,7 @@ For terms of use, see http://www.unicode.org/copyright.html کیوبا کا قابل منتقلی پیسو کیوبا کا قابل منتقلی پیسو CUC + $ کیوبا کا پیسو @@ -4322,6 +4465,7 @@ For terms of use, see http://www.unicode.org/copyright.html جمہوریہ چیک کرونا جمہوریہ چیک کروناز CZK + ڈچ مارکس @@ -4333,10 +4477,11 @@ For terms of use, see http://www.unicode.org/copyright.html DJF - ڈنمارک کرون - ڈنمارک کرون - ڈنمارک کرون + ڈنمارک کرون + ڈنمارک کرون + ڈنمارک کرون DKK + kr ڈومنیکن پیسو @@ -4359,6 +4504,7 @@ For terms of use, see http://www.unicode.org/copyright.html مصری پاؤنڈ مصری پاؤنڈ EGP + اریٹیریا کا نافکا @@ -4391,6 +4537,7 @@ For terms of use, see http://www.unicode.org/copyright.html فاکلینڈ آئلینڈز پونڈ فاکلینڈ آئلینڈز پونڈ FKP + £ فرانسیسی فرانک @@ -4407,6 +4554,7 @@ For terms of use, see http://www.unicode.org/copyright.html جارجیائی لاری جارجیائی لاری GEL + گھانا کا سیڈی @@ -4432,12 +4580,14 @@ For terms of use, see http://www.unicode.org/copyright.html گنی فرانک گنی فرانک GNF + FG گواٹے مالا کا کوئٹزل گواٹے مالا کا کوئٹزل گواٹے مالا کا کوئٹزل GTQ + Q گویانیز ڈالر @@ -4458,12 +4608,14 @@ For terms of use, see http://www.unicode.org/copyright.html ہونڈوران لیمپیرا ہونڈوران لیمپیرا HNL + L کروشین کونا کروشین کونا کروشین کونا HRK + kn ہیتی کا گؤرڈی @@ -4476,12 +4628,14 @@ For terms of use, see http://www.unicode.org/copyright.html ہنگرین فورنٹ ہنگرین فورنٹ HUF + Ft انڈونیشین روپیہ انڈونیشین روپیہ انڈونیشین روپیہ IDR + Rp اسرائیلی نیا شیکل @@ -4514,6 +4668,7 @@ For terms of use, see http://www.unicode.org/copyright.html آئس لينڈی کرونا آئس لينڈی کرونوں ISK + kr جمائیکن ڈالر @@ -4559,12 +4714,14 @@ For terms of use, see http://www.unicode.org/copyright.html کوموریئن فرانک کوموریئن فرانک KMF + CF شمالی کوریائی وون شمالی کوریائی وون شمالی کوریائی وون KPW + جنوبی کوریائی وون @@ -4605,12 +4762,14 @@ For terms of use, see http://www.unicode.org/copyright.html لبنانی پونڈ لبنانی پونڈ LBP + سری لنکائی روپیہ سری لنکائی روپیہ سری لنکائی روپیہ LKR + Rs لائبریائی ڈالر @@ -4657,6 +4816,7 @@ For terms of use, see http://www.unicode.org/copyright.html ملاگاسی اریاری ملاگاسی اریاری MGA + Ar مقدونیائی دینار @@ -4669,6 +4829,7 @@ For terms of use, see http://www.unicode.org/copyright.html میانما کیاٹ میانما کیاٹ MMK + K منگولیائی ٹگرِ @@ -4694,6 +4855,7 @@ For terms of use, see http://www.unicode.org/copyright.html ماریشس کا روپیہ ماریشس کا روپیہ MUR + Rs مالدیپ کا روفیہ @@ -4719,6 +4881,7 @@ For terms of use, see http://www.unicode.org/copyright.html ملیشیائی رنگِٹ ملیشیائی رنگِٹ MYR + RM موزامبیقی میٹیکل @@ -4745,18 +4908,21 @@ For terms of use, see http://www.unicode.org/copyright.html نکارا گوا کا کورڈوبا نکارا گوا کا کورڈوبا NIO + C$ - ناروے کرون - ناروے کرون - ناروے کرون + ناروے کرون + ناروے کرون + ناروے کرون NOK + kr نیپالی روپیہ نیپالی روپیہ نیپالی روپیہ NPR + Rs نیوزی لینڈ ڈالر @@ -4801,12 +4967,14 @@ For terms of use, see http://www.unicode.org/copyright.html پاکستانی روپیہ پاکستانی روپیہ Rs + Rs پولش زلوٹی پولش زلوٹی پولش زلوٹی PLN + پیراگوئے کا گوآرنی @@ -4838,12 +5006,14 @@ For terms of use, see http://www.unicode.org/copyright.html روسی روبل روسی روبل RUB + روانڈا کا فرانک روانڈا کا فرانک روانڈا کا فرانک RWF + RF سعودی ریال @@ -4875,6 +5045,7 @@ For terms of use, see http://www.unicode.org/copyright.html سویڈن کرونا سویڈن کرونر SEK + kr سنگا پور ڈالر @@ -4888,6 +5059,7 @@ For terms of use, see http://www.unicode.org/copyright.html سینٹ ہیلینا پاؤنڈ سینٹ ہیلینا پاؤنڈ SHP + £ سلوانین ٹولر @@ -4926,12 +5098,14 @@ For terms of use, see http://www.unicode.org/copyright.html ساؤ ٹوم اور پرنسپے ڈوبرا ساؤ ٹوم اور پرنسپے ڈوبرا STD + Db شامی پونڈ شامی پونڈ شامی پونڈ SYP + £ سوازی لیلانجینی @@ -4944,6 +5118,7 @@ For terms of use, see http://www.unicode.org/copyright.html تھائی باہت تھائی باہت ฿ + ฿ تاجکستانی سومونی @@ -4968,6 +5143,7 @@ For terms of use, see http://www.unicode.org/copyright.html ٹونگن پانگا ٹونگن پانگا TOP + T$ ترکی لیرا @@ -4975,6 +5151,7 @@ For terms of use, see http://www.unicode.org/copyright.html ترکی لیرا TRY + TL ترینیداد اور ٹوباگو کا ڈالر @@ -5037,6 +5214,7 @@ For terms of use, see http://www.unicode.org/copyright.html وینزویلا بولیور وینزویلا بولیور VEF + Bs ویتنامی ڈانگ @@ -5058,9 +5236,9 @@ For terms of use, see http://www.unicode.org/copyright.html WST - CFA فرانک BEAC - CFA فرانک BEAC - CFA فرانکس BEAC + وسطی افریقی [CFA] فرانک + وسطی افریقی [CFA] فرانک + وسطی افریقی [CFA] فرانک FCFA @@ -5068,11 +5246,12 @@ For terms of use, see http://www.unicode.org/copyright.html مشرقی کریبیا کا ڈالر مشرقی کریبیا کا ڈالر EC$ + $ - CFA فرانک BCEAO - CFA فرانک BCEAO - CFA فرانکس BCEAO + مغربی افریقی [CFA] فرانک + مغربی افریقی [CFA] فرانک + مغربی افریقی [CFA] فرانک CFA @@ -5097,6 +5276,7 @@ For terms of use, see http://www.unicode.org/copyright.html جنوبی افریقی رانڈ جنوبی افریقی رانڈ ZAR + R زامبیائی کواچا (1968–2012) @@ -5106,6 +5286,7 @@ For terms of use, see http://www.unicode.org/copyright.html زامبیائی کواچا زامبیائی کواچا ZMW + ZK @@ -5128,6 +5309,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rev + {0} rev + {0} rev + + + rad + {0} rad + {0} rad + + + ڈگری + {0} ڈگری + {0} ڈگری + آرک منٹ {0} آرک منٹ @@ -5138,30 +5334,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} آرک سیکنڈ {0} آرک سیکنڈ - - ڈگری - {0} ڈگری - {0} ڈگری - - - rad - {0} rad - {0} rad - - - ایکڑ - {0} ایکڑ - {0} ایکڑ + + سکویر کلو میٹر + {0} سکویر کلو میٹر + {0} سکویر کلو میٹر ہیکٹر {0} ہیکٹر {0} ہیکٹر + + سکویر میٹر + {0} سکویر میٹر + {0} سکویر میٹر + {0}/m² + مربع سینٹی میٹر {0} مربع سینٹی میٹر {0} مربع سینٹی میٹر + {0}/cm² + + + سکویر میل + {0} سکویر میل + {0} سکویر میل + + + ایکڑ + {0} ایکڑ + {0} ایکڑ + + + مربع گز + {0} مربع گز + {0} مربع گز سکویر فٹ @@ -5172,91 +5380,106 @@ For terms of use, see http://www.unicode.org/copyright.html مربع انچ {0} مربع انچ {0} مربع انچ + {0}/in² - - سکویر کلو میٹر - {0} سکویر کلو میٹر - {0} سکویر کلو میٹر - - - سکویر میٹر - {0} سکویر میٹر - {0} سکویر میٹر - - - سکویر میل - {0} سکویر میل - {0} سکویر میل - - - مربع گز - {0} مربع گز - {0} مربع گز + + قیراط + {0} قیراط + {0} قیراط L/km {0} L/km {0} L/km + + لیٹر فی 100 کلو میٹر + {0} لیٹر فی 100 کلو میٹر + {0} لیٹر فی 100 کلو میٹر + mpg {0} mpg {0} mpg - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + صدیاں + {0} صدی + {0} صدیاں + + + سال + {0} سال + {0} سال + فی سال {0} + + + مہینے + {0} مہینہ + {0} مہینے + {0}/m + + + ہفتے + {0} ہفتہ + {0} ہفتے + {0}/w + دن {0} دن {0} دن + {0}/d گھنٹے @@ -5264,30 +5487,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} گھنٹے {0} فی گھنٹہ - - مائیکرو سیکنڈز - {0} مائیکرو سیکنڈ - {0} مائیکرو سیکنڈز - - - ملی سیکنڈز - {0} ملی سیکنڈ - {0} میل سیکنڈ - منٹ {0} منٹ {0} منٹ - - - مہینے - {0} مہینہ - {0} مہینے - - - نینو سیکنڈز - {0} نینو سیکنڈ - {0} نینو سیکنڈ + {0}/min سیکنڈ @@ -5295,15 +5499,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} سیکنڈ {0} فی سیکنڈ - - ہفتے - {0} ہفتہ - {0} ہفتے + + ملی سیکنڈز + {0} ملی سیکنڈ + {0} میل سیکنڈ - - سال - {0} سال - {0} سال + + مائیکرو سیکنڈز + {0} مائیکرو سیکنڈ + {0} مائیکرو سیکنڈز + + + نینو سیکنڈز + {0} نینو سیکنڈ + {0} نینو سیکنڈ amp @@ -5325,6 +5534,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -5335,21 +5549,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - joule - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + joule + {0} J + {0} J + kWh {0} kWh @@ -5360,201 +5569,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - ایسٹرونومیکل یونٹس - {0} ایسٹرونومیکل یونٹ - {0} ایسٹرونومیکل یونٹس + + کلو میٹر + {0} کلو میٹر + {0} کلو میٹر + {0}/km - - سینٹی میٹر - {0} سینٹی میٹر - {0} سینٹی میٹر + + میٹر + {0} میٹر + {0} میٹر + {0}/m dm {0} dm {0} dm - - فیٹ - {0} فیٹ - {0} فیٹ - - - انچ - {0} انچ - {0} انچ - - - کلو میٹر - {0} کلو میٹر - {0} کلو میٹر - - - نوری سال - {0} نوری سال - {0} نوری سال - - - میٹر - {0} میٹر - {0} میٹر - - - مائیکرو میٹر - {0} مائیکرو میٹر - {0} مائیکرو میٹر - - - میل - {0} میل - {0} میل + + سینٹی میٹر + {0} سینٹی میٹر + {0} سینٹی میٹر + {0}/cm ملی میٹر {0} ملیمیٹر {0} ملیمیٹر + + مائیکرو میٹر + {0} مائیکرو میٹر + {0} مائیکرو میٹر + nm {0} nm {0} nm - - بحری میل - {0} بحری میل - {0} بحری میل - - - پارسیک - {0} پارسیک - {0} پارسیک - پیکو میٹر {0} پیکو میٹر {0} پیکو میٹر + + میل + {0} میل + {0} میل + گز {0} یارڈ {0} یارڈ + + فیٹ + {0} فیٹ + {0} فیٹ + {0}/ft + + + انچ + {0} انچ + {0} انچ + {0}/in + + + پارسیک + {0} پارسیک + {0} پارسیک + + + نوری سال + {0} نوری سال + {0} نوری سال + + + ایسٹرونومیکل یونٹس + {0} ایسٹرونومیکل یونٹ + {0} ایسٹرونومیکل یونٹس + + + بحری میل + {0} بحری میل + {0} بحری میل + + + اسکینڈی نیویائی میل + {0} اسکینڈی نیویائی میل + {0} اسکینڈی نیویائی میل + lx {0} lx {0} lx - - قیراط - {0} قیراط - {0} قیراط - - - گرام - {0} گرام - {0} گرام - - - کلو گرام - {0} کلو گرام - {0} کلو گرام - میٹرک ٹن {0} میٹرک ٹن {0} میٹرک ٹن - - µg - {0} µg - {0} µg + + کلو گرام + {0} کلو گرام + {0} کلو گرام + {0}/kg + + + گرام + {0} گرام + {0} گرام + {0}/g ملی گرام {0} ملی گرام {0} ملی گرام - - اونس - {0} ونس - {0} ونس - - - oz t - {0} oz t - {0} oz t - - - پاؤنڈ - {0} پونڈ - {0} پونڈ + + µg + {0} µg + {0} µg ٹن {0} ٹن {0} ٹن + + پاؤنڈ + {0} پونڈ + {0} پونڈ + {0}/lb + + + اونس + {0} ونس + {0} ونس + {0}/oz + + + oz t + {0} oz t + {0} oz t + + + قیراط + {0} قیراط + {0} قیراط + GW {0} GW {0} GW - - ہارس پاور - {0} ہارس پاور - {0} ہارس پاور - - - کلو واٹ - {0} کلو واٹ - {0} کلو واٹ - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + کلو واٹ + {0} کلو واٹ + {0} کلو واٹ واٹ {0} واٹ {0} واٹ + + mW + {0} mW + {0} mW + + + ہارس پاور + {0} ہارس پاور + {0} ہارس پاور + ہیکٹو پاسکل {0} ہیکٹو پاسکل {0} ہیکٹو پاسکل - - انچ مرکری - {0} انچ مرکری - {0} انچ مرکری - - - ملی بار - {0} ملی بار - {0} ملی بار - mm Hg {0} mm Hg @@ -5565,10 +5778,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - قیراط - {0} قیراط - {0} قیراط + + انچ مرکری + {0} انچ مرکری + {0} انچ مرکری + + + ملی بار + {0} ملی بار + {0} ملی بار کلومیٹر فی گھنٹہ @@ -5585,6 +5803,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} میل فی گھنٹہ {0} میل فی گھنٹہ + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + ڈگری سیلسیس {0} ڈگری سیلسیس @@ -5600,31 +5828,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} کیلون {0} کیلون - - ایکڑ فٹ - {0} ایکڑ فٹ - {0} ایکڑ فٹ - - - سینٹی لیٹر - {0} سینٹی لیٹر - {0} سینٹی لیٹر - - - کیوبک سینٹی میٹر - {0} کیوبک سینٹی میٹر - {0} کیوبک سینٹی میٹر - - - کیوبک فیٹ - {0} کیوبک فیٹ - {0} کیوبک فٹ - - - in³ - {0} in³ - {0} in³ - کیوبک کلو میٹر {0} کیوبک کلو میٹر @@ -5634,6 +5837,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + کیوبک سینٹی میٹر + {0} کیوبک سینٹی میٹر + {0} کیوبک سینٹی میٹر + {0}/cm³ کیوبک میل @@ -5645,25 +5855,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} کیوبک گز {0} کیوبک گز - - کپ - {0} کپ - {0} کپ + + کیوبک فیٹ + {0} کیوبک فیٹ + {0} کیوبک فٹ - - ڈیسی لیٹر - {0} ڈیسی لیٹر - {0} ڈیسی لیٹر + + in³ + {0} in³ + {0} in³ - - فلوئڈ اونس - {0} فلوئڈ اونس - {0} فلوئڈ اونس - - - gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML hL @@ -5674,27 +5879,64 @@ For terms of use, see http://www.unicode.org/copyright.html لیٹر {0} لیٹر {0} لیٹر + {0}/l - - ML - {0} ML - {0} ML + + ڈیسی لیٹر + {0} ڈیسی لیٹر + {0} ڈیسی لیٹر + + + سینٹی لیٹر + {0} سینٹی لیٹر + {0} سینٹی لیٹر mL {0} mL {0} mL - - pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + ایکڑ فٹ + {0} ایکڑ فٹ + {0} ایکڑ فٹ + + + gal + {0} gal + {0} gal + {0}/gal qt {0} qt {0} qt + + pt + {0} pt + {0} pt + + + کپ + {0} کپ + {0} کپ + + + فلوئڈ اونس + {0} فلوئڈ اونس + {0} فلوئڈ اونس + tbsp {0} tbsp @@ -5705,6 +5947,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0}E + {0}N + {0}S + {0}W + @@ -5720,39 +5968,67 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² - - arcmin - {0} آرک منٹ - {0} آرک منٹ - - - {0} آرک سیکنڈ - {0} آرک سیکنڈ - - - ڈگری - {0} ڈگری - {0} ڈگری + + rev + {0} rev + {0} rev rad {0} rad {0} rad - - ایکڑ - {0} ایکڑ - {0} ایکڑ + + ڈگری + {0} ڈگری + {0} ڈگری + + + arcmin + {0} آرک منٹ + {0} آرک منٹ + + + arcsec + {0} آرک سیکنڈ + {0} آرک سیکنڈ + + + km² + {0} km² + {0} km² ہیکٹر {0} ہیکٹر {0} ہیکٹر + + سکویر میٹر + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + سکویر میل + {0} سکویر میل + {0} سکویر میل + + + ایکڑ + {0} ایکڑ + {0} ایکڑ + + + مربع گز + {0} yd² + {0} yd² سکویر فٹ @@ -5763,91 +6039,106 @@ For terms of use, see http://www.unicode.org/copyright.html مربع انچ {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² - - - سکویر میٹر - {0} m² - {0} m² - - - سکویر میل - {0} سکویر میل - {0} سکویر میل - - - مربع گز - {0} yd² - {0} yd² + + قیراط + {0} kt + {0} kt L/km {0} L/km {0} L/km + + لیٹر/100 کلو میٹر + {0} L/100km + {0} L/100km + mpg {0} mpg {0} mpg - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - Gb - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kb - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mb - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tb - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tb + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gb + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mb + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kb + {0} kb + {0} kb + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + صدی + {0} صدی + {0} صدیاں + + + سال + {0} سال + {0} سال + {0}/y + + + مہینے + {0} مہینہ + {0} مہینے + {0}/m + + + ہفتے + {0} ہفتہ + {0} ہفتے + {0}/w + دن {0} دن {0} دن + {0}/d گھنٹے @@ -5855,30 +6146,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} گھنٹے {0} فی گھنٹہ - - مائیکرو سیکنڈ - {0} مائیکرو سیکنڈ - {0} مائیکرو سیکنڈ - - - ملی سیکنڈ - {0} ملی سیکنڈ - {0} ملی سیکنڈ - منٹ {0} منٹ {0} منٹ - - - مہینے - {0} مہینہ - {0} مہینے - - - نینو سیکنڈز - {0} نینو سیکنڈ - {0} نینو سیکنڈ + {0}/min سیکنڈ @@ -5886,15 +6158,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} سیکنڈ {0} فی سیکنڈ - - ہفتے - {0} ہفتہ - {0} ہفتے + + ملی سیکنڈ + {0} ملی سیکنڈ + {0} ملی سیکنڈ - - سال - {0} سال - {0} سال + + مائیکرو سیکنڈ + {0} مائیکرو سیکنڈ + {0} مائیکرو سیکنڈ + + + نینو سیکنڈز + {0} نینو سیکنڈ + {0} نینو سیکنڈ amp @@ -5916,6 +6193,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -5926,21 +6208,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - joule - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + joule + {0} J + {0} J + kW-hour {0} kWh @@ -5951,201 +6228,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au + + کلو میٹر + {0} کلو میٹر + {0} کلو میٹر + {0}/km - - سینٹی میٹر - {0} سینٹی میٹر - {0} سینٹی میٹر + + میٹر + {0} میٹر + {0} میٹر + {0}/m dm {0} dm {0} dm - - فیٹ - {0} فیٹ - {0} فیٹ - - - انچ - {0} انچ - {0} انچ - - - کلو میٹر - {0} کلو میٹر - {0} کلو میٹر - - - نوری سال - {0} ly - {0} ly - - - میٹر - {0} میٹر - {0} میٹر - - - µm - {0} µm - {0} µm - - - میل - {0} میل - {0} میل + + سینٹی میٹر + {0} سینٹی میٹر + {0} سینٹی میٹر + {0}/cm ملی میٹر {0} ملیمیٹر {0} ملیمیٹر + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - پارسیک - {0} pc - {0} pc - پیکو میٹر {0} پیکو میٹر {0} پیکو میٹر + + میل + {0} میل + {0} میل + گز {0} یارڈ {0} یارڈ + + فیٹ + {0} فیٹ + {0} فیٹ + {0}/ft + + + انچ + {0} انچ + {0} انچ + {0}/in + + + پارسیک + {0} pc + {0} pc + + + نوری سال + {0} ly + {0} ly + + + au + {0} au + {0} au + + + nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + lx {0} lx {0} lx - - قیراط - {0} CD - {0} CD - - - گرام - {0} گرام - {0} گرام - - - kg - {0} کلو گرام - {0} کلو گرام - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} کلو گرام + {0} کلو گرام + {0}/kg + + + گرام + {0} گرام + {0} گرام + {0}/g mg {0} mg {0} mg - - oz - {0} ونس - {0} ونس - - - oz t - {0} oz t - {0} oz t - - - پاؤنڈ - {0} پونڈ - {0} پونڈ + + µg + {0} µg + {0} µg ٹن {0} tn {0} tn + + پاؤنڈ + {0} پونڈ + {0} پونڈ + {0}/lb + + + oz + {0} ونس + {0} ونس + {0}/oz + + + oz t + {0} oz t + {0} oz t + + + قیراط + {0} CD + {0} CD + GW {0} GW {0} GW - - hp - {0} ہارس پاور - {0} ہارس پاور - - - kW - {0} کلو واٹ - {0} کلو واٹ - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} کلو واٹ + {0} کلو واٹ watt {0} واٹ {0} واٹ + + mW + {0} mW + {0} mW + + + hp + {0} ہارس پاور + {0} ہارس پاور + hPa {0} hPa {0} hPa - - انچ مرکری - {0} انچ مرکری - {0} انچ مرکری - - - mbar - {0} ملی بار - {0} ملی بار - mm Hg {0} mm Hg @@ -6156,10 +6437,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - قیراط - {0} kt - {0} kt + + انچ مرکری + {0} انچ مرکری + {0} انچ مرکری + + + mbar + {0} ملی بار + {0} ملی بار کلومیٹر/گھنٹہ @@ -6176,6 +6462,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mph {0} mph + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + ڈگری سیلسیس {0}‎°C @@ -6191,31 +6487,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ایکڑ فٹ - {0} ac ft - {0} ac ft - - - سینٹی لیٹر - {0} cL - {0} cL - - - کیوبک سینٹی میٹر - {0} cm³ - {0} cm³ - - - کیوبک فٹ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -6225,6 +6496,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + کیوبک سینٹی میٹر + {0} cm³ + {0} cm³ + {0}/cm³ کیوبک میل @@ -6236,25 +6514,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - کپ - {0} c - {0} c + + کیوبک فٹ + {0} ft³ + {0} ft³ - - ڈیسی لیٹر - {0} dL - {0} dL + + in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML hL @@ -6265,27 +6538,64 @@ For terms of use, see http://www.unicode.org/copyright.html لیٹر {0} لیٹر {0} لیٹر + {0}/l - - ML - {0} ML - {0} ML + + ڈیسی لیٹر + {0} dL + {0} dL + + + سینٹی لیٹر + {0} cL + {0} cL mL {0} mL {0} mL - - pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + ایکڑ فٹ + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0}/gal qt {0} qt {0} qt + + pt + {0} pt + {0} pt + + + کپ + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + tbsp {0} tbsp @@ -6296,6 +6606,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0}E + {0}N + {0}S + {0}W + @@ -6305,6 +6621,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0}g {0}g + + {0} ڈگری + {0} ڈگری + {0} منٹ {0} منٹ @@ -6313,26 +6633,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0} ڈگری - {0} ڈگری - - - {0} ایکڑ - {0} ایکڑ + + {0} km² + {0} km² {0} ہیکٹر {0} ہیکٹر - - {0}ft² - {0}ft² - - - {0} km² - {0} km² - {0} m² {0} m² @@ -6341,6 +6649,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mi² {0}mi² + + {0} ایکڑ + {0} ایکڑ + + + {0}ft² + {0}ft² + + + لیٹر/100 کلو میٹر + {0}L/100km + {0}L/100km + + + سال + {0} سال + {0} سال + + + مہینہ + {0} مہینہ + {0} مہینے + + + ہفتہ + {0} ہفتہ + {0} ہفتے + دن {0} دن @@ -6351,66 +6687,35 @@ For terms of use, see http://www.unicode.org/copyright.html {0} گھنٹہ {0} گھنٹے - - ملی سیکنڈ - {0} ms - {0} ms - منٹ {0} منٹ {0} منٹ - - مہینہ - {0} مہینہ - {0} مہینے - سیکنڈ {0}s {0}s - - ہفتہ - {0} ہفتہ - {0} ہفتے - - - سال - {0} سال - {0} سال - - - سینٹی میٹر - {0}cm - {0}cm - - - '{0} - {0}′ - - - {0} انچ - {0} انچ + + ملی سیکنڈ + {0} ms + {0} ms کلو میٹر {0}km {0}km - - {0}ly - {0}ly - میٹر {0} میٹر {0} میٹر - - {0} میل - {0} میل + + سینٹی میٹر + {0}cm + {0}cm ملی میٹر @@ -6421,31 +6726,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0}pm {0}pm + + {0} میل + {0} میل + {0} یارڈ {0} یارڈ - - گرام - {0} گرام - {0} گرام + + {0}′ + {0}′ + + + {0} انچ + {0} انچ + + + {0}ly + {0}ly kg {0}kg {0}kg - - {0} ونس - {0} ونس + + گرام + {0} گرام + {0} گرام {0} پونڈ {0} پونڈ - - {0}hp - {0}hp + + {0} ونس + {0} ونس {0}kW @@ -6455,6 +6772,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} واٹ {0} واٹ + + {0}hp + {0}hp + {0}hPa {0}hPa @@ -6504,6 +6825,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} لیٹر {0} لیٹر + + {0}E + {0}N + {0}S + {0}W + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ur_IN.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ur_IN.xml similarity index 96% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ur_IN.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ur_IN.xml index a37dd6d39d5..51f96186cde 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ur_IN.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ur_IN.xml @@ -1,13 +1,12 @@ - - - + @@ -53,9 +52,9 @@ For terms of use, see http://www.unicode.org/copyright.html امریکی جزائر ورجن - آرمینیائی لوئر کیس اعداد - یونانی لوئر کیس اعداد - تبتی ہندسے + آرمینیائی لوئر کیس اعداد + یونانی لوئر کیس اعداد + تبتی ہندسے @@ -69,17 +68,6 @@ For terms of use, see http://www.unicode.org/copyright.html - - - - عیسوی - - - قبل مسیح - عیسوی - - - @@ -126,6 +114,8 @@ For terms of use, see http://www.unicode.org/copyright.html گزشتہ ہفتہ + اس ہفتہ + اگلے ہفتہ {0} ہفتہ میں {0} ہفتوں میں @@ -161,22 +151,28 @@ For terms of use, see http://www.unicode.org/copyright.html پچھلے سوموار + اس سوموار + اگلے سوموار پچھلے منگل + اس منگل + اگلے منگل پچھلے بدھ + اس بدھ + اگلے بدھ پچھلے جمعرات + اس جمعرات + اگلے جمعرات پچھلے جمعہ - - - پچھلے ہفتہ - اس ہفتہ + اس جمعہ + اگلے جمعہ @@ -243,9 +239,6 @@ For terms of use, see http://www.unicode.org/copyright.html گلیس بے - - فارو - اکرا diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ur_PK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ur_PK.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ur_PK.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ur_PK.xml index a45ebaa73cb..5a1c076f927 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/ur_PK.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/ur_PK.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/uz.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/uz.xml similarity index 61% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/uz.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/uz.xml index 7e861f28674..32eb86af52c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/uz.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/uz.xml @@ -1,13 +1,12 @@ - - - + @@ -17,291 +16,303 @@ For terms of use, see http://www.unicode.org/copyright.html {0}: {1} - abxazcha - afrikancha - ag‘emcha - akancha - amxarcha - arabcha - zamonavij standart arabcha - mapuchiycha - assamcha - asucha - ozarbayjoncha - boshqircha - belaruscha - bembacha - benacha - bolgarcha - bambarcha - bengalcha - tibetcha - bretoncha - bodocha - bosniycha - katalancha - chigcha - cherokcha - sorani kurd tili - korsiancha - chexcha - uelscha - datcha - taitcha + abxaz + afrikaans + agem + akan + amxar + arab + standart arab + araukan + assam + asu + ozarbayjon + ozar + boshqird + belarus + bemba + bena + bolgar + g‘arbiy beluji + bambar + bengal + tibet + breton + bodo + bosniy + katalan + chechen + chiga + cheroki + sorani-kurd + korsikan + chex + chuvash + valliy + dat + taita nemischa - Avstriya olmonchasi - Shvesariya olmonchasi - zarmacha + nemis (Avstriya) + yuqori nemis (Shveytsariya) + zarma quyi sorbcha - dualcha - yola-fonyicha - yovoncha - embucha - ivicha - yunoncha + duala + diola-fogni + dzongka + embu + eve + grek inglizcha - Avstraliya inglizchasi - Kanada inglizchasi - Britaniya inglizchasi - Britaniya inglizchasi - inglizcha (AQSH) - esperantocha + ingliz (Avstraliya) + ingliz (Kanada) + ingliz (Britaniya) + ingliz (Buyuk Britaniya) + ingliz (Amerika) + ingliz (AQSH) + esperanto ispancha - Lotin Amerika ispanchasi - Yevropa ispanchasi - Meksika ispanchasi + ispan (Lotin Amerikasi) + ispan (Yevropa) + ispan (Meksika) estoncha - baskcha - forscha + bask + fors fincha filipincha - fijcha + fiji farercha fransuzcha - Kanada fransuzchasi - Shvesariya fransuzchasi - gʻarbiy friziancha - irlandcha - gagozcha - galitsiycha - gorancha - shveysariya nemischasi - gujoratcha - guzcha - mencha - xauscha + fransuz (Kanada) + fransuz (Shveytsariya) + g‘arbiy friz + irland + gagauz + galisiy + guarani + nemis (Shveytsariya) + gujarot + gusii + men + xausa gavaycha ibroniy - hindcha - xorvatcha - yuqori sorbcha - gaitcha - vengrcha - armancha - indoneyzcha - igbocha - zichuan yicha - islandcha - italyancha - inuktitutcha - yaponcha - ngombcha - machamcha - yavancha + hind + xorvat + yuqori sorb + gaityan + venger + arman + indonez + igbo + sichuan + island + italyan + inuktitut + yapon + ngomba + machame + yavan gruzincha - qobilcha - kambcha - maqondiy - kabuverdiancha - qoyra-chincha - kikuycha + kabil + kamba + makonde + kabuverdianu + koyra-chiini + kikuyu qozoqcha - kalallisutcha - kalenjincha + grenland + kalenjin xmercha - kannadcha + kannada koreyscha - komi-permyakcha - konkancha + komi-permyak + konkan kashmircha - shambalacha - bafiycha + shambala + bafiya kurdcha - kornishcha + korn qirgʻizcha lotincha - langcha + langi lyuksemburgcha - gandcha - lakotcha - lingalcha + ganda + lakota + lingala laoscha - litovcha - luba-katangcha - luocha - luycha + shimoliy luri + litva + luba-katanga + luo + luhya latishcha - masaycha - merucha - morisyencha - malagasiycha - makuva-mittocha - metacha - maoriycha - makedoncha - malayamcha - mo‘g‘ulcha - mohaukcha - maratcha - malaycha - maltacha - mundangcha - birmancha - namacha - norvegcha bokmal - shimoliy ndebelcha - nepalcha - gollandcha - flamandcha - kvaziycha - norvegcha ninorsk - nqoancha - noyrcha - nyankolcha - oromocha - oriycha + masay + mende + meru + morisyen + malagasiy + maxuva-mitto + meta + maori + makedon + malayalam + mo‘g‘ul + mohauk + maratxi + malay + maltiy + mundang + birman + mazanderan + nama + norveg-bokmal + shimoliy ndebele + quyi nemis + quyi sakson + nepal + golland + flamand + kvasio + norveg-nyunorsk + nko + nuer + nyankole + oromo + oriya panjobcha polyakcha - pushtu tili + pushtu portugalcha - Braziliya portugalchasi - Yevropa portugalchasi - qvechuancha - qichiancha - romancha - rundcha + portugal (Braziliya) + portugal (Yevropa) + kechua + kiche + romansh + rundi rumincha - moldovan rumincha - rombacha + moldovan + rombo ruscha - kinyarvandcha - ruandcha - sanskritcha - samburcha - sanguancha - sindxiycha - shimoliy semiycha - seniycha - koryaboro senniycha - sangoancha - tachilgitcha - sinholcha + kinyaruanda + ruanda + sanskrit + samburu + sangu + sindxi + janubiy kurd + shimoliy saam + sena + koyraboro-senni + sango + tashelxit + singal slovakcha slovencha - janubiy semiycha - luli semiycha - inari semiycha - shkolt semiycha - shoniycha + janubiy saam + lule-saam + inari-saam + skolt-saam + shona somalicha - albancha + alban serbcha - sundancha - shvedcha - svahilcha - kongo svahiliycha - tamilcha - telugvancha - tesoancha - tojikcha - taycha - tigrincha - turkmancha - tongocha - turkcha - tatarcha - tosovoqcha - markaziy atlas vaqt zonasi - uygʻurcha - ukraincha - nomaʼlum til - urducha - oʻzbekcha - vayancha - vyetnamcha - vunjoancha - volofcha - xosancha - sogancha - yorubcha - standart marokash tamazit - xitoycha - soddalashtirilgan xitoycha - anʼanaviy xitoycha - zuluancha - til tarkibi yoʻq + sundan + shved + suaxili + kongo-suaxili + tamil + telugu + teso + tojik + tay + tigrinya + turkman + tongan + turk + tatar + tasavaq + markaziy atlas tamazigxt + uyg‘ur + ukrain + noma’lum til + urdu + o‘zbek + vai + vyetnam + vunjo + valbiri + volof + kxosa + soga + yoruba + tamazigxt + xitoy + soddalashgan xitoy + an’anaviy xitoy + zulu + til tarkibi yo‘q - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dunyo Afrika - Shimoli-Amerika + Shimoliy Amerika Janubiy Amerika Okeaniya - Gʻarbiy Afrika + G‘arbiy Afrika Markaziy Amerika Sharqiy Afrika Shimoliy Afrika Markaziy Afrika Janubiy Afrika Amerika - Shimoliy Amerika + Shimoliy Amerika – AQSH va Kanada Karib havzasi Sharqiy Osiyo Janubiy Osiyo - Janubiy-Sharqiy Osiyo + Janubi-sharqiy Osiyo Janubiy Yevropa Avstralaziya Melaneziya @@ -309,22 +320,22 @@ For terms of use, see http://www.unicode.org/copyright.html Polineziya Osiyo Markaziy Osiyo - Gʻarbiy Osiyo + G‘arbiy Osiyo Yevropa Sharqiy Yevropa Shimoliy Yevropa - Gʻarbiy Yevropa + G‘arbiy Yevropa Lotin Amerikasi - Vozneseniye oroli + Me’roj oroli Andorra Birlashgan Arab Amirliklari Afgʻoniston Antigua va Barbados - Angila + Angilya Albaniya Armaniston Angola - Antarktika + Antarktida Argentina Amerika Samoasi Avstriya @@ -341,28 +352,28 @@ For terms of use, see http://www.unicode.org/copyright.html Bahrayn Burundi Benin - Avliyo Varfolomey - Bermuda + Sen-Bartelemi + Bermuda orollari Bruney Boliviya - Karib Niderlandiyasi + Boneyr, Sint-Estatius va Saba Braziliya Bagama orollari Butan - Buvet oroli - Botsvanna - Belorusiya + Buve oroli + Botsvana + Belarus Beliz Kanada Kokos (Kiling) orollari - Kongo-Kinshasa + Kongo – Kinshasa Kongo (KDR) Markaziy Afrika Respublikasi - Kongo Brazzavil + Kongo – Brazzavil Kongo (Respublika) - Shveysariya - Kot-d-Ivuar - Fil Suyagi Qirgʻogʻi + Shveytsariya + Kot-d’Ivuar + Fil suyagi qirg‘og‘i Kuk orollari Chili Kamerun @@ -372,30 +383,30 @@ For terms of use, see http://www.unicode.org/copyright.html Kosta-Rika Kuba Kabo-Verde - Kurasao + Kyurasao Rojdestvo oroli Kipr Chexiya Respublikasi Germaniya - Diyego Garsiya - Djibuti + Diyego-Garsiya + Jibuti Daniya Dominika Dominikan Respublikasi Jazoir - Seyta va Melilla + Seuta va Melilya Ekvador Estoniya Misr - Gʻarbiy Sahroi Kabir + G‘arbiy Sahroi Kabir Eritreya Ispaniya Efiopiya Yevropa Ittifoqi - Finlyandiya - Fiji orollari + Finlandiya + Fiji Folklend orollari - Folklend orollari (Malvin orollari) + Folklend (Malvin) orollari Mikroneziya Farer orollari Fransiya @@ -404,7 +415,7 @@ For terms of use, see http://www.unicode.org/copyright.html B.Q. Grenada Gruziya - Frantsuz Gvianasi + Fransuz Gvianasi Gernsi Gana Gibraltar @@ -414,14 +425,14 @@ For terms of use, see http://www.unicode.org/copyright.html Gvadelupe Ekvatorial Gvineya Gretsiya - Janubiy Djordjiya va Janubiy Sendvich orollari + Janubiy Georgiya va Janubiy Sendvich orollari Gvatemala Guam Gvineya-Bisau Gayana - Gonkong Xitoy MMH + Gonkong (Xitoy MMH) Gonkong - Gerd oroli va MakDonald orollari + Xerd va Makdonald orollari Gonduras Xorvatiya Gaiti @@ -432,12 +443,12 @@ For terms of use, see http://www.unicode.org/copyright.html Isroil Men oroli Hindiston - Britaniya Hind okeani hududi + Britaniyaning Hind okeanidagi hududi Iroq Eron Islandiya Italiya - Djersi + Jersi Yamayka Iordaniya Yaponiya @@ -449,7 +460,7 @@ For terms of use, see http://www.unicode.org/copyright.html Sent-Kits va Nevis Shimoliy Koreya Janubiy Koreya - Quveyt + Quvayt Kayman orollari Qozogʻiston Laos @@ -469,15 +480,15 @@ For terms of use, see http://www.unicode.org/copyright.html Chernogoriya Sent-Martin Madagaskar - Marshal orollari + Marshall orollari Makedoniya - Makedoniya (SYUR) + Makedoniya (SYRM) Mali Myanma (Birma) - Mo‘g‘uliston - Makao Xitoy MMH + Mongoliya + Makao (Xitoy MMH) Makao - Shimoliy Marianna orollari + Shimoliy Mariana orollari Martinika Mavritaniya Montserrat @@ -491,25 +502,25 @@ For terms of use, see http://www.unicode.org/copyright.html Namibiya Yangi Kaledoniya Niger - Norfolk orollari + Norfolk oroli Nigeriya Nikaragua Niderlandiya Norvegiya Nepal Nauru - Niuye + Niue Yangi Zelandiya - Omon + Ummon Panama Peru - Frantsuz Polineziyasi - Papua Yangi Gvineya + Fransuz Polineziyasi + Papua – Yangi Gvineya Filippin Pokiston Polsha Sent-Pyer va Mikelon - Pitkarin orollari + Pitkern orollari Puerto-Riko Falastin hududi Falastin @@ -518,7 +529,7 @@ For terms of use, see http://www.unicode.org/copyright.html Paragvay Qatar Yondosh Okeaniya - Reyunon + Reyunion Ruminiya Serbiya Rossiya @@ -529,9 +540,9 @@ For terms of use, see http://www.unicode.org/copyright.html Sudan Shvetsiya Singapur - Muqaddas Yelena orollari + Muqaddas Yelena oroli Sloveniya - Savlbard va Jan Mayen + Svalbard va Yan-Mayen Slovakiya Syerra-Leone San-Marino @@ -541,18 +552,18 @@ For terms of use, see http://www.unicode.org/copyright.html Janubiy Sudan San-Tome va Prinsipi Salvador - Sint Martin + Sint-Marten Suriya Svazilend - Tristan de Kuna + Tristan-da-Kunya Turks va Kaykos orollari Chad - Frantsiya janubiy xududlari + Fransuz Janubiy hududlari Togo - Tayland + Tailand Tojikiston Tokelau - Sharqiy-Timor + Timor Sharqiy Timor Turkmaniston Tunis @@ -572,85 +583,98 @@ For terms of use, see http://www.unicode.org/copyright.html Vatikan Sent-Vinsent va Grenadin Venesuela - Britaniya Virdjiniya orollari - AQSH Virdjiniya orollari + Britaniya Virgin orollari + AQSH Virgin orollari Vyetnam Vanuatu - Uellis va Futuna + Uollis va Futuna Samoa Kosovo Yaman Mayotta - Janubi-Afrika + Janubiy Afrika Respublikasi Zambiya Zimbabve - Nomaʼlum hudud + Noma’lum mintaqa - Taqvim - Saralash tartibi - Valyuta - Raqamlar + taqvim + saralash tartibi + valyuta + soat tizimi (12 yoki 24) + qatorni uzish uslubi + o‘lchov tizimi + raqamlar - Arab-hind raqamlari - Kengaytirilgan arab-hind raqamlari - Arman sonlari - Arman kichik sonlari - Bengali raqamlari - buddistcha taqvim - xitoycha taqvim - dangiycha taqvim - Devanagari raqamlari - standart yunikod saralash tartibi - Habash sonlari - efiopcha taqvim - Toʻliq kenglikdagi raqamlar - Gruzin sonlari - grigoriancha taqvim - Yunon sonlari - Yunon kichik raqamlari - Gujarati raqamlari - Gurmuxi raqamlari - Xitoy oʻnlik sonlari - Soddalashtirilgan Xitoy sonlari - Soddalashtirilgan Xitoy moliya sonlari - Anʼanaviy Xitoy sonlari - Anʼanaviy Xitoy moliya sonlari - Ibroniy sonlari - ibroniy taqvim - islomiy taqvim - iso8601 taqvimi - yaponcha taqvim - Yaponiya sonlari - Yaponiya moliya sonlari - Xmer raqamlari - Kannada raqamlari - Lao raqamlari - Gʻarb raqamlari - Malayalam raqamlari - Myanma raqamlari - Oriya raqamlari - forscha taqvim - xitoy respublikasi taqvimi - Rim sonlari - Rim kichik sonlari - umumiy qidiruv - Standart tariblash - Anʼanaviy Tamil sonlari - Tamil raqamlari - Telugu raqamlari - Tay raqamlari - Tibet raqamlari + buddistlar taqvimi + xitoy taqvimi + dangi taqvimi + habash taqvimi + grigorian taqvimi + ibroniy taqvim + islomiy taqvim + ISO-8601 taqvimi + yapon taqvimi + fors taqvimi + xitoy taqvimi + standart YUNIKOD saralash tartibi + qidiruv + standart saralash tartibi + 12 soatlik tizim (0–11) + 12 soatlik tizim (1–12) + 24 soatlik tizim (0–23) + 24 soatlik tizim (1–24) + qatorni yumshoq uzish + qatorni odatiy uzish + qatorni qat’iy uzish + metrik tizim + Britaniya o‘lchov tizimi + AQSH o‘lchov tizimi + arab-hind raqamlari + kengaytirilgan arab-hind raqamlari + arman raqamlari + arman kichik raqamlari + bengal raqamlari + devanagar raqamlari + habash raqamlari + to‘liq kenglikdagi raqamlar + gruzin raqamlari + grek raqamlari + kichik grek raqamlari + gujarot raqamlari + gurmukxi raqamlari + xitoy o‘nli raqamlari + soddalashgan xitoy raqamlari + soddalashgan xitoy raqamlari (moliyaviy) + an’anaviy xitoy raqamlari + an’anaviy xitoy raqamlari (moliyaviy) + ibroniy raqamlar + yapon raqamlari + yapon raqamlari (moliyaviy) + xmer raqamlari + kannada raqamlari + laos raqamlari + zamonaviy arab raqamlari + malayalam raqamlari + birman raqamlari + oriya raqamlari + rim raqamlari + kichik rim raqamlari + an’anaviy tamil raqamlari + tamil raqamlari + telugu raqamlari + tay raqamlari + tibet raqamlari Metrik - BQ + Buyuk Britaniya AQSH Til: {0} - Skript: {0} + Yozuv: {0} Mintaqa: {0} @@ -668,10 +692,10 @@ For terms of use, see http://www.unicode.org/copyright.html ? - " - " - ' - ' + + + + @@ -679,69 +703,72 @@ For terms of use, see http://www.unicode.org/copyright.html - EEEE, G y MMMM dd + EEEE, d-MMMM, G y - G y MMMM d + d-MMMM, G y - G y MMM d + d-MMM, G y - GGGGG y/MM/dd + GGGGG dd/MM/y - {1} {0} + {1}, {0} - {1} {0} + {1}, {0} - {1} {0} + {1}, {0} - {1} {0} + {1}, {0} d + ccc d, E G y - G y MMM - G y MMM d - G y MMM d, E - L - MM-dd - MM-dd, E + MMM, G y + d-MMM, G y + E, d-MMM, G y + LL + dd/MM + E, dd/MM LLL - MMM d - MMM d, E + d-MMM + E, d-MMM + d-MMMM G y G y - GGGGG y-MM - GGGGG y-MM-dd - GGGGG y-MM-dd, E - G y MMM - G y MMM d - G y MMM d, E - G y QQQ - G y QQQQ + MM/y (GGGGG) + dd/MM/y (GGGGG) + E, dd/MM/y (GGGGG) + MMM, G y + d-MMM, G y + E, d-MMM, G y + MMMM, G y + y (G), QQQ + y (G), QQQQ {0} – {1} @@ -752,58 +779,58 @@ For terms of use, see http://www.unicode.org/copyright.html MM–MM - MM-dd – MM-dd - MM-dd – MM-dd + dd/MM – dd/MM + dd/MM – dd/MM - MM-dd, E – MM-dd, E - MM-dd, E – MM-dd, E + E, dd/MM – E, dd/MM + E, dd/MM – E, dd/MM - LLL–LLL + MMM – MMM - MMM d–d - MMM d – MMM d + d – d-MMM + d-MMM – d-MMM - MMM d, E – MMM d, E - MMM d, E – MMM d, E + E, d-MMM – E, d-MMM + E, d-MMM – E, d-MMM G y–y - GGGGG y-MM – y-MM - GGGGG y-MM – y-MM + MM/y – MM/y (GGGGG) + MM/y – MM/y (GGGGG) - GGGGG y-MM-dd – y-MM-dd - GGGGG y-MM-dd – y-MM-dd - GGGGG y-MM-dd – y-MM-dd + dd/MM/y – dd/MM/y (GGGGG) + dd/MM/y – dd/MM/y (GGGGG) + dd/MM/y – dd/MM/y (GGGGG) - GGGGG y-MM-dd, E – y-MM-dd, E - GGGGG y-MM-dd, E – y-MM-dd, E - GGGGG y-MM-dd, E – y-MM-dd, E + E, dd/MM/y – E, dd/MM/y (GGGGG) + E, dd/MM/y – E, dd/MM/y (GGGGG) + E, dd/MM/y – E, dd/MM/y (GGGGG) - G y MMM–MMM - G y MMM – y MMM + MMM – MMM, G y + MMM, y – MMM, y (G) - G y MMM d–d - G y MMM d – MMM d - G y MMM d – y MMM d + d – d-MMM, G y + d-MMM – d-MMM, G y + d-MMM, y – d-MMM, y (G) - G y MMM d, E – MMM d, E - G y MMM d, E – MMM d, E - G y MMM d, E – y MMM d, E + E, d-MMM – E, d-MMM, y (G) + E, d-MMM – E, d-MMM, y (G) + E, d-MMM, y – E, d-MMM, y (G) - G y MMMM–MMMM - G y MMMM – y MMMM + MMMM – MMMM, y (G) + MMMM, y – MMMM, y (G) @@ -812,18 +839,18 @@ For terms of use, see http://www.unicode.org/copyright.html - Yanv - Fev - Mar - Apr - May - Iyun - Iyul - Avg - Sen - Okt - Noya - Dek + yan + fev + mar + apr + may + iyn + iyl + avg + sen + okt + noy + dek Y @@ -840,18 +867,18 @@ For terms of use, see http://www.unicode.org/copyright.html D - Yanvar - Fevral - Mart - Aprel - May - Iyun - Iyul - Avgust + yanvar + fevral + mart + aprel + may + iyun + iyul + avgust Sentabr Oktabr - Noyabr - Dekabr + noyabr + dekabr @@ -902,51 +929,13 @@ For terms of use, see http://www.unicode.org/copyright.html - Yaksh - Dush - Sesh - Chor - Pay - Jum - Shan - - - Y - D - S - C - P - J - S - - - Yaksh - Dush - Sesh - Chor - Pay - Jum - Shan - - - yakshanba - dushanba - seshanba - chorshanba - payshanba - juma - shanba - - - - - Yaksh - Dush - Sesh - Chor - Pay - Jum - Shan + Ya + Du + Se + Ch + Pa + Ju + Sh Y @@ -961,10 +950,48 @@ For terms of use, see http://www.unicode.org/copyright.html Ya Du Se - Cho + Ch Pa Ju - Sha + Sh + + + yakshanba + dushanba + seshanba + chorshanba + payshanba + juma + shanba + + + + + Ya + Du + Se + Ch + Pa + Ju + Sh + + + Y + D + S + C + P + J + S + + + Ya + Du + Se + Ch + Pa + Ju + Sh yakshanba @@ -1021,28 +1048,80 @@ For terms of use, see http://www.unicode.org/copyright.html - - o - t.p. - k - - + + yarim kechasi TO tush payti TK + ertalab + kunduzi + kechqurun + kechasi + + + yarim kechasi + TO + tush payti + TK + ertalab + kunduzi + kechqurun + kechasi + + + yarim kechasi + TO + tush payti + TK + ertalab + kunduzi + kechqurun + kechasi + + + + + yarim kechasi + TO + tush payti + TK + ertalab + kunduzi + kechqurun + kechasi + + + yarim kechasi + TO + tush payti + TK + ertalab + kunduzi + kechqurun + kechasi + + + yarim kechasi + TO + tush payti + TK + ertalab + kunduzi + kechqurun + kechasi - M.A. - Eramizdan avvalgi + miloddan avvalgi + eramizdan avvalgi + milodiy - M.A. - Eramizdan avvalgi - E - CE + m.a. + e.a. + milodiy @@ -1053,29 +1132,29 @@ For terms of use, see http://www.unicode.org/copyright.html - y MMMM d + d-MMMM, y - y MMM d + d-MMM, y - yy/MM/dd + dd/MM/yy - HH:mm:ss zzzz + H:mm:ss (zzzz) - HH:mm:ss z + H:mm:ss (z) @@ -1092,58 +1171,64 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1}, {0} - {1} {0} + {1}, {0} - {1} {0} + {1}, {0} - {1} {0} + {1}, {0} d ccc d, E - E h:mm a - E HH:mm - E h:mm:ss a - E HH:mm:ss + E, h:mm a + E, HH:mm + E, h:mm:ss a + E, HH:mm:ss G y - G y MMM - G y MMM d - G y MMM d, E + MMM, G y + d-MMM, G y + E, d-MMM, G y h a HH h:mm a HH:mm h:mm:ss a HH:mm:ss - L - MM-dd - MM-dd, E + h:mm:ss (v) + HH:mm:ss (v) + h:mm (v) + HH:mm (v) + LL + dd/MM + E, dd/MM LLL - MMM d - MMM d, E + d-MMM + E, d-MMM + d-MMMM mm:ss y - y-MM - y-MM-dd - y-MM-dd, E - y MMM - y MMM d - y MMM d, E - y QQQ - y QQQQ + MM/y + dd/MM/y + E, dd/MM/y + MMM, y + d-MMM, y + E, d-MMM, y + MMMM, y + y, QQQ + y, QQQQ {0} {1} @@ -1186,61 +1271,61 @@ For terms of use, see http://www.unicode.org/copyright.html HH–HH v - MM–MM + M–M - MM-dd – MM-dd - MM-dd – MM-dd + dd/MM – dd/MM + dd/MM – dd/MM - MM-dd, E – MM-dd, E - MM-dd, E – MM-dd, E + E, dd/MM – E, dd/MM + E, dd/MM – E, dd/MM - LLL–LLL + MMM–MMM - MMM d–d - MMM d – MMM d + d – d-MMM + d-MMM – d-MMM - MMM d, E – MMM d, E - MMM d, E – MMM d, E + E, d-MMM – E, d-MMM + E, d-MMM – E, d-MMM y–y - y-MM – y-MM - y-MM – y-MM + MM/y – MM/y + MM/y – MM/y - y-MM-dd – y-MM-dd - y-MM-dd – y-MM-dd - y-MM-dd – y-MM-dd + dd/MM/y – dd/MM/y + dd/MM/y – dd/MM/y + dd/MM/y – dd/MM/y - y-MM-dd, E – y-MM-dd, E - y-MM-dd, E – y-MM-dd, E - y-MM-dd, E – y-MM-dd, E + E, dd/MM/y – E, dd/MM/y + E, dd/MM/y – E, dd/MM/y + E, dd/MM/y – E, dd/MM/y - y MMM–MMM - y MMM – y MMM + MMM – MMM, y + MMM, y – MMM, y - y MMM d–d - y MMM d – MMM d - y MMM d – y MMM d + d – d-MMM, y + d-MMM – d-MMM, y + d-MMM, y – d-MMM, y - y MMM d, E – MMM d, E - y MMM d, E – MMM d, E - y MMM d, E – y MMM d, E + E, d-MMM – E, d-MMM, y + E, d-MMM – E, d-MMM, y + E, d-MMM, y – E, d-MMM, y - y MMMM–MMMM - y MMMM – y MMMM + MMMM – MMMM, y + MMMM, y – MMMM, y @@ -1268,85 +1353,149 @@ For terms of use, see http://www.unicode.org/copyright.html - Era + era - Yil + yil oʻtgan yil bu yil keyingi yil {0} yildan soʻng - {0} yildan soʻng + {0} yildan so‘ng - {0} yil avval - {0} yil avval + {0} yil oldin + {0} yil oldin - Yil + yil + oʻtgan yil + bu yil + keyingi yil {0} yildan soʻng - {0} yildan soʻng + {0} yildan so‘ng - {0} yil avval - {0} yil avval + {0} yil oldin + {0} yil oldin - Yil - - - Chorak + yil + oʻtgan yil + bu yil + keyingi yil - {0} chorakda - {0} chorakda + {0} yildan so‘ng + {0} yildan so‘ng - {0} chorak avval - {0} chorak avval + {0} yil oldin + {0} yil oldin + + + + chorak + + {0} chorakdan so‘ng + {0} chorakdan so‘ng + + + {0} chorak oldin + {0} chorak oldin + + + + ch + + {0} chorakdan so‘ng + {0} chorakdan so‘ng + + + {0} chorak oldin + {0} chorak oldin + ch - {0} chorakda - {0} chorakda + {0} chorakdan so‘ng + {0} chorakdan so‘ng - {0} chorak avval - {0} chorak avval + {0} chorak oldin + {0} chorak oldin - Oy - oʻtgan oy - bu oy + oy + o‘tgan oy + shu oy keyingi oy - {0} oydan soʻng - {0} oydan soʻng + {0} oydan so‘ng + {0} oydan so‘ng - {0} oy avval - {0} oy avval + {0} oy oldin + {0} oy oldin - Oy + oy + + {0} oydan so‘ng + {0} oydan so‘ng + + + {0} oy oldin + {0} oy oldin + - Oy + oy + + {0} oydan so‘ng + {0} oydan so‘ng + + + {0} oy oldin + {0} oy oldin + - Hafta - oʻtgan hafta - bu hafta + hafta + o‘tgan hafta + shu hafta keyingi hafta - {0} haftadan soʻng - {0} haftadan soʻng + {0} haftadan so‘ng + {0} haftadan so‘ng + + + {0} hafta oldin + {0} hafta oldin + + + + hafta + + {0} haftadan so‘ng + {0} haftadan so‘ng + + + {0} hafta oldin + {0} hafta oldin + + + + hafta + + {0} haftadan so‘ng + {0} haftadan so‘ng {0} hafta oldin @@ -1354,13 +1503,13 @@ For terms of use, see http://www.unicode.org/copyright.html - Kun + kun kecha bugun ertaga - {0} kundan soʻng - {0} kundan soʻng + {0} kundan so‘ng + {0} kundan so‘ng {0} kun oldin @@ -1368,10 +1517,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Kun + kun - {0} kundan soʻng - {0} kundan soʻng + {0} kundan so‘ng + {0} kundan so‘ng {0} kun oldin @@ -1379,54 +1528,154 @@ For terms of use, see http://www.unicode.org/copyright.html - Kun + kun + + {0} kundan so‘ng + {0} kundan so‘ng + + + {0} kun oldin + {0} kun oldin + - Hafta kuni + hafta kuni - oʻtgan yakshanba - bu yakshanba + o‘tgan yakshanba + shu yakshanba + keyingi yakshanba + + + o‘tgan yakshanba + shu yakshanba + keyingi yakshanba + + + o‘tgan yakshanba + shu yakshanba keyingi yakshanba - oʻtgan dushanba - bu dushanba + o‘tgan dushanba + shu dushanba + keyingi dushanba + + + o‘tgan dushanba + shu dushanba + keyingi dushanba + + + o‘tgan dushanba + shu dushanba keyingi dushanba - oʻtgan seshanba - bu seshanba + o‘tgan seshanba + shu seshanba + keyingi seshanba + + + o‘tgan seshanba + shu seshanba + keyingi seshanba + + + o‘tgan seshanba + shu seshanba keyingi seshanba - oʻtgan chorshanba - bu chorshanba + o‘tgan chorshanba + shu chorshanba + keyingi chorshanba + + + o‘tgan chorshanba + shu chorshanba + keyingi chorshanba + + + o‘tgan chorshanba + shu chorshanba keyingi chorshanba - oʻtgan payshanba - bu payshanba + o‘tgan payshanba + shu payshanba + keyingi payshanba + + + o‘tgan payshanba + shu payshanba + keyingi payshanba + + + o‘tgan payshanba + shu payshanba keyingi payshanba - oʻtgan juma - bu juma + o‘tgan juma + shu juma + keyingi juma + + + o‘tgan juma + shu juma + keyingi juma + + + o‘tgan juma + shu juma keyingi juma - oʻtgan shanba - bu shanba + o‘tgan shanba + shu shanba + keyingi shanba + + + o‘tgan shanba + shu shanba + keyingi shanba + + + o‘tgan shanba + shu shanba keyingi shanba - Kun vaqti + kun qismi - Soat + soat - {0} soatdan soʻng - {0} soatdan soʻng + {0} soatdan so‘ng + {0} soatdan so‘ng + + + {0} soat oldin + {0} soat oldin + + + + soat + + {0} soatdan so‘ng + {0} soatdan so‘ng + + + {0} soat oldin + {0} soat oldin + + + + soat + + {0} soatdan so‘ng + {0} soatdan so‘ng {0} soat oldin @@ -1434,10 +1683,10 @@ For terms of use, see http://www.unicode.org/copyright.html - Daqiqa + daqiqa - {0} daqiqadan soʻng - {0} daqiqadan soʻng + {0} daqiqadan so‘ng + {0} daqiqadan so‘ng {0} daqiqa oldin @@ -1446,12 +1695,20 @@ For terms of use, see http://www.unicode.org/copyright.html daq. + + {0} daqiqadan so‘ng + {0} daqiqadan so‘ng + + + {0} daqiqa oldin + {0} daqiqa oldin + daq. - {0} daqiqadan soʻng - {0} daqiqadan soʻng + {0} daqiqadan so‘ng + {0} daqiqadan so‘ng {0} daqiqa oldin @@ -1459,11 +1716,11 @@ For terms of use, see http://www.unicode.org/copyright.html - Soniya + soniya hozir - {0} soniyadan soʻng - {0} soniyadan soʻng + {0} soniyadan so‘ng + {0} soniyadan so‘ng {0} soniya oldin @@ -1472,12 +1729,28 @@ For terms of use, see http://www.unicode.org/copyright.html son. + + {0} soniyadan so‘ng + {0} soniyadan so‘ng + + + {0} soniya oldin + {0} soniya oldin + son. + + {0} soniyadan so‘ng + {0} soniyadan so‘ng + + + {0} soniya oldin + {0} soniya oldin + - Mintaqa + vaqt mintaqasi @@ -1485,29 +1758,29 @@ For terms of use, see http://www.unicode.org/copyright.html GMT{0} GMT {0} vaqti - {0} kunduzgi vaqti + {0} yozgi vaqti {0} standart vaqti {1} ({0}) - Nomaʼlum + Noma’lum shahar Andorra - Dubai + Dubay - Kabul + Qobul Antigua - Anguilla + Angilya - Tirane + Tirana Yerevan @@ -1516,52 +1789,55 @@ For terms of use, see http://www.unicode.org/copyright.html Luanda - Rothera + Rotera Palmer + + Troll + - Syowa + Syova - Mawson + Mouson - Davis + Deyvis Vostok - Casey + Keysi - Dumont d’Urville + Dyumon-d’Yurvil - McMurdo + Mak-Merdo - Rio Gallegos + Rio-Gallegos Mendoza - San Juan + San-Xuan - Ushuaia + Ushuaya - La Rioja + La-Rioxa - San Luis + San-Luis - Catamarca + Katamarka Salta @@ -1570,88 +1846,88 @@ For terms of use, see http://www.unicode.org/copyright.html Jujuy - Tucuman + Tukuman - Cordoba + Kordoba - Buenos Aires + Buenos-Ayres - Pago Pago + Pago-Pago - Vienna + Vena - Perth + Pert - Eucla + Yukla - Darwin + Darvin - Adelaide + Adelaida - Broken Hill + Broken-Xill - Currie + Kerri - Melbourne + Melburn - Hobart + Xobart Lindeman - Sydney + Sidney - Brisbane + Brisben - Macquarie + Makkuori - Lord Howe + Lord-Xau oroli Aruba - Mariehamn + Mariyexamn Baku - Sarajevo + Sarayevo Barbados - Dhaka + Dakka - Brussels + Brussel - Ouagadougou + Uagadugu - Sofia + Sofiya - Bahrain + Bahrayn Bujumbura @@ -1660,43 +1936,43 @@ For terms of use, see http://www.unicode.org/copyright.html Porto-Novo - St. Barthelemy + Sen-Bartelmi - Bermuda + Bermuda orollari - Brunei + Bruney - La Paz + La-Pas - Kralendijk + Kralendeyk - Eirunepe + Eyrunepe - Rio Branco + Riu-Branku - Porto Velho + Portu-Velyu - Boa Vista + Boa-Vista Manaus - Cuiaba + Kuyaba Santarem - Campo Grande + Kampu-Grandi Belem @@ -1705,28 +1981,28 @@ For terms of use, see http://www.unicode.org/copyright.html Araguaina - Sao Paulo + San-Paulu - Bahia + Bahiya Fortaleza - Maceio + Maseyo - Recife + Resifi - Noronha + Noronxa Nassau - Thimphu + Timpu Gaborone @@ -1741,7 +2017,7 @@ For terms of use, see http://www.unicode.org/copyright.html Douson - Whitehorse + Uaytxors Inuvik @@ -1750,7 +2026,7 @@ For terms of use, see http://www.unicode.org/copyright.html Vankuver - Douson Krik + Douson-Krik Kreston @@ -1762,13 +2038,13 @@ For terms of use, see http://www.unicode.org/copyright.html Edmonton - Swift Current + Svift-Karrent - Kembridj Bey + Kembrij-Bey - Regina + Rejayna Vinnipeg @@ -1777,16 +2053,16 @@ For terms of use, see http://www.unicode.org/copyright.html Rezolyut - Reyni River + Reyni-River - Rankin Inlet + Rankin-Inlet - Atikokan + Koral-Xarbor - Tandr Bey + Tander-Bey Nipigon @@ -1798,28 +2074,28 @@ For terms of use, see http://www.unicode.org/copyright.html Ikaluit - Pangnirtung + Pangnirtang Monkton - Halifaks + Galifaks - Gus Bey + Gus-Bey - Gleys Bey + Gleys-Bey Blank-Sablon - Avliyo Jon‘s + Sent-Jons - Cocos + Kokos orollari Kinshasa @@ -1828,13 +2104,13 @@ For terms of use, see http://www.unicode.org/copyright.html Lubumbashi - Bangui + Bangi - Brazzaville + Brazzavil - Zurich + Syurix Abidjan @@ -1843,121 +2119,121 @@ For terms of use, see http://www.unicode.org/copyright.html Rarotonga - Easter + Pasxa oroli - Santiago + Santyago - Douala + Duala - Urumqi + Urumchi - Shanghai + Shanxay Bogota - Kosta Rika + Kosta-Rika Gavana - Cape Verde + Kabo-Verde - Kurakao + Kyurasao - Christmas + Rojdestvo oroli - Nicosia + Nikosiya - Prague + Praga - Busingen + Byuzingen Berlin - Djibouti + Jibuti - Copenhagen + Kopengagen Dominika - Santo Domingo + Santo-Domingo - Algiers + Jazoir Galapagos - Guayaquil + Guayakil - Tallinn + Tallin - Cairo + Qohira - El Aaiun + El-Ayun - Asmara + Asmera - Canary + Kanar orollari - Ceuta + Seuta Madrid - Addis Ababa + Addis-Abeba - Helsinki + Xelsinki Fiji - Stanley + Stenli - Chuuk + Truk orollari - Pohnpei + Ponape oroli Kosrae - Faroe + Farer orollari - Paris + Parij - Libreville + Librevil @@ -1972,34 +2248,34 @@ For terms of use, see http://www.unicode.org/copyright.html Tbilisi - Cayenne + Kayenna - Guernsey + Gernsi - Accra + Akkra Gibraltar - Tula + Tule - Nuuk + Gotxob - Ittoqqortoormiit + Skorsbisunn - Danmarkshavn + Denmarksxavn Banjul - Conakry + Konakri Gvadelupa @@ -2008,10 +2284,10 @@ For terms of use, see http://www.unicode.org/copyright.html Malabo - Athens + Afina - South Georgia + Janubiy Georgiya Gvatemala @@ -2020,25 +2296,25 @@ For terms of use, see http://www.unicode.org/copyright.html Guam - Bissau + Bisau - Guyana + Gayana - Hong Kong + Gonkong - Tegucigalpa + Tegusigalpa Zagreb - Port-au-Prince + Port-o-Prens - Budapest + Budapesht Jakarta @@ -2047,10 +2323,10 @@ For terms of use, see http://www.unicode.org/copyright.html Pontianak - Makassar + Makasar - Jayapura + Jaypur @@ -2059,31 +2335,31 @@ For terms of use, see http://www.unicode.org/copyright.html Dublin - Jerusalem + Ierusalim - Isle of Man + Men oroli - Kolkata + Kalkutta Chagos - Baghdad + Bag‘dod - Tehran + Tehron - Reykjavik + Reykyavik - Rome + Rim - Jersey + Jersi Yamayka @@ -2092,85 +2368,85 @@ For terms of use, see http://www.unicode.org/copyright.html Amman - Tokyo + Tokio - Nairobi + Nayrobi Bishkek - Phnom Penh + Pnompen - Enderbury + Enderberi oroli Kiritimati - Tarawa + Tarava - Comoro + Komor orollari - Sent Kits + Sent-Kits - Pyongyang + Pxenyan - Seoul + Seul - Kuwait + Quvayt - Kayman + Kayman orollari - Aqtau + Oqtov Oral - Aqtobe + Aktobe - Qyzylorda + Qizilo‘rda - Almaty + Olma-Ota - Vientiane + Vyentyan - Beirut + Bayrut - Sent Lusia + Sent-Lyusiya Vaduz - Colombo + Kolombo - Monrovia + Monroviya Maseru - Vilnius + Vilnyus - Luxembourg + Lyuksemburg Riga @@ -2179,58 +2455,58 @@ For terms of use, see http://www.unicode.org/copyright.html Tripoli - Casablanca + Kasablanka - Monaco + Monako - Chisinau + Kishinev - Podgorica + Podgoritsa - Marigot + Marigo - Antananarivo + Antananarivu - Kwajalein + Kvajaleyn Majuro - Skopje + Skopye Bamako - Rangoon + Rangun - Hovd + Xovd - Ulaanbaatar + Ulan-Bator - Choibalsan + Choybalsan - Macau + Makao - Saipan + Saypan - Martinikua + Martinika - Nouakchott + Nuakshot Montserrat @@ -2239,40 +2515,40 @@ For terms of use, see http://www.unicode.org/copyright.html Malta - Mauritius + Mavrikiy - Maldives + Maldiv orollari - Blantyre + Blantayr - Tijuana + Tixuana - Santa Izabel + Santa-Izabel - Hermosillo + Ermosillo - Mazatlan + Masatlan Chihuahua - Bahia Banderas + Bahiya-Banderas - Ojinaga + Oxinaga Monterrey - Mexico City + Mexiko Matamoros @@ -2284,19 +2560,19 @@ For terms of use, see http://www.unicode.org/copyright.html Kankun - Kuala Lumpur + Kuala-Lumpur Kuching - Maputo + Maputu - Windhoek + Vindxuk - Noumea + Numea Niamey @@ -2317,7 +2593,7 @@ For terms of use, see http://www.unicode.org/copyright.html Oslo - Kathmandu + Katmandu Nauru @@ -2326,13 +2602,13 @@ For terms of use, see http://www.unicode.org/copyright.html Niue - Chatham + Chatem oroli - Auckland + Oklend - Muscat + Maskat Panama @@ -2341,16 +2617,19 @@ For terms of use, see http://www.unicode.org/copyright.html Lima - Tahiti + Taiti oroli - Marquesas + Markiz orollari - Gambier + Gambye oroli - Port Moresby + Port-Morsbi + + + Bugenvil Manila @@ -2359,49 +2638,49 @@ For terms of use, see http://www.unicode.org/copyright.html Karachi - Warsaw + Varshava - Miquelon + Mikelon - Pitcairn + Pitkern - Puerto Riko + Puerto-Riko - Gaza + G‘azo - Hebron + Xevron - Azores + Azor orollari - Madeira + Madeyra oroli - Lisbon + Lissabon Palau - Asuncion + Asunson Qatar - Reunion + Reyunion - Bucharest + Buxarest - Belgrade + Belgrad Kaliningrad @@ -2410,7 +2689,7 @@ For terms of use, see http://www.unicode.org/copyright.html Simferopol - Moscow + Moskva Volgograd @@ -2436,6 +2715,9 @@ For terms of use, see http://www.unicode.org/copyright.html Irkutsk + + Chita + Yakutsk @@ -2443,10 +2725,10 @@ For terms of use, see http://www.unicode.org/copyright.html Vladivostok - Khandyga + Xandiga - Sakhalin + Saxalin Ust-Nera @@ -2454,56 +2736,59 @@ For terms of use, see http://www.unicode.org/copyright.html Magadan + + Srednekolimsk + Kamchatka - Anadyr + Anadir Kigali - Riyadh + Ar-Riyod - Guadalcanal + Gvadalkanal Mahe - Khartoum + Xartum - Stockholm + Stokgolm - Singapore + Singapur - St. Helena + Muqaddas Yelena oroli - Ljubljana + Lyublyana - Longyearbyen + Longyir Bratislava - Freetown + Fritaun - San Marino + San-Marino Dakar - Mogadishu + Mogadisho Paramaribo @@ -2512,16 +2797,16 @@ For terms of use, see http://www.unicode.org/copyright.html Juba - Sao Tome + San-Tome - El Salvador + Salvador - Lower Princeʼs Quarter + Louer-Prinses-Kuorter - Damascus + Damashq Mbabane @@ -2533,7 +2818,7 @@ For terms of use, see http://www.unicode.org/copyright.html Ndjamena - Kerguelen + Kergelen Lome @@ -2551,7 +2836,7 @@ For terms of use, see http://www.unicode.org/copyright.html Dili - Ashgabat + Ashxobod Tunis @@ -2563,67 +2848,67 @@ For terms of use, see http://www.unicode.org/copyright.html Istanbul - Port of Spain + Port-of-Speyn Funafuti - Taipei + Taypey - Dar es Salaam + Dor-us-Salom - Uzhgorod + Ujgorod - Kiev + Kiyev - Zaporozhye + Zaporojye Kampala - Midway + Midvey orollari - Johnston + Jonston - Wake + Ueyk oroli - Adak + Adak oroli Nom - Honolulu + Gonolulu - Anchorage + Ankorij - Yakutiya + Yakutat Sitka - Yunau + Juno Metlakatla - Los Angeles + Los-Anjeles - Boise + Boyse Feniks @@ -2635,7 +2920,7 @@ For terms of use, see http://www.unicode.org/copyright.html Boyla, Shimoliy Dakota - Yangi Salim, Shimoliy Dakota + Nyu-Salem, Shimoliy Dakota Markaz, Shimoliy Dakota @@ -2644,22 +2929,22 @@ For terms of use, see http://www.unicode.org/copyright.html Chikago - Menominee + Menomini - Vincennes, Indiana + Vinsens, Indiana Peterburg, Indiana - Tel siti, Indiana + Tell-Siti, Indiana - Knoks, Indiana + Noks, Indiana - Winamac, Indiana + Vinamak, Indiana Marengo, Indiana @@ -2668,52 +2953,52 @@ For terms of use, see http://www.unicode.org/copyright.html Indianapolis - Louisville + Luisvill - Vevay, Indiana + Vivey, Indiana - Montichello, Kentuki + Montisello, Kentukki - Detroit + Detroyt - Nyu York + Nyu-York Montevideo - Samarkand + Samarqand Toshkent - Vatican + Vatikan - St. Vincent + Sent-Vinsent - Caracas + Karakas Tortola - St. Thomas + Sent-Tomas - Ho Chi Minh + Xoshimin Efate - Wallis + Uollis Apia @@ -2722,16 +3007,16 @@ For terms of use, see http://www.unicode.org/copyright.html Aden - Mayotte + Mayorka - Johannesburg + Yoxannesburg Lusaka - Harare + Xarare @@ -2750,7 +3035,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Janubiy Afrika vaqti + Janubiy Afrika standart vaqti @@ -2764,7 +3049,7 @@ For terms of use, see http://www.unicode.org/copyright.html Alyaska vaqti Alyaska standart vaqti - Alyaska kunduzgi vaqti + Alyaska yozgi vaqti @@ -2776,44 +3061,44 @@ For terms of use, see http://www.unicode.org/copyright.html - Shimoliy Amerika markaziy vaqti - Shimoliy Amerika markaziy standart vaqti - Shimoliy Amerika markaziy kunduzgi vaqti + Markaziy Amerika vaqti + Markaziy Amerika standart vaqti + Markaziy Amerika yozgi vaqti - Shimoliy Amerika sharqiy vaqti - Shimoliy Amerika sharqiy standart vaqti - Shimoliy Amerika sharqiy kunduzgi vaqti + Sharqiy Amerika vaqti + Sharqiy Amerika standart vaqti + Sharqiy Amerika yozgi vaqti Shimoliy Amerika togʻ vaqti Shimoliy Amerika togʻ standart vaqti - Shimoliy Amerika togʻ kunduzgi vaqti + Shimoliy Amerika togʻ yozgi vaqti - Shimoliy Amerika tinch okeani vaqti - Shimoliy Amerika tinch okeani standart vaqti - Shimoliy Amerika tinch okeani kunduzgi vaqti + Shimoliy Amerika Tinch okeani vaqti + Shimoliy Amerika Tinch okeani standart vaqti + Shimoliy Amerika Tinch okeani yozgi vaqti Apia vaqti Apia standart vaqti - Apia kunduzgi vaqti + Apia yozgi vaqti - Arabiston vaqti - Arabiston standart vaqti - Arabiston kunduzgi vaqti + Saudiya Arabistoni vaqti + Saudiya Arabistoni standart vaqti + Saudiya Arabistoni yozgi vaqti @@ -2841,35 +3126,35 @@ For terms of use, see http://www.unicode.org/copyright.html Atlantika vaqti Atlantika standart vaqti - Atlantika kunduzgi vaqti + Atlantika yozgi vaqti Markaziy Avstraliya vaqti Markaziy Avstraliya standart vaqti - Markaziy Avstraliya kunduzgi vaqti + Markaziy Avstraliya yozgi vaqti - Markaziy Avstraliya Gʻarbiy vaqti - Markaziy Avstraliya Gʻarbiy standart vaqti - Markaziy Avstraliya Gʻarbiy kunduzgi vaqti + Markaziy Avstraliya g‘arbiy vaqti + Markaziy Avstraliya g‘arbiy standart vaqti + Markaziy Avstraliya g‘arbiy yozgi vaqti Sharqiy Avstraliya vaqti Sharqiy Avstraliya standart vaqti - Sharqiy Avstraliya kunduzgi vaqti + Sharqiy Avstraliya yozgi vaqti - Gʻarbiy Avstraliya vaqti - Gʻarbiy Avstraliya standart vaqti - Gʻarbiy Avstraliya kunduzgi vaqti + G‘arbiy Avstraliya vaqti + G‘arbiy Avstraliya standart vaqti + G‘arbiy Avstraliya yozgi vaqti @@ -2881,9 +3166,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Azor vaqti - Azor standart vaqti - Azor yozgi vaqti + Azor orollari vaqti + Azor orollari standart vaqti + Azor orollari yozgi vaqti @@ -2912,7 +3197,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Bruney Darussalom vaqti + Bruney-Dorussalom vaqti @@ -2924,14 +3209,14 @@ For terms of use, see http://www.unicode.org/copyright.html - Kamorro vaqti + Chamorro standart vaqti - Chatxam vaqti - Chatxam standart vaqti - Chatxam kunduzgi vaqti + Chatem vaqti + Chatem standart vaqti + Chatem yozgi vaqti @@ -2945,7 +3230,7 @@ For terms of use, see http://www.unicode.org/copyright.html Xitoy vaqti Xitoy standart vaqti - Xitoy kunduzgi vaqti + Xitoy yozgi vaqti @@ -2983,17 +3268,17 @@ For terms of use, see http://www.unicode.org/copyright.html Kuba vaqti Kuba standart vaqti - Kuba kunduzgi vaqti + Kuba yozgi vaqti - Devis vaqti + Deyvis vaqti - Dumont-d-Urvil vaqti + Dyumon-d’Yurvil vaqti @@ -3003,9 +3288,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Pasxi Oroli vaqti - Pasxi oroli standart vaqti - Pasxi oroli yozgi vaqti + Pasxa oroli vaqti + Pasxa oroli standart vaqti + Pasxa oroli yozgi vaqti @@ -3029,14 +3314,14 @@ For terms of use, see http://www.unicode.org/copyright.html - Uzoq-sharqiy Yevropa vaqti + Kaliningrad va Minsk vaqti - Gʻarbiy Yevropa vaqti - Gʻarbiy Yevropa standart vaqti - Gʻarbiy Yevropa yozgi vaqti + G‘arbiy Yevropa vaqti + G‘arbiy Yevropa standart vaqti + G‘arbiy Yevropa yozgi vaqti @@ -3055,12 +3340,12 @@ For terms of use, see http://www.unicode.org/copyright.html - Frantsuz Gvianasi vaqti + Fransuz Gvianasi vaqti - Frantsuz janubiy va Antarktika vaqti + Fransuz Janubiy va Antarktika vaqti @@ -3070,7 +3355,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Gambiyer vaqti + Gambye vaqti @@ -3087,7 +3372,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Grinvich vaqti + Grinvich o‘rtacha vaqti @@ -3106,7 +3391,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Koʻrfaz vaqti + Fors ko‘rfazi standart vaqti @@ -3118,7 +3403,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gavayi-aleut vaqti Gavayi-aleut standart vaqti - Gavayi-aleut kunduzgi vaqti + Gavayi-aleut yozgi vaqti @@ -3147,7 +3432,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Hind-Xitoy vaqti + Hindixitoy vaqti @@ -3169,7 +3454,7 @@ For terms of use, see http://www.unicode.org/copyright.html Eron vaqti Eron standart vaqti - Eron kunduzgi vaqti + Eron yozgi vaqti @@ -3183,14 +3468,14 @@ For terms of use, see http://www.unicode.org/copyright.html Isroil vaqti Isroil standart vaqti - Isroil kunduzgi vaqti + Isroil yozgi vaqti Yaponiya vaqti Yaponiya standart vaqti - Yaponiya kunduzgi vaqti + Yaponiya yozgi vaqti @@ -3207,12 +3492,12 @@ For terms of use, see http://www.unicode.org/copyright.html Koreya vaqti Koreya standart vaqti - Koreya kunduzgi vaqti + Koreya yozgi vaqti - Kosraye vaqti + Kosrae vaqti @@ -3234,14 +3519,14 @@ For terms of use, see http://www.unicode.org/copyright.html - Lord Xove vaqti - Lord Xove standart vaqti - Lord Xove kunduzgi vaqti + Lord-Xau vaqti + Lord-Xau standart vaqti + Lord-Xau yozgi vaqti - Makvari oroli vaqti + Makkuori oroli vaqti @@ -3263,12 +3548,12 @@ For terms of use, see http://www.unicode.org/copyright.html - Markezas vaqti + Markiz orollari vaqti - Marshal orollari vaqti + Marshall orollari vaqti @@ -3280,21 +3565,21 @@ For terms of use, see http://www.unicode.org/copyright.html - Mouvson vaqti + Mouson vaqti - Shimoliy Mexiko vaqti - Shimoliy Mexiko Standart vaqti - Shimoliy Mexiko kunduzgi vaqti + Shimoli-g‘arbiy Meksika vaqti + Shimoli-g‘arbiy Meksika standart vaqti + Shimoli-g‘arbiy Meksika yozgi vaqti - Meksikan tinch okeani vaqti - Meksikan tinch okeani standart vaqti - Meksikan tinch okeani kunduzgi vaqti + Meksika Tinch okeani vaqti + Meksika Tinch okeani standart vaqti + Meksika Tinch okeani yozgi vaqti @@ -3337,14 +3622,14 @@ For terms of use, see http://www.unicode.org/copyright.html Yangi Zelandiya vaqti Yangi Zelandiya standart vaqti - Yangi Zelandiya kunduzgi vaqti + Yangi Zelandiya yozgi vaqti Nyufaundlend vaqti Nyufaundlend standart vaqti - Nyufaundlend kunduzgi vaqti + Nyufaundlend yozgi vaqti @@ -3359,9 +3644,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Fernando de Noronya vaqti - Fernando de Noronya standart vaqti - Fernando de Noronya yozgi vaqti + Fernandu-di-Noronya vaqti + Fernandu-di-Noronya standart vaqti + Fernandu-di-Noronya yozgi vaqti @@ -3423,9 +3708,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Sent-Pyer va Mikelon vaqti - Sent-Pyer va Mikelon standart vaqti - Sent-Pyer va Mikelon kunduzgi vaqti + Sen-Pyer va Mikelon vaqti + Sen-Pyer va Mikelon standart vaqti + Sen-Pyer va Mikelon yozgi vaqti @@ -3440,7 +3725,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Reyunon vaqti + Reyunion vaqti @@ -3459,7 +3744,7 @@ For terms of use, see http://www.unicode.org/copyright.html Samoa vaqti Samoa standart vaqti - Samoa kunduzgi vaqti + Samoa yozgi vaqti @@ -3479,7 +3764,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Janubiy Djordjiya vaqti + Janubiy Georgiya vaqti @@ -3489,7 +3774,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Sova vaqti + Syova vaqti @@ -3499,9 +3784,9 @@ For terms of use, see http://www.unicode.org/copyright.html - Taypey vaqti - Taypey standart vaqti - Taypey kunduzgi vaqti + Tayvan vaqti + Tayvan standart vaqti + Tayvan yozgi vaqti @@ -3590,7 +3875,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Uellis va Futuna vaqti + Uollis va Futuna vaqti @@ -3610,6 +3895,10 @@ For terms of use, see http://www.unicode.org/copyright.html + latn + + latn + 1 ٫ @@ -3621,8 +3910,7 @@ For terms of use, see http://www.unicode.org/copyright.html × ؉ - NaN - ٫ + haqiqiy son emas , @@ -3634,7 +3922,7 @@ For terms of use, see http://www.unicode.org/copyright.html × - NaN + haqiqiy son emas : @@ -3670,40 +3958,40 @@ For terms of use, see http://www.unicode.org/copyright.html 00 milliard 000 milliard 000 milliard - 0 trilion - 0 trilion - 00 trilion - 00 trilion - 000 trilion - 000 trilion + 0 trillion + 0 trillion + 00 trillion + 00 trillion + 000 trillion + 000 trillion - 0ming - 0ming - 00ming - 00ming - 000ming - 000ming - 0mln - 0mln - 00mln - 00mln - 000mln - 000mln - 0mlrd - 0mlrd - 00mlrd - 00mlrd - 000mlrd - 000mlrd - 0trln - 0trln - 00trln - 00trln - 000trln - 000trln + 0 ming + 0 ming + 00 ming + 00 ming + 000 ming + 000 ming + 0 mln + 0 mln + 00 mln + 00 mln + 000 mln + 000 mln + 0 mlrd + 0 mlrd + 00 mlrd + 00 mlrd + 000 mlrd + 000 mlrd + 0 trln + 0 trln + 00 trln + 00 trln + 000 trln + 000 trln @@ -3745,10 +4033,38 @@ For terms of use, see http://www.unicode.org/copyright.html - ¤ #,##0.00 + #,##0.00 ¤ - ¤ #,##0.00 + #,##0.00 ¤ + + + + + 0 ming ¤ + 0 ming ¤ + 00 ming ¤ + 00 ming ¤ + 000 ming ¤ + 000 ming ¤ + 0 mln ¤ + 0 mln ¤ + 00 mln ¤ + 00 mln ¤ + 000 mln ¤ + 000 mln ¤ + 0 mlrd ¤ + 0 mlrd ¤ + 00 mlrd ¤ + 00 mlrd ¤ + 000 mlrd ¤ + 000 mlrd ¤ + 0 trln ¤ + 0 trln ¤ + 00 trln ¤ + 00 trln ¤ + 000 trln ¤ + 000 trln ¤ {0} {1} @@ -3756,40 +4072,41 @@ For terms of use, see http://www.unicode.org/copyright.html - AED + Birlashgan Arab Amirliklari dirhami BAA dirhami - AED + BAA dirhami AED - AFN + Afg‘oniston afg‘oni Afg‘oniston afg‘oni - AFN + Afg‘oniston afg‘oni AFN - Alban leki - Alban leki - Alban leki + Albaniya leki + Albaniya leki + Albaniya leki ALL - AMD + Armaniston drami Armaniston drami - AMD + Armaniston drami AMD - Golland Antil guldeni - Golland Antil guldeni - Golland Antil guldeni + Niderland antil guldeni + Niderland antil guldeni + Niderland antil guldeni ANG - AOA + Angola kvanzasi Angola kvanzasi - AOA + Angola kvanzasi AOA + Kz Argentina pesosi @@ -3803,6 +4120,7 @@ For terms of use, see http://www.unicode.org/copyright.html Avstraliya dollari Avstraliya dollari A$ + $ Aruba florini @@ -3811,16 +4129,17 @@ For terms of use, see http://www.unicode.org/copyright.html AWG - AZN + Ozarbayjon manati Ozarbayjon manati - AZN + Ozarbayjon manati AZN - Bosniya va Gertsogovina ayriboshlash markasi - Bosniya va Gertsogovina ayriboshlash markasi - Bosniya va Gertsogovina ayriboshlash markasi + Bosniya va Gertsegovina ayirboshlash markasi + Bosniya va Gertsegovina ayirboshlash markasi + Bosniya va Gertsegovina ayirboshlash markasi BAM + KM Barbados dollari @@ -3830,10 +4149,11 @@ For terms of use, see http://www.unicode.org/copyright.html $ - BDT + Bangladesh takasi Bangladesh takasi - BDT + Bangladesh takasi BDT + Bolgariya levi @@ -3842,15 +4162,15 @@ For terms of use, see http://www.unicode.org/copyright.html BGN - BHD + Bahrayn dinori Bahrayn dinori - BHD + Bahrayn dinori BHD - BIF + Burundi franki Burundi franki - BIF + Burundi franki BIF @@ -3861,21 +4181,23 @@ For terms of use, see http://www.unicode.org/copyright.html $ - BND + Bruney dollari Bruney dollari - BND + Bruney dollari BND + $ - Boliviya bolivyani - Boliviya bolivyani - Boliviya bolivyani + Boliviya bolivianosi + Boliviya bolivianosi + Boliviya bolivianosi BOB + Bs - Brazil reali - Brazil reali - Brazil reali + Braziliya reali + Braziliya reali + Braziliya reali R$ R$ @@ -3887,16 +4209,17 @@ For terms of use, see http://www.unicode.org/copyright.html $ - BTN + Butan ngultrumi Butan ngultrumi - BTN + Butan ngultrumi BTN - BWP + Botsvana pulasi Botsvana pulasi - BWP + Botsvana pulasi BWP + P Belarus rubli @@ -3920,15 +4243,15 @@ For terms of use, see http://www.unicode.org/copyright.html $ - CDF + Kongo franki Kongo franki - CDF + Kongo franki CDF - Shvetsariya franki - Shvetsariya franki - Shvetsariya franki + Shveytsariya franki + Shveytsariya franki + Shveytsariya franki CHF @@ -3943,6 +4266,7 @@ For terms of use, see http://www.unicode.org/copyright.html Xitoy yuani Xitoy yuani CN¥ + ¥ Kolumbiya pesosi @@ -3959,10 +4283,11 @@ For terms of use, see http://www.unicode.org/copyright.html - Kuba Ayirboshlash pesosi + Kuba ayirboshlash pesosi Kuba ayirboshlash pesosi Kuba ayirboshlash pesosi CUC + $ Kuba pesosi @@ -3972,21 +4297,22 @@ For terms of use, see http://www.unicode.org/copyright.html $ - CVE - Keyp Verdin eskudosi - CVE + Kabo-Verde eskudosi + Kabo-Verde eskudosi + Kabo-Verde eskudosi CVE - Chex kronasi - Chex kronasi - Chex kronasi + Chexiya kronasi + Chexiya kronasi + Chexiya kronasi CZK + - DJF + Jibuti franki Jibuti franki - DJF + Jibuti franki DJF @@ -3994,6 +4320,7 @@ For terms of use, see http://www.unicode.org/copyright.html Daniya kronasi Daniya kronasi DKK + kr Dominikan pesosi @@ -4013,17 +4340,18 @@ For terms of use, see http://www.unicode.org/copyright.html Misr funti Misr funti EGP + - ERN - Eritreya nafkasi - ERN + Eritreya nakfasi + Eritreya nakfasi + Eritreya nakfasi ERN - ETB + Efiopiya biri Efiopiya biri - ETB + Efiopiya biri ETB @@ -4034,34 +4362,37 @@ For terms of use, see http://www.unicode.org/copyright.html - FJD + Fiji dollari Fiji dollari - FJD + Fiji dollari FJD + $ - Folklend oroli funti - Folklend oroli funti - Folklend oroli funti + Folklend orollari funti + Folklend orollari funti + Folklend orollari funti FKP + £ - Ingliz funt - Ingliz funt - Ingliz funt + Angliya funt sterlingi + Angliya funt sterlingi + Angliya funt sterlingi £ £ - GEL - Gujiston larisi - GEL + Gruziya larisi + Gruziya larisi + Gruziya larisi GEL + - GHS - Gana kedisi - GHS + Gana sedisi + Gana sedisi + Gana sedisi GHS @@ -4072,22 +4403,24 @@ For terms of use, see http://www.unicode.org/copyright.html £ - GMD + Gambiya dalasisi Gambiya dalisisi - GMD + Gambiya dalasisi GMD - GNF + Gvineya franki Gvineya franki - GNF + Gvineya franki GNF + FG - Gvatemala kvetzali - Gvatemala kvetzali - Gvatemala kvetzali + Gvatemala ketsali + Gvatemala ketsali + Gvatemala ketsali GTQ + Q Gayana dollari @@ -4101,18 +4434,21 @@ For terms of use, see http://www.unicode.org/copyright.html Gonkong dollari Gonkong dollari HK$ + $ Gonduras lempirasi Gonduras lempirasi Gonduras lempirasi HNL + L - Horvat kunasi - Horvat kunasi - Horvat kunasi + Xorvatiya kunasi + Xorvatiya kunasi + Xorvatiya kunasi HRK + kn Gaiti gurdasi @@ -4125,35 +4461,39 @@ For terms of use, see http://www.unicode.org/copyright.html Vengriya forinti Vengriya forinti HUF + Ft Indoneziya rupiyasi Indoneziya rupiyasi Indoneziya rupiyasi IDR + Rp - ILS - Isroil shekeli - ILS + Isroil yangi shekeli + Isroil yangi shekeli + Isroil yangi shekeli + - Hind rupiyasi - Hind rupiyasi - Hind rupiyasi + Hindiston rupiyasi + Hindiston rupiyasi + Hindiston rupiyasi + - IQD + Iroq dinori Iroq dinori - IQD + Iroq dinori IQD - IRR + Eron riali Eron riali - IRR + Eron riali IRR @@ -4161,6 +4501,7 @@ For terms of use, see http://www.unicode.org/copyright.html Islandiya kronasi Islandiya kronasi ISK + kr Yamayka dollari @@ -4170,95 +4511,105 @@ For terms of use, see http://www.unicode.org/copyright.html $ - JOD + Iordaniya dinori Yordaniya dinori - JOD + Iordaniya dinori JOD - Yapon yenasi - Yapon yenasi - Yapon yenasi + Yaponiya iyenasi + Yaponiya iyenasi + Yaponiya iyenasi JP¥ + ¥ - KES + Keniya shillingi Keniya shillingi - KES + Keniya shillingi KES - KGS + Qirg‘iziston so‘mi Qirg‘iziston so‘mi - KGS + Qirg‘iziston so‘mi KGS - KHR - Kambodja riyeli - KHR + Kamboja rieli + Kamboja rieli + Kamboja rieli KHR + - KMF - Komor franki - KMF + Komor orollari franki + Komor orollari franki + Komor orollari franki KMF + CF - KPW - Shimoliy Koreya uoni - KPW + Shimoliy Koreya voni + Shimoliy Koreya voni + Shimoliy Koreya voni KPW + Janubiy Koreya voni Janubiy Koreya voni Janubiy Koreya voni + - KWD + Quvayt dinori Quvayt dinori - KWD + Quvayt dinori KWD - Kayman Orollari Dollari + Kayman orollari dollari Kayman orollari dollari Kayman orollari dollari KYD $ - KZT - Qozogʻiston tengesi - KZT + Qozog‘iston tengesi + Qozog‘iston tengesi + Qozog‘iston tengesi KZT + - LAK + Laos kipi Laos kipi - LAK + Laos kipi LAK + - LBP + Livan funti Livan funti - LBP + Livan funti LBP + - LKR - Shri Lanka rupisi - LKR + Shri-Lanka rupiyasi + Shri-Lanka rupiyasi + Shri-Lanka rupiyasi LKR + Rs - LRD + Liberiya dollari Liberiya dollari - LRD + Liberiya dollari LRD + $ Litva liti @@ -4285,16 +4636,17 @@ For terms of use, see http://www.unicode.org/copyright.html MAD - Moldova leusi - Moldova leusi - Moldova leusi + Moldova leyi + Moldova leyi + Moldova leyi MDL - MGA - Malagas Aryari - MGA + Malagasi ariarisi + Malagasi ariarisi + Malagasi ariarisi MGA + Ar Makedoniya dinori @@ -4303,45 +4655,48 @@ For terms of use, see http://www.unicode.org/copyright.html MKD - MMK + Myanma kyati Myanma kyati - MMK + Myanma kyati MMK + K - MNT - Mo‘g‘ul tugriki - MNT + Mongoliya tugriki + Mongoliya tugriki + Mongoliya tugriki MNT + - MOP - Makanis patakasi - MOP + Makao patakasi + Makao patakasi + Makao patakasi MOP - MRO + Mavritaniya ugiyasi Mavritaniya ugiyasi - MRO + Mavritaniya ugiyasi MRO - MUR - Mavritaniya rupisi - MUR + Mavritaniya rupiyasi + Mavritaniya rupiyasi + Mavritaniya rupiyasi MUR + Rs - MVR - Maldiv rufiyaasi - MVR + Maldiv rupiyasi + Maldiv rupiyasi + Maldiv rupiyasi MVR - MWK + Malavi kvachasi Malavi kvachasi - MWK + Malavi kvachasi MWK @@ -4352,57 +4707,64 @@ For terms of use, see http://www.unicode.org/copyright.html $ - MYR - Malayziya ringiti - MYR + Malayziya ringgiti + Malayziya ringgiti + Malayziya ringgiti MYR + RM - MZN + Mozambik metikali Mozambik metikali - MZN + Mozambik metikali MZN - NAD + Nambiya dollari Nambiya dollari - NAD + Nambiya dollari NAD + $ - NGN + Nigeriya nayrasi Nigeriya nayrasi - NGN + Nigeriya nayrasi NGN + Nikaragua kordobasi Nikaragua kordobasi Nikaragua kordobasi NIO + C$ Norvegiya kronasi Norvegiya kronasi Norvegiya kronasi NOK + kr - NPR - Nepal rupisi - NPR + Nepal rupiyasi + Nepal rupiyasi + Nepal rupiyasi NPR + Rs - NZD + Yangi Zelandiya dollari Yangi Zelandiya dollari - NZD + Yangi Zelandiya dollari NZ$ + $ - OMR - Omon riali - OMR + Ummon riali + Ummon riali + Ummon riali OMR @@ -4412,52 +4774,55 @@ For terms of use, see http://www.unicode.org/copyright.html PAB - Peru noyvo soli - Peru noyvo soli - Peru noyvo soli + Peru yangi soli + Peru yangi soli + Peru yangi soli PEN - PGK - Papua Yangi Gvineya kinasi - PGK + Papua – Yangi Gvineya kinasi + Papua – Yangi Gvineya kinasi + Papua – Yangi Gvineya kinasi PGK - PHP - Fillipin pesosi - PHP + Filippin pesosi + Filippin pesosi + Filippin pesosi PHP + - PKR - Pokiston rupisi - PKR + Pokiston rupiyasi + Pokiston rupiyasi + Pokiston rupiyasi PKR + Rs Polsha zlotiyi Polsha zlotiyi Polsha zlotiyi PLN + - Paragvay guarani - Paragvay guarani - Paragvay guarani + Paragvay guaranisi + Paragvay guaranisi + Paragvay guaranisi PYG - QAR + Qatar riali Qatar riali - QAR + Qatar riali QAR - Rumin leusi - Rumin leusi - Rumin leusi + Ruminiya leyi + Ruminiya leyi + Ruminiya leyi RON @@ -4467,16 +4832,18 @@ For terms of use, see http://www.unicode.org/copyright.html RSD - Rus rubli - Rus rubli - Rus rubli + Rossiya rubli + Rossiya rubli + Rossiya rubli RUB + - RWF + Ruanda franki Ruanda franki - RWF + Ruanda franki RWF + RF Saudiya Arabistoni riyoli @@ -4485,15 +4852,16 @@ For terms of use, see http://www.unicode.org/copyright.html SAR - SBD - Solomon Orollari dollari - SBD + Solomon orollari dollari + Solomon orollari dollari + Solomon orollari dollari SBD + $ - SCR - Seyshel rupisi - SCR + Seyshel rupiyasi + Seyshel rupiyasi + Seyshel rupiyasi SCR @@ -4507,29 +4875,32 @@ For terms of use, see http://www.unicode.org/copyright.html Shvetsiya kronasi Shvetsiya kronasi SEK + kr - SGD + Singapur dollari Singapur dollari - SGD + Singapur dollari SGD + $ - SHP - Muqaddas Yelena funti - SHP + Muqaddas Yelena oroli funti + Muqaddas Yelena oroli funti + Muqaddas Yelena oroli funti SHP + £ - SLL - Sierra Lion lioni - SLL + Syerra-Leone leonesi + Syerra-Leone leonesi + Syerra-Leone leonesi SLL - SOS - Somaliya shillingi - SOS + Somali shillingi + Somali shillingi + Somali shillingi SOS @@ -4547,39 +4918,42 @@ For terms of use, see http://www.unicode.org/copyright.html £ - STD + San-Tome va Prinsipi dobrasi San-Tome va Prinsipi dobrasi - STD + San-Tome va Prinsipi dobrasi STD + Db - SYP + Suriya funti Suriya funti - SYP + Suriya funti SYP + £ - SZL + Svazilend lilangenisi Svazilend lilangenisi - SZL + Svazilend lilangenisi SZL - Tayland bahti - Tayland bahti - Tayland bahti - ฿ + Tailand bati + Tailand bati + Tailand bati + THB + ฿ - TJS + Tojikiston somoniysi Tojikiston somoniysi - TJS + Tojikiston somoniysi TJS - TMT + Turkmaniston manati Turkmaniston manati - TMT + Turkmaniston manati TMT @@ -4589,16 +4963,19 @@ For terms of use, see http://www.unicode.org/copyright.html TND - TOP - Tonga paangasi - TOP + Tonga pangasi + Tonga pangasi + Tonga pangasi TOP + T$ Turk lirasi Turk lirasi Turk lirasi TRY + + TL Trinidad va Tobago dollari @@ -4612,24 +4989,25 @@ For terms of use, see http://www.unicode.org/copyright.html Yangi Tayvan dollari Yangi Tayvan dollari NT$ + $ - TZS + Tanzaniya shillingi Tanzaniya shillingi - TZS + Tanzaniya shillingi TZS - Ukrain grivnasi - Ukrain grivnasi - Ukrain grivnasi + Ukraina grivnasi + Ukraina grivnasi + Ukraina grivnasi UAH - UGX + Uganda shillingi Uganda shillingi - UGX + Uganda shillingi UGX @@ -4647,9 +5025,9 @@ For terms of use, see http://www.unicode.org/copyright.html $ - Oʻzbekiston soʻm - Oʻzbekiston soʻm - Oʻzbekiston soʻm + Oʻzbekiston soʻmi + Oʻzbekiston soʻmi + Oʻzbekiston soʻmi soʻm @@ -4657,29 +5035,31 @@ For terms of use, see http://www.unicode.org/copyright.html Venesuela bolivari Venesuela bolivari VEF + Bs - VND + Vyetnam dongi Vyetnam dongi - VND + Vyetnam dongi + - VUV + Vanuatu vatusi Vanuatu vatusi - VUV + Vanuatu vatusi VUV - WST + Samoa talasi Samoa talasi - WST + Samoa talasi WST - XAF - Kamerun franki - XAF + Markaziy Afrika CFA franki + Markaziy Afrika CFA franki + Markaziy Afrika CFA franki FCFA @@ -4687,44 +5067,48 @@ For terms of use, see http://www.unicode.org/copyright.html Sharqiy Karib dollari Sharqiy Karib dollari EC$ + $ - XOF - Kot d-ivuar franki - XOF + G‘arbiy Afrika CFA franki + G‘arbiy Afrika CFA franki + G‘arbiy Afrika CFA franki CFA - XPF + Fransuz Polineziyasi franki Fransuz Polineziyasi franki - XPF + Fransuz Polineziyasi franki CFPF - Nomaʼlum valyuta - Nomaʼlum valyuta - Nomaʼlum valyuta + Noma’lum pul birligi + (noma’lum pul birligi) + (noma’lum pul birligi) - YER + Yaman riali Yaman riali - YER + Yaman riali YER - Janubiy Afrika randi - Janubiy Afrika randi - Janubiy Afrika randi + Janubiy Afrika rendi + Janubiy Afrika rendi + Janubiy Afrika rendi + ZAR + R - ZMW + Zambiya kvachasi Zambiya kvachasi - ZMW + Zambiya kvachasi ZMW + ZK - ⩾{0} + {0}+ {0}–{1} @@ -4734,49 +5118,76 @@ For terms of use, see http://www.unicode.org/copyright.html {0}/{1} - Erkin tushish tezlanishi - {0} g - {0} g + gravitatsiya kuchi + {0} grav. kuchi + {0} grav. kuchi metr taqsim soniyaning kvadrati - {0} metr taqsim soniyaning kvadrati - {0} metr taqsim soniyaning kvadrati + {0} metr/soniya kvadrat + {0} metr/soniya kvadrat - - daqiqa - {0} daqiqa - {0} arkdaqiqa - - - soniya - {0} soniya - {0} soniya - - - daraja - {0}° daraja - {0}° daraja + + aylanish + {0} marta aylanish + {0} marta aylanish radian {0} radian {0} radian - - akr - {0} akr - {0} akr + + gradus + {0} gradus + {0} gradus + + + yoy daqiqasi + {0} yoy daqiqasi + {0} yoy daqiqasi + + + yoy soniyasi + {0} yoy soniyasi + {0} yoy soniyasi + + + kvadrat kilometr + {0} kvadrat kilometr + {0} kvadrat kilometr gektar {0} gektar {0} gektar + + kvadrat metr + {0} kvadrat metr + {0} kvadrat metr + {0}/kvadrat metr + kvadrat santimetr {0} kvadrat santimetr {0} kvadrat santimetr + {0}/kvadrat santimetr + + + kvadrat mil + {0} kvadrat mil + {0} kvadrat mil + + + akr + {0} akr + {0} akr + + + kvadrat yard + {0} kvadrat yard + {0} kvadrat yard kvadrat fut @@ -4784,142 +5195,143 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kvadrat fut - kvadrat dyum + kvadrat duym {0} kvadrat dyum {0} kvadrat dyum + {0}/kvadrat duym - - kvadrat kilometr - {0} kvadrat kilometr - {0} kvadrat kilometr - - - kvadrat metr - {0} kvadrat metr - {0} kvadrat metr - - - kvadrat mil - {0} kvadrat mil - {0} kvadrat mil - - - kvadrat yard - {0} kvadrat yard - {0} kvadrat yard + + karat + {0} karat + {0} karat - kilometriga litr - kilometriga {0} litr - kilometriga {0} litr + litr/kilometr + {0} litr/kilometr + {0} litr/kilometr + + + litr/100 km + {0} litr/100 km + {0} litr/100 km - galloniga mil - galloniga {0} mil - galloniga {0} mil - - - bit - {0} bit - {0} bit - - - bayt - {0} bayt - {0} bayt - - - gigabit - {0} gigabit - {0} gigabit - - - gigabayt - {0} gigabayt - {0} gigabayt - - - kilobit - {0} kilobit - {0} kilobit - - - kilobayt - {0} kilobayt - {0} kilobayt - - - megabit - {0} megabit - {0} megabit - - - megabayt - {0} megabayt - {0} megabayt - - - terabit - {0} terabit - {0} terabit + mil/gallon + {0} mil/gallon + {0} mil/gallon terabayt {0} terabayt {0} terabayt + + terabit + {0} terabit + {0} terabit + + + gigabayt + {0} gigabayt + {0} gigabayt + + + gigabit + {0} gigabit + {0} gigabit + + + megabayt + {0} megabayt + {0} megabayt + + + megabit + {0} megabit + {0} megabit + + + kilobayt + {0} kilobayt + {0} kilobayt + + + kilobit + {0} kilobit + {0} kilobit + + + bayt + {0} bayt + {0} bayt + + + bit + {0} bit + {0} bit + + + asr + {0} asr + {0} asr + + + yil + {0} yil + {0} yil + {0}/yil + + + oy + {0} oy + {0} oy + {0}/oy + + + hafta + {0} hafta + {0} hafta + {0}/hafta + kun {0} kun {0} kun + {0}/kun soat {0} soat {0} soat - soatiga {0} + {0}/soat - - mikrosoniya - {0} mikrosoniya - {0} mikrosoniya + + daqiqa + {0} daqiqa + {0} daqiqa + {0}/daqiqa + + + soniya + {0} soniya + {0} soniya + {0}/soniya millisoniya {0} millisoniya {0} millisoniya - - daqiqa - {0} daqiqa - {0} daqiqa - - - oy - {0} oy - {0} oy + + mikrosoniya + {0} mikrosoniya + {0} mikrosoniya nanosoniya {0} nanosoniya {0} nanosoniya - - soniya - {0} soniya - {0} soniya - {0}/s - - - hafta - {0} hafta - {0} hafta - - - yil - {0} yil - {0} yil - amper {0} amper @@ -4940,306 +5352,300 @@ For terms of use, see http://www.unicode.org/copyright.html {0} volt {0} volt + + kilokaloriya + {0} kilokaloriya + {0} kilokaloriya + kaloriya kaloriya {0} kaloriya - Kaloriya + kaloriya {0} kaloriya {0} kaloriya - - joul - {0} joul - {0} joul - - - kilokaloriya - {0} kilokaloriya - {0} kilokaloriya - kilojoul {0} kilojoul {0} kilojoul + + joul + {0} joul + {0} joul + kilovatt-soat {0} kilovatt-soat {0} kilovatt-soat - gigagerts - {0} gigagerts - {0} gigagerts - - - gerts - {0} gerts - {0} gerts - - - kilogerts - {0} kilogerts - {0} kilogerts + gigagers + {0} gigagers + {0} gigagers - megagerts - {0} megagerts - {0} megagerts + megagers + {0} megagers + {0} megagers - - astronomik birlik - {0} astronomik birlik - {0} astronomik birlik + + kilogers + {0} kilogers + {0} kilogers - - santimetr - {0} santimetr - {0} santimetr + + gers + {0} gers + {0} gers + + + kilometr + {0} kilometr + {0} kilometr + {0}/kilometr + + + metr + {0} metr + {0} metr + {0}/metr detsimetr {0} detsimetr {0} detsimetr - - fut - {0} fut - {0} fut - - - dyum - {0} dyum - {0} dyum - - - kilometr - {0} kilometr - {0} kilometr - - - yorug‘lik yili - {0} yorug‘lik yili - {0} yorug‘lik yili - - - metr - {0} metr - {0} metr - - - mikrometr - {0} mikrometr - {0} mikrometr - - - mil - {0} mil - {0} mil + + santimetr + {0} santimetr + {0} santimetr + {0}/santimetr millimetr {0} millimetr {0} millimetr + + mikrometr + {0} mikrometr + {0} mikrometr + nanometr {0} nanometr {0} nanometr - - dengiz mili - {0} dengiz mili - {0} dengiz mili - - - parsek - {0} parsek - {0} parsek - pikometr {0} pikometr {0} pikometr + + mil + {0} mil + {0} mil + yard {0} yard {0} yard + + fut + {0} fut + {0} fut + {0}/fut + + + dyum + {0} dyum + {0} dyum + {0}/duym + + + parsek + {0} parsek + {0} parsek + + + yorug‘lik yili + {0} yorug‘lik yili + {0} yorug‘lik yili + + + astronomik birlik + {0} astronomik birlik + {0} astronomik birlik + + + dengiz mili + {0} dengiz mili + {0} dengiz mili + + + Skandinaviya mili + {0} Skandinaviya mili + {0} Skandinaviya mili + lyuks {0} lyuks {0} lyuks - - karat - {0} karat - {0} karat - - - gramm - {0} gramm - {0} gramm - - - kilogramm - {0} kilogramm - {0} kilogramm - tonna {0} tonna {0} tonna - - mikrogramm - {0} mikrogramm - {0} mikrogramm + + kilogramm + {0} kilogramm + {0} kilogramm + {0}/kilogramm + + + gramm + {0} gramm + {0} gramm + {0}/gramm milligramm {0} milligramm {0} milligramm + + mikrogramm + {0} mikrogramm + {0} mikrogramm + + + amerika tonnasi + {0} amerika tonnasi + {0} amerika tonnasi + + + funt + {0} funt + {0} funt + {0}/funt + - untsiya - {0} untsiya - {0} untsiya + unsiya + {0} unsiya + {0} unsiya + {0}/unsiya troya unsiyasi {0} troya unsiyasi {0} troya unsiyasi - - funt - {0} funt - {0} funt - - - amerika tonnasi - {0} amerikacha tonna - {0} amerikacha tonna + + karat + {0} karat + {0} karat gigavatt {0} gigavatt {0} gigavatt - - ot kuchi - {0} ot kuchi - {0} ot kuchi + + megavatt + {0} megavatt + {0} megavatt kilovatt {0} kilovatt {0} kilovatt - - megavatt - {0} megavatt - {0} megavatt + + vatt + {0} vatt + {0} vatt millivatt {0} millivatt {0} millivatt - - vatt - {0} vatt - {0} vatt + + ot kuchi + {0} ot kuchi + {0} ot kuchi gektopaskal {0} gektopaskal {0} gektopaskal - - dyum simob ustuni - {0} dyum simob ustuni - {0} dyum simob ustuni - - - milibar - {0} milibar - {0} milibar - mm simob ustuni {0} mm simob ustuni {0} mm simob ustuni - Funt-kuch taqsim dyum kvadrat - {0} funt-kuch taqsim dyum kvadrat - {0} funt-kuch taqsim dyum kvadrat + funt/kvadrat duym + {0} funt/kvadrat duym + {0} funt/kvadrat duym - - karat - {0} karat - {0} karat + + duym simob ustuni + {0} duym simob ustuni + {0} duym simob ustuni + + + millibar + {0} millibar + {0} millibar - soatiga kilometr + km/soat soatiga {0} kilometr soatiga {0} kilometr - sekundiga metr - sekundiga {0} metr - sekundiga {0} metr + metr/soniya + {0} metr/soniya + {0} metr/soniya - soatiga mil - soatiga {0} mil - soatiga {0} mil + mil/soat + {0} mil/soat + {0} mil/soat + + + uzel + {0} uzel + {0} uzel + + + ° + {0}° + {0}° - tselsiy darajasi - {0} tselsiy darajasi - {0} tselsiy darajasi + Selsiy darajasi + {0} Selsiy darajasi + {0} Selsiy darajasi - farengeyt - {0} farengeyt - {0} farengeyt + Farengeyt darajasi + {0} Farengeyt darajasi + {0} Farengeyt darajasi kelvin {0} kelvin {0} kelvin - - akrofut - {0} akrofut - {0} akrofut - - - santilitr - {0} santilitr - {0} santilitr - - - kub santimetr - {0} kub santimetr - {0} kub santimetr - - - kub fut - {0} kub fut - {0} kub fut - - - kub dyum - {0} kub dyum - {0} kub dyum - kub kilometr {0} kub kilometr @@ -5249,6 +5655,13 @@ For terms of use, see http://www.unicode.org/copyright.html kub metr {0} kub metr {0} kub metr + {0}/kub metr + + + kub santimetr + {0} kub santimetr + {0} kub santimetr + {0}/kub santimetr kub mil @@ -5260,25 +5673,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kub yard {0} kub yard - - piyola - {0} piyola - {0} piyola + + kub fut + {0} kub fut + {0} kub fut - - detsilitr - {0} detsilitr - {0} detsilitr + + kub duym + {0} kub duym + {0} kub duym - - suyuq untsiya - {0} suyuq untsiya - {0} suyuq untsiya - - - gallon - {0} gallon - {0} gallon + + megalitr + {0} megalitr + {0} megalitr gektolitr @@ -5289,27 +5697,64 @@ For terms of use, see http://www.unicode.org/copyright.html litr {0} litr {0} litr + {0}/litr - - megalitr - {0} megalitr - {0} megalitr + + detsilitr + {0} detsilitr + {0} detsilitr + + + santilitr + {0} santilitr + {0} santilitr millilitr {0} millilitr {0} millilitr - - pint - {0} pint - {0} pint + + metrik pint + {0} metrik pint + {0} metrik pint + + + metrik piyola + {0} metrik piyola + {0} metrik piyola + + + akrofut + {0} akrofut + {0} akrofut + + + gallon + {0} gallon + {0} gallon + {0}/gallon kvart {0} kvart {0} kvart + + pint + {0} pint + {0} pint + + + piyola + {0} piyola + {0} piyola + + + suyuq unsiya + {0} suyuq unsiya + {0} suyuq unsiya + osh qoshiq {0} osh qoshiq @@ -5320,200 +5765,234 @@ For terms of use, see http://www.unicode.org/copyright.html {0} choy qoshiq {0} choy qoshiq + + {0}E + {0}N + {0}S + {0}W + {0}/{1} - g - {0} g - {0} g + grav. kuchi + {0} G + {0} G - m/s² + metr/soniya² {0} m/s² {0} m/s² - - daq. - {0} daq. - {0} daq. - - - soniya - {0}″ - {0}″ - - - ° - {0}° - {0}° + + aylanish + {0} marta ayl. + {0} marta ayl. rad {0} rad {0} rad - - akr - {0} akr - {0} akr + + gradus + {0} grad + {0} grad - - ga - {0} ga - {0} ga + + yoy daqiqasi + {0} yoy daq. + {0} yoy daq. - - sm² - {0} sm² - {0} sm² - - - fut² - {0} fut² - {0} fut² - - - dyum² - {0} dyum² - {0} dyum² + + yoy soniyasi + {0} yoy son. + {0} yoy son. km² {0} km² {0} km² + + gektar + {0} ga + {0} ga + {0} m² {0} m² + {0}/m² + + + sm² + {0} sm² + {0} sm² + {0}/sm² - mil² - {0} mil² - {0} mil² + kv. mil + {0} kv. mil + {0} kv. mil + + + akr + {0} akr + {0} akr yard² {0} yard² {0} yard² + + kv. fut + {0} kv. fut + {0} kv. fut + + + kvadrat duym + {0} kv. duym + {0} kv. duym + {0} kv. duym + + + karat + {0} kt + {0} kt + - L/km + litr/km {0} L/km {0} L/km + + L/100 km + {0} L/100 km + {0} L/100 km + mil/gal - galloniga {0} mil - galloniga {0} mil - - - bit - {0} bit - {0} bit - - - bayt - {0} bayt - {0} bayt - - - Gbit - {0} Gbit - {0} Gbit - - - GB - {0} GB - {0} GB - - - kbit - {0} kbit - {0} kbit - - - kB - {0} kB - {0} kB - - - Mbit - {0} Mbit - {0} Mbit - - - MB - {0} MB - {0} MB - - - Tbit - {0} Tbit - {0} Tbit + {0} mil/gal + {0} mil/gal TB {0} TB {0} TB - - kun - {0} kun - {0} kun + + Tbit + {0} Tbit + {0} Tbit - - soat - {0} soat - {0} soat - {0}/soat + + GB + {0} GB + {0} GB - - μson. - {0} μs - {0} μs + + Gbit + {0} Gbit + {0} Gbit - - millison. - {0} ms - {0} ms + + MB + {0} MB + {0} MB - - daqiqa - {0} daq - {0} daq + + Mbit + {0} Mbit + {0} Mbit - - oy - {0} oy - {0} oy + + kB + {0} kB + {0} kB - - nanoson. - {0} ns - {0} ns + + kbit + {0} kbit + {0} kbit - - soniya - {0} soniya - {0} soniya - {0}/s + + bayt + {0} bayt + {0} bayt - - hafta - {0} haft - {0} haft + + bit + {0} bit + {0} bit + + + asr + {0} asr + {0} asr yil {0} yil {0} yil + {0}/yil + + + oy + {0} oy + {0} oy + {0}/oy + + + hafta + {0} hafta + {0} hafta + {0}/hafta + + + kun + {0} kun + {0} kun + {0}/kun + + + soat + {0} st + {0} st + {0}/st + + + daq + {0} daq + {0} daq + {0}/daq + + + son + {0} son + {0} son + {0}/s + + + millisoniya + {0} ms + {0} ms + + + mks + {0} mks + {0} mks + + + nanosoniya + {0} ns + {0} ns - amp + amper {0} A {0} A @@ -5524,14 +6003,19 @@ For terms of use, see http://www.unicode.org/copyright.html om - {0} om - {0} om + {0} Ω + {0} Ω volt {0} V {0} V + + kkal + {0} kkal + {0} kkal + kal {0} kal @@ -5542,241 +6026,245 @@ For terms of use, see http://www.unicode.org/copyright.html {0} kal {0} kal + + kilojoul + {0} kJ + {0} kJ + joul {0} J {0} J - - kkal - {0} kkal - {0} kkal - - - kJ - {0} kJ - {0} kJ - kVt-soat {0} kVt-soat {0} kVt-soat - GGts - {0} GGts - {0} GGts - - - Gts - {0} Gts - {0} Gts - - - kGts - {0} kGts - {0} kGts + GGs + {0} GGs + {0} GGs - MGts - {0} MGts - {0} MGts + MGs + {0} MGs + {0} MGs - - a.b. - {0} a.b. - {0} a.b. + + kGs + {0} kGs + {0} kGs - - sm - {0} sm - {0} sm + + Gs + {0} Gs + {0} Gs + + + km + {0} km + {0} km + {0}/km + + + metr + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - fut - {0} fut - {0} fut - - - dyum - {0} dyum - {0} dyum - - - km - {0} km - {0} km - - - yo.y. - {0} yo.y. - {0} yo.y. - - - metr - {0} m - {0} m - - - µmetr - {0} µm - {0} µm - - - mil - {0} mil - {0} mil + + sm + {0} sm + {0} sm + {0}/sm mm {0} mm {0} mm + + µmetr + {0} µm + {0} µm + nm {0} nm {0} nm - - den.mili - {0} den.mili - {0} den.mili - - - pk - {0} pk - {0} pk - pm {0} pm {0} pm + + mil + {0} mil + {0} mil + yard {0} yard {0} yard + + fut + {0} fut + {0} fut + {0} fut + + + dyum + {0} dy + {0} dy + {0}/dy + + + pk + {0} pk + {0} pk + + + yorug‘lik yili + {0} y.y. + {0} y.y. + + + a.b. + {0} a.b. + {0} a.b. + + + den.mili + {0} den.mili + {0} den.mili + + + s-mil + {0} s-mil + {0} s-mil + lk {0} lk {0} lk - - kar - {0} kar - {0} kar - - - gr - {0} gr - {0} gr - - - kg - {0} kg - {0} kg - t {0} t {0} t - - mkg - {0} mkg - {0} mkg + + kg + {0} kg + {0} kg + {0}/kg + + + gramm + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - unt. - {0} unt. - {0} unt. - - - t. unt. - t. unt. - {0} t. unt. - - - funt - {0} funt - {0} funt + + µg + {0} µg + {0} µg amer. t {0} amer. t {0} amer. t + + funt + {0} funt + {0} funt + {0}/funt + + + unsiya + {0} unsiya + {0} unsiya + {0}/unsiya + + + troya unsiyasi + {0} troya unsiyasi + {0} troya unsiyasi + + + karat + {0} kar + {0} kar + GVt {0} GVt {0} GVt - - o.k. - {0} o.k. - {0} o.k. - - - kVt - {0} kVt - {0} kVt - MVt {0} MVt {0} MVt - - mVt - {0} mVt - {0} mVt + + kVt + {0} kVt + {0} kVt Vt {0} Vt {0} Vt + + mVt + {0} mVt + {0} mVt + + + o.k. + {0} o.k. + {0} o.k. + gPa {0} gPa {0} gPa + + mm sim.ust + {0} mm sim.ust + {0} mm sim.ust + + + funt/kv.dy + {0} funt/kv.dy + {0} funt/kv.dy + - dyum sim. ust. - {0} dyum sim. ust. - {0} dyum sim. ust. + dy sim.ust + {0} dy sim.ust + {0} dy sim.ust mbar {0} mbar {0} mbar - - mm sim. ust. - {0} mm sim. ust. - {0} mm sim. ust. - - - psi - {0} psi - {0} psi - - - kar - {0} kar - {0} kar - km/soat {0} km/soat @@ -5792,6 +6280,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mil/soat {0} mil/soat + + uzel + {0} uzel + {0} uzel + + + ° + {0}° + {0}° + °C {0}°C @@ -5807,31 +6305,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - akrofut - {0} akrofut - {0} akrofut - - - sL - {0} sL - {0} sL - - - sm³ - {0} sm³ - {0} sm³ - - - fut³ - {0} fut³ - {0} fut³ - - - dyum³ - {0} dyum³ - {0} dyum³ - km³ {0} km³ @@ -5841,36 +6314,38 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + sm³ + {0} sm³ + {0} sm³ + {0}/sm³ - mil³ - {0} mil³ - {0} mil³ + kub mil + {0} kub mil + {0} kub mil - yard³ + kub yard {0} yard³ {0} yard³ - - piyola - {0} piyola - {0} piyola + + kub fut + {0} kub fut + {0} kub fut - - dL - {0} dL - {0} dL + + kub duym + {0} kub duym + {0} kub duym - - su. unt. - {0} su. unt. - {0} su. unt. - - - gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML gL @@ -5881,37 +6356,80 @@ For terms of use, see http://www.unicode.org/copyright.html litr {0} l {0} l + {0}/l - - ML - {0} ML - {0} ML + + dL + {0} dL + {0} dL + + + sL + {0} sL + {0} sL mL {0} mL {0} mL - - pint - {0} pint - {0} pint + + mpt + {0} mpt + {0} mpt + + + m. piyola + {0} m. piyola + {0} m. piyola + + + akrofut + {0} akrofut + {0} akrofut + + + gal + {0} gal + {0} gal + {0}/gal kvart {0} kvart {0} kvart + + pint + {0} pint + {0} pint + + + piyola + {0} piyola + {0} piyola + + + suyuq unsiya + {0} suyuq unsiya + {0} suyuq unsiya + - osh.q. - {0} osh.q. - {0} osh.q. + osh qoshiq + {0} osh qoshiq + {0} osh qoshiq - ch.q. - {0} ch.q. - {0} ch.q. + choy qoshiq + {0} choy qoshiq + {0} choy qoshiq + + {0}E + {0}N + {0}S + {0}W + @@ -5921,6 +6439,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}′ {0}′ @@ -5929,26 +6451,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° - - - {0} ac - {0} ac + + {0} km² + {0} km² {0} ha {0} ha - - {0} ft² - {0} ft² - - - {0} km² - {0} km² - {0} m² {0} m² @@ -5957,76 +6467,73 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi² {0} mi² - - kun - {0} k - {0} k + + {0} ac + {0} ac - - soat - {0} soat - {0} soat + + {0} ft² + {0} ft² - - mson. - {0} ms - {0} ms + + L/100 km + {0}L/100km + {0}L/100km - - daqiqa - {0} daq - {0} daq + + yil + {0} yil + {0} yil oy {0} oy {0} oy - - son - {0} son - {0} son - hafta - {0} haft - {0} haft + {0} hafta + {0} hafta - - yil - {0} y - {0} y + + kun + {0} kun + {0} kun - - sm - {0} sm - {0} sm + + soat + {0} st + {0} st - - {0} fut - {0} fut + + daq + {0} d + {0} d - - {0} dyuym - {0} dyuym + + son + {0} s + {0} s + + + mson + {0} ms + {0} ms km {0} km {0} km - - {0} yo.y. - {0} yo.y. - metr {0} m {0} m - - {0} milya - {0} milya + + sm + {0} sm + {0} sm mm @@ -6037,31 +6544,43 @@ For terms of use, see http://www.unicode.org/copyright.html {0} pm {0} pm + + {0} milya + {0} milya + {0} yard {0} yard - - gr - {0} gr - {0} gr + + {0} fut + {0} fut + + + {0} dyuym + {0} dyuym + + + {0} yo.y. + {0} yo.y. kg {0} kg {0} kg - - {0} untsiya - {0} untsiya + + gramm + {0} g + {0} g {0} funt {0} funt - - {0} hp - {0} hp + + {0} untsiya + {0} untsiya {0} kW @@ -6071,6 +6590,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} W {0} W + + {0} hp + {0} hp + {0} hPa {0} hPa @@ -6118,6 +6641,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l + + {0}E + {0}N + {0}S + {0}W + h:mm @@ -6139,26 +6668,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0}, {1} {0}, {1} - {0}, {1} - {0}, {1} + {0} {1} + {0} {1} {0}, {1} {0}, {1} - {0}, {1} - {0}, {1} + {0} {1} + {0} {1} {0}, {1} {0}, {1} - {0}, {1} - {0}, {1} + {0} {1} + {0} {1} ha:h - yoʻq:y + yo‘q:y diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/uz_Arab.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/uz_Arab.xml similarity index 78% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/uz_Arab.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/uz_Arab.xml index 77e3f80945b..bdc2f579bbf 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/uz_Arab.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/uz_Arab.xml @@ -1,13 +1,12 @@ - - - + + @@ -406,6 +404,12 @@ For terms of use, see http://www.unicode.org/copyright.html נומערן + + גרעגארישער קאַלענדאַר + + + מעטריש + שפראַך: {0} שריפֿט: {0} @@ -424,10 +428,10 @@ For terms of use, see http://www.unicode.org/copyright.html [\- ‐ – — , ; \: ! ? . ׳ ' " ( ) \[ \] / ״ ־] - " - " - ' - ' + + + + @@ -457,7 +461,7 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1} {0} @@ -648,7 +652,7 @@ For terms of use, see http://www.unicode.org/copyright.html מיי יוני יולי - אויגוסט + אויג סעפּ אקט נאוו @@ -732,10 +736,13 @@ For terms of use, see http://www.unicode.org/copyright.html + + פֿאַרמיטאָג + נאָכמיטאָג + - פארמיטאג - האַלבערטאָג - נאכמיטאג + פֿאַרמיטאָג + נאָכמיטאָג @@ -786,22 +793,22 @@ For terms of use, see http://www.unicode.org/copyright.html - {1} {0} + {1} {0} - {1} {0} + {1} {0} - {1}, {0} + {1}, {0} - {1}, {0} + {1} {0} @@ -826,8 +833,8 @@ For terms of use, see http://www.unicode.org/copyright.html d/M E, d/M LLL - d בMMM - E, d בMMM + MMM d + MMM d, E mm:ss y M.y @@ -1055,12 +1062,12 @@ For terms of use, see http://www.unicode.org/copyright.html - EEEE, d בMMMM y + EEEE, d MMMM y - d בMMMM y + d MMMM y @@ -1178,8 +1185,11 @@ For terms of use, see http://www.unicode.org/copyright.html + + תקופֿה + - יאָהר + יאָר פֿאַראַיאָר הײַ יאָר איבער א יאָר @@ -1215,7 +1225,7 @@ For terms of use, see http://www.unicode.org/copyright.html - מאנאַט + מאנאַט פֿאַרגאנגענעם חודש דעם חודש קומענדיקן חודש @@ -1252,6 +1262,8 @@ For terms of use, see http://www.unicode.org/copyright.html וואך + last week + this week איבער אַכט טאָג @@ -1261,9 +1273,9 @@ For terms of use, see http://www.unicode.org/copyright.html וואך - טאג + טאָג נעכטן - היינט + היינט מארגן אין {0} טאָג אַרום @@ -1279,9 +1291,6 @@ For terms of use, see http://www.unicode.org/copyright.html טאָג אין דער וואך - - קומענדיקן זונטיק - שעה @@ -1315,7 +1324,7 @@ For terms of use, see http://www.unicode.org/copyright.html - אומבאַוואוסטע שטאָט + אומבאַוואוסטע שטאָט אַבידזשאַן @@ -1352,28 +1361,128 @@ For terms of use, see http://www.unicode.org/copyright.html NaN + + + + ¤ 0K + ¤ 0K + ¤ 00K + ¤ 00K + ¤ 000K + ¤ 000K + ¤ 0M + ¤ 0M + ¤ 00M + ¤ 00M + ¤ 000M + ¤ 000M + ¤ 0G + ¤ 0G + ¤ 00G + ¤ 00G + ¤ 000G + ¤ 000G + ¤ 0T + ¤ 0T + ¤ 00T + ¤ 00T + ¤ 000T + ¤ 000T + + + + + בראזיל רעאל + בראזיל רעאל + בראזיל רעאלן + בעליז דאלאַר שווייצער פֿראַנק + + כינעזישער יואן + כינעזישער יואן + כינעזישע יואן + איירא איירא איירא + + + + + פֿונט שטערלינג + פֿונט שטערלינג + פֿונט שטערלינג + £ + £ + + + אינדישער רופי + אינדישער רופי + אינדישע רופי + + + + + יאפאנעזישער יען + יאפאנעזישער יען + יאפאנעזישע יען + JP¥ + ¥ + + + רוסישער רובל + רוסישער רובל + רוסישע רובל + RUB + שוועדישע קראנע + + אמעריקאנער דאלאר + אמעריקאנער דאלאר + אמעריקאנער דאלארן + $ + זילבער גאלד + + אומבאַוואוסטע וואַלוטע + אומבאַוואוסטע וואַלוטע + אומבאַוואוסטע וואַלוטע + + + + h:mm + + + h:mm:ss + + + m:ss + + + + + {0}, {1} + {0}, {1} + {0} און {1} + {0} און {1} + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/yi_001.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yi_001.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/yi_001.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yi_001.xml index 0a42aadaaf1..a57e901fecf 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/yi_001.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yi_001.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/yo.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yo.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/yo.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yo.xml index 453fa1b90a2..7fcda098cc2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/yo.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yo.xml @@ -1,13 +1,12 @@ - - - + @@ -119,7 +118,6 @@ For terms of use, see http://www.unicode.org/copyright.html Orílẹ́ède Ààngúlílà Orílẹ́ède Àlùbàníánì Orílẹ́ède Améníà - Orílẹ́ède Nedalandi ti Antelisi Orílẹ́ède Ààngólà Orílẹ́ède Agentínà Sámóánì ti Orílẹ́ède Àméríkà @@ -343,7 +341,7 @@ For terms of use, see http://www.unicode.org/copyright.html [a á à b d e é è ẹ {ẹ\u0301} {ẹ\u0300} f g {gb} h i í ì j k l m n o ó ò ọ {ọ\u0301} {ọ\u0300} p r s ṣ t u ú ù w y] [c q v x z] - [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z] + [A B D E F G H I J K L M N O P R S T U W Y] @@ -475,6 +473,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + Àárọ̀ + Ọ̀sán + Àárọ̀ Ọ̀sán @@ -613,6 +615,22 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤00K + ¤000K + ¤0M + ¤00M + ¤000M + ¤0G + ¤00G + ¤000G + ¤0T + ¤00T + ¤000T + + @@ -793,3 +811,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/yo_BJ.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yo_BJ.xml similarity index 69% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/yo_BJ.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yo_BJ.xml index c2084f7a504..2edd819a3e8 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/yo_BJ.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yo_BJ.xml @@ -1,115 +1,24 @@ - - - + - Èdè Afrikani - Èdè Akani - Èdè Amariki - Èdè Arabiki - Ti Assam - Èdè Azerbaijani - Èdè Belarusi - Èdè Bugaria - Èdè Bengali - Èdè Bretoni - Èdè Bosnia - Èdè Catala - Èdè seeki - Èdè Welshi Èdè Ilɛ̀ Denmark Èdè Ilɛ̀ Gemani - Èdè Giriki Èdè Gɛ̀ɛ́sì - Èdè Esperanto - Èdè Sipanisi - Èdè Estonia - Èdè Baski - Èdè Pasia - Èdè Finisi - Èdè Tagalogi - Èdè Faroesi - Èdè Faransé - Èdè Frisia - Èdè Ireland - Èdè Gaelik ti Ilu Scotland - Èdè Galicia - Èdè Guarani - Èdè Gujarati - Èdè Hausa - Èdè Heberu - Èdè Hindi - Èdè Kroatia - Èdè Hungaria - Èdè Ile Armenia - Èdè pipo - Èdè Indonasia - Iru Èdè - Èdè Ibo - Èdè Icelandic - Èdè Italiani - Èdè Japanisi - Èdè Javanasi - Èdè Georgia - Èdè kameri - Èdè Kannada - Èdè Koria - Èdè Latini - Èdè Lithuania - Èdè Latvianu - Èdè Macedonia - Èdè marathi - Èdè Malaya - Èdè Malta - Èdè Bumiisi - Èdè Nepali - Èdè Duki - Èdè Norway - Èdè Occitani - Èdè Punjabi Èdè Ilɛ̀ Polandi Èdè Pɔtugi - Èdè Romania Èdè ̣Rɔɔsia - Èdè Ruwanda - Èdè awon ara Indo - Èdè Sindhi - Èdè Serbo-Croatiani - Èdè Sinhalese - Èdè Slovaki - Èdè Slovenia - Èdè ara Somalia - Èdè Albania - Èdè Serbia - Èdè Sesoto - Èdè Sudani - Èdè Suwidiisi - Èdè Swahili - Èdè Tamili - Èdè Telugu - Èdè Tai - Èdè Tigrinya - Èdè Turkmen - Èdè Klingoni Èdè Tɔɔkisi - Èdè Ukania - Èdè Udu - Èdè Uzbek - Èdè Jetinamu - Èdè Xhosa - Èdè Yiddishi - Èdè Yorùbá - Èdè Mandari Èdè Shulu @@ -120,7 +29,6 @@ For terms of use, see http://www.unicode.org/copyright.html Orílɛ́ède Ààngúlílà Orílɛ́ède Àlùbàníánì Orílɛ́ède Améníà - Orílɛ́ède Nedalandi ti Antelisi Orílɛ́ède Ààngólà Orílɛ́ède Agentínà Sámóánì ti Orílɛ́ède Àméríkà @@ -300,7 +208,6 @@ For terms of use, see http://www.unicode.org/copyright.html Orílɛ́ède Sɛnɛga Orílɛ́ède Somalia Orílɛ́ède Surinami - Gúúsù Sudan Orílɛ́ède Sao tomi ati piriishipi Orílɛ́ède Ɛɛsáfádò Orílɛ́ède Siria @@ -343,66 +250,9 @@ For terms of use, see http://www.unicode.org/copyright.html [a á à b d e é è ɛ {ɛ\u0301} {ɛ\u0300} f g {gb} h i í ì j k l m n o ó ò ɔ {ɔ\u0301} {ɔ\u0300} p r s {sh} t u ú ù w y] - [c q v x z] - [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z] - - - - - - - - - - - EEEE, d MMMM y G - - - - - d MMMM y G - - - - - d MMM y G - - - - - dd/MM/y GGGGG - - - - - - d - h:mm a - HH:mm - HH:mm:ss - L - M/d - E, M/d - LLL - MMM d - E, MMM d - MMMM d - E, MMMM d - mm:ss - y - M/y - E, M/d/y - MMM y - E, MMM d, y - MMMM y - QQQ y - QQQQ y - - - @@ -460,12 +310,6 @@ For terms of use, see http://www.unicode.org/copyright.html - - K1 - K2 - K3 - K4 - Kɔ́tà Kínní Kɔ́tà Kejì @@ -476,103 +320,22 @@ For terms of use, see http://www.unicode.org/copyright.html + + Àárɔ̀ + Ɔ̀sán + Àárɔ̀ Ɔ̀sán - - - Saju Kristi - Lehin Kristi - - - SK - LK - - - - - - EEEE, d MMMM y - - - - - d MMMM y - - - - - d MMM y - - - - - dd/MM/y - - - - - - - h:mm:ss a zzzz - - - - - h:mm:ss a z - - - - - h:mm:ss a - - - - - h:mm a - - - - - - d - h:mm a - HH:mm - HH:mm:ss - L - M/d - E, M/d - LLL - MMM d - E, MMM d - MMMM d - E, MMMM d - mm:ss - y - M/y - E, M/d/y - MMM y - E, MMM d, y - MMMM y - QQQ y - QQQQ y - - - - Ìgbà - Ɔdún - - Osù - Ɔ̀sè @@ -590,31 +353,15 @@ For terms of use, see http://www.unicode.org/copyright.html Àárɔ̀/ɔ̀sán - - wákàtí - Ìsɛ́jú Ìsɛ́jú Ààyá - - Ibi Àkókò Àgbáyé - - - - - ¤#,##0.00 - - - ¤#,##0.00;(¤#,##0.00) - - - Diami ti Awon Orílɛ́ède Arabu @@ -664,9 +411,6 @@ For terms of use, see http://www.unicode.org/copyright.html Biri ti Orílɛ́ède Eutopia - - Uro - Pɔɔn ti Orílɛ́ède Bírítísì @@ -723,7 +467,6 @@ For terms of use, see http://www.unicode.org/copyright.html Naira ti Orílɛ́ède Nàìjíríà - Faransi ti Orílɛ́ède Ruwanda @@ -743,18 +486,12 @@ For terms of use, see http://www.unicode.org/copyright.html Pɔɔun ti Orílɛ́ède ̣Elena - - Lioni - Sile ti Orílɛ́ède Somali Dobira ti Orílɛ́ède Sao tome Ati Pirisipe - - Lilangeni - Dina ti Orílɛ́ède Tunisia @@ -794,3 +531,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/yo_NG.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yo_NG.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/yo_NG.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yo_NG.xml index 83b7de86b70..1880d8e4bcf 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/yo_NG.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yo_NG.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yue.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yue.xml new file mode 100644 index 00000000000..1bddd1891bb --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yue.xml @@ -0,0 +1,9556 @@ + + + + + + + + + + + {0} ({1}) + {0},{1} + {0}:{1} + + + 阿法文 + 阿布哈茲文 + 亞齊文 + 阿僑利文 + 阿當莫文 + 阿迪各文 + 阿緯斯陀文 + 突尼斯阿拉伯文 + 南非荷蘭文 + 阿弗里希利文 + 亞罕文 + 阿伊努文 + 阿坎文 + 阿卡德文 + 阿拉巴馬文 + 阿留申文 + 蓋格阿爾巴尼亞文 + 南阿爾泰文 + 阿姆哈拉文 + 阿拉貢文 + 古英文 + 昂加文 + 阿拉伯文 + 現代標準阿拉伯文 + 阿拉米文 + 馬普切文 + 阿拉奧納文 + 阿拉帕霍文 + 阿爾及利亞阿拉伯文 + 阿拉瓦克文 + 摩洛哥阿拉伯文 + 埃及阿拉伯文 + 阿薩姆文 + 阿蘇文 + 美國手語 + 阿斯圖里亞文 + 阿瓦爾文 + 科塔瓦文 + 阿瓦文 + 艾馬拉文 + 亞塞拜然文 + 亞塞拜然文 + 巴什客爾文 + 俾路支文 + 峇里文 + 巴伐利亞文 + 巴薩文 + 巴姆穆文 + 巴塔克托巴文 + 戈馬拉文 + 白俄羅斯文 + 貝扎文 + 別姆巴文 + 貝塔維文 + 貝納文 + 富特文 + 巴達加文 + 保加利亞文 + 西俾路支文 + 博傑普爾文 + 比斯拉馬文 + 比科爾文 + 比尼文 + 班亞爾文 + 康姆文 + 錫克錫卡文 + 班巴拉文 + 孟加拉文 + 藏文 + 比什奴普萊利亞文 + 巴赫蒂亞里文 + 布列塔尼文 + 布拉杰文 + 布拉維文 + 博多文 + 波士尼亞文 + 阿庫色文 + 布里阿特文 + 布吉斯文 + 布魯文 + 比林文 + 梅敦巴文 + 加泰羅尼亞文 + 卡多文 + 加勒比文 + 卡尤加文 + 阿燦文 + 車臣文 + 宿霧文 + 奇加文 + 查莫洛文 + 奇布查文 + 查加文 + 處奇斯文 + 馬里文 + 契奴克文 + 喬克托文 + 奇佩瓦揚文 + 柴羅基文 + 沙伊安文 + 索拉尼庫爾德文 + 科西嘉文 + 科普特文 + 卡皮茲文 + 克裡文 + 克里米亞半島的土耳其文;克里米亞半島的塔塔爾文 + 捷克文 + 卡舒布文 + 宗教斯拉夫文 + 楚瓦什文 + 威爾斯文 + 丹麥文 + 達科他文 + 達爾格瓦文 + 台塔文 + 德文 + 高地德文(瑞士) + 德拉瓦文 + 斯拉夫 + 多格里布文 + 丁卡文 + 扎爾馬文 + 多格來文 + 下索布文 + 中部杜順文 + 杜亞拉文 + 中古荷蘭文 + 迪維西文 + 朱拉文 + 迪尤拉文 + 宗卡文 + 達薩文 + 恩布文 + 埃維文 + 埃菲克文 + 埃米利安文 + 古埃及文 + 艾卡朱克文 + 希臘文 + 埃蘭文 + 英文 + 中古英文 + 世界文 + 西班牙文 + 中尤皮克文 + 愛沙尼亞文 + 巴斯克文 + 依汪都文 + 埃斯特雷馬杜拉文 + 波斯文 + 芳族文 + 芳蒂文 + 富拉文 + 芬蘭文 + 菲律賓文 + 托爾訥芬蘭文 + 斐濟文 + 法羅文 + 豐文 + 法文 + 卡真法文 + 中古法文 + 古法文 + 法蘭克-普羅旺斯文 + 北弗里西亞文 + 東弗里西亞文 + 弗留利文 + 西弗里西亞文 + 愛爾蘭文 + 加族文 + 加告茲文 + 贛語 + 加約文 + 葛巴亞文 + 索羅亞斯德教達里文 + 蘇格蘭蓋爾文 + 吉茲文 + 吉爾伯特群島文 + 加利西亞文 + 吉拉基文 + 中古高地德文 + 瓜拉尼文 + 古高地日耳曼文 + 孔卡尼文 + 岡德文 + 科隆達羅文 + 哥德文 + 格列博文 + 古希臘文 + 德文(瑞士) + 古吉拉特文 + 瓦尤文 + 弗拉弗拉文 + 古西文 + 曼島文 + 圭契文 + 豪撒文 + 海達文 + 客家話 + 夏威夷文 + 希伯來文 + 北印度文 + 斐濟印地文 + 希利蓋農文 + 赫梯文 + 孟文 + 西里莫圖土文 + 克羅埃西亞文 + 上索布文 + 湘語 + 海地文 + 匈牙利文 + 胡帕文 + 亞美尼亞文 + 赫雷羅文 + 國際文 + 伊班文 + 伊比比奧文 + 印尼文 + 國際文(E) + 伊布文 + 四川彝文 + 依奴皮維克文 + 伊洛闊文 + 印古什文 + 伊多文 + 冰島文 + 義大利文 + 因紐特文 + 英格裏亞文 + 日文 + 牙買加克裏奧爾英文 + 邏輯文 + 恩格姆巴文 + 馬恰美文 + 猶太教-波斯文 + 猶太阿拉伯文 + 日德蘭文 + 爪哇文 + 喬治亞文 + 卡拉卡爾帕克文 + 卡比爾文 + 卡琴文 + 卡捷文 + 卡姆巴文 + 卡威文 + 卡巴爾達文 + 卡念布文 + 卡塔布文 + 馬孔德文 + 卡布威爾第文 + 肯揚文 + 科羅文 + 剛果文 + 坎剛文 + 卡西文 + 和闐文 + 西桑海文 + 科瓦文 + 吉庫尤文 + 北紮紮其文 + 廣亞馬文 + 哈薩克文 + 卡庫文 + 格陵蘭文 + 卡倫金文 + 高棉文 + 金邦杜文 + 坎那達文 + 韓文 + 科米-彼爾米亞克文 + 貢根文 + 科斯雷恩文 + 克佩列文 + 卡努裡文 + 卡拉柴-包爾卡爾文 + 塞拉利昂克裏奧爾文 + 基那來阿文 + 卡累利阿文 + 庫魯科文 + 喀什米爾文 + 尚巴拉文 + 巴菲亞文 + 科隆文 + 庫爾德文 + 庫密克文 + 庫特奈文 + 科米文 + 康瓦耳文 + 吉爾吉斯文 + 拉丁文 + 拉迪諾文 + 朗吉文 + 拉亨達文 + 蘭巴文 + 盧森堡文 + 列茲干文 + 新共同語言 + 干達文 + 林堡文 + 利古里亞文 + 利伏尼亞文 + 拉科塔文 + 倫巴底文 + 林加拉文 + 寮文 + 芒戈文 + 洛齊文 + 北盧爾文 + 立陶宛文 + 拉特加萊文 + 魯巴加丹加文 + 魯巴魯魯亞文 + 路易塞諾文 + 盧恩達文 + 盧奧文 + 盧晒文 + 盧雅文 + 拉脫維亞文 + 文言文 + 拉茲文 + 馬都拉文 + 馬法文 + 馬加伊文 + 邁蒂利文 + 望加錫文 + 曼丁哥文 + 馬賽文 + 馬巴文 + 莫克沙文 + 曼達文 + 門德文 + 梅魯文 + 克里奧文(模里西斯) + 馬拉加什文 + 中古愛爾蘭文 + 馬夸文 + 美塔文 + 馬紹爾文 + 毛利文 + 米克馬克文 + 米南卡堡文 + 馬其頓文 + 馬來亞拉姆文 + 蒙古文 + 滿族文 + 曼尼普裡文 + 莫霍克文 + 莫西文 + 馬拉地文 + 西馬裏文 + 馬來文 + 馬爾他文 + 蒙當文 + 多種語言 + 克里克文 + 米蘭德斯文 + 馬爾尼裡文 + 明打威文 + 緬甸文 + 姆耶內文 + 厄爾茲亞文 + 馬贊德蘭文 + 諾魯文 + 閩南語 + 拿波里文 + 納馬文 + 巴克摩挪威文 + 北地畢列文 + 低地德文 + 低地薩克遜文 + 尼泊爾文 + 尼瓦爾文 + 恩東加文 + 尼亞斯文 + 紐埃文 + 阿沃那加文 + 荷蘭文 + 佛蘭芒文 + 夸西奧文 + 耐諾斯克挪威文 + 恩甘澎文 + 挪威文 + 諾蓋文 + 古諾爾斯文 + 諾維亞文 + 曼德文字 (N’Ko) + 南地畢列文 + 北索托文 + 努埃爾文 + 納瓦霍文 + 古尼瓦爾文 + 尼揚賈文 + 尼揚韋齊文 + 尼揚科萊文 + 尼奧囉文 + 尼茲馬文 + 奧克西坦文 + 奧杰布瓦文 + 奧羅莫文 + 歐利亞文 + 奧塞提文 + 歐塞奇文 + 鄂圖曼土耳其文 + 旁遮普文 + 潘加辛文 + 巴列維文 + 潘帕嘉文 + 帕皮阿門托文 + 帛琉文 + 庇卡底文 + 賓夕法尼亞德文 + 門諾低地德文 + 古波斯文 + 普法爾茨德文 + 腓尼基文 + 巴利文 + 波蘭文 + 皮埃蒙特文 + 旁狄希臘文 + 波那貝文 + 普魯士文 + 古普羅旺斯文 + 普什圖文 + 葡萄牙文 + 蓋楚瓦文 + 基切文 + 欽博拉索海蘭蓋丘亞文 + 拉賈斯坦諸文 + 復活島文 + 拉羅通加文 + 羅馬格諾里文 + 里菲亞諾文 + 羅曼斯文 + 隆迪文 + 羅馬尼亞文 + 摩爾多瓦文 + 蘭博文 + 吉普賽文 + 根語言 + 羅圖馬島文 + 俄文 + 盧森尼亞文 + 羅維阿納文 + 羅馬尼亞語系 + 盧安達文 + 羅瓦文 + 梵文 + 桑達韋文 + 雅庫特文 + 薩瑪利亞阿拉姆文 + 薩布魯文 + 撒撒克文 + 散塔利文 + 索拉什特拉文 + 甘拜文 + 桑古文 + 撒丁文 + 西西里文 + 蘇格蘭文 + 信德文 + 薩丁尼亞-薩薩里文 + 南庫爾德文 + 北方薩米文 + 塞訥卡文 + 賽納文 + 瑟里文 + 瑟爾卡普文 + 東桑海文 + 桑戈文 + 古愛爾蘭文 + 薩莫吉希亞文 + 塞爾維亞克羅埃西亞文 + 希爾哈文 + 撣文 + 阿拉伯文(查德) + 僧伽羅文 + 希達摩文 + 斯洛伐克文 + 斯洛維尼亞文 + 下西利西亞文 + 塞拉亞文 + 薩摩亞文 + 南薩米文 + 魯勒薩米文 + 伊納裡薩米文 + 斯科特薩米文 + 塞內加爾文 + 索尼基文 + 索馬利文 + 索格底亞納文 + 阿爾巴尼亞文 + 塞爾維亞文 + 蘇拉南東墎文 + 塞雷爾文 + 斯瓦特文 + 薩霍文 + 塞索托文 + 沙特菲士蘭文 + 巽他文 + 蘇庫馬文 + 蘇蘇文 + 蘇美文 + 瑞典文 + 史瓦希里文 + 史瓦希里文(剛果) + 葛摩文 + 古敘利亞文 + 敘利亞文 + 西利西亞文 + 坦米爾文 + 圖盧文 + 泰盧固文 + 提姆文 + 特索文 + 泰雷諾文 + 泰頓文 + 塔吉克文 + 泰文 + 提格利尼亞文 + 蒂格雷文 + 提夫文 + 土庫曼文 + 托克勞文 + 查庫爾文 + 塔加路族文 + 克林貢文 + 特林基特文 + 塔里什文 + 塔馬奇克文 + 突尼西亞文 + 東加文 + 東加文(尼亞薩) + 托比辛文 + 土耳其文 + 圖羅尤文 + 太魯閣文 + 特松加文 + 特薩克尼恩文 + 欽西安文 + 韃靼文 + 穆斯林塔特文 + 圖姆布卡文 + 吐瓦魯文 + 特威文 + 北桑海文 + 大溪地文 + 土凡文 + 塔馬齊格特文 + 沃蒂艾克文 + 維吾爾文 + 烏加列文 + 烏克蘭文 + 姆本杜文 + 未知語言 + 烏都文 + 烏茲別克文 + 瓦伊文 + 溫達文 + 威尼斯文 + 維普森文 + 越南文 + 西佛蘭德文 + 美茵-法蘭克尼亞文 + 沃拉普克文 + 沃提克文 + 佛羅文 + 溫舊文 + 瓦隆文 + 瓦瑟文 + 瓦拉莫文 + 瓦瑞文 + 瓦紹文 + 沃皮瑞文 + 沃洛夫文 + 吳語 + 卡爾梅克文 + 科薩文 + 明格列爾文 + 索加文 + 瑤文 + 雅浦文 + 洋卞文 + 耶姆巴文 + 意第緒文 + 約魯巴文 + 奈恩加圖文 + 粵語 + 壯文 + 薩波特克文 + 布列斯符號 + 西蘭文 + 澤納加文 + 標準摩洛哥塔馬塞特文 + 中文 + 簡體中文 + 繁體中文 + 祖魯文 + 祖尼文 + 無語言內容 + 扎扎文 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 世界 + 非洲 + 北美洲 + 南美洲 + 大洋洲 + 西非 + 中美 + 東非 + 北非 + 中非 + 非洲南部 + 美洲 + 北美 + 加勒比海 + 東亞 + 南亞 + 東南亞 + 南歐 + 澳洲同紐西蘭 + 美拉尼西亞 + 密克羅尼西亞 + 玻里尼西亞 + 亞洲 + 中亞 + 西亞 + 歐洲 + 東歐 + 北歐 + 西歐 + 拉丁美洲 + 阿森松島 + 安道爾 + 阿拉伯聯合大公國 + 阿富汗 + 安提瓜同巴布達 + 安圭拉 + 阿爾巴尼亞 + 亞美尼亞 + 安哥拉 + 南極洲 + 阿根廷 + 美屬薩摩亞 + 奧地利 + 澳洲 + 荷屬阿魯巴 + 奧蘭群島 + 亞塞拜然 + 波斯尼亞同黑塞哥維那 + 巴貝多 + 孟加拉 + 比利時 + 布吉納法索 + 保加利亞 + 巴林 + 蒲隆地 + 貝南 + 聖巴瑟米 + 百慕達 + 汶萊 + 玻利維亞 + 荷蘭加勒比區 + 巴西 + 巴哈馬 + 不丹 + 布威島 + 波札那 + 白俄羅斯 + 貝里斯 + 加拿大 + 科科斯(基林)群島 + 剛果(金夏沙) + 剛果民主共和國 + 中非共和國 + 剛果(布拉薩) + 剛果共和國 + 瑞士 + 象牙海岸 + 庫克群島 + 智利 + 喀麥隆 + 中華人民共和國 + 哥倫比亞 + 克里派頓島 + 哥斯大黎加 + 古巴 + 維德角 + 庫拉索 + 聖誕島 + 賽普勒斯 + 捷克共和國 + 德國 + 迪亞哥加西亞島 + 吉布地 + 丹麥 + 多米尼克 + 多明尼加共和國 + 阿爾及利亞 + 休達與梅利利亞 + 厄瓜多 + 愛沙尼亞 + 埃及 + 西撒哈拉 + 厄利垂亞 + 西班牙 + 衣索比亞 + 歐盟 + 芬蘭 + 斐濟 + 福克蘭群島 + 福克蘭群島 (馬爾維納斯群島) + 密克羅尼西亞群島 + 法羅群島 + 法國 + 加彭 + 英國 + 英國 + 格瑞那達 + 喬治亞共和國 + 法屬圭亞那 + 根西島 + 迦納 + 直布羅陀 + 格陵蘭 + 甘比亞 + 幾內亞 + 瓜地洛普 + 赤道幾內亞 + 希臘 + 南佐治亞島同南桑威奇群島 + 瓜地馬拉 + 關島 + 幾內亞比索 + 蓋亞那 + 中華人民共和國香港特別行政區 + 香港 + 赫德島同麥克唐納群島 + 宏都拉斯 + 克羅埃西亞 + 海地 + 匈牙利 + 加那利群島 + 印尼 + 愛爾蘭 + 以色列 + 曼島 + 印度 + 英屬印度洋領地 + 伊拉克 + 伊朗 + 冰島 + 義大利 + 澤西島 + 牙買加 + 約旦 + 日本 + 肯亞 + 吉爾吉斯 + 柬埔寨 + 吉里巴斯 + 葛摩 + 聖基茨同尼維斯 + 北韓 + 南韓 + 科威特 + 開曼群島 + 哈薩克 + 寮國 + 黎巴嫩 + 聖露西亞 + 列支敦斯登 + 斯里蘭卡 + 賴比瑞亞 + 賴索托 + 立陶宛 + 盧森堡 + 拉脫維亞 + 利比亞 + 摩洛哥 + 摩納哥 + 摩爾多瓦 + 蒙特內哥羅 + 法屬聖馬丁 + 馬達加斯加 + 馬紹爾群島 + 馬其頓 + 前南斯拉夫馬其頓共和國 + 馬利 + 緬甸 + 蒙古 + 中華人民共和國澳門特別行政區 + 澳門 + 北馬里亞納群島 + 馬丁尼克島 + 茅利塔尼亞 + 蒙哲臘 + 馬爾他 + 模里西斯 + 馬爾地夫 + 馬拉威 + 墨西哥 + 馬來西亞 + 莫三比克 + 納米比亞 + 新喀里多尼亞 + 尼日 + 諾福克島 + 奈及利亞 + 尼加拉瓜 + 荷蘭 + 挪威 + 尼泊爾 + 諾魯 + 紐埃島 + 紐西蘭 + 阿曼王國 + 巴拿馬 + 秘魯 + 法屬玻里尼西亞 + 巴布亞紐幾內亞 + 菲律賓 + 巴基斯坦 + 波蘭 + 聖皮埃爾同密克隆群島 + 皮特肯群島 + 波多黎各 + 巴勒斯坦自治區 + 巴勒斯坦 + 葡萄牙 + 帛琉 + 巴拉圭 + 卡達 + 大洋洲邊疆群島 + 留尼旺 + 羅馬尼亞 + 塞爾維亞 + 俄羅斯 + 盧安達 + 沙烏地阿拉伯 + 索羅門群島 + 塞席爾 + 蘇丹 + 瑞典 + 新加坡 + 聖赫勒拿島 + 斯洛維尼亞 + 斯瓦爾巴特群島同揚馬延島 + 斯洛伐克 + 獅子山 + 聖馬利諾 + 塞內加爾 + 索馬利亞 + 蘇利南 + 南蘇丹 + 聖多美同普林西比 + 薩爾瓦多 + 荷屬聖馬丁 + 敘利亞 + 史瓦濟蘭 + 特里斯坦達庫尼亞群島 + 土克斯及開科斯群島 + 查德 + 法屬南方屬地 + 多哥 + 泰國 + 塔吉克 + 托克勞群島 + 東帝汶 + 土庫曼 + 突尼西亞 + 東加 + 土耳其 + 千里達同多巴哥 + 吐瓦魯 + 台灣 + 坦尚尼亞 + 烏克蘭 + 烏干達 + 美國本土外小島嶼 + 美國 + 美國 + 烏拉圭 + 烏茲別克 + 梵蒂岡 + 聖文森特同格林納丁斯 + 委內瑞拉 + 英屬維京群島 + 美屬維京群島 + 越南 + 萬那杜 + 瓦利斯同富圖納群島 + 薩摩亞 + 科索沃 + 葉門 + 馬約特 + 南非 + 尚比亞 + 辛巴威 + 未知區域 + + + 傳統德語拼字學 + 標準雷西亞拼字 + 1996 年的德語拼字學 + 中世紀晚期法文(至1606年) + 早期現代法文 + 白俄羅斯文(學術) + 美國國會圖書館標準方案羅馬化(1997年版) + 阿魯庫方言 + 亞美尼亞東部 + 亞美尼亞西部 + 統一土耳其拉丁字母 + 佛教混合梵文 + 比斯開方言 + San Giorgio/Bila 方言 + 布恩特林方言 + 早期現代英語 + IPA 拼音 + UPA 拼音 + X-SAMPA 音標 + 平文式羅馬字 + 高地挪威文 + 史詩梵文 + 米茲泰爾方言 + 香港語言學學會粵語拼音 + 通用康沃爾文拼字 + 傳統梵文 + 雷西亞利波瓦方言 + 俄羅斯文拼字(1917年後) + 希臘文單調正字法 + 蘇利南恩都卡方言 + 那提松尼方言 + 雷西亞尼瓦方言 + 雷西亞歐西亞柯方言 + 蘇利南帕馬卡方言 + 俄羅斯文拼字(1708 年) + 漢語拼音 + 希臘文多調正字法 + 電腦 + 瑞士普特爾方言 + 已修訂的拼字學 + 雷西亞方言 + 羅曼什文 + 薩霍文 + 蘇格蘭標準英語 + 利物浦方言 + 雷西亞史托維薩方言 + 瑞士蘇邁拉方言 + 瑞士蘇瑟瓦方言 + 瑞士蘇希瓦方言 + 白俄羅斯文傳統拼字 + 統一康沃爾文拼字 + 統一康沃爾文修訂拼字 + 愛爾蘭阿爾斯特方言 + 吠陀梵文 + 瓦倫西亞文 + 瑞士瓦勒德方言 + 威妥瑪式拼音 + + + 曆法 + 略過符號排序 + 反向重音排序 + 大寫/小寫排列 + 區分大小寫排序 + 假名排序 + 排序 + 正規化排序 + 數字排序 + 排序強度 + 貨幣 + 時間週期(12 小時制與 24 小時制) + 換行樣式 + 度量單位系統 + 數字 + 時區 + 區域變異 + 以符號排序 + 專用區 + + + 佛曆 + 農曆 + 科普特曆 + 檀紀曆 + 衣索比亞曆 + 衣索比亞曆 (Amete Alem) + 公曆 + 希伯來曆 + 印度國曆 + 伊斯蘭曆 + 伊斯蘭民用曆 + 伊斯蘭新月曆 + 伊斯蘭天文曆 + 烏姆庫拉曆 + 國際標準 ISO 8601 + 日本曆 + 波斯曆 + 民國曆 + 排序符號 + 略過符號排序 + 正常排序重音 + 依反向重音排序 + 優先排序小寫 + 正常大小寫順序排序 + 優先排序大寫 + 不分大小寫排序 + 依大小寫排序 + 個別排序假名 + 分別排序假名 + 繁體中文排序 - Big5 + 字典排序 + 預設 Unicode 排序 + 歐洲排序規則 + 簡體中文排序 - GB2312 + 電話簿排序 + 發音排序 + 拼音排序 + 改良排序 + 一般用途搜尋 + 韓文子音排序 + 標準排序 + 筆畫排序 + 傳統排序 + 部首筆畫排序 + 注音排序 + 非正規化排序 + 依正規化排序 Unicode + 個別排序數字 + 依數字順序排序數字 + 全部排序 + 僅排序基礎字母 + 排序重音/大小寫/全半形/假名 + 排序重音 + 排序重音/大小寫/全半形 + 12 小時制 (0–11) + 12 小時制 (1–12) + 24 小時制 (0–23) + 24 小時制 (1–24) + 寬鬆換行樣式 + 一般換行樣式 + 強制換行樣式 + 公制 + 英制度量單位系統 + 美制度量單位系統 + 阿拉伯-印度數字 + 阿拉伯-印度擴充數字 + 亞美尼亞數字 + 小寫亞美尼亞數字 + 峇里文數字 + 孟加拉數字 + 婆羅米數字 + 查克馬數字 + 占文數字 + 梵文數字 + 衣索比亞數字 + 金融數字 + 全形數字 + 喬治亞數字 + 希臘數字 + 小寫希臘數字 + 古吉拉特數字 + 古爾穆奇數字 + 中文十進位數字 + 小寫簡體中文數字 + 大寫簡體中文數字 + 小寫繁體中文數字 + 大寫繁體中文數字 + 希伯來數字 + 爪哇文數字 + 小寫日文數字 + 大寫日文數字 + 克耶數字 + 高棉數字 + 坎那達數字 + 老傣文數字 + 蘭納文數字 + 寮國數字 + 阿拉伯數字 + 西納文數字 + 林布文數字 + 馬來亞拉姆數字 + 蒙古數字 + 曼尼普爾數字 + 緬甸數字 + 緬甸撣文數字 + 原始數字 + 曼德數字 + 桑塔利文數字 + 歐利亞數字 + 奧斯曼亞數字 + 羅馬數字 + 小寫羅馬數字 + 索拉什特拉文數字 + 夏拉達數字 + 索朗桑朋數字 + 巽他數字 + 塔卡里數字 + 新傣仂文數字 + 坦米爾數字 + 坦米爾數字 + 泰盧固數字 + 泰文數字 + 西藏數字 + 傳統數字 + 瓦伊文數字 + + + 美國地名委員會 + 數值 + 聲調 + 聯合國地名專家組 + 重音 + 全形 + 半形 + 韓文字母 + 拼音 + 出版 + + + 公制 + 英制 + 美制 + + + 語言:{0} + 文字:{0} + 地區:{0} + + + + [一 丁 七 丈-不 丑 且 世 丘 丙 丟 並 中 串 丸 丹 主 乃 久 么 之 乎 乏 乖 乘 乙 九 也 乾 亂 了 予 事 二 于 云 互 五 井 些 亞 亡 交-亦 亨 享 京 亮 人 什 仁 仇 今 介 仍 仔 他 付 仙 代-以 仰 仲 件 任 份 企 伊 伍 伐 休 伙 伯 估 伴 伸 似 伽 但 佈 佉 位-住 佔 何 余 佛 作 你 佩 佳 使 來 例 供 依 侯 侵 便 係-俄 俊 俗 保 俠 信 修 俱 俾 個 倍 們 倒 候 倚 借 倫 值 假 偉 偏 做 停 健 側-偷 傑 備 傢 傣 傲 傳 傷 傻 傾 僅 像 僑 僧 價 儀 億 儒 儘 優 允 元-充 兇-光 克 免 兒 兔 入 內-兩 八-兮 共 兵-典 兼 冊 再 冒 冠 冬 冰 冷 准 凌 凝 凡 凰 凱 出 函 刀 分 切 刊 列 初 判 別 利 刪 到 制 刷 刺 刻 則 剌 前 剛 剩 剪 副 割 創 劃 劇 劉 劍 力 功 加 助-劫 勁 勇 勉 勒 動 務 勝 勞 勢 勤 勵 勸 勿 包 匈 化 北 匹 區 十 千 升 午 半 卒-協 南 博 卜 卡 卯-危 即 卷 卻 厄 厘 厚 原 厭 厲 去 參 又 及 友 反 叔 取 受 口-另 只-叭 可 台 史 右 司 吃 各 合-吊 同-后 吐-吒 君 吝-吠 否 吧 含 吳 吵 吸 吹 吾 呀 呂 呆 告 呢 周 味 呵 呼 命 和 咖 咦 咧 咪 咬 咱 哀 品 哇-哉 哎 員 哥 哦 哩 哪 哭 哲 唉 唐 唔 唬 售 唯 唱 唷 唸 商 啊 問 啟 啡 啥 啦 啪 喀 喂 善 喇 喊 喔 喜 喝 喬 單 喵 嗎 嗚 嗨 嗯 嘆 嘉 嘗 嘛 嘴 嘻 嘿 器 噴 嚇 嚴 囉 四 回 因 困 固 圈 國 圍 園 圓 圖 團 圜 土 在 圭 地 圾 址 均 坎 坐 坡 坤 坦 坪 垂 垃 型 埃 城 埔 域 執 培 基 堂 堅 堆 堡 堪 報 場 塊 塔 塗 塞 填 塵 境 增 墨 墮 壁 壇 壓 壘 壞 壢 士 壬 壯 壽 夏 夕 外 多 夜 夠 夢 夥 大 天-夫 央 失 夷 夸 夾 奇-奉 奎 奏 契 奔 套 奧 奪 奮 女 奴 奶 她 好 如 妙 妝 妥 妨 妮 妳 妹 妻 姆 姊 始 姐 姑 姓 委 姿 威 娃 娘 娛 婁 婆 婚 婦 媒 媽 嫌 嫩 子 孔 字 存 孝 孟 季 孤 孩 孫 學 它 宅 宇-安 宋 完 宏 宗-宜 客-室 宮 害 家 容 宿 寂 寄-密 富 寒 寞 察 寢 實-審 寫 寬 寮 寵 寶 封 射 將 專 尊 尋 對-小 少 尖 尚 尤 就 尺 尼 尾 局 屁 居 屆 屋 屏 展 屠 層 屬 山 岡 岩 岸 峰 島 峽 崇 崙 崴 嵐 嶺 川 州 巡 工-巨 巫 差 己-巴 巷 市 布 希 帕 帖 帛 帝 帥 師 席 帳 帶 常 帽 幅 幕 幣 幫 干-年 幸 幹 幻-幾 庇 床 序 底 店 庚 府 度 座 庫 庭 康 庸 廉 廖 廠 廢 廣 廳 延 廷 建 弄 式 引 弗 弘 弟 弦 弱 張 強 彈 彊 彌 彎 彝 彞 形 彥 彩 彬 彭 彰 影 役 彼 往 征 待 很 律 後 徐-徒 得 從 復 微 徵 德 徹 心 必 忌 忍 志-忙 忠 快 念 忽 怎 怒 怕 怖 思 怡 急 性 怨 怪 恆 恐 恢 恥 恨 恩 恭 息 恰 悅 悉 悔 悟 悠 您 悲 悶 情 惑 惜 惠 惡 惱 想 惹 愁 愈 愉 意 愚 愛 感 慈 態 慕 慘 慢 慣 慧 慮 慰 慶 慾 憂 憐 憑 憲 憶 憾 懂 應 懶 懷 懼 戀 戈 戊 戌 成-戒 或 截 戰 戲 戴 戶 房-扁 扇 手 才 扎 打 托 扣 扥 扭 扯 批 找-技 抄 把 抓 投 抗 折 披 抬 抱 抵 抹 抽 拆 拉 拋 拍 拏 拒 拔 拖 招 拜 括 拳 拼 拾 拿 持 指 按 挑 挖 挪 振 挺 捐 捕 捨 捲 捷 掃 授 掉 掌 排 掛 採 探 接 控 推 措 描 提 插 揚 換 握 揮 援 損 搖 搜 搞 搬 搭 搶 摘 摩 摸 撐 撒 撞 撣 撥 播 撾 撿 擁 擇 擊 擋 操 擎 擔 據 擠 擦 擬 擴 擺 擾 攝 支 收 改 攻 放 政 故 效 敍 敏 救 敗-教 敝 敢 散 敦 敬 整 敵 數 文 斐 斗 料 斯 新 斷 方 於 施 旁 旅 旋 族 旗 既 日 旦 早 旭 旺 昂 昆 昇 昌 明 昏 易 星 映 春 昨 昭 是 時 晉 晒 晚 晨 普 景 晴 晶 智 暑 暖 暗 暫 暴 曆 曉 曰 曲 更 書 曼 曾-最 會 月 有 朋 服 朗 望 朝 期 木 未-札 朱 朵 杉 李 材 村 杜 束 杯-東 松 板 析 林 果 枝 架 柏 某 染 柔 查 柬 柯 柳 柴 校 核 根 格 桃 案 桌 桑 梁 梅 條 梨 梯 械 梵 棄 棉 棋 棒 棚 森 椅 植 椰 楊 楓 楚 業 極 概 榜 榮 構 槍 樂 樓 標 樞 模 樣 樹 橋 機 橫 檀 檔 檢 欄 權 次 欣 欲 欺 欽 款 歉 歌 歐 歡-武 歲 歷 歸 死 殊 殘 段 殺 殼 毀 毅 母 每 毒 比 毛 毫 氏 民 氣 水 永 求 汗 汝 江-污 汪 汶 決 汽 沃 沈 沉 沒 沖 沙 河 油 治 沿 況 泉 泊 法 泡 波 泥 注 泰 泳 洋 洗 洛 洞 洩 洪 洲 活 洽 派 流 浦 浩 浪 浮 海 涇-涉 涯 液 涵 涼 淑 淚 淡 淨 深 混 淺 清 減 渡 測 港 游 湖 湯 源 準 溝 溪 溫 滄 滅 滋 滑 滴 滾 滿 漂 漏 演 漠 漢 漫 漲 漸 潔 潘 潛 潮 澤 澳 激 濃 濟 濤 濫 濱 瀏 灌 灣 火 灰 災 炎 炮 炸 為 烈 烏 烤 無 焦 然 煙 煞 照 煩 熊 熟 熱 燃 燈 燒 營 爆 爐 爛 爪 爬 爭 爵 父 爸 爺 爽 爾 牆-版 牌 牙 牛 牠 牧 物 牲 特 牽 犧 犯 狀 狂 狐 狗 狠 狼 猛 猜 猴 猶 獄 獅 獎 獨 獲 獸 獻 玄 率 玉 王 玩 玫 玲 玻 珊 珍 珠 珥 班 現 球 理 琉 琪 琴 瑙 瑜 瑞 瑟 瑤 瑪 瑰 環 瓜 瓦 瓶 甘 甚 甜 生 產 用 田-申 男 甸 界 留 畢 略 番 畫 異 當 疆 疏 疑 疼 病 痕 痛 痴 瘋 療 癡 癸 登-百 的 皆 皇 皮 盃 益 盛 盜 盟 盡 監 盤 盧 目 盲 直 相 盼 盾 省 眉 看 真 眠 眼 眾 睛 睡 督 瞧 瞭 矛 矣 知 短 石 砂 砍 研 砲 破 硬 碎 碗 碟 碧 碩 碰 確 碼 磁 磨 磯 礎 礙 示 社 祕 祖 祚 祛 祝 神 祥 票 祿 禁 禍-福 禪 禮 秀 私 秋 科 秒 秘 租 秤 秦 移 稅 程 稍 種 稱 稿 穆 穌 積 穩 究 穹 空 穿 突 窗 窩 窮 窶 立 站 竟 章 童 端 競 竹 笑 笛 符 笨 第 筆 等 筋 答 策 简 算 管 箭 箱 節 範 篇 築 簡 簫 簽 簿 籃 籌 籍 籤 米 粉 粗 粵 精 糊 糕 糟 系 糾 紀 約 紅 納 紐 純 紙-紛 素 索 紫 累 細 紹 終 組 結 絕 絡 給 統 絲 經 綜 綠 維 綱 網 緊 緒 線 緣 編 緩 緬 緯 練 縛 縣 縮 縱 總 績 繁 繆 織 繞 繪 繳 繼 續 缸 缺 罕 罪 置 罰 署 罵 罷 羅 羊 美 羞 群 義 羽 翁 習 翔 翰 翹 翻 翼 耀 老 考 者 而 耍 耐 耗 耳 耶 聊 聖 聚 聞 聯 聰 聲 職 聽 肉 肚 股 肥 肩 肯 育 背 胎 胖 胞 胡 胸 能 脆 脫 腓 腔 腦 腰 腳 腿 膽 臉 臘 臣 臥 臨 自 臭 至 致 臺 與-舊 舌 舍 舒 舞 舟 航 般 船 艦 良 色 艾 芝 芬 花 芳 若 苦 英 茅 茫 茲 茶 草 荒 荷 荼 莉 莊 莎 莫 菜 菩 華 菲 萄 萊 萬 落 葉 著 葛 葡 蒂 蒙 蒲 蒼 蓋 蓮 蔕 蔡 蔣 蕭 薄 薦 薩 薪 藉 藍 藏 藝 藤 藥 蘆 蘇 蘭 虎 處 虛 號 虧 蛇 蛋 蛙 蜂 蜜 蝶 融 螢 蟲 蟹 蠍 蠻 血 行 術 街 衛 衝 衡 衣 表 袋 被 裁 裂 裕 補 裝 裡 製 複 褲 西 要 覆 見 規 視 親 覺 覽 觀 角 解 觸 言 訂 計 訊 討 訓 託 記 訥 訪 設 許 訴 註 証 評 詞 詢 試 詩 話-詳 誇 誌 認 誓 誕 語 誠 誤 說 誰 課 誼 調 談 請 諒 論 諸 諺 諾 謀 謂 講 謝 證 識 譜 警 譯 議 護 譽 讀 變 讓 讚 谷 豆 豈 豐 象 豪 豬 貌 貓 貝 貞 負-貢 貨 貪-責 貴 買 費 貼 賀 資 賈 賓 賜 賞 賢-賤 賦 質 賭 賴 賺 購 賽 贈 贊 贏 赤 赫 走 起 超 越 趕 趙 趣 趨 足 跌 跎 跑 距 跟 跡 路 跳 踏 踢 蹟 蹤 躍 身 躲 車 軌 軍 軒 軟 較 載 輔 輕 輛 輝 輩 輪 輯 輸 轉 轟 辛 辦 辨 辭 辯-農 迅 迎 近 返 迦 迪 迫 述 迴 迷 追 退 送 逃 逆 透 逐 途 這-逛 逝 速 造 逢 連 週 進 逸 逼 遇 遊 運 遍 過 道-違 遙 遜 遠 適 遭 遮 遲 遷 選 遺 避-邁 還 邊 邏 那 邦 邪 邱 郎 部 郭 郵 都 鄂 鄉 鄭 鄰 酉 配 酒 酷 酸 醉 醒 醜 醫 采 釋-量 金 針 釣 鈴 鉢 銀 銅 銖 銘 銳 銷 鋒 鋼 錄 錢 錦 錫 錯 鍋 鍵 鍾 鎊 鎖 鎮 鏡 鐘 鐵 鑑 長 門 閃 閉 開 閏 閒 間 閣 閱 闆 闊 闍 闐 關 闡 防 阻 阿 陀 附 降 限 院-除 陪 陰 陳 陵-陸 陽 隆 隊 階 隔 際 障 隨 險 隱 隻 雄-集 雉 雖 雙 雜 雞 離 難 雨 雪 雲 零 雷 電 需 震 霍 霧 露 霸 霹 靂 靈 青 靖 靜 非 靠 面 革 靼 鞋 韃 韋 韓 音 韻 響 頁 頂 項 順 須 預 頑 頓 頗 領 頞 頭 頻 顆 題 額 顏 願 類 顧 顯 風 飄 飛 食 飯 飲 飽 飾 餅 養 餐 餘 館 首 香 馬 駐 駕 駛 騎 騙 騷 驅 驗 驚 骨 體 高 髮 鬆 鬥 鬧 鬱 鬼 魁 魂 魅 魔 魚 魯 鮮 鳥 鳳 鳴 鴻 鵝 鷹 鹿 麗 麥 麵 麻 麼 黃 黎 黑 默 點 黨 鼓 鼠 鼻 齊 齋 齒 齡 龍 龜] + [乍 仂 伏 佐 侶 僳 兆 兌 兹 别 券 勳 卑 卞 占 叶 堤 墎 壤 奥 孜 峇 嶼 巽 栗 楔 涅 渾 澎 燦 狄 琳 瑚 甫 碑 礁 芒 苗 茨 蓬 蚩 蜀 裘 謬 酋 隴] + [一 丁 丈 不 且 丞 並 串 乘 乾 亂 亭 傀 僎 僵 儐 償 儳 儷 儻 叢 嚴 囌 囑 廳] + [‾ ﹉﹊﹋﹌ _ _ ﹍﹎﹏ ︳︴ \- - ﹣ ‐ – ︲ — ﹘ ︱ , , ﹐ 、 ﹑ ; ; ﹔ \: : ﹕ ! ! ﹗ ? ? ﹖ . . ﹒ ‥ ︰ … 。 · ' ‘ ’ " " “ ” 〝 〞 ( ( ﹙ ︵ ) ) ﹚ ︶ \[ [ \] ] \{ { ﹛ ︷ \} } ﹜ ︸ 〈 ︿ 〉 ﹀ 《 ︽ 》 ︾ 「 ﹁ 」 ﹂ 『 ﹃ 』 ﹄ 【 ︻ 】 ︼ 〔 ﹝ ︹ 〕 ﹞ ︺ § @ @ ﹫ * * ﹡ / / \\ \ ﹨ \& & ﹠ # # ﹟ % % ﹪ ‰ † ‡ ‧ ′ ″ ‵ 〃 ※] + {0}… + …{0} + {0}…{1} + {0} … + … {0} + {0} … {1} + + + + + + + + + + + + + + 佛曆 + + + + + + Gy年M月d日EEEE + + + + + Gy年M月d日 + + + + + Gy年M月d日 + + + + + Gy/M/d + + + + + + d日 + d日(E) + Gy年 + Gy年M月 + Gy年M月d日 + Gy年M月d日E + M月 + M/d + M/d(E) + LLL + M月d日 + M月d日E + M月d日 + Gy年 + Gy年 + Gy/M + Gy/M/d + Gy/M/d(E) + Gy年M月 + Gy年M月d日 + Gy年M月d日E + Gy年M月 + Gy年QQQ + Gy年QQQQ + + + + + + + + 正月 + 二月 + 三月 + 四月 + 五月 + 六月 + 七月 + 八月 + 九月 + 十月 + 冬月 + 臘月 + + + + + + + + + + + + + + + + + 正月 + 二月 + 三月 + 四月 + 五月 + 六月 + 七月 + 八月 + 九月 + 十月 + 冬月 + 臘月 + + + + + 正月 + 二月 + 三月 + 四月 + 五月 + 六月 + 七月 + 八月 + 九月 + 十月 + 冬月 + 臘月 + + + + + + + + + + + + + + + + + 正月 + 二月 + 三月 + 四月 + 五月 + 六月 + 七月 + 八月 + 九月 + 十月 + 冬月 + 臘月 + + + + + + + 閏{0} + + + + + 閏{0} + + + + + 閏{0} + + + + + + + + + + + + + + + + + + + + + + + + + + 立春 + 雨水 + 驚蟄 + 春分 + 清明 + 穀雨 + 立夏 + 小滿 + 芒種 + 夏至 + 小暑 + 大暑 + 立秋 + 處暑 + 白露 + 秋分 + 寒露 + 霜降 + 立冬 + 小雪 + 大雪 + 冬至 + 小寒 + 大寒 + + + + + + + 甲子 + 乙丑 + 丙寅 + 丁卯 + 戊辰 + 己巳 + 庚午 + 辛未 + 壬申 + 癸酉 + 甲戌 + 乙亥 + 丙子 + 丁丑 + 戊寅 + 己卯 + 庚辰 + 辛巳 + 壬午 + 癸未 + 甲申 + 乙酉 + 丙戌 + 丁亥 + 戊子 + 己丑 + 庚寅 + 辛卯 + 壬辰 + 癸巳 + 甲午 + 乙未 + 丙申 + 丁酉 + 戊戌 + 己亥 + 庚子 + 辛丑 + 壬寅 + 癸卯 + 甲辰 + 乙巳 + 丙午 + 丁未 + 戊申 + 己酉 + 庚戌 + 辛亥 + 壬子 + 癸丑 + 甲寅 + 乙卯 + 丙辰 + 丁巳 + 戊午 + 己未 + 庚申 + 辛酉 + 壬戌 + 癸亥 + + + + + + + + + + + + + + + + + + + + + + + + + + U (r) 年MMMdEEEE + + + + + U (r) 年MMMd + + + + + r年MMMd + + + + + r/M/d + + + + + + d日 + d日E + rU年 + rU年MMM + r年MMMd + rU年MMMdE + MMM + M/d + M/dE + MMMd日 + MMMd日E + MMMMd日 + U年MMM + U年MMMd + U年MMM + U年MMMd + rU年 + r年MMMd + rU年 + rU年MMM + r年MMMd + rU年MMMd,E + rU年MMM + r年MMMd + rU年MMMdE + rU年MMMM + rU年QQQQ + rU年QQQQ + + + {0}至{1} + + d日至d日 + + + ah時至ah時 + ah時至h時 + + + ah:mm至ah:mm + ah:mm至h:mm + ah:mm至h:mm + + + ah:mm至ah:mm [v] + ah:mm至h:mm [v] + ah:mm至h:mm [v] + + + HH:mm–HH:mm [v] + HH:mm–HH:mm [v] + + + ah時至ah時 [v] + ah時至h時 [v] + + + HH–HH [v] + + + MMM至MMM + + + M/d至M/d + M/d至M/d + + + M/dE至M/dE + M/dE至M/dE + + + LLL至LLL + + + MMMd日至d日 + MMMd日至MMMd日 + + + MMMd日E至d日E + MMMd日E至MMMd日E + + + LLLL至LLLL + + + rU至rU + + + r/M至r/M + r/M至r/M + + + r/M/d至r/M/d + r/M/d至r/M/d + r/M/d至r/M/d + + + r/M/dE至r/M/dE + r/M/dE至r/M/dE + r/M/dE至r/M/dE + + + rU年MMM至MMM + rU年MMM至rU年MMM + + + r年MMMd至d + r年MMMd至MMMd + r年MMMd至r年MMMd + + + rU年MMMdE至dE + rU年MMMdE至MMMdE + rU年MMMdE至rU年MMMdE + + + rU年MMMM至MMMM + rU年MMMM至rU年MMMM + + + + + + + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + 13月 + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + 13月 + + + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + 13月 + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + 13月 + + + + + + + + + 正月 + 二月 + 三月 + 四月 + 五月 + 六月 + 七月 + 八月 + 九月 + 十月 + 十一月 + 十二月 + + + + + + + + + + + + + 十一 + 十二 + + + 正月 + 二月 + 三月 + 四月 + 五月 + 六月 + 七月 + 八月 + 九月 + 十月 + 十一月 + 十二月 + + + + + 正月 + 二月 + 三月 + 四月 + 五月 + 六月 + 七月 + 八月 + 九月 + 十月 + 十一月 + 十二月 + + + + + + + + + + + + + 十一 + 十二 + + + 正月 + 二月 + 三月 + 四月 + 五月 + 六月 + 七月 + 八月 + 九月 + 十月 + 十一月 + 十二月 + + + + + + + + + + + + + + + + + + + + + + + + + + 甲子 + 乙丑 + 丙寅 + 丁卯 + 戊辰 + 己巳 + 庚午 + 辛未 + 壬申 + 癸酉 + 甲戌 + 乙亥 + 丙子 + 丁丑 + 戊寅 + 己卯 + 庚辰 + 辛巳 + 壬午 + 癸未 + 甲申 + 乙酉 + 丙戌 + 丁亥 + 戊子 + 己丑 + 庚寅 + 辛卯 + 壬辰 + 癸巳 + 甲午 + 乙未 + 丙申 + 丁酉 + 戊戌 + 己亥 + 庚子 + 辛丑 + 壬寅 + 癸卯 + 甲辰 + 乙巳 + 丙午 + 丁未 + 戊申 + 己酉 + 庚戌 + 辛亥 + 壬子 + 癸丑 + 甲寅 + 乙卯 + 丙辰 + 丁巳 + 戊午 + 己未 + 庚申 + 辛酉 + 壬戌 + 癸亥 + + + + + + + + + + + + + + + + + + + + + + + + + + U年MMMd日EEEE + + + + + U年MMMd日 + + + + + U年MMMd日 + + + + + U/M/d + + + + + + + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + 13月 + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + 13月 + + + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + 13月 + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + 13月 + + + + + + + + + G y年M月d日 EEEE + + + + + G y年M月d日 + + + + + G y年M月d日 + + + + + G y/M/d + + + + + + + {1}{0} + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + d日 + ccc + d E + G y年 + G y年M月 + G y年M月d日 + G y年M月d日 E + ah時 + H時 + ah:mm + H:mm + ah:mm:ss + H:mm:ss + M月 + M/d + M/d(E) + LLL + M月d日 + M月d日 E + M月d日 + mm:ss + G y年 + G y年 + G y/M + G y/M/d + G y/M/d(E) + G y年M月 + G y年M月d日 + G y年M月d日 E + G y年M月 + G y年QQQ + G y年QQQQ + + + {0}至{1} + + d日至d日 + + + ah時至ah時 + ah時至h時 + + + HH–HH + + + ah:mm至ah:mm + ah:mm至h:mm + ah:mm至h:mm + + + HH:mm–HH:mm + HH:mm–HH:mm + + + ah:mm至ah:mm [v] + ah:mm至h:mm [v] + ah:mm至h:mm [v] + + + HH:mm–HH:mm [v] + HH:mm–HH:mm [v] + + + ah時至ah時 [v] + ah時至h時 [v] + + + HH–HH [v] + + + M月至M月 + + + M/d至M/d + M/d至M/d + + + d/M (E) 至 d/M (E) + d/M (E) 至 d/M (E) + + + LLL至LLL + + + M月d日至d日 + M月d日至M月d日 + + + M月d日E至d日E + M月d日E至M月d日E + + + LLLL至LLLL + + + G y至y + + + G y/M至y/M + G y/M至y/M + + + G y/M/d至y/M/d + G y/M/d至y/M/d + G y/M/d至y/M/d + + + G y/M/dE至y/M/dE + G y/M/dE至y/M/dE + G y/M/dE至y/M/dE + + + G y年M月至M月 + G y年M月至y年M月 + + + G y年M月d日至d日 + G y年M月d日至M月d日 + G y年M月d日至y年M月d日 + + + G y年M月d日E至d日E + G y年M月d日E至M月d日E + G y年M月d日E至y年M月d日E + + + G y年M月至M月 + G y年M月至y年M月 + + + + + + + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + + + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + + + + + + + 週日 + 週一 + 週二 + 週三 + 週四 + 週五 + 週六 + + + + + + + + + + + + + + + + + + + + + 星期日 + 星期一 + 星期二 + 星期三 + 星期四 + 星期五 + 星期六 + + + + + 週日 + 週一 + 週二 + 週三 + 週四 + 週五 + 週六 + + + + + + + + + + + + + + + + + + + + + 星期日 + 星期一 + 星期二 + 星期三 + 星期四 + 星期五 + 星期六 + + + + + + + 1季 + 2季 + 3季 + 4季 + + + 1 + 2 + 3 + 4 + + + 第1季 + 第2季 + 第3季 + 第4季 + + + + + 1季 + 2季 + 3季 + 4季 + + + 1 + 2 + 3 + 4 + + + 第1季 + 第2季 + 第3季 + 第4季 + + + + + + + 午夜 + 上午 + 下午 + 清晨 + 朝早 + 中午 + 下晝 + 夜晚 + 凌晨 + + + 午夜 + 朝早 + 下晝 + 清晨 + 朝早 + 中午 + 下晝 + 夜晚 + 凌晨 + + + 午夜 + 上午 + 下午 + 清晨 + 朝早 + 中午 + 下晝 + 夜晚 + 凌晨 + + + + + 午夜 + 清晨 + 朝早 + 中午 + 下晝 + 夜晚 + 凌晨 + + + 下晝 + 朝早 + 下午 + 夜晚 + 朝早 + 中午 + 下晝 + 夜晚 + 凌晨 + + + 午夜 + 清晨 + 朝早 + 中午 + 下晝 + 夜晚 + 凌晨 + + + + + + 西元前 + 公元前 + 西元 + 公元 + + + 西元前 + 公元前 + 西元 + 公元 + + + 西元前 + 公元前 + 西元 + 公元 + + + + + + y年M月d日 EEEE + + + + + y年M月d日 + + + + + y年M月d日 + + + + + y/M/d + + + + + + + ah:mm:ss [zzzz] + + + + + ah:mm:ss [z] + + + + + ah:mm:ss + + + + + ah:mm + + + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + d日 + ccc + d E + E ah:mm + E HH:mm + E ah:mm:ss + E HH:mm:ss + Gy年 + Gy年M月 + Gy年M月d日 + Gy年M月d日 E + ah時 + H時 + ah:mm + HH:mm + ah:mm:ss + HH:mm:ss + ah:mm:ss [v] + HH:mm:ss [v] + ah:mm [v] + HH:mm [v] + M月 + M/d + M/d(E) + MM/dd + LLL + M月d日 + M月d日 E + M月d日 + mm:ss + y年 + y/M + y/M/d + y/M/d(E) + y/MM + y年M月 + y年M月d日 + y年M月d日 E + y年M月 + y年QQQ + y年QQQQ + + + {0} {1} + + + {0}至{1} + + d日至d日 + + + ah時至ah時 + ah時至h時 + + + HH–HH + + + ah:mm至ah:mm + ah:mm至h:mm + ah:mm至h:mm + + + HH:mm–HH:mm + HH:mm至HH:mm + + + ah:mm至ah:mm [v] + ah:mm至h:mm [v] + ah:mm至h:mm [v] + + + HH:mm–HH:mm [v] + HH:mm–HH:mm [v] + + + ah時至ah時 [v] + ah時至h時 [v] + + + HH–HH [v] + + + M月至M月 + + + M/d至M/d + M/d至M/d + + + d/M (E) 至 d/M (E) + d/M (E) 至 d/M (E) + + + LLL至LLL + + + M月d日至d日 + M月d日至M月d日 + + + M月d日E至d日E + M月d日E至M月d日E + + + LLLL至LLLL + + + y至y + + + y/M至y/M + y/M至y/M + + + y/M/d至y/M/d + y/M/d至y/M/d + y/M/d至y/M/d + + + d/M/y (E) 至 d/M/y (E) + d/M/y (E) 至 d/M/y (E) + d/M/y (E) 至 d/M/y (E) + + + y年M月至M月 + y年M月至y年M月 + + + y年M月d日至d日 + y年M月d日至M月d日 + y年M月d日至y年M月d日 + + + y年M月d日E至d日E + y年M月d日E至M月d日E + y年M月d日E至y年M月d日E + + + y年M月至M月 + y年M月至y年M月 + + + + + + + + + 提斯利月 + 瑪西班月 + 基斯流月 + 提別月 + 細罷特月 + 亞達月 I + 亞達月 + 亞達月 II + 尼散月 + 以珥月 + 西彎月 + 搭模斯月 + 埃波月 + 以祿月 + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + + + 提斯利月 + 瑪西班月 + 基斯流月 + 提別月 + 細罷特月 + 亞達月 I + 亞達月 + 亞達月 II + 尼散月 + 以珥月 + 西彎月 + 搭模斯月 + 埃波月 + 以祿月 + + + + + 提斯利月 + 瑪西班月 + 基斯流月 + 提別月 + 細罷特月 + 亞達月 I + 亞達月 + 亞達月 II + 尼散月 + 以珥月 + 西彎月 + 搭模斯月 + 埃波月 + 以祿月 + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + + + 提斯利月 + 瑪西班月 + 基斯流月 + 提別月 + 細罷特月 + 亞達月 I + 亞達月 + 亞達月 II + 尼散月 + 以珥月 + 西彎月 + 搭模斯月 + 埃波月 + 以祿月 + + + + + + 創世紀元 + + + + + + Gy年M月d日EEEE + + + + + Gy年M月d日 + + + + + Gy年M月d日 + + + + + Gy/M/d + + + + + + + + + 制檀邏月 + 吠舍佉月 + 逝瑟吒月 + 頞沙荼月 + 室羅伐拏月 + 婆羅鉢陀月 + 頞涇縛庚闍月 + 迦剌底迦月 + 末伽始羅月 + 報沙月 + 磨祛月 + 頗勒窶拏月 + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + 制檀邏月 + 吠舍佉月 + 逝瑟吒月 + 頞沙荼月 + 室羅伐拏月 + 婆羅鉢陀月 + 頞涇縛庚闍月 + 迦剌底迦月 + 末伽始羅月 + 報沙月 + 磨祛月 + 頗勒窶拏月 + + + + + 制檀邏月 + 吠舍佉月 + 逝瑟吒月 + 頞沙荼月 + 室羅伐拏月 + 婆羅鉢陀月 + 頞涇縛庚闍月 + 迦剌底迦月 + 末伽始羅月 + 報沙月 + 磨祛月 + 頗勒窶拏月 + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + 制檀邏月 + 吠舍佉月 + 逝瑟吒月 + 頞沙荼月 + 室羅伐拏月 + 婆羅鉢陀月 + 頞涇縛庚闍月 + 迦剌底迦月 + 末伽始羅月 + 報沙月 + 磨祛月 + 頗勒窶拏月 + + + + + + 印度曆 + + + + + + + + 穆哈蘭姆月 + 色法爾月 + 賴比月 I + 賴比月 II + 主馬達月 I + 主馬達月 II + 賴哲卜月 + 舍爾邦月 + 賴買丹月 + 閃瓦魯月 + 都爾喀爾德月 + 都爾黑哲月 + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + 穆哈蘭姆月 + 色法爾月 + 賴比月 I + 賴比月 II + 主馬達月 I + 主馬達月 II + 賴哲卜月 + 舍爾邦月 + 賴買丹月 + 閃瓦魯月 + 都爾喀爾德月 + 都爾黑哲月 + + + + + 穆哈蘭姆月 + 色法爾月 + 賴比月 I + 賴比月 II + 主馬達月 I + 主馬達月 II + 賴哲卜月 + 舍爾邦月 + 賴買丹月 + 閃瓦魯月 + 都爾喀爾德月 + 都爾黑哲月 + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + 穆哈蘭姆月 + 色法爾月 + 賴比月 I + 賴比月 II + 主馬達月 I + 主馬達月 II + 賴哲卜月 + 舍爾邦月 + 賴買丹月 + 閃瓦魯月 + 都爾喀爾德月 + 都爾黑哲月 + + + + + + 伊斯蘭曆 + + + + + + Gy年M月d日EEEE + + + + + Gy年M月d日 + + + + + Gy年M月d日 + + + + + Gy/M/d + + + + + + d日 + d日(E) + Gy年 + Gy年M月 + Gy年M月d日 + Gy年M月d日E + M月 + M/d + M/d(E) + LLL + M月d日 + M月d日E + M月d日 + Gy年 + Gy年 + Gy/M + Gy/M/d + Gy/M/d(E) + Gy年M月 + Gy年M月d日 + Gy年M月d日E + Gy年M月 + Gy年QQQ + Gy年QQQQ + + + + + + + + 大化 + 白雉 + 白鳳 + 朱鳥 + 大寶 + 慶雲 + 和銅 + 靈龜 + 養老 + 神龜 + 天平 + 天平感寶 + 天平勝寶 + 天平寶字 + 天平神護 + 神護景雲 + 寶龜 + 天應 + 延曆 + 大同 + 弘仁 + 天長 + 承和 + 嘉祥 + 仁壽 + 齊衡 + 天安 + 貞觀 + 元慶 + 仁和 + 寬平 + 昌泰 + 延喜 + 延長 + 承平 + 天慶 + 天曆 + 天德 + 應和 + 康保 + 安和 + 天祿 + 天延 + 貞元 + 天元 + 永觀 + 寬和 + 永延 + 永祚 + 正曆 + 長德 + 長保 + 寬弘 + 長和 + 寬仁 + 治安 + 萬壽 + 長元 + 長曆 + 長久 + 寬德 + 永承 + 天喜 + 康平 + 治曆 + 延久 + 承保 + 承曆 + 永保 + 應德 + 寬治 + 嘉保 + 永長 + 承德 + 康和 + 長治 + 嘉承 + 天仁 + 天永 + 永久 + 元永 + 保安 + 天治 + 大治 + 天承 + 長承 + 保延 + 永治 + 康治 + 天養 + 久安 + 仁平 + 久壽 + 保元 + 平治 + 永曆 + 應保 + 長寬 + 永萬 + 仁安 + 嘉應 + 承安 + 安元 + 治承 + 養和 + 壽永 + 元曆 + 文治 + 建久 + 正治 + 建仁 + 元久 + 建永 + 承元 + 建曆 + 建保 + 承久 + 貞應 + 元仁 + 嘉祿 + 安貞 + 寬喜 + 貞永 + 天福 + 文曆 + 嘉禎 + 曆仁 + 延應 + 仁治 + 寬元 + 寶治 + 建長 + 康元 + 正嘉 + 正元 + 文應 + 弘長 + 文永 + 建治 + 弘安 + 正應 + 永仁 + 正安 + 乾元 + 嘉元 + 德治 + 延慶 + 應長 + 正和 + 文保 + 元應 + 元亨 + 正中 + 嘉曆 + 元德 + 元弘 + 建武 + 延元 + 興國 + 正平 + 建德 + 文中 + 天授 + 康曆 + 弘和 + 元中 + 至德 + 嘉慶 + 康應 + 明德 + 應永 + 正長 + 永享 + 嘉吉 + 文安 + 寶德 + 享德 + 康正 + 長祿 + 寬正 + 文正 + 應仁 + 文明 + 長享 + 延德 + 明應 + 文龜 + 永正 + 大永 + 享祿 + 天文 + 弘治 + 永祿 + 元龜 + 天正 + 文祿 + 慶長 + 元和 + 寬永 + 正保 + 慶安 + 承應 + 明曆 + 萬治 + 寬文 + 延寶 + 天和 + 貞享 + 元祿 + 寶永 + 正德 + 享保 + 元文 + 寬保 + 延享 + 寬延 + 寶曆 + 明和 + 安永 + 天明 + 寬政 + 享和 + 文化 + 文政 + 天保 + 弘化 + 嘉永 + 安政 + 萬延 + 文久 + 元治 + 慶應 + 明治 + 大正 + 昭和 + 平成 + + + + + + Gy年M月d日EEEE + + + + + Gy年M月d日 + + + + + Gy年M月d日 + + + + + Gy/M/d + + + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + + {1} {0} + + + + + d日 + d日(E) + Gy年 + Gy年M月 + Gy年M月d日 + Gy年M月d日E + ah時 + H時 + ah:mm + HH:mm + ah:mm:ss + HH:mm:ss + M月 + M/d + M/d(E) + LLL + MMM d + M月d日E + MMMM d + mm:ss + Gy年 + Gy年 + Gy/M + Gy/M/d + Gy/M/d(E) + Gy年M月 + Gy年M月d日 + Gy年M月d日E + Gy年M月 + Gy年QQQ + Gy年QQQQ + + + + + + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + + + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + + + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 + 10月 + 11月 + 12月 + + + + + + 波斯曆 + + + 波斯曆 + + + + + + + 民國前 + 民國 + + + + + + Gy年M月d日 EEEE + + + + + Gy年M月d日 + + + + + Gy年M月d日 + + + + + Gy/M/d + + + + + + d日 + ccc + d日(E) + Gy年 + Gy年M月 + Gy年M月d日 + Gy年M月d日E + M月 + M/d + M/d(E) + LLL + M月d日 + M月d日E + M月d日 + Gy年 + Gy年 + Gy/M + Gy/M/d + Gy/M/d(E) + Gy年M月 + Gy年M月d日 + Gy年M月d日E + Gy年M月 + Gy年QQQ + Gy年QQQQ + + + + + + + 年代 + + + + 去年 + 今年 + 明年 + + {0} 年後 + + + {0} 年前 + + + + + + {0} 年後 + + + {0} 年前 + + + + + + {0} 年後 + + + {0} 年前 + + + + + 上一季 + 今季 + 下一季 + + {0} 季後 + + + {0} 季前 + + + + + 上季 + 今季 + 下季 + + {0} 季後 + + + {0} 季前 + + + + + 上季 + 今季 + 下季 + + {0}季後 + + + {0}季前 + + + + + 上個月 + 本月 + 下個月 + + {0} 個月後 + + + {0} 個月前 + + + + + + {0} 個月後 + + + {0} 個月前 + + + + + + {0} 個月後 + + + {0} 個月前 + + + + + 上週 + 本週 + 下週 + + {0} 週後 + + + {0} 週前 + + + + + + {0} 週後 + + + {0} 週前 + + + + + + {0} 週後 + + + {0} 週前 + + + + + 前天 + 尋日 + 今天 + 聽日 + 後天 + + {0} 天後 + + + {0} 天前 + + + + + + {0} 天後 + + + {0} 天前 + + + + + + {0} 天後 + + + {0} 天前 + + + + 週天 + + + 上週日 + 本週日 + 下週日 + + + 上週日 + 本週日 + 下週日 + + + 上週日 + 本週日 + 下週日 + + + 上週一 + 本週一 + 下週一 + + + 上週一 + 本週一 + 下週一 + + + 上週一 + 本週一 + 下週一 + + + 上週二 + 本週二 + 下週二 + + + 上週二 + 本週二 + 下週二 + + + 上週二 + 本週二 + 下週二 + + + 上週三 + 本週三 + 下週三 + + + 上週三 + 本週三 + 下週三 + + + 上週三 + 本週三 + 下週三 + + + 上週四 + 本週四 + 下週四 + + + 上週四 + 本週四 + 下週四 + + + 上週四 + 本週四 + 下週四 + + + 上週五 + 本週五 + 下週五 + + + 上週五 + 本週五 + 下週五 + + + 上週五 + 本週五 + 下週五 + + + 上週六 + 本週六 + 下週六 + + + 上週六 + 本週六 + 下週六 + + + 上週六 + 本週六 + 下週六 + + + 上午/下午 + + + 小時 + + {0} 小時後 + + + {0} 小時前 + + + + 小時 + + {0} 小時後 + + + {0} 小時前 + + + + 小時 + + {0} 小時後 + + + {0} 小時前 + + + + 分鐘 + + {0} 分鐘後 + + + {0} 分鐘前 + + + + 分鐘 + + {0} 分鐘後 + + + {0} 分鐘前 + + + + 分鐘 + + {0} 分鐘後 + + + {0} 分鐘前 + + + + + 現在 + + {0} 秒後 + + + {0} 秒前 + + + + + + {0} 秒後 + + + {0} 秒前 + + + + + + {0} 秒後 + + + {0} 秒前 + + + + 時區 + + + + +HH:mm;-HH:mm + GMT{0} + GMT + {0}時間 + {0} (+1) + {0} (+0) + {1} ({0}) + + 未知城市 + + + 安道爾 + + + 杜拜 + + + 喀布爾 + + + 安地卡 + + + 安吉拉 + + + 地拉那 + + + 葉里溫 + + + 羅安達 + + + 羅瑟拉 + + + 帕麥 + + + 綽爾 + + + 昭和基地 + + + 莫森 + + + 戴維斯 + + + 沃斯托克 + + + 凱西 + + + 杜蒙杜比爾 + + + 麥克默多 + + + 里奧加耶戈斯 + + + 門多薩 + + + 聖胡安 + + + 烏斯懷亞 + + + 拉略哈 + + + 聖路易 + + + 卡塔馬卡 + + + 薩爾塔 + + + 胡胡伊 + + + 吐庫曼 + + + 哥多華 + + + 布宜諾斯艾利斯 + + + 巴哥巴哥 + + + 維也納 + + + 伯斯 + + + 尤克拉 + + + 達爾文 + + + 阿得雷德 + + + 布羅肯希爾 + + + 克黎 + + + 墨爾本 + + + 荷巴特 + + + 林德曼 + + + 雪梨 + + + 布利斯班 + + + 麥覺理 + + + 豪勳爵島 + + + 阿路巴 + + + 瑪麗港 + + + 巴庫 + + + 塞拉耶佛 + + + 巴貝多 + + + 達卡 + + + 布魯塞爾 + + + 瓦加杜古 + + + 索菲亞 + + + 巴林 + + + 布松布拉 + + + 波多諾佛 + + + 聖巴托洛繆島 + + + 百慕達 + + + 汶萊 + + + 拉巴斯 + + + 克拉倫代克 + + + 艾魯內佩 + + + 里約布蘭 + + + 維留港 + + + 保維斯塔 + + + 瑪瑙斯 + + + 古雅巴 + + + 聖塔倫 + + + 格蘭場 + + + 貝倫 + + + 阿拉圭那 + + + 聖保羅 + + + 巴伊阿 + + + 福塔力莎 + + + 馬瑟歐 + + + 雷西非 + + + 諾倫哈 + + + 拿索 + + + 廷布 + + + 嘉柏隆里 + + + 明斯克 + + + 貝里斯 + + + 道森 + + + 懷特霍斯 + + + 伊奴維克 + + + 溫哥華 + + + 道森克里克 + + + 克雷斯頓 + + + 耶洛奈夫 + + + 艾德蒙吞 + + + 斯威夫特卡倫特 + + + 劍橋灣 + + + 里賈納 + + + 溫尼伯 + + + 羅斯魯特 + + + 雨河鎮 + + + 蘭今灣 + + + 阿蒂科肯 + + + 珊德灣 + + + 尼皮岡 + + + 多倫多 + + + 伊魁特 + + + 潘尼爾東 + + + 蒙克頓 + + + 哈里法克斯 + + + 鵝灣 + + + 格雷斯貝 + + + 白朗薩布隆 + + + 聖約翰 + + + 科科斯群島 + + + 金夏沙 + + + 盧本巴希 + + + 班吉 + + + 布拉柴維爾 + + + 蘇黎世 + + + 阿比讓 + + + 拉羅湯加 + + + 復活島 + + + 聖地牙哥 + + + 杜阿拉 + + + 烏魯木齊 + + + 上海 + + + 波哥大 + + + 哥斯大黎加 + + + 哈瓦那 + + + 維德角 + + + 庫拉索 + + + 聖誕島 + + + 尼古西亞 + + + 布拉格 + + + 布辛根 + + + 柏林 + + + 吉布地 + + + 哥本哈根 + + + 多明尼加 + + + 聖多明哥 + + + 阿爾及爾 + + + 加拉巴哥群島 + + + 瓜亞基爾 + + + 塔林 + + + 開羅 + + + 阿尤恩 + + + 阿斯瑪拉 + + + 加納利 + + + 休達 + + + 馬德里 + + + 阿迪斯阿貝巴 + + + 赫爾辛基 + + + 斐濟 + + + 史坦利 + + + 楚克 + + + 波納佩 + + + 科斯瑞 + + + 法羅群島 + + + 巴黎 + + + 自由市 + + + + 英國夏令時間 + + 倫敦 + + + 格瑞納達 + + + 第比利斯 + + + 開雲 + + + 根息島 + + + 阿克拉 + + + 直布羅陀 + + + 杜里 + + + 努克 + + + 伊托科爾托米特 + + + 丹馬沙文 + + + 班竹 + + + 柯那克里 + + + 瓜地洛普 + + + 馬拉博 + + + 雅典 + + + 南喬治亞 + + + 瓜地馬拉 + + + 關島 + + + 比紹 + + + 蓋亞那 + + + 中華人民共和國香港特別行政區 + + + 德古斯加巴 + + + 札格瑞布 + + + 太子港 + + + 布達佩斯 + + + 雅加達 + + + 坤甸 + + + 馬卡沙爾 + + + 加亞布拉 + + + + 愛爾蘭標準時間 + + 都柏林 + + + 耶路撒冷 + + + 曼島 + + + 加爾各答 + + + 查戈斯 + + + 巴格達 + + + 德黑蘭 + + + 雷克雅維克 + + + 羅馬 + + + 澤西島 + + + 牙買加 + + + 安曼 + + + 東京 + + + 奈洛比 + + + 比什凱克 + + + 金邊 + + + 恩得伯理島 + + + 基里地馬地島 + + + 塔拉瓦 + + + 科摩羅群島 + + + 聖基茨 + + + 平壤 + + + 首爾 + + + 科威特 + + + 開曼群島 + + + 阿克套 + + + 烏拉爾 + + + 阿克托比 + + + 克孜勒奧爾達 + + + 阿拉木圖 + + + 永珍 + + + 貝魯特 + + + 聖露西亞 + + + 瓦都茲 + + + 可倫坡 + + + 蒙羅維亞 + + + 馬賽魯 + + + 維爾紐斯 + + + 盧森堡 + + + 里加 + + + 的黎波里 + + + 卡薩布蘭卡 + + + 摩納哥 + + + 奇西瑙 + + + 波多里察 + + + 馬里戈特 + + + 安塔那那利佛 + + + 瓜加林島 + + + 馬朱諾 + + + 史高比耶 + + + 巴馬科 + + + 仰光 + + + 科布多 + + + 烏蘭巴托 + + + 喬巴山 + + + 中華人民共和國澳門特別行政區 + + + 塞班 + + + 馬丁尼克 + + + 諾克少 + + + 蒙哲臘 + + + 馬爾他 + + + 模里西斯 + + + 馬爾地夫 + + + 布蘭太爾 + + + 提華納 + + + 聖伊薩貝爾 + + + 埃莫西約 + + + 馬薩特蘭 + + + 奇華華 + + + 巴伊亞班德拉斯 + + + 奧希納加 + + + 蒙特瑞 + + + 墨西哥市 + + + 馬塔莫羅斯 + + + 梅里達 + + + 坎昆 + + + 吉隆坡 + + + 古晉 + + + 馬普托 + + + 溫得和克 + + + 諾美亞 + + + 尼亞美 + + + 諾福克 + + + 拉哥斯 + + + 馬拿瓜 + + + 阿姆斯特丹 + + + 奧斯陸 + + + 加德滿都 + + + 諾魯 + + + 紐埃島 + + + 查坦 + + + 奧克蘭 + + + 馬斯開特 + + + 巴拿馬 + + + 利馬 + + + 大溪地 + + + 馬可薩斯島 + + + 甘比爾群島 + + + 莫士比港 + + + 布干維爾 + + + 馬尼拉 + + + 喀拉蚩 + + + 華沙 + + + 密啟崙 + + + 皮特肯群島 + + + 波多黎各 + + + 加薩 + + + 赫布隆 + + + 亞速爾群島 + + + 馬得拉群島 + + + 里斯本 + + + 帛琉 + + + 亞松森 + + + 卡達 + + + 留尼旺島 + + + 布加勒斯特 + + + 貝爾格勒 + + + 加里寧格勒 + + + 辛非洛浦 + + + 莫斯科 + + + 伏爾加格勒 + + + 沙馬拉 + + + 葉卡捷林堡 + + + 鄂木斯克 + + + 新西伯利亞 + + + 新庫茲涅茨克 + + + 克拉斯諾亞爾斯克 + + + 伊爾庫次克 + + + 赤塔 + + + 雅庫次克 + + + 海參崴 + + + 堪地加 + + + 庫頁島 + + + 烏斯內拉 + + + 馬加丹 + + + 中科雷姆斯克 + + + 堪察加 + + + 阿那底 + + + 基加利 + + + 利雅德 + + + 瓜達康納爾島 + + + 馬埃島 + + + 喀土穆 + + + 斯德哥爾摩 + + + 新加坡 + + + 聖赫勒拿島 + + + 盧比安納 + + + 隆意耳拜恩 + + + 布拉提斯拉瓦 + + + 自由城 + + + 聖馬利諾 + + + 達喀爾 + + + 摩加迪休 + + + 巴拉馬利波 + + + 朱巴 + + + 聖多美 + + + 薩爾瓦多 + + + 下太子區 + + + 大馬士革 + + + 墨巴本 + + + 大特克島 + + + 恩賈梅納 + + + 凱爾蓋朗島 + + + 洛美 + + + 曼谷 + + + 杜桑貝 + + + 法考福 + + + 帝力 + + + 阿什哈巴特 + + + 突尼斯 + + + 東加塔布島 + + + 伊斯坦堡 + + + 西班牙港 + + + 富那富提 + + + 台北 + + + 沙蘭港 + + + 烏茲哥洛 + + + 基輔 + + + 札波羅結 + + + 坎帕拉 + + + 中途島 + + + 強斯頓 + + + 威克 + + + 艾達克 + + + 諾姆 + + + 檀香山 + + + 安克拉治 + + + 雅庫塔 + + + 錫特卡 + + + 朱諾 + + + 梅特拉卡特拉 + + + 洛杉磯 + + + 波夕 + + + 鳳凰城 + + + 丹佛 + + + 北達科他州布由拉 + + + 北達科他州紐沙倫 + + + 北達科他州中心 + + + + 芝加哥 + + + 美諾米尼 + + + 印第安那州溫森斯 + + + 印第安那州彼得堡 + + + 印第安那州泰爾城 + + + 印第安那州諾克斯 + + + 印第安那州威納馬克 + + + 印第安那州馬倫哥 + + + 印第安那波里斯 + + + 路易斯維爾 + + + 印第安那州維威 + + + 肯塔基州蒙地卻羅 + + + 底特律 + + + 紐約 + + + 蒙特維多 + + + 撒馬爾罕 + + + 塔什干 + + + 梵蒂岡 + + + 聖文森 + + + 卡拉卡斯 + + + 托爾托拉 + + + 聖托馬斯 + + + 胡志明市 + + + 埃法特 + + + 瓦利斯 + + + 阿皮亞 + + + 亞丁 + + + 馬約特島 + + + 約翰尼斯堡 + + + 路沙卡 + + + 哈拉雷 + + + + + 艾克時間 + 艾克標準時間 + 艾克夏令時間 + + + + + 阿富汗時間 + + + + + 中非時間 + + + + + 東非時間 + + + + + 南非標準時間 + + + + + 西非時間 + 西非標準時間 + 西非夏令時間 + + + + + 阿拉斯加時間 + 阿拉斯加標準時間 + 阿拉斯加夏令時間 + + + + + 阿拉木圖時間 + 阿拉木圖標準時間 + 阿拉木圖夏令時間 + + + + + 亞馬遜時間 + 亞馬遜標準時間 + 亞馬遜夏令時間 + + + + + 中部時間 + 中部標準時間 + 中部夏令時間 + + + + + 東部時間 + 東部標準時間 + 東部夏令時間 + + + + + 山區時間 + 山區標準時間 + 山區夏令時間 + + + + + 太平洋時間 + 太平洋標準時間 + 太平洋夏令時間 + + + + + 阿納德爾時間 + 阿那底河標準時間 + 阿那底河夏令時間 + + + + + 阿皮亞時間 + 阿皮亞標準時間 + 阿皮亞夏令時間 + + + + + 阿克陶時間 + 阿克陶標準時間 + 阿克陶夏令時間 + + + + + 阿克托比時間 + 阿克托比標準時間 + 阿克托比夏令時間 + + + + + 阿拉伯時間 + 阿拉伯標準時間 + 阿拉伯夏令時間 + + + + + 阿根廷時間 + 阿根廷標準時間 + 阿根廷夏令時間 + + + + + 阿根廷西部時間 + 阿根廷西部標準時間 + 阿根廷西部夏令時間 + + + + + 亞美尼亞時間 + 亞美尼亞標準時間 + 亞美尼亞夏令時間 + + + + + 大西洋時間 + 大西洋標準時間 + 大西洋夏令時間 + + + + + 澳洲中部時間 + 澳洲中部標準時間 + 澳洲中部夏令時間 + + + + + 澳洲中西部時間 + 澳洲中西部標準時間 + 澳洲中西部夏令時間 + + + + + 澳洲東部時間 + 澳洲東部標準時間 + 澳洲東部夏令時間 + + + + + 澳洲西部時間 + 澳洲西部標準時間 + 澳洲西部夏令時間 + + + + + 亞塞拜然時間 + 亞塞拜然標準時間 + 亞塞拜然夏令時間 + + + + + 亞速爾群島時間 + 亞速爾群島標準時間 + 亞速爾群島夏令時間 + + + + + 孟加拉時間 + 孟加拉標準時間 + 孟加拉夏令時間 + + + + + 不丹時間 + + + + + 玻利維亞時間 + + + + + 巴西利亞時間 + 巴西利亞標準時間 + 巴西利亞夏令時間 + + + + + 汶萊時間 + + + + + 維德角時間 + 維德角標準時間 + 維德角夏令時間 + + + + + 凱西站時間 + + + + + 查莫洛時間 + + + + + 查坦群島時間 + 查坦群島標準時間 + 查坦群島夏令時間 + + + + + 智利時間 + 智利標準時間 + 智利夏令時間 + + + + + 中國時間 + 中國標準時間 + 中國夏令時間 + + + + + 喬巴山時間 + 喬巴山標準時間 + 喬巴山夏令時間 + + + + + 聖誕島時間 + + + + + 科科斯群島時間 + + + + + 哥倫比亞時間 + 哥倫比亞標準時間 + 哥倫比亞夏令時間 + + + + + 庫克群島時間 + 庫克群島標準時間 + 庫克群島半夏令時間 + + + + + 古巴時間 + 古巴標準時間 + 古巴夏令時間 + + + + + 戴維斯時間 + + + + + 杜蒙杜比爾時間 + + + + + 東帝汶時間 + + + + + 復活節島時間 + 復活節島標準時間 + 復活節島夏令時間 + + + + + 厄瓜多時間 + + + + + 中歐時間 + 中歐標準時間 + 中歐夏令時間 + + + + + 東歐時間 + 東歐標準時間 + 東歐夏令時間 + + + + + 歐洲遠東時間 + + + + + 西歐時間 + 西歐標準時間 + 西歐夏令時間 + + + + + 福克蘭群島時間 + 福克蘭群島標準時間 + 福克蘭群島夏令時間 + + + + + 斐濟時間 + 斐濟標準時間 + 斐濟夏令時間 + + + + + 法屬圭亞那時間 + + + + + 法國南方及南極時間 + + + + + 加拉巴哥群島時間 + + + + + 甘比爾群島時間 + + + + + 喬治亞時間 + 喬治亞標準時間 + 喬治亞夏令時間 + + + + + 吉爾伯特群島時間 + + + + + 格林威治標準時間 + + + + + 格陵蘭東部時間 + 格陵蘭東部標準時間 + 格陵蘭東部夏令時間 + + + + + 格陵蘭西部時間 + 格陵蘭西部標準時間 + 格陵蘭西部夏令時間 + + + + + 關島標準時間 + + + + + 波斯灣海域標準時間 + + + + + 蓋亞那時間 + + + + + 夏威夷-阿留申時間 + 夏威夷-阿留申標準時間 + 夏威夷-阿留申夏令時間 + + + + + 香港時間 + 香港標準時間 + 香港夏令時間 + + + + + 科布多時間 + 科布多標準時間 + 科布多夏令時間 + + + + + 印度標準時間 + + + + + 印度洋時間 + + + + + 印度支那時間 + + + + + 印尼中部時間 + + + + + 印尼東部時間 + + + + + 印尼西部時間 + + + + + 伊朗時間 + 伊朗標準時間 + 伊朗夏令時間 + + + + + 伊爾庫次克時間 + 伊爾庫次克標準時間 + 伊爾庫次克夏令時間 + + + + + 以色列時間 + 以色列標準時間 + 以色列夏令時間 + + + + + 日本時間 + 日本標準時間 + 日本夏令時間 + + + + + 彼得羅巴甫洛夫斯克時間 + 彼得羅巴甫洛夫斯克標準時間 + 彼得羅巴甫洛夫斯克日光節約時間 + + + + + 東哈薩克時間 + + + + + 西哈薩克時間 + + + + + 韓國時間 + 韓國標準時間 + 韓國夏令時間 + + + + + 科斯瑞時間 + + + + + 克拉斯諾亞爾斯克時間 + 克拉斯諾亞爾斯克標準時間 + 克拉斯諾亞爾斯克夏令時間 + + + + + 吉爾吉斯時間 + + + + + 蘭卡時間 + + + + + 萊恩群島時間 + + + + + 豪勳爵島時間 + 豪勳爵島標準時間 + 豪勳爵島夏令時間 + + + + + 澳門時間 + 澳門標準時間 + 澳門夏令時間 + + + + + 麥覺理時間 + + + + + 馬加丹時間 + 馬加丹標準時間 + 馬加丹夏令時間 + + + + + 馬來西亞時間 + + + + + 馬爾地夫時間 + + + + + 馬可薩斯時間 + + + + + 馬紹爾群島時間 + + + + + 模里西斯時間 + 模里西斯標準時間 + 模里西斯夏令時間 + + + + + 莫森時間 + + + + + 墨西哥西北部時間 + 墨西哥西北部標準時間 + 墨西哥西北部夏令時間 + + + + + 墨西哥太平洋時間 + 墨西哥太平洋標準時間 + 墨西哥太平洋夏令時間 + + + + + 烏蘭巴托時間 + 烏蘭巴托標準時間 + 烏蘭巴托夏令時間 + + + + + 莫斯科時間 + 莫斯科標準時間 + 莫斯科夏令時間 + + + + + 緬甸時間 + + + + + 諾魯時間 + + + + + 尼泊爾時間 + + + + + 新喀里多尼亞時間 + 新喀里多尼亞標準時間 + 新喀里多尼亞群島夏令時間 + + + + + 紐西蘭時間 + 紐西蘭標準時間 + 紐西蘭夏令時間 + + + + + 紐芬蘭時間 + 紐芬蘭標準時間 + 紐芬蘭夏令時間 + + + + + 紐埃島時間 + + + + + 諾福克島時間 + + + + + 費爾南多 - 迪諾羅尼亞時間 + 費爾南多 - 迪諾羅尼亞標準時間 + 費爾南多 - 迪諾羅尼亞夏令時間 + + + + + 北馬里亞納群島時間 + + + + + 新西伯利亞時間 + 新西伯利亞標準時間 + 新西伯利亞夏令時間 + + + + + 鄂木斯克時間 + 鄂木斯克標準時間 + 鄂木斯克夏令時間 + + + + + 巴基斯坦時間 + 巴基斯坦標準時間 + 巴基斯坦夏令時間 + + + + + 帛琉時間 + + + + + 巴布亞紐幾內亞時間 + + + + + 巴拉圭時間 + 巴拉圭標準時間 + 巴拉圭夏令時間 + + + + + 秘魯時間 + 秘魯標準時間 + 秘魯夏令時間 + + + + + 菲律賓時間 + 菲律賓標準時間 + 菲律賓夏令時間 + + + + + 鳳凰群島時間 + + + + + 聖皮埃爾和密克隆群島時間 + 聖皮埃爾和密克隆群島標準時間 + 聖皮埃爾和密克隆群島夏令時間 + + + + + 皮特肯時間 + + + + + 波納佩時間 + + + + + 克孜勒奧爾達時間 + 克孜勒奧爾達標準時間 + 克孜勒奧爾達夏令時間 + + + + + 留尼旺時間 + + + + + 羅瑟拉時間 + + + + + 庫頁島時間 + 庫頁島標準時間 + 庫頁島夏令時間 + + + + + 薩馬拉時間 + 薩馬拉標準時間 + 薩馬拉夏令時間 + + + + + 薩摩亞時間 + 薩摩亞標準時間 + 薩摩亞夏令時間 + + + + + 塞席爾時間 + + + + + 新加坡標準時間 + + + + + 索羅門群島時間 + + + + + 南喬治亞時間 + + + + + 蘇利南時間 + + + + + 昭和基地時間 + + + + + 大溪地時間 + + + + + 台北時間 + 台北標準時間 + 台北夏令時間 + + + + + 塔吉克時間 + + + + + 托克勞群島時間 + + + + + 東加時間 + 東加標準時間 + 東加夏令時間 + + + + + 楚克島時間 + + + + + 土庫曼時間 + 土庫曼標準時間 + 土庫曼夏令時間 + + + + + 吐瓦魯時間 + + + + + 烏拉圭時間 + 烏拉圭標準時間 + 烏拉圭夏令時間 + + + + + 烏茲別克時間 + 烏茲別克標準時間 + 烏茲別克夏令時間 + + + + + 萬那杜時間 + 萬那杜標準時間 + 萬那杜夏令時間 + + + + + 委內瑞拉時間 + + + + + 海參崴時間 + 海參崴標準時間 + 海參崴夏令時間 + + + + + 伏爾加格勒時間 + 伏爾加格勒標準時間 + 伏爾加格勒夏令時間 + + + + + 沃斯托克時間 + + + + + 威克島時間 + + + + + 瓦利斯和富圖納群島時間 + + + + + 雅庫次克時間 + 雅庫次克標準時間 + 雅庫次克夏令時間 + + + + + 葉卡捷琳堡時間 + 葉卡捷琳堡標準時間 + 葉卡捷琳堡夏令時間 + + + + + + latn + + hanidec + hant + hantfin + + + . + , + ; + % + + + - + E + × + + + 非數值 + : + + + + + #,##0.### + + + + + 0 + 0萬 + 00萬 + 000萬 + 0000萬 + 0億 + 00億 + 000億 + 0000億 + 0兆 + 00兆 + 000兆 + + + + + 0 + 0萬 + 00萬 + 000萬 + 0000萬 + 0億 + 00億 + 000億 + 0000億 + 0兆 + 00兆 + 000兆 + + + + + + + #E0 + + + + + + + #,##0% + + + + + + + ¤#,##0.00 + + + ¤#,##0.00;(¤#,##0.00) + + + + + 0 + ¤0萬 + ¤00萬 + ¤000萬 + ¤0000萬 + ¤0億 + ¤00億 + ¤000億 + ¤0000億 + ¤0兆 + ¤00兆 + ¤000兆 + + + {0} {1} + + + + 安道爾陪士特 + 安道爾陪士特 + ADP + + + 阿拉伯聯合大公國迪爾汗 + 阿拉伯聯合大公國迪爾汗 + AED + + + 阿富汗尼 (1927–2002) + 阿富汗尼 (1927–2002) + AFA + + + 阿富汗尼 + 阿富汗尼 + AFN + + + 阿爾巴尼亞列克 (1946–1965) + 阿爾巴尼亞列克 (1946–1965) + ALK + + + 阿爾巴尼亞列克 + 阿爾巴尼亞列克 + ALL + + + 亞美尼亞德拉姆 + 亞美尼亞德拉姆 + AMD + + + 荷屬安地列斯盾 + 荷屬安地列斯盾 + ANG + + + 安哥拉寬扎 + 安哥拉寬扎 + AOA + Kz + + + 安哥拉寬扎 (1977–1990) + 安哥拉寬扎 (1977–1990) + AOK + + + 安哥拉新寬扎 (1990–2000) + 安哥拉新寬扎 (1990–2000) + AON + + + 安哥拉新調寬扎 (1995–1999) + 安哥拉新調寬扎 (1995–1999) + AOR + + + 阿根廷奧斯特納爾 + 阿根廷奧斯特納爾 + ARA + + + 阿根廷披索 (1970–1983) + 阿根廷披索 (1970–1983) + ARL + + + 阿根廷披索 (1881–1970) + 阿根廷披索 (1881–1970) + ARM + + + 阿根廷披索 (1983–1985) + 阿根廷披索 (1983–1985) + ARP + + + 阿根廷披索 + 阿根廷披索 + ARS + $ + + + 奧地利先令 + 奧地利先令 + ATS + + + 澳幣 + 澳幣 + AU$ + $ + + + 阿路巴盾 + 阿路巴盾 + AWG + + + 亞塞拜然馬納特 (1993–2006) + 亞塞拜然馬納特 (1993–2006) + AZM + + + 亞塞拜然馬納特 + 亞塞拜然馬納特 + AZN + + + 波士尼亞-赫塞哥維納第納爾 + 波士尼亞-赫塞哥維納第納爾 + BAD + + + 波士尼亞-赫塞哥維納可轉換馬克 + 波士尼亞-赫塞哥維納可轉換馬克 + BAM + KM + + + 波士尼亞-赫塞哥維納新第納爾 + 波士尼亞-赫塞哥維納新第納爾 + BAN + + + 巴貝多元 + 巴貝多元 + BBD + $ + + + 孟加拉塔卡 + 孟加拉塔卡 + BDT + + + + 比利時法郎(可轉換) + 比利時法郎(可轉換) + BEC + + + 比利時法郎 + 比利時法郎 + BEF + + + 比利時法郎(金融) + 比利時法郎(金融) + BEL + + + 保加利亞硬列弗 + 保加利亞硬列弗 + BGL + + + 保加利亞社會黨列弗 + 保加利亞社會黨列弗 + BGM + + + 保加利亞新列弗 + 保加利亞新列弗 + BGN + + + 保加利亞列弗 (1879–1952) + 保加利亞列弗 (1879–1952) + BGO + + + 巴林第納爾 + 巴林第納爾 + BHD + + + 蒲隆地法郎 + 蒲隆地法郎 + BIF + + + 百慕達幣 + 百慕達幣 + BMD + $ + + + 汶萊元 + 汶萊元 + BND + $ + + + 玻利維亞諾 + 玻利維亞諾 + BOB + Bs + + + 玻利維亞玻利維亞諾 (1863–1963) + 玻利維亞玻利維亞諾 (1863–1963) + BOL + + + 玻利維亞披索 + 玻利維亞披索 + BOP + + + 玻利維亞幕多 + 玻利維亞幕多 + BOV + + + 巴西克魯薩多農瓦 (1967–1986) + 巴西克魯薩多農瓦 (1967–1986) + BRB + + + 巴西克魯賽羅 (1986–1989) + 巴西克魯賽羅 (1986–1989) + BRC + + + 巴西克魯賽羅 (1990–1993) + 巴西克魯賽羅 (1990–1993) + BRE + + + 巴西里拉 + 巴西里拉 + R$ + R$ + + + 巴西克如爾達農瓦 + 巴西克如爾達農瓦 + BRN + + + 巴西克魯賽羅 (1993–1994) + 巴西克魯賽羅 (1993–1994) + BRR + + + 巴西克魯賽羅 (1942 –1967) + 巴西克魯賽羅 (1942 –1967) + BRZ + + + 巴哈馬元 + 巴哈馬元 + BSD + $ + + + 不丹那特倫 + 不丹那特倫 + BTN + + + 緬甸基雅特 + 緬甸基雅特 + BUK + + + 波札那普拉 + 波札那普拉 + BWP + P + + + 白俄羅斯新盧布 (1994–1999) + 白俄羅斯新盧布 (1994–1999) + BYB + + + 白俄羅斯盧布 + 白俄羅斯盧布 + BYR + р. + + + 貝里斯元 + 貝里斯元 + BZD + $ + + + 加幣 + 加幣 + CA$ + $ + + + 剛果法郎 + 剛果法郎 + CDF + + + 歐元 (WIR) + 歐元 (WIR) + CHE + + + 瑞士法郎 + 瑞士法郎 + CHF + + + 法郎 (WIR) + 法郎 (WIR) + CHW + + + 智利埃斯庫多 + 智利埃斯庫多 + CLE + + + 卡林油達佛曼跎 + 卡林油達佛曼跎 + CLF + + + 智利披索 + 智利披索 + CLP + $ + + + CNX + + + 人民幣 + 人民幣 + CN¥ + ¥ + + + 哥倫比亞披索 + 哥倫比亞披索 + COP + $ + + + 哥倫比亞幣 (COU) + 哥倫比亞幣 (COU) + COU + + + 哥斯大黎加科朗 + 哥斯大黎加科朗 + CRC + + + + 舊塞爾維亞第納爾 + 舊塞爾維亞第納爾 + CSD + + + 捷克斯洛伐克硬克朗 + 捷克斯洛伐克硬克朗 + CSK + + + 古巴可轉換披索 + 古巴可轉換披索 + CUC + $ + + + 古巴披索 + 古巴披索 + CUP + $ + + + 維德角埃斯庫多 + 維德角埃斯庫多 + CVE + + + 賽普勒斯鎊 + 賽普勒斯鎊 + CYP + + + 捷克克朗 + 捷克克朗 + CZK + + + + 東德奧斯特馬克 + 東德奧斯特馬克 + DDM + + + 德國馬克 + 德國馬克 + DEM + + + 吉布地法郎 + 吉布地法郎 + DJF + + + 丹麥克朗 + 丹麥克朗 + DKK + kr + + + 多明尼加披索 + 多明尼加披索 + DOP + $ + + + 阿爾及利亞第納爾 + 阿爾及利亞第納爾 + DZD + + + 厄瓜多蘇克雷 + 厄瓜多蘇克雷 + ECS + + + 厄瓜多爾由里達瓦康斯坦 (UVC) + 厄瓜多爾由里達瓦康斯坦 (UVC) + ECV + + + 愛沙尼亞克朗 + 愛沙尼亞克朗 + EEK + + + 埃及鎊 + 埃及鎊 + EGP + + + + 厄立特里亞納克法 + 厄立特里亞納克法 + ERN + + + 西班牙比塞塔(會計單位) + 西班牙比塞塔(會計單位) + ESA + + + 西班牙比塞塔(可轉換會計單位) + 西班牙比塞塔(可轉換會計單位) + ESB + + + 西班牙陪士特 + 西班牙陪士特 + ESP + + + + 衣索比亞比爾 + 衣索比亞比爾 + ETB + + + 歐元 + 歐元 + + + + + 芬蘭馬克 + 芬蘭馬克 + FIM + + + 斐濟元 + 斐濟元 + FJD + $ + + + 福克蘭群島鎊 + 福克蘭群島鎊 + FKP + £ + + + 法國法郎 + 法國法郎 + FRF + + + 英鎊 + 英鎊 + £ + £ + + + 喬治亞庫旁拉里 + 喬治亞庫旁拉里 + GEK + + + 喬治亞拉里 + 喬治亞拉里 + GEL + + + + 迦納賽地 (1979–2007) + 迦納賽地 (1979–2007) + GHC + + + 迦納塞地 + 迦納塞地 + GHS + + + 直布羅陀鎊 + 直布羅陀鎊 + GIP + £ + + + 甘比亞達拉西 + 甘比亞達拉西 + GMD + + + 幾內亞法郎 + 幾內亞法郎 + GNF + FG + + + 幾內亞西里 + 幾內亞西里 + GNS + + + 赤道幾內亞埃奎勒 + 赤道幾內亞埃奎勒 + GQE + + + 希臘德拉克馬 + 希臘德拉克馬 + GRD + + + 瓜地馬拉格查爾 + 瓜地馬拉格查爾 + GTQ + Q + + + 葡屬幾內亞埃斯庫多 + 葡屬幾內亞埃斯庫多 + GWE + + + 幾內亞比索披索 + 幾內亞比索披索 + GWP + + + 圭亞那元 + 圭亞那元 + GYD + $ + + + 港幣 + 港幣 + HK$ + $ + + + 洪都拉斯倫皮拉 + 洪都拉斯倫皮拉 + HNL + L + + + 克羅埃西亞第納爾 + 克羅埃西亞第納爾 + HRD + + + 克羅埃西亞庫納 + 克羅埃西亞庫納 + HRK + kn + + + 海地古德 + 海地古德 + HTG + + + 匈牙利福林 + 匈牙利福林 + HUF + Ft + + + 印尼盾 + 印尼盾 + IDR + Rp + + + 愛爾蘭鎊 + 愛爾蘭鎊 + IEP + + + 以色列鎊 + 以色列鎊 + ILP + + + 以色列謝克爾 (1980–1985) + 以色列謝克爾 (1980–1985) + ILR + + + 以色列新謝克爾 + 以色列新謝克爾 + + + + + 印度盧比 + 印度盧比 + + + + + 伊拉克第納爾 + 伊拉克第納爾 + IQD + + + 伊朗里亞爾 + 伊朗里亞爾 + IRR + + + 冰島克朗 (1918–1981) + 冰島克朗 (1918–1981) + ISJ + + + 冰島克朗 + 冰島克朗 + ISK + kr + + + 義大利里拉 + 義大利里拉 + ITL + + + 牙買加元 + 牙買加元 + JMD + $ + + + 約旦第納爾 + 約旦第納爾 + JOD + + + 日圓 + 日圓 + ¥ + ¥ + + + 肯尼亞先令 + 肯尼亞先令 + KES + + + 吉爾吉斯索姆 + 吉爾吉斯索姆 + KGS + + + 柬埔寨瑞爾 + 柬埔寨瑞爾 + KHR + + + + 科摩羅法郎 + 科摩羅法郎 + KMF + CF + + + 北韓圓 + 北韓圓 + KPW + + + + 南韓圜 + 南韓圜 + KRH + + + 南韓圓 + 南韓圓 + KRO + + + 韓圓 + 韓圓 + + + + + 科威特第納爾 + 科威特第納爾 + KWD + + + 開曼群島元 + 開曼群島元 + KYD + $ + + + 卡扎克斯坦坦吉 + 卡扎克斯坦坦吉 + KZT + + + + 寮國基普 + 寮國基普 + LAK + + + + 黎巴嫩鎊 + 黎巴嫩鎊 + LBP + + + + 斯里蘭卡盧比 + 斯里蘭卡盧比 + LKR + Rs + + + 賴比瑞亞元 + 賴比瑞亞元 + LRD + $ + + + 賴索托洛蒂 + 賴索托洛蒂 + LSL + + + 立陶宛立特 + 立陶宛立特 + LTL + + + 立陶宛特羅 + 立陶宛特羅 + LTT + + + 盧森堡可兌換法郎 + 盧森堡可兌換法郎 + LUC + + + 盧森堡法郎 + 盧森堡法郎 + LUF + + + 盧森堡金融法郎 + 盧森堡金融法郎 + LUL + + + 拉脫維亞拉特銀幣 + 拉脫維亞拉特銀幣 + LVL + + + 拉脫維亞盧布 + 拉脫維亞盧布 + LVR + + + 利比亞第納爾 + 利比亞第納爾 + LYD + + + 摩洛哥迪拉姆 + 摩洛哥迪拉姆 + MAD + + + 摩洛哥法郎 + 摩洛哥法郎 + MAF + + + 摩納哥法郎 + 摩納哥法郎 + MCF + + + 摩爾多瓦券 + 摩爾多瓦券 + MDC + + + 摩杜雲列伊 + 摩杜雲列伊 + MDL + + + 馬達加斯加阿里亞里 + 馬達加斯加阿里亞里 + MGA + Ar + + + 馬達加斯加法郎 + 馬達加斯加法郎 + MGF + + + 馬其頓第納爾 + 馬其頓第納爾 + MKD + + + 馬其頓第納爾 (1992–1993) + 馬其頓第納爾 (1992–1993) + MKN + + + 馬里法郎 + 馬里法郎 + MLF + + + 緬甸元 + 緬甸元 + MMK + K + + + 蒙古圖格里克 + 蒙古圖格里克 + MNT + + + + 澳門元 + 澳門元 + MOP + + + 茅利塔尼亞烏吉亞 + 茅利塔尼亞烏吉亞 + MRO + + + 馬爾他里拉 + 馬爾他里拉 + MTL + + + 馬爾他鎊 + 馬爾他鎊 + MTP + + + 模里西斯盧比 + 模里西斯盧比 + MUR + Rs + + + 馬爾地夫盧比 + 馬爾地夫盧比 + MVP + + + 馬爾地夫盧非亞 + 馬爾地夫盧非亞 + MVR + + + 馬拉維克瓦查 + 馬拉維克瓦查 + MWK + + + 墨西哥披索 + 墨西哥披索 + MX$ + $ + + + 墨西哥銀披索 (1861–1992) + 墨西哥銀披索 (1861–1992) + MXP + + + 墨西哥轉換單位 (UDI) + 墨西哥轉換單位 (UDI) + MXV + + + 馬來西亞令吉 + 馬來西亞令吉 + MYR + RM + + + 莫三比克埃斯庫多 + 莫三比克埃斯庫多 + MZE + + + 莫三比克梅蒂卡爾 (1980–2006) + 莫三比克梅蒂卡爾 (1980–2006) + MZM + + + 莫三比克梅蒂卡爾 + 莫三比克梅蒂卡爾 + MZN + + + 納米比亞元 + 納米比亞元 + NAD + $ + + + 奈及利亞奈拉 + 奈及利亞奈拉 + NGN + + + + 尼加拉瓜科多巴 + 尼加拉瓜科多巴 + NIC + + + 尼加拉瓜金科多巴 + 尼加拉瓜金科多巴 + NIO + C$ + + + 荷蘭盾 + 荷蘭盾 + NLG + + + 挪威克朗 + 挪威克朗 + NOK + kr + + + 尼泊爾盧比 + 尼泊爾盧比 + NPR + Rs + + + 紐西蘭幣 + 紐西蘭幣 + NZ$ + $ + + + 阿曼里亞爾 + 阿曼里亞爾 + OMR + + + 巴拿馬巴波亞 + 巴拿馬巴波亞 + PAB + + + 祕魯因蒂 + 祕魯因蒂 + PEI + + + 秘魯新太陽幣 + 秘魯新太陽幣 + PEN + + + 秘魯索爾 (1863–1965) + 秘魯索爾 (1863–1965) + PES + + + 巴布亞紐幾內亞基那 + 巴布亞紐幾內亞基那 + PGK + + + 菲律賓披索 + 菲律賓披索 + PHP + + + + 巴基斯坦盧比 + 巴基斯坦盧比 + PKR + Rs + + + 波蘭茲羅提 + 波蘭茲羅提 + PLN + + + + 波蘭茲羅提 (1950–1995) + 波蘭茲羅提 (1950–1995) + PLZ + + + 葡萄牙埃斯庫多 + 葡萄牙埃斯庫多 + PTE + + + 巴拉圭瓜拉尼 + 巴拉圭瓜拉尼 + PYG + + + + 卡達里亞爾 + 卡達里亞爾 + QAR + + + 羅德西亞元 + 羅德西亞元 + RHD + + + 舊羅馬尼亞列伊 + 舊羅馬尼亞列伊 + ROL + + + 羅馬尼亞列伊 + 羅馬尼亞列伊 + RON + + + 塞爾維亞戴納 + 塞爾維亞戴納 + RSD + + + 俄羅斯盧布 + 俄羅斯盧布 + RUB + + + + 俄羅斯盧布 (1991–1998) + 俄羅斯盧布 (1991–1998) + RUR + р. + + + 盧安達法郎 + 盧安達法郎 + RWF + RF + + + 沙烏地里亞爾 + 沙烏地里亞爾 + SAR + + + 索羅門群島元 + 索羅門群島元 + SBD + $ + + + 塞席爾盧比 + 塞席爾盧比 + SCR + + + 蘇丹第納爾 + 蘇丹第納爾 + SDD + + + 蘇丹鎊 + 蘇丹鎊 + SDG + + + 舊蘇丹鎊 + 舊蘇丹鎊 + SDP + + + 瑞典克朗 + 瑞典克朗 + SEK + kr + + + 新加坡幣 + 新加坡幣 + SGD + $ + + + 聖赫勒拿鎊 + 聖赫勒拿鎊 + SHP + £ + + + 斯洛維尼亞托勒 + 斯洛維尼亞托勒 + SIT + + + 斯洛伐克克朗 + 斯洛伐克克朗 + SKK + + + 獅子山利昂 + 獅子山利昂 + SLL + + + 索馬利亞先令 + 索馬利亞先令 + SOS + + + 蘇利南元 + 蘇利南元 + SRD + $ + + + 蘇利南基爾 + 蘇利南基爾 + SRG + + + 南蘇丹鎊 + 南蘇丹鎊 + SSP + £ + + + 聖多美島和普林西比島多布拉 + 聖多美島和普林西比島多布拉 + STD + Db + + + 蘇聯盧布 + 蘇聯盧布 + SUR + + + 薩爾瓦多科郎 + 薩爾瓦多科郎 + SVC + + + 敘利亞鎊 + 敘利亞鎊 + SYP + £ + + + 史瓦濟蘭里朗吉尼 + 史瓦濟蘭里朗吉尼 + SZL + + + 泰銖 + 泰銖 + THB + ฿ + + + 塔吉克盧布 + 塔吉克盧布 + TJR + + + 塔吉克索莫尼 + 塔吉克索莫尼 + TJS + + + 土庫曼馬納特 (1993–2009) + 土庫曼馬納特 (1993–2009) + TMM + + + 土庫曼馬納特 + 土庫曼馬納特 + TMT + + + 突尼西亞第納爾 + 突尼西亞第納爾 + TND + + + 東加潘加 + 東加潘加 + TOP + T$ + + + 帝汶埃斯庫多 + 帝汶埃斯庫多 + TPE + + + 土耳其里拉 + 土耳其里拉 + TRL + + + 新土耳其里拉 + 新土耳其里拉 + TRY + + TL + + + 千里達及托巴哥元 + 千里達及托巴哥元 + TTD + $ + + + 新台幣 + 新台幣 + $ + $ + + + 坦尚尼亞先令 + 坦尚尼亞先令 + TZS + + + 烏克蘭格里夫納 + 烏克蘭格里夫納 + UAH + + + + 烏克蘭卡本瓦那茲 + 烏克蘭卡本瓦那茲 + UAK + + + 烏干達先令 (1966–1987) + 烏干達先令 (1966–1987) + UGS + + + 烏干達先令 + 烏干達先令 + UGX + + + 美元 + 美元 + US$ + $ + + + 美元(次日) + 美元(次日) + USN + + + 美元(當日) + 美元(當日) + USS + + + 烏拉圭披索(指數單位) + 烏拉圭披索(指數單位) + UYI + + + 烏拉圭披索 (1975–1993) + 烏拉圭披索 (1975–1993) + UYP + + + 烏拉圭披索 + 烏拉圭披索 + UYU + $ + + + 烏茲別克索姆 + 烏茲別克索姆 + UZS + + + 委內瑞拉玻利瓦 (1871–2008) + 委內瑞拉玻利瓦 (1871–2008) + VEB + + + 委內瑞拉玻利瓦 + 委內瑞拉玻利瓦 + VEF + Bs + + + 越南盾 + 越南盾 + + + + + 越南盾 (1978–1985) + 越南盾 (1978–1985) + VNN + + + 萬那杜瓦圖 + 萬那杜瓦圖 + VUV + + + 西薩摩亞塔拉 + 西薩摩亞塔拉 + WST + + + 法郎 (CFA–BEAC) + 法郎 (CFA–BEAC) + FCFA + + + 白銀 + 白銀 + XAG + + + 黃金 + 黃金 + XAU + + + 歐洲綜合單位 + 歐洲綜合單位 + XBA + + + 歐洲貨幣單位 (XBB) + 歐洲貨幣單位 (XBB) + XBB + + + 歐洲會計單位 (XBC) + 歐洲會計單位 (XBC) + XBC + + + 歐洲會計單位 (XBD) + 歐洲會計單位 (XBD) + XBD + + + 格瑞那達元 + 格瑞那達元 + EC$ + $ + + + 特殊提款權 + 特殊提款權 + XDR + + + 歐洲貨幣單位 (XEU) + 歐洲貨幣單位 (XEU) + XEU + + + 法國金法郎 + 法國金法郎 + XFO + + + 法國法郎 (UIC) + 法國法郎 (UIC) + XFU + + + 法郎 (CFA–BCEAO) + 法郎 (CFA–BCEAO) + CFA + + + 帕拉狄昂 + 帕拉狄昂 + XPD + + + 法郎 (CFP) + 法郎 (CFP) + CFPF + + + 白金 + 白金 + XPT + + + RINET 基金 + RINET 基金 + XRE + + + 蘇克雷貨幣 + 蘇克雷貨幣 + XSU + + + 測試用貨幣代碼 + 測試用貨幣代碼 + XTS + + + 亞洲開發銀行計價單位 + 亞洲開發銀行計價單位 + XUA + + + 未知貨幣 + (未知貨幣) + XXX + + + 葉門第納爾 + 葉門第納爾 + YDD + + + 葉門里亞爾 + 葉門里亞爾 + YER + + + 南斯拉夫第納爾硬幣 + 南斯拉夫第納爾硬幣 + YUD + + + 南斯拉夫挪威亞第納爾 + 南斯拉夫挪威亞第納爾 + YUM + + + 南斯拉夫可轉換第納爾 + 南斯拉夫可轉換第納爾 + YUN + + + 南斯拉夫改革第納爾 (1992–1993) + 南斯拉夫改革第納爾 (1992–1993) + YUR + + + 南非蘭特(金融) + 南非蘭特(金融) + ZAL + + + 南非蘭特 + 南非蘭特 + ZAR + R + + + 尚比亞克瓦查 (1968–2012) + 尚比亞克瓦查 (1968–2012) + ZMK + + + 尚比亞克瓦查 + 尚比亞克瓦查 + ZMW + ZK + + + 薩伊新扎伊爾 + 薩伊新扎伊爾 + ZRN + + + 薩伊扎伊爾 + 薩伊扎伊爾 + ZRZ + + + 辛巴威元 (1980–2008) + 辛巴威元 (1980–2008) + ZWD + + + 辛巴威元 (2009) + 辛巴威元 (2009) + ZWL + + + 辛巴威元 (2008) + 辛巴威元 (2008) + ZWR + + + + {0}+ + {0}-{1} + + + + + + 每 {1} {0} + + + G 力 + {0} G 力 + + + 每平方秒公尺 + 每平方秒 {0} 米 + + + 圈數 + {0} 圈 + + + 弧度 + {0} 弧度 + + + 角度 + {0} 度 + + + 角分 + {0} 角分 + + + 角秒 + {0} 角秒 + + + 平方公里 + {0} 平方公里 + + + 公頃 + {0} 公頃 + + + 平方公尺 + {0} 平方公尺 + 每平方米 {0} + + + 平方公分 + {0} 平方公分 + 每平方厘米 {0} + + + 平方英里 + {0} 平方英里 + + + 英畝 + {0} 英畝 + + + 平方碼 + {0} 平方碼 + + + 平方英尺 + {0} 平方英尺 + + + 平方英寸 + {0} 平方英寸 + 每平方吋 {0} + + + 克拉 + {0} 克拉 + + + 每公里公升 + 每公里 {0} 公升 + + + 每 100 公里公升 + 每 100 公里 {0} 公升 + + + 每加侖英里 + 每加侖 {0} 英里 + + + TB + {0} TB + + + Tb + {0} Tb + + + GB + {0} GB + + + Gb + {0} Gb + + + MB + {0} MB + + + Mb + {0} Mb + + + kB + {0} kB + + + kb + {0} kb + + + byte + {0} byte + + + bit + {0} bit + + + 世紀 + {0} 個世紀 + + + + {0} 年 + 每年 {0} + + + + {0} 個月 + 每月 {0} + + + + {0} 週 + 每星期 {0} + + + + {0} 天 + 每日 {0} + + + 小時 + {0} 小時 + 每小時 {0} + + + 分鐘 + {0} 分鐘 + 每分鐘 {0} + + + + {0} 秒 + 每秒 {0} + + + 毫秒 + {0} 毫秒 + + + 微秒 + {0} 微秒 + + + 奈秒 + {0} 奈秒 + + + 安培 + {0} 安培 + + + 毫安培 + {0} 毫安培 + + + 歐姆 + {0} 歐姆 + + + 伏特 + {0} 伏特 + + + 千卡路里 + {0} 千卡路里 + + + 卡路里 + {0} 卡路里 + + + 卡路里 + {0} 大卡 + + + 千焦耳 + {0} 千焦耳 + + + 焦耳 + {0} 焦耳 + + + 千瓦小時 + {0} 千瓦小時 + + + 吉赫 + {0} 吉赫 + + + 兆赫 + {0} 兆赫 + + + 千赫 + {0} 千赫 + + + 赫茲 + {0} 赫茲 + + + 公里 + {0} 公里 + 每公里 {0} + + + 公尺 + {0} 公尺 + 每米 {0} + + + 公寸 + {0} 公寸 + + + 公分 + {0} 公分 + 每厘米 {0} + + + 公釐 + {0} 公釐 + + + 微米 + {0} 微米 + + + 奈米 + {0} 奈米 + + + 皮米 + {0} 皮米 + + + 英里 + {0} 英里 + + + + {0} 碼 + + + 英尺 + {0} 英尺 + 每呎 {0} + + + 英寸 + {0} 英寸 + 每吋 {0} + + + 秒差距 + {0} 秒差距 + + + 光年 + {0} 光年 + + + 天文單位 + {0} 天文單位 + + + 化朗 + {0} 化朗 + + + 英尋 + {0} 英尋 + + + 海里 + {0} 海里 + + + 斯堪地那維亞英里 + {0} 斯堪地那維亞英里 + + + 勒克斯 + {0} 勒克斯 + + + 公噸 + {0} 公噸 + + + 公斤 + {0} 公斤 + 每公斤 {0} + + + + {0} 克 + 每克 {0} + + + 毫克 + {0} 毫克 + + + 微克 + {0} 微克 + + + 英噸 + {0} 英噸 + + + 英石 + {0} 英石 + + + + {0} 磅 + 每磅 {0} + + + 盎司 + {0} 盎司 + 每安士 {0} + + + 金衡盎司 + {0} 金衡盎司 + + + 克拉 + {0} 克拉 + + + 吉瓦 + {0} 吉瓦 + + + 百萬瓦特 + {0} 百萬瓦特 + + + 千瓦特 + {0} 千瓦特 + + + 瓦特 + {0} 瓦特 + + + 毫瓦特 + {0} 毫瓦特 + + + 馬力 + {0} 匹馬力 + + + 百帕 + {0} 百帕 + + + 毫米汞柱 + {0} 毫米汞柱 + + + 每平方英寸磅力 + 每平方吋 {0} 磅 + + + 英寸汞柱 + {0} 英寸汞柱 + + + 毫巴 + {0} 毫巴 + + + 每小時公里 + 每小時 {0} 公里 + + + 每秒公尺 + 每秒 {0} 米 + + + 每小時英里 + 每小時 {0} 英里 + + + + {0} 節 + + + ° + {0}° + + + 攝氏度數 + 攝氏 {0} 度 + + + 華氏度數 + 華氏 {0} 度 + + + 克耳文 + {0} 克耳文 + + + 立方公里 + {0} 立方公里 + + + 立方公尺 + {0} 立方公尺 + 每立方米 {0} + + + 立方公分 + {0} 立方公分 + 每立方厘米 {0} + + + 立方英里 + {0} 立方英里 + + + 立方碼 + {0} 立方碼 + + + 立方英尺 + {0} 立方英尺 + + + 立方英寸 + {0} 立方英寸 + + + 兆升 + {0} 兆升 + + + 公石 + {0} 公石 + + + 公升 + {0} 公升 + 每公升 {0} + + + 公合 + {0} 公合 + + + 釐升 + {0} 釐升 + + + 毫升 + {0} 毫升 + + + 公制品脫 + {0} 公制品脫 + + + 公制量杯 + + + 英畝英尺 + {0} 英畝英尺 + + + 蒲式耳 + {0} 蒲式耳 + + + 加侖 + {0} 加侖 + 每加侖 {0} + + + 夸脫 + {0} 夸脫 + + + 品脫 + {0} 品脫 + + + 量杯 + {0} 杯 + + + 液盎司 + {0} 液盎司 + + + 湯匙 + {0} 湯匙 + + + 茶匙 + {0} 茶匙 + + + 東經{0} + 北緯{0} + 南緯{0} + 西經{0} + + + + + {0}/{1} + + + G 力 + {0} G 力 + + + 公尺/平方秒 + 每平方秒{0}米 + + + 圈數 + {0} 圈 + + + 弧度 + {0} 弧度 + + + 角度 + {0} 度 + + + 角分 + {0} 角分 + + + 角秒 + {0} 角秒 + + + 平方公里 + {0} 平方公里 + + + 公頃 + {0} 公頃 + + + 平方公尺 + {0} 平方公尺 + 每平方米{0} + + + 平方公分 + {0} 平方公分 + 每平方厘米{0} + + + 平方英里 + {0} 平方英里 + + + 英畝 + {0} 英畝 + + + 平方碼 + {0} 平方碼 + + + 平方英尺 + {0} 平方英尺 + + + 平方英寸 + {0} 平方英寸 + 每平方吋{0} + + + 克拉 + {0} 克拉 + + + 公升/公里 + 每公里{0}公升 + + + 升/100 公里 + 每100公里 {0} 升 + + + 英里/加侖 + 每加侖{0}英里 + + + TB + {0} TB + + + Tb + {0} Tb + + + GB + {0} GB + + + Gb + {0} Gb + + + MB + {0} MB + + + Mb + {0} Mb + + + kB + {0} kB + + + kb + {0} kb + + + byte + {0} byte + + + bit + {0} bit + + + 世紀 + {0} 世紀 + + + + {0} 年 + 每年{0} + + + + {0} 個月 + 每月{0} + + + + {0} 週 + 每週{0} + + + + {0} 天 + 每日{0} + + + 小時 + {0} 小時 + 每小時{0} + + + 分鐘 + {0} 分鐘 + 每分鐘{0} + + + + {0} 秒 + 每秒{0} + + + 毫秒 + {0} 毫秒 + + + 微秒 + {0} 微秒 + + + 奈秒 + {0} 奈秒 + + + 安培 + {0} 安培 + + + 毫安培 + {0} 毫安培 + + + 歐姆 + {0} 歐姆 + + + 伏特 + {0} 伏 + + + 千卡 + {0} 千卡 + + + 卡路里 + {0} 卡 + + + 大卡 + {0} 大卡 + + + 千焦耳 + {0} 千焦 + + + 焦耳 + {0} 焦 + + + 千瓦小時 + {0} 千瓦小時 + + + 吉赫 + {0} 吉赫 + + + 兆赫 + {0} 兆赫 + + + 千赫 + {0} 千赫 + + + 赫茲 + {0} 赫茲 + + + 公里 + {0} 公里 + 每公里{0} + + + 公尺 + {0} 公尺 + 每米{0} + + + 公寸 + {0} 公寸 + + + 公分 + {0} 公分 + 每厘米{0} + + + 公釐 + {0} 公釐 + + + 微米 + {0} 微米 + + + 奈米 + {0} 奈米 + + + 皮米 + {0} 皮米 + + + 英里 + {0} 英里 + + + + {0} 碼 + + + 英尺 + {0} 呎 + 每呎{0} + + + 英寸 + {0} 吋 + 每吋{0} + + + 秒差距 + {0} 秒差距 + + + 光年 + {0} 光年 + + + 天文單位 + {0} 天文單位 + + + 化朗 + {0} 化朗 + + + fm + {0} 英尋 + + + 海里 + {0} 海里 + + + 斯堪地那維亞英里 + {0} 斯堪地那維亞英里 + + + 勒克斯 + {0} 勒克斯 + + + 公噸 + {0} 公噸 + + + 公斤 + {0} 公斤 + 每公斤{0} + + + + {0} 克 + 每克{0} + + + 毫克 + {0} 毫克 + + + 微克 + {0} 微克 + + + 英噸 + {0} 英噸 + + + st + {0} 英石 + + + + {0} 磅 + 每磅{0} + + + 盎司 + {0} 盎司 + 每安士{0} + + + 金衡盎司 + {0} 金衡盎司 + + + 克拉 + {0} 克拉 + + + 吉瓦 + {0} 吉瓦 + + + 百萬瓦 + {0} 百萬瓦 + + + 千瓦 + {0} 千瓦 + + + 瓦特 + {0} 瓦 + + + 毫瓦 + {0} 毫瓦 + + + + {0} 匹 + + + 百帕 + {0} 百帕 + + + 毫米汞柱 + {0} 毫米汞柱 + + + 磅力/平方英寸 + 每平方吋{0}磅 + + + 英寸汞柱 + {0} 英寸汞柱 + + + 毫巴 + {0} 毫巴 + + + 公里/小時 + 每小時{0}公里 + + + 公尺/秒 + 每秒{0}米 + + + 英里/小時 + 每小時{0}英里 + + + + {0} 節 + + + ° + {0}° + + + 攝氏 + {0}°C + + + 華氏 + {0}°F + + + K + {0} K + + + 立方公里 + {0} 立方公里 + + + 立方公尺 + {0} 立方公尺 + 每立方米{0} + + + 立方公分 + {0} 立方公分 + 每立方厘米{0} + + + 立方英里 + {0} 立方英里 + + + 立方碼 + {0} 立方碼 + + + 立方英尺 + {0} 立方英尺 + + + 立方英寸 + {0} 立方英寸 + + + 兆升 + {0} 兆升 + + + 公石 + {0} 公石 + + + 公升 + {0} 升 + 每升{0} + + + 公合 + {0} 公合 + + + 釐升 + {0} 釐升 + + + 毫升 + {0} 毫升 + + + 公制品脫 + {0} 公制品脫 + + + 公制量杯 + {0} 公制杯 + + + 英畝英尺 + {0} 英畝英尺 + + + bu + {0} 蒲式耳 + + + 加侖 + {0} 加侖 + 每加侖{0} + + + 夸脫 + {0} 夸脫 + + + 品脫 + {0} 品脫 + + + 量杯 + {0} 杯 + + + 液盎司 + {0} 液盎司 + + + 湯匙 + {0} 湯匙 + + + 茶匙 + {0} 茶匙 + + + 東經{0} + 北緯{0} + 南緯{0} + 西經{0} + + + + + {0}/{1} + + + {0}G + + + {0}m/s² + + + {0}弧度 + + + {0}度 + + + {0}角分 + + + {0}角秒 + + + {0}km² + + + {0}公頃 + + + {0}m² + + + {0}cm² + + + {0}平方英里 + + + {0}英畝 + + + {0}yd² + + + {0}平方英尺 + + + {0}in² + + + {0}kt + + + {0}L/km + + + 升/100公里 + 每100公里{0}升 + + + {0}mpg + + + {0}TB + + + {0}Tb + + + {0}GB + + + {0}Gb + + + {0}MB + + + {0}Mb + + + {0}kB + + + {0}kb + + + {0}byte + + + {0}bit + + + + {0}年 + + + + {0}月 + + + + {0}週 + + + + {0}天 + + + 小時 + {0}時 + + + 分鐘 + {0}分 + + + + {0}秒 + + + 毫秒 + {0}毫秒 + + + {0}μs + + + {0}ns + + + {0}A + + + {0}mA + + + {0}Ω + + + {0}V + + + {0}千卡 + + + {0}卡 + + + {0}大卡 + + + {0}千焦耳 + + + {0}焦 + + + {0}kWh + + + {0}GHz + + + {0}MHz + + + {0}kHz + + + {0}Hz + + + 公里 + {0}公里 + + + 公尺 + {0}公尺 + + + {0}dm + + + 公分 + {0}公分 + + + 公釐 + {0}公釐 + + + {0}µm + + + {0}nm + + + {0}皮米 + + + {0}英里 + + + {0}碼 + + + {0}呎 + + + {0}吋 + + + {0}pc + + + {0}光年 + + + {0}au + + + 化朗 + {0}化朗 + + + 英尋 + {0}fm + + + {0}nmi + + + {0}lx + + + {0}t + + + 公斤 + {0}公斤 + + + + {0}克 + + + {0}mg + + + {0}µg + + + {0}tn + + + 英石 + {0}st + + + {0}磅 + + + {0}盎司 + + + {0}oz-t + + + {0}CD + + + {0}GW + + + {0}MW + + + {0}千瓦 + + + {0}瓦特 + + + {0}mW + + + {0}匹 + + + {0}百帕 + + + {0}mmHg + + + {0}psi + + + {0}″ Hg + + + {0}毫巴 + + + 公里/小時 + {0}公里/小時 + + + {0}m/s + + + {0}英里/小時 + + + °C + {0}°C + + + {0}°F + + + K + {0}°K + + + {0}km³ + + + {0}m³ + + + {0}cm³ + + + {0}立方英里 + + + {0}yd³ + + + {0}ft³ + + + {0}in³ + + + {0}ML + + + {0}hL + + + 公升 + {0}升 + + + {0}dL + + + {0}cL + + + {0}mL + + + {0}ac-ft + + + 蒲式耳 + {0}bu + + + {0}gal + + + {0}qt + + + {0}pt + + + {0}c + + + {0}fl-oz + + + {0}匙 + + + {0}tsp + + + 東經{0} + 北緯{0} + 南緯{0} + 西經{0} + + + + h:mm + + + h:mm:ss + + + m:ss + + + + + {0}、{1} + {0}、{1} + {0}同{1} + {0}同{1} + + + {0} {1} + {0} {1} + {0} {1} + {0} {1} + + + {0}{1} + {0}{1} + {0}{1} + {0}{1} + + + {0} {1} + {0} {1} + {0} {1} + {0} {1} + + + + + + 唔係 + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yue_HK.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yue_HK.xml new file mode 100644 index 00000000000..32b433b32eb --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/yue_HK.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zgh.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zgh.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zgh.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zgh.xml index ab16e63b1b6..89c4060a485 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zgh.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zgh.xml @@ -1,13 +1,12 @@ - - - + @@ -293,10 +292,10 @@ For terms of use, see http://www.unicode.org/copyright.html ⴰⴷⵔⵉⵎ - ⴰⵙⵎⵍⵓⵙⵙⴰⵏ ⴰⵇⴱⵟⵉ - ⴰⵙⵎⵍⵓⵙⵙⴰⵏ ⵏ ⵉⵜⵢⵓⴱⵢⴰ - ⴰⵙⵎⵍⵓⵙⵙⴰⵏ ⴰⴳⵔⵉⴳⵓⵔ - ⴰⵙⵎⵍⵓⵙⵙⴰⵏ ⵏ ⵍⵉⵙⵍⴰⵎ + ⴰⵙⵎⵍⵓⵙⵙⴰⵏ ⴰⵇⴱⵟⵉ + ⴰⵙⵎⵍⵓⵙⵙⴰⵏ ⵏ ⵉⵜⵢⵓⴱⵢⴰ + ⴰⵙⵎⵍⵓⵙⵙⴰⵏ ⴰⴳⵔⵉⴳⵓⵔ + ⴰⵙⵎⵍⵓⵙⵙⴰⵏ ⵏ ⵍⵉⵙⵍⴰⵎ @@ -434,6 +433,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + ⵜⵉⴼⴰⵡⵜ + ⵜⴰⴷⴳⴳⵯⴰⵜ + ⵜⵉⴼⴰⵡⵜ ⵜⴰⴷⴳⴳⵯⴰⵜ @@ -472,28 +475,6 @@ For terms of use, see http://www.unicode.org/copyright.html - - - - HH:mm:ss zzzz - - - - - HH:mm:ss z - - - - - HH:mm:ss - - - - - HH:mm - - - M @@ -570,6 +551,22 @@ For terms of use, see http://www.unicode.org/copyright.html #,##0.00¤ + + + 0K¤ + 00K¤ + 000K¤ + 0M¤ + 00M¤ + 000M¤ + 0G¤ + 00G¤ + 000G¤ + 0T¤ + 00T¤ + 000T¤ + + @@ -752,3 +749,4 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zgh_MA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zgh_MA.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zgh_MA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zgh_MA.xml index 28311193d7f..593826dd8fc 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zgh_MA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zgh_MA.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zh.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zh.xml similarity index 93% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zh.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zh.xml index 47edf7990cd..196dff72409 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zh.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zh.xml @@ -1,13 +1,12 @@ - - - + @@ -50,6 +49,7 @@ For terms of use, see http://www.unicode.org/copyright.html 艾马拉文 阿塞拜疆文 阿塞拜疆文 + 南阿塞拜疆文 巴什客尔文 俾路支文 巴里文 @@ -62,6 +62,7 @@ For terms of use, see http://www.unicode.org/copyright.html 贝纳文 巴非特文 保加利亚文 + 西俾路支文 博杰普尔文 比斯拉马文 毕库尔文 @@ -289,6 +290,7 @@ For terms of use, see http://www.unicode.org/copyright.html 老挝文 芒戈文 洛兹文 + 北卢尔文 立陶宛文 鲁巴加丹加文 鲁巴鲁瓦文 @@ -337,6 +339,7 @@ For terms of use, see http://www.unicode.org/copyright.html 缅甸文 姆耶内文 俄日亚文 + 马赞德兰文 瑙鲁文 拿波里文 纳马文 @@ -419,6 +422,7 @@ For terms of use, see http://www.unicode.org/copyright.html 西西里文 苏格兰文 信德文 + 南库尔德文 北萨米文 塞内卡文 塞纳文 @@ -456,8 +460,8 @@ For terms of use, see http://www.unicode.org/copyright.html 苏马文 瑞典文 斯瓦希里文 + 刚果斯瓦希里文 科摩罗文 - 刚果斯瓦希里文 经典叙利亚文 叙利亚文 泰米尔文 @@ -503,6 +507,7 @@ For terms of use, see http://www.unicode.org/copyright.html 乌兹别克文 瓦伊文 文达文 + 维普森文 越南文 沃拉普克文 沃提克文 @@ -512,6 +517,7 @@ For terms of use, see http://www.unicode.org/copyright.html 瓦拉莫文 瓦赖文 瓦绍文 + 瓦尔皮瑞文 沃洛夫文 卡尔梅克文 科萨文 @@ -738,7 +744,6 @@ For terms of use, see http://www.unicode.org/copyright.html 安圭拉 阿尔巴尼亚 亚美尼亚 - 荷属安的列斯群岛 安哥拉 南极洲 阿根廷 @@ -1071,6 +1076,9 @@ For terms of use, see http://www.unicode.org/copyright.html 数字排序 排序强度 货币 + 小时制(12或24) + 换行符样式 + 度量系统 数字 时区 语言区域别名 @@ -1078,111 +1086,121 @@ For terms of use, see http://www.unicode.org/copyright.html 专用 - 阿拉伯印度文数字 - 扩展阿拉伯印度文数字 - 亚美尼亚文数字 - 亚美尼亚文小写数字 - 巴厘文数字 - 孟加拉文数字 - 繁体中文排序 - Big5 - 佛教日历 - 占文数字 - 农历 - 科普特日历 - 檀纪日历 - 梵文数字 - 字典排序顺序 - 默认 Unicode 排序 - 埃塞俄比亚文数字 - 埃塞俄比亚日历 - 埃塞俄比亚阿米特阿莱姆日历 - 金融数字 - 全角数字 - 简体中文排序 - GB2312 - 格鲁吉亚文数字 - 公历 - 希腊文数字 - 希腊文小写数字 - 古吉拉特文数字 - 果鲁穆奇文数字 - 中文十进制数字 - 简体中文数字 - 简体中文大写数字 - 繁体中文数字 - 繁体中文大写数字 - 希伯来文数字 - 希伯来日历 - 对所有内容进行排序 - 印度国家日历 - 伊斯兰日历 - 伊斯兰希吉来日历 - 国际标准历法 - 日本日历 - 爪哇文数字 - 日文数字 - 日文大写数字 - 克耶字母数字 - 高棉文数字 - 卡纳达文数字 - 老傣文数字 - 兰纳文数字 - 老挝文数字 - 西方数字 - 雷布查文数字 - 林布文数字 - 先对小写字母进行排序 - 马拉雅拉姆文数字 - 蒙古文数字 - 曼尼普尔数字 - 缅甸文数字 - 缅甸掸文数字 - 当地数字 - 曼德数字 - 对重音进行正常排序 - 对正常大小写顺序进行排序 - 不区分大小写进行排序 - 对假名进行单独排序 - 非规范化排序 - 对数字进行单独排序 - 对符号进行排序 - 桑塔利文数字 - 奥里亚文数字 - 波斯日历 - 电话簿排序顺序 - 语音排序顺序 - 拼音排序 - 只对基本字母进行排序 - 对重音/大小写/长度/假名进行排序 - 改良排序顺序 - 民国日历 - 罗马数字 - 罗马小写数字 - 索拉什特拉文数字 - 常规搜索 - 按韩文字开首辅音来搜索 - 对重音进行排序 - 忽略符号进行排序 - 标准排序 - 笔画排序 - 苏丹文数字 - 新傣仂文数字 - 传统泰米尔文数字 - 泰米尔文数字 - 泰卢固文数字 - 对重音/大小写/长度进行排序 - 泰文数字 - 藏文数字 - 传统排序顺序 - 传统数字 - 部首笔画排序 - 先对大写字母进行排序 - 瓦伊文数字 - 对重音进行逆向排序 - 区分大小写进行排序 - 对假名进行区别排序 - 对 Unicode 进行规范化排序 - 按数字顺序对数字进行排序 - 注音排序 + 佛教日历 + 农历 + 科普特日历 + 檀纪日历 + 埃塞俄比亚日历 + 埃塞俄比亚阿米特阿莱姆日历 + 公历 + 希伯来日历 + 印度国家日历 + 伊斯兰日历 + 伊斯兰希吉来日历 + 国际标准历法 + 日本日历 + 波斯日历 + 民国日历 + 对符号进行排序 + 忽略符号进行排序 + 对重音进行正常排序 + 对重音进行逆向排序 + 先对小写字母进行排序 + 对正常大小写顺序进行排序 + 先对大写字母进行排序 + 不区分大小写进行排序 + 区分大小写进行排序 + 对假名进行单独排序 + 对假名进行区别排序 + 繁体中文排序 - Big5 + 字典排序 + 默认 Unicode 排序 + 简体中文排序 - GB2312 + 电话簿排序 + 语音排序 + 拼音排序 + 改良排序 + 常规搜索 + 按韩文字开首辅音来搜索 + 标准排序 + 笔画排序 + 传统排序 + 部首笔画排序 + 注音排序 + 非规范化排序 + 对 Unicode 进行规范化排序 + 对数字进行单独排序 + 按数字顺序对数字进行排序 + 对所有内容进行排序 + 只对基本字母进行排序 + 对重音/大小写/长度/假名进行排序 + 对重音进行排序 + 对重音/大小写/长度进行排序 + 12小时制(0–11) + 12小时制(1–12) + 24小时制(0–23) + 24小时制(1–24) + + 默认 + + 公制 + 英制 + 美制 + 阿拉伯印度文数字 + 扩展阿拉伯印度文数字 + 亚美尼亚文数字 + 亚美尼亚文小写数字 + 巴厘文数字 + 孟加拉文数字 + 占文数字 + 梵文数字 + 埃塞俄比亚文数字 + 金融数字 + 全角数字 + 格鲁吉亚文数字 + 希腊文数字 + 希腊文小写数字 + 古吉拉特文数字 + 果鲁穆奇文数字 + 中文十进制数字 + 简体中文数字 + 简体中文大写数字 + 繁体中文数字 + 繁体中文大写数字 + 希伯来文数字 + 爪哇文数字 + 日文数字 + 日文大写数字 + 克耶字母数字 + 高棉文数字 + 卡纳达文数字 + 老傣文数字 + 兰纳文数字 + 老挝文数字 + 西方数字 + 雷布查文数字 + 林布文数字 + 马拉雅拉姆文数字 + 蒙古文数字 + 曼尼普尔数字 + 缅甸文数字 + 缅甸掸文数字 + 当地数字 + 曼德数字 + 桑塔利文数字 + 奥里亚文数字 + 罗马数字 + 罗马小写数字 + 索拉什特拉文数字 + 苏丹文数字 + 新傣仂文数字 + 传统泰米尔文数字 + 泰米尔文数字 + 泰卢固文数字 + 泰文数字 + 藏文数字 + 传统数字 + 瓦伊文数字 美国地名委员会 (BGN) @@ -1266,6 +1284,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL M月d日 M月d日E + M月d日 Gy年 Gy年 Gy-M @@ -1557,6 +1576,7 @@ For terms of use, see http://www.unicode.org/copyright.html M-dE MMMd日 MMMd日E + MMMMd日 U年MMM U年MMMd U年MMM @@ -1570,6 +1590,7 @@ For terms of use, see http://www.unicode.org/copyright.html rU年MMM r年MMMd rU年MMMdE + rU年MMMM rU年QQQQ rU年QQQQ @@ -1901,6 +1922,7 @@ For terms of use, see http://www.unicode.org/copyright.html d日 + ccc d日E Gy年 Gy年M月 @@ -1918,6 +1940,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL M月d日 M月d日E + M月d日 mm:ss Gy年 Gy年 @@ -2241,38 +2264,88 @@ For terms of use, see http://www.unicode.org/copyright.html - - 下午 + + 午夜 上午 - 清晨 - 中午 - 上午 - 晚上 - 中午 下午 - 凌晨 + 清晨 + 上午 + 下午 + 下午 + 晚上 + 凌晨 + + + 午夜 + 上午 + 下午 + 清晨 + 上午 + 中午 + 下午 + 晚上 + 凌晨 - 下午 + 午夜 上午 - 清晨 - 中午 - 上午 - 晚上 - 中午 下午 - 凌晨 + 清晨 + 上午 + 下午 + 下午 + 晚上 + 凌晨 + + + + + 午夜 + 上午 + 下午 + 早上 + 上午 + 中午 + 下午 + 晚上 + 凌晨 + + + 午夜 + 上午 + 下午 + 早上 + 上午 + 中午 + 下午 + 晚上 + 凌晨 + + + 午夜 + 上午 + 下午 + 早上 + 上午 + 中午 + 下午 + 晚上 + 凌晨 公元前 + 西元前 公元 + 西元 公元前 + 西元前 公元 + 西元 公元前 @@ -2297,7 +2370,7 @@ For terms of use, see http://www.unicode.org/copyright.html - yy/M/d + y/M/d @@ -2348,9 +2421,9 @@ For terms of use, see http://www.unicode.org/copyright.html d日 ccc d日E - Eah:mm + E ah:mm EHH:mm - Eah:mm:ss + E ah:mm:ss EHH:mm:ss Gy年 Gy年M月 @@ -2373,7 +2446,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL M月d日 M月d日E - M月dd日 + M月d日 mm:ss y年 y年M月 @@ -2776,7 +2849,7 @@ For terms of use, see http://www.unicode.org/copyright.html - 回历 + 伊斯兰历 @@ -2805,6 +2878,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL M月d日 M月d日E + M月d日 @@ -3114,6 +3188,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL M月d日 M月d日E + M月d日 mm:ss Gy年 Gy年 @@ -3123,6 +3198,7 @@ For terms of use, see http://www.unicode.org/copyright.html Gy年M月 Gy年M月d日 Gy年M月d日E + Gy年M月 Gy年第Q季度 Gy年QQQQ @@ -3257,6 +3333,7 @@ For terms of use, see http://www.unicode.org/copyright.html d日 + ccc d日E Gy年 Gy年M月 @@ -3268,6 +3345,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL M月d日 M月d日E + M月d日 Gy年 Gy年 Gy年M月 @@ -4508,6 +4586,9 @@ For terms of use, see http://www.unicode.org/copyright.html 莫尔兹比港 + + 布干维尔 + 马尼拉 @@ -4592,6 +4673,9 @@ For terms of use, see http://www.unicode.org/copyright.html 伊尔库茨克 + + 赤塔 + 雅库茨克 @@ -4610,6 +4694,9 @@ For terms of use, see http://www.unicode.org/copyright.html 马加丹 + + 中科雷姆斯克 + 堪察加 @@ -5878,7 +5965,7 @@ For terms of use, see http://www.unicode.org/copyright.html - 0千 + 0 0万 00万 000万 @@ -5894,7 +5981,7 @@ For terms of use, see http://www.unicode.org/copyright.html - 0千 + 0 0万 00万 000万 @@ -5926,12 +6013,28 @@ For terms of use, see http://www.unicode.org/copyright.html - ¤ #,##0.00 + ¤#,##0.00 ¤#,##0.00;(¤#,##0.00) + + + 0 + ¤0万 + ¤00万 + ¤000万 + ¤0000万 + ¤0亿 + ¤00亿 + ¤000亿 + ¤0000亿 + ¤0兆 + ¤00兆 + ¤000兆 + + {0}{1} @@ -5977,6 +6080,7 @@ For terms of use, see http://www.unicode.org/copyright.html 安哥拉宽扎 安哥拉宽扎 AOA + Kz 安哥拉宽扎 (1977–1990) @@ -6054,6 +6158,7 @@ For terms of use, see http://www.unicode.org/copyright.html 波斯尼亚-黑塞哥维那可兑换马克 波斯尼亚-黑塞哥维那可兑换马克 BAM + KM 波士尼亚-赫塞哥维纳新第纳尔 (1994–1997) @@ -6133,6 +6238,7 @@ For terms of use, see http://www.unicode.org/copyright.html 玻利维亚诺 玻利维亚诺 BOB + Bs 玻利维亚诺 (1863–1963) @@ -6203,6 +6309,7 @@ For terms of use, see http://www.unicode.org/copyright.html 博茨瓦纳普拉 博茨瓦纳普拉 BWP + P 白俄罗斯新卢布 (1994–1999) @@ -6300,6 +6407,7 @@ For terms of use, see http://www.unicode.org/copyright.html 古巴可兑换比索 古巴可兑换比索 CUC + $ 古巴比索 @@ -6321,6 +6429,7 @@ For terms of use, see http://www.unicode.org/copyright.html 捷克克郎 捷克克郎 CZK + 东德奥斯特马克 @@ -6341,6 +6450,7 @@ For terms of use, see http://www.unicode.org/copyright.html 丹麦克朗 丹麦克朗 DKK + kr 多米尼加比索 @@ -6372,6 +6482,7 @@ For terms of use, see http://www.unicode.org/copyright.html 埃及镑 埃及镑 EGP + 厄立特里亚纳克法 @@ -6420,6 +6531,7 @@ For terms of use, see http://www.unicode.org/copyright.html 福克兰群岛镑 福克兰群岛镑 FKP + £ 法国法郎 @@ -6441,6 +6553,7 @@ For terms of use, see http://www.unicode.org/copyright.html 格鲁吉亚拉里 格鲁吉亚拉里 GEL + 加纳塞第 @@ -6467,6 +6580,7 @@ For terms of use, see http://www.unicode.org/copyright.html 几内亚法郎 几内亚法郎 GNF + FG 几内亚西里 @@ -6487,6 +6601,7 @@ For terms of use, see http://www.unicode.org/copyright.html 危地马拉格查尔 危地马拉格查尔 GTQ + Q 葡萄牙几内亚埃斯库多 @@ -6514,6 +6629,7 @@ For terms of use, see http://www.unicode.org/copyright.html 洪都拉斯伦皮拉 洪都拉斯伦皮拉 HNL + L 克罗地亚第纳尔 @@ -6524,6 +6640,7 @@ For terms of use, see http://www.unicode.org/copyright.html 克罗地亚库纳 克罗地亚库纳 HRK + kn 海地古德 @@ -6534,11 +6651,13 @@ For terms of use, see http://www.unicode.org/copyright.html 匈牙利福林 匈牙利福林 HUF + Ft 印度尼西亚盾 印度尼西亚盾 IDR + Rp 爱尔兰镑 @@ -6586,6 +6705,7 @@ For terms of use, see http://www.unicode.org/copyright.html 冰岛克朗 冰岛克朗 ISK + kr 意大利里拉 @@ -6629,11 +6749,13 @@ For terms of use, see http://www.unicode.org/copyright.html 科摩罗法郎 科摩罗法郎 KMF + CF 朝鲜元 朝鲜元 KPW + 韩元 (1953–1962) @@ -6674,11 +6796,13 @@ For terms of use, see http://www.unicode.org/copyright.html 黎巴嫩镑 黎巴嫩镑 LBP + 斯里兰卡卢比 斯里兰卡卢比 LKR + Rs 利比里亚元 @@ -6760,6 +6884,7 @@ For terms of use, see http://www.unicode.org/copyright.html 马达加斯加阿里亚里 马达加斯加阿里亚里 MGA + Ar 马达加斯加法郎 @@ -6785,6 +6910,7 @@ For terms of use, see http://www.unicode.org/copyright.html 缅甸元 缅甸元 MMK + K 蒙古图格里克 @@ -6816,6 +6942,7 @@ For terms of use, see http://www.unicode.org/copyright.html 毛里求斯卢比 毛里求斯卢比 MUR + Rs 马尔代夫卢菲亚 @@ -6847,6 +6974,7 @@ For terms of use, see http://www.unicode.org/copyright.html 马来西亚林吉特 马来西亚林吉特 MYR + RM 莫桑比克埃斯库多 @@ -6884,6 +7012,7 @@ For terms of use, see http://www.unicode.org/copyright.html 尼加拉瓜金科多巴 尼加拉瓜金科多巴 NIO + C$ 荷兰盾 @@ -6894,11 +7023,13 @@ For terms of use, see http://www.unicode.org/copyright.html 挪威克朗 挪威克朗 NOK + kr 尼泊尔卢比 尼泊尔卢比 NPR + Rs 新西兰元 @@ -6946,11 +7077,13 @@ For terms of use, see http://www.unicode.org/copyright.html 巴基斯坦卢比 巴基斯坦卢比 PKR + Rs 波兰兹罗提 波兰兹罗提 PLN + 波兰兹罗提 (1950–1995) @@ -6997,6 +7130,7 @@ For terms of use, see http://www.unicode.org/copyright.html 俄罗斯卢布 俄罗斯卢布 RUB + 俄国卢布 (1991–1998) @@ -7008,6 +7142,7 @@ For terms of use, see http://www.unicode.org/copyright.html 卢旺达法郎 卢旺达法郎 RWF + RF 沙特里亚尔 @@ -7044,6 +7179,7 @@ For terms of use, see http://www.unicode.org/copyright.html 瑞典克朗 瑞典克朗 SEK + kr 新加坡元 @@ -7055,6 +7191,7 @@ For terms of use, see http://www.unicode.org/copyright.html 圣赫勒拿群岛磅 圣赫勒拿群岛磅 SHP + £ 斯洛文尼亚托拉尔 @@ -7097,6 +7234,7 @@ For terms of use, see http://www.unicode.org/copyright.html 圣多美和普林西比多布拉 圣多美和普林西比多布拉 STD + Db 苏联卢布 @@ -7112,6 +7250,7 @@ For terms of use, see http://www.unicode.org/copyright.html 叙利亚镑 叙利亚镑 SYP + £ 斯威士兰里兰吉尼 @@ -7121,7 +7260,8 @@ For terms of use, see http://www.unicode.org/copyright.html 泰铢 泰铢 - ฿ + THB + ฿ 塔吉克斯坦卢布 @@ -7152,6 +7292,7 @@ For terms of use, see http://www.unicode.org/copyright.html 汤加潘加 汤加潘加 TOP + T$ 帝汶埃斯库多 @@ -7166,6 +7307,7 @@ For terms of use, see http://www.unicode.org/copyright.html 土耳其里拉 TRY + TL 特立尼达和多巴哥元 @@ -7251,6 +7393,7 @@ For terms of use, see http://www.unicode.org/copyright.html 委内瑞拉玻利瓦尔 委内瑞拉玻利瓦尔 VEF + Bs 越南盾 @@ -7298,6 +7441,7 @@ For terms of use, see http://www.unicode.org/copyright.html 东加勒比元 东加勒比元 EC$ + $ 特别提款权 @@ -7378,6 +7522,7 @@ For terms of use, see http://www.unicode.org/copyright.html 南非兰特 南非兰特 ZAR + R 赞比亚克瓦查 (1968–2012) @@ -7388,6 +7533,7 @@ For terms of use, see http://www.unicode.org/copyright.html 赞比亚克瓦查 赞比亚克瓦查 ZMW + ZK 新扎伊尔 (1993–1998) @@ -7433,6 +7579,18 @@ For terms of use, see http://www.unicode.org/copyright.html 米/秒² {0}米/秒² + + + {0}转 + + + 弧度 + {0}弧度 + + + + {0}度 + 弧分 {0}弧分 @@ -7441,25 +7599,35 @@ For terms of use, see http://www.unicode.org/copyright.html 弧秒 {0}弧秒 - - - {0}度 - - - 弧度 - {0}弧度 - - - 英亩 - {0}英亩 + + 平方公里 + {0}平方公里 公顷 {0}公顷 + + 平方米 + {0}平方米 + 每平方米{0} + 平方厘米 {0}平方厘米 + 每平方厘米{0} + + + 平方英里 + {0}平方英里 + + + 英亩 + {0}英亩 + + + 平方码 + {0}平方码 平方英尺 @@ -7468,112 +7636,114 @@ For terms of use, see http://www.unicode.org/copyright.html 平方英寸 {0}平方英寸 + 每平方英寸{0} - - 平方公里 - {0}平方公里 - - - 平方米 - {0}平方米 - - - 平方英里 - {0}平方英里 - - - 平方码 - {0}平方码 + + 克拉 + {0}克拉 升每公里 - {0}升每公里 + 每公里{0}升 + + + 升/100千米 + {0}升/100千米 英里每加仑 - {0}英里每加仑 - - - 比特 - {0}比特 - - - 字节 - {0}字节 - - - 吉比特 - {0}吉比特 - - - 吉字节 - {0}吉字节 - - - 千比特 - {0}千比特 - - - 千字节 - {0}千字节 - - - 兆比特 - {0}兆比特 - - - 兆字节 - {0}兆字节 - - - 太比特 - {0}太比特 + 每加仑{0}英里 太字节 {0}太字节 + + 太比特 + {0}太比特 + + + 吉字节 + {0}吉字节 + + + 吉比特 + {0}吉比特 + + + 兆字节 + {0}兆字节 + + + 兆比特 + {0}兆比特 + + + 千字节 + {0}千字节 + + + 千比特 + {0}千比特 + + + 字节 + {0}字节 + + + 比特 + {0}比特 + + + 世纪 + {0}世纪 + + + + {0}年 + 每年{0} + + + 个月 + {0}个月 + 每月{0} + + + + {0}周 + 每周{0} + {0}天 + 每天{0} 小时 {0}小时 {0}/小时 - - 微秒 - {0}微秒 - - - 毫秒 - {0}毫秒 - 分钟 {0}分钟 - - - 个月 - {0}个月 - - - 纳秒 - {0}纳秒 + 每分钟{0} 秒钟 {0}秒钟 {0}/秒 - - - {0}周 + + 毫秒 + {0}毫秒 - - - {0}年 + + 微秒 + {0}微秒 + + + 纳秒 + {0}纳秒 安培 @@ -7591,6 +7761,10 @@ For terms of use, see http://www.unicode.org/copyright.html 伏特 {0}伏特 + + 千卡 + {0}千卡 + 卡路里 {0}卡路里 @@ -7599,18 +7773,14 @@ For terms of use, see http://www.unicode.org/copyright.html 卡路里 {0}卡路里 - - 焦耳 - {0}焦耳 - - - 千卡 - {0}千卡 - 千焦 {0}千焦 + + 焦耳 + {0}焦耳 + 千瓦时 {0}千瓦时 @@ -7619,154 +7789,175 @@ For terms of use, see http://www.unicode.org/copyright.html 吉赫 {0}吉赫 - - 赫兹 - {0}赫兹 + + 兆赫 + {0}兆赫 千赫 {0}千赫 - - 兆赫 - {0}兆赫 + + 赫兹 + {0}赫兹 - - 天文单位 - {0}天文单位 + + 公里 + {0}公里 + 每公里{0} - - 厘米 - {0}厘米 + + + {0}米 + 每米{0} 分米 {0}分米 - - 英尺 - {0}英尺 - - - 英寸 - {0}英寸 - - - 公里 - {0}公里 - - - 光年 - {0}光年 - - - - {0}米 - - - 微米 - {0}微米 - - - 英里 - {0}英里 + + 厘米 + {0}厘米 + 每厘米{0} 毫米 {0}毫米 + + 微米 + {0}微米 + 纳米 {0}纳米 - - 海里 - {0}海里 - - - 秒差距 - {0}秒差距 - 皮米 {0}皮米 + + 英里 + {0}英里 + {0}码 + + 英尺 + {0}英尺 + 每英尺{0} + + + 英寸 + {0}英寸 + 每英寸{0} + + + 秒差距 + {0}秒差距 + + + 光年 + {0}光年 + + + 天文单位 + {0}天文单位 + + + 海里 + {0}海里 + + + 斯堪的纳维亚英里 + {0}斯堪的纳维亚英里 + 勒克斯 {0}勒克斯 - - 克拉 - {0}克拉 - - - - {0}克 - - - 千克 - {0}千克 - 公吨 {0}公吨 - - 微克 - {0}微克 + + 千克 + {0}千克 + 每千克{0} + + + + {0}克 + 每克{0} 毫克 {0}毫克 - - 盎司 - {0}盎司 - - - 金衡制盎司 - {0}金衡制盎司 - - - - {0}磅 + + 微克 + {0}微克 {0}吨 + + + {0}磅 + 每磅{0} + + + 盎司 + {0}盎司 + 每盎司{0} + + + 金衡制盎司 + {0}金衡制盎司 + + + 克拉 + {0}克拉 + 吉瓦 {0}吉瓦 - - 马力 - {0}马力 - - - 千瓦 - {0}千瓦 - 兆瓦 {0}兆瓦 - - 毫瓦 - {0}毫瓦 + + 千瓦 + {0}千瓦 瓦特 {0}瓦特 + + 毫瓦 + {0}毫瓦 + + + 马力 + {0}马力 + 百帕斯卡 {0}百帕斯卡 + + 毫米汞柱 + {0}毫米汞柱 + + + 磅/平方英寸 + 每平方英寸{0}磅 + 英寸汞柱 {0}英寸汞柱 @@ -7775,29 +7966,25 @@ For terms of use, see http://www.unicode.org/copyright.html 毫巴 {0}毫巴 - - 毫米汞柱 - {0}毫米汞柱 - - - 磅/平方英寸 - {0}磅每平方英寸 - - - 克拉 - {0}克拉 - 千米每小时 - {0}千米每小时 + 每小时{0}公里 米每秒 - {0}米每秒 + 每秒{0}米 英里每小时 - {0}英里每小时 + 每小时{0}英里 + + + 海里/小时 + {0}海里/小时 + + + ° + {0}° 摄氏度 @@ -7811,26 +7998,6 @@ For terms of use, see http://www.unicode.org/copyright.html 开尔文 {0}开尔文 - - 英亩英尺 - {0}英亩英尺 - - - 厘升 - {0}厘升 - - - 立方厘米 - {0}立方厘米 - - - 立方英尺 - {0}立方英尺 - - - 立方英寸 - {0}立方英寸 - 立方公里 {0}立方公里 @@ -7838,6 +8005,12 @@ For terms of use, see http://www.unicode.org/copyright.html 立方米 {0}立方米 + 每立方米{0} + + + 立方厘米 + {0}立方厘米 + 每立方厘米{0} 立方英里 @@ -7847,21 +8020,17 @@ For terms of use, see http://www.unicode.org/copyright.html 立方码 {0}立方码 - - - {0}杯 + + 立方英尺 + {0}立方英尺 - - 分升 - {0}分升 + + 立方英寸 + {0}立方英寸 - - 液盎司 - {0}液盎司 - - - 加仑 - {0}加仑 + + 兆升 + {0}兆升 公石 @@ -7870,23 +8039,53 @@ For terms of use, see http://www.unicode.org/copyright.html 公升 {0}公升 + 每公升{0} - - 兆升 - {0}兆升 + + 分升 + {0}分升 + + + 厘升 + {0}厘升 毫升 {0}毫升 - - 品脱 - {0}品脱 + + 公制品脱 + {0}公制品脱 + + + 公制杯 + {0}公制杯 + + + 英亩英尺 + {0}英亩英尺 + + + 加仑 + {0}加仑 + 每加仑{0} 夸脱 {0}夸脱 + + 品脱 + {0}品脱 + + + + {0}杯 + + + 液盎司 + {0}液盎司 + 汤匙 {0}汤匙 @@ -7895,6 +8094,12 @@ For terms of use, see http://www.unicode.org/copyright.html 茶匙 {0}茶匙 + + 东经{0} + 北纬{0} + 南纬{0} + 西经{0} + @@ -7908,6 +8113,18 @@ For terms of use, see http://www.unicode.org/copyright.html 米/秒² {0}米/秒² + + + {0}转 + + + 弧度 + {0}弧度 + + + + {0}° + 弧分 {0}弧分 @@ -7916,139 +8133,151 @@ For terms of use, see http://www.unicode.org/copyright.html 弧秒 {0}弧秒 - - - {0}° - - - 弧度 - {0}弧度 - - - 英亩 - {0}英亩 - - - 公顷 - {0} ha - - - 平方厘米 - {0}平方厘米 - - - 平方英尺 - {0} ft² - - - 平方英寸 - {0}平方英寸 - 平方公里 {0}平方公里 + + 公顷 + {0}公顷 + 平方米 {0}平方米 + {0}/平方米 + + + 平方厘米 + {0}平方厘米 + {0}/平方厘米 平方英里 {0}平方英里 + + 英亩 + {0}英亩 + 平方码 {0}平方码 + + 平方英尺 + {0}平方英尺 + + + 平方英寸 + {0}平方英寸 + {0}/平方英寸 + + + 克拉 + {0}克拉 + 升/公里 - {0}升/公里 + 每公里{0}升 + + + 升/100千米 + {0}升/100千米 英里/加仑 - {0}英里/加仑 - - - 比特 - {0}比特 - - - 字节 - {0}字节 - - - 吉比特 - {0}吉比特 - - - 吉字节 - {0}吉字节 - - - 千比特 - {0}千比特 - - - 千字节 - {0}千字节 - - - 兆比特 - {0}兆比特 - - - 兆字节 - {0}兆字节 - - - 太比特 - {0}太比特 + 每加仑{0}英里 太字节 {0}太字节 + + 太比特 + {0}太比特 + + + 吉字节 + {0}吉字节 + + + 吉比特 + {0}吉比特 + + + 兆字节 + {0}兆字节 + + + 兆比特 + {0}兆比特 + + + 千字节 + {0}千字节 + + + 千比特 + {0}千比特 + + + 字节 + {0}字节 + + + 比特 + {0}比特 + + + 世纪 + {0}世纪 + + + + {0}年 + {0}/年 + + + 个月 + {0}个月 + {0}/月 + + + + {0}周 + {0}/周 + {0}天 + {0}/天 小时 {0}小时 {0}/小时 - - 微秒 - {0}微秒 - - - 毫秒 - {0}毫秒 - 分钟 {0}分钟 - - - 个月 - {0}个月 - - - 纳秒 - {0}纳秒 + {0}/分钟 {0}秒 {0}/秒 - - - {0}周 + + 毫秒 + {0}毫秒 - - - {0}年 + + 微秒 + {0}微秒 + + + 纳秒 + {0}纳秒 安培 @@ -8066,6 +8295,10 @@ For terms of use, see http://www.unicode.org/copyright.html 伏特 {0}伏 + + 千卡 + {0}千卡 + {0}卡 @@ -8074,18 +8307,14 @@ For terms of use, see http://www.unicode.org/copyright.html {0}卡 - - 焦耳 - {0}焦耳 - - - 千卡 - {0}千卡 - 千焦 {0}千焦 + + 焦耳 + {0}焦耳 + 千瓦时 {0}千瓦时 @@ -8094,154 +8323,175 @@ For terms of use, see http://www.unicode.org/copyright.html 吉赫 {0}吉赫 - - 赫兹 - {0}赫 + + 兆赫 + {0}兆赫 千赫 {0}千赫 - - 兆赫 - {0}兆赫 + + 赫兹 + {0}赫 - - 天文单位 - {0}天文单位 + + 公里 + {0}公里 + {0}/公里 - - 厘米 - {0}厘米 + + + {0}米 + {0}/米 分米 {0}分米 - - 英尺 - {0}英尺 - - - 英寸 - {0}英寸 - - - 公里 - {0}公里 - - - 光年 - {0} ly - - - - {0} m - - - 微米 - {0}微米 - - - 英里 - {0}英里 + + 厘米 + {0}厘米 + {0}/厘米 毫米 {0}毫米 + + 微米 + {0}微米 + 纳米 {0}纳米 - - 海里 - {0}海里 + + 皮米 + {0} 皮米 + + + 英里 + {0}英里 + + + + {0} 码 + + + 英尺 + {0}英尺 + {0}/英尺 + + + 英寸 + {0}英寸 + {0}/英寸 秒差距 {0}秒差距 - - 皮米 - {0} pm + + 光年 + {0}光年 - - - {0} yd + + 天文单位 + {0}天文单位 + + + 海里 + {0}海里 + + + 斯堪的纳维亚英里 + {0}斯堪的纳维亚英里 勒克斯 {0}勒克斯 - - 克拉 - {0}克拉 - - - - {0}克 - - - 千克 - {0}千克 - 公吨 {0}公吨 - - 微克 - {0}微克 + + 千克 + {0}千克 + {0}/千克 + + + + {0}克 + {0}/克 毫克 {0}毫克 - - 盎司 - {0}盎司 - - - 金衡制盎司 - {0}金衡制盎司 - - - - {0}磅 + + 微克 + {0}微克 {0}吨 + + + {0}磅 + {0}/磅 + + + 盎司 + {0}盎司 + {0}/盎司 + + + 金衡制盎司 + {0}金衡制盎司 + + + 克拉 + {0}克拉 + 吉瓦 {0}吉瓦 - - 马力 - {0}马力 - - - 千瓦 - {0}千瓦 - 兆瓦 {0}兆瓦 - - 毫瓦 - {0}毫瓦 + + 千瓦 + {0}千瓦 瓦特 {0}瓦 + + 毫瓦 + {0}毫瓦 + + + 马力 + {0}马力 + 百帕斯卡 {0}百帕 + + 毫米汞柱 + {0}毫米汞柱 + + + 磅/平方英寸 + 每平方英寸{0}磅 + 英寸汞柱 {0}英寸汞柱 @@ -8250,29 +8500,25 @@ For terms of use, see http://www.unicode.org/copyright.html 毫巴 {0}毫巴 - - 毫米汞柱 - {0}毫米汞柱 - - - 磅/平方英寸 - {0}磅/平方英寸 - - - 克拉 - {0}克拉 - 千米/小时 - {0}千米/小时 + 每小时{0}公里 米/秒 - {0}米/秒 + 每秒{0}米 英里/小时 - {0}英里/小时 + 每小时{0}英里 + + + 海里/小时 + {0}海里/小时 + + + ° + {0}° 摄氏度 @@ -8286,26 +8532,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0}K - - 英亩英尺 - {0}英亩英尺 - - - 厘升 - {0}厘升 - - - 立方厘米 - {0}立方厘米 - - - 立方英尺 - {0}立方英尺 - - - 立方英寸 - {0}立方英寸 - 立方公里 {0}立方公里 @@ -8313,6 +8539,12 @@ For terms of use, see http://www.unicode.org/copyright.html 立方米 {0}立方米 + {0}/立方米 + + + 立方厘米 + {0}立方厘米 + {0}/cm³ 立方英里 @@ -8322,21 +8554,17 @@ For terms of use, see http://www.unicode.org/copyright.html 立方码 {0}立方码 - - - {0}杯 + + 立方英尺 + {0}立方英尺 - - 分升 - {0}分升 + + 立方英寸 + {0}立方英寸 - - 液盎司 - {0}液盎司 - - - 加仑 - {0}加仑 + + 兆升 + {0}兆升 公石 @@ -8345,23 +8573,53 @@ For terms of use, see http://www.unicode.org/copyright.html 公升 {0}升 + {0}/公升 - - 兆升 - {0}兆升 + + 分升 + {0}分升 + + + 厘升 + {0}厘升 毫升 {0}毫升 - - 品脱 - {0}品脱 + + 公制品脱 + {0}公制品脱 + + + 公制杯 + {0}公制杯 + + + 英亩英尺 + {0}英亩英尺 + + + 加仑 + {0}加仑 + {0}/加仑 夸脱 {0}夸脱 + + 品脱 + {0}品脱 + + + + {0}杯 + + + 液盎司 + {0}液盎司 + 汤匙 {0}汤匙 @@ -8370,6 +8628,12 @@ For terms of use, see http://www.unicode.org/copyright.html 茶匙 {0}茶匙 + + 东经{0} + 北纬{0} + 南纬{0} + 西经{0} + @@ -8378,33 +8642,49 @@ For terms of use, see http://www.unicode.org/copyright.html {0}G + + {0}° + {0}′ {0}″ - - {0}° - - - {0}ac + + {0}km² {0}ha - - {0}ft² - - - {0}km² - {0}m² {0}mi² + + {0}ac + + + {0}ft² + + + L/100km + {0}L/100km + + + + {0}年 + + + 个月 + {0}个月 + + + + {0}周 + {0}天 @@ -8413,53 +8693,29 @@ For terms of use, see http://www.unicode.org/copyright.html 小时 {0}小时 - - 毫秒 - {0}毫秒 - 分钟 {0}分钟 - - 个月 - {0}个月 - {0}秒 - - - {0}周 - - - - {0}年 - - - 厘米 - {0}厘米 - - - {0}′ - - - {0}″ + + 毫秒 + {0}毫秒 公里 {0}公里 - - {0}ly - {0}米 - - {0}mi + + 厘米 + {0}厘米 毫米 @@ -8468,25 +8724,34 @@ For terms of use, see http://www.unicode.org/copyright.html {0}pm + + {0}mi + {0}yd - - - {0}克 + + {0}′ + + + {0}″ + + + {0}ly 千克 {0}千克 - - {0}盎司 + + + {0}克 {0}磅 - - {0}hp + + {0}盎司 {0}kW @@ -8494,6 +8759,9 @@ For terms of use, see http://www.unicode.org/copyright.html {0}W + + {0}hp + {0}hPa @@ -8505,7 +8773,7 @@ For terms of use, see http://www.unicode.org/copyright.html 千米/小时 - {0}千米/小时 + 每小时{0}公里 {0}m/s @@ -8514,7 +8782,7 @@ For terms of use, see http://www.unicode.org/copyright.html {0}mi/h - 摄氏度 + °C {0}° @@ -8530,6 +8798,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0}升 + + {0}E + {0}N + {0}S + {0}W + h:mm diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zh_Hans.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zh_Hans.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zh_Hans.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zh_Hans.xml index 38cc686dbba..6646316d53c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zh_Hans.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zh_Hans.xml @@ -1,14 +1,14 @@ - - - + + + + + + + + + + + + + + + + + + + + 中美洲 + 加勒比 + 波利尼西亞 + 阿拉伯聯合酋長國 + 安提瓜和巴布達 + 阿魯巴 + 阿塞拜疆 + 波斯尼亞和黑塞哥維那 + 巴巴多斯 + 布基納法索 + 布隆迪 + 貝寧 + 聖巴泰勒米 + 鮑威特島 + 博茨瓦納 + 伯利茲 + 可可斯群島 + 剛果 - 金夏沙 + 剛果 - 布拉薩 + 科特迪瓦 + 象牙海岸 + 克里珀頓島 + 哥斯達黎加 + 佛得角 + 塞浦路斯 + 吉布提 + 多米尼加共和國 + 厄瓜多爾 + 厄立特里亞 + 埃塞俄比亞 + 加蓬 + 格林納達 + 格魯吉亞 + 加納 + 岡比亞 + 南佐治亞島與南桑威奇群島 + 危地馬拉 + 幾內亞比紹 + 圭亞那 + 洪都拉斯 + 克羅地亞 + 馬恩島 + 英屬印度洋領土 + 意大利 + 肯雅 + 科摩羅 + 聖基茨和尼維斯 + 老撾 + 聖盧西亞 + 列支敦士登 + 利比里亞 + 萊索托 + 黑山 + 馬里 + 毛里塔尼亞 + 蒙特塞拉特 + 馬耳他 + 毛里裘斯 + 馬爾代夫 + 馬拉維 + 莫桑比克 + 尼日爾 + 尼日利亞 + 瑙魯 + 阿曼 + 法屬波利尼西亞 + 巴布亞新幾內亞 + 皮特凱恩島 + 卡塔爾 + 盧旺達 + 沙特阿拉伯 + 所羅門群島 + 塞舌爾 + 斯洛文尼亞 + 斯瓦爾巴特群島及揚馬延島 + 塞拉利昂 + 索馬里 + 蘇里南 + 聖多美和普林西比 + 斯威士蘭 + 特克斯和凱科斯群島 + 乍得 + 法屬南部地區 + 多哥共和國 + 湯加 + 千里達和多巴哥 + 圖瓦盧 + 坦桑尼亞 + 聖文森特和格林納丁斯 + 英屬維爾京群島 + 美屬維爾京群島 + 瓦努阿圖 + 也門 + 贊比亞 + 津巴布韋 + + + 傳統德國拼字法 + 1996 德國拼字法 + San Giorgio/Bila 方言 + 已修訂拼字法 + 蘇格蘭標準英語 + + + 度量衡系統 + 專用區 + + + 埃及曆 + 埃塞俄比亞阿美德阿萊姆曆 + 繁體中文排序 (Big5) + 詞典排序 + 簡體中文排序 (GB2312) + 改革版排序 + 英制 + 美制 + 天城體數字 + 埃塞俄比亞數字 + 格魯吉亞數字 + 卡納達數字 + 老撾數字 + 馬拉雅拉姆數字 + 蒙古文位數 + 奧里亞數字 + 泰米爾數字 + 泰米爾數字 + + + 數值 + 重音 + 韓文 + + + + {0}⋯ + ⋯{0} + {0}⋯{1} + {0}⋯ + ⋯{0} + {0}⋯{1} + + + + + + + M-d + M-d(E) + + + + + + + + 正月 + 二月 + 三月 + 四月 + 五月 + 六月 + 七月 + 八月 + 九月 + 十月 + 十一月 + 十二月 + + + + + + + + + + + + + 十一 + 十二 + + + 正月 + 二月 + 三月 + 四月 + 五月 + 六月 + 七月 + 八月 + 九月 + 十月 + 十一月 + 十二月 + + + + + 正月 + 二月 + 三月 + 四月 + 五月 + 六月 + 七月 + 八月 + 九月 + 十月 + 十一月 + 十二月 + + + + + + + + + + + + + 十一 + 十二 + + + 正月 + 二月 + 三月 + 四月 + 五月 + 六月 + 七月 + 八月 + 九月 + 十月 + 十一月 + 十二月 + + + + + + + U(r)年MMMdEEEE + + + + + U(r)年MMMd + + + + + U年MMMd + + + + + U/M/d + + + + + + + + + Gy年M月d日EEEE + + + + + Gy年M月d日 + + + + + Gy年M月d日 + + + + + Gy/M/d + + + + + + + {1} {0} + + + + d日E + Gy年 + Gy年M月 + Gy年M月d日 + Gy年M月d日E + d/M + E, d/M + M月d日E + Gy年 + Gy年 + Gy/M + Gy/M/d + Gy/M/dE + Gy年M月 + Gy年M月d日 + Gy年M月d日E + Gy年M月 + Gy年QQQ + Gy年QQQQ + + + + d/M 至 d/M + d/M 至 d/M + + + d/M(E) 至 d/M(E) + d/M(E) 至 d/M(E) + + + Gy年至y年 + + + Gy/M至y/M + Gy/M至y/M + + + Gy/M/d至y/M/d + Gy/M/d至y/M/d + Gy/M/d至y/M/d + + + Gy/M/dE至y/M/dE + Gy/M/dE至y/M/dE + Gy/M/dE至y/M/dE + + + Gy年M月至M月 + Gy年M月至y年M月 + + + Gy年M月d日至d日 + Gy年M月d日至M月d日 + Gy年M月d日至y年M月d日 + + + Gy年M月d日E至d日E + Gy年M月d日E至M月d日E + Gy年M月d日E至y年M月d日E + + + Gy年M月至M月 + Gy年M月至y年M月 + + + + + + + + + Q1 + Q2 + Q3 + Q4 + + + + + Q1 + Q2 + Q3 + Q4 + + + + + + + 午夜 + 清晨 + 早上 + 中午 + 下午 + 晚上 + 凌晨 + + + 午夜 + 清晨 + 早上 + 中午 + 下午 + 晚上 + 凌晨 + + + 午夜 + 清晨 + 早上 + 中午 + 下午 + 晚上 + 凌晨 + + + + + 清晨 + 早上 + 中午 + 下午 + 晚上 + 凌晨 + + + 清晨 + 早上 + 中午 + 下午 + 晚上 + 凌晨 + + + 清晨 + 早上 + 中午 + 下午 + 晚上 + 凌晨 + + + + + + 公元前 + 公元 + + + 公元前 + 公元 + + + + + + y年M月d日EEEE + + + + + d/M/y + + + + + + cccc + d日E + Gy年M月d日E + d/M + E, d/M + dd/MM + M月d日E + M/y + d/M/y + y/M/dE + MM/y + y年M月d日E + + + + d/M 至 d/M + d/M 至 d/M + + + d/M(E) 至 d/M(E) + d/M(E) 至 d/M(E) + + + M/y 至 M/y + M/y 至 M/y + + + d/M/y 至 d/M/y + d/M/y 至 d/M/y + d/M/y 至 d/M/y + + + d/M/y(E) 至 d/M/y(E) + d/M/y(E) 至 d/M/y(E) + d/M/y(E) 至 d/M/y(E) + + + + + + + + d日E + d-M + d-M(E) + Gy/M/dE + + + + + + + 上年 + 今年 + 下年 + + + 上年 + 今年 + 下年 + + + 上年 + 今年 + 下年 + + {0}年後 + + + {0}年前 + + + + 上一季 + 今季 + 下一季 + + + 上季 + 今季 + 下季 + + + 上季 + 今季 + 下季 + + +{0}Q + + + -{0}Q + + + + 上月 + 本月 + 下月 + + {0}個月後 + + + {0}個月前 + + + + 星期 + 上星期 + 本星期 + 下星期 + + {0} 星期後 + + + {0} 星期前 + + + + 星期 + 上星期 + 本星期 + 下星期 + + {0} 星期後 + + + {0} 星期前 + + + + + {0}週後 + + + {0}週前 + + + + 前日 + 昨日 + 今日 + 明日 + 後日 + + {0} 日後 + + + {0} 日前 + + + + 前日 + 昨日 + 今日 + 明日 + 後日 + + {0} 日後 + + + {0} 日前 + + + + 前日 + 昨日 + 今日 + 明日 + 後日 + + {0}日後 + + + {0}日前 + + + + 星期幾 + + + 上星期日 + 本星期日 + 下星期日 + + + 上星期日 + 本星期日 + 下星期日 + + + 上星期一 + 本星期一 + 下星期一 + + + 上星期一 + 本星期一 + 下星期一 + + + 上星期二 + 本星期二 + 下星期二 + + + 上星期二 + 本星期二 + 下星期二 + + + 上星期三 + 本星期三 + 下星期三 + + + 上星期三 + 本星期三 + 下星期三 + + + 上星期四 + 本星期四 + 下星期四 + + + 上星期四 + 本星期四 + 下星期四 + + + 上星期五 + 本星期五 + 下星期五 + + + 上星期五 + 本星期五 + 下星期五 + + + 上星期六 + 本星期六 + 下星期六 + + + 上星期六 + 本星期六 + 下星期六 + + + + + {0}小時後 + + + {0}小時前 + + + + + + {0}分後 + + + {0}分前 + + + + + {0}秒後 + + + {0}秒前 + + + + + {0}夏令時間 + {0}標準時間 + + 安提瓜 + + + 安圭拉 + + + 耶烈萬 + + + 盧安達 + + + 羅瑟拉站 + + + 帕爾默 + + + 特羅爾站 + + + 昭和站 + + + 莫森站 + + + 戴維斯站 + + + 凱西站 + + + 杜蒙迪維爾站 + + + 麥克默多站 + + + 拉里奧哈 + + + 科爾多瓦 + + + 帕果帕果 + + + 珀斯 + + + 阿德萊德 + + + 卡里 + + + 荷伯特 + + + 悉尼 + + + 布里斯本 + + + 麥夸里 + + + 阿魯巴 + + + 薩拉熱窩 + + + 巴巴多斯 + + + 聖巴泰勒米 + + + 里約布蘭科 + + + 韋柳港 + + + 博阿維斯塔 + + + 庫亞巴 + + + 大坎普 + + + 阿拉瓜伊納 + + + 巴希雅 + + + 福塔萊薩 + + + 馬塞約 + + + 累西腓 + + + 諾羅尼亞 + + + 拿騷 + + + 伯利茲 + + + 白馬市 + + + 伊努維克 + + + 道森灣 + + + 黃刀鎮 + + + 愛民頓 + + + 雷灣 + + + 尼皮貢 + + + 哈利法克斯 + + + 格萊斯灣 + + + 聖約翰斯 + + + 可可斯群島 + + + 金沙薩 + + + 班基 + + + 阿比贊 + + + 聖地亞哥 + + + 哥斯達黎加 + + + 佛得角 + + + 尼科西亞 + + + 吉布提 + + + 多米尼克 + + + 聖多明各 + + + 阿斯馬拉 + + + 加那利 + + + 史丹利 + + + 科斯雷 + + + 利布維 + + + 格林納達 + + + 卡宴 + + + 根西島 + + + 圖勒 + + + 科納克里 + + + 危地馬拉 + + + 圭亞那 + + + 香港 + + + 特古西加爾巴 + + + 薩格勒布 + + + 錫江 + + + 查雅普拉 + + + 馬恩島 + + + 查戈斯群島 + + + 雷克雅未克 + + + 內羅畢 + + + 比斯凱克 + + + 恩德伯里島 + + + 科摩羅 + + + 聖盧西亞 + + + 華杜茲 + + + 科倫坡 + + + 馬塞魯 + + + 基希訥烏 + + + 波德戈里察 + + + 瓜加林環礁 + + + 馬久羅 + + + 斯科普里 + + + 澳門 + + + 馬提尼克 + + + 努瓦克肖特 + + + 蒙塞拉特島 + + + 馬耳他 + + + 毛里裘斯 + + + 馬爾代夫 + + + 蒂華納 + + + 芝華華 + + + 巴伊亞德班德拉斯 + + + 蒙特雷 + + + 墨西哥城 + + + 溫特和克 + + + 努美阿 + + + 拉各斯 + + + 馬那瓜 + + + 瑙魯 + + + 查塔姆 + + + 馬斯喀特 + + + 馬克薩斯群島 + + + 甘比爾 + + + 布干維爾島 + + + 卡拉奇 + + + 密克隆 + + + 皮特康群島 + + + 加沙 + + + 希伯侖 + + + 馬德拉島 + + + 阿松森 + + + 卡塔爾 + + + 留尼旺 + + + 貝爾格萊德 + + + 葉卡捷琳堡 + + + 伊爾庫茨克 + + + 雅庫茨克 + + + 阿納德爾 + + + 利雅得 + + + 瓜達爾卡納爾島 + + + 盧布爾雅那 + + + 朗伊爾城 + + + 伯拉第斯拉瓦 + + + 摩加迪沙 + + + 凱爾蓋朗群島 + + + 杜尚別 + + + 法考福環礁 + + + 阿什哈巴德 + + + 湯加塔布島 + + + 達累斯薩拉姆 + + + 烏日哥羅德 + + + 約翰斯頓環礁 + + + 威克島 + + + 埃達克 + + + 安克雷奇 + + + 亞庫塔特 + + + 博伊西 + + + 北達科他州比尤拉 + + + 北達科他州新薩勒姆 + + + 北達科他州中心市 + + + 梅諾米尼 + + + 印第安納州溫森斯 + + + 印第安納州彼得堡 + + + 印第安納州特爾城 + + + 印第安納州諾克斯 + + + 印第安納州威納馬克 + + + 印第安納州馬倫哥 + + + 印第安納波利斯 + + + 路易維爾 + + + 印第安納州韋韋 + + + 肯塔基州蒙蒂塞洛 + + + 蒙得維的亞 + + + 聖文森特 + + + 加拉加斯 + + + 馬約特 + + + 約翰內斯堡 + + + 盧薩卡 + + + + 南非時間 + + + + + 北美中部時間 + 北美中部標準時間 + 中部夏令時間 + + + + + 北美東部時間 + 北美東部標準時間 + 北美東部夏令時間 + + + + + 北美山區時間 + 北美山區標準時間 + 北美山區夏令時間 + + + + + 北美太平洋時間 + 北美太平洋標準時間 + 北美太平洋夏令時間 + + + + + 亞塞拜疆時間 + 亞塞拜疆標準時間 + 亞塞拜疆夏令時間 + + + + + 佛得角時間 + 佛得角標準時間 + 佛得角夏令時間 + + + + + 可可斯群島時間 + + + + + 迪蒙迪維爾時間 + + + + + 厄瓜多爾時間 + + + + + 加拉帕戈群島時間 + + + + + 格魯吉亞時間 + 格魯吉亞標準時間 + 格魯吉亞夏令時間 + + + + + 波斯灣海域時間 + + + + + 圭亞那時間 + + + + + 印度時間 + + + + + 中南半島時間 + + + + + 伊爾庫茨克時間 + 伊爾庫茨克標準時間 + 伊爾庫茨克夏令時間 + + + + + 科斯雷時間 + + + + + 麥夸里群島時間 + + + + + 馬爾代夫時間 + + + + + 馬克薩斯時間 + + + + + 毛里裘斯時間 + 毛里裘斯標準時間 + 毛里裘斯夏令時間 + + + + + 瑙魯時間 + + + + + 新喀里多尼亞時間 + 新喀里多尼亞標準時間 + 新喀里多尼亞夏令時間 + + + + + 費爾南多迪諾羅尼亞時間 + 費爾南多迪諾羅尼亞標準時間 + 費爾南多迪諾羅尼亞夏令時間 + + + + + 巴布亞新畿內亞時間 + + + + + 皮特康時間 + + + + + 塞舌爾時間 + + + + + 新加坡時間 + + + + + 所羅門群島時間 + + + + + 蘇里南時間 + + + + + 湯加時間 + 湯加標準時間 + 湯加夏令時間 + + + + + 圖瓦盧時間 + + + + + 瓦努阿圖時間 + 瓦努阿圖標準時間 + 瓦努阿圖夏令時間 + + + + + 雅庫茨克時間 + 雅庫茨克標準時間 + 雅庫茨克夏令時間 + + + + + + + + + 0K + 00K + 000K + 0M + 00M + 000M + 0B + 00B + 000B + 0T + 00T + 000T + + + + + + + ¤0K + ¤00K + ¤000K + ¤0M + ¤00M + ¤000M + ¤0B + ¤00B + ¤000B + ¤0T + ¤00T + ¤000T + + + + + + 阿拉伯聯合酋長國迪爾汗 + 阿拉伯聯合酋長國迪爾汗 + + + 澳元 + 澳元 + + + 阿魯巴盾 + 阿魯巴盾 + + + 亞塞拜疆馬納特 + 亞塞拜疆馬納特 + + + 波斯尼亞-赫塞哥維納第納爾 + + + 波斯尼亞-赫塞哥維納可轉換馬克 + 波斯尼亞-赫塞哥維納可轉換馬克 + + + 巴巴多斯元 + 巴巴多斯元 + + + 布隆迪法郎 + 布隆迪法郎 + + + 博茨瓦納普拉 + 博茨瓦納普拉 + + + 伯利茲元 + 伯利茲元 + + + 加拿大元 + 加拿大元 + + + 哥斯達黎加科郎 + 哥斯達黎加科郎 + + + 佛得角埃斯庫多 + 佛得角埃斯庫多 + + + 吉布提法郎 + 吉布提法郎 + + + 丹麥克羅納 + + + 多米尼加披索 + 多米尼加披索 + + + 埃塞俄比亞比爾 + 埃塞俄比亞比爾 + + + 格魯吉亞拉里 + 格魯吉亞拉里 + + + 加納塞地 + 加納塞地 + + + 岡比亞達拉西 + 岡比亞達拉西 + + + 危地馬拉格查爾 + 危地馬拉格查爾 + + + 港元 + 港元 + + + 克羅地亞庫納 + 克羅地亞庫納 + + + 意大利里拉 + + + 肯雅先令 + 肯雅先令 + + + 柬埔寨里爾 + 柬埔寨里爾 + + + 北韓圜 + 北韓圜 + + + + + + 開曼群島美元 + + + 哈薩克坦吉 + 哈薩克坦吉 + + + 老撾基普 + 老撾基普 + + + 利比利亞元 + 利比利亞元 + + + 立陶宛里塔 + + + 摩爾多瓦列伊 + 摩爾多瓦列伊 + + + 毛里塔尼亞烏吉亞 + 毛里塔尼亞烏吉亞 + + + 毛里裘斯盧布 + 毛里裘斯盧布 + + + 馬爾代夫盧非亞 + 馬爾代夫盧非亞 + + + 莫桑比克梅蒂卡爾 + 莫桑比克梅蒂卡爾 + + + 尼日利亞奈拉 + 尼日利亞奈拉 + + + 挪威克羅納 + + + 紐西蘭元 + 紐西蘭元 + + + 阿曼里奧 + 阿曼里奧 + + + 巴布亞新幾內亞基那 + 巴布亞新幾內亞基那 + + + 卡塔爾里亞爾 + 卡塔爾里亞爾 + + + 塞爾維亞第納爾 + 塞爾維亞第納爾 + + + 盧旺達法郎 + 盧旺達法郎 + + + 沙特阿拉伯里亞爾 + 沙特阿拉伯里亞爾 + + + 所羅門群島元 + 所羅門群島元 + + + 塞舌爾盧比 + 塞舌爾盧比 + + + 瑞典克羅納 + + + 新加坡元 + 新加坡元 + + + 塞拉利昂利昂 + 塞拉利昂利昂 + + + 索馬里先令 + 索馬里先令 + + + 蘇里南元 + 蘇里南元 + + + 聖多美和普林西比多布拉 + 聖多美和普林西比多布拉 + + + 斯威士蘭里朗吉尼 + 斯威士蘭里朗吉尼 + + + 湯加潘加 + 湯加潘加 + + + 千里達和多巴哥元 + 千里達和多巴哥元 + + + NT$ + + + 坦桑尼亞先令 + 坦桑尼亞先令 + + + 瓦努阿圖瓦圖 + 瓦努阿圖瓦圖 + + + 中非法郎 + 中非法郎 + + + 東加勒比元 + 東加勒比元 + + + 多哥非洲共同體法郎 + 西非法郎 + + + 太平洋法郎 + 太平洋法郎 + + + 也門里雅 + 也門里雅 + + + 贊比亞克瓦查 + 贊比亞克瓦查 + + + + + + + {0}每{1} + + + 米/平方秒 + {0} 米/平方秒 + + + + {0} 周 + + + + + + 平方米 + {0} 平方米 + {0} 每平方米 + + + 平方厘米 + {0} 平方厘米 + {0} 每平方厘米 + + + 平方呎 + {0} 平方呎 + + + 平方吋 + {0} 平方吋 + {0} 每平方吋 + + + 公升/公里 + {0} 公升/公里 + + + 英里每加侖 + + + 位元組 + {0} 位元組 + + + 位元 + {0} 個位元 + + + {0} 世紀 + + + {0} 每年 + + + 個月 + {0} 每個月 + + + 星期 + {0} 星期 + {0} 每星期 + + + + {0} 日 + {0} 每日 + + + {0} 每小時 + + + {0} 每分鐘 + + + {0}每秒 + + + 納秒 + {0} 納秒 + + + 千卡 + {0} 千卡 + + + {0} 卡路里 + + + {0} 每公里 + + + + {0} 米 + {0} 每米 + + + 分米 + {0} 分米 + + + 厘米 + {0} 厘米 + {0} 每厘米 + + + 毫米 + {0} 毫米 + + + 納米 + {0} 納米 + + + {0} 呎 + {0} 每呎 + + + {0} 吋 + {0} 每吋 + + + {0} 每公斤 + + + {0} 每克 + + + {0} 每磅 + + + 安士 + {0} 安士 + {0} 每安士 + + + 金衡安士 + {0} 金衡安士 + + + 兆瓦 + {0} 兆瓦 + + + 千瓦 + {0} 千瓦 + + + 毫瓦 + {0} 毫瓦 + + + + {0} 匹 + + + 百帕斯卡 + {0} 百帕斯卡 + + + 磅/平方吋 + {0} 磅/平方吋 + + + 英吋汞柱 + {0} 英吋汞柱 + + + 公里每小時 + + + 米/秒 + {0} 米/秒 + + + 英里每小時 + + + 攝氏度 + + + 華氏度 + + + 開爾文 + {0} 開爾文 + + + 立方米 + {0} 立方米 + {0} 每立方米 + + + 立方厘米 + {0} 立方厘米 + {0} 每立方厘米 + + + 立方呎 + {0} 立方呎 + + + 立方吋 + {0} 立方吋 + + + {0} 每公升 + + + 厘升 + {0} 厘升 + + + {0} 公制量杯 + + + 英畝呎 + {0} 英畝呎 + + + {0} 每加侖 + + + {0} 量杯 + + + 液安士 + {0} 液安士 + + + 東經 {0} + 北緯 {0} + 南緯 {0} + 西經 {0} + + + + + {0} G + + + 米每平方秒 + {0} 米每平方秒 + + + + {0} 周 + + + + + + + {0} 分 + + + {0} 秒 + + + 平方米 + {0} 平方米 + {0} 每平方米 + + + 平方厘米 + {0} 平方厘米 + {0} 每平方厘米 + + + 平方呎 + {0} 平方呎 + + + 平方吋 + {0} 平方吋 + {0} 每平方吋 + + + {0} 升每公里 + + + {0} L/100km + + + {0} 英里每加侖 + + + {0} 每年 + + + 個月 + {0} 每月 + + + 星期 + {0} 每週 + + + + {0} 日 + {0} 每日 + + + {0} 每小時 + + + {0} 每分鐘 + + + {0}每秒 + + + 納秒 + {0} 納秒 + + + {0} 伏特 + + + 千卡 + {0} 千卡 + + + 千焦 + + + {0} 焦耳 + + + {0} 每公里 + + + + {0} 米 + {0} 每米 + + + 分米 + {0} 分米 + + + 厘米 + {0} 厘米 + {0} 每厘米 + + + 毫米 + {0} 毫米 + + + 納米 + {0} 納米 + + + + {0} 哩 + + + + {0} 每呎 + + + + {0} 每吋 + + + + {0} 浬 + + + {0} 每公斤 + + + {0} 每克 + + + {0} 每磅 + + + 安士 + {0} 安士 + {0} 每安士 + + + 金衡安士 + {0} 金衡安士 + + + 兆瓦 + {0} 兆瓦 + + + + + + 磅每平方吋 + {0} 磅每平方吋 + + + 英吋汞柱 + {0} 英吋汞柱 + + + 公里每小時 + {0} 公里每小時 + + + 米每秒 + {0} 米/秒 + + + 英里每小時 + {0} 英里每小時 + + + °C + + + °F + + + 立方米 + {0} 立方米 + {0} 每立方米 + + + 立方厘米 + {0} 立方厘米 + {0} 每立方厘米 + + + 立方呎 + {0} 立方呎 + + + 立方吋 + {0} 立方吋 + + + + {0} 每升 + + + 厘升 + {0} 厘升 + + + {0} 公制量杯 + + + 英畝呎 + {0} 英畝呎 + + + {0} 每加侖 + + + {0} 量杯 + + + 液安士 + {0} 液安士 + + + {0} 東 + {0} 北 + {0} 南 + {0} 西 + + + + + {0}mi² + + + {0}ft² + + + {0}L/100km + + + {0}個月 + + + + {0}日 + + + {0}小時 + + + + + + + {0}米 + + + 厘米 + {0}厘米 + + + 毫米 + {0}毫米 + + + {0} 安士 + + + {0}″ Hg + + + 公里每小時 + {0}kph + + + {0}m/s + + + {0}mph + + + {0}mi³ + + + + + + {0}E + {0}N + {0}S + {0}W + + + + + + {0}及{1} + {0}及{1} + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zh_Hant_MO.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zh_Hant_MO.xml similarity index 75% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zh_Hant_MO.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zh_Hant_MO.xml index 65a94b7a08f..cf03947a927 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zh_Hant_MO.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zh_Hant_MO.xml @@ -1,13 +1,12 @@ - - - + @@ -291,7 +299,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -312,13 +320,13 @@ For terms of use, see http://www.unicode.org/copyright.html - - - - + + + + - Umhlaba + umhlaba i-Africa i-North America i-South America @@ -329,7 +337,7 @@ For terms of use, see http://www.unicode.org/copyright.html i-Northern Africa i-Middle Africa i-Southern Africa - Americas + i-Americas i-Northern America i-Caribbean i-Eastern Asia @@ -356,7 +364,6 @@ For terms of use, see http://www.unicode.org/copyright.html i-Anguilla i-Albania i-Armenia - i-Netherlands Antilles i-Angola i-Antarctica i-Argentina @@ -384,7 +391,7 @@ For terms of use, see http://www.unicode.org/copyright.html i-Bahamas i-Bhutan i-Bouvet Island - i-Botswana + iBotswana i-Belarus i-Belize i-Canada @@ -438,7 +445,7 @@ For terms of use, see http://www.unicode.org/copyright.html i-U.K. i-Grenada i-Georgia - isi-French Guiana + i-French Guiana i-Guernsey i-Ghana i-Gibraltar @@ -463,7 +470,7 @@ For terms of use, see http://www.unicode.org/copyright.html i-Canary Islands i-Indonesia i-Ireland - i-Israel + kwa-Israel i-Isle of Man i-India i-British Indian Ocean Territory @@ -492,7 +499,7 @@ For terms of use, see http://www.unicode.org/copyright.html i-Liechtenstein i-Sri Lanka i-Liberia - i-Lesotho + iLesotho i-Lithuania i-Luxembourg i-Latvia @@ -506,7 +513,7 @@ For terms of use, see http://www.unicode.org/copyright.html i-Marshall Islands i-Macedonia i-Macedonia (FYROM) - i-Mali + iMali i-Myanmar (Burma) i-Mongolia i-Macau SAR China @@ -518,7 +525,7 @@ For terms of use, see http://www.unicode.org/copyright.html i-Malta i-Mauritius i-Maldives - i-Malawi + iMalawi i-Mexico i-Malaysia i-Mozambique @@ -575,7 +582,7 @@ For terms of use, see http://www.unicode.org/copyright.html i-South Sudan i-São Tomé kanye ne-Príncipe i-El Salvador - I-Sint Maarten + i-Sint Maarten i-Syria i-Swaziland i-Tristan da Cunha @@ -617,7 +624,7 @@ For terms of use, see http://www.unicode.org/copyright.html i-Mayotte i-South Africa i-Zambia - i-Zimbabwe + iZimbabwe iSifunda esingaziwa @@ -632,6 +639,9 @@ For terms of use, see http://www.unicode.org/copyright.html Ukuhlelwa Ngezinombolo Amandla Okuhlelwa Ikharensi + Umjikelezo wehora (12 vs 24 + I-Line Break Style + Isistimu yokulinganisa Izinombolo Izoni yesikhathi: Okokwehlukanisa Kwasendaweni @@ -639,95 +649,105 @@ For terms of use, see http://www.unicode.org/copyright.html i-Private-Use - i-Arabic-Indic Digits - i-Extended Arabic-Indic Digits - i-Armenian Numerals - i-Armenian Lowercase Numerals - i-Bengali Digits - Ukuhlunga kwe-Traditional Chinese - Big5 - i-Buddhist Calender - i-Chinese Calender - i-Coptic Calender - i-Dangi Calendar - i-Devanagari Digits - Ukuhlunga kwesichazimazwi - Ukuhlunga okuzenzakalelayo kwe-Unicode - i-Ethiopic Numerals - i-Ethipic Calender - i-Ethiopic Amete Alem Calender - Izinombolo Zezomnotho - i-Full Width Digits - Ukuhlunga kwe-Simplified Chinese - GB2312 - i-Georgian Numerals - i-Gregorian Calender - i-Greek Numerals - i-Greek Lowercase Numerals - i-Gujarati Digits - i-Gurmukhi Digits - i-Chinese Decimal Numerals - i-Simplified Chinese Numerals - i-Simplified Chinese Financial Numerals - i-Traditional Chinese Numerals - i-Traditional Chinese Financial Numerals - i-Hebrew Numerals - i-Hebrew Calender - Hlela konke - i-Indian National Calender - i-Islamic Calender - i-Islamic-Civil Calendar - I-ISO-8601 Khalenda - i-Japanese Calendar - i-Japanese Numerals - i-Japanese Financial Numerals - i-Khmer Digits - i-Kannada Digits - i-Lao Digits - i-Western Digits - Hlela Okwezinhlamvu Eziphansi Kuqala - i-Malayalam Digits - i-Mongolian Digits - i-Myanmar Digits - Izinkinobho Zasendaweni - Hlela Izindlela Zokuphimisela Ngokujwayelekile - Hlela Ngokwenhlamvu Ezejwayelekile - Hlela Okungancikile Ezinkinobhweni - Hlela i-Kana Eceleni - Hlela Ngaphandle Kokulinganisa - Hlela Izinhlamvu Zenombolo Ngazinye - Hlela Izimpawu - i-Oriya Digits - i-Persian Calendar - Ukuhlunga kwebhuku lefoni - Hlela Ngokwefonetiki - Ukuhlunga nge-Pinyin - Hlela Izinhlamvu Zaphansi Kuphela - Hlola Ukuphimisela/Ukuma kwezinhlamvu/Ububanzi/i-Kana - Ukuhlunga okwenziwe kabusha - i-Minguo Calender - i-Roman Numerals - i-Roman Lowercase Numerals - Usesho olujwayelekile - Sesha nge-Hangul Ongwaqa Basekuqaleni - Hlela Ukuphimisela - Hlela Ukuziba Izimpawu - I-oda yokuhlunga ejwayelekile - Ukuhlunga kwe-Stroke - i-Tamil Numerals - i-Tamil Digits - i-Telegu Digits - Hlela Ukuphimisela/Ukuma kwezinhlamvu/Ububanzi - i-Thai Digits - i-Tibetan Digits - Ukuhlunga ngokisiko - Izinombolo Ezijwayelekile - Ukuhlunga kwe-Radical-Stroke - Hlela Izinhlamvu Ezinkulu Kuqala - Izinhlazu Zezinombolo ze-Vai - Ukuhlelwa Kokuphimisela Kuhlehlisiwe - Hlela Okuncike Ekumeni Kwezinkinobho - Hlela i-Kana Ngendlela Ehlukile - Ukuhlelwa Khekhodi Enye Kulinganisiwe - Hlela Izinhlamvu Ngokwezinombolo + ikhalenda lesi-Buddhist + ikhalenda lesi-Chinese + i-Coptic Calender + ikhalenda lesi-Dangi + ikhalenda lesi-Ethiopic + i-Ethiopic Amete Alem Calender + ikhalenda lesi-Gregorian + ikhalenda lesi-Hebrew + i-Indian National Calender + ikhalenda lesi-Islamic + i-Islamic-Civil Calendar + ikhalenda le-ISO-8601 + ikhalenda lesi-Japanese + ikhalenda lesi-Persian + ikhalenda lesi-Minguo + Hlela Izimpawu + Hlela Ukuziba Izimpawu + Hlela Izindlela Zokuphimisela Ngokujwayelekile + Ukuhlelwa Kokuphimisela Kuhlehlisiwe + Hlela Okwezinhlamvu Eziphansi Kuqala + Hlela Ngokwenhlamvu Ezejwayelekile + Hlela Izinhlamvu Ezinkulu Kuqala + Hlela Okungancikile Ezinkinobhweni + Hlela Okuncike Ekumeni Kwezinkinobho + Hlela i-Kana Eceleni + Hlela i-Kana Ngendlela Ehlukile + Ukuhlunga kwe-Traditional Chinese - Big5 + Ukuhlunga kwesichazimazwi + Ukuhlunga okuzenzakalelayo kwe-Unicode + Ukuhlunga kwe-Simplified Chinese - GB2312 + Ukuhlunga kwebhuku lefoni + Hlela Ngokwefonetiki + Ukuhlunga nge-Pinyin + Ukuhlunga okwenziwe kabusha + Usesho olujwayelekile + Sesha nge-Hangul Ongwaqa Basekuqaleni + I-oda yokuhlunga ejwayelekile + Ukuhlunga kwe-Stroke + Ukuhlunga ngokisiko + Ukuhlunga kwe-Radical-Stroke + Hlela Ngaphandle Kokulinganisa + Ukuhlelwa Khekhodi Enye Kulinganisiwe + Hlela Izinhlamvu Zenombolo Ngazinye + Hlela Izinhlamvu Ngokwezinombolo + Hlela konke + Hlela Izinhlamvu Zaphansi Kuphela + Hlola Ukuphimisela/Ukuma kwezinhlamvu/Ububanzi/i-Kana + Hlela Ukuphimisela + Hlela Ukuphimisela/Ukuma kwezinhlamvu/Ububanzi + isistimu yamahora angu-12 (0-11) + isistimu yamahora angu-12 (1-12) + isistimu yamahora angu-24 (0-23) + isistimu yamahora angu-24 (1-24) + i-Line Break Style exegayo + i-Line Break Style ekahle + i-Line Break Style enomthetho oqinile + isistimu ye-Metric + isistimu yokulinganisa ebusayo + isistimu yokulinganisa yase-US + amadijithi esi-Arabic-Indic + amadijithi esi-Arabic-Indic eluliwe + izinombolo zesi-Armenian + izinombolo ezincane zesi-Armenian + izinombolo zesi-Bengali + izinombolo zesi-Devanagari + izinombolo zesi-Ethiopic + Izinombolo Zezomnotho + ububanzi obugcwele bamadijithi + izinombolo zesi-Georgian + izinombolo zesi-Greek + izinombolo ezincane zesi-Greek + amadijithi esi-Gujarati + amadijithi esi-Gurmukhi + izinombolo zezinombolo zesi-Chinese + izinombolo ezicacile zesi-Chinese + izinombolo ezicacile zezezimali zesi-Chinese + izinombolo zosiko zesi-Chinese + izinombolo zosiko zezezimali zesi-Chinese + izinombolo zesi-Hebrew + izinombolo zesi-Japanese + izinombolo zezezimali zesi-Japanese + amadijithi esi-Khmer + amadijithi esi-Kannada + amadijithi esi-Lao + amadijithi ase-Western + amadijithi esi-Malayalam + i-Mongolian Digits + amadijithi esi-Maynmar + Izinkinobho Zasendaweni + amadijithi esi-Oriya + izinombolo zesi-Roman + izinombolo zesi-Tamil + izinombolo zesi-Tamil + amadijithi esi-Tamil + amadijithi esi-Telegu + amadijithi esi-Thai + amadijithi esi-Tibetan + Izinombolo Ezijwayelekile + Izinhlazu Zezinombolo ze-Vai I-BGN @@ -818,6 +838,7 @@ For terms of use, see http://www.unicode.org/copyright.html d + ccc d E y G MMM y G @@ -835,6 +856,7 @@ For terms of use, see http://www.unicode.org/copyright.html LLL MMM d E, MMM d + MMMM d mm:ss y G yM @@ -852,6 +874,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y G MMM d, y G E, MMM d, y G + MMMM y G QQQ y G QQQQ y G @@ -959,7 +982,7 @@ For terms of use, see http://www.unicode.org/copyright.html Jan Feb Mas - Apr + Eph Mey Jun Jul @@ -973,7 +996,7 @@ For terms of use, see http://www.unicode.org/copyright.html J F M - A + E M J J @@ -987,7 +1010,7 @@ For terms of use, see http://www.unicode.org/copyright.html Januwari Februwari Mashi - Apreli + Ephreli Meyi Juni Julayi @@ -1003,7 +1026,7 @@ For terms of use, see http://www.unicode.org/copyright.html Jan Feb Mas - Apr + Eph Mey Jun Jul @@ -1031,7 +1054,7 @@ For terms of use, see http://www.unicode.org/copyright.html Januwari Februwari Mashi - Apreli + Ephreli Meyi Juni Julayi @@ -1057,7 +1080,7 @@ For terms of use, see http://www.unicode.org/copyright.html S M - T + B T S H @@ -1073,13 +1096,13 @@ For terms of use, see http://www.unicode.org/copyright.html Mgq - Sonto - Msombuluko - Lwesibili - Lwesithathu - Lwesine - Lwesihlanu - Mgqibelo + ISonto + UMsombuluko + ULwesibili + ULwesithathu + ULwesine + ULwesihlanu + UMgqibelo @@ -1102,22 +1125,22 @@ For terms of use, see http://www.unicode.org/copyright.html M - Isonto - Umsombuluko - Ulwesibili - Ulwesithathu - Ulwesine - Ulwesihlanu - Umgqibelo + Son + Mso + Bil + Tha + Sin + Hla + Mgq - Sonto - Msombuluko - Lwesibili - Lwesithathu - Lwesine - Lwesihlanu - Mgqibelo + ISonto + UMsombuluko + ULwesibili + ULwesithathu + ULwesine + ULwesihlanu + UMgqibelo @@ -1136,10 +1159,10 @@ For terms of use, see http://www.unicode.org/copyright.html 4 - ikota engu-1 - ikota engu-2 - ikota engu-3 - ikota engu-4 + ikota yesi-1 + ikota yesi-2 + ikota yesi-3 + ikota yesi-4 @@ -1156,10 +1179,10 @@ For terms of use, see http://www.unicode.org/copyright.html 4 - ikota engu-1 - ikota engu-2 - ikota engu-3 - ikota engu-4 + ikota yesi-1 + ikota yesi-2 + ikota yesi-3 + ikota yesi-4 @@ -1168,16 +1191,58 @@ For terms of use, see http://www.unicode.org/copyright.html AM PM + ekuseni + ekuseni + ntambama + ntambama + ebusuku a - n p + ekuseni + ekuseni + ntambama + ntambama + ebusuku - Ekuseni - Emini - Ntambama + AM + PM + ekuseni + ekuseni2 + ntambama + ntambama + ebusuku + + + + + AM + PM + entathakusa + ekuseni + emini + ebusuku1 + ebusuku + + + a + p + entathakusa + ekuseni + emini + ebusuku1 + ebusuku + + + AM + PM + entathakusa + ekuseni2 + emini + ebusuku1 + ebusuku @@ -1268,22 +1333,27 @@ For terms of use, see http://www.unicode.org/copyright.html E HH:mm E h:mm:ss a E HH:mm:ss - y G - MMM y G - MMM d, y G - E, MMM d, y G + G y + G y MMM + G y MMM d + G y MMM d, E h a HH h:mm a HH:mm h:mm:ss a HH:mm:ss + h:mm:ss a v + HH:mm:ss v + h:mm a v + HH:mm v L M/d E, M/d LLL MMM d E, MMM d + MMMM d mm:ss y M/y @@ -1292,6 +1362,7 @@ For terms of use, see http://www.unicode.org/copyright.html MMM y MMM d, y E, MMM d, y + MMMM y QQQ y QQQQ y @@ -1406,8 +1477,8 @@ For terms of use, see http://www.unicode.org/copyright.html kulo nyaka unyaka ozayo - onyakeni ongu-{0} - Eminyakeni engu-{0} + onyakeni ongu-{0} ozayo + eminyakeni engu-{0} ezayo {0} unyaka odlule @@ -1416,6 +1487,10 @@ For terms of use, see http://www.unicode.org/copyright.html Unyaka + + onyakeni ongu-{0} ozayo + eminyakeni engu-{0} ezayo + {0} unyaka odlule {0} unyaka odlule @@ -1423,12 +1498,20 @@ For terms of use, see http://www.unicode.org/copyright.html Unyaka + + onyakeni ongu-{0} ozayo + eminyakeni engu-{0} ezayo + + + {0} unyaka odlule + {0} unyaka odlule + Ikota - kwikota engu-{0} - kumakota angu-{0} + kwikota engu-{0} ezayo + kumakota angu-{0} ezayo {0} ikota edlule @@ -1436,25 +1519,25 @@ For terms of use, see http://www.unicode.org/copyright.html - ikota + Ikota - kumakota angu-{0} - kumakota angu-{0} + kwikota engu-{0} ezayo + kumakota angu-{0} ezayo {0} amakota adlule - {0} amakota adlule + {0} amakota edlule - ikota + Ikota kumakota angu-{0} kumakota angu-{0} {0} amakota adlule - {0} amakota adlule + {0} amakota edlule @@ -1463,8 +1546,8 @@ For terms of use, see http://www.unicode.org/copyright.html le nyanga inyanga ezayo - Enyangeni engu-{0} - Ezinyangeni ezingu-{0} + enyangeni engu-{0} + ezinyangeni ezingu-{0} ezizayo {0} inyanga edlule @@ -1472,10 +1555,26 @@ For terms of use, see http://www.unicode.org/copyright.html - inyanga + Inyanga + + ezinyangeni ezingu-{0} ezizayo + ezinyangeni ezingu-{0} ezizayo + + + {0} izinyanga ezedlule + {0} izinyanga ezedlule + - inyanga + Inyanga + + enyangeni engu-{0} ezayo + enyangeni engu-{0} ezayo + + + {0} izinyanga ezedlule + {0} izinyanga ezedlule + Iviki @@ -1483,30 +1582,46 @@ For terms of use, see http://www.unicode.org/copyright.html leli viki iviki elizayo - Evikini elingu-{0} - Emavikini angu-{0} + evikini elingu-{0} + emavikini angu-{0} evikini elingu-{0} eledlule - amaviki angu-{0} adlule + amaviki angu-{0} edlule Iviki + + evikini elingu-{0} elizayo + emavikini angu-{0} ezayo + + + amaviki angu-{0} edlule + amaviki angu-{0} edlule + Iviki + + emavikini angu-{0} ezayo + emavikini angu-{0} ezayo + + + amaviki angu-{0} edlule + amaviki angu-{0} edlule + - usuku - Usuku olwandulela olwayizolo + Usuku + usuku olwandulela olwayizolo izolo namhlanje kusasa - Usuku olulandela olakusasa + usuku olulandela olwakusasa - Osukwini olungu-{0} - Ezinsukwini ezingu-{0} + osukwini olungu-{0} oluzayo + ezinsukwini ezingu-{0} ezizayo osukwini olungu-{0} olwedlule @@ -1514,10 +1629,10 @@ For terms of use, see http://www.unicode.org/copyright.html - usuku + Usuku - osukwini olungu{0} - ezinsukwini ezingu{0} + osukwini olungu-{0} oluzayo + ezinsukwini ezingu-{0} ezizayo {0} usuku olwedlule @@ -1525,10 +1640,10 @@ For terms of use, see http://www.unicode.org/copyright.html - usuku + Usuku - osukwini olungu{0} - ezinsukwini ezingu{0} + osukwini olungu-{0} oluzayo + ezinsukwini ezingu-{0} ezizayo {0} usuku olwedlule @@ -1540,38 +1655,108 @@ For terms of use, see http://www.unicode.org/copyright.html iSonto eledlule - leli Sonto + kuleli Sonto + iSonto elizayo + + + iSonto eledlule + kuleli Sonto + iSonto elizayo + + + iSonto eledlule + kuleli Sonto iSonto elizayo - ngoMsombuluko odlule + uMsombuluko odlule kulo Msombuluko - uMsombuluko olandelayo + uMsombuluko ozayo + + + uMsombuluko odlule + kulo Msombuluko + uMsombuluko ozayo + + + uMsombuluko odlule + kulo Msombuluko + uMsombuluko ozayo - uLwesibili odlule + uLwesibili oludlule kulo Lwesibili - uLwesibili olandelayo + uLwesibili oluzayo + + + uLwesibili oludlule + kulo Lwesibili + uLwesibili oluzayo + + + uLwesibili oludlule + kulo Lwesibili + uLwesibili oluzayo - uLwesithathu odlule - lo Lwesithathu - lo Lwesithathu + uLwesithathu oludlule + kulo Lwesithathu + uLwesithathu oluzayo + + + uLwesithathu oludlule + kulo Lwesithathu + uLwesithathu oluzayo + + + uLwesithathu oludlule + kulo Lwesithathu + uLwesithathu oluzayo - uLwesine odlule - lo Lwesine - uLwesine olandelayo + uLwesine oludlule + kulo Lwesine + uLwesine oluzayo + + + uLwesine oludlule + kulo Lwesine + uLwesine oluzayo + + + uLwesine oludlule + kulo Lwesine + uLwesine oluzayo - uLwesihlanu odlule - lo Lwesihlanu - uLwesihlanu olandelayo + uLwesihlanu oludlule + kulo Lwesihlanu + uLwesihlanu oluzayo + + + uLwesihlanu oludlule + kulo Lwesihlanu + uLwesihlanu oluzayo + + + uLwesihlanu oludlule + kulo Lwesihlanu + uLwesihlanu oluzayo uMgqibelo odlule - lo Mgqibelo - Next Saturday + kulo Mgqibelo + uMgqibelo ozayo + + + uMgqibelo odlule + kulo Mgqibelo + uMgqibelo ozayo + + + uMgqibelo odlule + kulo Mgqibelo + uMgqibelo ozayo AM/PM @@ -1579,101 +1764,101 @@ For terms of use, see http://www.unicode.org/copyright.html Ihora - Ehoreni elingu-{0} - Emahoreni angu-{0} + ehoreni elingu-{0} elizayo + emahoreni angu-{0} ezayo - ehoreni eligu-{0} eledluli + {0} ihora eledlule emahoreni angu-{0} edlule Ihora - ehoreni elingu{0} - emahoreni angu{0} + ehoreni elingu-{0} elizayo + emahoreni angu-{0} ezayo {0} ihora eledlule - {0} amahora adlule + {0} amahora edlule Ihora - ehoreni elingu{0} - emahoreni angu{0} + ehoreni elingu-{0} elizayo + emahoreni angu-{0} ezayo {0} ihora eledlule - {0} amahora adlule + {0} amahora edlule Iminithi - Kumunithi engu-{0} - Emaminithini angu-{0} + kuminithi elingu-{0} elizayo + kumaminithi angu-{0} ezayo - eminithini elingu-{0} eledlule - amaminithi angu-{0} adlule + {0} iminithi eledlule + {0} amaminithi edlule Iminithi - eminithini engu{0} - emaminithini angu{0} + kuminithi elingu-{0} elizayo + kumaminithi angu-{0} ezayo {0} iminithi eledlule - {0} amaminithi adlule + {0} amaminithi edlule Iminithi - eminithini engu{0} - emaminithini angu{0} + kuminithi elingu-{0} elizayo + kumaminithi angu-{0} ezayo {0} iminithi eledlule - {0} amaminithi adlule + {0} amaminithi edlule Isekhondi manje - Kusekhondi elingu-{0} - Kumasekhondi angu-{0} + kusekhondi elingu-{0} elizayo + kumasekhondi angu-{0} ezayo - isekhondi elingu-{0} eledlule - amasekhondi angu-{0} adlule + {0} isekhondi eledlule + {0} amasekhondi edlule Isekhondi - esekhondini elingu{0} - emasekhondini angu{0} + kusekhondi elingu-{0} elizayo + kumasekhondi angu-{0} ezayo {0} isekhondi eledlule - {0} amasekhondi adlule + {0} amasekhondi edlule Isekhondi - esekhondini elingu{0} - emasekhondini angu{0} + kusekhondi elingu-{0} elizayo + kumasekhondi angu-{0} ezayo {0} isekhondi eledlule - {0} amasekhondi adlule + {0} amasekhondi edlule @@ -1686,158 +1871,1264 @@ For terms of use, see http://www.unicode.org/copyright.html GMT Isikhathi sase-{0} {0} Isikhathi sasemini - {0} Isikhathi esijwayelekile + {0} isikhathi esivamile {1} ({0}) - esase-Uknown City + idolobha elingaziwa + + + i-Andorra + + + i-Dubai - esase-Kabul + i-Kabul + + + i-Antigua + + + i-Anguilla + + + i-Tirane + + + i-Yerevan + + + i-Luanda + + + i-Rothera + + + i-Palmer + + + i-Troll + + + i-Syowa + + + i-Mawson + + + i-Davis + + + i-Vostok + + + i-Casey + + + i-Dumont d’Urville + + + i-McMurdo + + + i-Rio Gallegos + + + i-Mendoza + + + i-San Juan + + + i-Ushuaia + + + i-La Rioja + + + i-San Luis + + + i-Catamarca + + + i-Salta + + + i-Jujuy + + + i-Tucuman + + + i-Cordoba + + + i-Buenos Aires + + + i-Pago Pago + + + i-Vienna + + + i-Perth + + + i-Eucla + + + i-Darwin + + + i-Adelaide + + + i-Broken Hill + + + i-Currie + + + i-Melbourne + + + i-Hobart + + + i-Lindeman + + + i-Sydney + + + i-Brisbane + + + i-Macquarie + + + i-Lord Howe + + + i-Aruba + + + i-Mariehamn + + + i-Baku + + + i-Sarajevo + + + i-Barbados - esase-Dhaka + i-Dhaka + + + i-Brussels + + + i-Ouagadougou + + + i-Sofia + + + i-Bahrain + + + i-Bujumbura + + + i-Porto-Novo - esase-Saint Barthélemy + i-St. Barthélemy + + + i-Bermuda + + + i-Brunei + + + i-La Paz + + + i-Kralendijk + + + i-Eirunepe + + + i-Rio Branco + + + i-Porto Velho + + + i-Boa Vista + + + i-Manaus + + + i-Cuiaba + + + i-Santarem + + + i-Campo Grande + + + i-Belem + + + i-Araguaina + + + i-Sao Paulo + + + i-Bahia + + + i-Fortaleza + + + i-Maceio + + + i-Recife + + + i-Noronha + + + i-Nassau - esase-Thimphu + i-Thimphu + + + i-Gaborone + + + i-Minsk + + + i-Belize + + + i-Dawson - esase-Whitehorse + i-Whitehorse + + + i-Inuvik - esase-Vancouver + i-Vancouver + + + i-Dawson Creek + + + i-Creston - esase-Yellowknife + i-Yellowknife + + + i-Edmonton - esase-Swift Current + i-Swift Current + + + i-Cambridge Bay - esase-Regina + i-Regina - esase-Winnipeg + i-Winnipeg - esase-Resolute + i-Resolute - esase-Rainy River + i-Rainy River - esase-Rankin Inlet + i-Rankin Inlet + + + i-Atikokan - esase-Thunder Bay + i-Thunder Bay + + + i-Nipigon - esase-Toronto + i-Toronto + + + i-Iqaluit + + + i-Pangnirtung + + + i-Moncton + + + i-Halifax + + + i-Goose Bay + + + i-Glace Bay + + + i-Blanc-Sablon - esase-St. John’s + i-St. John’s + + + i-Cocos + + + i-Kinshasa + + + i-Lubumbashi + + + i-Bangui + + + i-Brazzaville + + + i-Zurich + + + i-Abidjan + + + i-Rarotonga + + + i-Easter + + + i-Santiago + + + i-Douala + + + i-Urumqi + + + i-Shanghai + + + i-Bogota + + + i-Costa Rica + + + i-Havana + + + i-Cape Verde - I-Curaçao + i-Curaçao + + + i-Christmas + + + i-Nicosia + + + i-Prague + + + i-Busingen + + + i-Berlin + + + i-Djibouti + + + i-Copenhagen + + + i-Dominica - esase-Santo Domingo + i-Santo Domingo + + + i-Algiers + + + i-Galapagos + + + i-Guayaquil + + + i-Tallinn + + + i-Cairo + + + i-El Aaiun + + + i-Asmara + + + i-Canary + + + i-Ceuta + + + i-Madrid + + + i-Addis Ababa + + + i-Helsinki + + + i-Fiji + + + i-Stanley + + + i-Chuuk + + + i-Pohnpei + + + i-Kosrae + + + i-Faroe + + + i-Paris + + + i-Libreville - esase-British Summer Time + isikhathi sase-British sasehlobo + i-London + + + i-Grenada + + + i-Tbilisi + + + i-Cayenne + + + i-Guernsey + + + i-Accra + + + i-Gibraltar - esase-Thule + i-Thule + + + i-Nuuk - esase-Ittoqqortoormiit + i-Ittoqqortoormiit + + + i-Danmarkshavn + + + i-Banjul + + + i-Conakry + + + i-Guadeloupe + + + iMalabo + + + i-Athens + + + i-South Georgia + + + i-Guatemala + + + i-Guam + + + i-Bissau + + + i-Guyana + + + i-Hong Kong - esase-Tegucigalpa + i-Tegucigalpa + + + i-Zagreb - esase-Port-au-Prince + i-Port-au-Prince + + + i-Budapest + + + i-Jakarta + + + i-Pontianak + + + i-Makassar + + + i-Jayapura - esase-Irish Standard Time + isikhathi sase-Irish esivamile + i-Dublin + + + i-Jerusalem + + + i-Isle of Man - esase-Kolkata + i-Kolkata + + + i-Chagos + + + i-Baghdad - esase-Tehran + i-Tehran + + + i-Reykjavik + + + i-Rome + + + i-Jersey + + + i-Jamaica + + + i-Amman + + + i-Tokyo + + + i-Nairobi + + + i-Bishkek + + + i-Phnom Penh + + + i-Enderbury + + + i-Kiritimati + + + i-Tarawa + + + i-Comoro - esase-St. Kitts + i-St. Kitts + + + i-Pyongyang + + + i-Seoul + + + i-Kuwait + + + i-Cayman + + + i-Aqtau + + + i-Oral + + + i-Aqtobe + + + i-Qyzylorda + + + i-Almaty + + + i-Vientiane + + + i-Beirut - esase-St. Lucia + i- + + + i-Vaduz - esase-Colombo + i-Colombo + + + i-Monrovia + + + iMaseru + + + i-Vilnius + + + i-Luxembourg + + + i-Riga + + + i-Tripoli + + + i-Casablanca + + + i-Monaco + + + i-Chisinau + + + i-Podgorica + + + i-Marigot + + + i-Antananarivo + + + i-Kwajalein + + + i-Majuro + + + i-Skopje + + + i-Bamako + + + i-Rangoon + + + i-Hovd + + + i-Ulaanbaatar + + + i-Choibalsan + + + i-Macau + + + i-Saipan + + + i-Martinique + + + i-Nouakchott + + + i-Montserrat + + + i-Malta + + + i-Mauritius - esase-Maldives + i-Maldives + + + i-Blantyre - esase-Tijuana + i-Tijuana - esase-Santa Isabel + i-Santa Isabel + + + i-Hermosillo + + + i-Mazatlan + + + i-Chihuahua + + + i-Bahia Banderas + + + i-Ojinaga + + + i-Monterrey + + + i-Mexico City + + + i-Matamoros + + + i-Merida + + + i-Cancun + + + i-Kuala Lumpur + + + i-Kuching + + + iMaputo + + + i-Windhoek + + + i-Noumea + + + i-Niamey + + + i-Norfolk + + + i-Lagos + + + i-Managua + + + i-Amsterdam + + + i-Oslo - esase-Kathmandu + i-Kathmandu + + + i-Nauru + + + i-Niue + + + i-Chatham + + + i-Auckland + + + i-Muscat + + + i-Panama + + + i-Lima + + + i-Tahiti + + + i-Marquesas + + + i-Gambier + + + i-Port Moresby + + + i-Bougainville + + + i-Manila - esase-Karachi + i-Karachi + + + i-Warsaw + + + i-Miquelon + + + i-Pitcairn - esase-Puerto Rico + i-Puerto Rico + + + iGaza + + + i-Hebron + + + i-Azores + + + i-Madeira + + + i-Lisbon + + + i-Palau - I-Asunción + i-Asunción + + + i-Qatar - I-Réunion + i-Réunion + + + i-Bucharest + + + i-Belgrade + + + i-Kaliningrad + + + i-Simferopol + + + i-Moscow + + + i-Volgograd + + + i-Samara + + + i-Yekaterinburg + + + i-Omsk + + + i-Novosibirsk + + + i-Novokuznetsk + + + i-Krasnoyarsk + + + i-Irkutsk + + + i-Chita + + + i-Yakutsk + + + i-Vladivostok + + + i-Khandyga + + + i-Sakhalin + + + i-Ust-Nera + + + i-Magadan + + + i-Srednekolymsk + + + i-Kamchatka + + + i-Anadyr + + + i-Kigali + + + i-Riyadh + + + i-Guadalcanal + + + iMahe + + + i-Khartoum + + + i-Stockholm + + + i-Singapore + + + i-St. Helena + + + i-Ljubljana + + + i-Longyearbyen + + + i-Bratislava + + + i-Freetown + + + i-San Marino + + + i-Dakar + + + i-Mogadishu + + + i-Paramaribo + + + iJuba - I-São Tomé + i-São Tomé + + + i-El Salvador - I-Lower Prince’s Quarter + i-Lower Prince’s Quarter + + + i-Damascus + + + iMbabane + + + i-Grand Turk + + + i-Ndjamena + + + i-Kerguelen + + + i-Lome + + + i-Bangkok + + + i-Dushanbe + + + i-Fakaofo + + + i-Dili + + + i-Ashgabat + + + i-Tunis + + + i-Tongatapu + + + i-Istanbul - esase-Port of Spain + i-Port of Spain + + + i-Funafuti + + + i-Taipei + + + i-Dar es Salaam + + + i-Uzhhorod + + + i-Kiev + + + i-Zaporozhye + + + i-Kampala + + + i-Midway + + + i-Johnston + + + i-Wake - esase-Adak + i-Adak + + + i-Nome + + + i-Honolulu + + + i-Anchorage - esase-Yakutat + i-Yakutat - esase-Sitka + i-Sitka + + + i-Juneau + + + i-Metlakatla + + + i-Los Angeles + + + i-Boise - esase-Phoenix + i-Phoenix + + + i-Denver + + + i-Beulah, North Dakota + + + i-New Salem, North Dakota + + + i-Center, North Dakota + + + i-Chicago + + + i-Menominee + + + i-Vincennes, Indiana + + + i-Petersburg, Indiana + + + i-Tell City, Indiana + + + i-Knox, Indiana + + + i-Winamac, Indiana + + + i-Marengo, Indiana + + + i-Indianapolis + + + i-Louisville + + + i-Vevay, Indiana + + + i-Monticello, Kentucky + + + i-Detroit + + + i-New York + + + i-Montevideo + + + i-Samarkand + + + i-Tashkent + + + i-Vatican - esase-St. Vincent + i-St. Vincent + + + i-Caracas - esase-Tortola + i-Tortola - esase-St. Thomas + i-St. Thomas + + + i-Ho Chi Minh City + + + i-Efate + + + i-Wallis + + + i-Apia + + + i-Aden + + + i-Mayotte - Johannesburg + i-Johannesburg + + + iLusaka + + + i-Harare @@ -1856,56 +3147,56 @@ For terms of use, see http://www.unicode.org/copyright.html - Isikhathi esivamile saseNingizimu Afrika + Isikhathi esijwayelekile saseNingizimu Afrika Isikhathi saseNtshonalanga Afrika - Isikhathi esivamile saseNtshonalanga Afrika - Isikhathi sehlobo saseNtshonalanga Afrika + Isikhathi esijwayelekile saseNtshonalanga Afrika + Isikhathi sasehlobo saseNtshonalanga Afrika - esase-Alaska Time - esase-Alaska Standard Time - esase-Alaska Daylight Time + isikhathi sase-Alaska + isikhathi sase-Alaska esijwayelekile + Isikhathi sase-Alaska sasemini - esase-Amazon Time - Isikhathi esivamile sase-Amazon - Isikhathi sehlobo sase-Amazon + Isikhathi sase-Amazon + Isikhathi sase-Amazon esijwayelekile + Isikhathi sase-Amazon sasehlobo - esase-Central Time - esase-Central Standard Time - esase-Central Daylight Time + isikhathi sase-North American Central + isikhathi sase-North American Central esijwayelekile + isikhathi sase-North American Central sasemini - esase-Eastern Time - esase-Eastern Standard Time - esase-Eastern Daylight Time + isikhathi sase-North American East + isikhathi sase-North American East esijwayelekile + isikhathi sase-North American East sasemini - esase-Mountain Time - esase-Mountain Standard Time - esase-Mountain Daylight Time + isikhathi sase-North American Mountain + isikhathi sase-North American Mountain esijwayelekile + isikhathi sase-North American Mountain sasemini - esase-Pacific Time - esase-Pacific Standard Time - esase-Pacific Daylight Time + isikhathi sase-North American Pacific + isikhathi sase-North American Pacific esijwayelekile + isikhathi sase-North American Pacific sasemini @@ -1931,16 +3222,16 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Argentina Time - Isikhathi esimisiwe sase-Argentina - esase-Argentina Summer Time + Isikhathi sase-Argentina + Isikhathi sase-Argentina esijwayelekile + Isikhathi sase-Argentina sasehlobo Isikhathi saseNyakatho ne-Argentina - Isikhathi esimisiwe sase-Ntshonalanga ne-Argentina - Isikhathi sasehlobo sase-Ntshonalanga ne-Argentina + Isikhathi saseNyakatho ne-Argentina esijwayelekile + Isikhathi saseNyakatho ne-Argentina sasehlobo @@ -1952,9 +3243,9 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Atlantic Time - esase-Atlantic Standard Time - esase-Atlantic Daylight Time + isikhathi sase-Atlantic + isikhathi sase-Atlantic esijwayelekile + isikhathi sase-Atlantic sasemini @@ -1966,23 +3257,23 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Austrilian Central Western Time - esase-Austrilian Central Western Standard Time - esase-Austrilian Central Western Daylight Time + Isikhathi sase-Australian Central West + Isikhathi sase-Australian Central West esivamile + Isikhathi sasemini sase-Australian Central West - esase-Austrilian Eastern Time - esase-Australian Eastern Standard Time - esase-Australian Eastern Daylight Time + Isikhathi sase-Eastern Australia + Isikhathi esivamile sase-Australian East + Isikhathi sasemini sase-Australian East - esase-Western Australia Time - esase-Austrilian Western Standard Time - esase-Austrilian Western Daylight Time + Isikhathi sase-Western Australia + I-Australian Western Standard Time + I-Australian Western Daylight Time @@ -1995,8 +3286,8 @@ For terms of use, see http://www.unicode.org/copyright.html Isikhathi sase-Azores - Isikhathi esivamile sase-Azores - Isikhathi sehlobo sase-Azores + Isikhathi esijwayelekile sase-Azores + Isikhathi sasehlobo sase-Azores @@ -2018,9 +3309,9 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Brasilia Time - Isikhathi esimisiwe sase-Brasilia - esase-Brasilia Summer Time + Isikhathi sase-Brasilia + Isikhathi sase-Brasilia esijwayelekile + Isikhathi sase-Brasilia sasehlobo @@ -2037,7 +3328,7 @@ For terms of use, see http://www.unicode.org/copyright.html - Isikhathi esezingeni sase-Chamorro + Isikhathi esijwayelekile sase-Chamorro @@ -2050,8 +3341,8 @@ For terms of use, see http://www.unicode.org/copyright.html Isikhathi sase-Chile - Isikhathi esivamile sase-Chile - Isikhathi sehlobo sase-Chile + Isikhathi sase-Chile esijwayelekile + Isikhathi sase-Chile sasehlobo @@ -2063,7 +3354,7 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Choibalsan Time + Isikhathi sase-Choibalsan Isikhathi Esimisiwe sase-Choibalsan esase-Choibalsan Summer Time @@ -2081,8 +3372,8 @@ For terms of use, see http://www.unicode.org/copyright.html Isikhathi sase-Colombia - Isikhathi esivamile sase-Colombia - Isikhathi sehlobo sase-Colombia + Isikhathi sase-Colombia esijwayelekile + Isikhathi sase-Colombia sasehlobo @@ -2094,9 +3385,9 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Cuba Time - esase-Cuba Standard Time - esase-Cuba Daylight Time + isikhathi sase-Cuba + isikhathi sase-Cuba esijwayelekile + isikhathi sase-Cuba sasemini @@ -2117,8 +3408,8 @@ For terms of use, see http://www.unicode.org/copyright.html Isikhathi sase-Easter Island - Isikhathi esivamile sase-Easter Island - Isikhathi sehlobo sase-Easter Island + Isikhathi sase-Easter Island esijwayelekile + Isikhathi sase-Easter Island sasehlobo @@ -2129,34 +3420,34 @@ For terms of use, see http://www.unicode.org/copyright.html Isikhathi sase-Central Europe - Isikhathi esivamile sase-Central Europe - Isikhathi sehlobo sase-Central Europe + Isikhathi esijwayelekile sase-Central Europe + Isikhathi sasehlobo sase-Central Europe Isikhathi sase-Eastern Europe - Isikhathi esivamile sase-Eastern Europe - Isikhathi sehlobo sase-Eastern Europe + Isikhathi esijwayelekile sase-Eastern Europe + Isikhathi sasehlobo sase-Eastern Europe - esase-Further-eastern European Time + Isikhathi sase-Further-eastern Europe Isikhathi sase-Western Europe - Isikhathi esivamile sase-Western Europe - Isikhathi sehlobo sase-Western Europe + Isikhathi esijwayelekile sase-Western Europe + Isikhathi sasehlobo sase-Western Europe Isikhathi sase-Falkland Islands - Isikhathi esivamile sase-Falkland Islands - Isikhathi sehlobo sase-Falkland Islands + Isikhathi sase-Falkland Islands esijwayelekile + Isikhathi sase-Falkland Islands sasehlobo @@ -2205,16 +3496,16 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-East Greenland Time - esase-East Greenland Standard Time - esase-East Greenland Summer Time + isikhathi sase-East Greenland + isikhathi sase-East Greenland esijwayelekile + isikhathi sase-East Greenland sasemini - esase-West Greenland Time - esase-West Greenland Standard Time - esase-West Greenland Summer Time + isikhathi sase-West Greenland + isikhathi sase-West Greenland esijwayelekile + isikhathi sase-West Greenland sasemini @@ -2229,9 +3520,9 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Hawaii-Aleutian Time - esase-Hawaii-Aleutian Standard Time - esase-Hawaii-Aleutian Daylight Time + isikhathi sase-Hawaii-Aleutia + isikhathi sase-Hawaii-Aleutia esijwayelekile + isikhathi sase-Hawaii-Aleutia sasemini @@ -2243,7 +3534,7 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Hovd Time + Isikhathi sase-Hovd Isikhathi Esimisiwe sase-Hovd esase-Hovd Summer Time @@ -2287,7 +3578,7 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Irkutsk Time + Isikhathi sase-Irkutsk Isikhathi Esimisiwe sase-Irkutsk esase-Irkutsk Summer Time @@ -2337,9 +3628,9 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Krasnoyarsk Time + Isikhathi sase-Krasnoyarsk Isikhathi Esimisiwe sase-Krasnoyarsk - esase-Krasnoyarsk Summer Time + Isikhathi sase-Krasnoyarsk sasehlobo @@ -2354,9 +3645,9 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Lord Howe Time - esase-Lord Howe Standard Time - esase-Lord Howe Daylight Time + Isikhathi sase-Lord Howe + Isikhathi sase-Lord Howe esivamile + Isikhathi sase-Lord Howe sasemini @@ -2366,7 +3657,7 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Magadan Time + Isikhathi sase-Magadan Isikhathi Esimisiwe sase-Magadan esase-Magadan Summer Time @@ -2405,16 +3696,16 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Northwest Mexico Time - esase-Northwest Mexico Standard Time - esase-Northwest Mexico Daylight Time + isikhathi sase-Northwest Mexico + isikhathi sase-Northwest Mexico esijwayelekile + isikhathi sase-Northwest Mexico sasemini - esase-Mexican Pacific Time - esase-Mexican Pacific Standard Time - esase-Mexican Pacific Daylight Time + isikhathi sase-Mexican Pacific + isikhathi sase-Mexican Pacific esijwayelekile + isikhathi sase-Mexican Pacific sasemini @@ -2449,8 +3740,8 @@ For terms of use, see http://www.unicode.org/copyright.html Isikhathi sase-New Caledonia - Isikhathi esivamile sase-New Caledonia - Isikhathi sehlobo sase-New Caledonia + Isikhathi sase-New Caledonia esijwayelekile + Isikhathi sase-New Caledonia sasehlobo @@ -2462,9 +3753,9 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Newfoundland Time - esase-Newfoundland Standard Time - esase-Newfoundland Daylight Time + isikhathi sase-Newfoundland + isikhathi sase-Newfoundland esijwayelekile + isikhathi sase-Newfoundland sasemini @@ -2480,20 +3771,20 @@ For terms of use, see http://www.unicode.org/copyright.html Isikhathi sase-Fernando de Noronha - Isikhathi esimisiwe sase-Fernando de Noronha - esase-Fernando de Noronha Summer Time + Isikhathi sase-Fernando de Noronha esijwayelekile + Isikhathi sase-Fernando de Noronha sasehlobo - esase-Novosibirsk Time + Isikhathi sase-Novosibirsk Isikhathi Esimisiwe sase-Novosibirsk esase-Novosibirsk Summer Time - esase-Omsk Time + Isikhathi sase-Omsk Isikhathi Esimisiwe sase-Omsk esase-Omsk Summer Time @@ -2518,15 +3809,15 @@ For terms of use, see http://www.unicode.org/copyright.html Isikhathi sase-Paraguay - Isikhathi esivamile sase-Paraguay - Isikhathi sehlobo sase-Paraguay + Isikhathi sase-Paraguay esijwayelekile + Isikhathi sase-Paraguay sasehlobo Isikhathi sase-Peru - Isikhathi esivamile sase-Peru - Isikhathi sehlobo sase-Peru + Isikhathi sase-Peru esijwayelekile + Isikhathi sase-Peru sasehlobo @@ -2543,9 +3834,9 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Saint Pierre and Miquelon Time - esase-Saint Pierre and Miquelon Standard Time - esase-Saint Pierre and Miquelon Daylight Time + isikhathi sase-Saint Pierre nase-Miquelon + isikhathi sase-Saint Pierre nase-Miquelon esijwayelekile + isikhathi sase-Saint Pierre nase-Miquelon sasemini @@ -2570,7 +3861,7 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Sakhalin Time + Isikhathi sase-Sakhalin Isikhathi Esimisiwe sase-Sakhalin esase-Sakhalin Summer Time @@ -2585,8 +3876,8 @@ For terms of use, see http://www.unicode.org/copyright.html Isikhathi sase-Samoa - Isikhathi esivamile sase-Samoa - Isikhathi sehlobo sase-Samoa + Isikhathi sase-Samoa esijwayelekile + Isikhathi sase-Samoa sasemini @@ -2644,8 +3935,8 @@ For terms of use, see http://www.unicode.org/copyright.html Isikhathi sase-Tonga - Isikhathi esivamile sase-Tonga - Isikhathi sehlobo sase-Tonga + Isikhathi sase-Tonga esijwayelekile + Isikhathi sase-Tonga sasehlobo @@ -2668,8 +3959,8 @@ For terms of use, see http://www.unicode.org/copyright.html Isikhathi sase-Uruguay - Isikhathi esivamile sase-Uruguay - Isikhathi sehlobo sase-Uruguay + Isikhathi sase-Uruguay esijwayelekile + Isikhathi sase-Uruguay sasehlobo @@ -2682,8 +3973,8 @@ For terms of use, see http://www.unicode.org/copyright.html Isikhathi sase-Vanuatu - Isikhathi esivamile sase-Vanuatu - Isikhathi sehlobo sase-Vanuatu + Isikhathi sase-Vanuatu esijwayelekile + Isikhathi sase-Vanuatu sasehlobo @@ -2693,14 +3984,14 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Vladivostok Time + Isikhathi sase-Vladivostok Isikhathi Esimisiwe sase-Vladivostok esase-Vladivostok Summer Time - esase-Volgograd Time + Isikhathi sase-Volgograd Isikhathi Esimisiwe sase-Volgograd esase-Volgograd Summer Time @@ -2722,14 +4013,14 @@ For terms of use, see http://www.unicode.org/copyright.html - esase-Yakutsk Time + Isikhathi sase-Yakutsk Isikhathi Esimisiwe sase-Yakutsk esase-Yakutsk Summer Time - esase-Yekaterinburg Time + Isikhathi sase-Yekaterinburg Isikhathi Esimisiwe sase-Yekaterinburg esase-Yekaterinburg Summer Time @@ -2753,7 +4044,7 @@ For terms of use, see http://www.unicode.org/copyright.html × - I-NaN + NaN : @@ -2842,21 +4133,61 @@ For terms of use, see http://www.unicode.org/copyright.html ¤#,##0.00;(¤#,##0.00) + + + ¤0K + ¤0K + ¤00K + ¤00K + ¤000K + ¤000K + ¤0M + ¤ 0M + ¤00M + ¤ 00M + ¤000M + ¤000M + ¤0B + ¤0B + ¤00B + ¤00B + ¤000B + ¤000B + ¤0T + ¤0T + ¤00T + ¤00T + ¤000T + ¤000T + + {0} {1} {0} {1} i-Dirham yase-United Arab Emirates + i-Dirham yase-United Arab Emirates + i-Dirham yase-United Arab Emirates + AED i-Afghan Afghani + i-Afghan Afghani + i-Afghan Afghani + AFN i-Albanian Lek + i-Albanian Lek + i-Albanian Lek + ALL i-Armenian Dram + i-Armenian Dram + i-Armenian Dram + AMD i-Netherlands Antillean Guilder @@ -2866,9 +4197,17 @@ For terms of use, see http://www.unicode.org/copyright.html i-Angolan Kwanza + i-Angolan Kwanza + i-Angolan Kwanza + AOA + Kz i-Argentina Peso + i-Argentina Peso + i-Argentina Peso + ARS + $ i-Austrilian Dollar @@ -2885,9 +4224,16 @@ For terms of use, see http://www.unicode.org/copyright.html i-Azerbaijani Manat + i-Azerbaijani Manat + i-Azerbaijani Manat + AZN i-Bosnia-Herzegovina Convertible Mark + i-Bosnia-Herzegovina Convertible Mark + i-Bosnia-Herzegovina Convertible Mark + BAM + KM i-Barbadian Dollar @@ -2898,15 +4244,28 @@ For terms of use, see http://www.unicode.org/copyright.html i-Bangladeshi Taka + i-Bangladeshi Taka + i-Bangladeshi Taka + BDT + i-Bulgarian Lev + i-Bulgarian Lev + i-Bulgarian Lev + BGN i-Bahraini Dinar + i-Bahraini Dinar + i-Bahraini Dinar + BHD i-Burundian Franc + i-Burundian Franc + i-Burundian Franc + BIF i-Bermudan Dollar @@ -2917,9 +4276,17 @@ For terms of use, see http://www.unicode.org/copyright.html i-Brunei Dollar + i-Brunei Dollar + i-Brunei Dollar + BND + $ i-Bolivian Boliviano + i-Bolivian Boliviano + i-Bolivian Boliviano + BOB + Bs i-Brazilian Real @@ -2937,12 +4304,23 @@ For terms of use, see http://www.unicode.org/copyright.html i-Bhutanese Ngultrum + i-Bhutanese Ngultrum + i-Bhutanese Ngultrum + BTN i-Botswana Pula + i-Botswana Pula + i-Botswana Pula + BWP + P i-Belarusian Ruble + i-Belarusian Ruble + i-Belarusian Ruble + BYR + P. i-Belize Dollar @@ -2960,6 +4338,9 @@ For terms of use, see http://www.unicode.org/copyright.html i-Congolese Franc + i-Congolese Franc + i-Congolese Franc + CDF i-Swiss Franc @@ -2969,6 +4350,10 @@ For terms of use, see http://www.unicode.org/copyright.html i-Chilean Peso + i-Chilean Peso + i-Chilean Peso + CLP + $ i-Chinese Yuan @@ -2979,6 +4364,10 @@ For terms of use, see http://www.unicode.org/copyright.html i-Colombian Peso + i-Colombian Peso + i-Colombian Peso + COP + $ i-Costa Rican Colón @@ -2992,28 +4381,40 @@ For terms of use, see http://www.unicode.org/copyright.html i-Cuban Convertable Peso i-Cuban Convertable Peso CUC + $ - I-Cuban Peso - I-Cuban Peso - I-Cuban Peso + i-Cuban Peso + i-Cuban pesos + i-Cuban pesos CUP $ i-Cape Verdean Escudo + i-Cape Verdean Escudo + i-Cape Verdean Escudo + CVE i-Czech Republic Koruna + i-Czech Republic Koruna + i-Czech Republic Koruna + CZK + i-Djiboutian Franc + i-Djiboutian Franc + i-Djiboutian Franc + DJF i-Danish Krone i-Danish Krone i-Danish Krone DKK + Kr i-Dominican Peso @@ -3024,15 +4425,28 @@ For terms of use, see http://www.unicode.org/copyright.html i-Algerian Dinar + i-Algerian Dinar + i-Algerian Dinar + DZD i-Egyptian Pound + i-Egyptian Pound + i-Egyptian Pound + EGP + i-Eritrean Nakfa + i-Eritrean Nakfa + i-Eritrean Nakfa + ERN i-Ethopian Birr + i-Ethopian Birr + i-Ethopian Birr + ETB i-Euro @@ -3043,9 +4457,17 @@ For terms of use, see http://www.unicode.org/copyright.html i-Fijian Dollar + i-Fijian Dollar + i-Fijian Dollar + FJD + $ i-Falkland Islands Pound + i-Falkland Islands Pound + i-Falkland Islands Pound + FKP + £ i-British Pound @@ -3056,27 +4478,50 @@ For terms of use, see http://www.unicode.org/copyright.html i-Georgian Lari + i-Georgian Lari + i-Georgian Lari + GEL + i-Ghanaian Cedi + i-Ghanaian Cedi + i-Ghanaian Cedi + GHS i-Gibraltar Pound + i-Gibraltar Pound + i-Gibraltar Pound + GIP + £ i-Gambian Dalasi + i-Gambian Dalasi + i-Gambian Dalasi + GMD i-Gunean Franc + i-Gunean Franc + i-Gunean Franc + GNF + FG i-Guatemalan Quetzal i-Guatemalan Quetzal i-Guatemalan Quetzal GTQ + Q i-Guyanaese Dollar + i-Guyanaese Dollar + i-Guyanaese Dollar + GYD + $ i-Hong Kong Dollar @@ -3090,9 +4535,14 @@ For terms of use, see http://www.unicode.org/copyright.html i-Honduran Lempira i-Honduran lempiras HNL + L i-Croatian Kuna + i-Croatian Kuna + i-Croatian Kuna + HRK + Kn i-Haitian Gourde @@ -3102,15 +4552,24 @@ For terms of use, see http://www.unicode.org/copyright.html i-Hungarian Forint + i-Hungarian Forint + i-Hungarian Forint + HUF + Ft i-Indonesian Rupiah i-Indonesian Rupiah i-Indonesian Rupiah IDR + Rp i-Israeli New Sheqel + i-Israeli New Sheqel + i-Israeli New Sheqel + + i-Indian Rupee @@ -3121,12 +4580,22 @@ For terms of use, see http://www.unicode.org/copyright.html i-Iraqi Dinar + i-Iraqi Dinar + i-Iraqi Dinar + IQD i-Iranian Rial + i-Iranian Rial + i-Iranian Rial + IRR i-Icelandic Króna + i-Icelandic Króna + i-Icelandic Króna + ISK + Kr i-Jamaican Dollar @@ -3137,6 +4606,9 @@ For terms of use, see http://www.unicode.org/copyright.html i-Jordanian Dinar + i-Jordanian Dinar + i-Jordanian Dinar + JOD i-Japanese Yen @@ -3147,18 +4619,36 @@ For terms of use, see http://www.unicode.org/copyright.html i-Kenyan Shilling + i-Kenyan Shilling + i-Kenyan Shilling + KES i-Kyrgystani Som + i-Kyrgystani Som + i-Kyrgystani Som + KGS i-Cambodian Riel + i-Cambodian Riel + i-Cambodian Riel + KHR + i-Comorian Franc + i-Comorian Franc + i-Comorian Franc + KMF + CF i-North Korean Won + i-North Korean Won + i-North Korean Won + KPW + i-South Korean Won @@ -3169,6 +4659,9 @@ For terms of use, see http://www.unicode.org/copyright.html i-Kuwaiti Dinar + i-Kuwaiti Dinar + i-Kuwaiti Dinar + KWD i-Cayman Islands Dollar @@ -3179,18 +4672,38 @@ For terms of use, see http://www.unicode.org/copyright.html i-Kazakhstani Tenge + i-Kazakhstani Tenge + i-Kazakhstani Tenge + KZT + i-Laotian Kip + i-Laotian Kip + i-Laotian Kip + LAK + i-Lebanese Pound + i-Lebanese Pound + i-Lebanese Pound + LBP + i-Sri Lankan Rupee + i-Sri Lankan Rupee + i-Sri Lankan Rupee + LKR + Rs i-Liberian Dollar + i-Liberian Dollar + i-Liberian Dollar + LRD + $ i-Lesotho Loti @@ -3203,39 +4716,79 @@ For terms of use, see http://www.unicode.org/copyright.html i-Libyan Dinar + i-Libyan Dinar + i-Libyan Dinar + LYD i-Moroccan Dirham + i-Moroccan Dirham + i-Moroccan Dirham + MAD i-Moldovan Leu + i-Moldovan Leu + i-Moldovan Leu + MDL i-Malagasy Ariary + i-Malagasy Ariary + i-Malagasy Ariary + MGA + Ar i-Macedonian Denar + i-Macedonian Denar + i-Macedonian Denar + MKD i-Myanma Kyat + i-Myanma Kyat + i-Myanma Kyat + MMK + K i-Mongolian Tugrik + i-Mongolian Tugrik + i-Mongolian Tugrik + MNT + i-Macanese Pataca + i-Macanese Pataca + i-Macanese Pataca + MOP i-Mauritanian Ouguiya + i-Mauritanian Ouguiya + i-Mauritanian Ouguiya + MRO i-Mauritian Rupee + i-Mauritian Rupee + i-Mauritian Rupee + MUR + Rs i-Maldivian Rufiyana + i-Maldivian Rufiyana + i-Maldivian Rufiyana + MVR i-Malawian Kwacha + i-Malawian Kwacha + i-Malawian Kwacha + MWK i-Mexican Peso @@ -3246,36 +4799,64 @@ For terms of use, see http://www.unicode.org/copyright.html i-Malaysian Ringgit + i-Malaysian Ringgit + i-Malaysian Ringgit + MYR + RM - I-Metical yase-Mozambicque + i-Mozambican Metical + i-Mozambican Metical + i-Mozambican Metical + MZN i-Namibian Dollar + i-Namibian Dollar + i-Namibian Dollar + NAD + $ i-Nigerian Naira + i-Nigerian Naira + i-Nigerian Naira + NGN + i-Nicaraguan Córdoba i-Nicaraguan Córdoba i-Nicaraguan Córdoba NIO + C$ i-Norwegian Krone i-Norwegian Krone i-Norwegian Krone NOK + Kr i-Nepalese Rupee + i-Nepalese Rupee + i-Nepalese Rupee + NPR + Rs i-New Zealand Dollar + i-New Zealand Dollar + i-New Zealand Dollar + NZ$ + $ i-Omani Rial + i-Omani Rial + i-Omani Rial + OMR i-Panamanian Balboa @@ -3285,42 +4866,75 @@ For terms of use, see http://www.unicode.org/copyright.html i-Peruvian Nuevo Sol + i-Peruvian Nuevo Sol + i-Peruvian Nuevo Sol + PEN i-Papua New Guinean Kina + i-Papua New Guinean Kina + i-Papua New Guinean Kina + PGK i-Philippine Peso + i-Philippine Peso + i-Philippine Peso + PHP + i-Pakistani Rupee + i-Pakistani Rupee + i-Pakistani Rupee + PKR + Rs i-Polish Zloty i-Polish Zloty i-Polish Zloty PLN + i-Paraguayan Guarani + i-Paraguayan Guarani + i-Paraguayan Guarani + PYG + i-Qatari Rial + i-Qatari Rial + i-Qatari Rial + QAR - I-Romanian Leu + i-Romanian Leu + i-Romanian leu + i-Romanian lei + RON i-Serbian Dinar + i-Serbian Dinar + i-Serbian Dinar + RSD i-Russian Ruble i-Russian Ruble i-Russian Ruble RUB + i-Rwandan Franc + i-Rwandan Franc + i-Rwandan Franc + RWF + RF i-Saudi Riyal @@ -3330,63 +4944,121 @@ For terms of use, see http://www.unicode.org/copyright.html i-Solomon Islands Dollar + i-Solomon Islands Dollar + i-Solomon Islands Dollar + SBD + $ i-Seychellois Rupee + i-Seychellois Rupee + i-Seychellois Rupee + SCR i-Sudanese Pound + i-Sudanese Pound + i-Sudanese Pound + SDG i-Swedish Krona i-Swedish Krona i-Swedish Krona SEK + Kr i-Singapore Dollar + i-Singapore Dollar + i-Singapore Dollar + SGD + $ i-Saint Helena Pound + i-Saint Helena Pound + i-Saint Helena Pound + SHP + £ i-Sierra Leonean Leone + i-Sierra Leonean Leone + i-Sierra Leonean Leone + SLL i-Somali Shilling + i-Somali Shilling + i-Somali Shilling + SOS i-Surinamese Dollar + i-Surinamese Dollar + i-Surinamese Dollar + SRD + $ - Upondo waseNingizimu Sudan + i-South Sudanese Pound + i-South Sudanese Pound + i-South Sudanese Pound + SSP + £ i-São Tomé kanye ne-Príncipe Dobra + i-São Tomé kanye ne-Príncipe Dobra + i-São Tomé kanye ne-Príncipe Dobra + STD + Db i-Syrian Pound + i-Syrian Pound + i-Syrian Pound + SYP + £ i-Swazi Lilangeni + i-Swazi Lilangeni + i-Swazi Lilangeni + SZL i-Thai Baht i-Thai Baht i-Thai Baht ฿ + ฿ i-Tajikistani Somoni + i-Tajikistani Somoni + i-Tajikistani Somoni + TJS i-Turkmenistani Manat + i-Turkmenistani Manat + i-Turkmenistani Manat + TMT i-Tunisian Dinar + i-Tunisian Dinar + i-Tunisian Dinar + TND i-Tongan Paʻanga + i-Tongan Paʻanga + i-Tongan Paʻanga + TOP + T$ i-Turkish Lira @@ -3394,6 +5066,7 @@ For terms of use, see http://www.unicode.org/copyright.html i-Turkish Lira TRY + TL i-Trinidad and Tobago Dollar @@ -3411,12 +5084,22 @@ For terms of use, see http://www.unicode.org/copyright.html i-Tanzanian Shilling + i-Tanzanian Shilling + i-Tanzanian Shilling + TZS i-Ukrainian Hryvnia + i-Ukrainian Hryvnia + i-Ukrainian Hryvnia + UAH + i-Ugandan Shilling + i-Ugandan Shilling + i-Ugandan Shilling + UGX i-US Dollar @@ -3427,56 +5110,95 @@ For terms of use, see http://www.unicode.org/copyright.html i-Uruguayan Peso + i-Uruguayan Peso + i-Uruguayan Peso + UYU + $ i-Uzbekistan Som + i-Uzbekistan Som + i-Uzbekistan Som + UZS i-Venezuelan Bolívar + i-Venezuelan Bolívar + i-Venezuelan Bolívar + VEF + Bs i-Vietnamese Dong + i-Vietnamese Dong + i-Vietnamese Dong + + i-Vanuatu Vatu + i-Vanuatu Vatu + i-Vanuatu Vatu + VUV i-Samoan Tala + i-Samoan Tala + i-Samoan Tala + WST i-CFA Franc BCEA + i-CFA Franc BCEA + i-CFA Franc BCEA + FCFA i-East Caribbean Dollar i-East Caribbean Dollar i-East Caribbean Dollar EC$ + $ i-CFA Franc BCEAO + i-CFA Franc BCEAO + i-CFA Franc BCEAO + CFA i-CFP Franc + i-CFP Franc + i-CFP Franc + CFPF - Imali engaziwa - Imali engaziwa - Imali engaziwa + imali engaziwa + imali engaziwa + imali engaziwa i-Yemeni Rial + i-Yemeni Rial + i-Yemeni Rial + YER i-South African Rand i-South African Rand i-South African Rand R + R i-Zambian Kwacha (1968–2012) i-Zambian Kwacha + i-Zambian Kwacha + i-Zambian Kwacha + ZMW + ZK @@ -3499,6 +5221,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rev + {0} revolution + {0} revolutions + + + rad + {0} i-radian + {0} radians + + + ° + {0}° + {0}° + arcminutes {0} arcminute @@ -3509,30 +5246,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} arcsecond {0} arcseconds - - ° - {0}° - {0}° - - - rad - {0} i-radian - {0} radians - - - acre - {0} ac - {0} ac + + km² + {0} km² + {0} km² hectare {0} ha {0} ha + + + {0} m² + {0} m² + {0} per m² + cm² {0} cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + + + acre + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² ft² @@ -3543,91 +5292,106 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² + + karats + {0} i-karat + {0} ama-karats L/km {0} L/km {0} L/km + + L/100km + {0} L/100km + {0} L/100km + mpg {0} mpg {0} mpg - - bit - {0} i-bit - {0} ama-bits - - - bytes - {0} i-byte - {0} ama-bytes - - - gigabits - {0} i-gigabit - {0} ama-gigabits - - - GB - {0} GB - {0} GB - - - kilobits - {0} i-kilobit - {0} ama-kilobits - - - kB - {0} kB - {0} kB - - - megabits - {0} i-megabit - {0} megabits - - - MB - {0} MB - {0} MB - - - terabits - {0} i-terabit - {0} ama-terabits - TB {0} TB {0} TB + + terabits + {0} i-terabit + {0} ama-terabits + + + GB + {0} GB + {0} GB + + + gigabits + {0} i-gigabit + {0} ama-gigabits + + + MB + {0} MB + {0} MB + + + megabits + {0} i-megabit + {0} megabits + + + kB + {0} kB + {0} kB + + + kilobits + {0} i-kilobit + {0} ama-kilobits + + + bytes + {0} i-byte + {0} ama-bytes + + + bits + {0} i-bit + {0} ama-bits + + + c + {0} c + {0} c + + + y + {0} y + {0} y + {0}/y + + + izinyanga + {0} inyanga + {0} izinyanga + {0}/m + + + amaviki + {0} iviki + {0} amaviki + {0}/w + izinsuku {0} usuku {0} izinsuku + {0}/d amahora @@ -3635,30 +5399,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} amahora {0}/h - - microseconds - {0} ama-microsecond - {0} microseconds - - - ms - {0} ms - {0} ms - amaminithi {0} iminithi {0} amaminithi - - - izinyanga - {0} inyanga - {0} izinyanga - - - ns - {0} ns - {0} ns + {0}/min amasekhondi @@ -3666,15 +5411,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} amasekhondi {0}ps - - amaviki - {0} iviki - {0} amaviki + + ms + {0} ms + {0} ms - - y - {0} y - {0} y + + microseconds + {0} ama-microsecond + {0} microseconds + + + ns + {0} ns + {0} ns amp @@ -3696,6 +5446,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -3706,21 +5461,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Calorie {0} Calories - - joule - {0} i-joule - {0} ama-joules - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + joule + {0} i-joule + {0} ama-joules + kWh {0} kWh @@ -3731,201 +5481,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + m + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - ft - {0} ft - {0} ft - - - in - {0} in - {0} in - - - km - {0} km - {0} km - - - ly - {0} ly - {0} ly - - - m - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - pc - {0} pc - {0} pc - pm {0} pm {0} pm + + mi + {0} mi + {0} mi + yd {0} yd {0} yd + + ft + {0} ft + {0} ft + {0}/ft + + + in + {0} in + {0} in + {0}/in + + + pc + {0} pc + {0} pc + + + ly + {0} ly + {0} ly + + + au + {0} au + {0} au + + + nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + lux {0} i-lux {0} i-lux - - CD - {0} CD - {0} CD - - - g - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}kg + + + g + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - oz - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb + + µg + {0} µg + {0} µg tn {0} tn {0} tn + + lb + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0}/oz + + + oz t + {0} oz t + {0} oz t + + + CD + {0} CD + {0} CD + GW {0} GW {0} GW - - hp - {0} hp - {0} hp - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW watt {0} W {0} W + + mW + {0} mW + {0} mW + + + hp + {0} hp + {0} hp + hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -3936,10 +5690,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - karats - {0} i-karat - {0} ama-karats + + inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar km/h @@ -3956,6 +5715,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + knot + {0} knots + {0} knots + + + ° + {0}° + {0}° + °C {0}°C @@ -3971,31 +5740,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - - - cL - {0} cL - {0} cL - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -4005,6 +5749,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -4016,25 +5767,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - cup - {0} c - {0} c + + ft³ + {0} ft³ + {0} ft³ - - dL - {0} dL - {0} dL + + in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML hL @@ -4045,27 +5791,64 @@ For terms of use, see http://www.unicode.org/copyright.html l {0} l {0} l + {0}/l - - ML - {0} ML - {0} ML + + dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL mL {0} mL {0} mL - - pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0}/gal qt {0} qt {0} qt + + pt + {0} pt + {0} pt + + + cup + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + tbsp {0} tbsp @@ -4076,6 +5859,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0}E + {0}N + {0}S + {0}W + @@ -4091,6 +5880,21 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m/s² {0} m/s² + + rev + {0} rev + {0} rev + + + radians + {0} rad + {0} rad + + + ° + {0}° + {0}° + arcmins {0} arcmin @@ -4101,30 +5905,42 @@ For terms of use, see http://www.unicode.org/copyright.html {0} arcsec {0} arcsecs - - ° - {0}° - {0}° - - - radians - {0} rad - {0} rad - - - acre - {0} ac - {0} ac + + km² + {0} km² + {0} km² hectare {0} ha {0} ha + + + {0} m² + {0} m² + {0}/m² + cm² {0} cm² {0} cm² + {0}/cm² + + + mi² + {0} mi² + {0} mi² + + + acre + {0} ac + {0} ac + + + yd² + {0} yd² + {0} yd² ft² @@ -4135,91 +5951,106 @@ For terms of use, see http://www.unicode.org/copyright.html in² {0} in² {0} in² + {0}/in² - - km² - {0} km² - {0} km² - - - - {0} m² - {0} m² - - - mi² - {0} mi² - {0} mi² - - - yd² - {0} yd² - {0} yd² + + karats + {0} kt + {0} kt L/km {0} L/km {0} L/km + + L/100km + {0} L/100km + {0} L/100km + miles/gal {0} mpg {0} mpg - - bit - {0} bit - {0} bit - - - byte - {0} byte - {0} byte - - - Gbit - {0} Gb - {0} Gb - - - GB - {0} GB - {0} GB - - - kbit - {0} kb - {0} kb - - - kB - {0} kB - {0} kB - - - Mbit - {0} Mb - {0} Mb - - - MB - {0} MB - {0} MB - - - Tbit - {0} Tb - {0} Tb - TB {0} TB {0} TB + + Tbit + {0} Tb + {0} Tb + + + GB + {0} GB + {0} GB + + + Gbit + {0} Gb + {0} Gb + + + MB + {0} MB + {0} MB + + + Mbit + {0} Mb + {0} Mb + + + kB + {0} kB + {0} kB + + + kbit + {0} kb + {0} kb + + + byte + {0} byte + {0} byte + + + bit + {0} bit + {0} bit + + + c + {0} c + {0} c + + + y + {0} y + {0} yrs + {0}/y + + + izinyanga + {0} nyanga + {0} izinyanga + {0}/m + + + amaviki + {0} viki + {0} amaviki + {0}/w + izinsuku {0} usuku {0} izinsuku + {0}/d amahora @@ -4227,30 +6058,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} amahora {0}/h - - μsecs - {0} μs - {0} μs - - - ms - {0} ms - {0} ms - amaminithi {0} iminithi - {0} amaminithi - - - izinyanga - {0} nyanga - {0} izinyanga - - - ns - {0} ns - {0} ns + {0} iminithi + {0}/min amasekhondi @@ -4258,15 +6070,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} s {0}ps - - amaviki - {0} viki - {0} amaviki + + ms + {0} ms + {0} ms - - y - {0} y - {0} yrs + + μsecs + {0} μs + {0} μs + + + ns + {0} ns + {0} ns amp @@ -4288,6 +6105,11 @@ For terms of use, see http://www.unicode.org/copyright.html {0} V {0} V + + kcal + {0} kcal + {0} kcal + cal {0} cal @@ -4298,21 +6120,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} Cal {0} Cal - - joules - {0} J - {0} J - - - kcal - {0} kcal - {0} kcal - kJ {0} kJ {0} kJ + + joules + {0} J + {0} J + kWh {0} kWh @@ -4323,201 +6140,205 @@ For terms of use, see http://www.unicode.org/copyright.html {0} GHz {0} GHz - - Hz - {0} Hz - {0} Hz + + MHz + {0} MHz + {0} MHz kHz {0} kHz {0} kHz - - MHz - {0} MHz - {0} MHz + + Hz + {0} Hz + {0} Hz - - au - {0} au - {0} au + + km + {0} km + {0} km + {0}/km - - cm - {0} cm - {0} cm + + m + {0} m + {0} m + {0}/m dm {0} dm {0} dm - - ft - {0} ft - {0} ft - - - in - {0} in - {0} in - - - km - {0} km - {0} km - - - ly - {0} ly - {0} ly - - - m - {0} m - {0} m - - - µm - {0} µm - {0} µm - - - mi - {0} mi - {0} mi + + cm + {0} cm + {0} cm + {0}/cm mm {0} mm {0} mm + + µm + {0} µm + {0} µm + nm {0} nm {0} nm - - nmi - {0} nmi - {0} nmi - - - pc - {0} pc - {0} pc - pm {0} pm {0} pm + + mi + {0} mi + {0} mi + yd {0} yd {0} yd + + ft + {0} ft + {0} ft + {0}/ft + + + in + {0} in + {0} in + {0}/in + + + pc + {0} pc + {0} pc + + + ly + {0} ly + {0} ly + + + au + {0} au + {0} au + + + nmi + {0} nmi + {0} nmi + + + smi + {0} smi + {0} smi + lux {0} lx {0} lx - - CD - {0} CD - {0} CD - - - g - {0} g - {0} g - - - kg - {0} kg - {0} kg - t {0} t {0} t - - µg - {0} µg - {0} µg + + kg + {0} kg + {0} kg + {0}/kg + + + g + {0} g + {0} g + {0}/g mg {0} mg {0} mg - - oz - {0} oz - {0} oz - - - oz t - {0} oz t - {0} oz t - - - lb - {0} lb - {0} lb + + µg + {0} µg + {0} µg tn {0} tn {0} tn + + lb + {0} lb + {0} lb + {0}/lb + + + oz + {0} oz + {0} oz + {0}/oz + + + oz t + {0} oz t + {0} oz t + + + CD + {0} CD + {0} CD + GW {0} GW {0} GW - - hp - {0} hp - {0} hp - - - kW - {0} kW - {0} kW - MW {0} MW {0} MW - - mW - {0} mW - {0} mW + + kW + {0} kW + {0} kW watt {0} W {0} W + + mW + {0} mW + {0} mW + + + hp + {0} hp + {0} hp + hPa {0} hPa {0} hPa - - inHg - {0} inHg - {0} inHg - - - mbar - {0} mbar - {0} mbar - mm Hg {0} mm Hg @@ -4528,10 +6349,15 @@ For terms of use, see http://www.unicode.org/copyright.html {0} psi {0} psi - - karats - {0} kt - {0} kt + + inHg + {0} inHg + {0} inHg + + + mbar + {0} mbar + {0} mbar km/h @@ -4548,6 +6374,16 @@ For terms of use, see http://www.unicode.org/copyright.html {0} mi/h {0} mi/h + + kn + {0} kn + {0} kn + + + ° + {0}° + {0}° + °C {0}°C @@ -4563,31 +6399,6 @@ For terms of use, see http://www.unicode.org/copyright.html {0} K {0} K - - ac ft - {0} ac ft - {0} ac ft - - - cL - {0} cL - {0} cL - - - cm³ - {0} cm³ - {0} cm³ - - - ft³ - {0} ft³ - {0} ft³ - - - in³ - {0} in³ - {0} in³ - km³ {0} km³ @@ -4597,6 +6408,13 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m³ {0} m³ + {0}/m³ + + + cm³ + {0} cm³ + {0} cm³ + {0}/cm³ mi³ @@ -4608,25 +6426,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} yd³ {0} yd³ - - cup - {0} c - {0} c + + ft³ + {0} ft³ + {0} ft³ - - dL - {0} dL - {0} dL + + in³ + {0} in³ + {0} in³ - - fl oz - {0} fl oz - {0} fl oz - - - gal - {0} gal - {0} gal + + ML + {0} ML + {0} ML hL @@ -4637,27 +6450,64 @@ For terms of use, see http://www.unicode.org/copyright.html l {0} l {0} l + {0}/l - - ML - {0} ML - {0} ML + + dL + {0} dL + {0} dL + + + cL + {0} cL + {0} cL mL {0} mL {0} mL - - pt - {0} pt - {0} pt + + mpt + {0} mpt + {0} mpt + + + mcup + {0} mc + {0} mc + + + ac ft + {0} ac ft + {0} ac ft + + + gal + {0} gal + {0} gal + {0}/gal qt {0} qt {0} qt + + pt + {0} pt + {0} pt + + + cup + {0} c + {0} c + + + fl oz + {0} fl oz + {0} fl oz + tbsp {0} tbsp @@ -4668,6 +6518,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} tsp {0} tsp + + {0}E + {0}N + {0}S + {0}W + @@ -4677,6 +6533,10 @@ For terms of use, see http://www.unicode.org/copyright.html {0} G {0} G + + {0}° + {0}° + {0}′ {0}′ @@ -4685,9 +6545,25 @@ For terms of use, see http://www.unicode.org/copyright.html {0}″ {0}″ - - {0}° - {0}° + + L/100km + {0}L/100km + {0}L/100km + + + y + {0} y + {0} y + + + izinyanga + {0} m + {0} m + + + amaviki + {0} w + {0} w izinsuku @@ -4699,40 +6575,20 @@ For terms of use, see http://www.unicode.org/copyright.html {0} hora {0} hora - - ms - {0} ms - {0} ms - amaminithi {0} min {0} min - - izinyanga - {0} m - {0} m - isekhondi {0} s {0} s - - amaviki - {0} w - {0} w - - - y - {0} y - {0} y - - - cm - {0} cm - {0} cm + + ms + {0} ms + {0} ms km @@ -4744,21 +6600,26 @@ For terms of use, see http://www.unicode.org/copyright.html {0} m {0} m + + cm + {0} cm + {0} cm + mm {0} mm {0} mm - - g - {0} g - {0} g - kg {0} kg {0} kg + + g + {0} g + {0} g + km/h {0}kph @@ -4778,6 +6639,12 @@ For terms of use, see http://www.unicode.org/copyright.html {0} l {0} l + + {0}E + {0}N + {0}S + {0}W + h:mm @@ -4797,12 +6664,20 @@ For terms of use, see http://www.unicode.org/copyright.html I-{0} ne-{1} + {0}, {1} + {0}, {1} {0}, {1} + {0}, {1} + {0}, {1} + {0}, {1} {0} {1} + {0}, {1} + {0}, {1} + {0}, {1} {0}, {1} {0}, {1} diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zu_ZA.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zu_ZA.xml similarity index 68% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zu_ZA.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zu_ZA.xml index e066e58dcaa..05671a7bb8a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/main/zu_ZA.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/main/zu_ZA.xml @@ -1,14 +1,14 @@ - - - + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/attributeValueValidity.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/attributeValueValidity.xml new file mode 100644 index 00000000000..7b088a3d5c7 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/attributeValueValidity.xml @@ -0,0 +1,433 @@ + + + + + + + + + + + + af agq ak am ar as asa ast ay az + ba bal bas be bem bez bg bm bn bo br brx bs + ca ce ceb cgg chr ckb cs cu cy + da dav de dje dsb dua dyo dz + ebu ee el en eo es et eu ewo + fa ff fi fil fo fr fur fy + ga gd gl gn gsw gu guz gv + ha haw he hi hr hsb ht hu hy + id ig ii ilo is it + ja jgo jmc + ka kab kam kbd kde kea khq ki kk kkj kl kln km kn ko kok ks ksb ksf ksh kw ky + lag lb lg lkt ln lo lrc lt lu lua luo luy lv + mai mas mdh mer mfe mg mgh mgo mis mk ml mn mr ms mt mua mul my mzn + naq nb nd ne nl nmg nn nnh nso nus ny nyn + om or os + pa pag pl prg ps pt + qu + rm rn ro rof root ru rw rwk + sah saq sat sbp sd se seh ses sg shi si sk sl smn sn so sq sr ss st sv sw + ta te teo tg th ti tk tn to tpi tr ts tt twq tzm + ug uk und ur uz + vai vi vo vun + wae war wo + xh xog + yav yi yo + za zgh zh zu zxx + + aa ab ace ach ada ady ae aeb afh ain akk akz ale aln alt an ang anp arc arn aro arp arq arw ary arz ase av avk awa + ban bar bax bbc bbj bfd bej bew bfq bgn bho bi bik bin bjn bkm bla + bpy bqi bra brh bss bua bug bum byn byv + cad car cay cch ch chb chg chk chm chn cho chp chy co cop cps cr crh csb cv + dak dar del den dgr din doi dtp dum dv dyu dzg + efi egl egy eka elx enm esu ext + fan fat fit fj fon frc frm fro frp frr frs fy + gaa gag gan gay gba gbz gez gil glk gmh goh gom gon gor got grb grc guc gur gwi + hai hak hif hil hit hmn ho hsn hup hz + ia iba ibb ie ik inh io iu izh + jam jbo jpr jrb jut jv + kaa kac kaj kaw kbl kcg ken kfo kg kgp kha kho khw kiu kj kmb + koi kos kpe kr krc kri krj krl kru ku kum kut kv + la lad lah lam lez lfn li lij liv lmo lol loz ltg lui lun lus lzh lzz + mad maf mag mak man mde mdf mdr men mer mfe mg mga mgh mh mi mic min + mnc mni moh mos mrj mus mwl mwr mwv mye myv + na nan nap nds new ng nia niu njo no nog non nov nqo nr nv nwc nym nyo nzi + oc oj osa ota + pal pam pap pau pcd pdc pdt peo pfl phn pi pms pnt pon pro + quc qug + raj rap rar rgn rif rom rtm rue rug rup + sa sad sam sas saz sba sc scn sco sdc sdh see sei sel sga sgs sh shn shu sid sli sly sm sma smj sms + snk sog srn srr ssy stq su suk sus sux swb syc syr szl + tcy tem ter tet tig tiv tkl tkr tl tlh tli tly tmh tog tru trv tsd tsi ttt tum tvl tw ty tyv + udm uga umb + ve vec vep vls vmf vot vro + wa wal was wbp wuu + xal xmf + yao yap ybb yrl yue + zap zbl zea zen zun zza + + Adlm Afak Aran Blis Cirt Cyrs Egyd Egyh Geok Inds Jurc Kitl Kits Kpel Latf Latg Loma Marc Maya Moon + Nkgb Nshu Osge Phlv Roro Sara Syre Syrj Syrn Tang Teng Visp Wole + + + titlecase-words titlecase-firstword lowercase-words mixed + + (verbatim) + ((stand-alone|variant|list|secondary|email|www|short|narrow|new|accounting|limitedAvailability)(-proposed.*)?|(proposed.*)) + Era Year Quarter Month Week Day-Of-Week Day Hour Minute Second Timezone + + ([12][0-9][0-9][0-9])-((0[0-9])|1[0-2])-([0-2][0-9]|3[01]) + -?[0-9]{1,4}-[0-9]{1,2}-[0-9]{1,2} + 20[0-9][0-9]-([0-9]|1[0-2])-([12][0-9]|3[01]) + ([01][0-9]|2[0-4]):[0-5][0-9] + ([01]?[0-9]|2[0-4]):00 + [0-9]{4}-[0-9]{1,2}-[0-9]{1,2}\s([01][0-9]|2[0-4]):[0-5][0-9] + [0-9]+(\.[0-9]+)? + [0-9]+ + standard + + \$.*\$ + + all + ([R|S]|RP)[0-9]+ + + + [$][a-zA-Z0-9_]+ + \$.*\$ + [0-9]+(\.[0-9]+(\.[0-9]+)?)? + [©®‼⁉™ℹ↔-↙↩↪⌚⌛⌨⏏⏩-⏳⏸-⏺ Ⓜ▪▫▶◀◻-◾☀-☄☎☑☔☕☘☝☠☢☣☦ ☪☮☯☸-☺♈-♓♠♣♥♦♨♻♿⚒-⚔⚖⚗ ⚙⚛⚜⚠⚡⚪⚫⚰⚱⚽⚾⛄⛅⛈⛎⛏⛑⛓⛔⛩⛪ ⛰-⛵⛷-⛺⛽✂✅✈-✍✏✒✔✖✝✡✨✳✴ + ❄❇❌❎❓-❕❗❣❤➕-➗➡➰➿⤴⤵⬅-⬇ ⬛⬜⭐⭕〰〽㊗㊙🀄🃏🅰🅱🅾🅿🆎🆑-🆚🈁🈂🈚 🈯🈲-🈺🉐🉑🌀-🌡🌤-🎓🎖🎗🎙-🎛🎞-🏰🏳-🏵 🏷-📽📿-🔽🕉-🕎🕐-🕧🕯🕰🕳-🕹🖇🖊-🖍 + 🖐🖕🖖🖥🖨🖱🖲🖼🗂-🗄🗑-🗓🗜-🗞🗡🗣🗯🗳 🗺-🙏🚀-🛅🛋-🛐🛠-🛥🛩🛫🛬🛰🛳🤐-🤘🦀-🦄 + 🧀{#⃣}{*⃣}{0⃣}{1⃣}{2⃣}{3⃣}{4⃣}{5⃣}{6⃣}{7⃣}{8⃣}{9⃣}{☝🏻}{☝🏼}{☝🏽}{☝🏾}{☝🏿}{✊🏻}{✊🏼}{✊🏽}{✊🏾}{✊🏿}{✋🏻}{✋🏼}{✋🏽}{✋🏾}{✋🏿}{✌🏻}{✌🏼}{✌🏽}{✌🏾}{✌🏿}{✍🏻}{✍🏼}{✍🏽}{✍🏾}{✍🏿}{🇦🇨}{🇦🇩}{🇦🇪}{🇦🇫}{🇦🇬}{🇦🇮}{🇦🇱}{🇦🇲}{🇦🇴}{🇦🇶}{🇦🇷}{🇦🇸}{🇦🇹}{🇦🇺}{🇦🇼}{🇦🇽}{🇦🇿}{🇧🇦}{🇧🇧}{🇧🇩}{🇧🇪}{🇧🇫}{🇧🇬}{🇧🇭}{🇧🇮}{🇧🇯}{🇧🇱}{🇧🇲}{🇧🇳}{🇧🇴}{🇧🇶}{🇧🇷}{🇧🇸}{🇧🇹}{🇧🇻}{🇧🇼}{🇧🇾}{🇧🇿}{🇨🇦}{🇨🇨}{🇨🇩}{🇨🇫}{🇨🇬}{🇨🇭}{🇨🇮}{🇨🇰}{🇨🇱}{🇨🇲}{🇨🇳}{🇨🇴}{🇨🇵}{🇨🇷}{🇨🇺}{🇨🇻}{🇨🇼}{🇨🇽}{🇨🇾}{🇨🇿}{🇩🇪}{🇩🇬}{🇩🇯}{🇩🇰}{🇩🇲}{🇩🇴}{🇩🇿}{🇪🇦}{🇪🇨}{🇪🇪}{🇪🇬}{🇪🇭}{🇪🇷}{🇪🇸}{🇪🇹}{🇪🇺}{🇫🇮}{🇫🇯}{🇫🇰}{🇫🇲}{🇫🇴}{🇫🇷}{🇬🇦}{🇬🇧}{🇬🇩}{🇬🇪}{🇬🇫}{🇬🇬}{🇬🇭}{🇬🇮}{🇬🇱}{🇬🇲}{🇬🇳}{🇬🇵}{🇬🇶}{🇬🇷}{🇬🇸}{🇬🇹}{🇬🇺}{🇬🇼}{🇬🇾}{🇭🇰}{🇭🇲}{🇭🇳}{🇭🇷}{🇭🇹}{🇭🇺}{🇮🇨}{🇮🇩}{🇮🇪}{🇮🇱}{🇮🇲}{🇮🇳}{🇮🇴}{🇮🇶}{🇮🇷}{🇮🇸}{🇮🇹}{🇯🇪}{🇯🇲}{🇯🇴}{🇯🇵}{🇰🇪}{🇰🇬}{🇰🇭}{🇰🇮}{🇰🇲}{🇰🇳}{🇰🇵}{🇰🇷}{🇰🇼}{🇰🇾}{🇰🇿}{🇱🇦}{🇱🇧}{🇱🇨}{🇱🇮}{🇱🇰}{🇱🇷}{🇱🇸}{🇱🇹}{🇱🇺}{🇱🇻}{🇱🇾}{🇲🇦}{🇲🇨}{🇲🇩}{🇲🇪}{🇲🇫}{🇲🇬}{🇲🇭}{🇲🇰}{🇲🇱}{🇲🇲}{🇲🇳}{🇲🇴}{🇲🇵}{🇲🇶}{🇲🇷}{🇲🇸}{🇲🇹}{🇲🇺}{🇲🇻}{🇲🇼}{🇲🇽}{🇲🇾}{🇲🇿}{🇳🇦}{🇳🇨}{🇳🇪}{🇳🇫}{🇳🇬}{🇳🇮}{🇳🇱}{🇳🇴}{🇳🇵}{🇳🇷}{🇳🇺}{🇳🇿}{🇴🇲}{🇵🇦}{🇵🇪}{🇵🇫}{🇵🇬}{🇵🇭}{🇵🇰}{🇵🇱}{🇵🇲}{🇵🇳}{🇵🇷}{🇵🇸}{🇵🇹}{🇵🇼}{🇵🇾}{🇶🇦}{🇷🇪}{🇷🇴}{🇷🇸}{🇷🇺}{🇷🇼}{🇸🇦}{🇸🇧}{🇸🇨}{🇸🇩}{🇸🇪}{🇸🇬}{🇸🇭}{🇸🇮}{🇸🇯}{🇸🇰}{🇸🇱}{🇸🇲}{🇸🇳}{🇸🇴}{🇸🇷}{🇸🇸}{🇸🇹}{🇸🇻}{🇸🇽}{🇸🇾}{🇸🇿}{🇹🇦}{🇹🇨}{🇹🇩}{🇹🇫}{🇹🇬}{🇹🇭}{🇹🇯}{🇹🇰}{🇹🇱}{🇹🇲}{🇹🇳}{🇹🇴}{🇹🇷}{🇹🇹}{🇹🇻}{🇹🇼}{🇹🇿}{🇺🇦}{🇺🇬}{🇺🇲}{🇺🇸}{🇺🇾}{🇺🇿}{🇻🇦}{🇻🇨}{🇻🇪}{🇻🇬}{🇻🇮}{🇻🇳}{🇻🇺}{🇼🇫}{🇼🇸}{🇽🇰}{🇾🇪}{🇾🇹}{🇿🇦}{🇿🇲}{🇿🇼}{🎅🏻}{🎅🏼}{🎅🏽}{🎅🏾}{🎅🏿}{🏂🏻}{🏂🏼}{🏂🏽}{🏂🏾}{🏂🏿}{🏃🏻}{🏃🏼}{🏃🏽}{🏃🏾}{🏃🏿}{🏄🏻}{🏄🏼}{🏄🏽}{🏄🏾}{🏄🏿}{🏇🏻}{🏇🏼}{🏇🏽}{🏇🏾}{🏇🏿}{🏊🏻}{🏊🏼}{🏊🏽}{🏊🏾}{🏊🏿}{👂🏻}{👂🏼}{👂🏽}{👂🏾}{👂🏿}{👃🏻}{👃🏼}{👃🏽}{👃🏾}{👃🏿}{👆🏻}{👆🏼}{👆🏽}{👆🏾}{👆🏿}{👇🏻}{👇🏼}{👇🏽}{👇🏾}{👇🏿}{👈🏻}{👈🏼}{👈🏽}{👈🏾}{👈🏿}{👉🏻}{👉🏼}{👉🏽}{👉🏾}{👉🏿}{👊🏻}{👊🏼}{👊🏽}{👊🏾}{👊🏿}{👋🏻}{👋🏼}{👋🏽}{👋🏾}{👋🏿}{👌🏻}{👌🏼}{👌🏽}{👌🏾}{👌🏿}{👍🏻}{👍🏼}{👍🏽}{👍🏾}{👍🏿}{👎🏻}{👎🏼}{👎🏽}{👎🏾}{👎🏿}{👏🏻}{👏🏼}{👏🏽}{👏🏾}{👏🏿}{👐🏻}{👐🏼}{👐🏽}{👐🏾}{👐🏿}{👦🏻}{👦🏼}{👦🏽}{👦🏾}{👦🏿}{👧🏻}{👧🏼}{👧🏽}{👧🏾}{👧🏿}{👨 + ‍❤‍👨}{👨‍❤‍💋‍👨}{👨‍👨‍👦}{👨 ‍👨‍👦‍👦}{👨‍👨‍👧}{👨‍👨‍👧‍ 👦}{👨‍👨‍👧‍👧}{👨‍👩‍👦}{👨‍ 👩‍👦‍👦}{👨‍👩‍👧}{👨‍👩‍👧‍👦}{👨 + ‍👩‍👧‍👧}{👨🏻}{👨🏼}{👨🏽}{👨🏾}{👨🏿}{👩 ‍❤‍👩}{👩‍❤‍💋‍👩}{👩‍👩‍👦}{👩 ‍👩‍👦‍👦}{👩‍👩‍👧}{👩‍👩‍👧‍ + 👦}{👩‍👩‍👧‍👧}{👩🏻}{👩🏼}{👩🏽}{👩🏾}{👩🏿}{👮🏻}{👮🏼}{👮🏽}{👮🏾}{👮🏿}{👰🏻}{👰🏼}{👰🏽}{👰🏾}{👰🏿}{👱🏻}{👱🏼}{👱🏽}{👱🏾}{👱🏿}{👲🏻}{👲🏼}{👲🏽}{👲🏾}{👲🏿}{👳🏻}{👳🏼}{👳🏽}{👳🏾}{👳🏿}{👴🏻}{👴🏼}{👴🏽}{👴🏾}{👴🏿}{👵🏻}{👵🏼}{👵🏽}{👵🏾}{👵🏿}{👶🏻}{👶🏼}{👶🏽}{👶🏾}{👶🏿}{👷🏻}{👷🏼}{👷🏽}{👷🏾}{👷🏿}{👸🏻}{👸🏼}{👸🏽}{👸🏾}{👸🏿}{👼🏻}{👼🏼}{👼🏽}{👼🏾}{👼🏿}{💁🏻}{💁🏼}{💁🏽}{💁🏾}{💁🏿}{💂🏻}{💂🏼}{💂🏽}{💂🏾}{💂🏿}{💃🏻}{💃🏼}{💃🏽}{💃🏾}{💃🏿}{💅🏻}{💅🏼}{💅🏽}{💅🏾}{💅🏿}{💆🏻}{💆🏼}{💆🏽}{💆🏾}{💆🏿}{💇🏻}{💇🏼}{💇🏽}{💇🏾}{💇🏿}{💪🏻}{💪🏼}{💪🏽}{💪🏾}{💪🏿}{🖐🏻}{🖐🏼}{🖐🏽}{🖐🏾}{🖐🏿}{🖕🏻}{🖕🏼}{🖕🏽}{🖕🏾}{🖕🏿}{🖖🏻}{🖖🏼}{🖖🏽}{🖖🏾}{🖖🏿}{🙅🏻}{🙅🏼}{🙅🏽}{🙅🏾}{🙅🏿}{🙆🏻}{🙆🏼}{🙆🏽}{🙆🏾}{🙆🏿}{🙇🏻}{🙇🏼}{🙇🏽}{🙇🏾}{🙇🏿}{🙋🏻}{🙋🏼}{🙋🏽}{🙋🏾}{🙋🏿}{🙌🏻}{🙌🏼}{🙌🏽}{🙌🏾}{🙌🏿}{🙍🏻}{🙍🏼}{🙍🏽}{🙍🏾}{🙍🏿}{🙎🏻}{🙎🏼}{🙎🏽}{🙎🏾}{🙎🏿}{🙏🏻}{🙏🏼}{🙏🏽}{🙏🏾}{🙏🏿}{🚣🏻}{🚣🏼}{🚣🏽}{🚣🏾}{🚣🏿}{🚴🏻}{🚴🏼}{🚴🏽}{🚴🏾}{🚴🏿}{🚵🏻}{🚵🏼}{🚵🏽}{🚵🏾}{🚵🏿}{🚶🏻}{🚶🏼}{🚶🏽}{🚶🏾}{🚶🏿}{🛀🏻}{🛀🏼}{🛀🏽}{🛀🏾}{🛀🏿}{🤘🏻}{🤘🏼}{🤘🏽}{🤘🏾}{🤘🏿}] + 0|[1-9][0-9]?|100 + (0|[1-9][0-9]?)(\.[0-9]+)?|100 + [0-9A-Z]{0,3} + (\p{Nd}|[〇一二三四五六七八九])+ + [HKhk] + [A-Z]+|XN--[A-Z0-9]+([-][A-Z0-9]+)* + * Cldr:modern + digits-after private-unihan private-kana private-pinyin + no sh tw tl fat in mo ji iw jw + $locale|$languageDeprecated + [a-zA-Z]+([-_][a-zA-Z]+)*[.]?|\d+|\([A-Z][a-z]+\) + DEFAULT + UTC[-+]\d+ + AX + segmentation collation + Amharic Any Arabic Armenian Azerbaijani Belarusian Bengali Bulgarian Cyrillic Devanagari Fullwidth + Georgian Greek Gujarati Gurmukhi Han Hangul Hebrew Hiragana IPA InterIndic Jamo Kannada Katakana Kazakh Kirghiz Korean Latin Macedonian Malayalam + Maldivian Mongolian Oriya Pashto Persian Pinyin Russian Serbian Simplified Syriac Tamil Telugu Thai ThaiLogical Turkmen Ukrainian Uzbek az ch cs + cs_FONIPA dsb el es es_419 es_FONIPA it ja_Latn la lt nl pl pl_FONIPA ro ro_FONIPA ru sk sk_FONIPA tlh tr ug uz_Cyrl yo zh_Latn_PINYIN ASCII + Accents Armenian Bengali Bopomofo CanadianAboriginal ConjoiningJamo Devanagari Ethiopic Gujarati Gurmukhi Halfwidth Hangul InterIndic Jamo Kannada + Katakana Latin Lower Malayalam NumericPinyin Oriya Publishing Spacedhan Tamil Telugu Thaana Thai ThaiLogical ThaiSemi Title Traditional Upper + XSampa am ch_FONIPA cs_FONIPA dsb_FONIPA es_419_FONIPA es_FONIPA ja ko la_FONIPA pl_FONIPA ro_FONIPA ru sk_FONIPA tlh_FONIPA uz_Latn yo_BJ zh + $alt + $integer + $locale + + locale + + $append + $_bcp47_ca + . + $_bcp47_collation|$collationPrivate + $version + uiListOrMenu stand-alone + [a-zA-Z-]+ + [0-9A-Fa-f]{4,6} + $currencyDate + $_bcp47_cu + $_bcp47_cu + standard accounting + $_bcp47_nu + [0-9]+ + format stand-alone + years months days dayParts zodiacs solarTerms + $format + full long medium short + sun mon tue wed thu fri sat + abbreviated narrow short wide + format gregorian long medium pinyin standard stroke wide + [0-9]+ + era year year-short year-narrow quarter quarter-short + quarter-narrow month month-short month-narrow week week-short week-narrow day day-short day-narrow weekday dayperiod hour hour-short hour-narrow + minute minute-short minute-narrow second second-short second-narrow zone sun sun-short sun-narrow mon mon-short mon-narrow tue tue-short + tue-narrow wed wed-short wed-narrow thu thu-short thu-narrow fri fri-short fri-narrow sat sat-short sat-narrow + sun mon tue wed thu fri sat + $genDate + $_region + $hourStyle + $hourStyle + $_region + [0-9]+ + $_bcp47_currency|$defaultCurrencyInfo + [0-9]+ + $_bcp47_keys + $_script + $_region + $localeOrDeprecated + $_variant + + [a-zA-Z0-9]{1,3}(_[A-Za-z0-9]{2,8})* + + .+ + $_bcp47_timezone + iana + utf-8 + $_bcp47_numbers + algorithmic numeric + [0-7] + 1 2 3 4 5 6 7 8 9 10 11 12 13 + leap standardAfterLeap combined + format stand-alone numeric + abbreviated narrow wide all + abbreviated narrow wide + standard atLeast range 1000 10000 100000 1000000 10000000 + 10000000 100000000 1000000000 10000000000 100000000000 1000000000000 10000000000000 100000000000000 + $_bcp47_timezone + 1 2 3 4 + $reference + $_region + -?[0-9]+ + future past + primary secondary tertiary + $double + $_script|$scriptNonUnicode + $_script + $_script + GraphemeClusterBreak LineBreak SentenceBreak WordBreak + $_bcp47_nu + $_region + [A-Z]{2,3}|[0-9]{3} + $_region + $_bcp47_keys + + $_unit + $variableID + $_variant + [A-Za-z0-9]{4,8} + $_variant|$AX + $version + $time + $_bcp47_timezone + $_region + $_bcp47_timezone + $_region + $_bcp47_timezone + $emoji + $exemplar + calendar_field currencyName currencyName_count + day_format_except_narrow day_narrow day_standalone_except_narrow era_abbr era_name era_narrow key keyValue language metazone_long + month_format_except_narrow month_narrow month_standalone_except_narrow quarter_abbreviated quarter_format_wide quarter_narrow + quarter_standalone_wide relative script symbol territory unit_pattern variant zone_exemplarCity zone_long zone_short + language script territory + + per + E EEEEd EHm EHms Ed Ehm Ehms Gy GyM + GyMMM GyMMMEEEEd GyMMMEd GyMMMM GyMMMMEd GyMMMMd GyMMMd GyMd H HHmm HHmmZ HHmmss Hm HmZ Hmm Hms Hmsv Hmsvvvv Hmv M MEEEEd MEd MMM MMMEEEEd MMMEd + MMMM MMMMEEEEd MMMMEd MMMMd MMMMdd MMMd MMMdd MMd MMdd Md Mdd UM UMMM UMMMd UMd d h hhmm hhmmss hm hms hmsv hmsvvvv hmv mmss ms y yM yMEEEEd + yMEd yMM yMMM yMMMEEEEd yMMMEd yMMMM yMMMMEEEEd yMMMMEd yMMMMccccd yMMMMd yMMMd yMMdd yMd yQ yQQQ yQQQQ yyyy yyyyM yyyyMEEEEd yyyyMEd yyyyMM + yyyyMMM yyyyMMMEEEEd yyyyMMMEd yyyyMMMM yyyyMMMMEd yyyyMMMMccccd yyyyMMMMd yyyyMMMd yyyyMMdd yyyyMd yyyyQQQ yyyyQQQQ + format stand-alone + hm hms ms + H M a d h m y + H Hm Hmv Hv M MEd MMM MMMEEEEd MMMEd MMMM MMMMEd + MMMMd MMMd Md d h hm hmv hv y yM yMEd yMMM yMMMEEEEd yMMMEd yMMMM yMMMMEEEEd yMMMMEd yMMMMd yMMMd yMd + unit unit-narrow unit-short + $metazone + $_bcp47_nu + M=romanlow d=hanidays hanidec hebr + 1,000 100 1000 100000 160,000 20 3,200,000 400 5 + 64,000,000 8000 + x|x.x|0.x|-x|0|[1-9][0-9]* + [a-z0-9]+([-_][a-z0-9]+)* + NumberingSystemRules OrdinalRules SpelloutRules + standard + BGN Numeric Tone UNGEGN x-Accents x-Fullwidth + x-Halfwidth x-Jamo x-Pinyin x-Publishing + $_bcp47_value + $double + $locale|$coverageSpecial + + 20 4 8 + _q aliases allowed alt before + before from to contains type count date day digits hex id iso3166 iso4217 key multizone number numberSystem path preferred regions registry + replacement replacement type request rounding scripts source territories territory time type uri validSubLocales value variants version + supplementalData + alias appendItem calendar character + collation collations contextTransform contextTransformUsage cp currency currencyFormat currencyFormats decimalFormats percentFormats + scientificFormats cyclicName cyclicNameContext cyclicNameSet dateFormat dateTimeFormat decimalFormat percentFormat scientificFormat timeFormat + dateFormatLength timeFormatLength dateTimeFormatLength decimalFormatLength scientificFormatLength percentFormatLength currencyFormatLength day + dayWidth default era field firstDay weekendEnd weekendStart generation group hours info key language languageAlias mapTimezones mapZone mapping + minDays month monthPattern monthPatternContext monthPatternWidth monthWidth quarterWidth cyclicNameWidth numberingSystem pattern + preferenceOrdering quarter reference region relative relativeTime reset rule script scriptAlias segmentation supplementalData symbols territory + territoryAlias type unit variable variant variantAlias version weekendEnd weekendStart zone zoneFormatting zoneItem + given + bcp47 choice list locale path regex + _q characters lines time type version + 00:00 24:00 left-to-right standard + top-to-bottom + collation currency dateFormat + dateTimeFormat decimalFormat ldml orientation pattern percentFormat scientificFormat timeFormat weekendEnd weekendStart + identity supplementalData cldrTest + collation transform identity supplementalData cldrTest collation transform + $_bcp47_calendar + $_bcp47_calendar + $_region + 001 AC AD AE AF AG AI AL AM AO AQ + AR AS AT AU AW AX AZ BA BB BD BE BF BG BH BI BJ BL BM BN BO BQ BR BS BT BW BY BZ CA CC CD CF CG CH CI CK CL CM CN CO CR CU CV CW CX CY CZ DE DJ DK + DM DO DZ EC EE EG EH ER ES ET FI FJ FK FM FO FR GA GB GD GE GF GG GH GI GL GM GN GP GQ GR GS GT GU GW GY HK HN HR HT HU ID IE IL IM IN IO IQ IR IS + IT JE JM JO JP KE KG KH KI KM KN KP KR KW KY KZ LA LB LC LI LK LR LS LT LU LV LY MA MC MD ME MF MG MH MK ML MM MN MO MP MQ MR MS MT MU MV MW MX MY + MZ NA NC NE NF NG NI NL NO NP NR NU NZ OM PA PE PF PG PH PK PL PM PN PR PS PT PW PY QA RE RO RS RU RW SA SB SC SD SE SG SH SI SJ SK SL SM SN SO SR + SS ST SV SX SY SZ TC TD TF TG TH TJ TK TL TM TN TO TR TT TV TW TZ UA UG UM US UY UZ VA VC VE VG VI VN VU WF WS XK YE YT ZA ZM ZW + %CJK_Languages %arabextLanguages + %collationType80TopLangs %devaLanguages %phonebookCollationLanguages %traditionalCollationLanguages (ja|ko|vi|zh) (ja|vi|zh) ar dz en ja ko si sv + vai yi zh + Arab Armn Beng Deva Ethi Geor Grek + Gujr Guru Hebr Khmr Knda Laoo Mlym Mong Mymr Orya Taml Telu Thai Tibt + %chineseCalendarTerritories + %islamicCalendarTerritories %persianCalendarTerritories AR AU BR CA CF CG CM EG ET EU GA GB ID IE IL IN JP KR KZ MX NG RU TD TH TW US + + basic core minimal moderate modern posix + + + 0|[1-9][0-9]* + $_bcp47_cu + $timeHour + $timeHour + $timeHour + $timeHour + + selection + $locale + $locale + + + + + + $date + $date + 0|[1-9][0-9]{0,2} + + $_region + + deprecated macroregion private_use regular + special + currency language region script subdivision unit variant + 0 + 0 5 + + $localeStar + $percent + $localeStar + written + $percentFraction + R[0-9]+ + $locale + $percent + $localeAll + $localeAll + 7df0004 + 2011n 2015a + $name|$utc + $_region + $_region + $_region + $digit + + $_region + $locale + $locale + $locale + $localeOrDeprecated + $_region + R[0-9]+ + $uri + $skipDefaultLocale + AS AW BL BQ CW GF GP GU HK MF MO + MP MQ NC PF PM PR RE SJ SX TF TW UM VI WF YT + $subdivision + $subdivisionSuffix + [0-9A-Z]{0,3} + $_region + + $integer + $percentFraction + $integer + $_region + [A-Z]{3} + [A-Z]{2} + $internet + [0-9]{3} + $_region + $_bcp47_tz + $transformId + $transformId + BGN Names UNGEGN + $datetime + $metazone + $datetime + \$[a-zA-Z0-9]+([-_][a-zA-Z0-9]+)? + $double + \$Revision.*\$ + \d+\.0\.0 + $_region + $_region + [a-zA-Z0-9]+([/_][a-zA-Z0-9]+)* + $_bcp47_tz + \$Date.*\$ + calendar colAlternate colBackwards colCaseFirst + colCaseLevel colHiraganaQuaternary colNormalization colNumeric colReorder colStrength collation currency hours measure numbers timezone + variableTop + + t + $_bcp47_keys + $versionDotted + + + + cnsha cnurc islamic-civil nzakl usden + $versionDotted + $double + \$Revision.*\$ + $_subdivision + $_region + $localeOrDeprecated + + TODO choice list locale regex unicodeSet + dayPeriodFormat + pluralOrdinal + pluralOrdinal + pluralOrdinal + pluralOrdinal + + + A00 A01 A02 A03 A04 A05 B00 B01 B02 B03 B04 B05 B06 B07 B08 + B09 B10 B11 B12 C01 C02 C03 C04 C05 C06 C07 C08 C09 C10 C11 C12 D01 D02 D03 D04 D05 D06 D07 D08 D09 D10 D11 D12 D13 E00 E01 E02 E03 E04 E05 E06 + E07 E08 E09 E10 E11 E12 E13 + + + + + + simple + 28 + + + A03 B00 B01 B02 B03 B04 B05 B06 B07 B08 B09 B10 B11 C01 C02 + C03 C04 C05 C06 C07 C08 C09 C10 C11 C12 D01 D02 D03 D04 D05 D06 D07 D08 D09 D10 D11 D12 D13 E00 E01 E02 E03 E04 E05 E06 E07 E08 E09 E10 E11 E12 + E13 + 0 1 10 11 115 12 13 132 14 15 16 17 18 19 2 20 21 22 23 + 24 25 26 27 28 29 3 30 31 32 33 34 35 36 37 38 39 4 40 41 42 43 44 45 46 47 48 49 5 50 51 52 53 54 55 56 57 58 59 6 60 61 65 7 8 86 9 93 94 97 + android chromeos osx windows + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/characters.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/characters.xml similarity index 99% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/characters.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/characters.xml index 94f6917b008..c11744af85e 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/characters.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/characters.xml @@ -7,8 +7,7 @@ For terms of use, see http://www.unicode.org/copyright.html --> - - + @@ -224,6 +223,9 @@ For terms of use, see http://www.unicode.org/copyright.html RUB + + GEL + Rx diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/coverageLevels.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/coverageLevels.xml similarity index 84% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/coverageLevels.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/coverageLevels.xml index 77cf309fc6f..0111c44abbd 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/coverageLevels.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/coverageLevels.xml @@ -7,8 +7,7 @@ For terms of use, see http://www.unicode.org/copyright.html --> - - + @@ -18,13 +17,16 @@ For terms of use, see http://www.unicode.org/copyright.html - + + + + - + @@ -38,18 +40,20 @@ For terms of use, see http://www.unicode.org/copyright.html + - + - + + @@ -57,12 +61,14 @@ For terms of use, see http://www.unicode.org/copyright.html - - + + + + @@ -70,13 +76,14 @@ For terms of use, see http://www.unicode.org/copyright.html + - - + + @@ -85,9 +92,11 @@ For terms of use, see http://www.unicode.org/copyright.html - - - + + + + + @@ -105,25 +114,29 @@ For terms of use, see http://www.unicode.org/copyright.html - + + + - - + + + + @@ -139,14 +152,13 @@ For terms of use, see http://www.unicode.org/copyright.html - + - + - @@ -175,43 +187,43 @@ For terms of use, see http://www.unicode.org/copyright.html - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -390,7 +402,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -421,17 +433,27 @@ For terms of use, see http://www.unicode.org/copyright.html + - + - - - + + + + + + + + + + + + @@ -493,40 +515,49 @@ For terms of use, see http://www.unicode.org/copyright.html - + + - + + + - - + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/dayPeriods.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/dayPeriods.xml new file mode 100644 index 00000000000..4c7ee68e311 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/dayPeriods.xml @@ -0,0 +1,1144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/genderList.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/genderList.xml similarity index 88% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/genderList.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/genderList.xml index 0b937e3a99c..9feace3412c 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/genderList.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/genderList.xml @@ -7,8 +7,7 @@ For terms of use, see http://www.unicode.org/copyright.html --> - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/languageInfo.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/languageInfo.xml similarity index 57% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/languageInfo.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/languageInfo.xml index 557e2fdbc05..3a8b2f6d276 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/languageInfo.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/languageInfo.xml @@ -1,166 +1,181 @@ - - + - - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + - - + + + - - - - - - - + + + + + - - - - - + + + + - - - + + + - + \ No newline at end of file diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/likelySubtags.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/likelySubtags.xml similarity index 95% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/likelySubtags.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/likelySubtags.xml index 304d688b2ab..a2fe3c3bbc9 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/likelySubtags.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/likelySubtags.xml @@ -1,7 +1,7 @@ @@ -11,8 +11,7 @@ data using the GenerateMaximalLocales tool. Under normal circumstances, this fil not be patched by hand, as any changes made in that fashion may be lost. --> - - + @@ -36,6 +35,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -72,6 +73,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -84,14 +87,14 @@ not be patched by hand, as any changes made in that fashion may be lost. + + - - @@ -114,6 +117,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -132,10 +137,10 @@ not be patched by hand, as any changes made in that fashion may be lost. + + - - @@ -302,6 +307,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -352,10 +359,14 @@ not be patched by hand, as any changes made in that fashion may be lost. + + + + @@ -384,6 +395,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -451,7 +464,7 @@ not be patched by hand, as any changes made in that fashion may be lost. - + @@ -470,10 +483,12 @@ not be patched by hand, as any changes made in that fashion may be lost. - - + + + + @@ -499,7 +514,7 @@ not be patched by hand, as any changes made in that fashion may be lost. - + @@ -587,7 +602,7 @@ not be patched by hand, as any changes made in that fashion may be lost. - + @@ -826,10 +841,14 @@ not be patched by hand, as any changes made in that fashion may be lost. + + + + @@ -852,8 +871,8 @@ not be patched by hand, as any changes made in that fashion may be lost. - - + + @@ -941,15 +960,15 @@ not be patched by hand, as any changes made in that fashion may be lost. - + - - + + @@ -970,6 +989,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -1034,8 +1055,8 @@ not be patched by hand, as any changes made in that fashion may be lost. - - + + @@ -1122,6 +1143,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -1218,6 +1241,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -1322,6 +1347,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -1406,6 +1433,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -1456,8 +1485,16 @@ not be patched by hand, as any changes made in that fashion may be lost. + + + + + + + + @@ -1500,6 +1537,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -1725,7 +1764,7 @@ not be patched by hand, as any changes made in that fashion may be lost. - + @@ -1960,8 +1999,12 @@ not be patched by hand, as any changes made in that fashion may be lost. + + + + @@ -1988,6 +2031,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -2006,6 +2051,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -2086,6 +2133,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -2096,6 +2145,10 @@ not be patched by hand, as any changes made in that fashion may be lost. + + + + @@ -2110,10 +2163,16 @@ not be patched by hand, as any changes made in that fashion may be lost. + + + + + + @@ -2132,8 +2191,8 @@ not be patched by hand, as any changes made in that fashion may be lost. - - + + @@ -2196,6 +2255,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -2208,10 +2269,12 @@ not be patched by hand, as any changes made in that fashion may be lost. - - + + + + @@ -2222,6 +2285,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -2232,6 +2297,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -2262,6 +2329,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + @@ -2290,6 +2359,8 @@ not be patched by hand, as any changes made in that fashion may be lost. + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/metaZones.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/metaZones.xml similarity index 99% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/metaZones.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/metaZones.xml index aa4557fd0d9..70f758307ee 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/metaZones.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/metaZones.xml @@ -6,8 +6,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic For terms of use, see http://www.unicode.org/copyright.html --> - - + @@ -380,6 +379,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + @@ -552,7 +555,8 @@ For terms of use, see http://www.unicode.org/copyright.html - + + @@ -843,7 +847,8 @@ For terms of use, see http://www.unicode.org/copyright.html - + + @@ -974,7 +979,8 @@ For terms of use, see http://www.unicode.org/copyright.html - + + @@ -1795,6 +1801,7 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/numberingSystems.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/numberingSystems.xml similarity index 62% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/numberingSystems.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/numberingSystems.xml index 6d18cdd1539..a95e0df09df 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/numberingSystems.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/numberingSystems.xml @@ -6,18 +6,19 @@ CLDR data files are interpreted according to the LDML specification (http://unic For terms of use, see http://www.unicode.org/copyright.html --> - - + + - - + + + @@ -33,6 +34,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -45,28 +47,40 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + + + + + - + - - + + + + - + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/ordinals.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/ordinals.xml similarity index 94% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/ordinals.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/ordinals.xml index 1f287f145fd..59f47808dd2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/ordinals.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/ordinals.xml @@ -1,13 +1,12 @@ - - + @@ -23,7 +22,7 @@ For terms of use, see http://www.unicode.org/copyright.html n % 10 = 1,2 and n % 100 != 11,12 @integer 1, 2, 21, 22, 31, 32, 41, 42, 51, 52, 61, 62, 71, 72, 81, 82, 101, 1001, … @integer 0, 3~17, 100, 1000, 10000, 100000, 1000000, … - + n = 1 @integer 1 @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, … @@ -38,6 +37,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + n % 10 = 2,3 and n % 100 != 12,13 @integer 2, 3, 22, 23, 32, 33, 42, 43, 52, 53, 62, 63, 72, 73, 82, 83, 102, 1002, … + @integer 0, 1, 4~17, 100, 1000, 10000, 100000, 1000000, … + n % 10 = 3 and n % 100 != 13 @integer 3, 23, 33, 43, 53, 63, 73, 83, 103, 1003, … @integer 0~2, 4~16, 100, 1000, 10000, 100000, 1000000, … diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/pluralRanges.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/pluralRanges.xml similarity index 98% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/pluralRanges.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/pluralRanges.xml index 64612f11179..f17c9318318 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/pluralRanges.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/pluralRanges.xml @@ -3,8 +3,7 @@ - - + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/plurals.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/plurals.xml similarity index 98% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/plurals.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/plurals.xml index e11b220927d..cdd0b529623 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/plurals.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/plurals.xml @@ -1,13 +1,12 @@ - - + @@ -47,7 +46,7 @@ For terms of use, see http://www.unicode.org/copyright.html n = 0..2 and n != 2 @integer 0, 1 @decimal 0.0, 1.0, 0.00, 1.00, 0.000, 1.000, 0.0000, 1.0000 @integer 2~17, 100, 1000, 10000, 100000, 1000000, … @decimal 0.1~0.9, 1.1~1.7, 10.0, 100.0, 1000.0, 10000.0, 100000.0, 1000000.0, … - + n = 1 @integer 1 @decimal 1.0, 1.00, 1.000, 1.0000 @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, … @decimal 0.0~0.9, 1.1~1.6, 10.0, 100.0, 1000.0, 10000.0, 100000.0, 1000000.0, … @@ -227,6 +226,5 @@ For terms of use, see http://www.unicode.org/copyright.html n = 6 @integer 6 @decimal 6.0, 6.00, 6.000, 6.0000 @integer 4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, … @decimal 0.1~0.9, 1.1~1.7, 10.0, 100.0, 1000.0, 10000.0, 100000.0, 1000000.0, … - diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/rgScope.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/rgScope.xml new file mode 100644 index 00000000000..a7f191b179c --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/rgScope.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/subdivisions.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/subdivisions.xml new file mode 100644 index 00000000000..61552ff20ba --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/subdivisions.xml @@ -0,0 +1,428 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/supplementalData.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/supplementalData.xml similarity index 83% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/supplementalData.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/supplementalData.xml index 5c8174d0b7c..74b6e6eab25 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/supplementalData.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/supplementalData.xml @@ -7,8 +7,7 @@ For terms of use, see http://www.unicode.org/copyright.html --> - - + @@ -1209,17 +1208,17 @@ XXX Code for transations where no currency is involved + + - + - + - - @@ -1316,9 +1315,7 @@ XXX Code for transations where no currency is involved - - - + @@ -1327,7 +1324,7 @@ XXX Code for transations where no currency is involved - + @@ -1337,6 +1334,7 @@ XXX Code for transations where no currency is involved + @@ -1350,6 +1348,8 @@ XXX Code for transations where no currency is involved + + @@ -1368,6 +1368,7 @@ XXX Code for transations where no currency is involved + @@ -1391,6 +1392,7 @@ XXX Code for transations where no currency is involved + @@ -1468,7 +1470,7 @@ XXX Code for transations where no currency is involved - + @@ -1483,11 +1485,12 @@ XXX Code for transations where no currency is involved + - + @@ -1501,12 +1504,12 @@ XXX Code for transations where no currency is involved - + - + @@ -1525,6 +1528,7 @@ XXX Code for transations where no currency is involved + @@ -1533,7 +1537,7 @@ XXX Code for transations where no currency is involved - + @@ -1547,6 +1551,7 @@ XXX Code for transations where no currency is involved + @@ -1613,7 +1618,7 @@ XXX Code for transations where no currency is involved - + @@ -1676,9 +1681,10 @@ XXX Code for transations where no currency is involved + - + @@ -1736,6 +1742,7 @@ XXX Code for transations where no currency is involved + @@ -1858,10 +1865,12 @@ XXX Code for transations where no currency is involved + + @@ -1876,6 +1885,7 @@ XXX Code for transations where no currency is involved + @@ -1926,7 +1936,7 @@ XXX Code for transations where no currency is involved - + @@ -2016,13 +2026,13 @@ XXX Code for transations where no currency is involved - + - + @@ -2072,6 +2082,7 @@ XXX Code for transations where no currency is involved + @@ -2086,10 +2097,12 @@ XXX Code for transations where no currency is involved + + @@ -2120,7 +2133,9 @@ XXX Code for transations where no currency is involved + + @@ -2154,6 +2169,7 @@ XXX Code for transations where no currency is involved + @@ -2205,6 +2221,7 @@ XXX Code for transations where no currency is involved + @@ -2287,6 +2304,7 @@ XXX Code for transations where no currency is involved + @@ -2321,9 +2339,11 @@ XXX Code for transations where no currency is involved - + + + @@ -2341,22 +2361,22 @@ XXX Code for transations where no currency is involved - + - + - + - + @@ -2364,46 +2384,47 @@ XXX Code for transations where no currency is involved - - + + + - + - + - + - + - + - + - + - + - + - + @@ -2411,13 +2432,13 @@ XXX Code for transations where no currency is involved - + - + @@ -2425,7 +2446,7 @@ XXX Code for transations where no currency is involved - + @@ -2433,7 +2454,7 @@ XXX Code for transations where no currency is involved - + @@ -2441,10 +2462,10 @@ XXX Code for transations where no currency is involved - + - + @@ -2452,9 +2473,10 @@ XXX Code for transations where no currency is involved + - + @@ -2462,43 +2484,44 @@ XXX Code for transations where no currency is involved - - + + - + - + - + - + + - + - - + + - + - + - + - + @@ -2509,45 +2532,46 @@ XXX Code for transations where no currency is involved - + + - + - + - + - + - + - + - + - + @@ -2566,18 +2590,18 @@ XXX Code for transations where no currency is involved - + - + - + - + @@ -2588,27 +2612,28 @@ XXX Code for transations where no currency is involved - + - + - + + - + - + @@ -2616,15 +2641,15 @@ XXX Code for transations where no currency is involved - - + + - + - + @@ -2649,10 +2674,11 @@ XXX Code for transations where no currency is involved - - + + - + + @@ -2678,20 +2704,20 @@ XXX Code for transations where no currency is involved - + - + - + - + - + @@ -2700,26 +2726,27 @@ XXX Code for transations where no currency is involved - + - + - + - + + @@ -2728,6 +2755,7 @@ XXX Code for transations where no currency is involved + @@ -2735,64 +2763,65 @@ XXX Code for transations where no currency is involved - + - + - + - + + - + - + - + - + - + - + - + - + - + - + - + @@ -2801,7 +2830,7 @@ XXX Code for transations where no currency is involved - + @@ -2810,7 +2839,7 @@ XXX Code for transations where no currency is involved - + @@ -2820,39 +2849,39 @@ XXX Code for transations where no currency is involved - + - - + + - + - + - + - - + + - + - - + + - + - + @@ -2868,11 +2897,11 @@ XXX Code for transations where no currency is involved - + - + @@ -2890,10 +2919,10 @@ XXX Code for transations where no currency is involved - + - + @@ -2907,10 +2936,10 @@ XXX Code for transations where no currency is involved - + - + @@ -2920,37 +2949,39 @@ XXX Code for transations where no currency is involved - + - + + - + - + - + - + - + + - + @@ -2960,45 +2991,46 @@ XXX Code for transations where no currency is involved - + - + - + - + - + - + + - + - + - + - - + + - + @@ -3007,10 +3039,10 @@ XXX Code for transations where no currency is involved - + - + @@ -3041,11 +3073,11 @@ XXX Code for transations where no currency is involved - + - + @@ -3056,14 +3088,14 @@ XXX Code for transations where no currency is involved - - + + - + - + @@ -3118,7 +3150,7 @@ XXX Code for transations where no currency is involved - + @@ -3142,23 +3174,25 @@ XXX Code for transations where no currency is involved - + - + - + + - + + - + - - + + @@ -3167,18 +3201,19 @@ XXX Code for transations where no currency is involved + - + - + - + - + @@ -3194,28 +3229,28 @@ XXX Code for transations where no currency is involved - + - + - + - + - + - + @@ -3237,105 +3272,107 @@ XXX Code for transations where no currency is involved - + - + - + - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + - + - + - + @@ -3348,39 +3385,39 @@ XXX Code for transations where no currency is involved - + - + - + - + - + - + - + - + @@ -3396,47 +3433,47 @@ XXX Code for transations where no currency is involved - + - + - + - - + + - + - + - + - + - + - + @@ -3444,17 +3481,17 @@ XXX Code for transations where no currency is involved - + - + - + @@ -3464,7 +3501,7 @@ XXX Code for transations where no currency is involved - + @@ -3475,9 +3512,9 @@ XXX Code for transations where no currency is involved - + - + @@ -3488,35 +3525,35 @@ XXX Code for transations where no currency is involved - - + + - + - + - - + + - + - + - + - + - + @@ -3534,12 +3571,15 @@ XXX Code for transations where no currency is involved - + - + + + + @@ -3547,14 +3587,13 @@ XXX Code for transations where no currency is involved - - + - + @@ -3562,6 +3601,7 @@ XXX Code for transations where no currency is involved + @@ -3577,52 +3617,52 @@ XXX Code for transations where no currency is involved - + - + - - - + + + - + - + - + - + - + - + - + - + @@ -3641,10 +3681,10 @@ XXX Code for transations where no currency is involved - - + + - + @@ -3656,6 +3696,7 @@ XXX Code for transations where no currency is involved + @@ -3668,7 +3709,7 @@ XXX Code for transations where no currency is involved - + @@ -3679,45 +3720,46 @@ XXX Code for transations where no currency is involved - - + + - + - + - + - + + - + - + - + - + - + - + @@ -3728,7 +3770,7 @@ XXX Code for transations where no currency is involved - + @@ -3738,7 +3780,7 @@ XXX Code for transations where no currency is involved - + @@ -3776,42 +3818,46 @@ XXX Code for transations where no currency is involved - + - + - + - + - + - + - - + + + + + + - + - + - + @@ -3819,20 +3865,20 @@ XXX Code for transations where no currency is involved - + - + - + - + - + @@ -3840,81 +3886,90 @@ XXX Code for transations where no currency is involved - + - + - + - + - - - + + + + + + + + + + + - + - + - + + - + - + - + - + - + - + - + - + - + - + - + @@ -3929,7 +3984,7 @@ XXX Code for transations where no currency is involved - + @@ -3939,32 +3994,33 @@ XXX Code for transations where no currency is involved - + - + - + - + - + + @@ -3975,26 +4031,26 @@ XXX Code for transations where no currency is involved - - - - + + + + - + - + - + - - - + + + - + - + @@ -4012,7 +4068,7 @@ XXX Code for transations where no currency is involved - + @@ -4025,7 +4081,7 @@ XXX Code for transations where no currency is involved - + @@ -4038,12 +4094,12 @@ XXX Code for transations where no currency is involved - + - + - + @@ -4065,60 +4121,60 @@ XXX Code for transations where no currency is involved - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + @@ -4128,7 +4184,7 @@ XXX Code for transations where no currency is involved - + @@ -4141,15 +4197,15 @@ XXX Code for transations where no currency is involved - + - + - + @@ -4520,7 +4576,7 @@ XXX Code for transations where no currency is involved - + @@ -4610,52 +4666,34 @@ XXX Code for transations where no currency is involved - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4668,6 +4706,131 @@ XXX Code for transations where no currency is involved + + + hectare + acre + + + hectare + acre + + + hectare + acre + + + + milligram-per-deciliter + millimole-per-liter + + + liter-per-100kilometers + liter-per-kilometer + mile-per-gallon-imperial + liter-per-kilometer + + mile-per-gallon + + + minute second + + + year-person month-person + + + minute second + + + foodcalorie + + + kilocalorie + + + centimeter + meter centimeter + meter centimeter + foot inch + inch + + + centimeter + inch + inch + + + millimeter + centimeter + inch + + + kilometer + mile + mile-scandinavian + + + meter + yard + foot + + + centimeter + inch + + + meter + foot inch + meter centimeter + + + kilometer + meter + mile + + + meter + foot + + + kilogram + stone pound + pound + + + gram + kilogram gram + pound ounce + + + hectopascal + millibar + millimeter-of-mercury + inch-hg + + + kilometer-per-hour + mile-per-hour + + + kilometer-per-hour + meter-per-second + mile-per-hour + + + celsius + fahrenheit + + + celsius + fahrenheit + + + liter + gallon + + + @@ -4919,7 +5082,7 @@ XXX Code for transations where no currency is involved - + @@ -4978,192 +5141,194 @@ XXX Code for transations where no currency is involved - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + + @@ -5273,7 +5438,7 @@ XXX Code for transations where no currency is involved - Not widely used; set to 10%. The lingua franca of 80% of the population [missing] - Also called Mòoré + and https://en.wikipedia.org/wiki/Mru_language - More than 95% of Pakistanis can speak or understand Urdu as their second or third language 15.42% of population http://www.stoletie.ru/vzglyad/derusifikacija_nabirajet_oboroty_934.htm @@ -5377,6 +5542,7 @@ XXX Code for transations where no currency is involved http://ec.europa.eu/public_opinion/archives/ebs/ebs_243_en.pdf Europeans and their languages survey, page 7 [missing] 1st lang literacy 8% + low literacy percentage calculated from http://www.spanishcourses.info/Mains/SpanishSpoken_EN.htm , see also http://www.spanishseo.org/resources/worldwide-spanish-speaking-population [missing] www.amar.org.ir @@ -5386,7 +5552,6 @@ XXX Code for transations where no currency is involved This is base pop for """"""""fub"""""""" lang code; ff shows as a macrolanguage [missing] (could be higher if 2nd lang included; no data yet) - Modern use of Arabic (Jawi) seems to be minimal, but is co-official with ms_Latn; set to 5% for now. ​http://www.interlingua.com/statutos leading Interlingua assoc """"""""Union Mundial pro Interlingua"""""""" registered French non-profit - real user pop figure is unknown but low [missing] pop 7k. Figure is questionable writing pop artificially set to 5% see also http://en.wikipedia.org/wiki/Lower_Sorbian @@ -5396,7 +5561,7 @@ XXX Code for transations where no currency is involved no other info available for now https://www.cia.gov/cia/publications/factbook/geos/gt.html Spanish official language also called Kamta in India - (""""""""syr"""""""" is a macrolang containing """"""""cld"""""""" and """"""""aii"""""""") + Modern use of Arabic (Jawi) seems to be minimal, but is co-official with ms; set to 5% for now. [missing] [missing] [missing] @@ -5465,7 +5630,6 @@ XXX Code for transations where no currency is involved - est 50% pop of Veneto area 5% mainly spoken [missing] - No estimate available [missing] Moribund language [missing] @@ -5474,5 +5638,21 @@ XXX Code for transations where no currency is involved [missing] [missing] [missing] + Also called Moré + Newly designated official, not so widely used + [missing] + [missing] + syr is a macrolang containing cld and aii) + [missing] + [missing] + [missing] + [missing] + [missing] + about 50% of population in Guangzhou Prov + Widely spoken less written, and most speakers know standard German as well + and https://www.ethnologue.com/language/yue + [missing] + [missing] + [missing] diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/supplementalMetadata.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/supplementalMetadata.xml new file mode 100644 index 00000000000..ddd39ee1697 --- /dev/null +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/supplementalMetadata.xml @@ -0,0 +1,1244 @@ + + + + + + + + + attributeValues attributes base comment context exception extend i ic languageMatch last_non_ignorable last_secondary_ignorable last_tertiary_ignorable optimize p pc pluralRule rbnfrule reset rules ruleset s sc settings substitute suppress_contractions suppression t tRule tc variable x + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/telephoneCodeData.xml b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/telephoneCodeData.xml similarity index 99% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/telephoneCodeData.xml rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/telephoneCodeData.xml index 7f6eff935a0..b08c5025bd2 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/common/supplemental/telephoneCodeData.xml +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/common/supplemental/telephoneCodeData.xml @@ -6,8 +6,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic For terms of use, see http://www.unicode.org/copyright.html --> - - + - - - + - + @@ -34,22 +32,21 @@ For terms of use, see http://www.unicode.org/copyright.html - + - - + - + - + @@ -95,6 +92,7 @@ For terms of use, see http://www.unicode.org/copyright.html + @@ -177,10 +175,6 @@ For terms of use, see http://www.unicode.org/copyright.html - - - - @@ -190,6 +184,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + @@ -334,7 +332,6 @@ For terms of use, see http://www.unicode.org/copyright.html - @@ -350,7 +347,8 @@ For terms of use, see http://www.unicode.org/copyright.html - + + @@ -527,7 +525,6 @@ For terms of use, see http://www.unicode.org/copyright.html - @@ -544,7 +541,7 @@ For terms of use, see http://www.unicode.org/copyright.html - + @@ -568,6 +565,10 @@ For terms of use, see http://www.unicode.org/copyright.html + + + + @@ -578,12 +579,11 @@ For terms of use, see http://www.unicode.org/copyright.html - - + @@ -631,6 +631,7 @@ For terms of use, see http://www.unicode.org/copyright.html + diff --git a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/unicode-license.txt b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/unicode-license.txt similarity index 97% rename from jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/unicode-license.txt rename to jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/unicode-license.txt index 9c1469372fa..d277a23948a 100644 --- a/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/27_0_0/unicode-license.txt +++ b/jdk/src/jdk.localedata/share/classes/sun/util/cldr/resources/unicode-license.txt @@ -17,7 +17,7 @@ FILES OR SOFTWARE. COPYRIGHT AND PERMISSION NOTICE - Copyright © 1991-2015 Unicode, Inc. All rights reserved. Distributed under + Copyright © 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 diff --git a/jdk/src/java.base/share/classes/com/sun/nio/file/ExtendedCopyOption.java b/jdk/src/jdk.unsupported/share/classes/com/sun/nio/file/ExtendedCopyOption.java similarity index 85% rename from jdk/src/java.base/share/classes/com/sun/nio/file/ExtendedCopyOption.java rename to jdk/src/jdk.unsupported/share/classes/com/sun/nio/file/ExtendedCopyOption.java index 5c49d16151b..56b6dc36bf7 100644 --- a/jdk/src/java.base/share/classes/com/sun/nio/file/ExtendedCopyOption.java +++ b/jdk/src/jdk.unsupported/share/classes/com/sun/nio/file/ExtendedCopyOption.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2009, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 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,6 +26,7 @@ package com.sun.nio.file; import java.nio.file.CopyOption; +import sun.nio.fs.ExtendedOptions; /** * Defines extended copy options supported on some platforms @@ -39,5 +40,9 @@ public enum ExtendedCopyOption implements CopyOption { * The copy may be interrupted by the {@link Thread#interrupt interrupt} * method. */ - INTERRUPTIBLE, + INTERRUPTIBLE(ExtendedOptions.INTERRUPTIBLE); + + ExtendedCopyOption(ExtendedOptions.InternalOption option) { + option.register(this); + } } diff --git a/jdk/src/java.base/share/classes/com/sun/nio/file/ExtendedOpenOption.java b/jdk/src/jdk.unsupported/share/classes/com/sun/nio/file/ExtendedOpenOption.java similarity index 82% rename from jdk/src/java.base/share/classes/com/sun/nio/file/ExtendedOpenOption.java rename to jdk/src/jdk.unsupported/share/classes/com/sun/nio/file/ExtendedOpenOption.java index 28cef93d8bf..74e7ad185b2 100644 --- a/jdk/src/java.base/share/classes/com/sun/nio/file/ExtendedOpenOption.java +++ b/jdk/src/jdk.unsupported/share/classes/com/sun/nio/file/ExtendedOpenOption.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2009, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 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,6 +26,7 @@ package com.sun.nio.file; import java.nio.file.OpenOption; +import sun.nio.fs.ExtendedOptions; /** * Defines extended open options supported on some platforms @@ -38,13 +39,17 @@ public enum ExtendedOpenOption implements OpenOption { /** * Prevent operations on the file that request read access. */ - NOSHARE_READ, + NOSHARE_READ(ExtendedOptions.NOSHARE_READ), /** * Prevent operations on the file that request write access. */ - NOSHARE_WRITE, + NOSHARE_WRITE(ExtendedOptions.NOSHARE_WRITE), /** * Prevent operations on the file that request delete access. */ - NOSHARE_DELETE; + NOSHARE_DELETE(ExtendedOptions.NOSHARE_DELETE); + + ExtendedOpenOption(ExtendedOptions.InternalOption option) { + option.register(this); + } } diff --git a/jdk/src/java.base/share/classes/com/sun/nio/file/ExtendedWatchEventModifier.java b/jdk/src/jdk.unsupported/share/classes/com/sun/nio/file/ExtendedWatchEventModifier.java similarity index 85% rename from jdk/src/java.base/share/classes/com/sun/nio/file/ExtendedWatchEventModifier.java rename to jdk/src/jdk.unsupported/share/classes/com/sun/nio/file/ExtendedWatchEventModifier.java index 805386dd1ce..e810ba0a2d7 100644 --- a/jdk/src/java.base/share/classes/com/sun/nio/file/ExtendedWatchEventModifier.java +++ b/jdk/src/jdk.unsupported/share/classes/com/sun/nio/file/ExtendedWatchEventModifier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2009, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 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,6 +26,7 @@ package com.sun.nio.file; import java.nio.file.WatchEvent.Modifier; +import sun.nio.fs.ExtendedOptions; /** * Defines extended watch event modifiers supported on some platforms @@ -39,5 +40,9 @@ public enum ExtendedWatchEventModifier implements Modifier { /** * Register a file tree instead of a single directory. */ - FILE_TREE, + FILE_TREE(ExtendedOptions.FILE_TREE); + + ExtendedWatchEventModifier(ExtendedOptions.InternalOption option) { + option.register(this); + } } diff --git a/jdk/src/java.base/share/classes/com/sun/nio/file/SensitivityWatchEventModifier.java b/jdk/src/jdk.unsupported/share/classes/com/sun/nio/file/SensitivityWatchEventModifier.java similarity index 80% rename from jdk/src/java.base/share/classes/com/sun/nio/file/SensitivityWatchEventModifier.java rename to jdk/src/jdk.unsupported/share/classes/com/sun/nio/file/SensitivityWatchEventModifier.java index cc5066697a8..e7561d90d25 100644 --- a/jdk/src/java.base/share/classes/com/sun/nio/file/SensitivityWatchEventModifier.java +++ b/jdk/src/jdk.unsupported/share/classes/com/sun/nio/file/SensitivityWatchEventModifier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2009, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 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,6 +26,7 @@ package com.sun.nio.file; import java.nio.file.WatchEvent.Modifier; +import sun.nio.fs.ExtendedOptions; /** * Defines the sensitivity levels when registering objects with a @@ -38,15 +39,15 @@ public enum SensitivityWatchEventModifier implements Modifier { /** * High sensitivity. */ - HIGH(2), + HIGH(ExtendedOptions.SENSITIVITY_HIGH, 2), /** * Medium sensitivity. */ - MEDIUM(10), + MEDIUM(ExtendedOptions.SENSITIVITY_MEDIUM, 10), /** * Low sensitivity. */ - LOW(30); + LOW(ExtendedOptions.SENSITIVITY_LOW, 30); /** * Returns the sensitivity in seconds. @@ -56,7 +57,9 @@ public enum SensitivityWatchEventModifier implements Modifier { } private final int sensitivity; - private SensitivityWatchEventModifier(int sensitivity) { + private SensitivityWatchEventModifier(ExtendedOptions.InternalOption option, + int sensitivity) { this.sensitivity = sensitivity; + option.register(this, sensitivity); } } diff --git a/jdk/src/jdk.unsupported/share/classes/module-info.java b/jdk/src/jdk.unsupported/share/classes/module-info.java index a13d3428022..5ad248766ae 100644 --- a/jdk/src/jdk.unsupported/share/classes/module-info.java +++ b/jdk/src/jdk.unsupported/share/classes/module-info.java @@ -26,5 +26,6 @@ module jdk.unsupported { exports sun.misc; exports sun.reflect; + exports com.sun.nio.file; } diff --git a/jdk/test/TEST.groups b/jdk/test/TEST.groups index 3c2ee6ca92c..027a139c9bd 100644 --- a/jdk/test/TEST.groups +++ b/jdk/test/TEST.groups @@ -527,9 +527,13 @@ needs_jre = \ java/net/URLConnection/HandleContentTypeWithAttrs.java \ java/security/Security/ClassLoaderDeadlock/ClassLoaderDeadlock.sh \ java/security/Security/ClassLoaderDeadlock/Deadlock.sh \ + java/text/AttributedCharacterIterator/Attribute/ReadResolve.java \ + java/text/AttributedString/TestAttributedStringCtor.java \ + java/text/AttributedString/getRunStartLimitTest.java \ java/util/jar/Manifest/CreateManifest.java \ java/util/logging/TestMainAppContext.java \ java/util/logging/TestLoggingWithMainAppContext.java \ + java/util/TimeZone/DefaultTimeZoneTest.java \ java/text/Bidi/BidiConformance.java \ java/text/Bidi/BidiEmbeddingTest.java \ java/text/Bidi/Bug7042148.java \ @@ -724,6 +728,7 @@ needs_compact2 = \ java/util/Collections/UnmodifiableMapEntrySet.java \ java/util/Comparator/BasicTest.java \ java/util/Comparator/TypeTest.java \ + java/util/Date/TimestampTest.java \ java/util/Iterator/IteratorDefaults.java \ java/util/Iterator/PrimitiveIteratorDefaults.java \ java/util/List/ListDefaults.java \ diff --git a/jdk/test/java/awt/ComponentOrientation/BasicTest.java b/jdk/test/java/awt/ComponentOrientation/BasicTest.java new file mode 100644 index 00000000000..50c0f61eafe --- /dev/null +++ b/jdk/test/java/awt/ComponentOrientation/BasicTest.java @@ -0,0 +1,151 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4108453 4778440 6304780 6396378 + * @summary Basic tests for java.awt.ComponentOrientation + * @build TestBundle TestBundle_es TestBundle_iw + * @build TestBundle1 TestBundle1_ar + * + * @run main BasicTest + */ +/* + * (C) Copyright IBM Corp. 1998 - All Rights Reserved + * + * The original version of this source code and documentation is copyrighted + * and owned by IBM, Inc. These materials are provided under terms of a + * License Agreement between IBM and Sun. This technology is protected by + * multiple US and International patents. This notice and attribution to IBM + * may not be removed. + */ + +import java.awt.ComponentOrientation; +import java.util.Locale; +import java.util.ResourceBundle; + +public class BasicTest { + public static void main(String args[]) { + System.out.println("BasicTest {"); + TestInvariants(); + TestLocale(); + TestBundle(); + + System.out.println("} Pass"); + } + + // TestInvariants + // + // Various no-brainer tests to make sure the constants behave properly + // and so on. + // + static void TestInvariants() { + System.out.println(" TestInvariants {"); + + Assert(ComponentOrientation.LEFT_TO_RIGHT.isLeftToRight(), + "LEFT_TO_RIGHT.isLeftToRight()"); + + Assert(ComponentOrientation.UNKNOWN.isLeftToRight(), + "UNKNOWN.isLeftToRight()"); + + Assert(!ComponentOrientation.RIGHT_TO_LEFT.isLeftToRight(), + "!RIGHT_TO_LEFT.isLeftToRight()"); + + Assert(ComponentOrientation.LEFT_TO_RIGHT.isHorizontal(), + "LEFT_TO_RIGHT.isHorizontal()"); + + Assert(ComponentOrientation.UNKNOWN.isHorizontal(), + "UNKNOWN.isHorizontal()"); + + Assert(ComponentOrientation.RIGHT_TO_LEFT.isHorizontal(), + "RIGHT_TO_LEFT.isHorizontal()"); + + System.out.println(" } Pass"); + } + + // TestLocale + // + // Make sure that getOrientation(Locale) works, and that the appropriate + // system locales are RIGHT_TO_LEFT + // + static void TestLocale() { + System.out.println(" TestLocale {"); + + ComponentOrientation orient = ComponentOrientation.getOrientation(Locale.US); + Assert(orient == ComponentOrientation.LEFT_TO_RIGHT, "US == LEFT_TO_RIGHT"); + + orient = ComponentOrientation.getOrientation(new Locale("iw", "")); + Assert(orient == ComponentOrientation.RIGHT_TO_LEFT, "iw == RIGHT_TO_LEFT"); + + orient = ComponentOrientation.getOrientation(new Locale("ar", "")); + Assert(orient == ComponentOrientation.RIGHT_TO_LEFT, "ar == RIGHT_TO_LEFT"); + + System.out.println(" } Pass"); + } + + // TestBundle + // + // Make sure that getOrientation(ResourceBundle) works right, especially + // the fallback mechasm + // + static void TestBundle() { + System.out.println(" TestBundle {"); + + // This will fall back to the default locale's bundle or root bundle + ResourceBundle rb = ResourceBundle.getBundle("TestBundle", + new Locale("et", "")); + if (rb.getLocale().getLanguage().equals(new Locale("iw").getLanguage())) { + assertEquals(rb, ComponentOrientation.RIGHT_TO_LEFT, "et == RIGHT_TO_LEFT" ); + } else if (rb.getLocale().getLanguage() == "es") { + assertEquals(rb, ComponentOrientation.LEFT_TO_RIGHT, "et == LEFT_TO_RIGHT" ); + } else { + assertEquals(rb, ComponentOrientation.UNKNOWN, "et == UNKNOWN" ); + } + + // We have actual bundles for "es" and "iw", so it should just fetch + // the orientation object out of them + rb = ResourceBundle.getBundle("TestBundle",new Locale("es", "")); + assertEquals(rb, ComponentOrientation.LEFT_TO_RIGHT, "es == LEFT_TO_RIGHT" ); + + rb = ResourceBundle.getBundle("TestBundle", new Locale("iw", "IL")); + assertEquals(rb, ComponentOrientation.RIGHT_TO_LEFT, "iw == RIGHT_TO_LEFT" ); + + // This bundle has no orientation setting at all, so we should get + // the system's default orientation for Arabic + rb = ResourceBundle.getBundle("TestBundle1", new Locale("ar", "")); + assertEquals(rb, ComponentOrientation.RIGHT_TO_LEFT, "ar == RIGHT_TO_LEFT" ); + + System.out.println(" } Pass"); + } + + static void assertEquals(ResourceBundle rb, ComponentOrientation o, String str) { + Assert(ComponentOrientation.getOrientation(rb) == o, str); + } + + static void Assert(boolean condition, String str) { + if (!condition) { + System.err.println(" ASSERT FAILED: " + str); + throw new RuntimeException("Assert Failed: " + str); + } + } +} diff --git a/jdk/test/java/awt/ComponentOrientation/BorderTest.java b/jdk/test/java/awt/ComponentOrientation/BorderTest.java new file mode 100644 index 00000000000..5cc2138bc4b --- /dev/null +++ b/jdk/test/java/awt/ComponentOrientation/BorderTest.java @@ -0,0 +1,117 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4108453 + * @summary Test ComponentOrientation (Bidi) support in BorderLayout + */ +/* + * (C) Copyright IBM Corp. 1998 - All Rights Reserved + * + * The original version of this source code and documentation is copyrighted + * and owned by IBM, Inc. These materials are provided under terms of a + * License Agreement between IBM and Sun. This technology is protected by + * multiple US and International patents. This notice and attribution to IBM + * may not be removed. + */ + +import java.awt.*; +import java.awt.event.*; +import java.applet.Applet; + +public class BorderTest extends Applet { + Panel panel1; + Panel panel2; + + public BorderTest() { + setLayout(new GridLayout(0,2)); + + // Create a panel with a BorderLayout and a bunch of buttons in it + panel1 = new Panel(); + panel1.setLayout(new BorderLayout()); + panel1.add("North", new Button("North")); + panel1.add("South", new Button("South")); + panel1.add("East", new Button("East")); + panel1.add("West", new Button("West")); + panel1.add("Center", new Button("Center")); + add(panel1); + + // Create a panel with a BorderLayout and a bunch of buttons in it + panel2 = new Panel(); + panel2.setLayout(new BorderLayout()); + panel2.add(BorderLayout.BEFORE_FIRST_LINE, new Button("FirstLine")); + panel2.add(BorderLayout.AFTER_LAST_LINE, new Button("LastLine")); + panel2.add(BorderLayout.BEFORE_LINE_BEGINS, new Button("FirstItem")); + panel2.add(BorderLayout.AFTER_LINE_ENDS, new Button("LastItem")); + panel2.add("Center", new Button("Center")); + add(panel2); + + // Create a popup menu for switching between orientations + { + Choice c = new Choice(); + c.addItem("LEFT_TO_RIGHT"); + c.addItem("RIGHT_TO_LEFT"); + c.addItem("UNKNOWN"); + c.addItemListener( new ItemListener() { + public void itemStateChanged(ItemEvent e) { + String item = (String)(e.getItem()); + + ComponentOrientation o = ComponentOrientation.UNKNOWN; + if (item.equals("LEFT_TO_RIGHT")) { + o = ComponentOrientation.LEFT_TO_RIGHT; + } else if (item.equals("RIGHT_TO_LEFT")) { + o = ComponentOrientation.RIGHT_TO_LEFT; + } + panel1.setComponentOrientation(o); + panel2.setComponentOrientation(o); + panel1.layout(); + panel2.layout(); + panel1.repaint(); + panel2.repaint(); + } + } ); + add(c); + } + } + + public static void main(String args[]) { + Frame f = new Frame("BorderTest"); + + f.addWindowListener( new WindowAdapter() { + public void windowClosing(WindowEvent e) { + e.getWindow().hide(); + e.getWindow().dispose(); + System.exit(0); + }; + } ); + + BorderTest BorderTest = new BorderTest(); + BorderTest.init(); + BorderTest.start(); + + f.add("Center", BorderTest); + f.setSize(450, 300); + f.show(); + } +} diff --git a/jdk/test/java/awt/ComponentOrientation/FlowTest.java b/jdk/test/java/awt/ComponentOrientation/FlowTest.java new file mode 100644 index 00000000000..046953ce9cf --- /dev/null +++ b/jdk/test/java/awt/ComponentOrientation/FlowTest.java @@ -0,0 +1,150 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4108453 + * @summary Test ComponentOrientation (Bidi) support in FlowLayout + */ +/* + * (C) Copyright IBM Corp. 1998 - All Rights Reserved + * + * The original version of this source code and documentation is copyrighted + * and owned by IBM, Inc. These materials are provided under terms of a + * License Agreement between IBM and Sun. This technology is protected by + * multiple US and International patents. This notice and attribution to IBM + * may not be removed. + */ + +import java.awt.*; +import java.awt.event.*; +import java.applet.Applet; + +public class FlowTest extends Applet { + Panel panel; + + public FlowTest() { + setLayout(new BorderLayout()); + + // Create a panel with a FlowLayout and a bunch of buttons in it + panel = new Panel(); + panel.setLayout(new FlowLayout(FlowLayout.LEFT)); + panel.add(new Button("one")); + panel.add(new Button("two")); + panel.add(new Button("three")); + panel.add(new Button("four")); + panel.add(new Button("five")); + panel.add(new Button("six")); + panel.add(new Button("seven")); + panel.add(new Button("eight")); + panel.add(new Button("nine")); + panel.add(new Button("ten")); + panel.add(new Button("eleven")); + + add("Center", panel); + + Panel controls = new Panel(); + controls.setLayout(new GridLayout(0, 2)); + + // Menu for setting the alignment of the main FlowLayout panel + { + Choice c = new Choice(); + c.addItem("LEFT"); + c.addItem("CENTER"); + c.addItem("RIGHT"); + c.addItem("LEADING"); + c.addItem("TRAILING"); + c.addItemListener( new ItemListener() { + public void itemStateChanged(ItemEvent e) { + String item = (String)(e.getItem()); + FlowLayout layout = (FlowLayout) panel.getLayout(); + + if (item.equals("LEFT")) { + layout.setAlignment(FlowLayout.LEFT); + } else if (item.equals("CENTER")) { + layout.setAlignment(FlowLayout.CENTER); + } else if (item.equals("RIGHT")) { + layout.setAlignment(FlowLayout.RIGHT); + } else if (item.equals("LEADING")) { + layout.setAlignment(FlowLayout.LEADING); + } else if (item.equals("TRAILING")) { + layout.setAlignment(FlowLayout.TRAILING); + } + panel.layout(); + panel.repaint(); + } + } ); + controls.add(new Label("FlowLayout Alignment:")); + controls.add(c); + } + + // Create a popup menu for switching the Panel between orientations + { + Choice c = new Choice(); + c.addItem("LEFT_TO_RIGHT"); + c.addItem("RIGHT_TO_LEFT"); + c.addItem("UNKNOWN"); + c.addItemListener( new ItemListener() { + public void itemStateChanged(ItemEvent e) { + String item = (String)(e.getItem()); + + if (item.equals("LEFT_TO_RIGHT")) { + panel.setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT); + } else if (item.equals("RIGHT_TO_LEFT")) { + panel.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT); + } else { + panel.setComponentOrientation(ComponentOrientation.UNKNOWN); + } + panel.layout(); + panel.repaint(); + } + } ); + + controls.add(new Label("ComponentOrientation:")); + controls.add(c); + } + + add("South", controls); + + } + + public static void main(String args[]) { + Frame f = new Frame("FlowTest"); + + f.addWindowListener( new WindowAdapter() { + public void windowClosing(WindowEvent e) { + e.getWindow().hide(); + e.getWindow().dispose(); + System.exit(0); + }; + } ); + + FlowTest flowTest = new FlowTest(); + flowTest.init(); + flowTest.start(); + + f.add("Center", flowTest); + f.setSize(300, 300); + f.show(); + } +} diff --git a/jdk/test/java/awt/ComponentOrientation/TestBundle.java b/jdk/test/java/awt/ComponentOrientation/TestBundle.java new file mode 100644 index 00000000000..3669d1651cb --- /dev/null +++ b/jdk/test/java/awt/ComponentOrientation/TestBundle.java @@ -0,0 +1,46 @@ +/* + * Copyright (c) 1998, 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. + * + * 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. + */ + +/** + * TestBundle.java -- used by BasicTest + * + * (C) Copyright IBM Corp. 1998 - All Rights Reserved + * + * The original version of this source code and documentation is copyrighted + * and owned by IBM, Inc. These materials are provided under terms of a + * License Agreement between IBM and Sun. This technology is protected by + * multiple US and International patents. This notice and attribution to IBM + * may not be removed. + */ + +import java.util.ListResourceBundle; +import java.awt.ComponentOrientation; + +public class TestBundle extends ListResourceBundle { + + protected Object[][] getContents() { + return new Object[][] { + { "Orientation", ComponentOrientation.UNKNOWN }, + }; + } +}; diff --git a/jdk/test/java/awt/ComponentOrientation/TestBundle1.java b/jdk/test/java/awt/ComponentOrientation/TestBundle1.java new file mode 100644 index 00000000000..ae3e012bf63 --- /dev/null +++ b/jdk/test/java/awt/ComponentOrientation/TestBundle1.java @@ -0,0 +1,49 @@ +/* + * Copyright (c) 1998, 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. + * + * 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. + */ + +/** + * TestBundle1.java -- used by BasicTest + * + * @bug 4108453 + * @summary Basic tests for java.awt.ComponentOrientation + * + * (C) Copyright IBM Corp. 1998 - All Rights Reserved + * + * The original version of this source code and documentation is copyrighted + * and owned by IBM, Inc. These materials are provided under terms of a + * License Agreement between IBM and Sun. This technology is protected by + * multiple US and International patents. This notice and attribution to IBM + * may not be removed. + */ + +import java.util.ListResourceBundle; +import java.awt.ComponentOrientation; + +public class TestBundle1 extends ListResourceBundle { + + protected Object[][] getContents() { + return new Object[][] { + { }, + }; + } +}; diff --git a/jdk/test/java/awt/ComponentOrientation/TestBundle1_ar.java b/jdk/test/java/awt/ComponentOrientation/TestBundle1_ar.java new file mode 100644 index 00000000000..66c971b8c72 --- /dev/null +++ b/jdk/test/java/awt/ComponentOrientation/TestBundle1_ar.java @@ -0,0 +1,49 @@ +/* + * Copyright (c) 1998, 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. + * + * 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. + */ + +/** + * TestBundle1_ar.java -- used by BasicTest + * + * @bug 4108453 + * @summary Basic tests for java.awt.ComponentOrientation + * + * (C) Copyright IBM Corp. 1998 - All Rights Reserved + * + * The original version of this source code and documentation is copyrighted + * and owned by IBM, Inc. These materials are provided under terms of a + * License Agreement between IBM and Sun. This technology is protected by + * multiple US and International patents. This notice and attribution to IBM + * may not be removed. + */ + +import java.util.ListResourceBundle; +import java.awt.ComponentOrientation; + +public class TestBundle1_ar extends ListResourceBundle { + + protected Object[][] getContents() { + return new Object[][] { + { }, + }; + } +}; diff --git a/jdk/test/java/awt/ComponentOrientation/TestBundle_es.java b/jdk/test/java/awt/ComponentOrientation/TestBundle_es.java new file mode 100644 index 00000000000..a5e9c7dfa7d --- /dev/null +++ b/jdk/test/java/awt/ComponentOrientation/TestBundle_es.java @@ -0,0 +1,46 @@ +/* + * Copyright (c) 1998, 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. + * + * 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. + */ + +/** + * TestBundle_es.java -- used by BasicTest + * + * (C) Copyright IBM Corp. 1998 - All Rights Reserved + * + * The original version of this source code and documentation is copyrighted + * and owned by IBM, Inc. These materials are provided under terms of a + * License Agreement between IBM and Sun. This technology is protected by + * multiple US and International patents. This notice and attribution to IBM + * may not be removed. + */ + +import java.util.ListResourceBundle; +import java.awt.ComponentOrientation; + +public class TestBundle_es extends ListResourceBundle { + + protected Object[][] getContents() { + return new Object[][] { + { "Orientation", ComponentOrientation.LEFT_TO_RIGHT }, + }; + } +}; diff --git a/jdk/test/java/awt/ComponentOrientation/TestBundle_iw.java b/jdk/test/java/awt/ComponentOrientation/TestBundle_iw.java new file mode 100644 index 00000000000..87ff4532458 --- /dev/null +++ b/jdk/test/java/awt/ComponentOrientation/TestBundle_iw.java @@ -0,0 +1,48 @@ +/* + * Copyright (c) 1998, 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. + * + * 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. + */ + +/** + * + * + * used by BasicTest + * + * (C) Copyright IBM Corp. 1998 - All Rights Reserved + * + * The original version of this source code and documentation is copyrighted + * and owned by IBM, Inc. These materials are provided under terms of a + * License Agreement between IBM and Sun. This technology is protected by + * multiple US and International patents. This notice and attribution to IBM + * may not be removed. + */ + +import java.util.ListResourceBundle; +import java.awt.ComponentOrientation; + +public class TestBundle_iw extends ListResourceBundle { + + protected Object[][] getContents() { + return new Object[][] { + { "Orientation", ComponentOrientation.RIGHT_TO_LEFT }, + }; + } +}; diff --git a/jdk/test/java/awt/ComponentOrientation/WindowTest.java b/jdk/test/java/awt/ComponentOrientation/WindowTest.java new file mode 100644 index 00000000000..85242e1544e --- /dev/null +++ b/jdk/test/java/awt/ComponentOrientation/WindowTest.java @@ -0,0 +1,155 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4108453 4778440 6304785 + * @summary Test Window.applyResourceBundle orientation support + * + * @build TestBundle TestBundle_es TestBundle_iw + * @build TestBundle1 TestBundle1_ar + * @run main WindowTest + */ + +import java.awt.*; +import java.applet.*; +import java.util.Locale; +import java.util.ResourceBundle; + +public class WindowTest extends Applet { + static Exception failure=null; + static Thread mainThread=null; + + public static void main(String args[]) throws Exception { + mainThread = Thread.currentThread(); + WindowTest app = new WindowTest(); + app.start(); + try { + Thread.sleep(300000); + } catch (InterruptedException e) { + if (failure != null) { + throw failure; + } + } + } + + public void start() { + try { + doTest(); + } catch (Exception e) { + failure = e; + } + mainThread.interrupt(); + } + + public void doTest() { + System.out.println("WindowTest {"); + + ResourceBundle rb; + Frame myFrame; + + // Create a window containing a hierarchy of components. + System.out.println(" Creating component hierarchy..."); + myFrame = new Frame(); + myFrame.setLayout(new FlowLayout()); + Panel panel1 = new Panel(); + panel1.setLayout(new BorderLayout()); + panel1.add("North", new Button("North")); + panel1.add("South", new Button("South")); + panel1.add("East", new Button("East")); + panel1.add("West", new Button("West")); + panel1.add("Center", new Button("Center")); + myFrame.add(panel1); + + Panel panel2 = new Panel(); + panel2.setLayout(new BorderLayout()); + panel2.add(BorderLayout.BEFORE_FIRST_LINE, new Button("FirstLine")); + panel2.add(BorderLayout.AFTER_LAST_LINE, new Button("LastLine")); + panel2.add(BorderLayout.BEFORE_LINE_BEGINS, new Button("FirstItem")); + panel2.add(BorderLayout.AFTER_LINE_ENDS, new Button("LastItem")); + panel2.add("Center", new Button("Center")); + myFrame.add(panel2); + + // After construction, all of the components' orientations should be + // set to ComponentOrientation.UNKNOWN. + System.out.println(" Verifying orientation is UNKNOWN..."); + verifyOrientation(myFrame, ComponentOrientation.UNKNOWN); + + // This will load TestBundle1 using the default locale and apply + // it to the component hierarchy. Since the bundle has no Orientation + // specified, this should fall back to the bundle-locale's orientation + System.out.println(" Applying TestBundle1 by name and verifying..."); + myFrame.applyResourceBundle("TestBundle1"); + verifyOrientation(myFrame, + ComponentOrientation.getOrientation( + ResourceBundle.getBundle("TestBundle1", Locale.getDefault()))); + + System.out.println(" Applying TestBundle_iw and verifying..."); + rb = ResourceBundle.getBundle("TestBundle", new Locale("iw", "")); + myFrame.applyResourceBundle(rb); + verifyOrientation(myFrame, ComponentOrientation.RIGHT_TO_LEFT); + + System.out.println(" Applying TestBundle_es and verifying..."); + rb = ResourceBundle.getBundle("TestBundle", new Locale("es", "")); + myFrame.applyResourceBundle(rb); + verifyOrientation(myFrame, ComponentOrientation.LEFT_TO_RIGHT); + + + myFrame.setVisible(false); + myFrame.dispose(); + System.out.println("}"); + } + + static void verifyOrientation(Component c, ComponentOrientation orient) { + + ComponentOrientation o = c.getComponentOrientation(); + + if (o != orient) { + throw new RuntimeException("ERROR: expected " + oString(orient) + + ", got " + oString(o) + + " on component " + c); + } + + if (c instanceof Container) { + Container cont = (Container) c; + int ncomponents = cont.getComponentCount(); + + for (int i = 0 ; i < ncomponents ; ++i) { + Component comp = cont.getComponent(i); + verifyOrientation(comp, orient); + } + } + } + + static String oString(ComponentOrientation o) { + if (o == ComponentOrientation.LEFT_TO_RIGHT) { + return "LEFT_TO_RIGHT"; + } + else if (o == ComponentOrientation.RIGHT_TO_LEFT) { + return "RIGHT_TO_LEFT"; + } + else { + return "UNKNOWN"; + } + } +} diff --git a/jdk/test/java/net/httpclient/SplitResponse.java b/jdk/test/java/net/httpclient/SplitResponse.java index a26ee01e159..dc67961af86 100644 --- a/jdk/test/java/net/httpclient/SplitResponse.java +++ b/jdk/test/java/net/httpclient/SplitResponse.java @@ -33,6 +33,7 @@ import java.util.concurrent.CompletableFuture; /** * @test * @bug 8087112 + * @key intermittent * @build Server * @run main/othervm -Djava.net.HttpClient.log=all SplitResponse */ diff --git a/jdk/test/java/net/httpclient/http2/BasicTest.java b/jdk/test/java/net/httpclient/http2/BasicTest.java index 3a07e652730..0503ba4ddfb 100644 --- a/jdk/test/java/net/httpclient/http2/BasicTest.java +++ b/jdk/test/java/net/httpclient/http2/BasicTest.java @@ -24,6 +24,7 @@ /* * @test * @bug 8087112 + * @key intermittent * @library /lib/testlibrary * @build jdk.testlibrary.SimpleSSLContext * @modules java.httpclient diff --git a/jdk/test/java/net/httpclient/http2/ErrorTest.java b/jdk/test/java/net/httpclient/http2/ErrorTest.java index 578dc4df797..3dee42103d3 100644 --- a/jdk/test/java/net/httpclient/http2/ErrorTest.java +++ b/jdk/test/java/net/httpclient/http2/ErrorTest.java @@ -24,6 +24,7 @@ /* * @test * @bug 8157105 + * @key intermittent * @library /lib/testlibrary * @build jdk.testlibrary.SimpleSSLContext * @modules java.httpclient diff --git a/jdk/test/java/net/httpclient/http2/TLSConnection.java b/jdk/test/java/net/httpclient/http2/TLSConnection.java index f2721eb268e..038e774f5b1 100644 --- a/jdk/test/java/net/httpclient/http2/TLSConnection.java +++ b/jdk/test/java/net/httpclient/http2/TLSConnection.java @@ -39,6 +39,7 @@ import javax.net.ssl.SSLSession; /* * @test * @bug 8150769 8157107 + * @key intermittent * @summary Checks that SSL parameters can be set for HTTP/2 connection * @modules java.httpclient * @compile/module=java.httpclient java/net/http/Http2Handler.java diff --git a/jdk/test/java/nio/file/Files/InterruptCopy.java b/jdk/test/java/nio/file/Files/InterruptCopy.java index 34ffa0585e8..05bdb4d37c1 100644 --- a/jdk/test/java/nio/file/Files/InterruptCopy.java +++ b/jdk/test/java/nio/file/Files/InterruptCopy.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 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 @@ -24,7 +24,7 @@ /* @test * @bug 4313887 6993267 * @summary Unit test for Sun-specific ExtendedCopyOption.INTERRUPTIBLE option - * @modules java.base/com.sun.nio.file + * @modules jdk.unsupported * @library .. */ diff --git a/jdk/test/java/nio/file/Files/SBC.java b/jdk/test/java/nio/file/Files/SBC.java index 584a370f658..8f470b8d9ed 100644 --- a/jdk/test/java/nio/file/Files/SBC.java +++ b/jdk/test/java/nio/file/Files/SBC.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 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 @@ -25,7 +25,7 @@ * @bug 4313887 * @summary Unit test for java.nio.file.Files.newByteChannel * @library .. - * @modules java.base/com.sun.nio.file + * @modules jdk.unsupported */ import java.nio.ByteBuffer; diff --git a/jdk/test/java/nio/file/WatchService/FileTreeModifier.java b/jdk/test/java/nio/file/WatchService/FileTreeModifier.java index ff26a5f5f1e..1648df003a6 100644 --- a/jdk/test/java/nio/file/WatchService/FileTreeModifier.java +++ b/jdk/test/java/nio/file/WatchService/FileTreeModifier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 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,9 +23,9 @@ /* @test * @bug 4313887 6838333 - * @summary Sanity test for Sun-specific FILE_TREE watch event modifier + * @summary Sanity test for JDK-specific FILE_TREE watch event modifier * @library .. - * @modules java.base/com.sun.nio.file + * @modules jdk.unsupported */ import java.nio.file.*; diff --git a/jdk/test/java/nio/file/WatchService/SensitivityModifier.java b/jdk/test/java/nio/file/WatchService/SensitivityModifier.java index 6a9f30e8629..f01704a9ba8 100644 --- a/jdk/test/java/nio/file/WatchService/SensitivityModifier.java +++ b/jdk/test/java/nio/file/WatchService/SensitivityModifier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 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 @@ /* @test * @bug 4313887 - * @summary Sanity test for Sun-specific sensitivity level watch event modifier - * @modules java.base/com.sun.nio.file + * @summary Sanity test for JDK-specific sensitivity level watch event modifier + * @modules jdk.unsupported * @library .. * @run main/timeout=240 SensitivityModifier * @key randomness diff --git a/jdk/test/java/nio/file/WatchService/WithSecurityManager.java b/jdk/test/java/nio/file/WatchService/WithSecurityManager.java index 997144d49a3..e165da54fb4 100644 --- a/jdk/test/java/nio/file/WatchService/WithSecurityManager.java +++ b/jdk/test/java/nio/file/WatchService/WithSecurityManager.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 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 @@ -24,7 +24,7 @@ /* @test * @bug 4313887 * @summary Unit test for Watchable#register's permission checks - * @modules java.base/com.sun.nio.file + * @modules jdk.unsupported * @build WithSecurityManager * @run main/othervm WithSecurityManager denyAll.policy - fail * @run main/othervm WithSecurityManager denyAll.policy tree fail diff --git a/jdk/test/java/rmi/module/ModuleTest.java b/jdk/test/java/rmi/module/ModuleTest.java new file mode 100644 index 00000000000..ad19a71b9f4 --- /dev/null +++ b/jdk/test/java/rmi/module/ModuleTest.java @@ -0,0 +1,159 @@ +/* + * 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @library /lib/testlibrary + * @build jdk.testlibrary.ProcessTools + * ModuleTest CompilerUtils JarUtils + * @run testng ModuleTest + * @summary Basic tests for using rmi in module world + */ + +import static jdk.testlibrary.ProcessTools.executeTestJava; +import static org.testng.Assert.assertEquals; +import static org.testng.Assert.assertTrue; + +import java.io.File; +import java.nio.file.Paths; + +import org.testng.annotations.BeforeTest; +import org.testng.annotations.Test; + +public class ModuleTest { + + static String fileJoin(String... names) { + return String.join(File.separator, names); + } + + static String pathJoin(String... paths) { + return String.join(File.pathSeparator, paths); + } + + private static final String TEST_SRC = System.getProperty("test.src"); + private static final String CLIENT_EXP = fileJoin("exploded", "mclient"); + private static final String SERVER_EXP = fileJoin("exploded", "mserver"); + private static final String MTEST_EXP = fileJoin("exploded", "mtest"); + private static final String CLIENT_JAR = fileJoin("mods", "mclient.jar"); + private static final String SERVER_JAR = fileJoin("mods", "mserver.jar"); + private static final String MTEST_JAR = fileJoin("mods", "mtest.jar"); + + private static final String DUMMY_MAIN = "testpkg.DummyApp"; + + /** + * Compiles all sample classes + */ + @BeforeTest + public void compileAll() throws Exception { + assertTrue(CompilerUtils.compile( + Paths.get(TEST_SRC, "src", "mserver"), + Paths.get(SERVER_EXP))); + + JarUtils.createJarFile( + Paths.get(SERVER_JAR), + Paths.get(SERVER_EXP)); + + assertTrue(CompilerUtils.compile( + Paths.get(TEST_SRC, "src", "mclient"), + Paths.get(CLIENT_EXP), + "-cp", SERVER_JAR)); + + JarUtils.createJarFile( + Paths.get(CLIENT_JAR), + Paths.get(CLIENT_EXP)); + + assertTrue(CompilerUtils.compile(Paths.get(TEST_SRC, "src", "mtest"), + Paths.get(MTEST_EXP), + "-cp", pathJoin(CLIENT_JAR, SERVER_JAR))); + + JarUtils.createJarFile( + Paths.get(MTEST_JAR), + Paths.get(MTEST_EXP)); + } + + /** + * Test the client, server and dummy application in different modules + * @throws Exception + */ + @Test + public void testAllInModule() throws Exception { + assertEquals(executeTestJava("-mp", pathJoin(MTEST_JAR, CLIENT_JAR, SERVER_JAR), + "-addmods", "mclient,mserver", + "-m", "mtest/" + DUMMY_MAIN) + .outputTo(System.out) + .errorTo(System.out) + .getExitValue(), + 0); + } + + /** + * Test the client and server in unnamed modules, + * while the dummy application is in automatic module + * @throws Exception + */ + @Test + public void testAppInModule() throws Exception { + assertEquals(executeTestJava("-mp", MTEST_JAR, + "-cp", pathJoin(CLIENT_JAR, SERVER_JAR), + "-m", "mtest/" + DUMMY_MAIN) + .outputTo(System.out) + .errorTo(System.out) + .getExitValue(), + 0); + } + + /** + * Test the client and server in automatic modules, + * while the dummy application is in unnamed module + * @throws Exception + */ + @Test + public void testAppInUnnamedModule() throws Exception { + assertEquals(executeTestJava("-mp", pathJoin(CLIENT_JAR, SERVER_JAR), + "-addmods", "mclient,mserver", + "-cp", MTEST_JAR, + DUMMY_MAIN) + .outputTo(System.out) + .errorTo(System.out) + .getExitValue(), + 0); + } + + /** + * Test the server and test application in automatic modules, + * with client in unnamed module + * @throws Exception + */ + @Test + public void testClientInUnamedModule() throws Exception { + assertEquals(executeTestJava("-mp", pathJoin(MTEST_JAR, SERVER_JAR), + "-addmods", "mserver", + "-cp", CLIENT_JAR, + "-m", "mtest/" + DUMMY_MAIN) + .outputTo(System.out) + .errorTo(System.out) + .getExitValue(), + 0); + } +} + diff --git a/jdk/test/java/rmi/module/src/mclient/clientpkg/Client.java b/jdk/test/java/rmi/module/src/mclient/clientpkg/Client.java new file mode 100644 index 00000000000..0907748c1e9 --- /dev/null +++ b/jdk/test/java/rmi/module/src/mclient/clientpkg/Client.java @@ -0,0 +1,47 @@ +/* + * 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. + * + * 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 clientpkg; + +import java.rmi.registry.LocateRegistry; +import java.rmi.registry.Registry; + +import serverpkg.Hello; + +public class Client { + int port; + Hello stub; + + public Client(Hello stub) { + this.stub = stub; + } + + public String testStub() throws Exception { + try { + return stub.sayHello(); + } catch (Exception e) { + System.err.println("Client exception: " + e.toString()); + throw e; + } + } +} diff --git a/jdk/test/java/rmi/module/src/mserver/serverpkg/Hello.java b/jdk/test/java/rmi/module/src/mserver/serverpkg/Hello.java new file mode 100644 index 00000000000..4525c09746c --- /dev/null +++ b/jdk/test/java/rmi/module/src/mserver/serverpkg/Hello.java @@ -0,0 +1,32 @@ +/* + * 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. + * + * 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 serverpkg; + +import java.rmi.Remote; +import java.rmi.RemoteException; + +public interface Hello extends Remote { + + String sayHello() throws RemoteException; +} diff --git a/jdk/test/java/rmi/module/src/mserver/serverpkg/Server.java b/jdk/test/java/rmi/module/src/mserver/serverpkg/Server.java new file mode 100644 index 00000000000..0ba07492b9e --- /dev/null +++ b/jdk/test/java/rmi/module/src/mserver/serverpkg/Server.java @@ -0,0 +1,37 @@ +/* + * 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. + * + * 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 serverpkg; + +public class Server implements Hello { + + private final String hello = "Hello world!"; + + public Server() { + } + + @Override + public String sayHello() { + return hello; + } +} diff --git a/jdk/test/java/rmi/module/src/mtest/testpkg/DummyApp.java b/jdk/test/java/rmi/module/src/mtest/testpkg/DummyApp.java new file mode 100644 index 00000000000..6fc88d01fab --- /dev/null +++ b/jdk/test/java/rmi/module/src/mtest/testpkg/DummyApp.java @@ -0,0 +1,55 @@ +/* + * 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. + * + * 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 testpkg; + +import java.rmi.server.UnicastRemoteObject; + +import clientpkg.Client; +import serverpkg.Hello; +import serverpkg.Server; + +public class DummyApp { + + public static void main(String args[]) { + try { + Hello obj = new Server(); + Hello stub = (Hello) UnicastRemoteObject.exportObject(obj, 0); + + Client client = new Client(stub); + String testStubReturn = client.testStub(); + System.out.println("Stub is: " + testStubReturn); + if (!testStubReturn.equals(obj.sayHello())) { + throw new RuntimeException("Unexpected string from stub call, expected \"" + + testStubReturn + "\", actual \"" + obj.sayHello() + "\""); + } else { + System.out.println("Test passed"); + } + + System.exit(0); + } catch (Throwable e) { + e.printStackTrace(); + System.exit(-1); + } + } +} diff --git a/jdk/test/java/text/AttributedCharacterIterator/Attribute/ReadResolve.java b/jdk/test/java/text/AttributedCharacterIterator/Attribute/ReadResolve.java new file mode 100644 index 00000000000..9417ddbec4d --- /dev/null +++ b/jdk/test/java/text/AttributedCharacterIterator/Attribute/ReadResolve.java @@ -0,0 +1,88 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* @test + @bug 4136620 4144590 + @summary Make sure that Attribute & subclasses are serialized and deserialized correctly + @modules java.desktop + */ + +import java.text.AttributedCharacterIterator.Attribute; +import java.awt.font.TextAttribute; +import java.io.*; + +public class ReadResolve { + + public static void main(String[] args) throws Exception { + testSerializationCycle(Attribute.LANGUAGE); + testSerializationCycle(TextAttribute.INPUT_METHOD_HIGHLIGHT); + + boolean gotException = false; + Attribute result = null; + try { + result = doSerializationCycle(FakeAttribute.LANGUAGE); + } catch (Throwable e) { + gotException = true; + } + if (!gotException) { + throw new RuntimeException("Attribute should throw an exception when given a fake \"language\" attribute. Deserialized object: " + result); + } + } + + static Attribute doSerializationCycle(Attribute attribute) throws Exception { + + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + ObjectOutputStream oos = new ObjectOutputStream(baos); + oos.writeObject(attribute); + oos.flush(); + + byte[] data = baos.toByteArray(); + + ByteArrayInputStream bais = new ByteArrayInputStream(data); + ObjectInputStream ois = new ObjectInputStream(bais); + Attribute result = (Attribute) ois.readObject(); + + return result; + } + + static void testSerializationCycle(Attribute attribute) throws Exception { + Attribute result = doSerializationCycle(attribute); + if (result != attribute) { + throw new RuntimeException("attribute changed identity during serialization/deserialization"); + } + } + + private static class FakeAttribute extends Attribute { + + // This LANGUAGE attribute should never be confused with the + // Attribute.LANGUAGE attribute. However, we don't override + // readResolve here, so that deserialization goes + // to Attribute. Attribute has to catch this problem and reject + // the fake attribute. + static final FakeAttribute LANGUAGE = new FakeAttribute("language"); + + FakeAttribute(String name) { + super(name); + } + } +} diff --git a/jdk/test/java/text/AttributedString/AttributedStringTest.java b/jdk/test/java/text/AttributedString/AttributedStringTest.java new file mode 100644 index 00000000000..bab39962359 --- /dev/null +++ b/jdk/test/java/text/AttributedString/AttributedStringTest.java @@ -0,0 +1,258 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* @test + * @bug 4139771 + * @summary test all aspects of AttributedString class + */ + +import java.text.Annotation; +import java.text.AttributedCharacterIterator; +import java.text.AttributedCharacterIterator.Attribute; +import java.text.AttributedString; +import java.text.CharacterIterator; +import java.util.HashSet; +import java.util.Iterator; +import java.util.Locale; +import java.util.Map; +import java.util.Map.Entry; +import java.util.Set; + + +public class AttributedStringTest { + + private static final String text = "Hello, world!"; + private static final Annotation hi = new Annotation("hi"); + private static final int[] array5_13 = {5, 13}; + private static final int[] array3_9_13 = {3, 9, 13}; + private static final int[] array5_9_13 = {5, 9, 13}; + private static final int[] array3_5_9_13 = {3, 5, 9, 13}; + private static final Attribute[] arrayLanguage = {Attribute.LANGUAGE}; + private static final Attribute[] arrayLanguageReading = {Attribute.LANGUAGE, Attribute.READING}; + private static final Set setLanguageReading = new HashSet(); + static { + setLanguageReading.add(Attribute.LANGUAGE); + setLanguageReading.add(Attribute.READING); + } + + + public static final void main(String argv[]) throws Exception { + + + AttributedString string; + AttributedCharacterIterator iterator; + + // create a string with text, but no attributes + string = new AttributedString(text); + iterator = string.getIterator(); + + // make sure the text is there and attributes aren't + checkIteratorText(iterator, text); + if (!iterator.getAllAttributeKeys().isEmpty()) { + throwException(iterator, "iterator provides attributes where none are defined"); + } + + // add an attribute to a subrange + string.addAttribute(Attribute.LANGUAGE, Locale.ENGLISH, 3, 9); + iterator = string.getIterator(); + + // make sure the attribute is defined, and it's on the correct subrange + checkIteratorAttributeKeys(iterator, arrayLanguage); + checkIteratorSubranges(iterator, array3_9_13); + checkIteratorAttribute(iterator, 0, Attribute.LANGUAGE, null); + checkIteratorAttribute(iterator, 3, Attribute.LANGUAGE, Locale.ENGLISH); + checkIteratorAttribute(iterator, 9, Attribute.LANGUAGE, null); + + // add an attribute to a subrange + string.addAttribute(Attribute.READING, hi, 0, 5); + iterator = string.getIterator(); + + // make sure the attribute is defined, and it's on the correct subrange + checkIteratorAttributeKeys(iterator, arrayLanguageReading); + checkIteratorSubranges(iterator, array3_5_9_13); + checkIteratorAttribute(iterator, 0, Attribute.READING, hi); + checkIteratorAttribute(iterator, 3, Attribute.READING, hi); + checkIteratorAttribute(iterator, 5, Attribute.READING, null); + checkIteratorAttribute(iterator, 9, Attribute.READING, null); + + // make sure the first attribute wasn't adversely affected + // in particular, we shouldn't see separate subranges (3,5) and (5,9). + checkIteratorSubranges(iterator, Attribute.LANGUAGE, array3_9_13); + checkIteratorAttribute(iterator, 0, Attribute.LANGUAGE, null); + checkIteratorAttribute(iterator, 3, Attribute.LANGUAGE, Locale.ENGLISH); + checkIteratorAttribute(iterator, 5, Attribute.LANGUAGE, Locale.ENGLISH); + checkIteratorAttribute(iterator, 9, Attribute.LANGUAGE, null); + + // for the entire set of attributes, we expect four subranges + checkIteratorSubranges(iterator, setLanguageReading, array3_5_9_13); + + // redefine the language attribute so that both language and reading are continuous from 0 to 5 + string.addAttribute(Attribute.LANGUAGE, Locale.US, 0, 5); + iterator = string.getIterator(); + + // make sure attributes got changed and merged correctly + checkIteratorAttributeKeys(iterator, arrayLanguageReading); + checkIteratorSubranges(iterator, array3_5_9_13); + checkIteratorSubranges(iterator, Attribute.LANGUAGE, array5_9_13); + checkIteratorSubranges(iterator, Attribute.READING, array5_13); + checkIteratorSubranges(iterator, setLanguageReading, array5_9_13); + checkIteratorAttribute(iterator, 0, Attribute.LANGUAGE, Locale.US); + checkIteratorAttribute(iterator, 3, Attribute.LANGUAGE, Locale.US); + checkIteratorAttribute(iterator, 5, Attribute.LANGUAGE, Locale.ENGLISH); + checkIteratorAttribute(iterator, 9, Attribute.LANGUAGE, null); + + // make sure an annotation is only returned if its range is contained in the iterator's range + iterator = string.getIterator(null, 3, 5); + checkIteratorAttribute(iterator, 3, Attribute.READING, null); + checkIteratorAttribute(iterator, 5, Attribute.READING, null); + iterator = string.getIterator(null, 0, 4); + checkIteratorAttribute(iterator, 0, Attribute.READING, null); + checkIteratorAttribute(iterator, 3, Attribute.READING, null); + iterator = string.getIterator(null, 0, 5); + checkIteratorAttribute(iterator, 0, Attribute.READING, hi); + checkIteratorAttribute(iterator, 4, Attribute.READING, hi); + checkIteratorAttribute(iterator, 5, Attribute.READING, null); + + } + + private static final void checkIteratorText(AttributedCharacterIterator iterator, String expectedText) throws Exception { + if (iterator.getEndIndex() - iterator.getBeginIndex() != expectedText.length()) { + throwException(iterator, "text length doesn't match between original text and iterator"); + } + + char c = iterator.first(); + for (int i = 0; i < expectedText.length(); i++) { + if (c != expectedText.charAt(i)) { + throwException(iterator, "text content doesn't match between original text and iterator"); + } + c = iterator.next(); + } + if (c != CharacterIterator.DONE) { + throwException(iterator, "iterator text doesn't end with DONE"); + } + } + + private static final void checkIteratorAttributeKeys(AttributedCharacterIterator iterator, Attribute[] expectedKeys) throws Exception { + Set iteratorKeys = iterator.getAllAttributeKeys(); + if (iteratorKeys.size() != expectedKeys.length) { + throwException(iterator, "number of keys returned by iterator doesn't match expectation"); + } + for (int i = 0; i < expectedKeys.length; i++) { + if (!iteratorKeys.contains(expectedKeys[i])) { + throwException(iterator, "expected key wasn't found in iterator's key set"); + } + } + } + + private static final void checkIteratorSubranges(AttributedCharacterIterator iterator, int[] expectedLimits) throws Exception { + int previous = 0; + char c = iterator.first(); + for (int i = 0; i < expectedLimits.length; i++) { + if (iterator.getRunStart() != previous || iterator.getRunLimit() != expectedLimits[i]) { + throwException(iterator, "run boundaries are not as expected: " + iterator.getRunStart() + ", " + iterator.getRunLimit()); + } + previous = expectedLimits[i]; + c = iterator.setIndex(previous); + } + if (c != CharacterIterator.DONE) { + throwException(iterator, "iterator's run sequence doesn't end with DONE"); + } + } + + private static final void checkIteratorSubranges(AttributedCharacterIterator iterator, Attribute key, int[] expectedLimits) throws Exception { + int previous = 0; + char c = iterator.first(); + for (int i = 0; i < expectedLimits.length; i++) { + if (iterator.getRunStart(key) != previous || iterator.getRunLimit(key) != expectedLimits[i]) { + throwException(iterator, "run boundaries are not as expected: " + iterator.getRunStart(key) + ", " + iterator.getRunLimit(key) + " for key " + key); + } + previous = expectedLimits[i]; + c = iterator.setIndex(previous); + } + if (c != CharacterIterator.DONE) { + throwException(iterator, "iterator's run sequence doesn't end with DONE"); + } + } + + private static final void checkIteratorSubranges(AttributedCharacterIterator iterator, Set keys, int[] expectedLimits) throws Exception { + int previous = 0; + char c = iterator.first(); + for (int i = 0; i < expectedLimits.length; i++) { + if (iterator.getRunStart(keys) != previous || iterator.getRunLimit(keys) != expectedLimits[i]) { + throwException(iterator, "run boundaries are not as expected: " + iterator.getRunStart(keys) + ", " + iterator.getRunLimit(keys) + " for keys " + keys); + } + previous = expectedLimits[i]; + c = iterator.setIndex(previous); + } + if (c != CharacterIterator.DONE) { + throwException(iterator, "iterator's run sequence doesn't end with DONE"); + } + } + + private static final void checkIteratorAttribute(AttributedCharacterIterator iterator, int index, Attribute key, Object expectedValue) throws Exception { + iterator.setIndex(index); + Object value = iterator.getAttribute(key); + if (!((expectedValue == null && value == null) || (expectedValue != null && expectedValue.equals(value)))) { + throwException(iterator, "iterator returns wrong attribute value - " + value + " instead of " + expectedValue); + } + value = iterator.getAttributes().get(key); + if (!((expectedValue == null && value == null) || (expectedValue != null && expectedValue.equals(value)))) { + throwException(iterator, "iterator's map returns wrong attribute value - " + value + " instead of " + expectedValue); + } + } + + private static final void throwException(AttributedCharacterIterator iterator, String details) throws Exception { + dumpIterator(iterator); + throw new Exception(details); + } + + private static final void dumpIterator(AttributedCharacterIterator iterator) { + Set attributeKeys = iterator.getAllAttributeKeys(); + System.out.print("All attributes: "); + Iterator keyIterator = attributeKeys.iterator(); + while (keyIterator.hasNext()) { + Attribute key = (Attribute) keyIterator.next(); + System.out.print(key); + } + for(char c = iterator.first(); c != CharacterIterator.DONE; c = iterator.next()) { + if (iterator.getIndex() == iterator.getBeginIndex() || + iterator.getIndex() == iterator.getRunStart()) { + System.out.println(); + Map attributes = iterator.getAttributes(); + Set entries = attributes.entrySet(); + Iterator attributeIterator = entries.iterator(); + while (attributeIterator.hasNext()) { + Map.Entry entry = (Map.Entry) attributeIterator.next(); + System.out.print("<" + entry.getKey() + ": " + + entry.getValue() + ">"); + } + } + System.out.print(" "); + System.out.print(c); + } + System.out.println(); + System.out.println("done"); + System.out.println(); + } + +} diff --git a/jdk/test/java/text/AttributedString/TestAttributedStringCtor.java b/jdk/test/java/text/AttributedString/TestAttributedStringCtor.java new file mode 100644 index 00000000000..0f9ed615ef9 --- /dev/null +++ b/jdk/test/java/text/AttributedString/TestAttributedStringCtor.java @@ -0,0 +1,55 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* @test + * @bug 4146853 + * @summary Make sure we can construct an AttributedString from + * an AttributedCharacterIterator covering only a subrange + * @modules java.desktop + */ + +import java.awt.font.TextAttribute; +import java.text.AttributedCharacterIterator; +import java.text.AttributedString; +import java.util.Hashtable; + +public class TestAttributedStringCtor { + + public static void main(String[] args) { + + // Create a new AttributedString with one attribute. + Hashtable attributes = new Hashtable(); + attributes.put(TextAttribute.WEIGHT, TextAttribute.WEIGHT_BOLD); + AttributedString origString = new AttributedString("Hello world.", attributes); + + // Create an iterator over part of the AttributedString. + AttributedCharacterIterator iter = origString.getIterator(null, 4, 6); + + // Attempt to create a new AttributedString from the iterator. + // This will throw IllegalArgumentException. + AttributedString newString = new AttributedString(iter); + + // Without the exception this would get executed. + System.out.println("DONE"); + } +} diff --git a/jdk/test/java/text/AttributedString/getRunStartLimitTest.java b/jdk/test/java/text/AttributedString/getRunStartLimitTest.java new file mode 100644 index 00000000000..c0acfcfb507 --- /dev/null +++ b/jdk/test/java/text/AttributedString/getRunStartLimitTest.java @@ -0,0 +1,116 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4151160 + * @summary Make sure to return correct run start and limit values + * when the iterator has been created with begin and end index values. + * @modules java.desktop + */ + +import java.awt.font.TextAttribute; +import java.text.AttributedCharacterIterator; +import java.text.AttributedString; +import java.text.Annotation; + +public class getRunStartLimitTest { + + public static void main(String[] args) throws Exception { + + String text = "Hello world"; + AttributedString as = new AttributedString(text); + + // add non-Annotation attributes + as.addAttribute(TextAttribute.WEIGHT, + TextAttribute.WEIGHT_LIGHT, + 0, + 3); + as.addAttribute(TextAttribute.WEIGHT, + TextAttribute.WEIGHT_BOLD, + 3, + 5); + as.addAttribute(TextAttribute.WEIGHT, + TextAttribute.WEIGHT_EXTRABOLD, + 5, + text.length()); + + // add Annotation attributes + as.addAttribute(TextAttribute.WIDTH, + new Annotation(TextAttribute.WIDTH_EXTENDED), + 0, + 3); + as.addAttribute(TextAttribute.WIDTH, + new Annotation(TextAttribute.WIDTH_CONDENSED), + 3, + 4); + + AttributedCharacterIterator aci = as.getIterator(null, 2, 4); + + aci.first(); + int runStart = aci.getRunStart(); + if (runStart != 2) { + throw new Exception("1st run start is wrong. ("+runStart+" should be 2.)"); + } + + int runLimit = aci.getRunLimit(); + if (runLimit != 3) { + throw new Exception("1st run limit is wrong. ("+runLimit+" should be 3.)"); + } + + Object value = aci.getAttribute(TextAttribute.WEIGHT); + if (value != TextAttribute.WEIGHT_LIGHT) { + throw new Exception("1st run attribute is wrong. (" + +value+" should be "+TextAttribute.WEIGHT_LIGHT+".)"); + } + + value = aci.getAttribute(TextAttribute.WIDTH); + if (value != null) { + throw new Exception("1st run annotation is wrong. (" + +value+" should be null.)"); + } + + aci.setIndex(runLimit); + runStart = aci.getRunStart(); + if (runStart != 3) { + throw new Exception("2nd run start is wrong. ("+runStart+" should be 3.)"); + } + + runLimit = aci.getRunLimit(); + if (runLimit != 4) { + throw new Exception("2nd run limit is wrong. ("+runLimit+" should be 4.)"); + } + value = aci.getAttribute(TextAttribute.WEIGHT); + if (value != TextAttribute.WEIGHT_BOLD) { + throw new Exception("2nd run attribute is wrong. (" + +value+" should be "+TextAttribute.WEIGHT_BOLD+".)"); + } + + value = aci.getAttribute(TextAttribute.WIDTH); + if (!(value instanceof Annotation) + || (((Annotation)value).getValue() != TextAttribute.WIDTH_CONDENSED)) { + throw new Exception("2nd run annotation is wrong. (" + value + " should be " + + new Annotation(TextAttribute.WIDTH_CONDENSED)+".)"); + } + } +} diff --git a/jdk/test/java/text/BreakIterator/BreakIteratorTest.java b/jdk/test/java/text/BreakIterator/BreakIteratorTest.java new file mode 100644 index 00000000000..3c2498de48e --- /dev/null +++ b/jdk/test/java/text/BreakIterator/BreakIteratorTest.java @@ -0,0 +1,1438 @@ +/* + * Copyright (c) 1996, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4035266 4052418 4068133 4068137 4068139 4086052 4095322 4097779 + * 4097920 4098467 4111338 4113835 4117554 4143071 4146175 4152117 + * 4152416 4153072 4158381 4214367 4217703 4638433 + * @library /java/text/testlib + * @run main/timeout=2000 BreakIteratorTest + * @summary test BreakIterator + */ + +/* + * + * + * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved + * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved + * + * Portions copyright (c) 2007 Sun Microsystems, Inc. + * All Rights Reserved. + * + * The original version of this source code and documentation + * is copyrighted and owned by Taligent, Inc., a wholly-owned + * subsidiary of IBM. These materials are provided under terms + * of a License Agreement between Taligent and Sun. This technology + * is protected by multiple US and International patents. + * + * This notice and attribution to Taligent may not be removed. + * Taligent is a registered trademark of Taligent, Inc. + * + * Permission to use, copy, modify, and distribute this software + * and its documentation for NON-COMMERCIAL purposes and without + * fee is hereby granted provided that this copyright notice + * appears in all copies. Please refer to the file "copyright.html" + * for further important copyright and licensing information. + * + * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF + * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR + * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. + * + */ + +import java.text.BreakIterator; +import java.text.CharacterIterator; +import java.text.StringCharacterIterator; +import java.util.Locale; +import java.util.Vector; +import java.util.Enumeration; +import java.io.*; + +public class BreakIteratorTest extends IntlTest +{ + private BreakIterator characterBreak; + private BreakIterator wordBreak; + private BreakIterator lineBreak; + private BreakIterator sentenceBreak; + + public static void main(String[] args) throws Exception { + new BreakIteratorTest().run(args); + } + + public BreakIteratorTest() + { + characterBreak = BreakIterator.getCharacterInstance(); + wordBreak = BreakIterator.getWordInstance(); + lineBreak = BreakIterator.getLineInstance(); + sentenceBreak = BreakIterator.getSentenceInstance(); + } + + //========================================================================= + // general test subroutines + //========================================================================= + + private void generalIteratorTest(BreakIterator bi, Vector expectedResult) { + StringBuffer buffer = new StringBuffer(); + String text; + for (int i = 0; i < expectedResult.size(); i++) { + text = (String)expectedResult.elementAt(i); + buffer.append(text); + } + text = buffer.toString(); + + bi.setText(text); + + Vector nextResults = testFirstAndNext(bi, text); + Vector previousResults = testLastAndPrevious(bi, text); + + logln("comparing forward and backward..."); + int errs = getErrorCount(); + compareFragmentLists("forward iteration", "backward iteration", nextResults, + previousResults); + if (getErrorCount() == errs) { + logln("comparing expected and actual..."); + compareFragmentLists("expected result", "actual result", expectedResult, + nextResults); + } + + int[] boundaries = new int[expectedResult.size() + 3]; + boundaries[0] = BreakIterator.DONE; + boundaries[1] = 0; + for (int i = 0; i < expectedResult.size(); i++) + boundaries[i + 2] = boundaries[i + 1] + ((String)expectedResult.elementAt(i)). + length(); + boundaries[boundaries.length - 1] = BreakIterator.DONE; + + testFollowing(bi, text, boundaries); + testPreceding(bi, text, boundaries); + testIsBoundary(bi, text, boundaries); + + doMultipleSelectionTest(bi, text); + } + + private Vector testFirstAndNext(BreakIterator bi, String text) { + int p = bi.first(); + int lastP = p; + Vector result = new Vector(); + + if (p != 0) + errln("first() returned " + p + " instead of 0"); + while (p != BreakIterator.DONE) { + p = bi.next(); + if (p != BreakIterator.DONE) { + if (p <= lastP) + errln("next() failed to move forward: next() on position " + + lastP + " yielded " + p); + + result.addElement(text.substring(lastP, p)); + } + else { + if (lastP != text.length()) + errln("next() returned DONE prematurely: offset was " + + lastP + " instead of " + text.length()); + } + lastP = p; + } + return result; + } + + private Vector testLastAndPrevious(BreakIterator bi, String text) { + int p = bi.last(); + int lastP = p; + Vector result = new Vector(); + + if (p != text.length()) + errln("last() returned " + p + " instead of " + text.length()); + while (p != BreakIterator.DONE) { + p = bi.previous(); + if (p != BreakIterator.DONE) { + if (p >= lastP) + errln("previous() failed to move backward: previous() on position " + + lastP + " yielded " + p); + + result.insertElementAt(text.substring(p, lastP), 0); + } + else { + if (lastP != 0) + errln("previous() returned DONE prematurely: offset was " + + lastP + " instead of 0"); + } + lastP = p; + } + return result; + } + + private void compareFragmentLists(String f1Name, String f2Name, Vector f1, Vector f2) { + int p1 = 0; + int p2 = 0; + String s1; + String s2; + int t1 = 0; + int t2 = 0; + + while (p1 < f1.size() && p2 < f2.size()) { + s1 = (String)f1.elementAt(p1); + s2 = (String)f2.elementAt(p2); + t1 += s1.length(); + t2 += s2.length(); + + if (s1.equals(s2)) { + debugLogln(" >" + s1 + "<"); + ++p1; + ++p2; + } + else { + int tempT1 = t1; + int tempT2 = t2; + int tempP1 = p1; + int tempP2 = p2; + + while (tempT1 != tempT2 && tempP1 < f1.size() && tempP2 < f2.size()) { + while (tempT1 < tempT2 && tempP1 < f1.size()) { + tempT1 += ((String)f1.elementAt(tempP1)).length(); + ++tempP1; + } + while (tempT2 < tempT1 && tempP2 < f2.size()) { + tempT2 += ((String)f2.elementAt(tempP2)).length(); + ++tempP2; + } + } + logln("*** " + f1Name + " has:"); + while (p1 <= tempP1 && p1 < f1.size()) { + s1 = (String)f1.elementAt(p1); + t1 += s1.length(); + debugLogln(" *** >" + s1 + "<"); + ++p1; + } + logln("***** " + f2Name + " has:"); + while (p2 <= tempP2 && p2 < f2.size()) { + s2 = (String)f2.elementAt(p2); + t2 += s2.length(); + debugLogln(" ***** >" + s2 + "<"); + ++p2; + } + errln("Discrepancy between " + f1Name + " and " + f2Name + "\n---\n" + f1 +"\n---\n" + f2); + } + } + } + + private void testFollowing(BreakIterator bi, String text, int[] boundaries) { + logln("testFollowing():"); + int p = 2; + int i = 0; + try { + for (i = 0; i <= text.length(); i++) { // change to <= when new BI code goes in + if (i == boundaries[p]) + ++p; + + int b = bi.following(i); + logln("bi.following(" + i + ") -> " + b); + if (b != boundaries[p]) + errln("Wrong result from following() for " + i + ": expected " + boundaries[p] + + ", got " + b); + } + } catch (IllegalArgumentException illargExp) { + errln("IllegalArgumentException caught from following() for offset: " + i); + } + } + + private void testPreceding(BreakIterator bi, String text, int[] boundaries) { + logln("testPreceding():"); + int p = 0; + int i = 0; + try { + for (i = 0; i <= text.length(); i++) { // change to <= when new BI code goes in + int b = bi.preceding(i); + logln("bi.preceding(" + i + ") -> " + b); + if (b != boundaries[p]) + errln("Wrong result from preceding() for " + i + ": expected " + boundaries[p] + + ", got " + b); + + if (i == boundaries[p + 1]) + ++p; + } + } catch (IllegalArgumentException illargExp) { + errln("IllegalArgumentException caught from preceding() for offset: " + i); + } + } + + private void testIsBoundary(BreakIterator bi, String text, int[] boundaries) { + logln("testIsBoundary():"); + int p = 1; + boolean isB; + for (int i = 0; i <= text.length(); i++) { // change to <= when new BI code goes in + isB = bi.isBoundary(i); + logln("bi.isBoundary(" + i + ") -> " + isB); + + if (i == boundaries[p]) { + if (!isB) + errln("Wrong result from isBoundary() for " + i + ": expected true, got false"); + ++p; + } + else { + if (isB) + errln("Wrong result from isBoundary() for " + i + ": expected false, got true"); + } + } + } + + private void doMultipleSelectionTest(BreakIterator iterator, String testText) + { + logln("Multiple selection test..."); + BreakIterator testIterator = (BreakIterator)iterator.clone(); + int offset = iterator.first(); + int testOffset; + int count = 0; + + do { + testOffset = testIterator.first(); + testOffset = testIterator.next(count); + logln("next(" + count + ") -> " + testOffset); + if (offset != testOffset) + errln("next(n) and next() not returning consistent results: for step " + count + ", next(n) returned " + testOffset + " and next() had " + offset); + + if (offset != BreakIterator.DONE) { + count++; + offset = iterator.next(); + } + } while (offset != BreakIterator.DONE); + + // now do it backwards... + offset = iterator.last(); + count = 0; + + do { + testOffset = testIterator.last(); + testOffset = testIterator.next(count); + logln("next(" + count + ") -> " + testOffset); + if (offset != testOffset) + errln("next(n) and next() not returning consistent results: for step " + count + ", next(n) returned " + testOffset + " and next() had " + offset); + + if (offset != BreakIterator.DONE) { + count--; + offset = iterator.previous(); + } + } while (offset != BreakIterator.DONE); + } + + private void doBreakInvariantTest(BreakIterator tb, String testChars) + { + StringBuffer work = new StringBuffer("aaa"); + int errorCount = 0; + + // a break should always occur after CR (unless followed by LF), LF, PS, and LS + String breaks = /*"\r\n\u2029\u2028"*/"\n\u2029\u2028"; + // change this back when new BI code is added + + for (int i = 0; i < breaks.length(); i++) { + work.setCharAt(1, breaks.charAt(i)); + for (int j = 0; j < testChars.length(); j++) { + work.setCharAt(0, testChars.charAt(j)); + for (int k = 0; k < testChars.length(); k++) { + char c = testChars.charAt(k); + + // if a cr is followed by lf, don't do the check (they stay together) + if (work.charAt(1) == '\r' && (c == '\n')) + continue; + + // CONTROL (Cc) and FORMAT (Cf) Characters are to be ignored + // for breaking purposes as per UTR14 + int type1 = Character.getType(work.charAt(1)); + int type2 = Character.getType(c); + if (type1 == Character.CONTROL || type1 == Character.FORMAT || + type2 == Character.CONTROL || type2 == Character.FORMAT) { + continue; + } + + work.setCharAt(2, c); + tb.setText(work.toString()); + boolean seen2 = false; + for (int l = tb.first(); l != BreakIterator.DONE; l = tb.next()) { + if (l == 2) + seen2 = true; + } + if (!seen2) { + errln("No break between U+" + Integer.toHexString((int)(work.charAt(1))) + + " and U+" + Integer.toHexString((int)(work.charAt(2)))); + errorCount++; + if (errorCount >= 75) + return; + } + } + } + } + } + + private void doOtherInvariantTest(BreakIterator tb, String testChars) + { + StringBuffer work = new StringBuffer("a\r\na"); + int errorCount = 0; + + // a break should never occur between CR and LF + for (int i = 0; i < testChars.length(); i++) { + work.setCharAt(0, testChars.charAt(i)); + for (int j = 0; j < testChars.length(); j++) { + work.setCharAt(3, testChars.charAt(j)); + tb.setText(work.toString()); + for (int k = tb.first(); k != BreakIterator.DONE; k = tb.next()) + if (k == 2) { + errln("Break between CR and LF in string U+" + Integer.toHexString( + (int)(work.charAt(0))) + ", U+d U+a U+" + Integer.toHexString( + (int)(work.charAt(3)))); + errorCount++; + if (errorCount >= 75) + return; + } + } + } + + // a break should never occur before a non-spacing mark, unless it's preceded + // by a line terminator + work.setLength(0); + work.append("aaaa"); + for (int i = 0; i < testChars.length(); i++) { + char c = testChars.charAt(i); + if (c == '\n' || c == '\r' || c == '\u2029' || c == '\u2028' || c == '\u0003') + continue; + work.setCharAt(1, c); + for (int j = 0; j < testChars.length(); j++) { + c = testChars.charAt(j); + if (Character.getType(c) != Character.NON_SPACING_MARK && Character.getType(c) + != Character.ENCLOSING_MARK) + continue; + work.setCharAt(2, c); + + // CONTROL (Cc) and FORMAT (Cf) Characters are to be ignored + // for breaking purposes as per UTR14 + int type1 = Character.getType(work.charAt(1)); + int type2 = Character.getType(work.charAt(2)); + if (type1 == Character.CONTROL || type1 == Character.FORMAT || + type2 == Character.CONTROL || type2 == Character.FORMAT) { + continue; + } + + tb.setText(work.toString()); + for (int k = tb.first(); k != BreakIterator.DONE; k = tb.next()) + if (k == 2) { + errln("Break between U+" + Integer.toHexString((int)(work.charAt(1))) + + " and U+" + Integer.toHexString((int)(work.charAt(2)))); + errorCount++; + if (errorCount >= 75) + return; + } + } + } + } + + public void debugLogln(String s) { + final String zeros = "0000"; + String temp; + StringBuffer out = new StringBuffer(); + for (int i = 0; i < s.length(); i++) { + char c = s.charAt(i); + if (c >= ' ' && c < '\u007f') + out.append(c); + else { + out.append("\\u"); + temp = Integer.toHexString((int)c); + out.append(zeros.substring(0, 4 - temp.length())); + out.append(temp); + } + } + logln(out.toString()); + } + + //========================================================================= + // tests + //========================================================================= + + public void TestWordBreak() { + + Vector wordSelectionData = new Vector(); + + wordSelectionData.addElement("12,34"); + + wordSelectionData.addElement(" "); + wordSelectionData.addElement("\u00A2"); //cent sign + wordSelectionData.addElement("\u00A3"); //pound sign + wordSelectionData.addElement("\u00A4"); //currency sign + wordSelectionData.addElement("\u00A5"); //yen sign + wordSelectionData.addElement("alpha-beta-gamma"); + wordSelectionData.addElement("."); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("Badges"); + wordSelectionData.addElement("?"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("BADGES"); + wordSelectionData.addElement("!"); + wordSelectionData.addElement("?"); + wordSelectionData.addElement("!"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("We"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("don't"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("need"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("no"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("STINKING"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("BADGES"); + wordSelectionData.addElement("!"); + wordSelectionData.addElement("!"); + wordSelectionData.addElement("!"); + + wordSelectionData.addElement("012.566,5"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("123.3434,900"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("1000,233,456.000"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("1,23.322%"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("123.1222"); + + wordSelectionData.addElement(" "); + wordSelectionData.addElement("\u0024123,000.20"); + + wordSelectionData.addElement(" "); + wordSelectionData.addElement("179.01\u0025"); + + wordSelectionData.addElement("Hello"); + wordSelectionData.addElement(","); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("how"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("are"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("you"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("X"); + wordSelectionData.addElement(" "); + + wordSelectionData.addElement("Now"); + wordSelectionData.addElement("\r"); + wordSelectionData.addElement("is"); + wordSelectionData.addElement("\n"); + wordSelectionData.addElement("the"); + wordSelectionData.addElement("\r\n"); + wordSelectionData.addElement("time"); + wordSelectionData.addElement("\n"); + wordSelectionData.addElement("\r"); + wordSelectionData.addElement("for"); + wordSelectionData.addElement("\r"); + wordSelectionData.addElement("\r"); + wordSelectionData.addElement("all"); + wordSelectionData.addElement(" "); + + generalIteratorTest(wordBreak, wordSelectionData); + } + + public void TestBug4097779() { + Vector wordSelectionData = new Vector(); + + wordSelectionData.addElement("aa\u0300a"); + wordSelectionData.addElement(" "); + + generalIteratorTest(wordBreak, wordSelectionData); + } + + public void TestBug4098467Words() { + Vector wordSelectionData = new Vector(); + + // What follows is a string of Korean characters (I found it in the Yellow Pages + // ad for the Korean Presbyterian Church of San Francisco, and I hope I transcribed + // it correctly), first as precomposed syllables, and then as conjoining jamo. + // Both sequences should be semantically identical and break the same way. + // precomposed syllables... + wordSelectionData.addElement("\uc0c1\ud56d"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("\ud55c\uc778"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("\uc5f0\ud569"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("\uc7a5\ub85c\uad50\ud68c"); + wordSelectionData.addElement(" "); + // conjoining jamo... + wordSelectionData.addElement("\u1109\u1161\u11bc\u1112\u1161\u11bc"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("\u1112\u1161\u11ab\u110b\u1175\u11ab"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("\u110b\u1167\u11ab\u1112\u1161\u11b8"); + wordSelectionData.addElement(" "); + wordSelectionData.addElement("\u110c\u1161\u11bc\u1105\u1169\u1100\u116d\u1112\u116c"); + wordSelectionData.addElement(" "); + + generalIteratorTest(wordBreak, wordSelectionData); + } + + public void TestBug4117554Words() { + Vector wordSelectionData = new Vector(); + + // this is a test for bug #4117554: the ideographic iteration mark (U+3005) should + // count as a Kanji character for the purposes of word breaking + wordSelectionData.addElement("abc"); + wordSelectionData.addElement("\u4e01\u4e02\u3005\u4e03\u4e03"); + wordSelectionData.addElement("abc"); + + generalIteratorTest(wordBreak, wordSelectionData); + } + + public void TestSentenceBreak() { + Vector sentenceSelectionData = new Vector(); + + sentenceSelectionData.addElement("This is a simple sample sentence. "); + sentenceSelectionData.addElement("(This is it.) "); + sentenceSelectionData.addElement("This is a simple sample sentence. "); + sentenceSelectionData.addElement("\"This isn\'t it.\" "); + sentenceSelectionData.addElement("Hi! "); + sentenceSelectionData.addElement("This is a simple sample sentence. "); + sentenceSelectionData.addElement("It does not have to make any sense as you can see. "); + sentenceSelectionData.addElement("Nel mezzo del cammin di nostra vita, mi ritrovai in una selva oscura. "); + sentenceSelectionData.addElement("Che la dritta via aveo smarrita. "); + sentenceSelectionData.addElement("He said, that I said, that you said!! "); + + sentenceSelectionData.addElement("Don't rock the boat.\u2029"); + + sentenceSelectionData.addElement("Because I am the daddy, that is why. "); + sentenceSelectionData.addElement("Not on my time (el timo.)! "); + + sentenceSelectionData.addElement("So what!!\u2029"); + + sentenceSelectionData.addElement("\"But now,\" he said, \"I know!\" "); + sentenceSelectionData.addElement("Harris thumbed down several, including \"Away We Go\" (which became the huge success Oklahoma!). "); + sentenceSelectionData.addElement("One species, B. anthracis, is highly virulent.\n"); + sentenceSelectionData.addElement("Wolf said about Sounder:\"Beautifully thought-out and directed.\" "); + sentenceSelectionData.addElement("Have you ever said, \"This is where \tI shall live\"? "); + sentenceSelectionData.addElement("He answered, \"You may not!\" "); + sentenceSelectionData.addElement("Another popular saying is: \"How do you do?\". "); + sentenceSelectionData.addElement("Yet another popular saying is: \'I\'m fine thanks.\' "); + sentenceSelectionData.addElement("What is the proper use of the abbreviation pp.? "); + sentenceSelectionData.addElement("Yes, I am definatelly 12\" tall!!"); + + generalIteratorTest(sentenceBreak, sentenceSelectionData); + } + + public void TestBug4113835() { + Vector sentenceSelectionData = new Vector(); + + // test for bug #4113835: \n and \r count as spaces, not as paragraph breaks + sentenceSelectionData.addElement("Now\ris\nthe\r\ntime\n\rfor\r\rall\u2029"); + + generalIteratorTest(sentenceBreak, sentenceSelectionData); + } + + public void TestBug4111338() { + Vector sentenceSelectionData = new Vector(); + + // test for bug #4111338: Don't break sentences at the boundary between CJK + // and other letters + sentenceSelectionData.addElement("\u5487\u67ff\ue591\u5017\u61b3\u60a1\u9510\u8165:\"JAVA\u821c" + + "\u8165\u7fc8\u51ce\u306d,\u2494\u56d8\u4ec0\u60b1\u8560\u51ba" + + "\u611d\u57b6\u2510\u5d46\".\u2029"); + sentenceSelectionData.addElement("\u5487\u67ff\ue591\u5017\u61b3\u60a1\u9510\u8165\u9de8" + + "\u97e4JAVA\u821c\u8165\u7fc8\u51ce\u306d\ue30b\u2494\u56d8\u4ec0" + + "\u60b1\u8560\u51ba\u611d\u57b6\u2510\u5d46\u97e5\u7751\u2029"); + sentenceSelectionData.addElement("\u5487\u67ff\ue591\u5017\u61b3\u60a1\u9510\u8165\u9de8\u97e4" + + "\u6470\u8790JAVA\u821c\u8165\u7fc8\u51ce\u306d\ue30b\u2494\u56d8" + + "\u4ec0\u60b1\u8560\u51ba\u611d\u57b6\u2510\u5d46\u97e5\u7751\u2029"); + sentenceSelectionData.addElement("He said, \"I can go there.\"\u2029"); + + generalIteratorTest(sentenceBreak, sentenceSelectionData); + } + + public void TestBug4117554Sentences() { + Vector sentenceSelectionData = new Vector(); + + // Treat fullwidth variants of .!? the same as their + // normal counterparts + sentenceSelectionData.addElement("I know I'm right\uff0e "); + sentenceSelectionData.addElement("Right\uff1f "); + sentenceSelectionData.addElement("Right\uff01 "); + + // Don't break sentences at boundary between CJK and digits + sentenceSelectionData.addElement("\u5487\u67ff\ue591\u5017\u61b3\u60a1\u9510\u8165\u9de8" + + "\u97e48888\u821c\u8165\u7fc8\u51ce\u306d\ue30b\u2494\u56d8\u4ec0" + + "\u60b1\u8560\u51ba\u611d\u57b6\u2510\u5d46\u97e5\u7751\u2029"); + + // Break sentence between a sentence terminator and + // opening punctuation + sentenceSelectionData.addElement("no?"); + sentenceSelectionData.addElement("(yes)"); + + generalIteratorTest(sentenceBreak, sentenceSelectionData); + } + + public void TestBug4158381() { + Vector sentenceSelectionData = new Vector(); + + // Don't break sentence after period if it isn't followed by a space + sentenceSelectionData.addElement("Test Flags.Flag class. "); + sentenceSelectionData.addElement("Another test.\u2029"); + + // No breaks when there are no terminators around + sentenceSelectionData.addElement("

Provides a set of " + + ""lightweight" (all-javaTM" + + " language) components that, " + + "to the maximum degree possible, work the same on all platforms. "); + sentenceSelectionData.addElement("Another test.\u2029"); + + generalIteratorTest(sentenceBreak, sentenceSelectionData); + } + + public void TestBug4143071() { + Vector sentenceSelectionData = new Vector(); + + // Make sure sentences that end with digits work right + sentenceSelectionData.addElement("Today is the 27th of May, 1998. "); + sentenceSelectionData.addElement("Tomorrow with be 28 May 1998. "); + sentenceSelectionData.addElement("The day after will be the 30th.\u2029"); + + generalIteratorTest(sentenceBreak, sentenceSelectionData); + } + + public void TestBug4152416() { + Vector sentenceSelectionData = new Vector(); + + // Make sure sentences ending with a capital letter are treated correctly + sentenceSelectionData.addElement("The type of all primitive " + + "boolean values accessed in the target VM. "); + sentenceSelectionData.addElement("Calls to xxx will return an " + + "implementor of this interface.\u2029"); + + generalIteratorTest(sentenceBreak, sentenceSelectionData); + } + + public void TestBug4152117() { + Vector sentenceSelectionData = new Vector(); + + // Make sure sentence breaking is handling punctuation correctly + // [COULD NOT REPRODUCE THIS BUG, BUT TEST IS HERE TO MAKE SURE + // IT DOESN'T CROP UP] + sentenceSelectionData.addElement("Constructs a randomly generated " + + "BigInteger, uniformly distributed over the range 0 " + + "to (2numBits - 1), inclusive. "); + sentenceSelectionData.addElement("The uniformity of the distribution " + + "assumes that a fair source of random bits is provided in " + + "rnd. "); + sentenceSelectionData.addElement("Note that this constructor always " + + "constructs a non-negative BigInteger.\u2029"); + + generalIteratorTest(sentenceBreak, sentenceSelectionData); + } + + public void TestLineBreak() { + Vector lineSelectionData = new Vector(); + + lineSelectionData.addElement("Multi-"); + lineSelectionData.addElement("Level "); + lineSelectionData.addElement("example "); + lineSelectionData.addElement("of "); + lineSelectionData.addElement("a "); + lineSelectionData.addElement("semi-"); + lineSelectionData.addElement("idiotic "); + lineSelectionData.addElement("non-"); + lineSelectionData.addElement("sensical "); + lineSelectionData.addElement("(non-"); + lineSelectionData.addElement("important) "); + lineSelectionData.addElement("sentence. "); + + lineSelectionData.addElement("Hi "); + lineSelectionData.addElement("Hello "); + lineSelectionData.addElement("How\n"); + lineSelectionData.addElement("are\r"); + lineSelectionData.addElement("you\u2028"); + lineSelectionData.addElement("fine.\t"); + lineSelectionData.addElement("good. "); + + lineSelectionData.addElement("Now\r"); + lineSelectionData.addElement("is\n"); + lineSelectionData.addElement("the\r\n"); + lineSelectionData.addElement("time\n"); + lineSelectionData.addElement("\r"); + lineSelectionData.addElement("for\r"); + lineSelectionData.addElement("\r"); + lineSelectionData.addElement("all"); + + generalIteratorTest(lineBreak, lineSelectionData); + } + + public void TestBug4068133() { + Vector lineSelectionData = new Vector(); + + lineSelectionData.addElement("\u96f6"); + lineSelectionData.addElement("\u4e00\u3002"); + lineSelectionData.addElement("\u4e8c\u3001"); + lineSelectionData.addElement("\u4e09\u3002\u3001"); + lineSelectionData.addElement("\u56db\u3001\u3002\u3001"); + lineSelectionData.addElement("\u4e94,"); + lineSelectionData.addElement("\u516d."); + lineSelectionData.addElement("\u4e03.\u3001,\u3002"); + lineSelectionData.addElement("\u516b"); + + generalIteratorTest(lineBreak, lineSelectionData); + } + + public void TestBug4086052() { + Vector lineSelectionData = new Vector(); + + lineSelectionData.addElement("foo\u00a0bar "); +// lineSelectionData.addElement("foo\ufeffbar"); + + generalIteratorTest(lineBreak, lineSelectionData); + } + + public void TestBug4097920() { + Vector lineSelectionData = new Vector(); + + lineSelectionData.addElement("dog,"); + lineSelectionData.addElement("cat,"); + lineSelectionData.addElement("mouse "); + lineSelectionData.addElement("(one)"); + lineSelectionData.addElement("(two)\n"); + + generalIteratorTest(lineBreak, lineSelectionData); + } + /* + public void TestBug4035266() { + Vector lineSelectionData = new Vector(); + + lineSelectionData.addElement("The "); + lineSelectionData.addElement("balance "); + lineSelectionData.addElement("is "); + lineSelectionData.addElement("$-23,456.78, "); + lineSelectionData.addElement("not "); + lineSelectionData.addElement("-$32,456.78!\n"); + + generalIteratorTest(lineBreak, lineSelectionData); + } + */ + public void TestBug4098467Lines() { + Vector lineSelectionData = new Vector(); + + // What follows is a string of Korean characters (I found it in the Yellow Pages + // ad for the Korean Presbyterian Church of San Francisco, and I hope I transcribed + // it correctly), first as precomposed syllables, and then as conjoining jamo. + // Both sequences should be semantically identical and break the same way. + // precomposed syllables... + lineSelectionData.addElement("\uc0c1"); + lineSelectionData.addElement("\ud56d "); + lineSelectionData.addElement("\ud55c"); + lineSelectionData.addElement("\uc778 "); + lineSelectionData.addElement("\uc5f0"); + lineSelectionData.addElement("\ud569 "); + lineSelectionData.addElement("\uc7a5"); + lineSelectionData.addElement("\ub85c"); + lineSelectionData.addElement("\uad50"); + lineSelectionData.addElement("\ud68c "); + // conjoining jamo... + lineSelectionData.addElement("\u1109\u1161\u11bc\u1112\u1161\u11bc "); + lineSelectionData.addElement("\u1112\u1161\u11ab\u110b\u1175\u11ab "); + lineSelectionData.addElement("\u110b\u1167\u11ab\u1112\u1161\u11b8 "); + lineSelectionData.addElement("\u110c\u1161\u11bc\u1105\u1169\u1100\u116d\u1112\u116c"); + + if (Locale.getDefault().getLanguage().equals("th")) { + logln("This test is skipped in th locale."); + return; + } + + generalIteratorTest(lineBreak, lineSelectionData); + } + + public void TestBug4117554Lines() { + Vector lineSelectionData = new Vector(); + + // Fullwidth .!? should be treated as postJwrd + lineSelectionData.addElement("\u4e01\uff0e"); + lineSelectionData.addElement("\u4e02\uff01"); + lineSelectionData.addElement("\u4e03\uff1f"); + + generalIteratorTest(lineBreak, lineSelectionData); + } + + public void TestBug4217703() { + if (Locale.getDefault().getLanguage().equals("th")) { + logln("This test is skipped in th locale."); + return; + } + + Vector lineSelectionData = new Vector(); + + // There shouldn't be a line break between sentence-ending punctuation + // and a closing quote + lineSelectionData.addElement("He "); + lineSelectionData.addElement("said "); + lineSelectionData.addElement("\"Go!\" "); + lineSelectionData.addElement("I "); + lineSelectionData.addElement("went. "); + + lineSelectionData.addElement("Hashtable$Enumeration "); + lineSelectionData.addElement("getText()."); + lineSelectionData.addElement("getIndex()"); + + generalIteratorTest(lineBreak, lineSelectionData); + } + + private static final String graveS = "S\u0300"; + private static final String acuteBelowI = "i\u0317"; + private static final String acuteE = "e\u0301"; + private static final String circumflexA = "a\u0302"; + private static final String tildeE = "e\u0303"; + + public void TestCharacterBreak() { + Vector characterSelectionData = new Vector(); + + characterSelectionData.addElement(graveS); + characterSelectionData.addElement(acuteBelowI); + characterSelectionData.addElement("m"); + characterSelectionData.addElement("p"); + characterSelectionData.addElement("l"); + characterSelectionData.addElement(acuteE); + characterSelectionData.addElement(" "); + characterSelectionData.addElement("s"); + characterSelectionData.addElement(circumflexA); + characterSelectionData.addElement("m"); + characterSelectionData.addElement("p"); + characterSelectionData.addElement("l"); + characterSelectionData.addElement(tildeE); + characterSelectionData.addElement("."); + characterSelectionData.addElement("w"); + characterSelectionData.addElement(circumflexA); + characterSelectionData.addElement("w"); + characterSelectionData.addElement("a"); + characterSelectionData.addElement("f"); + characterSelectionData.addElement("q"); + characterSelectionData.addElement("\n"); + characterSelectionData.addElement("\r"); + characterSelectionData.addElement("\r\n"); + characterSelectionData.addElement("\n"); + + generalIteratorTest(characterBreak, characterSelectionData); + } + + public void TestBug4098467Characters() { + Vector characterSelectionData = new Vector(); + + // What follows is a string of Korean characters (I found it in the Yellow Pages + // ad for the Korean Presbyterian Church of San Francisco, and I hope I transcribed + // it correctly), first as precomposed syllables, and then as conjoining jamo. + // Both sequences should be semantically identical and break the same way. + // precomposed syllables... + characterSelectionData.addElement("\uc0c1"); + characterSelectionData.addElement("\ud56d"); + characterSelectionData.addElement(" "); + characterSelectionData.addElement("\ud55c"); + characterSelectionData.addElement("\uc778"); + characterSelectionData.addElement(" "); + characterSelectionData.addElement("\uc5f0"); + characterSelectionData.addElement("\ud569"); + characterSelectionData.addElement(" "); + characterSelectionData.addElement("\uc7a5"); + characterSelectionData.addElement("\ub85c"); + characterSelectionData.addElement("\uad50"); + characterSelectionData.addElement("\ud68c"); + characterSelectionData.addElement(" "); + // conjoining jamo... + characterSelectionData.addElement("\u1109\u1161\u11bc"); + characterSelectionData.addElement("\u1112\u1161\u11bc"); + characterSelectionData.addElement(" "); + characterSelectionData.addElement("\u1112\u1161\u11ab"); + characterSelectionData.addElement("\u110b\u1175\u11ab"); + characterSelectionData.addElement(" "); + characterSelectionData.addElement("\u110b\u1167\u11ab"); + characterSelectionData.addElement("\u1112\u1161\u11b8"); + characterSelectionData.addElement(" "); + characterSelectionData.addElement("\u110c\u1161\u11bc"); + characterSelectionData.addElement("\u1105\u1169"); + characterSelectionData.addElement("\u1100\u116d"); + characterSelectionData.addElement("\u1112\u116c"); + + generalIteratorTest(characterBreak, characterSelectionData); + } + + public void TestBug4153072() { + BreakIterator iter = BreakIterator.getWordInstance(); + String str = "...Hello, World!..."; + int begin = 3; + int end = str.length() - 3; + boolean gotException = false; + boolean dummy; + + iter.setText(new StringCharacterIterator(str, begin, end, begin)); + for (int index = -1; index < begin + 1; ++index) { + try { + dummy = iter.isBoundary(index); + if (index < begin) + errln("Didn't get exception with offset = " + index + + " and begin index = " + begin); + } + catch (IllegalArgumentException e) { + if (index >= begin) + errln("Got exception with offset = " + index + + " and begin index = " + begin); + } + } + } + + public void TestBug4146175Sentences() { + Vector sentenceSelectionData = new Vector(); + + // break between periods and opening punctuation even when there's no + // intervening space + sentenceSelectionData.addElement("end."); + sentenceSelectionData.addElement("(This is\u2029"); + + // treat the fullwidth period as an unambiguous sentence terminator + sentenceSelectionData.addElement("\u7d42\u308f\u308a\uff0e"); + sentenceSelectionData.addElement("\u300c\u3053\u308c\u306f"); + + generalIteratorTest(sentenceBreak, sentenceSelectionData); + } + + public void TestBug4146175Lines() { + if (Locale.getDefault().getLanguage().equals("th")) { + logln("This test is skipped in th locale."); + return; + } + + Vector lineSelectionData = new Vector(); + + // the fullwidth comma should stick to the preceding Japanese character + lineSelectionData.addElement("\u7d42\uff0c"); + lineSelectionData.addElement("\u308f"); + + generalIteratorTest(lineBreak, lineSelectionData); + } + + public void TestBug4214367() { + if (Locale.getDefault().getLanguage().equals("th")) { + logln("This test is skipped in th locale."); + return; + } + + Vector wordSelectionData = new Vector(); + + // the hiragana and katakana iteration marks and the long vowel mark + // are not being treated correctly by the word-break iterator + wordSelectionData.addElement("\u3042\u3044\u309d\u3042\u309e\u3042\u30fc\u3042"); + wordSelectionData.addElement("\u30a2\u30a4\u30fd\u30a2\u30fe\u30a2\u30fc\u30a2"); + + generalIteratorTest(wordBreak, wordSelectionData); + } + + private static final String cannedTestChars // characters fo the class Cc are ignorable for breaking + = /*"\u0000\u0001\u0002\u0003\u0004*/" !\"#$%&()+-01234<=>ABCDE[]^_`abcde{}|\u00a0\u00a2" + + "\u00a3\u00a4\u00a5\u00a6\u00a7\u00a8\u00a9\u00ab\u00ad\u00ae\u00af\u00b0\u00b2\u00b3" + + "\u00b4\u00b9\u00bb\u00bc\u00bd\u02b0\u02b1\u02b2\u02b3\u02b4\u0300\u0301\u0302\u0303" + + "\u0304\u05d0\u05d1\u05d2\u05d3\u05d4\u0903\u093e\u093f\u0940\u0949\u0f3a\u0f3b\u2000" + + "\u2001\u2002\u200c\u200d\u200e\u200f\u2010\u2011\u2012\u2028\u2029\u202a\u203e\u203f" + + "\u2040\u20dd\u20de\u20df\u20e0\u2160\u2161\u2162\u2163\u2164"; + + public void TestSentenceInvariants() + { + BreakIterator e = BreakIterator.getSentenceInstance(); + doOtherInvariantTest(e, cannedTestChars + ".,\u3001\u3002\u3041\u3042\u3043\ufeff"); + } + + public void TestWordInvariants() + { + if (Locale.getDefault().getLanguage().equals("th")) { + logln("This test is skipped in th locale."); + return; + } + + BreakIterator e = BreakIterator.getWordInstance(); + doBreakInvariantTest(e, cannedTestChars + "\',.\u3041\u3042\u3043\u309b\u309c\u30a1\u30a2" + + "\u30a3\u4e00\u4e01\u4e02"); + doOtherInvariantTest(e, cannedTestChars + "\',.\u3041\u3042\u3043\u309b\u309c\u30a1\u30a2" + + "\u30a3\u4e00\u4e01\u4e02"); + } + + public void TestLineInvariants() + { + if (Locale.getDefault().getLanguage().equals("th")) { + logln("This test is skipped in th locale."); + return; + } + + BreakIterator e = BreakIterator.getLineInstance(); + String testChars = cannedTestChars + ".,;:\u3001\u3002\u3041\u3042\u3043\u3044\u3045" + + "\u30a3\u4e00\u4e01\u4e02"; + doBreakInvariantTest(e, testChars); + doOtherInvariantTest(e, testChars); + + int errorCount = 0; + + // in addition to the other invariants, a line-break iterator should make sure that: + // it doesn't break around the non-breaking characters + String noBreak = "\u00a0\u2007\u2011\ufeff"; + StringBuffer work = new StringBuffer("aaa"); + for (int i = 0; i < testChars.length(); i++) { + char c = testChars.charAt(i); + if (c == '\r' || c == '\n' || c == '\u2029' || c == '\u2028' || c == '\u0003') + continue; + work.setCharAt(0, c); + for (int j = 0; j < noBreak.length(); j++) { + work.setCharAt(1, noBreak.charAt(j)); + for (int k = 0; k < testChars.length(); k++) { + work.setCharAt(2, testChars.charAt(k)); + // CONTROL (Cc) and FORMAT (Cf) Characters are to be ignored + // for breaking purposes as per UTR14 + int type1 = Character.getType(work.charAt(1)); + int type2 = Character.getType(work.charAt(2)); + if (type1 == Character.CONTROL || type1 == Character.FORMAT || + type2 == Character.CONTROL || type2 == Character.FORMAT) { + continue; + } + e.setText(work.toString()); + for (int l = e.first(); l != BreakIterator.DONE; l = e.next()) { + if (l == 1 || l == 2) { + //errln("Got break between U+" + Integer.toHexString((int) + // (work.charAt(l - 1))) + " and U+" + Integer.toHexString( + // (int)(work.charAt(l))) + "\ntype1 = " + type1 + "\ntype2 = " + type2); + // as per UTR14 spaces followed by a GLUE character should allow + // line breaking + if (work.charAt(l-1) == '\u0020' && (work.charAt(l) == '\u00a0' || + work.charAt(l) == '\u0f0c' || + work.charAt(l) == '\u2007' || + work.charAt(l) == '\u2011' || + work.charAt(l) == '\u202f' || + work.charAt(l) == '\ufeff')) { + continue; + } + errln("Got break between U+" + Integer.toHexString((int) + (work.charAt(l - 1))) + " and U+" + Integer.toHexString( + (int)(work.charAt(l)))); + errorCount++; + if (errorCount >= 75) + return; + } + } + } + } + } + + // The following test has so many exceptions that it would be better to write a new set of data + // that tested exactly what should be tested + // Until that point it will be commented out + /* + + // it does break after dashes (unless they're followed by a digit, a non-spacing mark, + // a currency symbol, a space, a format-control character, a regular control character, + // a line or paragraph separator, or another dash) + String dashes = "-\u00ad\u2010\u2012\u2013\u2014"; + for (int i = 0; i < testChars.length(); i++) { + work.setCharAt(0, testChars.charAt(i)); + for (int j = 0; j < dashes.length(); j++) { + work.setCharAt(1, dashes.charAt(j)); + for (int k = 0; k < testChars.length(); k++) { + char c = testChars.charAt(k); + if (Character.getType(c) == Character.DECIMAL_DIGIT_NUMBER || + Character.getType(c) == Character.OTHER_NUMBER || + Character.getType(c) == Character.NON_SPACING_MARK || + Character.getType(c) == Character.ENCLOSING_MARK || + Character.getType(c) == Character.CURRENCY_SYMBOL || + Character.getType(c) == Character.DASH_PUNCTUATION || + Character.getType(c) == Character.SPACE_SEPARATOR || + Character.getType(c) == Character.FORMAT || + Character.getType(c) == Character.CONTROL || + Character.getType(c) == Character.END_PUNCTUATION || + Character.getType(c) == Character.FINAL_QUOTE_PUNCTUATION || + Character.getType(c) == Character.OTHER_PUNCTUATION || + c == '\'' || c == '\"' || + // category EX as per UTR14 + c == '!' || c == '?' || c == '\ufe56' || c == '\ufe57' || c == '\uff01' || c == '\uff1f' || + c == '\n' || c == '\r' || c == '\u2028' || c == '\u2029' || + c == '\u0003' || c == '\u2007' || c == '\u2011' || + c == '\ufeff') + continue; + work.setCharAt(2, c); + e.setText(work.toString()); + boolean saw2 = false; + for (int l = e.first(); l != BreakIterator.DONE; l = e.next()) + if (l == 2) + saw2 = true; + if (!saw2) { + errln("Didn't get break between U+" + Integer.toHexString((int) + (work.charAt(1))) + " and U+" + Integer.toHexString( + (int)(work.charAt(2)))); + errorCount++; + if (errorCount >= 75) + return; + } + } + } + } + */ + } + + public void TestCharacterInvariants() + { + BreakIterator e = BreakIterator.getCharacterInstance(); + doBreakInvariantTest(e, cannedTestChars + "\u1100\u1101\u1102\u1160\u1161\u1162\u11a8" + + "\u11a9\u11aa"); + doOtherInvariantTest(e, cannedTestChars + "\u1100\u1101\u1102\u1160\u1161\u1162\u11a8" + + "\u11a9\u11aa"); + } + + public void TestEmptyString() + { + String text = ""; + Vector x = new Vector(); + x.addElement(text); + + generalIteratorTest(lineBreak, x); + } + + public void TestGetAvailableLocales() + { + Locale[] locList = BreakIterator.getAvailableLocales(); + + if (locList.length == 0) + errln("getAvailableLocales() returned an empty list!"); + // I have no idea how to test this function... + } + + + /** + * Bug 4095322 + */ + public void TestJapaneseLineBreak() + { + StringBuffer testString = new StringBuffer("\u4e00x\u4e8c"); + // Breaking on $ is inconsistent + + /* Characters in precedingChars and followingChars have been updated + * from Unicode 2.0.14-based to 3.0.0-based when 4638433 was fixed. + * In concrete terms, + * 0x301F : Its category was changed from Ps to Pe since Unicode 2.1. + * 0x169B & 0x169C : added since Unicode 3.0.0. + */ + String precedingChars = + /* Puctuation, Open */ + "([{\u201a\u201e\u2045\u207d\u208d\u2329\u3008\u300a\u300c\u300e\u3010\u3014\u3016\u3018\u301a\u301d\ufe35\ufe37\ufe39\ufe3b\ufe3d\ufe3f\ufe41\ufe43\ufe59\ufe5b\ufe5d\uff08\uff3b\uff5b\uff62\u169b" + /* Punctuation, Initial quote */ + + "\u00ab\u2018\u201b\u201c\u201f\u2039" + /* Symbol, Currency */ + + "\u00a5\u00a3\u00a4\u20a0"; + + String followingChars = + /* Puctuation, Close */ + ")]}\u2046\u207e\u208e\u232a\u3009\u300b\u300d\u300f\u3011\u3015\u3017\u3019\u301b\u301e\u301f\ufd3e\ufe36\ufe38\ufe3a\ufe3c\ufe3e\ufe40\ufe42\ufe44\ufe5a\ufe5c\ufe5e\uff09\uff3d\uff5d\uff63\u169c" + /* Punctuation, Final quote */ + + "\u00bb\u2019\u201d\u203a" + /* Punctuation, Other */ + + "!%,.:;\u3001\u3002\u2030\u2031\u2032\u2033\u2034" + /* Punctuation, Dash */ + + "\u2103\u2109" + /* Symbol, Currency */ + + "\u00a2" + /* Letter, Modifier */ + + "\u3005\u309d\u309e" + /* Letter, Other */ + + "\u3063\u3083\u3085\u3087\u30c3\u30e3\u30e5\u30e7\u30fc\u30fd\u30fe" + /* Mark, Non-Spacing */ + + "\u0300\u0301\u0302" + /* Symbol, Modifier */ + + "\u309b\u309c" + /* Symbol, Other */ + + "\u00b0"; + + BreakIterator iter = BreakIterator.getLineInstance(Locale.JAPAN); + + for (int i = 0; i < precedingChars.length(); i++) { + testString.setCharAt(1, precedingChars.charAt(i)); + iter.setText(testString.toString()); + int j = iter.first(); + if (j != 0) { + errln("ja line break failure: failed to start at 0 and bounced at " + j); + } + j = iter.next(); + if (j != 1) { + errln("ja line break failure: failed to stop before '" + + precedingChars.charAt(i) + "' (\\u" + + Integer.toString(precedingChars.charAt(i), 16) + + ") at 1 and bounded at " + j); + } + j = iter.next(); + if (j != 3) { + errln("ja line break failure: failed to skip position after '" + + precedingChars.charAt(i) + "' (\\u" + + Integer.toString(precedingChars.charAt(i), 16) + + ") at 3 and bounded at " + j); + } + } + + for (int i = 0; i < followingChars.length(); i++) { + testString.setCharAt(1, followingChars.charAt(i)); + iter.setText(testString.toString()); + int j = iter.first(); + if (j != 0) { + errln("ja line break failure: failed to start at 0 and bounded at " + j); + } + j = iter.next(); + if (j != 2) { + errln("ja line break failure: failed to skip position before '" + + followingChars.charAt(i) + "' (\\u" + + Integer.toString(followingChars.charAt(i), 16) + + ") at 2 and bounded at " + j); + } + j = iter.next(); + if (j != 3) { + errln("ja line break failure: failed to stop after '" + + followingChars.charAt(i) + "' (\\u" + + Integer.toString(followingChars.charAt(i), 16) + + ") at 3 and bounded at " + j); + } + } + } + + /** + * Bug 4638433 + */ + public void TestLineBreakBasedOnUnicode3_0_0() + { + BreakIterator iter; + int i; + + /* Latin Extend-B characters + * 0x0218-0x0233 which have been added since Unicode 3.0.0. + */ + iter = BreakIterator.getWordInstance(Locale.US); + iter.setText("\u0216\u0217\u0218\u0219\u021A"); + i = iter.first(); + i = iter.next(); + if (i != 5) { + errln("Word break failure: failed to stop at 5 and bounded at " + i); + } + + + iter = BreakIterator.getLineInstance(Locale.US); + + /* + * \u301f has changed its category from Ps to Pe since Unicode 2.1. + */ + iter.setText("32\u301f1"); + i = iter.first(); + i = iter.next(); + if (i != 3) { + errln("Line break failure: failed to skip before \\u301F(Pe) at 3 and bounded at " + i); + } + + /* Mongolian + * which have been added since Unicode 3.0.0. + */ + iter.setText("\u1820\u1806\u1821"); + i = iter.first(); + i = iter.next(); + if (i != 2) { + errln("Mongolian line break failure: failed to skip position before \\u1806(Pd) at 2 and bounded at " + i); + } + + /* Khmer which have + * been added since Unicode 3.0.0. + */ + iter.setText("\u17E0\u17DB\u17E1"); + i = iter.first(); + i = iter.next(); + if (i != 1) { + errln("Khmer line break failure: failed to stop before \\u17DB(Sc) at 1 and bounded at " + i); + } + i = iter.next(); + if (i != 3) { + errln("Khmer line break failure: failed to skip position after \\u17DB(Sc) at 3 and bounded at " + i); + } + + /* Ogham which have + * been added since Unicode 3.0.0. + */ + iter.setText("\u1692\u1680\u1696"); + i = iter.first(); + i = iter.next(); + if (i != 2) { + errln("Ogham line break failure: failed to skip postion before \\u1680(Zs) at 2 and bounded at " + i); + } + + + // Confirm changes in BreakIteratorRules_th.java have been reflected. + iter = BreakIterator.getLineInstance(new Locale("th", "")); + + /* Thai + * + * + * + * + */ + iter.setText("\u0E57\u201C\u0E55\u201D\u0E53"); + i = iter.first(); + i = iter.next(); + if (i != 1) { + errln("Thai line break failure: failed to stop before \\u201C(Pi) at 1 and bounded at " + i); + } + i = iter.next(); + if (i != 4) { + errln("Thai line break failure: failed to stop after \\u201D(Pf) at 4 and bounded at " + i); + } + } + + /** + * Bug 4068137 + */ + public void TestEndBehavior() + { + String testString = "boo."; + BreakIterator wb = BreakIterator.getWordInstance(); + wb.setText(testString); + + if (wb.first() != 0) + errln("Didn't get break at beginning of string."); + if (wb.next() != 3) + errln("Didn't get break before period in \"boo.\""); + if (wb.current() != 4 && wb.next() != 4) + errln("Didn't get break at end of string."); + } + + // [serialization test has been removed pursuant to bug #4152965] + + /** + * Bug 4450804 + */ + public void TestLineBreakContractions() { + Vector expected = new Vector(); + + expected.add("These "); + expected.add("are "); + expected.add("'foobles'. "); + expected.add("Don't "); + expected.add("you "); + expected.add("like "); + expected.add("them?"); + generalIteratorTest(lineBreak, expected); + } + +} diff --git a/jdk/test/java/text/BreakIterator/Bug4533872.java b/jdk/test/java/text/BreakIterator/Bug4533872.java new file mode 100644 index 00000000000..64a4ccf569e --- /dev/null +++ b/jdk/test/java/text/BreakIterator/Bug4533872.java @@ -0,0 +1,261 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4533872 4640853 + * @library /java/text/testlib + * @summary Unit tests for supplementary character support (JSR-204) and Unicode 4.0 support + */ + +import java.text.BreakIterator; +import java.util.Locale; + +public class Bug4533872 extends IntlTest { + + public static void main(String[] args) throws Exception { + new Bug4533872().run(args); + } + + static final String[] given = { + /* Lu Nd Lu Ll */ + "XYZ12345 ABCDE abcde", + /* Nd Lo Nd Lu Po Lu Ll */ + "123\uD800\uDC00345 ABC\uFF61XYZ abc", + /* Nd Lo Nd Lu Po Lu Ll */ + "123\uD800\uDC00345 ABC\uD800\uDD00XYZ abc", + /* Lu Ll Cs Ll Cs Lu Lo Lu */ + "ABCabc\uDC00xyz\uD800ABC\uD800\uDC00XYZ", + }; + + // Golden data for TestNext(), TestBoundar() and TestPrintEach*ward() + static final String[][] expected = { + {"XYZ12345", " ", "ABCDE", " ", "abcde"}, + {"123\uD800\uDC00345", " ", "ABC", "\uFF61", "XYZ", " ", "abc"}, + {"123\uD800\uDC00345", " ", "ABC", "\uD800\uDD00", "XYZ", " ", "abc"}, + {"ABCabc", "\uDC00", "xyz", "\uD800", "ABC\uD800\uDC00XYZ"}, + }; + + BreakIterator iter; + int start, end, current; + + /* + * Test for next(int n) + */ + void TestNext() { + iter = BreakIterator.getWordInstance(Locale.US); + + for (int i = 0; i < given.length; i++) { + iter.setText(given[i]); + start = iter.first(); + int j = expected[i].length - 1; + start = iter.next(j); + end = iter.next(); + + if (!expected[i][j].equals(given[i].substring(start, end))) { + errln("Word break failure: printEachForward() expected:<" + + expected[i][j] + ">, got:<" + + given[i].substring(start, end) + + "> start=" + start + " end=" + end); + } + } + } + + /* + * Test for isBoundary(int n) + */ + void TestIsBoundary() { + iter = BreakIterator.getWordInstance(Locale.US); + + for (int i = 0; i < given.length; i++) { + iter.setText(given[i]); + + start = iter.first(); + end = iter.next(); + + while (end < given[i].length()) { + if (!iter.isBoundary(end)) { + errln("Word break failure: isBoundary() This should be a boundary. Index=" + + end + " for " + given[i]); + } + end = iter.next(); + } + } + } + + + /* + * The followig test cases were made based on examples in BreakIterator's + * API Doc. + */ + + /* + * Test mainly for next() and current() + */ + void TestPrintEachForward() { + iter = BreakIterator.getWordInstance(Locale.US); + + for (int i = 0; i < given.length; i++) { + iter.setText(given[i]); + start = iter.first(); + + // Check current()'s return value - should be same as first()'s. + current = iter.current(); + if (start != current) { + errln("Word break failure: printEachForward() Unexpected current value: current()=" + + current + ", expected(=first())=" + start); + } + + int j = 0; + for (end = iter.next(); + end != BreakIterator.DONE; + start = end, end = iter.next(), j++) { + + // Check current()'s return value - should be same as next()'s. + current = iter.current(); + if (end != current) { + errln("Word break failure: printEachForward() Unexpected current value: current()=" + + current + ", expected(=next())=" + end); + } + + if (!expected[i][j].equals(given[i].substring(start, end))) { + errln("Word break failure: printEachForward() expected:<" + + expected[i][j] + ">, got:<" + + given[i].substring(start, end) + + "> start=" + start + " end=" + end); + } + } + } + } + + /* + * Test mainly for previous() and current() + */ + void TestPrintEachBackward() { + iter = BreakIterator.getWordInstance(Locale.US); + + for (int i = 0; i < given.length; i++) { + iter.setText(given[i]); + end = iter.last(); + + // Check current()'s return value - should be same as last()'s. + current = iter.current(); + if (end != current) { + errln("Word break failure: printEachBackward() Unexpected current value: current()=" + + current + ", expected(=last())=" + end); + } + + int j; + for (start = iter.previous(), j = expected[i].length-1; + start != BreakIterator.DONE; + end = start, start = iter.previous(), j--) { + + // Check current()'s return value - should be same as previous()'s. + current = iter.current(); + if (start != current) { + errln("Word break failure: printEachBackward() Unexpected current value: current()=" + + current + ", expected(=previous())=" + start); + } + + if (!expected[i][j].equals(given[i].substring(start, end))) { + errln("Word break failure: printEachBackward() expected:<" + + expected[i][j] + ">, got:<" + + given[i].substring(start, end) + + "> start=" + start + " end=" + end); + } + } + } + } + + /* + * Test mainly for following() and previous() + */ + void TestPrintAt_1() { + iter = BreakIterator.getWordInstance(Locale.US); + + int[][] index = { + {2, 8, 10, 15, 17}, + {1, 8, 10, 12, 15, 17, 20}, + {3, 8, 10, 13, 16, 18, 20}, + {4, 6, 9, 10, 16}, + }; + + for (int i = 0; i < given.length; i++) { + iter.setText(given[i]); + for (int j = index[i].length-1; j >= 0; j--) { + end = iter.following(index[i][j]); + start = iter.previous(); + + if (!expected[i][j].equals(given[i].substring(start, end))) { + errln("Word break failure: printAt_1() expected:<" + + expected[i][j] + ">, got:<" + + given[i].substring(start, end) + + "> start=" + start + " end=" + end); + } + } + } + } + + /* + * Test mainly for preceding() and next() + */ + void TestPrintAt_2() { + iter = BreakIterator.getWordInstance(Locale.US); + + int[][] index = { + {2, 9, 10, 15, 17}, + {1, 9, 10, 13, 16, 18, 20}, + {4, 9, 10, 13, 16, 18, 20}, + {6, 7, 10, 11, 15}, + }; + + for (int i = 0; i < given.length; i++) { + iter.setText(given[i]); + + // Check preceding(0)'s return value - should equals BreakIterator.DONE. + if (iter.preceding(0) != BreakIterator.DONE) { + errln("Word break failure: printAt_2() expected:-1(BreakIterator.DONE), got:" + + iter.preceding(0)); + } + + for (int j = 0; j < index[i].length; j++) { + start = iter.preceding(index[i][j]); + end = iter.next(); + + if (!expected[i][j].equals(given[i].substring(start, end))) { + errln("Word break failure: printAt_2() expected:<" + + expected[i][j] + ">, got:<" + + given[i].substring(start, end) + + "> start=" + start + " end=" + end); + } + } + + // Check next()'s return value - should equals BreakIterator.DONE. + end = iter.last(); + start = iter.next(); + if (start != BreakIterator.DONE) { + errln("Word break failure: printAt_2() expected:-1(BreakIterator.DONE), got:" + start); + } + } + } +} diff --git a/jdk/test/java/text/BreakIterator/Bug4740757.java b/jdk/test/java/text/BreakIterator/Bug4740757.java new file mode 100644 index 00000000000..b60e70d0e8b --- /dev/null +++ b/jdk/test/java/text/BreakIterator/Bug4740757.java @@ -0,0 +1,76 @@ +/* + * Copyright (c) 2011, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4740757 + * @summary Confirm line-breaking behavior of Hangul + */ + +import java.text.*; +import java.util.*; + +public class Bug4740757 { + + private static boolean err = false; + + public static void main(String[] args) { + Locale defaultLocale = Locale.getDefault(); + if (defaultLocale.getLanguage().equals("th")) { + Locale.setDefault(Locale.KOREA); + test4740757(); + Locale.setDefault(defaultLocale); + } else { + test4740757(); + } + + if (err) { + throw new RuntimeException("Incorrect Line-breaking"); + } + } + + private static void test4740757() { + String source = "\uc548\ub155\ud558\uc138\uc694? \uc88b\uc740 \uc544\uce68, \uc5ec\ubcf4\uc138\uc694! \uc548\ub155. End."; + String expected = "\uc548/\ub155/\ud558/\uc138/\uc694? /\uc88b/\uc740 /\uc544/\uce68, /\uc5ec/\ubcf4/\uc138/\uc694! /\uc548/\ub155. /End./"; + + BreakIterator bi = BreakIterator.getLineInstance(Locale.KOREAN); + bi.setText(source); + int start = bi.first(); + int end = bi.next(); + StringBuilder sb = new StringBuilder(); + + for (; end != BreakIterator.DONE; start = end, end = bi.next()) { + sb.append(source.substring(start,end)); + sb.append('/'); + } + + if (!expected.equals(sb.toString())) { + System.err.println("Failed: Hangul line-breaking failed." + + "\n\tExpected: " + expected + + "\n\tGot: " + sb + + "\nin " + Locale.getDefault() + " locale."); + err = true; + } + } + +} diff --git a/jdk/test/java/text/BreakIterator/Bug4912404.java b/jdk/test/java/text/BreakIterator/Bug4912404.java new file mode 100644 index 00000000000..07a2d0cb3c7 --- /dev/null +++ b/jdk/test/java/text/BreakIterator/Bug4912404.java @@ -0,0 +1,41 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4912404 + * @summary Confirm that BreakIterator.equals(null) return false. + */ + +import java.text.BreakIterator; + +public class Bug4912404 { + + public static void main(String[] args) { + BreakIterator b = BreakIterator.getWordInstance(); + b.setText("abc"); + if (b.equals(null)) { + throw new RuntimeException("BreakIterator.equals(null) should return false."); + } + } +} diff --git a/jdk/test/java/text/BreakIterator/Bug4932583.java b/jdk/test/java/text/BreakIterator/Bug4932583.java new file mode 100644 index 00000000000..a9d62d44396 --- /dev/null +++ b/jdk/test/java/text/BreakIterator/Bug4932583.java @@ -0,0 +1,41 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @run main/timeout=60 Bug4932583 + * @bug 4932583 + * @summary Confirm that BreakIterator doesn't get caught in an infinite loop. + */ + +import java.text.*; +import java.util.*; +import java.io.*; + +public class Bug4932583 { + public static void main(String[] args) { + BreakIterator iterator = BreakIterator.getCharacterInstance(); + iterator.setText("\uDB40\uDFFF"); + int boundary = iterator.next(); + } +} diff --git a/jdk/test/java/text/BreakIterator/Bug6513074.java b/jdk/test/java/text/BreakIterator/Bug6513074.java new file mode 100644 index 00000000000..736cde17685 --- /dev/null +++ b/jdk/test/java/text/BreakIterator/Bug6513074.java @@ -0,0 +1,122 @@ +/* + * Copyright (c) 2011, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 6513074 + * @summary Confirm that JIS X 0213 characters are processed in line-breaking properly. + */ + +import java.text.*; +import java.util.*; + +public class Bug6513074 { + + private static final String[][] source = { + {"\ufa30\ufa31 \ufa69\ufa6a", + "JIS X 0213 compatibility additions (\\uFA30-\\uFA6A)"}, + }; + + private static final String[] expected_line = { + "\ufa30/\ufa31 /\ufa69/\ufa6a/", + }; + + private static final String[] expected_word = { + "\ufa30\ufa31/ /\ufa69\ufa6a/", + }; + + private static final String[] expected_char = { + "\ufa30/\ufa31/ /\ufa69/\ufa6a/", + }; + + + private static boolean err = false; + + public static void main(String[] args) { + Locale defaultLocale = Locale.getDefault(); + if (defaultLocale.getLanguage().equals("th")) { + Locale.setDefault(Locale.JAPAN); + test6513074(); + Locale.setDefault(defaultLocale); + } else { + test6513074(); + } + + if (err) { + throw new RuntimeException("Failed: Incorrect Text-breaking."); + } + } + + + private static void test6513074() { + BreakIterator bi = BreakIterator.getLineInstance(Locale.JAPAN); + for (int i = 0; i < source.length; i++) { + testBreakIterator(bi, "Line", source[i][0], expected_line[i], source[i][1]); + } + + bi = BreakIterator.getWordInstance(Locale.JAPAN); + for (int i = 0; i < source.length; i++) { + testBreakIterator(bi, "Word", source[i][0], expected_word[i], source[i][1]); + } + + bi = BreakIterator.getCharacterInstance(Locale.JAPAN); + for (int i = 0; i < source.length; i++) { + testBreakIterator(bi, "Character", source[i][0], expected_char[i], source[i][1]); + } + } + + private static void testBreakIterator(BreakIterator bi, + String type, + String source, + String expected, + String description) { + bi.setText(source); + int start = bi.first(); + int end = bi.next(); + StringBuilder sb = new StringBuilder(); + + for (; end != BreakIterator.DONE; start = end, end = bi.next()) { + sb.append(source.substring(start,end)); + sb.append('/'); + } + + if (!expected.equals(sb.toString())) { + System.err.println("Failed: Incorrect " + type + "-breaking for " + + description + + "\n\tExpected: " + toString(expected) + + "\n\tGot: " + toString(sb.toString())); + err = true; + } + } + + private static String toString(String s) { + StringBuilder sb = new StringBuilder(); + + for (int i = 0; i < s.length(); i++) { + sb.append(" 0x" + Integer.toHexString(s.charAt(i))); + } + + return sb.toString(); + } + +} diff --git a/jdk/test/java/text/BreakIterator/NewVSOld_th_TH.java b/jdk/test/java/text/BreakIterator/NewVSOld_th_TH.java new file mode 100644 index 00000000000..467cbc574c3 --- /dev/null +++ b/jdk/test/java/text/BreakIterator/NewVSOld_th_TH.java @@ -0,0 +1,86 @@ +/* + * Copyright (c) 2000, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + @test + @summary test Comparison of New Collators against Old Collators in the en_US locale +*/ + +import java.io.*; +import java.util.Enumeration; +import java.util.Vector; +import java.util.Locale; +import java.text.BreakIterator; +import java.lang.Math; + +public class NewVSOld_th_TH { + public static void main(String args[]) throws FileNotFoundException, + UnsupportedEncodingException, + IOException { + final String ENCODING = "UTF-8"; + final Locale THAI_LOCALE = new Locale("th", "TH"); + + String rawFileName = "test_th_TH.txt"; + String oldFileName = "broken_th_TH.txt"; + StringBuilder rawText = new StringBuilder(); + StringBuilder oldText = new StringBuilder(); + StringBuilder cookedText = new StringBuilder(); + + File f; + f = new File(System.getProperty("test.src", "."), rawFileName); + + try (InputStreamReader rawReader = + new InputStreamReader(new FileInputStream(f), ENCODING)) { + int c; + while ((c = rawReader.read()) != -1) { + rawText.append((char) c); + } + } + + f = new File(System.getProperty("test.src", "."), oldFileName); + try (InputStreamReader oldReader = + new InputStreamReader(new FileInputStream(f), ENCODING)) { + int c; + while ((c = oldReader.read()) != -1) { + oldText.append((char) c); + } + } + + BreakIterator breakIterator = BreakIterator.getWordInstance(THAI_LOCALE); + breakIterator.setText(rawText.toString()); + + int start = breakIterator.first(); + for (int end = breakIterator.next(); + end != BreakIterator.DONE; + start = end, end = breakIterator.next()) { + cookedText.append(rawText.substring(start, end)); + cookedText.append("\n"); + } + + String cooked = cookedText.toString(); + String old = oldText.toString(); + if (cooked.compareTo(old) != 0) { + throw new RuntimeException("Text not broken the same as with the old BreakIterators"); + } + } +} diff --git a/jdk/test/java/text/BreakIterator/broken_th_TH.txt b/jdk/test/java/text/BreakIterator/broken_th_TH.txt new file mode 100644 index 00000000000..ca172c33339 --- /dev/null +++ b/jdk/test/java/text/BreakIterator/broken_th_TH.txt @@ -0,0 +1,13 @@ +การ +เก็บ +ภาษีประเทศ +ไทยและ +ประเทศ +เดนมาร์ค +อนุสัญญา +ระหว่าง +รัฐบาล +แห่ง +ประเทศ +ไทย +กับ diff --git a/jdk/test/java/text/BreakIterator/test_th_TH.txt b/jdk/test/java/text/BreakIterator/test_th_TH.txt new file mode 100644 index 00000000000..c423da033e7 --- /dev/null +++ b/jdk/test/java/text/BreakIterator/test_th_TH.txt @@ -0,0 +1 @@ +การเก็บภาษีประเทศไทยและประเทศเดนมาร์คอนุสัญญาระหว่างรัฐบาลแห่งประเทศไทยกับ \ No newline at end of file diff --git a/jdk/test/java/text/CharacterIterator/CharacterIteratorTest.java b/jdk/test/java/text/CharacterIterator/CharacterIteratorTest.java new file mode 100644 index 00000000000..9d2d94b4d01 --- /dev/null +++ b/jdk/test/java/text/CharacterIterator/CharacterIteratorTest.java @@ -0,0 +1,286 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @library /java/text/testlib + * @summary test for Character Iterator + */ + +/* + * + * + * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved + * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved + * + * Portions copyright (c) 2007 Sun Microsystems, Inc. + * All Rights Reserved. + * + * The original version of this source code and documentation + * is copyrighted and owned by Taligent, Inc., a wholly-owned + * subsidiary of IBM. These materials are provided under terms + * of a License Agreement between Taligent and Sun. This technology + * is protected by multiple US and International patents. + * + * This notice and attribution to Taligent may not be removed. + * Taligent is a registered trademark of Taligent, Inc. + * + * Permission to use, copy, modify, and distribute this software + * and its documentation for NON-COMMERCIAL purposes and without + * fee is hereby granted provided that this copyright notice + * appears in all copies. Please refer to the file "copyright.html" + * for further important copyright and licensing information. + * + * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF + * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR + * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. + * + */ + +import java.text.*; + +public class CharacterIteratorTest extends IntlTest { + public static void main(String[] args) throws Exception { + new CharacterIteratorTest().run(args); + } + + public CharacterIteratorTest() { + } + + public void TestConstructionAndEquality() { + String testText = "Now is the time for all good men to come to the aid of their country."; + String testText2 = "Don't bother using this string."; + + CharacterIterator test1 = new StringCharacterIterator(testText); + CharacterIterator test2 = new StringCharacterIterator(testText, 5); + CharacterIterator test3 = new StringCharacterIterator(testText, 2, 20, 5); + CharacterIterator test4 = new StringCharacterIterator(testText2); + CharacterIterator test5 = (CharacterIterator)test1.clone(); + + if (test1.equals(test2) || test1.equals(test3) || test1.equals(test4)) + errln("Construation or equals() failed: Two unequal iterators tested equal"); + + if (!test1.equals(test5)) + errln("clone() or equals() failed: Two clones tested unequal"); + + if (test1.hashCode() == test2.hashCode() || test1.hashCode() == test3.hashCode() + || test1.hashCode() == test4.hashCode()) + errln("hash() failed: different objects have same hash code"); + + if (test1.hashCode() != test5.hashCode()) + errln("hash() failed: identical objects have different hash codes"); + + test1.setIndex(5); + if (!test1.equals(test2) || test1.equals(test5)) + errln("setIndex() failed"); + } + + public void TestIteration() { + String text = "Now is the time for all good men to come to the aid of their country."; + + CharacterIterator iter = new StringCharacterIterator(text, 5); + + if (iter.current() != text.charAt(5)) + errln("Iterator didn't start out in the right place."); + + char c = iter.first(); + int i = 0; + + if (iter.getBeginIndex() != 0 || iter.getEndIndex() != text.length()) + errln("getBeginIndex() or getEndIndex() failed"); + + logln("Testing forward iteration..."); + do { + if (c == CharacterIterator.DONE && i != text.length()) + errln("Iterator reached end prematurely"); + else if (c != text.charAt(i)) + errln("Character mismatch at position " + i + ", iterator has " + c + + ", string has " + text.charAt(c)); + + if (iter.current() != c) + errln("current() isn't working right"); + if (iter.getIndex() != i) + errln("getIndex() isn't working right"); + + if (c != CharacterIterator.DONE) { + c = iter.next(); + i++; + } + } while (c != CharacterIterator.DONE); + + c = iter.last(); + i = text.length() - 1; + + logln("Testing backward iteration..."); + do { + if (c == CharacterIterator.DONE && i >= 0) + errln("Iterator reached end prematurely"); + else if (c != text.charAt(i)) + errln("Character mismatch at position " + i + ", iterator has " + c + + ", string has " + text.charAt(c)); + + if (iter.current() != c) + errln("current() isn't working right"); + if (iter.getIndex() != i) + errln("getIndex() isn't working right"); + + if (c != CharacterIterator.DONE) { + c = iter.previous(); + i--; + } + } while (c != CharacterIterator.DONE); + + iter = new StringCharacterIterator(text, 5, 15, 10); + if (iter.getBeginIndex() != 5 || iter.getEndIndex() != 15) + errln("creation of a restricted-range iterator failed"); + + if (iter.getIndex() != 10 || iter.current() != text.charAt(10)) + errln("starting the iterator in the middle didn't work"); + + c = iter.first(); + i = 5; + + logln("Testing forward iteration over a range..."); + do { + if (c == CharacterIterator.DONE && i != 15) + errln("Iterator reached end prematurely"); + else if (c != text.charAt(i)) + errln("Character mismatch at position " + i + ", iterator has " + c + + ", string has " + text.charAt(c)); + + if (iter.current() != c) + errln("current() isn't working right"); + if (iter.getIndex() != i) + errln("getIndex() isn't working right"); + + if (c != CharacterIterator.DONE) { + c = iter.next(); + i++; + } + } while (c != CharacterIterator.DONE); + + c = iter.last(); + i = 14; + + logln("Testing backward iteration over a range..."); + do { + if (c == CharacterIterator.DONE && i >= 5) + errln("Iterator reached end prematurely"); + else if (c != text.charAt(i)) + errln("Character mismatch at position " + i + ", iterator has " + c + + ", string has " + text.charAt(c)); + + if (iter.current() != c) + errln("current() isn't working right"); + if (iter.getIndex() != i) + errln("getIndex() isn't working right"); + + if (c != CharacterIterator.DONE) { + c = iter.previous(); + i--; + } + } while (c != CharacterIterator.DONE); + } + + /** + * @bug 4082050 4078261 4078255 + */ + public void TestPathologicalCases() { + String text = "This is only a test."; + +/* +This test is commented out until API-change approval for bug #4082050 goes through. + // test for bug #4082050 (don't get an error if begin == end, even though all + // operations on the iterator will cause exceptions) + // [I actually fixed this so that you CAN create an iterator with begin == end, + // but all operations on it return DONE.] + CharacterIterator iter = new StringCharacterIterator(text, 5, 5, 5); + if (iter.first() != CharacterIterator.DONE + || iter.next() != CharacterIterator.DONE + || iter.last() != CharacterIterator.DONE + || iter.previous() != CharacterIterator.DONE + || iter.current() != CharacterIterator.DONE + || iter.getIndex() != 5) + errln("Got something other than DONE when performing operations on an empty StringCharacterIterator"); +*/ +CharacterIterator iter = null; + + // if we try to construct a StringCharacterIterator with an endIndex that's off + // the end of the String under iterator, we're supposed to get an + // IllegalArgumentException + boolean gotException = false; + try { + iter = new StringCharacterIterator(text, 5, 100, 5); + } + catch (IllegalArgumentException e) { + gotException = true; + } + if (!gotException) + errln("StringCharacterIterator didn't throw an exception when given an invalid substring range."); + + // test for bug #4078255 (getting wrong value from next() when we're at the end + // of the string) + iter = new StringCharacterIterator(text); + int expectedIndex = iter.getEndIndex(); + int actualIndex; + + iter.last(); + actualIndex = iter.getIndex(); + if (actualIndex != expectedIndex - 1) + errln("last() failed: expected " + (expectedIndex - 1) + ", got " + actualIndex); + + iter.next(); + actualIndex = iter.getIndex(); + if (actualIndex != expectedIndex) + errln("next() after last() failed: expected " + expectedIndex + ", got " + actualIndex); + + iter.next(); + actualIndex = iter.getIndex(); + if (actualIndex != expectedIndex) + errln("second next() after last() failed: expected " + expectedIndex + ", got " + actualIndex); + } + + /* + * @bug 4123771 4051073 + * #4123771 is actually a duplicate of bug #4051073, which was fixed some time ago, but + * no one ever added a regression test for it. + */ + public void TestBug4123771() { + String text = "Some string for testing"; + StringCharacterIterator iter = new StringCharacterIterator(text); + int index = iter.getEndIndex(); + try { + char c = iter.setIndex(index); + } + catch (Exception e) { + System.out.println("method setIndex(int position) throws unexpected exception " + e); + System.out.println(" position: " + index); + System.out.println(" getEndIndex(): " + iter.getEndIndex()); + System.out.println(" text.length(): " + text.length()); + errln(""); // re-throw the exception through our test framework + } + } +} diff --git a/jdk/test/java/text/Collator/APITest.java b/jdk/test/java/text/Collator/APITest.java new file mode 100644 index 00000000000..f2b0a019a29 --- /dev/null +++ b/jdk/test/java/text/Collator/APITest.java @@ -0,0 +1,318 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @library /java/text/testlib + * @summary test Collation API + */ +/* +(C) Copyright Taligent, Inc. 1996 - All Rights Reserved +(C) Copyright IBM Corp. 1996 - All Rights Reserved + + The original version of this source code and documentation is copyrighted and +owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are +provided under terms of a License Agreement between Taligent and Sun. This +technology is protected by multiple US and International patents. This notice and +attribution to Taligent may not be removed. + Taligent is a registered trademark of Taligent, Inc. +*/ + +import java.util.Locale; +import java.text.Collator; +import java.text.RuleBasedCollator; +import java.text.CollationKey; +import java.text.CollationElementIterator; + +public class APITest extends CollatorTest { + + public static void main(String[] args) throws Exception { + new APITest().run(args); + } + + final void doAssert(boolean condition, String message) + { + if (!condition) { + err("ERROR: "); + errln(message); + } + } + + public final void TestProperty( ) + { + Collator col = null; + try { + col = Collator.getInstance(Locale.ROOT); + logln("The property tests begin : "); + logln("Test ctors : "); + doAssert(col.compare("ab", "abc") < 0, "ab < abc comparison failed"); + doAssert(col.compare("ab", "AB") < 0, "ab < AB comparison failed"); + doAssert(col.compare("black-bird", "blackbird") > 0, "black-bird > blackbird comparison failed"); + doAssert(col.compare("black bird", "black-bird") < 0, "black bird < black-bird comparison failed"); + doAssert(col.compare("Hello", "hello") > 0, "Hello > hello comparison failed"); + + logln("Test ctors ends."); + logln("testing Collator.getStrength() method ..."); + doAssert(col.getStrength() == Collator.TERTIARY, "collation object has the wrong strength"); + doAssert(col.getStrength() != Collator.PRIMARY, "collation object's strength is primary difference"); + + logln("testing Collator.setStrength() method ..."); + col.setStrength(Collator.SECONDARY); + doAssert(col.getStrength() != Collator.TERTIARY, "collation object's strength is secondary difference"); + doAssert(col.getStrength() != Collator.PRIMARY, "collation object's strength is primary difference"); + doAssert(col.getStrength() == Collator.SECONDARY, "collation object has the wrong strength"); + + logln("testing Collator.setDecomposition() method ..."); + col.setDecomposition(Collator.NO_DECOMPOSITION); + doAssert(col.getDecomposition() != Collator.FULL_DECOMPOSITION, "collation object's strength is secondary difference"); + doAssert(col.getDecomposition() != Collator.CANONICAL_DECOMPOSITION, "collation object's strength is primary difference"); + doAssert(col.getDecomposition() == Collator.NO_DECOMPOSITION, "collation object has the wrong strength"); + } catch (Exception foo) { + errln("Error : " + foo.getMessage()); + errln("Default Collator creation failed."); + } + logln("Default collation property test ended."); + logln("Collator.getRules() testing ..."); + doAssert(((RuleBasedCollator)col).getRules().length() != 0, "getRules() result incorrect" ); + logln("getRules tests end."); + try { + col = Collator.getInstance(Locale.FRENCH); + col.setStrength(Collator.PRIMARY); + logln("testing Collator.getStrength() method again ..."); + doAssert(col.getStrength() != Collator.TERTIARY, "collation object has the wrong strength"); + doAssert(col.getStrength() == Collator.PRIMARY, "collation object's strength is not primary difference"); + + logln("testing French Collator.setStrength() method ..."); + col.setStrength(Collator.TERTIARY); + doAssert(col.getStrength() == Collator.TERTIARY, "collation object's strength is not tertiary difference"); + doAssert(col.getStrength() != Collator.PRIMARY, "collation object's strength is primary difference"); + doAssert(col.getStrength() != Collator.SECONDARY, "collation object's strength is secondary difference"); + + } catch (Exception bar) { + errln("Error : " + bar.getMessage()); + errln("Creating French collation failed."); + } + + logln("Create junk collation: "); + Locale abcd = new Locale("ab", "CD", ""); + Collator junk = null; + try { + junk = Collator.getInstance(abcd); + } catch (Exception err) { + errln("Error : " + err.getMessage()); + errln("Junk collation creation failed, should at least return the collator for the base bundle."); + } + try { + col = Collator.getInstance(Locale.ROOT); + doAssert(col.equals(junk), "The base bundle's collation should be returned."); + } catch (Exception exc) { + errln("Error : " + exc.getMessage()); + errln("Default collation comparison, caching not working."); + } + + logln("Collator property test ended."); + } + + public final void TestHashCode( ) + { + logln("hashCode tests begin."); + Collator col1 = null; + try { + col1 = Collator.getInstance(Locale.ROOT); + } catch (Exception foo) { + errln("Error : " + foo.getMessage()); + errln("Default collation creation failed."); + } + Collator col2 = null; + Locale dk = new Locale("da", "DK", ""); + try { + col2 = Collator.getInstance(dk); + } catch (Exception bar) { + errln("Error : " + bar.getMessage()); + errln("Danish collation creation failed."); + return; + } + Collator col3 = null; + try { + col3 = Collator.getInstance(Locale.ROOT); + } catch (Exception err) { + errln("Error : " + err.getMessage()); + errln("2nd default collation creation failed."); + } + logln("Collator.hashCode() testing ..."); + + if (col1 != null) { + doAssert(col1.hashCode() != col2.hashCode(), "Hash test1 result incorrect"); + if (col3 != null) { + doAssert(col1.hashCode() == col3.hashCode(), "Hash result not equal"); + } + } + + logln("hashCode tests end."); + } + + //---------------------------------------------------------------------------- + // ctor -- Tests the constructor methods + // + public final void TestCollationKey( ) + { + logln("testing CollationKey begins..."); + Collator col = null; + try { + col = Collator.getInstance(Locale.ROOT); + } catch (Exception foo) { + errln("Error : " + foo.getMessage()); + errln("Default collation creation failed."); + } + if (col == null) { + return; + } + + String test1 = "Abcda", test2 = "abcda"; + logln("Use tertiary comparison level testing ...."); + CollationKey sortk1 = col.getCollationKey(test1); + CollationKey sortk2 = col.getCollationKey(test2); + doAssert(sortk1.compareTo(sortk2) > 0, + "Result should be \"Abcda\" >>> \"abcda\""); + CollationKey sortk3 = sortk2; + CollationKey sortkNew = sortk1; + doAssert(sortk1 != sortk2, "The sort keys should be different"); + doAssert(sortk1.hashCode() != sortk2.hashCode(), "sort key hashCode() failed"); + doAssert(sortk2.compareTo(sortk3) == 0, "The sort keys should be the same"); + doAssert(sortk1 == sortkNew, "The sort keys assignment failed"); + doAssert(sortk1.hashCode() == sortkNew.hashCode(), "sort key hashCode() failed"); + doAssert(sortkNew != sortk3, "The sort keys should be different"); + doAssert(sortk1.compareTo(sortk3) > 0, "Result should be \"Abcda\" >>> \"abcda\""); + doAssert(sortk2.compareTo(sortk3) == 0, "Result should be \"abcda\" == \"abcda\""); + long cnt1, cnt2; + byte byteArray1[] = sortk1.toByteArray(); + byte byteArray2[] = sortk2.toByteArray(); + doAssert(byteArray1 != null && byteArray2 != null, "CollationKey.toByteArray failed."); + logln("testing sortkey ends..."); + } + //---------------------------------------------------------------------------- + // ctor -- Tests the constructor methods + // + public final void TestElemIter( ) + { + logln("testing sortkey begins..."); + Collator col = null; + try { + col = Collator.getInstance(); + } catch (Exception foo) { + errln("Error : " + foo.getMessage()); + errln("Default collation creation failed."); + } + RuleBasedCollator rbCol; + if (col instanceof RuleBasedCollator) { + rbCol = (RuleBasedCollator) col; + } else { + return; + } + String testString1 = "XFILE What subset of all possible test cases has the highest probability of detecting the most errors?"; + String testString2 = "Xf ile What subset of all possible test cases has the lowest probability of detecting the least errors?"; + logln("Constructors and comparison testing...."); + CollationElementIterator iterator1 = rbCol.getCollationElementIterator(testString1); + CollationElementIterator iterator2 = rbCol.getCollationElementIterator(testString1); + CollationElementIterator iterator3 = rbCol.getCollationElementIterator(testString2); + int order1, order2, order3; + order1 = iterator1.next(); + order2 = iterator2.next(); + doAssert(order1 == order2, "The order result should be the same"); + + order3 = iterator3.next(); + doAssert(CollationElementIterator.primaryOrder(order1) + == CollationElementIterator.primaryOrder(order3), + "The primary orders should be the same"); + doAssert(CollationElementIterator.secondaryOrder(order1) + == CollationElementIterator.secondaryOrder(order3), + "The secondary orders should be the same"); + doAssert(CollationElementIterator.tertiaryOrder(order1) + == CollationElementIterator.tertiaryOrder(order3), + "The tertiary orders should be the same"); + + order1 = iterator1.next(); + order3 = iterator3.next(); + doAssert(CollationElementIterator.primaryOrder(order1) + == CollationElementIterator.primaryOrder(order3), + "The primary orders should be identical"); + doAssert(CollationElementIterator.tertiaryOrder(order1) + != CollationElementIterator.tertiaryOrder(order3), + "The tertiary orders should be different"); + + order1 = iterator1.next(); + order3 = iterator3.next(); + doAssert(CollationElementIterator.secondaryOrder(order1) + != CollationElementIterator.secondaryOrder(order3), + "The secondary orders should be different"); + doAssert(order1 != CollationElementIterator.NULLORDER, + "Unexpected end of iterator reached"); + + iterator1.reset(); + iterator2.reset(); + iterator3.reset(); + order1 = iterator1.next(); + order2 = iterator2.next(); + doAssert(order1 == order2, "The order result should be the same"); + + order3 = iterator3.next(); + doAssert(CollationElementIterator.primaryOrder(order1) + == CollationElementIterator.primaryOrder(order3), + "The orders should be the same"); + doAssert(CollationElementIterator.secondaryOrder(order1) + == CollationElementIterator.secondaryOrder(order3), + "The orders should be the same"); + doAssert(CollationElementIterator.tertiaryOrder(order1) + == CollationElementIterator.tertiaryOrder(order3), + "The orders should be the same"); + + order1 = iterator1.next(); + order2 = iterator2.next(); + order3 = iterator3.next(); + doAssert(CollationElementIterator.primaryOrder(order1) + == CollationElementIterator.primaryOrder(order3), + "The primary orders should be identical"); + doAssert(CollationElementIterator.tertiaryOrder(order1) + != CollationElementIterator.tertiaryOrder(order3), + "The tertiary orders should be different"); + + order1 = iterator1.next(); + order3 = iterator3.next(); + doAssert(CollationElementIterator.secondaryOrder(order1) + != CollationElementIterator.secondaryOrder(order3), + "The secondary orders should be different"); + doAssert(order1 != CollationElementIterator.NULLORDER, "Unexpected end of iterator reached"); + logln("testing CollationElementIterator ends..."); + } + + public final void TestGetAll() + { + Locale[] list = Collator.getAvailableLocales(); + for (int i = 0; i < list.length; ++i) { + log("Locale name: "); + log(list[i].toString()); + log(" , the display name is : "); + logln(list[i].getDisplayName()); + } + } +} diff --git a/jdk/test/java/text/Collator/Bug6271411.java b/jdk/test/java/text/Collator/Bug6271411.java new file mode 100644 index 00000000000..16495d04bea --- /dev/null +++ b/jdk/test/java/text/Collator/Bug6271411.java @@ -0,0 +1,194 @@ +/* + * Copyright (c) 2005, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 6271411 + * @library /java/text/testlib + * @summary Confirm that three JCK testcases for CollationElementIterator pass. + */ + +import java.text.*; + +/* + * Based on JCK-runtime-15/tests/api/java_text/CollationElementIterator/ColltnElmtIterTests.java. + */ +public class Bug6271411 extends IntlTest { + + public static void main(String argv[]) throws Exception { + Bug6271411 test = new Bug6271411(); + test.run(argv); + } + + /* + * Rule for RuleBasedCollator + */ + static final String rule = "< c, C < d; D"; + + /* + * Textdata + */ + static final String[] values = { + "", "c", "cH522Yd", "Hi, high school", "abcchCHidD" + }; + + + /* + * Confirm that setOffset() throws IllegalArgumentException + * (not IndexOutOfBoundsException) if the given offset is invalid. + * Use CollationElementIterator.setText(String). + */ + public void Test_CollationElementIterator0007() throws Exception { + int[] offsets = { + Integer.MIN_VALUE, Integer.MIN_VALUE + 1, -10000, -2, -1, + 100, 101, // These two are customized for every test data later. + 12345, Integer.MAX_VALUE - 1, Integer.MAX_VALUE + }; + boolean err = false; + + RuleBasedCollator rbc = new RuleBasedCollator(rule); + CollationElementIterator iterator = rbc.getCollationElementIterator(""); + + for (int i = 0; i < values.length; i++) { + String source = values[i]; + iterator.setText(source); + + int len = source.length(); + offsets[5] = len + 1; + offsets[6] = len + 2; + + for (int j = 0; j < offsets.length; j++) { + try { + iterator.setOffset(offsets[j]); + System.out.println("IllegalArgumentException should be thrown for setOffset(" + + offsets[j] + ") for <" + source + ">."); + err = true; + } + catch (IllegalArgumentException e) { + } + } + } + + if (err) { + errln("CollationElementIterator.setOffset() didn't throw an expected IllegalArguemntException."); + } + } + + /* + * Confirm that setText() doesn't throw an exception and setOffset() throws + * IllegalArgumentException if the given offset is invalid. + * Use CollationElementIterator.setText(CharacterIterator). + */ + public void Test_CollationElementIterator0010() throws Exception { + String prefix = "xyz abc"; + String suffix = "1234567890"; + int begin = prefix.length(); + int[] offsets = { + Integer.MIN_VALUE, Integer.MIN_VALUE + 1, -10000, + -2, -1, 0, 1, begin - 2, begin - 1, 9, 10, 11, 12, 13, 14, + 15, 12345, Integer.MAX_VALUE - 1, Integer.MAX_VALUE + }; + boolean err = false; + + RuleBasedCollator rbc = new RuleBasedCollator(rule); + CollationElementIterator iterator = rbc.getCollationElementIterator(""); + + for (int i = 0; i < values.length; i++) { + String str = prefix + values[i] + suffix; + int len = str.length(); + int end = len - suffix.length(); + + CharacterIterator source = + new StringCharacterIterator(str, begin, end, begin); + iterator.setText(source); + + offsets[9] = end + 1; + offsets[10] = end + 2; + offsets[11] = (end + len) / 2; + offsets[12] = len - 1; + offsets[13] = len; + offsets[14] = len + 1; + offsets[15] = len + 2; + + for (int j = 0; j < offsets.length; j++) { + try { + iterator.setOffset(offsets[j]); + + System.out.println("IllegalArgumentException should be thrown for setOffset(" + + offsets[j] + ") for <" + str + ">."); + err = true; + } + catch (IllegalArgumentException e) { + } + } + } + + if (err) { + errln("CollationElementIterator.setOffset() didn't throw an expected IllegalArguemntException."); + } + } + + /* + * Confirm that setText() doesn't throw an exception and setOffset() sets + * an offset as expected. + * Use CollationElementIterator.setText(CharacterIterator). + */ + public void Test_CollationElementIterator0011() throws Exception { + String prefix = "xyz abc"; + String suffix = "1234567890"; + int begin = prefix.length(); + int[] offsets = { begin, begin + 1, 2, 3, 4 }; + + RuleBasedCollator rbc = new RuleBasedCollator(rule); + CollationElementIterator iterator = rbc.getCollationElementIterator(""); + + for (int i = 0; i < values.length; i++) { + String str = prefix + values[i] + suffix; + int len = str.length(); + int end = len - suffix.length(); + CharacterIterator source = + new StringCharacterIterator(str, begin, end, begin); + iterator.setText(source); + + offsets[2] = (end + len) / 2; + offsets[3] = len - 1; + offsets[4] = len; + + for (int j = 0; j < offsets.length; j++) { + int offset = offsets[j]; + + if (offset < begin || offset > end) { + break; + } + + iterator.setOffset(offset); + int newOffset = iterator.getOffset(); + + if (newOffset != offset) { + throw new RuntimeException("setOffset() didn't set a correct offset. Got: " + + newOffset + " Expected: " + offset + " for <" + str + ">."); + } + } + } + } +} diff --git a/jdk/test/java/text/Collator/CollationKeyTest.java b/jdk/test/java/text/Collator/CollationKeyTest.java new file mode 100644 index 00000000000..9146bf97e9a --- /dev/null +++ b/jdk/test/java/text/Collator/CollationKeyTest.java @@ -0,0 +1,41 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4106263 + * @summary Tests on the bug 4106263 - CollationKey became non-final extendable class. + * The implementation of CollationKey is moved to the new private class, + * RuleBasedCollationKey. This test basically tests on the two features: + * 1. Existing code using CollationKey works (backward compatiblility) + * 2. CollationKey can be extended by its subclass. + */ + + +public class CollationKeyTest { + + public static void main(String[] args) { + CollationKeyTestImpl ck = new CollationKeyTestImpl("Testing the CollationKey"); + ck.run(); + } +} diff --git a/jdk/test/java/text/Collator/CollationKeyTestImpl.java b/jdk/test/java/text/Collator/CollationKeyTestImpl.java new file mode 100644 index 00000000000..a017c817188 --- /dev/null +++ b/jdk/test/java/text/Collator/CollationKeyTestImpl.java @@ -0,0 +1,243 @@ +/* + * Copyright (c) 1997, 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. + * + * 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. + */ + +/* + * + * A part of tests on the bug 4106263. CollationKey became non-final extendable class. + * The implementation of CollationKey is moved to the new private class, + * RuleBasedCollationKey. This test basically tests on the two features: + * 1. Existing code using CollationKey works (backward compatiblility) + * 2. CollationKey can be extended by its subclass. + */ + +import java.util.Locale; +import java.text.Collator; +import java.text.CollationKey; +import java.io.*; + +import java.text.*; + + +public class CollationKeyTestImpl extends CollationKey { + + private static String[] sourceData_ja = { + "\u3042\u3044\u3046\u3048\u3048", + "\u3041\u3043\u3045\u3047\u3049", + "\u3052\u3054\u3056\u3058\u3058", + "\u3051\u3053\u3055\u3057\u3059", + "\u3062\u3064\u3066\u3068\u3068", + "\u3061\u3063\u3065\u3067\u3069", + "\u3072\u3074\u3075\u3078\u3078", + "\u3071\u3073\u3075\u3077\u3079", + "\u3082\u3084\u3085\u3088\u3088", + "\u3081\u3083\u3085\u3087\u3089", + "\u30a2\u30a4\u30a6\u30a8\u30aa", + "\u30a1\u30a3\u30a5\u30a7\u30a9", + "\u30c2\u30c4\u30c6\u30c8\u30ca", + "\u30c1\u30c3\u30c5\u30c7\u30c9", + "\u30b2\u30b4\u30b6\u30b8\u30ba", + "\u30b1\u30b3\u30b5\u30b7\u30b9", + "\u30d2\u30d4\u30d6\u30d8\u30da", + "\u30d1\u30d3\u30d5\u30d7\u30d9", + "\u30e2\u30e4\u30e6\u30e8\u30ea", + "\u30e1\u30e3\u30e5\u30e7\u30e9" + }; + private static final String[] targetData_ja = { + "\u3042\u3044\u3046\u3048\u3048", + "\u3041\u3043\u3045\u3047\u3049", + "\u30a2\u30a4\u30a6\u30a8\u30aa", + "\u30a1\u30a3\u30a5\u30a7\u30a9", + "\u3052\u3054\u3056\u3058\u3058", + "\u3051\u3053\u3055\u3057\u3059", + "\u30b1\u30b3\u30b5\u30b7\u30b9", + "\u30b2\u30b4\u30b6\u30b8\u30ba", + "\u3061\u3063\u3065\u3067\u3069", + "\u30c1\u30c3\u30c5\u30c7\u30c9", + "\u3062\u3064\u3066\u3068\u3068", + "\u30c2\u30c4\u30c6\u30c8\u30ca", + "\u3071\u3073\u3075\u3077\u3079", + "\u30d1\u30d3\u30d5\u30d7\u30d9", + "\u3072\u3074\u3075\u3078\u3078", + "\u30d2\u30d4\u30d6\u30d8\u30da", + "\u3081\u3083\u3085\u3087\u3089", + "\u30e1\u30e3\u30e5\u30e7\u30e9", + "\u3082\u3084\u3085\u3088\u3088", + "\u30e2\u30e4\u30e6\u30e8\u30ea" + }; + + public void run() { + /** debug: printout the test data + for (int i=0; i 0){ + continue; + } + tmp = keys[f]; + i = f-1; + while ( (i>=0) && (keys[i].compareTo(tmp) > 0) ) { + keys[i+1] = keys[i]; + i--; + } + keys[i+1]=tmp; + } + } + + + /* + * From here is the bogus methods to test the subclass of + * the CollationKey class. + */ + public CollationKeyTestImpl(String str){ + super (str); + // debug: System.out.println("CollationKeyTest extends CollationKey class: "+str); + } + /* abstract method: needs to be implemented */ + public byte[] toByteArray(){ + String foo= "Hello"; + return foo.getBytes(); + } + /* abstract method: needs to be implemented */ + public int compareTo(CollationKey target){ + return 0; + } + public boolean equals(Object target){ + return true; + } + public String getSourceString(){ + return "CollationKeyTestImpl"; + } + /* + * This method tests the collection of bugus methods from the extended + * subclass of CollationKey class. + */ + private void testSubclassMethods() { + CollationKeyTestImpl clt1 = new CollationKeyTestImpl("testSubclassMethods-1"); + CollationKeyTestImpl clt2 = new CollationKeyTestImpl("testSubclassMethods-2"); + // extended method, equals always returns true + if (!clt1.equals(clt2)){ + throw new RuntimeException("Failed: equals(CollationKeySubClass)"); + } + // extended method, compareTo always returns 0 + if (clt1.compareTo(clt2)!=0){ + throw new RuntimeException("Failed: compareTo(CollationKeySubClass)"); + } + // overriding extended method, getSourceString always returns "CollationKeyTestImpl" + if (! clt1.getSourceString().equals("CollationKeyTestImpl")){ + throw new RuntimeException("Failed: CollationKey subclass overriding getSourceString()"); + } + // extended method, toByteArray always returns bytes from "Hello" + String str2 = new String( clt2.toByteArray()); + if (! clt2.equals("Hello")){ + throw new RuntimeException("Failed: CollationKey subclass toByteArray()"); + } + } + + /* + * This method tests CollationKey constructor with null source string. + * It should throw NPE. + */ + private void testConstructor() { + boolean npe=false; + try{ + CollationKeyTestImpl cltNull = new CollationKeyTestImpl(null); + } catch (NullPointerException npException){ + npe=true; + // debug: System.out.println("--- NPE is thrown with NULL arguement: PASS ---"); + } + if(!npe){ + throw new RuntimeException("Failed: CollationKey Constructor with null source"+ + " didn't throw NPE!"); + } + } + +} diff --git a/jdk/test/java/text/Collator/CollatorTest.java b/jdk/test/java/text/Collator/CollatorTest.java new file mode 100644 index 00000000000..bb6785b888f --- /dev/null +++ b/jdk/test/java/text/Collator/CollatorTest.java @@ -0,0 +1,141 @@ +/* + * Copyright (c) 1998, 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. + * + * 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. + */ + +import java.lang.reflect.*; +import java.util.Hashtable; +import java.util.Enumeration; +import java.util.Vector; +import java.io.*; +import java.text.*; + +/** + * CollatorTest is a base class for tests that can be run conveniently from + * the command line as well as under the Java test harness. + *

+ * Sub-classes implement a set of methods named Test. Each + * of these methods performs some test. Test methods should indicate + * errors by calling either err or errln. This will increment the + * errorCount field and may optionally print a message to the log. + * Debugging information may also be added to the log via the log + * and logln methods. These methods will add their arguments to the + * log only if the test is being run in verbose mode. + */ +public abstract class CollatorTest extends IntlTest { + + //------------------------------------------------------------------------ + // These methods are utilities specific to the Collation tests.. + //------------------------------------------------------------------------ + + protected void assertEqual(CollationElementIterator i1, CollationElementIterator i2) { + int c1, c2, count = 0; + do { + c1 = i1.next(); + c2 = i2.next(); + if (c1 != c2) { + errln(" " + count + ": " + c1 + " != " + c2); + break; + } + count++; + } while (c1 != CollationElementIterator.NULLORDER); + } + + // Replace nonprintable characters with unicode escapes + static protected String prettify(String str) { + StringBuffer result = new StringBuffer(); + + String zero = "0000"; + + for (int i = 0; i < str.length(); i++) { + char ch = str.charAt(i); + if (ch < 0x09 || (ch > 0x0A && ch < 0x20)|| (ch > 0x7E && ch < 0xA0) || ch > 0x100) { + String hex = Integer.toString((int)ch,16); + + result.append("\\u" + zero.substring(0, 4 - hex.length()) + hex); + } else { + result.append(ch); + } + } + return result.toString(); + } + + // Produce a printable representation of a CollationKey + static protected String prettify(CollationKey key) { + StringBuffer result = new StringBuffer(); + byte[] bytes = key.toByteArray(); + + for (int i = 0; i < bytes.length; i += 2) { + int val = (bytes[i] << 8) + bytes[i+1]; + result.append(Integer.toString(val, 16) + " "); + } + return result.toString(); + } + + //------------------------------------------------------------------------ + // Everything below here is boilerplate code that makes it possible + // to add a new test by simply adding a function to an existing class + //------------------------------------------------------------------------ + + protected void doTest(Collator col, int strength, + String[] source, String[] target, int[] result) { + if (source.length != target.length) { + errln("Data size mismatch: source = " + + source.length + ", target = " + target.length); + + return; // Return if "-nothrow" is specified. + } + if (source.length != result.length) { + errln("Data size mismatch: source & target = " + + source.length + ", result = " + result.length); + + return; // Return if "-nothrow" is specified. + } + + col.setStrength(strength); + for (int i = 0; i < source.length ; i++) { + doTest(col, source[i], target[i], result[i]); + } + } + + protected void doTest(Collator col, + String source, String target, int result) { + char relation = '='; + if (result <= -1) { + relation = '<'; + } else if (result >= 1) { + relation = '>'; + } + + int compareResult = col.compare(source, target); + CollationKey sortKey1 = col.getCollationKey(source); + CollationKey sortKey2 = col.getCollationKey(target); + int keyResult = sortKey1.compareTo(sortKey2); + if (compareResult != keyResult) { + errln("Compare and Collation Key results are different! Source = " + + source + " Target = " + target); + } + if (keyResult != result) { + errln("Collation Test failed! Source = " + source + " Target = " + + target + " result should be " + relation); + } + } +} diff --git a/jdk/test/java/text/Collator/CurrencyCollate.java b/jdk/test/java/text/Collator/CurrencyCollate.java new file mode 100644 index 00000000000..e8f50418598 --- /dev/null +++ b/jdk/test/java/text/Collator/CurrencyCollate.java @@ -0,0 +1,86 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4114080 4150807 + * @summary Test currency collation. For bug 4114080, make sure the collation + * of the euro sign behaves properly. For bug 4150807, make sure the collation + * order of ALL the current symbols is correct. This means they sort + * in English alphabetical order of their English names. This test can be + * easily extended to do simple spot checking. See other collation tests for + * more sophisticated testing. + */ + +import java.io.IOException; +import java.io.OutputStream; +import java.io.PrintStream; +import java.util.Locale; +import java.text.Collator; +import java.text.RuleBasedCollator; +import java.text.CollationKey; + +/* Author: Alan Liu + * (C) Copyright IBM Corp. 1998 - All Rights Reserved + */ +public class CurrencyCollate { + static Collator myCollation = Collator.getInstance(Locale.US); + + public static void main(String[] args) { + String[] DATA = { + "\u20AC", ">", "$", // euro > dollar + "\u20AC", "<", "\u00A3", // euro < pound + + // additional tests for general currency sort order (bug #4150807) + "\u00a4", "<", "\u0e3f", // generic currency < baht + "\u0e3f", "<", "\u00a2", // baht < cent + "\u00a2", "<", "\u20a1", // cent < colon + "\u20a1", "<", "\u20a2", // colon < cruzeiro + "\u20a2", "<", "\u0024", // cruzeiro < dollar + "\u0024", "<", "\u20ab", // dollar < dong + "\u20ab", "<", "\u20a3", // dong < franc + "\u20a3", "<", "\u20a4", // franc < lira + "\u20a4", "<", "\u20a5", // lira < mill + "\u20a5", "<", "\u20a6", // mill < naira + "\u20a6", "<", "\u20a7", // naira < peseta + "\u20a7", "<", "\u00a3", // peseta < pound + "\u00a3", "<", "\u20a8", // pound < rupee + "\u20a8", "<", "\u20aa", // rupee < shekel + "\u20aa", "<", "\u20a9", // shekel < won + "\u20a9", "<", "\u00a5" // won < yen + }; + for (int i=0; i") ? 1 : (DATA[i+1].equals("<") ? -1 : 0); + int actual = myCollation.compare(DATA[i], DATA[i+2]); + if (actual != expected) { + throw new RuntimeException("Collation of " + + DATA[i] + " vs. " + + DATA[i+2] + " yields " + actual + + "; expected " + expected); + } + } + System.out.println("Ok"); + } +} + +//eof diff --git a/jdk/test/java/text/Collator/DanishTest.java b/jdk/test/java/text/Collator/DanishTest.java new file mode 100644 index 00000000000..b5194a83c2a --- /dev/null +++ b/jdk/test/java/text/Collator/DanishTest.java @@ -0,0 +1,215 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4930708 4174436 5008498 + * @library /java/text/testlib + * @summary test Danish Collation + */ +/* +(C) Copyright Taligent, Inc. 1996 - All Rights Reserved +(C) Copyright IBM Corp. 1996 - All Rights Reserved + + The original version of this source code and documentation is copyrighted and +owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are +provided under terms of a License Agreement between Taligent and Sun. This +technology is protected by multiple US and International patents. This notice and +attribution to Taligent may not be removed. + Taligent is a registered trademark of Taligent, Inc. +*/ + +import java.util.Locale; +import java.text.Collator; + +// Quick dummy program for printing out test results +public class DanishTest extends CollatorTest { + + public static void main(String[] args) throws Exception { + new DanishTest().run(args); + } + + /* + * Data for TestPrimary() + */ + private static final String[] primarySourceData = { + "Lvi", + "L\u00E4vi", + "L\u00FCbeck", + "ANDR\u00C9", + "ANDRE", + "ANNONCERER" + }; + + private static final String[] primaryTargetData = { + "Lwi", + "L\u00F6wi", + "Lybeck", + "ANDR\u00E9", + "ANDR\u00C9", + "ANN\u00D3NCERER" + }; + + private static final int[] primaryResults = { + -1, -1, 0, 0, 0, 0 + }; + + /* + * Data for TestTertiary() + */ + private static final String[] tertiarySourceData = { + "Luc", + "luck", + "L\u00FCbeck", + "L\u00E4vi", + "L\u00F6ww" + }; + + private static final String[] tertiaryTargetData = { + "luck", + "L\u00FCbeck", + "lybeck", + "L\u00F6we", + "mast" + }; + + private static final int[] tertiaryResults = { + -1, -1, 1, -1, -1 + }; + + /* + * Data for TestExtra() + */ + private static final String[] testData = { + "A/S", + "ANDRE", + "ANDR\u00C9", // E-acute + "ANDR\u00C8", // E-grave + "ANDR\u00E9", // e-acute + "ANDR\u00EA", // e-circ + "Andre", + "Andr\u00E9", // e-acute + "\u00C1NDRE", // A-acute + "\u00C0NDRE", // A-grave + "andre", + "\u00E1ndre", // a-acute + "\u00E0ndre", // a-grave + "ANDREAS", + "ANNONCERER", + "ANN\u00D3NCERER", // O-acute + "annoncerer", + "ann\u00F3ncerer", // o-acute + "AS", + "A\u00e6RO", // ae-ligature + "CA", + "\u00C7A", // C-cedilla + "CB", + "\u00C7C", // C-cedilla + "D.S.B.", + "DA", + "DB", + "\u00D0ORA", // capital eth + "DSB", + "\u00D0SB", // capital eth + "DSC", + "EKSTRA_ARBEJDE", + "EKSTRABUD", + "H\u00D8ST", // could the 0x00D8 be 0x2205? + "HAAG", + "H\u00C5NDBOG", // A-ring + "HAANDV\u00C6RKSBANKEN", // AE-ligature + "INTERNETFORBINDELSE", + "Internetforbindelse", + "\u00CDNTERNETFORBINDELSE", // I-acute + "internetforbindelse", + "\u00EDnternetforbindelse", // i-acute + "Karl", + "karl", + "NIELSEN", + "NIELS J\u00D8RGEN", // O-slash + "NIELS-J\u00D8RGEN", // O-slash + "OERVAL", + "\u0152RVAL", // OE-ligature + "\u0153RVAL", // oe-ligature + "R\u00C9E, A", // E-acute + "REE, B", + "R\u00C9E, L", // E-acute + "REE, V", + "SCHYTT, B", + "SCHYTT, H", + "SCH\u00DCTT, H", // U-diaeresis + "SCHYTT, L", + "SCH\u00DCTT, M", // U-diaeresis + "SS", + "ss", + "\u00DF", // sharp S + "SSA", + "\u00DFA", // sharp S + "STOREK\u00C6R", // AE-ligature + "STORE VILDMOSE", + "STORMLY", + "STORM PETERSEN", + "THORVALD", + "THORVARDUR", + "\u00DEORVAR\u0110UR", // capital thorn, capital d-stroke(like eth) (sami) + "THYGESEN", + "VESTERG\u00C5RD, A", + "VESTERGAARD, A", + "VESTERG\u00C5RD, B", // 50 + "Westmalle", + "YALLE", + "Yderligere", + "\u00DDderligere", // Y-acute + "\u00DCderligere", // U-diaeresis + "\u00FDderligere", // y-acute + "\u00FCderligere", // u-diaeresis + "U\u0308ruk-hai", + "ZORO", + "\u00C6BLE", // AE-ligature + "\u00E6BLE", // ae-ligature + "\u00C4BLE", // A-diaeresis + "\u00E4BLE", // a-diaeresis + "\u00D8BERG", // O-stroke + "\u00F8BERG", // o-stroke + "\u00D6BERG", // O-diaeresis + "\u00F6BERG" // o-diaeresis + }; + + public void TestPrimary() { + doTest(myCollation, Collator.PRIMARY, + primarySourceData, primaryTargetData, primaryResults); + } + + public void TestTertiary() { + doTest(myCollation, Collator.TERTIARY, + tertiarySourceData, tertiaryTargetData, tertiaryResults); + + for (int i = 0; i < testData.length-1; i++) { + for (int j = i+1; j < testData.length; j++) { + doTest(myCollation, testData[i], testData[j], -1); + } + } + } + + private final Collator myCollation = Collator.getInstance(new Locale("da", "", "")); +} diff --git a/jdk/test/java/text/Collator/DummyTest.java b/jdk/test/java/text/Collator/DummyTest.java new file mode 100644 index 00000000000..3e3124edb07 --- /dev/null +++ b/jdk/test/java/text/Collator/DummyTest.java @@ -0,0 +1,421 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @library /java/text/testlib + * @summary test Dummy Collation + */ + +import java.text.Collator; +import java.text.RuleBasedCollator; + +/* +(C) Copyright Taligent, Inc. 1996 - All Rights Reserved +(C) Copyright IBM Corp. 1996 - All Rights Reserved + + The original version of this source code and documentation is copyrighted and +owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are +provided under terms of a License Agreement between Taligent and Sun. This +technology is protected by multiple US and International patents. This notice and +attribution to Taligent may not be removed. + Taligent is a registered trademark of Taligent, Inc. +*/ + +public class DummyTest extends CollatorTest { + + public static void main(String[] args) throws Exception { + new DummyTest().run(args); + } + + private static final String DEFAULTRULES = + "='\u200B'=\u200C=\u200D=\u200E=\u200F" + // Control Characters + + "=\u0000 =\u0001 =\u0002 =\u0003 =\u0004" //null, .. eot + + "=\u0005 =\u0006 =\u0007 =\u0008 ='\u0009'" //enq, ... + + "='\u000b' =\u000e" //vt,, so + + "=\u000f ='\u0010' =\u0011 =\u0012 =\u0013" //si, dle, dc1, dc2, dc3 + + "=\u0014 =\u0015 =\u0016 =\u0017 =\u0018" //dc4, nak, syn, etb, can + + "=\u0019 =\u001a =\u001b =\u001c =\u001d" //em, sub, esc, fs, gs + + "=\u001e =\u001f =\u007f" //rs, us, del + //....then the C1 Latin 1 reserved control codes + + "=\u0080 =\u0081 =\u0082 =\u0083 =\u0084 =\u0085" + + "=\u0086 =\u0087 =\u0088 =\u0089 =\u008a =\u008b" + + "=\u008c =\u008d =\u008e =\u008f =\u0090 =\u0091" + + "=\u0092 =\u0093 =\u0094 =\u0095 =\u0096 =\u0097" + + "=\u0098 =\u0099 =\u009a =\u009b =\u009c =\u009d" + + "=\u009e =\u009f" + // IGNORE except for secondary, tertiary difference + // Spaces + + ";'\u0020';'\u00A0'" // spaces + + ";'\u2000';'\u2001';'\u2002';'\u2003';'\u2004'" // spaces + + ";'\u2005';'\u2006';'\u2007';'\u2008';'\u2009'" // spaces + + ";'\u200A';'\u3000';'\uFEFF'" // spaces + + ";'\r' ;'\t' ;'\n';'\f';'\u000b'" // whitespace + + // Non-spacing accents + + + ";\u0301" // non-spacing acute accent + + ";\u0300" // non-spacing grave accent + + ";\u0306" // non-spacing breve accent + + ";\u0302" // non-spacing circumflex accent + + ";\u030c" // non-spacing caron/hacek accent + + ";\u030a" // non-spacing ring above accent + + ";\u030d" // non-spacing vertical line above + + ";\u0308" // non-spacing diaeresis accent + + ";\u030b" // non-spacing double acute accent + + ";\u0303" // non-spacing tilde accent + + ";\u0307" // non-spacing dot above/overdot accent + + ";\u0304" // non-spacing macron accent + + ";\u0337" // non-spacing short slash overlay (overstruck diacritic) + + ";\u0327" // non-spacing cedilla accent + + ";\u0328" // non-spacing ogonek accent + + ";\u0323" // non-spacing dot-below/underdot accent + + ";\u0332" // non-spacing underscore/underline accent + // with the rest of the general diacritical marks in binary order + + ";\u0305" // non-spacing overscore/overline + + ";\u0309" // non-spacing hook above + + ";\u030e" // non-spacing double vertical line above + + ";\u030f" // non-spacing double grave + + ";\u0310" // non-spacing chandrabindu + + ";\u0311" // non-spacing inverted breve + + ";\u0312" // non-spacing turned comma above/cedilla above + + ";\u0313" // non-spacing comma above + + ";\u0314" // non-spacing reversed comma above + + ";\u0315" // non-spacing comma above right + + ";\u0316" // non-spacing grave below + + ";\u0317" // non-spacing acute below + + ";\u0318" // non-spacing left tack below + + ";\u0319" // non-spacing tack below + + ";\u031a" // non-spacing left angle above + + ";\u031b" // non-spacing horn + + ";\u031c" // non-spacing left half ring below + + ";\u031d" // non-spacing up tack below + + ";\u031e" // non-spacing down tack below + + ";\u031f" // non-spacing plus sign below + + ";\u0320" // non-spacing minus sign below + + ";\u0321" // non-spacing palatalized hook below + + ";\u0322" // non-spacing retroflex hook below + + ";\u0324" // non-spacing double dot below + + ";\u0325" // non-spacing ring below + + ";\u0326" // non-spacing comma below + + ";\u0329" // non-spacing vertical line below + + ";\u032a" // non-spacing bridge below + + ";\u032b" // non-spacing inverted double arch below + + ";\u032c" // non-spacing hacek below + + ";\u032d" // non-spacing circumflex below + + ";\u032e" // non-spacing breve below + + ";\u032f" // non-spacing inverted breve below + + ";\u0330" // non-spacing tilde below + + ";\u0331" // non-spacing macron below + + ";\u0333" // non-spacing double underscore + + ";\u0334" // non-spacing tilde overlay + + ";\u0335" // non-spacing short bar overlay + + ";\u0336" // non-spacing long bar overlay + + ";\u0338" // non-spacing long slash overlay + + ";\u0339" // non-spacing right half ring below + + ";\u033a" // non-spacing inverted bridge below + + ";\u033b" // non-spacing square below + + ";\u033c" // non-spacing seagull below + + ";\u033d" // non-spacing x above + + ";\u033e" // non-spacing vertical tilde + + ";\u033f" // non-spacing double overscore + + ";\u0340" // non-spacing grave tone mark + + ";\u0341" // non-spacing acute tone mark + + ";\u0342;\u0343;\u0344;\u0345;\u0360;\u0361" // newer + + ";\u0483;\u0484;\u0485;\u0486" // Cyrillic accents + + + ";\u20D0;\u20D1;\u20D2" // symbol accents + + ";\u20D3;\u20D4;\u20D5" // symbol accents + + ";\u20D6;\u20D7;\u20D8" // symbol accents + + ";\u20D9;\u20DA;\u20DB" // symbol accents + + ";\u20DC;\u20DD;\u20DE" // symbol accents + + ";\u20DF;\u20E0;\u20E1" // symbol accents + + + ",'\u002D';\u00AD" // dashes + + ";\u2010;\u2011;\u2012" // dashes + + ";\u2013;\u2014;\u2015" // dashes + + ";\u2212" // dashes + + // other punctuation + + + "<'\u005f'" // underline/underscore (spacing) + + "<\u00af" // overline or macron (spacing) +// + "<\u00ad" // syllable hyphen (SHY) or soft hyphen + + "<'\u002c'" // comma (spacing) + + "<'\u003b'" // semicolon + + "<'\u003a'" // colon + + "<'\u0021'" // exclamation point + + "<\u00a1" // inverted exclamation point + + "<'\u003f'" // question mark + + "<\u00bf" // inverted question mark + + "<'\u002f'" // slash + + "<'\u002e'" // period/full stop + + "<\u00b4" // acute accent (spacing) + + "<'\u0060'" // grave accent (spacing) + + "<'\u005e'" // circumflex accent (spacing) + + "<\u00a8" // diaresis/umlaut accent (spacing) + + "<'\u007e'" // tilde accent (spacing) + + "<\u00b7" // middle dot (spacing) + + "<\u00b8" // cedilla accent (spacing) + + "<'\u0027'" // apostrophe + + "<'\"'" // quotation marks + + "<\u00ab" // left angle quotes + + "<\u00bb" // right angle quotes + + "<'\u0028'" // left parenthesis + + "<'\u0029'" // right parenthesis + + "<'\u005b'" // left bracket + + "<'\u005d'" // right bracket + + "<'\u007b'" // left brace + + "<'\u007d'" // right brace + + "<\u00a7" // section symbol + + "<\u00b6" // paragraph symbol + + "<\u00a9" // copyright symbol + + "<\u00ae" // registered trademark symbol + + "<'\u0040'" // at sign + + "<\u00a4" // international currency symbol + + "<\u00a2" // cent sign + + "<'\u0024'" // dollar sign + + "<\u00a3" // pound-sterling sign + + "<\u00a5" // yen sign + + "<'\u002a'" // asterisk + + "<'\\u005c'" // backslash + + "<'\u0026'" // ampersand + + "<'\u0023'" // number sign + + "<'\u0025'" // percent sign + + "<'\u002b'" // plus sign +// + "<\u002d" // hyphen or minus sign + + "<\u00b1" // plus-or-minus sign + + "<\u00f7" // divide sign + + "<\u00d7" // multiply sign + + "<'\u003c'" // less-than sign + + "<'\u003d'" // equal sign + + "<'\u003e'" // greater-than sign + + "<\u00ac" // end of line symbol/logical NOT symbol + + "<'\u007c'" // vertical line/logical OR symbol + + "<\u00a6" // broken vertical line + + "<\u00b0" // degree symbol + + "<\u00b5" // micro symbol + + // NUMERICS + + + "<0<1<2<3<4<5<6<7<8<9" + + "<\u00bc<\u00bd<\u00be" // 1/4,1/2,3/4 fractions + + // NON-IGNORABLES + + " length, etc. + // + public static void main(String[] args) throws Exception { + new IteratorTest().run(args); + } + + /** + * Test for CollationElementIterator.previous() + * + * @bug 4108758 - Make sure it works with contracting characters + * + */ + public void TestPrevious() throws ParseException { + // A basic test to see if it's working at all + backAndForth(en_us.getCollationElementIterator(test1)); + + // Test with a contracting character sequence + RuleBasedCollator c1 = new RuleBasedCollator( + "< a,A < b,B < c,C, d,D < z,Z < ch,cH,Ch,CH" ); + + backAndForth(c1.getCollationElementIterator("abchdcba")); + + // Test with an expanding character sequence + RuleBasedCollator c2 = new RuleBasedCollator( + "< a < b < c/abd < d" ); + + backAndForth(c2.getCollationElementIterator("abcd")); + + // Now try both + RuleBasedCollator c3 = new RuleBasedCollator( + "< a < b < c/aba < d < z < ch" ); + + backAndForth(c3.getCollationElementIterator("abcdbchdc")); + } + + /** + * Test for getOffset() and setOffset() + */ + public void TestOffset() { + CollationElementIterator iter = en_us.getCollationElementIterator(test1); + + // Run all the way through the iterator, then get the offset + int orders[] = getOrders(iter); + + int offset = iter.getOffset(); + if (offset != test1.length()) { + System.out.println("offset at end != length: " + + offset + " vs " + test1.length()); + } + + // Now set the offset back to the beginning and see if it works + iter.setOffset(0); + assertEqual(iter, en_us.getCollationElementIterator(test1)); + + // TODO: try iterating halfway through a messy string. + } + + /** + * Test for setText() + */ + public void TestSetText() { + CollationElementIterator iter1 = en_us.getCollationElementIterator(test1); + CollationElementIterator iter2 = en_us.getCollationElementIterator(test2); + + // Run through the second iterator just to exercise it + int c = iter2.next(); + int i = 0; + while ( ++i < 10 && c != CollationElementIterator.NULLORDER) { + c = iter2.next(); + } + + // Now set it to point to the same string as the first iterator + iter2.setText(test1); + assertEqual(iter1, iter2); + } + + /** @bug 4108762 + * Test for getMaxExpansion() + */ + public void TestMaxExpansion() throws ParseException { + // Try a simple one first: + // The only expansion ends with 'e' and has length 2 + String[][] test1 = { + { "< a & ae = \u00e4 < b < e", "" }, + { "a", "1" }, + { "b", "1" }, + { "e", "2" }, + }; + verifyExpansion(test1); + + // Now a more complicated one: + // "a1" --> "ae" + // "z" --> "aeef" + // + String[][] test2 = { + { "< a & ae = a1 & aeef = z < b < e < f", "" }, + { "a", "1" }, + { "b", "1" }, + { "e", "2" }, + { "f", "4" }, + }; + verifyExpansion(test2); + } + + /* + * @bug 4157299 + */ + public void TestClearBuffers() throws ParseException { + RuleBasedCollator c = new RuleBasedCollator("< a < b < c & ab = d"); + CollationElementIterator i = c.getCollationElementIterator("abcd"); + int e0 = i.next(); // save the first collation element + i.setOffset(3); // go to the expanding character + i.next(); // but only use up half of it + i.setOffset(0); // go back to the beginning + int e = i.next(); // and get this one again + if (e != e0) { + errln("got " + Integer.toString(e, 16) + ", expected " + + Integer.toString(e0, 16)); + } + } + + //------------------------------------------------------------------------ + // Internal utilities + // + + private void backAndForth(CollationElementIterator iter) { + // Run through the iterator forwards and stick it into an array + int [] orders = getOrders(iter); + + // Now go through it backwards and make sure we get the same values + int index = orders.length; + int o; + + while ((o = iter.previous()) != CollationElementIterator.NULLORDER) { + if (o != orders[--index]) { + errln("Mismatch at index " + index + ": " + + orders[index] + " vs " + o); + break; + } + } + if (index != 0) { + errln("Didn't get back to beginning - index is " + index); + + iter.reset(); + err("next: "); + while ((o = iter.next()) != NULLORDER) { + err( Integer.toHexString(o) + " "); + } + errln(""); + + err("prev: "); + while ((o = iter.previous()) != NULLORDER) { + err( Integer.toHexString(o) + " "); + } + errln(""); + } + } + + /** + * Verify that getMaxExpansion works on a given set of collation rules + * + * The first row of the "tests" array contains the collation rules + * at index 0, and the string at index 1 is ignored. + * + * Subsequent rows of the array contain a character and a number, both + * represented as strings. The character's collation order is determined, + * and getMaxExpansion is called for that character. If its value is + * not equal to the specified number, an error results. + */ + private void verifyExpansion(String[][] tests) throws ParseException + { + RuleBasedCollator coll = new RuleBasedCollator(tests[0][0]); + CollationElementIterator iter = coll.getCollationElementIterator(""); + + for (int i = 1; i < tests.length; i++) { + // First get the collation key that the test string expands to + iter.setText(tests[i][0]); + + int order = iter.next(); + + if (order == NULLORDER || iter.next() != NULLORDER) { + iter.reset(); + errln("verifyExpansion: '" + tests[i][0] + + "' has multiple orders:" + orderString(iter)); + } + + int expansion = iter.getMaxExpansion(order); + int expect = new Integer(tests[i][1]).intValue(); + + if (expansion != expect) { + errln("expansion for '" + tests[i][0] + "' is wrong: " + + "expected " + expect + ", got " + expansion); + } + } + } + + /** + * Return an integer array containing all of the collation orders + * returned by calls to next on the specified iterator + */ + private int[] getOrders(CollationElementIterator iter) + { + int maxSize = 100; + int size = 0; + int[] orders = new int[maxSize]; + + int order; + while ((order = iter.next()) != NULLORDER) { + if (size == maxSize) { + maxSize *= 2; + int[] temp = new int[maxSize]; + System.arraycopy(orders, 0, temp, 0, size); + orders = temp; + } + orders[size++] = order; + } + + if (orders.length > size) { + int[] temp = new int[size]; + System.arraycopy(orders, 0, temp, 0, size); + orders = temp; + } + return orders; + }; + + /** + * Return a string containing all of the collation orders + * returned by calls to next on the specified iterator + */ + private String orderString(CollationElementIterator iter) { + StringBuffer buf = new StringBuffer(); + + int order; + while ((order = iter.next()) != NULLORDER) { + buf.append( Integer.toHexString(order) + " "); + } + return buf.toString(); + } + + static final private int NULLORDER = CollationElementIterator.NULLORDER; + RuleBasedCollator en_us = (RuleBasedCollator)Collator.getInstance(Locale.US); + + String test1 = "What subset of all possible test cases?"; + String test2 = "has the highest probability of detecting"; +} diff --git a/jdk/test/java/text/Collator/JapaneseTest.java b/jdk/test/java/text/Collator/JapaneseTest.java new file mode 100644 index 00000000000..2bd5f6d0179 --- /dev/null +++ b/jdk/test/java/text/Collator/JapaneseTest.java @@ -0,0 +1,324 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test 1.1 02/09/11 + * @bug 4176141 4655819 + * @summary Regression tests for Japanese Collation + */ + +import java.text.*; +import java.util.*; + +public class JapaneseTest { + + // NOTE: + // Golden data in this test case is locale data dependent and + // may need to be changed if the Japanese locale collation rules + // are changed. + + /* + * | NO_DECOMP(default) | CANONICAL_DECOMP | FULL_DECOMP + * -------------------+--------------------+------------------+------------- + * PRIMARY | s1 < s2 (-1) | s1 < s2 (-1) | s1 < s2 (-1) + * SECONDARY | s1 < s2 (-1) | s1 < s2 (-1) | s1 < s2 (-1) + * TERTIARY(default) | S1 < s2 (-1) | s1 < s2 (-1) | s1 < s2 (-1) + */ + static final int[][] results1 = { + { -1, -1, -1}, + { -1, -1, -1}, + { -1, -1, -1}, + }; + static final String[][] compData1 = { + /* + * Data to verify '<' relationship in LocaleElements_ja.java + */ + {"\u3084", "\u30E6", + "Hiragana \"YA\"(0x3084) <---> Katakana \"YU\"(0x30E6)"}, + {"\u30E6", "\u3088", + "Katakana \"YU\"(0x30E6) <---> Hiragana \"YO\"(0x3088)"}, + {"\u00B1", "\u2260", + "Plus-Minus Sign(0x00B1) <---> Not Equal To(0x2260)"}, + {"\u3011", "\u2260", + "Right Black Lenticular Bracket(0x3011) <---> Not Equal To(0x2260)"}, + {"\u2260", "\u2103", + "Not Equal To(0x2260) <---> Degree Celsius(0x2103)"}, + {"\u2260", "\u2606", + "Not Equal To(0x2260) <---> White Star(0x2606)"}, + {"\u30FD", "\u309E", + "Katakana Iteration Mark(0x30FD) <---> Hiragana Voiced Iteration Mark(0x309E)"}, + {"\u3059\u309D", "\u3059\u309E", + "Hiragana \"SU\"(0x3059)Hiragana Iteration Mark(0x309D) <---> Hiragana \"SU\"(0x3059)Hiragana Voiced Iteration Mark(0x309E)"}, + {"\u821E", "\u798F", + "CJK Unified Ideograph(0x821E) <---> CJK Unified Ideograph(0x798F)"}, + + /* + * Data to verify normalization + */ + {"\u2260", "\u225F", + "Not Equal To(0x2260) <---> Questioned Equal To(0x225F)"}, + {"\u226E", "\u2260", + "Not Less-than(0x226E) <---> Not Equal To(0x2260)"}, + {"\u226E", "\u226D", + "Not Less-than(0x226E) <---> Not Equivalent To(0x226D)"}, + }; + + /* + * | NO_DECOMP(default) | CANONICAL_DECOMP | FULL_DECOMP + * -------------------+--------------------+------------------+------------- + * PRIMARY | s1 = s2 (0) | s1 = s2 (0) | s1 = s2 (0) + * SECONDARY | s1 < s2 (-1) | s1 < s2 (-1) | s1 < s2 (-1) + * TERTIARY(default) | S1 < s2 (-1) | s1 < s2 (-1) | s1 < s2 (-1) + */ + static final int[][] results2 = { + { 0, 0, 0}, + { -1, -1, -1}, + { -1, -1, -1}, + }; + static final String[][] compData2 = { + /* + * Data to verify ';' relationship in LocaleElements_ja.java + */ + {"\u3099", "\u309A", + "Combining Katakana-Hiragana Voiced Sound Mark(0x3099) <---> Combining Katakana-Hiragana Semi-voiced Sound Mark(0x309A)"}, + {"\u3053\u3046\u3068\u3046", "\u3053\u3046\u3068\u3099\u3046", + "Hiragana \"KOUTOU\"(0x3053 0x3046 0x3068 0x3046) <---> Hiragana \"KOUTO\"(0x3053 0x3046 0x3068)Combining Katakana-Hiragana Voiced Sound Mark(0X3099)\"U\"(0x3046)"}, + {"\u3053\u3046\u3068\u3046", "\u3053\u3046\u3069\u3046", + "Hiragana \"KOUTOU\"(0x3053 0x3046 0x3068 0x3046) <---> Hiragana \"KOUDOU\"(0x3053 0x3046 0x3069 0x3046)"}, + {"\u3053\u3046\u3069\u3046", "\u3054\u3046\u3068\u3046", + "Hiragana \"KOUTOU\"(0x3053 0x3046 0x3069 0x3046) <---> Hiragana \"GOUTOU\"(0x3054 0x3046 0x3068 0x3046)"}, + {"\u3054\u3046\u3068\u3046", "\u3054\u3046\u3069\u3046", + "Hiragana \"GOUTOU\"(0x3054 0x3046 0x3068 0x3046) <---> Hiragana \"GOUDOU\"(0x3054 0x3046 0x3069 0x3046)"}, + }; + + /* + * | NO_DECOMP(default) | CANONICAL_DECOMP | FULL_DECOMP + * -------------------+--------------------+------------------+------------- + * PRIMARY | s1 = s2 (0) | s1 = s2 (0) | s1 = s2 (0) + * SECONDARY | s1 = s2 (0) | s1 = s2 (0) | s1 = s2 (0) + * TERTIARY(default) | S1 < s2 (-1) | s1 < s2 (-1) | s1 < s2 (-1) + */ + static final int[][] results3 = { + { 0, 0, 0}, + { 0, 0, 0}, + { -1, -1, -1}, + }; + static final String[][] compData3 = { + /* + * Data to verify ',' relationship in LocaleElements_ja.java + */ + {"\u3042", "\u3041", + "Hiragana \"A\"(0x3042) <---> Hiragana \"a\"(0x3041)"}, + {"\u3041", "\u30A2", + "Hiragana \"a\"(0x3041) <---> Katakana \"A\"(0x30A2)"}, + {"\u30A2", "\u30A1", + "Katakana \"A\"(0x30A2) <---> Katakana \"a\"(0x30A1)"}, + {"\u3094", "\u30F4", + "Hiragana \"VU\"(0x3094) <---> Katakana \"VU\"(0x30F4)"}, + {"\u3094", "\u30A6\u3099", + "Hiragana \"VU\"(0x3094) <---> Katakana \"U\"(0x30A6)Combining Katakana-Hiragana Voiced Sound Mark(0x3099)"}, + {"\u3046\u3099", "\u30F4", + "Hiragana \"U\"(0x3046)Combining Katakana-Hiragana Voiced Sound Mark(0x3099) <---> Katakana \"VU\"(0x30F4)"}, + {"\u3046\u3099", "\u30A6\u3099", + "Hiragana \"U\"(0x3046)Combining Katakana-Hiragana Voiced Sound Mark(0x3099) <---> Katakana \"U\"(0x30A6)Combining Katakana-Hiragana Voiced Sound Mark(0x3099)"}, + {"\u30AB\u30A2", "\u30AB\u30FC", + "Katakana \"KAA\"(0x30AB 0x30A2) <---> Katakana \"KA-\"(0x30AB 0x30FC)"}, + {"\u30CB\u30A1\u30A2", "\u30CB\u30A1\u30FC", + "Katakana \"NyaA\"(0x30CB 0x30A1 0x30A2) <---> Katakana \"Nya-\"(0x30CB 0x30A1 0x30FC)"}, + {"\u30B3\u30AA\u30D2\u30A4", "\u30B3\u30FC\u30D2\u30FC", + "Katakana \"KOOHII\"(0x30B3 0x30AA 0x30D2 0x30A4) <---> Katakana \"KO-HI-\"(0x30B3 0x30FC 0x30D2 0x30FC)"}, + {"\u308A\u3088\u3046", "\u308A\u3087\u3046", + "Hiragana \"RIYOU\"(0x308A 0x3088 0x3046) <---> Hiragana \"Ryou\"(0x308A 0x3087 0x3046)"}, + {"\u3081\u3064\u304D", "\u3081\u3063\u304D", + "Hiragana \"METSUKI\"(0x3081 0x3064 0x304D) <---> Hiragana \"MEKKI\"(0x3081 0x3063 0x304D)"}, + {"\u3075\u3042\u3093", "\u30D5\u30A1\u30F3", + "Hiragana \"FUAN\"(0x3075 0x3042 0x3093) <---> Katakana \"FUaN\"(0x30D5 0x30A1 0x30F3)"}, + {"\u3075\u3041\u3093", "\u30D5\u30A2\u30F3", + "Hiragana \"FUaN\"(0x3075 0x3041 0x3093) <---> Katakana \"FUAN\"(0x30D5 0x30A2 0x30F3)"}, + {"\u30D5\u30A2\u30F3", "\u30D5\u30A1\u30F3", + "Katakana \"FUAN\"(0x30D5 0x30A2 0x30F3) <---> Katakana \"FUaN\"(0x30D5 0x30A1 0x30F3)"}, + }; + + /* + * | NO_DECOMP(default) | CANONICAL_DECOMP | FULL_DECOMP + * -------------------+--------------------+------------------+------------- + * PRIMARY | s1 = s2 (0) | s1 = s2 (0) | s1 = s2 (0) + * SECONDARY | s1 = s2 (0) | s1 = s2 (0) | s1 = s2 (0) + * TERTIARY(default) | S1 = s2 (0) | s1 = s2 (0) | s1 = s2 (0) + */ + static final int[][] results4 = { + { 0, 0, 0}, + { 0, 0, 0}, + { 0, 0, 0}, + }; + static final String[][] compData4 = { + /* + * Data to verify Japanese normalization + */ + {"\u309E", "\u309D\u3099", + "Hiragana Voiced Iteration Mark(0x309E) <---> Hiragana Iteration Mark(0x309D)Combining Katakana-Hiragana Voiced Sound Mark(0x3099)"}, + {"\u30FE", "\u30FD\u3099", + "Katakana Voiced Iteration Mark(0x30FE) <---> Katakana iteration mark(0x30FD)Combining Katakana-Hiragana Voiced Sound Mark(0x3099)"}, + {"\u306F\u3099", "\u3070", + "Hiragana \"HA\"(0x306F)Combining Katakana-Hiragana Voiced Sound Mark(0x3099) <---> Hiragana \"BA\"(0x3070)"}, + {"\u306F\u309A", "\u3071", + "Hiragana \"HA\"(0x306F)Combining Katakana-Hiragana Semi-voiced Sound Mark(0x309A) <---> Hiragana \"PA\"(0x3071)"}, + {"\u30EF\u3099", "\u30F7", + "Katakana \"WA\"(0x306F)Combining Katakana-Hiragana Voiced Sound Mark(0x3099) <---> Katakana \"VA\"(0x30F7)"}, + {"\u30F0\u3099", "\u30F8", + "Katakana \"WI\"(0x30F0)Combining Katakana-Hiragana Voiced Sound Mark(0x3099) <---> Katakana \"VI\"(0x30F8)"}, + {"\u30F1\u3099", "\u30F9", + "Katakana \"WE\"(0x30F1)Combining Katakana-Hiragana Voiced Sound Mark(0x3099) <---> Katakana \"VE\"(0x30F9)"}, + {"\u30F2\u3099", "\u30FA", + "Katakana \"WO\"(0x30F2)Combining Katakana-Hiragana Voiced Sound Mark(0x3099) <---> Katakana \"VO\"(0x30FA)"}, + {"\u3046\u3099", "\u3094", + "Hiragana \"U\"(0x3046)Combining Katakana-Hiragana Voiced Sound Mark(0x3099) <---> Hiragana \"VU\"(0x3094)"}, + {"\u30A6\u3099", "\u30F4", + "Katakana \"U\"(0x30A6)Combining Katakana-Hiragana Voiced Sound Mark(0x3099) <---> Katakana \"VU\"(0x30F4)"}, + + // verify normalization + {"\u2260", "\u003D\u0338", + "Not Equal To(0x2260) <---> Equal(0x003D)Combining Long Solidus Overlay(0x0338)"}, + {"\u2262", "\u2261\u0338", + "Not Identical To(0x2262) <---> Identical To(0x2261)Combining Long Solidus Overlay(0x0338)"}, + {"\u226E", "\u003C\u0338", + "Not Less-than(0x226E) <---> Less-than Sign(0x003C)Combining Long Solidus Overlay(0x0338)"}, + + // Verify a character which has been added since Unicode 2.1.X. + {"\u798F", "\uFA1B", + "CJK Unified Ideograph \"FUKU\"(0x798F) <---> CJK Compatibility Ideograph \"FUKU\"(0xFA1B)"}, + }; + + /* + * | NO_DECOMP(default) | CANONICAL_DECOMP | FULL_DECOMP + * -------------------+--------------------+------------------+------------- + * PRIMARY | s1 > s2 (1) | s1 = s2 (0) | s1 = s2 (0) + * SECONDARY | s1 > s2 (1) | s1 = s2 (0) | s1 = s2 (0) + * TERTIARY(default) | S1 > s2 (1) | s1 = s2 (0) | s1 = s2 (0) + */ + static final int[][] results5 = { + { 1, 0, 0}, + { 1, 0, 0}, + { 1, 0, 0}, + }; + static final String[][] compData5 = { + /* + * Data to verify normalization + */ + {"\u226D", "\u224D\u0338", + "Not Equivalent To(0x226D) <---> Equivalent To(0x224D)Combining Long Solidus Overlay(0x0338)"}, + }; + + static final int[][] results6 = { + { 1, -1, -1}, + { 1, -1, -1}, + { 1, -1, -1}, + }; + static final String[][] compData6 = { + /* + * Data to verify normalization + */ + {"\u226D", "\u226C", + "Not Equivalent To(0x226D) <---> Between(0x226C)"}, + {"\u226D", "\u225F", + "Not Equivalent To(0x226D) <---> Questioned Equal To(0x225F)"}, + }; + + + /* + * The following data isn't used at the moment because iteration marks + * aren't supported now. + */ + static final String[][] compData0 = { + {"\u307F\u307F", "\u307F\u309D", + "Hiragana \"MIMI\"(0x307F 0x307F) <---> Hiragana \"MI\"(0x307F)Hiragana Iteration Mark(0x309D)"}, + {"\u3044\u3059\u305A", "\u3044\u3059\u309E", + "Hiragana \"ISUZU\"(0x3044 0x3059 0x305A) <---> Hiragana \"ISU\"(0x3044 0x3059)Hiragana Voiced Iteration Mark(0x309E)"}, + {"\u30DF\u30DF", "\u30DF\u30FD", + "Katakana \"MIMI\"(0x30DF 0x30DF) <---> Katakana \"MI\"(0x30DF)Katakana Iteration Mark(0x30FD)"}, + {"\u30A4\u30B9\u30BA", "\u30A4\u30B9\u30FE", + "Katakana \"ISUZU\"(0x30A4 0x30B9 0x30BA) <---> Katakana \"ISU\"(0x30A4 0x30B9)Katakana Voiced Iteration Mark(0x30FE)"}, + }; + + + static final String[] decomp_name = { + "NO_DECOMP", "CANONICAL_DECOMP", "FULL_DECOMP" + }; + + static final String[] strength_name = { + "PRIMARY", "SECONDARY", "TERTIARY" + }; + + + Collator col = Collator.getInstance(Locale.JAPAN); + int result = 0; + + public static void main(String[] args) throws Exception { + new JapaneseTest().run(); + } + + public void run() { + // Use all available localse on the initial testing.... + // Locale[] locales = Locale.getAvailableLocales(); + Locale[] locales = { Locale.getDefault() }; + + for (int l = 0; l < locales.length; l++) { + Locale.setDefault(locales[l]); + + for (int decomp = 0; decomp < 3; decomp++) {// See decomp_name. + col.setDecomposition(decomp); + + for (int strength = 0; strength < 3; strength++) {// See strength_name. +// System.err.println("\n" + locales[l] + ": " + strength_name[strength] + " --- " + decomp_name[decomp]); + + col.setStrength(strength); + doCompare(compData1, results1[strength][decomp], strength, decomp); + doCompare(compData2, results2[strength][decomp], strength, decomp); + doCompare(compData3, results3[strength][decomp], strength, decomp); + doCompare(compData4, results4[strength][decomp], strength, decomp); + doCompare(compData5, results5[strength][decomp], strength, decomp); + doCompare(compData6, results6[strength][decomp], strength, decomp); + } + } + } + + /* Check result */ + if (result !=0) { + throw new RuntimeException("Unexpected results on Japanese collation."); + } + } + + void doCompare(String[][] s, int expectedValue, int strength, int decomp) { + int value; + for (int i=0; i < s.length; i++) { + if ((value = col.compare(s[i][0], s[i][1])) != expectedValue) { + result++; + System.err.println(strength_name[strength] + + ": compare() returned unexpected value.(" + + value + ") on " + decomp_name[decomp] + + " Expected(" + expectedValue + + ") for " + s[i][2]); + } + } + } +} diff --git a/jdk/test/java/text/Collator/KoreanTest.java b/jdk/test/java/text/Collator/KoreanTest.java new file mode 100644 index 00000000000..fd314ee13ed --- /dev/null +++ b/jdk/test/java/text/Collator/KoreanTest.java @@ -0,0 +1,142 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test 1.1 02/09/12 + * @bug 4176141 4655819 + * @summary Regression tests for Korean Collation + */ + +import java.text.*; +import java.util.*; + +public class KoreanTest { + + // NOTE: + // Golden data in this test case is locale data dependent and + // may need to be changed if the Korean locale collation rules + // are changed. + + // And, CollationDecomp has been set to 0(NO_DECOMPOSITION) in + // LocaleElements_ko.java. + // This is very important to consider what is correct behavior in + // Korean Collator. Sometimes different from other locales. + + /* + * TERTIARY(default): s1 < s2, SECONDARY: s1 < s2, PRIMARY: s1 < s2 + */ + static final String[][] compData1 = { + /* + * Data to verify '<' relationship in LocaleElements_ja.java + */ + {"\uACE0\uC591\uC774", "\u732B", + "Hangul \"Cat\"(0xACE0 0xC591 0xC774) <---> Chinese Kanji \"Cat\"(0x732B)"}, + {"\u30FB", "\u2025", + "Katakana middle dot(0x30FB) <---> Two dot leader(0x2025)"}, + + {"\u00B1", "\u2260", + "Plus-Minus Sign(0x00B1) <---> Not Equal To(0x2260)"}, + {"\u3011", "\u2260", + "Right Black Lenticular Bracket(0x3011) <---> Not Equal To(0x2260)"}, + {"\u2260", "\u2103", + "Not Equal To(0x2260) <---> Degree Celsius(0x2103)"}, + {"\u2260", "\u2606", + "Not Equal To(0x2260) <---> White Star(0x2606)"}, + + // Unlike other locales' Collator, compare() returns -1 because of + // NO_DECOMPOSITION. + /* above "assumption" is no longer true, now we do normalize ("decomposition") + for the pattern in ko locale, but exclude those hangul syllables, so the + test case below need to be excluded from tiger/1.5 + {"\u003D\u0338", "\u2260", + "Equal(0x003D)Combining Long Solidus Overlay(0x0338) <---> Not Equal To(0x2260)"}, + */ + }; + + /* + * TERTIARY(default): s1 = s2, SECONDARY: s1 = s2, PRIMARY: s1 = s2 + */ + static final String[][] compData2 = { + // Verify a character which has been added since Unicode 2.1.X. + {"\u798F", "\uFA1B", + "CJK Unified Ideograph \"FUKU\"(0x798F) <---> CJK Compatibility Ideograph \"FUKU\"(0xFA1B)"}, + + }; + + Collator col = Collator.getInstance(Locale.KOREA); + int result = 0; + + public static void main(String[] args) throws Exception { + new KoreanTest().run(); + } + + public void run() { + // + // Test for TERTIARY(default) + // + doCompare(compData1); + doEquals(compData2); + + // + // Test for SECONDARY + // + col.setStrength(Collator.SECONDARY); + doCompare(compData1); + doEquals(compData2); + + // + // Test for PRIMARY + // + col.setStrength(Collator.PRIMARY); + doCompare(compData1); + doEquals(compData2); + + if (result !=0) { + throw new RuntimeException("Unexpected results on Korean collation."); + } + } + + /* compare() should return -1 for each combination. */ + void doCompare(String[][] s) { + int value; + for (int i=0; i < s.length; i++) { + if ((value = col.compare(s[i][0], s[i][1])) > -1) { + result++; + System.err.println("TERTIARY: The first string should be less than the second string: " + + s[i][2] + " compare() returned " + value + "."); + } + } + } + + /* equals() should return true for each combination. */ + void doEquals(String[][] s) { + for (int i=0; i < s.length; i++) { + if (!col.equals(s[i][0], s[i][1])) { + result++; + System.err.println("TERTIARY: The first string should be equals to the second string: " + + s[i][2] + " compare() returned " + + col.compare(s[i][0], s[i][1] + ".")); + } + } + } +} diff --git a/jdk/test/java/text/Collator/MonkeyTest.java b/jdk/test/java/text/Collator/MonkeyTest.java new file mode 100644 index 00000000000..9539bf5f5ae --- /dev/null +++ b/jdk/test/java/text/Collator/MonkeyTest.java @@ -0,0 +1,149 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @library /java/text/testlib + * @summary test Collation, Monkey style + */ +/* +(C) Copyright Taligent, Inc. 1996 - All Rights Reserved +(C) Copyright IBM Corp. 1996 - All Rights Reserved + + The original version of this source code and documentation is copyrighted and +owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are +provided under terms of a License Agreement between Taligent and Sun. This +technology is protected by multiple US and International patents. This notice and +attribution to Taligent may not be removed. + Taligent is a registered trademark of Taligent, Inc. +*/ + +import java.io.IOException; +import java.util.Random; +import java.io.OutputStream; +import java.io.PrintStream; +import java.util.Locale; +import java.text.Collator; +import java.text.RuleBasedCollator; +import java.text.CollationKey; + +public class MonkeyTest extends CollatorTest +{ + public static void main(String[] args) throws Exception { + new MonkeyTest().run(args); + } + + public void report(String s, String t, int result, int revResult) + { + if (result == -1) + { + if (revResult != 1) + errln(" --> Test Failed"); + } + else if (result == 1) + { + if (revResult != -1) + errln(" --> Test Failed"); + } + else if (result == 0) + { + if (revResult != 0) + errln(" --> Test Failed"); + } + } + + public void TestCollationKey() + { + String source = "-abcdefghijklmnopqrstuvwxyz#&^$@"; + Random r = new Random(3); + int s = checkValue(r.nextInt() % source.length()); + int t = checkValue(r.nextInt() % source.length()); + int slen = checkValue((r.nextInt() - source.length()) % source.length()); + int tlen = checkValue((r.nextInt() - source.length()) % source.length()); + String subs = source.substring((s > slen ? slen : s), (s >= slen ? s : slen)); + String subt = source.substring((t > tlen ? tlen : t), (t >= tlen ? t : tlen)); + myCollator.setStrength(Collator.TERTIARY); + CollationKey CollationKey1 = myCollator.getCollationKey(subs); + CollationKey CollationKey2 = myCollator.getCollationKey(subt); + int result = CollationKey1.compareTo(CollationKey2); // Tertiary + int revResult = CollationKey2.compareTo(CollationKey1); // Tertiary + report(("CollationKey(" + subs + ")"), ("CollationKey(" + subt + ")"), result, revResult); + myCollator.setStrength(Collator.SECONDARY); + CollationKey1 = myCollator.getCollationKey(subs); + CollationKey2 = myCollator.getCollationKey(subt); + result = CollationKey1.compareTo(CollationKey2); // Secondary + revResult = CollationKey2.compareTo(CollationKey1); // Secondary + report(("CollationKey(" + subs + ")") , ("CollationKey(" + subt + ")"), result, revResult); + myCollator.setStrength(Collator.PRIMARY); + CollationKey1 = myCollator.getCollationKey(subs); + CollationKey2 = myCollator.getCollationKey(subt); + result = CollationKey1.compareTo(CollationKey2); // Primary + revResult = CollationKey2.compareTo(CollationKey1); // Primary + report(("CollationKey(" + subs + ")"), ("CollationKey(" + subt + ")"), result, revResult); + String addOne = subs + "\uE000"; + CollationKey1 = myCollator.getCollationKey(subs); + CollationKey2 = myCollator.getCollationKey(addOne); + result = CollationKey1.compareTo(CollationKey2); + if (result != -1) + errln("CollationKey(" + subs + ")" + ".LT." + "CollationKey(" + addOne + ") Failed."); + result = CollationKey2.compareTo(CollationKey1); + if (result != 1) + errln("CollationKey(" + addOne + ")" + ".GT." + "CollationKey(" + subs + ") Failed."); + } + private static int checkValue(int value) + { + value *= (value > 0) ? 1 : -1; + return value; + } + public void TestCompare() + { + String source = "-abcdefghijklmnopqrstuvwxyz#&^$@"; + Random r = new Random(3); + int s = checkValue(r.nextInt() % source.length()); + int t = checkValue(r.nextInt() % source.length()); + int slen = checkValue((r.nextInt() - source.length()) % source.length()); + int tlen = checkValue((r.nextInt() - source.length()) % source.length()); + String subs = source.substring((s > slen ? slen : s), (s >= slen ? s : slen)); + String subt = source.substring((t > tlen ? tlen : t), (t >= tlen ? t : tlen)); + myCollator.setStrength(Collator.TERTIARY); + int result = myCollator.compare(subs, subt); // Tertiary + int revResult = myCollator.compare(subt, subs); // Tertiary + report(subs, subt, result, revResult); + myCollator.setStrength(Collator.SECONDARY); + result = myCollator.compare(subs, subt); // Secondary + revResult = myCollator.compare(subt, subs); // Secondary + report(subs, subt, result, revResult); + myCollator.setStrength(Collator.PRIMARY); + result = myCollator.compare(subs, subt); // Primary + revResult = myCollator.compare(subt, subs); // Primary + report(subs, subt, result, revResult); + String addOne = subs + "\uE000"; + result = myCollator.compare(subs, addOne); + if (result != -1) + errln("Test : " + subs + " .LT. " + addOne + " Failed."); + result = myCollator.compare(addOne, subs); + if (result != 1) + errln("Test : " + addOne + " .GE. " + subs + " Failed."); + } + private static Collator myCollator = Collator.getInstance(); +} diff --git a/jdk/test/java/text/Collator/Regression.java b/jdk/test/java/text/Collator/Regression.java new file mode 100644 index 00000000000..958ce29c524 --- /dev/null +++ b/jdk/test/java/text/Collator/Regression.java @@ -0,0 +1,940 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4048446 4051866 4053636 4054238 4054734 4054736 4058613 4059820 4060154 + * 4062418 4065540 4066189 4066696 4076676 4078588 4079231 4081866 4087241 + * 4087243 4092260 4095316 4101940 4103436 4114076 4114077 4124632 4132736 + * 4133509 4139572 4141640 4179126 4179686 4244884 4663220 + * @library /java/text/testlib + * @summary Regression tests for Collation and associated classes + */ +/* +(C) Copyright Taligent, Inc. 1996 - All Rights Reserved +(C) Copyright IBM Corp. 1996 - All Rights Reserved + + The original version of this source code and documentation is copyrighted and +owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are +provided under terms of a License Agreement between Taligent and Sun. This +technology is protected by multiple US and International patents. This notice and +attribution to Taligent may not be removed. + Taligent is a registered trademark of Taligent, Inc. +*/ + +import java.text.*; +import java.util.Locale; +import java.util.Vector; + + +public class Regression extends CollatorTest { + + public static void main(String[] args) throws Exception { + new Regression().run(args); + } + + // CollationElementIterator.reset() doesn't work + // + public void Test4048446() { + CollationElementIterator i1 = en_us.getCollationElementIterator(test1); + CollationElementIterator i2 = en_us.getCollationElementIterator(test1); + + while ( i1.next() != CollationElementIterator.NULLORDER ) { + } + i1.reset(); + + assertEqual(i1, i2); + } + + + // Collator -> rules -> Collator round-trip broken for expanding characters + // + public void Test4051866() throws ParseException { + // Build a collator containing expanding characters + RuleBasedCollator c1 = new RuleBasedCollator("< o " + +"& oe ,o\u3080" + +"& oe ,\u1530 ,O" + +"& OE ,O\u3080" + +"& OE ,\u1520" + +"< p ,P"); + + // Build another using the rules from the first + RuleBasedCollator c2 = new RuleBasedCollator(c1.getRules()); + + // Make sure they're the same + if (!c1.getRules().equals(c2.getRules())) { + errln("Rules are not equal"); + } + } + + // Collator thinks "black-bird" == "black" + // + public void Test4053636() { + if (en_us.equals("black-bird","black")) { + errln("black-bird == black"); + } + } + + + // CollationElementIterator will not work correctly if the associated + // Collator object's mode is changed + // + public void Test4054238() { + RuleBasedCollator c = (RuleBasedCollator) en_us.clone(); + + c.setDecomposition(Collator.CANONICAL_DECOMPOSITION); + CollationElementIterator i1 = en_us.getCollationElementIterator(test3); + + c.setDecomposition(Collator.NO_DECOMPOSITION); + CollationElementIterator i2 = en_us.getCollationElementIterator(test3); + + // At this point, BOTH iterators should use NO_DECOMPOSITION, since the + // collator itself is in that mode + assertEqual(i1, i2); + } + + // Collator.IDENTICAL documented but not implemented + // + public void Test4054734() { + RuleBasedCollator c = (RuleBasedCollator) en_us.clone(); + try { + c.setStrength(Collator.IDENTICAL); + } + catch (Exception e) { + errln("Caught " + e.toString() + " setting Collator.IDENTICAL"); + } + + String[] decomp = { + "\u0001", "<", "\u0002", + "\u0001", "=", "\u0001", + "A\u0001", ">", "~\u0002", // Ensure A and ~ are not compared bitwise + "\u00C0", "=", "A\u0300" // Decomp should make these equal + }; + c.setDecomposition(Collator.CANONICAL_DECOMPOSITION); + compareArray(c, decomp); + + String[] nodecomp = { + "\u00C0", ">", "A\u0300" // A-grave vs. A combining-grave + }; + c.setDecomposition(Collator.NO_DECOMPOSITION); + compareArray(c, nodecomp); + } + + // Full Decomposition mode not implemented + // + public void Test4054736() { + RuleBasedCollator c = (RuleBasedCollator) en_us.clone(); + c.setDecomposition(Collator.FULL_DECOMPOSITION); + + String[] tests = { + "\uFB4f", "=", "\u05D0\u05DC", // Alef-Lamed vs. Alef, Lamed + }; + + compareArray(c, tests); + } + + // Collator.getInstance() causes an ArrayIndexOutofBoundsException for Korean + // + public void Test4058613() { + // Creating a default collator doesn't work when Korean is the default + // locale + + Locale oldDefault = Locale.getDefault(); + + Locale.setDefault( Locale.KOREAN ); + try { + Collator c = Collator.getInstance(); + + // Since the fix to this bug was to turn of decomposition for Korean collators, + // ensure that's what we got + if (c.getDecomposition() != Collator.NO_DECOMPOSITION) { + errln("Decomposition is not set to NO_DECOMPOSITION"); + } + } + finally { + Locale.setDefault(oldDefault); + } + } + + // RuleBasedCollator.getRules does not return the exact pattern as input + // for expanding character sequences + // + public void Test4059820() { + RuleBasedCollator c = null; + try { + c = new RuleBasedCollator("< a < b , c/a < d < z"); + } catch (ParseException e) { + errln("Exception building collator: " + e.toString()); + return; + } + if ( c.getRules().indexOf("c/a") == -1) { + errln("returned rules do not contain 'c/a'"); + } + } + + // MergeCollation::fixEntry broken for "& H < \u0131, \u0130, i, I" + // + public void Test4060154() { + RuleBasedCollator c = null; + try { + c = new RuleBasedCollator("< g, G < h, H < i, I < j, J" + + " & H < \u0131, \u0130, i, I" ); + } catch (ParseException e) { + errln("Exception building collator: " + e.toString()); + return; + } + c.setDecomposition(Collator.CANONICAL_DECOMPOSITION); + + String[] tertiary = { + "A", "<", "B", + "H", "<", "\u0131", + "H", "<", "I", + "\u0131", "<", "\u0130", + "\u0130", "<", "i", + "\u0130", ">", "H", + }; + c.setStrength(Collator.TERTIARY); + compareArray(c, tertiary); + + String[] secondary = { + "H", "<", "I", + "\u0131", "=", "\u0130", + }; + c.setStrength(Collator.PRIMARY); + compareArray(c, secondary); + }; + + // Secondary/Tertiary comparison incorrect in French Secondary + // + public void Test4062418() throws ParseException { + RuleBasedCollator c = (RuleBasedCollator) Collator.getInstance(Locale.FRANCE); + c.setStrength(Collator.SECONDARY); + + String[] tests = { + "p\u00eache", "<", "p\u00e9ch\u00e9", // Comparing accents from end, p\u00e9ch\u00e9 is greater + }; + + compareArray(c, tests); + } + + // Collator.compare() method broken if either string contains spaces + // + public void Test4065540() { + if (en_us.compare("abcd e", "abcd f") == 0) { + errln("'abcd e' == 'abcd f'"); + } + } + + // Unicode characters need to be recursively decomposed to get the + // correct result. For example, + // u1EB1 -> \u0103 + \u0300 -> a + \u0306 + \u0300. + // + public void Test4066189() { + String test1 = "\u1EB1"; + String test2 = "a\u0306\u0300"; + + RuleBasedCollator c1 = (RuleBasedCollator) en_us.clone(); + c1.setDecomposition(Collator.FULL_DECOMPOSITION); + CollationElementIterator i1 = en_us.getCollationElementIterator(test1); + + RuleBasedCollator c2 = (RuleBasedCollator) en_us.clone(); + c2.setDecomposition(Collator.NO_DECOMPOSITION); + CollationElementIterator i2 = en_us.getCollationElementIterator(test2); + + assertEqual(i1, i2); + } + + // French secondary collation checking at the end of compare iteration fails + // + public void Test4066696() { + RuleBasedCollator c = (RuleBasedCollator) Collator.getInstance(Locale.FRANCE); + c.setStrength(Collator.SECONDARY); + + String[] tests = { + "\u00e0", "<", "\u01fa", // a-grave < A-ring-acute + }; + + compareArray(c, tests); + } + + + // Bad canonicalization of same-class combining characters + // + public void Test4076676() { + // These combining characters are all in the same class, so they should not + // be reordered, and they should compare as unequal. + String s1 = "A\u0301\u0302\u0300"; + String s2 = "A\u0302\u0300\u0301"; + + RuleBasedCollator c = (RuleBasedCollator) en_us.clone(); + c.setStrength(Collator.TERTIARY); + + if (c.compare(s1,s2) == 0) { + errln("Same-class combining chars were reordered"); + } + } + + + // RuleBasedCollator.equals(null) throws NullPointerException + // + public void Test4079231() { + try { + if (en_us.equals(null)) { + errln("en_us.equals(null) returned true"); + } + } + catch (Exception e) { + errln("en_us.equals(null) threw " + e.toString()); + } + } + + // RuleBasedCollator breaks on "< a < bb" rule + // + public void Test4078588() throws ParseException { + RuleBasedCollator rbc=new RuleBasedCollator("< a < bb"); + + int result = rbc.compare("a","bb"); + + if (result != -1) { + errln("Compare(a,bb) returned " + result + "; expected -1"); + } + } + + // Combining characters in different classes not reordered properly. + // + public void Test4081866() throws ParseException { + // These combining characters are all in different classes, + // so they should be reordered and the strings should compare as equal. + String s1 = "A\u0300\u0316\u0327\u0315"; + String s2 = "A\u0327\u0316\u0315\u0300"; + + RuleBasedCollator c = (RuleBasedCollator) en_us.clone(); + c.setStrength(Collator.TERTIARY); + + // Now that the default collators are set to NO_DECOMPOSITION + // (as a result of fixing bug 4114077), we must set it explicitly + // when we're testing reordering behavior. -- lwerner, 5/5/98 + c.setDecomposition(Collator.CANONICAL_DECOMPOSITION); + + if (c.compare(s1,s2) != 0) { + errln("Combining chars were not reordered"); + } + } + + // string comparison errors in Scandinavian collators + // + public void Test4087241() { + RuleBasedCollator c = (RuleBasedCollator) Collator.getInstance( + new Locale("da", "DK")); + c.setStrength(Collator.SECONDARY); + + String[] tests = { + "\u007a", "<", "\u00e6", // z < ae + "a\u0308", "<", "a\u030a", // a-unlaut < a-ring + "Y", "<", "u\u0308", // Y < u-umlaut + }; + + compareArray(c, tests); + } + + // CollationKey takes ignorable strings into account when it shouldn't + // + public void Test4087243() { + RuleBasedCollator c = (RuleBasedCollator) en_us.clone(); + c.setStrength(Collator.TERTIARY); + + String[] tests = { + "123", "=", "123\u0001", // 1 2 3 = 1 2 3 ctrl-A + }; + + compareArray(c, tests); + } + + // Mu/micro conflict + // Micro symbol and greek lowercase letter Mu should sort identically + // + public void Test4092260() { + Collator c = Collator.getInstance(new Locale("el", "")); + + // will only be equal when FULL_DECOMPOSITION is used + c.setDecomposition(Collator.FULL_DECOMPOSITION); + + String[] tests = { + "\u00B5", "=", "\u03BC", + }; + + compareArray(c, tests); + } + + void Test4095316() { + Collator c = Collator.getInstance(new Locale("el", "GR")); + c.setStrength(Collator.TERTIARY); + // javadocs for RuleBasedCollator clearly specify that characters containing compatability + // chars MUST use FULL_DECOMPOSITION to get accurate comparisons. + c.setDecomposition(Collator.FULL_DECOMPOSITION); + + String[] tests = { + "\u03D4", "=", "\u03AB", + }; + + compareArray(c, tests); + } + + public void Test4101940() { + try { + RuleBasedCollator c = new RuleBasedCollator("< a < b"); + CollationElementIterator i = c.getCollationElementIterator(""); + i.reset(); + + if (i.next() != i.NULLORDER) { + errln("next did not return NULLORDER"); + } + } + catch (Exception e) { + errln("Caught " + e ); + } + } + + // Collator.compare not handling spaces properly + // + public void Test4103436() { + RuleBasedCollator c = (RuleBasedCollator) en_us.clone(); + c.setStrength(Collator.TERTIARY); + + String[] tests = { + "file", "<", "file access", + "file", "<", "fileaccess", + }; + + compareArray(c, tests); + } + + // Collation not Unicode conformant with Hangul syllables + // + public void Test4114076() { + RuleBasedCollator c = (RuleBasedCollator) en_us.clone(); + c.setStrength(Collator.TERTIARY); + + // + // With Canonical decomposition, Hangul syllables should get decomposed + // into Jamo, but Jamo characters should not be decomposed into + // conjoining Jamo + // + c.setDecomposition(Collator.CANONICAL_DECOMPOSITION); + String[] test1 = { + "\ud4db", "=", "\u1111\u1171\u11b6", + }; + compareArray(c, test1); + + // Full decomposition result should be the same as canonical decomposition + // for all hangul. + c.setDecomposition(Collator.FULL_DECOMPOSITION); + compareArray(c, test1); + + } + + + // Collator.getCollationKey was hanging on certain character sequences + // + public void Test4124632() throws Exception { + Collator coll = Collator.getInstance(Locale.JAPAN); + + try { + coll.getCollationKey("A\u0308bc"); + } catch (OutOfMemoryError e) { + errln("Ran out of memory -- probably an infinite loop"); + } + } + + // sort order of french words with multiple accents has errors + // + public void Test4132736() { + Collator c = Collator.getInstance(Locale.FRANCE); + + String[] test1 = { + "e\u0300e\u0301", "<", "e\u0301e\u0300", + "e\u0300\u0301", ">", "e\u0301\u0300", + }; + compareArray(c, test1); + } + + // The sorting using java.text.CollationKey is not in the exact order + // + public void Test4133509() { + String[] test1 = { + "Exception", "<", "ExceptionInInitializerError", + "Graphics", "<", "GraphicsEnvironment", + "String", "<", "StringBuffer", + }; + compareArray(en_us, test1); + } + + // Collation with decomposition off doesn't work for Europe + // + public void Test4114077() { + // Ensure that we get the same results with decomposition off + // as we do with it on.... + + RuleBasedCollator c = (RuleBasedCollator) en_us.clone(); + c.setStrength(Collator.TERTIARY); + + String[] test1 = { + "\u00C0", "=", "A\u0300", // Should be equivalent + "p\u00eache", ">", "p\u00e9ch\u00e9", + "\u0204", "=", "E\u030F", + "\u01fa", "=", "A\u030a\u0301", // a-ring-acute -> a-ring, acute + // -> a, ring, acute + "A\u0300\u0316", "<", "A\u0316\u0300", // No reordering --> unequal + }; + c.setDecomposition(Collator.NO_DECOMPOSITION); + compareArray(c, test1); + + String[] test2 = { + "A\u0300\u0316", "=", "A\u0316\u0300", // Reordering --> equal + }; + c.setDecomposition(Collator.CANONICAL_DECOMPOSITION); + compareArray(c, test2); + } + + // Support for Swedish gone in 1.1.6 (Can't create Swedish collator) + // + public void Test4141640() { + // + // Rather than just creating a Swedish collator, we might as well + // try to instantiate one for every locale available on the system + // in order to prevent this sort of bug from cropping up in the future + // + Locale[] locales = Collator.getAvailableLocales(); + + for (int i = 0; i < locales.length; i++) { + try { + Collator c = Collator.getInstance(locales[i]); + } catch (Exception e) { + errln("Caught " + e + " creating collator for " + locales[i]); + } + } + } + + // getCollationKey throws exception for spanish text + // Cannot reproduce this bug on 1.2, however it DOES fail on 1.1.6 + // + public void Test4139572() { + // + // Code pasted straight from the bug report + // + // create spanish locale and collator + Locale l = new Locale("es", "es"); + Collator col = Collator.getInstance(l); + + // this spanish phrase kills it! + col.getCollationKey("Nombre De Objeto"); + } + + // RuleBasedCollator doesn't use getCollationElementIterator internally + // + public void Test4146160() throws ParseException { + // + // Use a custom collator class whose getCollationElementIterator + // methods increment a count.... + // + My4146160Collator.count = 0; + new My4146160Collator().getCollationKey("1"); + if (My4146160Collator.count < 1) { + errln("getCollationElementIterator not called"); + } + + My4146160Collator.count = 0; + new My4146160Collator().compare("1", "2"); + if (My4146160Collator.count < 1) { + errln("getCollationElementIterator not called"); + } + } + + static class My4146160Collator extends RuleBasedCollator { + public My4146160Collator() throws ParseException { + super(Regression.en_us.getRules()); + } + + public CollationElementIterator getCollationElementIterator( + String text) { + count++; + return super.getCollationElementIterator(text); + } + public CollationElementIterator getCollationElementIterator( + CharacterIterator text) { + count++; + return super.getCollationElementIterator(text); + } + + public static int count = 0; + }; + + // CollationElementIterator.previous broken for expanding char sequences + // + public void Test4179686() throws ParseException { + + // Create a collator with a few expanding character sequences in it.... + RuleBasedCollator coll = new RuleBasedCollator(en_us.getRules() + + " & ae ; \u00e4 & AE ; \u00c4" + + " & oe ; \u00f6 & OE ; \u00d6" + + " & ue ; \u00fc & UE ; \u00dc"); + + String text = "T\u00f6ne"; // o-umlaut + + CollationElementIterator iter = coll.getCollationElementIterator(text); + Vector elements = new Vector(); + int elem; + + // Iterate forward and collect all of the elements into a Vector + while ((elem = iter.next()) != iter.NULLORDER) { + elements.addElement(new Integer(elem)); + } + + // Now iterate backward and make sure they're the same + int index = elements.size() - 1; + while ((elem = iter.previous()) != iter.NULLORDER) { + int expect = ((Integer)elements.elementAt(index)).intValue(); + + if (elem != expect) { + errln("Mismatch at index " + index + + ": got " + Integer.toString(elem,16) + + ", expected " + Integer.toString(expect,16)); + } + index--; + } + } + + public void Test4244884() throws ParseException { + RuleBasedCollator coll = (RuleBasedCollator)Collator.getInstance(Locale.US); + coll = new RuleBasedCollator(coll.getRules() + + " & C < ch , cH , Ch , CH < cat < crunchy"); + + String[] testStrings = new String[] { + "car", + "cave", + "clamp", + "cramp", + "czar", + "church", + "catalogue", + "crunchy", + "dog" + }; + + for (int i = 1; i < testStrings.length; i++) { + if (coll.compare(testStrings[i - 1], testStrings[i]) >= 0) { + errln("error: \"" + testStrings[i - 1] + + "\" is greater than or equal to \"" + testStrings[i] + + "\"."); + } + } + } + + public void Test4179216() throws ParseException { + // you can position a CollationElementIterator in the middle of + // a contracting character sequence, yielding a bogus collation + // element + RuleBasedCollator coll = (RuleBasedCollator)Collator.getInstance(Locale.US); + coll = new RuleBasedCollator(coll.getRules() + + " & C < ch , cH , Ch , CH < cat < crunchy"); + String testText = "church church catcatcher runcrunchynchy"; + CollationElementIterator iter = coll.getCollationElementIterator( + testText); + + // test that the "ch" combination works properly + iter.setOffset(4); + int elt4 = CollationElementIterator.primaryOrder(iter.next()); + + iter.reset(); + int elt0 = CollationElementIterator.primaryOrder(iter.next()); + + iter.setOffset(5); + int elt5 = CollationElementIterator.primaryOrder(iter.next()); + + if (elt4 != elt0 || elt5 != elt0) + errln("The collation elements at positions 0 (" + elt0 + "), 4 (" + + elt4 + "), and 5 (" + elt5 + ") don't match."); + + // test that the "cat" combination works properly + iter.setOffset(14); + int elt14 = CollationElementIterator.primaryOrder(iter.next()); + + iter.setOffset(15); + int elt15 = CollationElementIterator.primaryOrder(iter.next()); + + iter.setOffset(16); + int elt16 = CollationElementIterator.primaryOrder(iter.next()); + + iter.setOffset(17); + int elt17 = CollationElementIterator.primaryOrder(iter.next()); + + iter.setOffset(18); + int elt18 = CollationElementIterator.primaryOrder(iter.next()); + + iter.setOffset(19); + int elt19 = CollationElementIterator.primaryOrder(iter.next()); + + if (elt14 != elt15 || elt14 != elt16 || elt14 != elt17 + || elt14 != elt18 || elt14 != elt19) + errln("\"cat\" elements don't match: elt14 = " + elt14 + ", elt15 = " + + elt15 + ", elt16 = " + elt16 + ", elt17 = " + elt17 + + ", elt18 = " + elt18 + ", elt19 = " + elt19); + + // now generate a complete list of the collation elements, + // first using next() and then using setOffset(), and + // make sure both interfaces return the same set of elements + iter.reset(); + + int elt = iter.next(); + int count = 0; + while (elt != CollationElementIterator.NULLORDER) { + ++count; + elt = iter.next(); + } + + String[] nextElements = new String[count]; + String[] setOffsetElements = new String[count]; + int lastPos = 0; + + iter.reset(); + elt = iter.next(); + count = 0; + while (elt != CollationElementIterator.NULLORDER) { + nextElements[count++] = testText.substring(lastPos, iter.getOffset()); + lastPos = iter.getOffset(); + elt = iter.next(); + } + count = 0; + for (int i = 0; i < testText.length(); ) { + iter.setOffset(i); + lastPos = iter.getOffset(); + elt = iter.next(); + setOffsetElements[count++] = testText.substring(lastPos, iter.getOffset()); + i = iter.getOffset(); + } + for (int i = 0; i < nextElements.length; i++) { + if (nextElements[i].equals(setOffsetElements[i])) { + logln(nextElements[i]); + } else { + errln("Error: next() yielded " + nextElements[i] + ", but setOffset() yielded " + + setOffsetElements[i]); + } + } + } + + public void Test4216006() throws Exception { + // rule parser barfs on "<\u00e0=a\u0300", and on other cases + // where the same token (after normalization) appears twice in a row + boolean caughtException = false; + try { + RuleBasedCollator dummy = new RuleBasedCollator("\u00e0= 0) { + errln("List out of order at element #" + i + ": " + + prettify(sortedList[i]) + " >= " + + prettify(sortedList[i + 1])); + } + } + } + + // CollationElementIterator set doesn't work propertly with next/prev + public void Test4663220() { + RuleBasedCollator collator = (RuleBasedCollator)Collator.getInstance(Locale.US); + CharacterIterator stringIter = new StringCharacterIterator("fox"); + CollationElementIterator iter = collator.getCollationElementIterator(stringIter); + + int[] elements_next = new int[3]; + logln("calling next:"); + for (int i = 0; i < 3; ++i) { + logln("[" + i + "] " + (elements_next[i] = iter.next())); + } + + int[] elements_fwd = new int[3]; + logln("calling set/next:"); + for (int i = 0; i < 3; ++i) { + iter.setOffset(i); + logln("[" + i + "] " + (elements_fwd[i] = iter.next())); + } + + for (int i = 0; i < 3; ++i) { + if (elements_next[i] != elements_fwd[i]) { + errln("mismatch at position " + i + + ": " + elements_next[i] + + " != " + elements_fwd[i]); + } + } + } + + //------------------------------------------------------------------------ + // Internal utilities + // + private void compareArray(Collator c, String[] tests) { + for (int i = 0; i < tests.length; i += 3) { + + int expect = 0; + if (tests[i+1].equals("<")) { + expect = -1; + } else if (tests[i+1].equals(">")) { + expect = 1; + } else if (tests[i+1].equals("=")) { + expect = 0; + } else { + expect = Integer.decode(tests[i+1]).intValue(); + } + + int result = c.compare(tests[i], tests[i+2]); + if (sign(result) != sign(expect)) + { + errln( i/3 + ": compare(" + prettify(tests[i]) + + " , " + prettify(tests[i+2]) + + ") got " + result + "; expected " + expect); + } + else + { + // Collator.compare worked OK; now try the collation keys + CollationKey k1 = c.getCollationKey(tests[i]); + CollationKey k2 = c.getCollationKey(tests[i+2]); + + result = k1.compareTo(k2); + if (sign(result) != sign(expect)) { + errln( i/3 + ": key(" + prettify(tests[i]) + + ").compareTo(key(" + prettify(tests[i+2]) + + ")) got " + result + "; expected " + expect); + + errln(" " + prettify(k1) + " vs. " + prettify(k2)); + } + } + } + } + + private static final int sign(int i) { + if (i < 0) return -1; + if (i > 0) return 1; + return 0; + } + + + static RuleBasedCollator en_us = (RuleBasedCollator)Collator.getInstance(Locale.US); + + String test1 = "XFILE What subset of all possible test cases has the highest probability of detecting the most errors?"; + String test2 = "Xf ile What subset of all possible test cases has the lowest probability of detecting the least errors?"; + String test3 = "a\u00FCbeck Gr\u00F6\u00DFe L\u00FCbeck"; +} diff --git a/jdk/test/java/text/Collator/SpanishTest.java b/jdk/test/java/text/Collator/SpanishTest.java new file mode 100644 index 00000000000..fab4ef0d66b --- /dev/null +++ b/jdk/test/java/text/Collator/SpanishTest.java @@ -0,0 +1,106 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @library /java/text/testlib + * @summary test Spanish Collation + */ +/* +(C) Copyright Taligent, Inc. 1996 - All Rights Reserved +(C) Copyright IBM Corp. 1996 - All Rights Reserved + + The original version of this source code and documentation is copyrighted and +owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are +provided under terms of a License Agreement between Taligent and Sun. This +technology is protected by multiple US and International patents. This notice and +attribution to Taligent may not be removed. + Taligent is a registered trademark of Taligent, Inc. +*/ + +import java.util.Locale; +import java.text.Collator; + +// Quick dummy program for printing out test results +public class SpanishTest extends CollatorTest { + + public static void main(String[] args) throws Exception { + new SpanishTest().run(args); + } + + /* + * TestPrimary() + */ + private static final String[] primarySourceData = { + "alias", + "acHc", + "acc", + "Hello" + }; + + private static final String[] primaryTargetData = { + "allias", + "aCHc", + "aCHc", + "hellO" + }; + + private static final int[] primaryResults = { + -1, 0, -1, 0 + }; + + /* + * TestTertiary() + */ + private static final String[] tertiarySourceData = { + "alias", + "Elliot", + "Hello", + "acHc", + "acc" + }; + + private static final String[] tertiaryTargetData = { + "allias", + "Emiot", + "hellO", + "aCHc", + "aCHc" + }; + + private static final int[] tertiaryResults = { + -1, -1, 1, -1, -1 + }; + + public void TestPrimary() { + doTest(myCollation, Collator.PRIMARY, + primarySourceData, primaryTargetData, primaryResults); + } + + public void TestTertiary() { + doTest(myCollation, Collator.TERTIARY, + tertiarySourceData, tertiaryTargetData, tertiaryResults); + } + + private final Collator myCollation = Collator.getInstance(new Locale("es", "ES", "")); +} diff --git a/jdk/test/java/text/Collator/SurrogatesTest.java b/jdk/test/java/text/Collator/SurrogatesTest.java new file mode 100644 index 00000000000..87df904e882 --- /dev/null +++ b/jdk/test/java/text/Collator/SurrogatesTest.java @@ -0,0 +1,117 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @library /java/text/testlib + * @summary test Supplementary Character Collation + */ + +import java.text.Collator; +import java.text.RuleBasedCollator; + +// Quick dummy program for printing out test results +public class SurrogatesTest extends CollatorTest { + + public static void main(String[] args) throws Exception { + new SurrogatesTest().run(args); + } + + /* + * Data for TestPrimary() + */ + private static final String[] primarySourceData = { + "A\ud800\udc04BCD" + }; + + private static final String[] primaryTargetData = { + "A\ud800\udc05BCD" + }; + + private static final int[] primaryResults = { + 0 + }; + + /* + * Data for TestTertiary() + */ + private static final String[] tertiarySourceData = { + "ABCD", + "ABCD", + "A\ud800\udc00CD", + "WXYZ", + "WXYZ", + "AFEM", + "FGM", + "BB", + "BB" + }; + + private static final String[] tertiaryTargetData = { + "A\ud800\udc00CD", + "AB\ud800\udc00D", + "A\ud800\udc01CD", + "W\ud800\udc0aYZ", + "W\ud800\udc0bYZ", + "A\ud800\udc08M", + "\ud800\udc08M", + "\ud800\udc04\ud800\udc02", + "\ud800\udc04\ud800\udc05" + }; + + private static final int[] tertiaryResults = { + -1, 1, 1, 1, -1, -1, -1, -1, 1 + }; + + public void TestPrimary() { + doTest(myCollation, Collator.PRIMARY, + primarySourceData, primaryTargetData, primaryResults); + } + + public void TestTertiary() { + doTest(myCollation, Collator.TERTIARY, + tertiarySourceData, tertiaryTargetData, tertiaryResults); + } + + private Collator getCollator() { + RuleBasedCollator base = (RuleBasedCollator)Collator.getInstance(); + String rule = base.getRules(); + try { + return new RuleBasedCollator(rule + + "&B < \ud800\udc01 < \ud800\udc00" + + ", \ud800\udc02, \ud800\udc03" + + "; \ud800\udc04, \ud800\udc05" + + "< \ud800\udc06 < \ud800\udc07" + + "&FE < \ud800\udc08" + + "&PE, \ud800\udc09" + + "&Z < \ud800\udc0a < \ud800\udc0b < \ud800\udc0c" + + "&\ud800\udc0a < x, X" + + "&A < \ud800\udc04\ud800\udc05"); + } catch (Exception e) { + errln("Failed to create new RulebasedCollator object"); + return null; + } + } + + private Collator myCollation = getCollator(); +} diff --git a/jdk/test/java/text/Collator/Test4401726.java b/jdk/test/java/text/Collator/Test4401726.java new file mode 100644 index 00000000000..6f9e9ed945e --- /dev/null +++ b/jdk/test/java/text/Collator/Test4401726.java @@ -0,0 +1,98 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4401726 + * @author John O'Conner + * @library /java/text/testlib + * @summary Regression tests for Collation and associated classes + */ + + +import java.text.*; +import java.util.Locale; +import java.util.Vector; + +public class Test4401726 extends CollatorTest { + + public static void main(String[] args) throws Exception { + new Test4401726().run(args); + } + + public void TestSetOffSet() { + + int[] expected = {0, -1, 65536}; + int[] actual = new int[expected.length]; + + try { + String rule = "< a, A < d; D"; + + RuleBasedCollator rbc = new RuleBasedCollator(rule); + String str = "aD"; + CollationElementIterator iterator = + rbc.getCollationElementIterator(str); + + iterator.setOffset(0); + actual[0] = iterator.getOffset(); + actual[1] = iterator.previous(); + iterator.setOffset(0); + actual[2] = iterator.next(); + + if (compareArray(expected, actual) == false) { + errln("Failed."); + } + + str = "a"; + iterator = rbc.getCollationElementIterator(str); + iterator.setOffset(0); + actual[0] = iterator.getOffset(); + actual[1] = iterator.previous(); + iterator.setOffset(0); + actual[2] = iterator.next(); + + if (compareArray(expected, actual) == false) { + errln("Failed."); + } + + } catch (ParseException e) { + errln("Unexpected ParseException: " + e); + } + + + } + + boolean compareArray(int[] expected, int[] actual) { + boolean retVal = false; + if (expected.length == actual.length) { + int errors = 0; + for(int x=0; x< expected.length; ++x) { + if (expected[x] != actual[x]) { + ++errors; + } + } + if (errors == 0) retVal = true; + } + return retVal; + } +} diff --git a/jdk/test/java/text/Collator/ThaiTest.java b/jdk/test/java/text/Collator/ThaiTest.java new file mode 100644 index 00000000000..7d643446434 --- /dev/null +++ b/jdk/test/java/text/Collator/ThaiTest.java @@ -0,0 +1,156 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @library /java/text/testlib + * @summary test Thai Collation + */ +/* + * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. + * + * This software is the proprietary information of Oracle. + * Use is subject to license terms. + * + */ + +import java.util.Locale; +import java.text.Collator; +import java.text.RuleBasedCollator; + +public class ThaiTest extends CollatorTest { + + public static void main(String[] args) throws Exception { + new ThaiTest().run(args); + } + + /* + * Data for TestPrimary() + */ + private static final String[] primarySourceData = { + "\u0e01\u0e01", + "\u0e07\u0e42\u0e01\u0e49", + "\u0e10\u0e34\u0e19", + "\u0e16\u0e32\u0e21\u0e23\u0e23\u0e04\u0e40\u0e17\u0e28\u0e19\u0e32", + "\u0e23\u0e21\u0e18\u0e23\u0e23\u0e21\u0e4c\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e20\u0e31\u0e22", + "\u0e23\u0e23\u0e21\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e41\u0e25\u0e30\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e49\u0e32\u0e02\u0e32\u0e22", + "\u0e23\u0e23\u0e25\u0e38\u0e19\u0e34\u0e15\u0e34\u0e20\u0e32\u0e27\u0e30", + "\u0e01\u0e25\u0e37\u0e2d\u0e41\u0e01\u0e07", + "\u0e21\u0e17\u0e34\u0e25\u0e41\u0e2d\u0e25\u0e01\u0e2d\u0e2e\u0e2d\u0e25\u0e4c", + "\u0e40\u0e2d\u0e35\u0e48\u0e22\u0e21\u0e2d\u0e48\u0e2d\u0e07", + "\u0e2a\u0e14\u0e32\u0e1b\u0e31\u0e15\u0e15\u0e34\u0e1c\u0e25", + "\u0e2d\u0e19\u0e01\u0e23\u0e23\u0e21\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c", + "\u0e21\u0e49\u0e40\u0e17\u0e49\u0e32\u0e22\u0e32\u0e22\u0e21\u0e48\u0e2d\u0e21", + "\u0e2a\u0e49\u0e25\u0e30\u0e21\u0e32\u0e19", + "\u0e2a\u0e49\u0e28\u0e36\u0e01", + "\u0e2a\u0e49\u0e2d\u0e31\u0e48\u0e27", + "\u0e2a\u0e49\u0e40\u0e14\u0e37\u0e2d\u0e19", + "\u0e2a\u0e49\u0e40\u0e25\u0e37\u0e48\u0e2d\u0e19", + "\u0e2a\u0e49\u0e41\u0e02\u0e27\u0e19", + "\u0e2a\u0e49\u0e41\u0e2b\u0e49\u0e07", + "\u0e2a\u0e49\u0e44\u0e01\u0e48", + "\u0e2b", + "\u0e2b\u0e0b\u0e2d\u0e07", + "\u0e2b\u0e19", + "\u0e2b\u0e1b\u0e25\u0e32\u0e23\u0e49\u0e32", + "\u0e2b\u0e21", + "\u0e2b\u0e21\u0e17\u0e2d\u0e07", + "\u0e2b\u0e21\u0e2a\u0e31\u0e1a\u0e1b\u0e30\u0e23\u0e14", + "\u0e2b\u0e21\u0e49", + "\u0e2b\u0e23\u0e13\u0e22\u0e4c", + "\u0e2b\u0e25", + "\u0e2b\u0e25\u0e19\u0e49\u0e33", + "\u0e2b\u0e25\u0e48", + "\u0e2b\u0e25\u0e48\u0e16\u0e19\u0e19", + "\u0e2b\u0e25\u0e48\u0e17\u0e27\u0e35\u0e1b", + "\u0e2b\u0e25\u0e48\u0e17\u0e32\u0e07", + "\u0e2b\u0e25\u0e48\u0e23\u0e27\u0e1a", + "\u0e2b\u0e49", + "\u0e2d", + "\u0e2d\u0e49", + "\u0e2e\u0e42\u0e25", + "\u0e2e\u0e44\u0e1f", + "\u0e2e\u0e49" + }; + + private static final String[] primaryTargetData = { + "\u0e01\u0e01", + "\u0e07\u0e42\u0e01\u0e49", + "\u0e10\u0e34\u0e19", + "\u0e16\u0e32\u0e21\u0e23\u0e23\u0e04\u0e40\u0e17\u0e28\u0e19\u0e32", + "\u0e23\u0e21\u0e18\u0e23\u0e23\u0e21\u0e4c\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e20\u0e31\u0e22", + "\u0e23\u0e23\u0e21\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e41\u0e25\u0e30\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e49\u0e32\u0e02\u0e32\u0e22", + "\u0e23\u0e23\u0e25\u0e38\u0e19\u0e34\u0e15\u0e34\u0e20\u0e32\u0e27\u0e30", + "\u0e01\u0e25\u0e37\u0e2d\u0e41\u0e01\u0e07", + "\u0e21\u0e17\u0e34\u0e25\u0e41\u0e2d\u0e25\u0e01\u0e2d\u0e2e\u0e2d\u0e25\u0e4c", + "\u0e40\u0e2d\u0e35\u0e48\u0e22\u0e21\u0e2d\u0e48\u0e2d\u0e07", + "\u0e2a\u0e14\u0e32\u0e1b\u0e31\u0e15\u0e15\u0e34\u0e1c\u0e25", + "\u0e2d\u0e19\u0e01\u0e23\u0e23\u0e21\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c", + "\u0e21\u0e49\u0e40\u0e17\u0e49\u0e32\u0e22\u0e32\u0e22\u0e21\u0e48\u0e2d\u0e21", + "\u0e2a\u0e49\u0e25\u0e30\u0e21\u0e32\u0e19", + "\u0e2a\u0e49\u0e28\u0e36\u0e01", + "\u0e2a\u0e49\u0e2d\u0e31\u0e48\u0e27", + "\u0e2a\u0e49\u0e40\u0e14\u0e37\u0e2d\u0e19", + "\u0e2a\u0e49\u0e40\u0e25\u0e37\u0e48\u0e2d\u0e19", + "\u0e2a\u0e49\u0e41\u0e02\u0e27\u0e19", + "\u0e2a\u0e49\u0e41\u0e2b\u0e49\u0e07", + "\u0e2a\u0e49\u0e44\u0e01\u0e48", + "\u0e2b", + "\u0e2b\u0e0b\u0e2d\u0e07", + "\u0e2b\u0e19", + "\u0e2b\u0e1b\u0e25\u0e32\u0e23\u0e49\u0e32", + "\u0e2b\u0e21", + "\u0e2b\u0e21\u0e17\u0e2d\u0e07", + "\u0e2b\u0e21\u0e2a\u0e31\u0e1a\u0e1b\u0e30\u0e23\u0e14", + "\u0e2b\u0e21\u0e49", + "\u0e2b\u0e23\u0e13\u0e22\u0e4c", + "\u0e2b\u0e25", + "\u0e2b\u0e25\u0e19\u0e49\u0e33", + "\u0e2b\u0e25\u0e48", + "\u0e2b\u0e25\u0e48\u0e16\u0e19\u0e19", + "\u0e2b\u0e25\u0e48\u0e17\u0e27\u0e35\u0e1b", + "\u0e2b\u0e25\u0e48\u0e17\u0e32\u0e07", + "\u0e2b\u0e25\u0e48\u0e23\u0e27\u0e1a", + "\u0e2b\u0e49", + "\u0e2d", + "\u0e2d\u0e49", + "\u0e2e\u0e42\u0e25", + "\u0e2e\u0e44\u0e1f", + "\u0e2e\u0e49" + }; + + private static final int[] primaryResults = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0 + }; + + public void TestPrimary() { + doTest(myCollation, Collator.PRIMARY, + primarySourceData, primaryTargetData, primaryResults); + } + + private final Collator myCollation = Collator.getInstance(new Locale("th")); +} diff --git a/jdk/test/java/text/Collator/TurkishTest.java b/jdk/test/java/text/Collator/TurkishTest.java new file mode 100644 index 00000000000..f83ef228e06 --- /dev/null +++ b/jdk/test/java/text/Collator/TurkishTest.java @@ -0,0 +1,118 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @library /java/text/testlib + * @summary test Turkish Collation + */ +/* +(C) Copyright Taligent, Inc. 1996 - All Rights Reserved +(C) Copyright IBM Corp. 1996 - All Rights Reserved + + The original version of this source code and documentation is copyrighted and +owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are +provided under terms of a License Agreement between Taligent and Sun. This +technology is protected by multiple US and International patents. This notice and +attribution to Taligent may not be removed. + Taligent is a registered trademark of Taligent, Inc. +*/ + +import java.util.Locale; +import java.text.Collator; + +// Quick dummy program for printing out test results +public class TurkishTest extends CollatorTest { + + public static void main(String[] args) throws Exception { + new TurkishTest().run(args); + } + + /* + * Data for TestPrimary() + */ + private static final String[] primarySourceData = { + "\u00FCoid", + "vo\u0131d", + "idea", + "Idea", + "\u0130dea" + }; + + private static final String[] primaryTargetData = { + "void", + "void", + "Idea", + "\u0130dea", + "\u0131dea" + }; + + private static final int[] primaryResults = { + -1, -1, 1, -1, 1 + }; + + /* + * Data for TestTertiary() + */ + private static final String[] tertiarySourceData = { + "s\u0327", + "v\u00E4t", + "old", + "\u00FCoid", + "h\u011Ealt", + "stres\u015E", + "vo\u0131d", + "idea", + "idea", + "\u0131dea" + }; + + private static final String tertiaryTargetData[] = { + "u\u0308", + "vbt", + "\u00D6ay", + "void", + "halt", + "\u015Etre\u015Es", + "void", + "Idea", + "\u0130dea", + "Idea" + }; + + private static final int[] tertiaryResults = { + -1, -1, -1, -1, 1, -1, -1, 1, -1, -1 + }; + + public void TestPrimary() { + doTest(myCollation, Collator.PRIMARY, + primarySourceData, primaryTargetData, primaryResults); + } + + public void TestTertiary() { + doTest(myCollation, Collator.TERTIARY, + tertiarySourceData, tertiaryTargetData, tertiaryResults); + } + + private final Collator myCollation = Collator.getInstance(new Locale("tr", "TR", "")); +} diff --git a/jdk/test/java/text/Collator/VietnameseTest.java b/jdk/test/java/text/Collator/VietnameseTest.java new file mode 100644 index 00000000000..faa4921073c --- /dev/null +++ b/jdk/test/java/text/Collator/VietnameseTest.java @@ -0,0 +1,364 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4932968 5015215 + * @library /java/text/testlib + * @summary test Vietnamese Collation + */ + +/* + ******************************************************************************* + * (C) Copyright IBM Corp. 1996-2003 - All Rights Reserved * + * * + * The original version of this source code and documentation is copyrighted * + * and owned by IBM, These materials are provided under terms of a License * + * Agreement between IBM and Sun. This technology is protected by multiple * + * US and International patents. This notice and attribution to IBM may not * + * to removed. * + ******************************************************************************* + */ + +import java.util.Locale; +import java.text.Collator; + +// Quick dummy program for printing out test results +public class VietnameseTest extends CollatorTest { + + public static void main(String[] args) throws Exception { + new VietnameseTest().run(args); + } + + private final static String testPS[] = { + "a", + "a", + "\u00c2", + "Cz", + "d", + "e", + "e", + "\u1ec7", + "gz", + "i", + "kz", + "nz", + "nh", + "o", + "o", + "\u01a0", + "pz", + "tz", + "tr", + "u", + "u", + "y" + }; + + private final static String testPT[] = { + "\u00e0", + "\u0102", + "\u0102", + "Ch", + "\u0110", + "\u0111", + "\u1eb9", + "\u1eb9", + "gi", + "\u0128", + "kh", + "ng", + "ng", + "\u00f2", + "\u00f4", + "\u00f4", + "ph", + "th", + "th", + "\u1ee5", + "\u01b0", + "\u1ef4" + }; + + private final static int testPR[] = { + 0, + -1, + 1, + 1, + -1, + 1, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 0, + -1, + 1, + 1, + 1, + 1, + 0, + -1, + 0 + }; + + private final static String testT[] = { + "a", + "A", + "\u00e0", + "\u00c0", + "\u1ea3", + "\u1ea2", + "\u00e3", + "\u00c3", + "\u00e1", + "\u00c1", + "\u1ea1", + "\u1ea0", + "\u0103", + "\u0102", + "\u1eb1", + "\u1eb0", + "\u1eb3", + "\u1eb2", + "\u1eb5", + "\u1eb4", + "\u1eaf", + "\u1eae", + "\u1eb7", + "\u1eb6", + "\u00e2", + "\u00c2", + "\u1ea7", + "\u1ea6", + "\u1ea9", + "\u1ea8", + "\u1eab", + "\u1eaa", + "\u1ea5", + "\u1ea4", + "\u1ead", + "\u1eac", + "b", + "B", + "c", + "C", + "ch", + "Ch", + "CH", + "d", + "D", + "\u0111", + "\u0110", + "e", + "E", + "\u00e8", + "\u00c8", + "\u1ebb", + "\u1eba", + "\u1ebd", + "\u1ebc", + "\u00e9", + "\u00c9", + "\u1eb9", + "\u1eb8", + "\u00ea", + "\u00ca", + "\u1ec1", + "\u1ec0", + "\u1ec3", + "\u1ec2", + "\u1ec5", + "\u1ec4", + "\u1ebf", + "\u1ebe", + "\u1ec7", + "\u1ec6", + "f", + "F", + "g", + "G", + "gi", + "Gi", + "GI", + "gz", + "h", + "H", + "i", + "I", + "\u00ec", + "\u00cc", + "\u1ec9", + "\u1ec8", + "\u0129", + "\u0128", + "\u00ed", + "\u00cd", + "\u1ecb", + "\u1eca", + "j", + "J", + "k", + "K", + "kh", + "Kh", + "KH", + "kz", + "l", + "L", + "m", + "M", + "n", + "N", + "ng", + "Ng", + "NG", + "ngz", + "nh", + "Nh", + "NH", + "nz", + "o", + "O", + "\u00f2", + "\u00d2", + "\u1ecf", + "\u1ece", + "\u00f5", + "\u00d5", + "\u00f3", + "\u00d3", + "\u1ecd", + "\u1ecc", + "\u00f4", + "\u00d4", + "\u1ed3", + "\u1ed2", + "\u1ed5", + "\u1ed4", + "\u1ed7", + "\u1ed6", + "\u1ed1", + "\u1ed0", + "\u1ed9", + "\u1ed8", + "\u01a1", + "\u01a0", + "\u1edd", + "\u1edc", + "\u1edf", + "\u1ede", + "\u1ee1", + "\u1ee0", + "\u1edb", + "\u1eda", + "\u1ee3", + "\u1ee2", + "p", + "P", + "ph", + "Ph", + "PH", + "pz", + "q", + "Q", + "r", + "R", + "s", + "S", + "t", + "T", + "th", + "Th", + "TH", + "thz", + "tr", + "Tr", + "TR", + "tz", + "u", + "U", + "\u00f9", + "\u00d9", + "\u1ee7", + "\u1ee6", + "\u0169", + "\u0168", + "\u00fa", + "\u00da", + "\u1ee5", + "\u1ee4", + "\u01b0", + "\u01af", + "\u1eeb", + "\u1eea", + "\u1eed", + "\u1eec", + "\u1eef", + "\u1eee", + "\u1ee9", + "\u1ee8", + "\u1ef1", + "\u1ef0", + "v", + "V", + "w", + "W", + "x", + "X", + "y", + "Y", + "\u1ef3", + "\u1ef2", + "\u1ef7", + "\u1ef6", + "\u1ef9", + "\u1ef8", + "\u00fd", + "\u00dd", + "\u1ef5", + "\u1ef4", + "z", + "Z" + }; + + public void TestPrimary() { + doTest(myCollation, Collator.PRIMARY, testPS, testPT, testPR); + } + + public void TestTertiary() { + int testLength = testT.length; + + myCollation.setStrength(Collator.TERTIARY); + for (int i = 0; i < testLength - 1; i++) { + for (int j = i+1; j < testLength; j++) { + doTest(myCollation, testT[i], testT[j], -1); + } + } + } + + private final Collator myCollation = Collator.getInstance(new Locale("vi", "VN")); +} diff --git a/jdk/test/java/text/Format/ChoiceFormat/Bug4185732.ser.txt b/jdk/test/java/text/Format/ChoiceFormat/Bug4185732.ser.txt new file mode 100644 index 00000000000..23c4e4607fc --- /dev/null +++ b/jdk/test/java/text/Format/ChoiceFormat/Bug4185732.ser.txt @@ -0,0 +1,44 @@ +# +# Copyright (c) 1999, 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. +# +# 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. +# + +# Hex dump of a serialized ChiceFormat for Bug4185732Test. + +aced0005737200166a6176612e746578742e43686f696365466f726d617418e9 +c6bee365b6040200025b000d63686f696365466f726d6174737400135b4c6a61 +76612f6c616e672f537472696e673b5b000c63686f6963654c696d6974737400 +025b44787200166a6176612e746578742e4e756d626572466f726d6174dff6b3 +bf137d07e803000b5a000c67726f7570696e67557365644200116d6178467261 +6374696f6e4469676974734200106d6178496e74656765724469676974734900 +156d6178696d756d4672616374696f6e4469676974734900146d6178696d756d +496e74656765724469676974734200116d696e4672616374696f6e4469676974 +734200106d696e496e74656765724469676974734900156d696e696d756d4672 +616374696f6e4469676974734900146d696e696d756d496e7465676572446967 +6974735a00107061727365496e74656765724f6e6c7949001573657269616c56 +657273696f6e4f6e53747265616d787200106a6176612e746578742e466f726d +6174fbd8bc12e90f184302000078700103280000000300000028000100000000 +00000001000000000178757200135b4c6a6176612e6c616e672e537472696e67 +3badd256e7e91d7b470200007870000000067400034d6f6e7400035475657400 +0357656474000454687572740003467269740003536174757200025b443ea68c +14ab635a1e0200007870000000073ff000000000000040000000000000004008 +000000000000401000000000000040140000000000004018000000000000401c +000000000000 diff --git a/jdk/test/java/text/Format/ChoiceFormat/Bug4185732Test.java b/jdk/test/java/text/Format/ChoiceFormat/Bug4185732Test.java new file mode 100644 index 00000000000..06c5dea1f53 --- /dev/null +++ b/jdk/test/java/text/Format/ChoiceFormat/Bug4185732Test.java @@ -0,0 +1,117 @@ +/* + * Copyright (c) 1999, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4185732 + * @library /java/text/testlib + * @build Bug4185732Test IntlTest HexDumpReader + * @run main Bug4185732Test + * @summary test that ChoiceFormat invariants are preserved across serialization + */ +/* + * + * + * (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved + * + * Portions copyright (c) 2007 Sun Microsystems, Inc. + * All Rights Reserved. + * + * The original version of this source code and documentation + * is copyrighted and owned by Taligent, Inc., a wholly-owned + * subsidiary of IBM. These materials are provided under terms + * of a License Agreement between Taligent and Sun. This technology + * is protected by multiple US and International patents. + * + * This notice and attribution to Taligent may not be removed. + * Taligent is a registered trademark of Taligent, Inc. + * + * Permission to use, copy, modify, and distribute this software + * and its documentation for NON-COMMERCIAL purposes and without + * fee is hereby granted provided that this copyright notice + * appears in all copies. Please refer to the file "copyright.html" + * for further important copyright and licensing information. + * + * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF + * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR + * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. + */ + +import java.util.*; +import java.io.*; +import java.text.ChoiceFormat; + +/** + * A Locale can never contains language codes of he, yi or id. + */ +public class Bug4185732Test extends IntlTest { + public static void main(String[] args) throws Exception { + if (args.length == 1 && args[0].equals("prepTest")) { + prepTest(); + } else { + new Bug4185732Test().run(args); + } + } + + public void testIt() throws Exception { + try { + final ObjectInputStream in + = new ObjectInputStream(HexDumpReader.getStreamFromHexDump("Bug4185732.ser.txt")); + final ChoiceFormat loc = (ChoiceFormat)in.readObject(); + if (loc.getFormats().length != loc.getLimits().length) { + errln("ChoiceFormat did not properly check stream"); + } else { + //for some reason, the data file was VALID. This test + //requires a corrupt data file the format and limit + //arrays are of different length. + errln("Test data file was not properly created"); + } + } catch (InvalidObjectException e) { + //this is what we want to have happen + } catch (Exception e) { + errln(e.toString()); + } + } + + /** + * Create a data file for this test. The data file must be corrupted by hand. + */ + private static void prepTest() { + try { + ObjectOutputStream out = new ObjectOutputStream( + new FileOutputStream("Bug4185732.ser")); + final double[] limits = {1,2,3,4,5,6,7}; + final String[] formats = {"Sun","Mon","Tue","Wed","Thur","Fri","Sat"}; + final ChoiceFormat fmt = new ChoiceFormat(limits, formats); + out.writeObject(fmt); + out.close(); + System.out.println("You must invalidate the output file before running the test"); + System.out.println("by modifying the length of one of the array"); + } catch (Exception e) { + System.out.println(e); + } + } +} diff --git a/jdk/test/java/text/Format/ChoiceFormat/Bug4387255.java b/jdk/test/java/text/Format/ChoiceFormat/Bug4387255.java new file mode 100644 index 00000000000..d211bb6976e --- /dev/null +++ b/jdk/test/java/text/Format/ChoiceFormat/Bug4387255.java @@ -0,0 +1,69 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4387255 + * @summary Verifies that ChoiceFormat can handle large numbers of choices + */ + +import java.text.ChoiceFormat; + +public class Bug4387255 { + + private static final double[] doubles = { + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, + 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35}; + + private static final String[] strings = { + "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", + "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", + "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", + "U", "V", "W", "X", "Y", "Z"}; + + private static final String pattern = + "0#0|1#1|2#2|3#3|4#4|5#5|6#6|7#7|8#8|9#9" + + "|10#A|11#B|12#C|13#D|14#E|15#F|16#G|17#H|18#I|19#J" + + "|20#K|21#L|22#M|23#N|24#O|25#P|26#Q|27#R|28#S|29#T" + + "|30#U|31#V|32#W|33#X|34#Y|35#Z"; + + public static void main(String[] args) throws Exception { + ChoiceFormat choiceFormat1 = new ChoiceFormat(doubles, strings); + ChoiceFormat choiceFormat2 = new ChoiceFormat(pattern); + if (!choiceFormat1.equals(choiceFormat2)) { + System.out.println("choiceFormat1: " + choiceFormat1.toPattern()); + System.out.println("choiceFormat2: " + choiceFormat2.toPattern()); + throw new RuntimeException(); + } + + for (int i = 0; i < doubles.length; i++) { + String result = choiceFormat2.format(doubles[i]); + if (!result.equals(strings[i])) { + throw new RuntimeException("Wrong format result - expected " + + strings[i] + ", got " + result); + } + } + } +} diff --git a/jdk/test/java/text/Format/DateFormat/Bug4322313.java b/jdk/test/java/text/Format/DateFormat/Bug4322313.java new file mode 100644 index 00000000000..19987022664 --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/Bug4322313.java @@ -0,0 +1,364 @@ +/* + * Copyright (c) 2001, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4322313 4833268 6302990 6304305 + * @library /java/text/testlib + * @summary Make sure that new implementation for + * SimpleDateFormat.parse('z' or 'Z') and format('z' or 'Z') work correctly. + */ + +import java.io.*; +import java.text.*; +import java.util.*; + +public class Bug4322313 extends IntlTest { + + public void Test4322313() { + Locale savedLocale = Locale.getDefault(); + TimeZone savedTimeZone = TimeZone.getDefault(); + boolean err = false; + long mpm = 60 * 1000; /* Milliseconds per a minute */ + + Locale[] locs = {Locale.US, Locale.JAPAN, Locale.UK, new Locale("ar")}; + + String[] formats = { + "z", + "Z", + }; + + Object[][] valids = { + /* given ID offset format('z'), ('Z') index */ + {"GMT+03:04", new Long(-184 * mpm), "GMT+03:04", "+0304", new Integer(9)}, + {"GMT+13:42", new Long(-822 * mpm), "GMT+13:42", "+1342", new Integer(9)}, + {"GMT+00:00", new Long(0), "GMT+00:00", "+0000", new Integer(9)}, + {"GMT+1:11", new Long(-71 * mpm), "GMT+01:11", "+0111", new Integer(8)}, + {"GMT +13:42", new Long(0), "GMT", "+0000", new Integer(3)}, + {" GMT", new Long(0), "GMT", "+0000", new Integer(4)}, + {"+0304", new Long(-184 * mpm), "GMT+03:04", "+0304", new Integer(5)}, + {"+1342", new Long(-822 * mpm), "GMT+13:42", "+1342", new Integer(5)}, + {"+0000", new Long(0), "GMT+00:00", "+0000", new Integer(5)}, + {" +1342", new Long(-822 * mpm), "GMT+13:42", "+1342", new Integer(6)}, + /* ISO-LATIN-1 digits */ + {"GMT+\u0030\u0031:\u0032\u0033", new Long(-83 * mpm), "GMT+01:23", "+0123", new Integer(9)}, + + /* In fact, this test case is skipped because TimeZone class can't + * recognize TimeZone IDs like "+00234" or "-00234". + */ + {"+00234", new Long(-23 * mpm), "GMT+00:23", "+0023", new Integer(5)}, + + {"GMT-03:04", new Long(184 * mpm), "GMT-03:04", "-0304", new Integer(9)}, + {"GMT-13:42", new Long(822 * mpm), "GMT-13:42", "-1342", new Integer(9)}, + {"GMT-00:00", new Long(0), "GMT+00:00", "+0000", new Integer(9)}, + {"GMT-1:11", new Long(71 * mpm), "GMT-01:11", "-0111", new Integer(8)}, + {"GMT -13:42", new Long(0), "GMT", "+0000", new Integer(3)}, + {"-0304", new Long(184 * mpm), "GMT-03:04", "-0304", new Integer(5)}, + {"-1342", new Long(822 * mpm), "GMT-13:42", "-1342", new Integer(5)}, + {" -1342", new Long(822 * mpm), "GMT-13:42", "-1342", new Integer(6)}, + /* ISO-LATIN-1 digits */ + {"GMT-\u0030\u0031:\u0032\u0033", new Long(83 * mpm), "GMT-01:23", "-0123", new Integer(9)}, + /* In fact, this test case is skipped because TimeZone class can't + * recognize TimeZone IDs like "+00234" or "-00234". + */ + {"-00234", new Long(23 * mpm), "GMT+00:23", "-0023", new Integer(5)}, + }; + + Object[][] invalids = { + /* given ID error index */ + {"GMT+8", new Integer(5)}, + {"GMT+18", new Integer(6)}, + {"GMT+208", new Integer(6)}, + {"GMT+0304", new Integer(6)}, + {"GMT+42195", new Integer(5)}, + {"GMT+5:8", new Integer(7)}, + {"GMT+23:60", new Integer(8)}, + {"GMT+11:1", new Integer(8)}, + {"GMT+24:13", new Integer(5)}, + {"GMT+421:950", new Integer(5)}, + {"GMT+0a:0A", new Integer(5)}, + {"GMT+ 13:42", new Integer(4)}, + {"GMT+13 :42", new Integer(6)}, + {"GMT+13: 42", new Integer(7)}, + {"GMT+-13:42", new Integer(4)}, + {"G M T", new Integer(0)}, + {"+8", new Integer(2)}, + {"+18", new Integer(3)}, + {"+208", new Integer(4)}, + {"+2360", new Integer(4)}, + {"+2413", new Integer(2)}, + {"+42195", new Integer(2)}, + {"+0AbC", new Integer(2)}, + {"+ 1342", new Integer(1)}, + {"+-1342", new Integer(1)}, + {"1342", new Integer(0)}, + /* Arabic-Indic digits */ + {"GMT+\u0660\u0661:\u0662\u0663", new Integer(4)}, + /* Extended Arabic-Indic digits */ + {"GMT+\u06f0\u06f1:\u06f2\u06f3", new Integer(4)}, + /* Devanagari digits */ + {"GMT+\u0966\u0967:\u0968\u0969", new Integer(4)}, + /* Fullwidth digits */ + {"GMT+\uFF10\uFF11:\uFF12\uFF13", new Integer(4)}, + + {"GMT-8", new Integer(5)}, + {"GMT-18", new Integer(6)}, + {"GMT-208", new Integer(6)}, + {"GMT-0304", new Integer(6)}, + {"GMT-42195", new Integer(5)}, + {"GMT-5:8", new Integer(7)}, + {"GMT-23:60", new Integer(8)}, + {"GMT-11:1", new Integer(8)}, + {"GMT-24:13", new Integer(5)}, + {"GMT-421:950", new Integer(5)}, + {"GMT-0a:0A", new Integer(5)}, + {"GMT- 13:42", new Integer(4)}, + {"GMT-13 :42", new Integer(6)}, + {"GMT-13: 42", new Integer(7)}, + {"GMT-+13:42", new Integer(4)}, + {"-8", new Integer(2)}, + {"-18", new Integer(3)}, + {"-208", new Integer(4)}, + {"-2360", new Integer(4)}, + {"-2413", new Integer(2)}, + {"-42195", new Integer(2)}, + {"-0AbC", new Integer(2)}, + {"- 1342", new Integer(1)}, + {"--1342", new Integer(1)}, + {"-802", new Integer(2)}, + /* Arabic-Indic digits */ + {"GMT-\u0660\u0661:\u0662\u0663", new Integer(4)}, + /* Extended Arabic-Indic digits */ + {"GMT-\u06f0\u06f1:\u06f2\u06f3", new Integer(4)}, + /* Devanagari digits */ + {"GMT-\u0966\u0967:\u0968\u0969", new Integer(4)}, + /* Fullwidth digits */ + {"GMT-\uFF10\uFF11:\uFF12\uFF13", new Integer(4)}, + }; + + try { + for (int i=0; i < locs.length; i++) { + Locale.setDefault(locs[i]); + + for (int j=0; j < formats.length; j++) { + TimeZone.setDefault(TimeZone.getTimeZone("GMT")); + SimpleDateFormat sdf = new SimpleDateFormat(formats[j]); + Date date; + + /* Okay case */ + for (int k=0; k < valids.length; k++) { + ParsePosition pos = new ParsePosition(0); + try { + date = sdf.parse((String)valids[k][0], pos); + } + catch (Exception e) { + err = true; + System.err.println("\tParse Error [Locale=" + + Locale.getDefault() + ", " + formats[j] + + "/\"" + valids[k][0] + + "\"] Unexpected Exception occurred: " + e); + continue; + } + + int offset = pos.getIndex(); + if (offset != ((Integer)valids[k][4]).intValue()) { + err = true; + System.err.println("\tParse Error [Locale=" + + Locale.getDefault() + ", " + formats[j] + + "/\"" + valids[k][0] + + "\"] invalid index: expected:" + valids[k][4] + + ", got:" + offset); + } + + if (date.getTime() != ((Long)valids[k][1]).longValue()) { + err = true; + System.err.println("\tParse Error [Locale=" + + Locale.getDefault() + ", " + formats[j] + + "/\"" + valids[k][0] + + "\"] expected:" + valids[k][1] + + ", got:" + date.getTime() + ", " + date); + } else { +/* + logln("\tParse Okay [Locale=" + + Locale.getDefault() + ", " + formats[j] + + "/\"" + valids[k][0] + + "\"] expected:" + valids[k][1] + + ", got:" + date.getTime() + ", " + date); +*/ + + try { + date = sdf.parse((String)valids[k][0]); + } + catch (Exception e) { + err = true; + System.err.println("\tParse Error [Locale=" + + Locale.getDefault() + ", " + formats[j] + + "/\"" + valids[k][0] + + "\"] Unexpected Exception occurred: " + e); + continue; + } + + /* Since TimeZone.getTimeZone() don't treat + * "+00234" or "-00234" as a valid ID, skips. + */ + if (((String)valids[k][0]).length() == 6) { + continue; + } + + /* Since TimeZone.getTimeZone() don't recognize + * +hhmm/-hhmm format, add "GMT" as prefix. + */ + sdf.setTimeZone(TimeZone.getTimeZone( + (((((String)valids[k][0]).charAt(0) != 'G') ? + "GMT" : "") + valids[k][0]))); + StringBuffer s = new StringBuffer(); + sdf.format(date, s, new FieldPosition(0)); + sdf.setTimeZone(TimeZone.getTimeZone("GMT")); + + String got = s.toString(); + String expected = (String)valids[k][2+j]; + if (!got.equals(expected) && + // special case to allow the difference between + // DateFormatSymbols.getZoneStrings() and + // TimeZone.getDisplayName() for "GMT+-00:00" + !(got.equals("GMT-00:00") && + expected.equals("GMT+00:00"))) { + err = true; + System.err.println("\tFormat Error [Locale=" + + Locale.getDefault() + ", " + + formats[j] + "/\"" + valids[k][0] + + "\"] expected:" + valids[k][2+j] + + ", got:" + s + ", " + date); + } else { +/* + logln("\tFormat Okay [Locale=" + + Locale.getDefault() + ", " + + formats[j] + "/\"" + valids[k][0] + + "\"] expected:" + valids[k][2+j] + + ", got:" + s + ", " + date); +*/ + } + } + } + + /* Error case 1 + * using SimpleDateFormat.parse(String, ParsePosition) + */ + for (int k=0; k < invalids.length; k++) { + ParsePosition pos = new ParsePosition(0); + try { + date = sdf.parse((String)invalids[k][0], pos); + if (date != null) { + err = true; + System.err.println("\tParse Error [Locale=" + + Locale.getDefault() + ", " + formats[j] + + "/\"" + invalids[k][0] + + "\"] expected:null , got:" + date); + } + int offset = pos.getErrorIndex(); + if (offset != ((Integer)invalids[k][1]).intValue()) { + err = true; + System.err.println("\tParse Error [Locale=" + + Locale.getDefault() + ", " + formats[j] + + "/\"" + invalids[k][0] + + "\"] incorrect offset. expected:" + + invalids[k][1] + ", got: " + offset); + } else { +/* + logln("\tParse Okay [Locale=" + + Locale.getDefault() + ", " + formats[j] + + "/\"" + invalids[k][0] + + "\"] correct offset: " + offset); +*/ + } + } + catch (Exception e) { + err = true; + System.err.println("\tParse Error [Locale=" + + Locale.getDefault() + ", " + formats[j] + + "/\"" + invalids[k][0] + + "\"] Unexpected Exception occurred: " + e); + } + } + + /* Error case 2 + * using DateFormat.parse(String) + */ + boolean correctParseException = false; + for (int k=0; k < invalids.length; k++) { + try { + date = sdf.parse((String)invalids[k][0]); + } + catch (ParseException e) { + correctParseException = true; + int offset = e.getErrorOffset(); + if (offset != ((Integer)invalids[k][1]).intValue()) { + err = true; + System.err.println("\tParse Error [Locale=" + + Locale.getDefault() + ", " + formats[j] + + "/\"" + invalids[k][0] + + "\"] Expected exception occurred with an incorrect offset. expected:" + + invalids[k][1] + ", got: " + offset); + } else { +/* + logln("\tParse Okay [Locale=" + + Locale.getDefault() + ", " + formats[j] + + "/\"" + invalids[k][0] + + "\"] Expected exception occurred with an correct offset: " + + offset); +*/ + } + } + catch (Exception e) { + err = true; + System.err.println("\tParse Error [Locale=" + + Locale.getDefault() + ", " + formats[j] + + "/\"" + invalids[k][0] + + "\"] Invalid exception occurred: " + e); + } + finally { + if (!correctParseException) { + err = true; + System.err.println("\tParse Error: [Locale=" + + Locale.getDefault() + ", " + formats[j] + + "/\"" + invalids[k][0] + + "\"] Expected exception didn't occur."); + } + } + } + } + } + } + finally { + Locale.setDefault(savedLocale); + TimeZone.setDefault(savedTimeZone); + if (err) { + errln("SimpleDateFormat.parse()/format() test failed"); + } + } + } + + public static void main(String[] args) throws Exception { + new Bug4322313().run(args); + } +} diff --git a/jdk/test/java/text/Format/DateFormat/Bug4407042.java b/jdk/test/java/text/Format/DateFormat/Bug4407042.java new file mode 100644 index 00000000000..8cc557e5a97 --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/Bug4407042.java @@ -0,0 +1,132 @@ +/* + * Copyright (c) 2001, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4407042 + * @summary Make sure that cloned SimpleDateFormat objects work + * independently in multiple threads. + * @run main Bug4407042 10 + */ + +import java.io.*; +import java.text.*; +import java.util.*; + +// Usage: java Bug4407042 [duration] +public class Bug4407042 { + + static final String TIME_STRING = "2000/11/18 00:01:00"; + static final long UTC_LONG = 974534460000L; + static SimpleDateFormat masterFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss"); + static boolean runrun = true; + static int duration = 100; + + void test() { + Locale locale = Locale.getDefault(); + if (locale.equals(new Locale("th", "TH")) || + locale.equals(new Locale("hi", "IN"))) { + return; + } + + masterFormat.setTimeZone(TimeZone.getTimeZone("America/Los_Angeles")); + DateParseThread d1 = new DateParseThread(); + DateFormatThread d2 = new DateFormatThread(); + d1.start(); + d2.start(); + int n = Thread.activeCount(); + boolean failed = false; + + for (int i = 0; i < duration; i++) { + try { + Thread.sleep(1000); + if (Thread.activeCount() != n) { + failed = true; + break; + } + } catch (InterruptedException e) { + } + } + runrun = false; + try { + d1.join(); + d2.join(); + } catch (InterruptedException e) { + } + if (failed) { + throw new RuntimeException("Failed"); + } + } + + synchronized static SimpleDateFormat getFormatter() { + return (SimpleDateFormat) masterFormat.clone(); + } + + static class DateParseThread extends Thread { + public void run() { + SimpleDateFormat sdf = getFormatter(); + Calendar cal = null; + + try { + int i = 0; + while (runrun) { + Date date =sdf.parse(TIME_STRING); + long t = date.getTime(); + i++; + if (t != UTC_LONG) { + throw new RuntimeException("Parse Error: " + i + + " (" + sdf.format(date) + ") " + t + + " != " + UTC_LONG); + } + } + } catch (ParseException e) { + e.printStackTrace(); + throw new RuntimeException("Parse Error"); + } + } + } + + static class DateFormatThread extends Thread { + public void run () { + SimpleDateFormat sdf = getFormatter(); + Calendar cal = null; + + int i = 0; + while (runrun) { + i++; + String s = sdf.format(new Date(UTC_LONG)); + if (!s.equals(TIME_STRING)) { + throw new RuntimeException("Format Error: " + i + " " + + s + " != " + TIME_STRING); + } + } + } + } + + public static void main (String[] args) { + if (args.length == 1) { + duration = Math.max(10, Integer.parseInt(args[0])); + } + new Bug4407042().test(); + } +} diff --git a/jdk/test/java/text/Format/DateFormat/Bug4736959.java b/jdk/test/java/text/Format/DateFormat/Bug4736959.java new file mode 100644 index 00000000000..cdb9cad20b4 --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/Bug4736959.java @@ -0,0 +1,53 @@ +/* + * Copyright (c) 2002, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4736959 + * @summary Make sure to parse "PM" (only) and produce the correct value. + */ + +import java.text.*; +import java.util.*; + +public class Bug4736959 { + /** + * 4736959: JSpinner won't work for AM/PM field + */ + public static void main(String[] args) { + SimpleDateFormat f = new SimpleDateFormat("a", Locale.US); + + Date d1 = f.parse("AM", new ParsePosition(0)); + System.out.println("d1: " + d1); + if (d1.getHours() != 0) { + throw new RuntimeException("Parsing \"AM\": expected 0 (midnight), got " + + d1.getHours()); + } + Date d2 = f.parse("PM", new ParsePosition(0)); + System.out.println("d2: " + d2); + if (d2.getHours() != 12) { + throw new RuntimeException("Parsing \"PM\": expected 12 (noon), got " + + d2.getHours()); + } + } +} diff --git a/jdk/test/java/text/Format/DateFormat/Bug4845901.java b/jdk/test/java/text/Format/DateFormat/Bug4845901.java new file mode 100644 index 00000000000..8ed8bd47648 --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/Bug4845901.java @@ -0,0 +1,64 @@ +/* + * Copyright (c) 2004, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4845901 + * @summary Make sure that SimpleDateFormat.parse() can distinguish + * the same time zone abbreviation for standard and daylight saving + * time. + */ + +import java.util.*; +import java.text.SimpleDateFormat; + +public class Bug4845901 { + public static void main (String args[]) { + TimeZone savedTZ = TimeZone.getDefault(); + TimeZone.setDefault(TimeZone.getTimeZone("Australia/Sydney")); + SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd HH:mm:ss.SSS z"); + try { + testParse(sdf, "2003.01.13 11:10:00.802 AEDT", 11); + testParse(sdf, "2003.06.12 11:10:00.802 AEST", 11); + testParse(sdf, "2004.12.24 10:10:00.002 AEDT", 10); + testParse(sdf, "2004.08.10 10:10:00.002 AEST", 10); + } finally { + TimeZone.setDefault(savedTZ); + } + } + + static void testParse(SimpleDateFormat sdf, String str, int expectedHour) { + try { + Date parsedDate = sdf.parse(str); + if (parsedDate.getHours() != expectedHour) { + throw new RuntimeException( + "parsed date has wrong hour: " + parsedDate.getHours() + + ", expected: " + expectedHour + + "\ngiven string: " + str + + "\nparsedDate = " + parsedDate); + } + } catch (java.text.ParseException e) { + throw new RuntimeException("parse exception", e); + } + } +} diff --git a/jdk/test/java/text/Format/DateFormat/Bug6251817.java b/jdk/test/java/text/Format/DateFormat/Bug6251817.java new file mode 100644 index 00000000000..b0dd7fc9c2c --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/Bug6251817.java @@ -0,0 +1,45 @@ +/* + * Copyright (c) 2005, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 6251817 + * @summary Confirm that a typo was corrected. + */ + +import java.text.*; +import java.util.*; + +public class Bug6251817 { + + public static void main(String[] args) { + SimpleDateFormat sdf = new SimpleDateFormat("zzzz", Locale.US); + sdf.setTimeZone(TimeZone.getTimeZone("Australia/Lord_Howe")); + String got = sdf.format(new Date()); + + if (!got.equals("Lord Howe Standard Time") && + !got.equals("Lord Howe Daylight Time")) { + throw new RuntimeException("Timezone display name for Australia/Lord_Howe is incorrect. Got:" + got); + } + } +} diff --git a/jdk/test/java/text/Format/DateFormat/Bug6335238.java b/jdk/test/java/text/Format/DateFormat/Bug6335238.java new file mode 100644 index 00000000000..201a1af8f99 --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/Bug6335238.java @@ -0,0 +1,163 @@ +/* + * Copyright (c) 2006, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test 1.1 06/01/24 + * @bug 6335238 + * @summary Make sure that both the original and cloned SimpleDateFormat coexistindependently and don't cut off each other. + * @run main Bug6335238 10 + */ + +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.Date; +import java.util.Locale; +import java.util.TimeZone; + +// Usage: java Bug6335238 [duration] +public class Bug6335238 { + + static final long UTC_LONG = 974534460000L; + static final String TIME_STRING = "2000/11/18 00:01:00"; + static SimpleDateFormat masterSdf; + static int duration = 180; + static boolean stopped = false; + static boolean err = false; + + public static void main(String[] args) { + if (args.length == 1) { + duration = Math.max(10, Integer.parseInt(args[0])); + } + Locale savedLocale = Locale.getDefault(); + TimeZone savedTimeZone = TimeZone.getDefault(); + + TimeZone.setDefault(TimeZone.getTimeZone("US/Pacific")); + Locale.setDefault(Locale.US); + + masterSdf = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss"); + + try { + // Once it is used, DecimalFormat becomes not thread-safe. + Date d = masterSdf.parse(TIME_STRING); + + new Bug6335238(); + } catch (Exception e) { + System.err.println(e); + err = true; + } finally { + TimeZone.setDefault(savedTimeZone); + Locale.setDefault(savedLocale); + + if (err) { + throw new RuntimeException("Failed: Multiple DateFormat instances didn't work correctly."); + } else { + System.out.println("Passed."); + } + } + } + + public Bug6335238() { + stopped = false; + + DateParseThread d1 = new DateParseThread(); + DateFormatThread d2 = new DateFormatThread(); + DateParseThread d3 = new DateParseThread(); + DateFormatThread d4 = new DateFormatThread(); + + d1.start(); + d2.start(); + d3.start(); + d4.start(); + + try { + Thread.sleep(duration * 1000); + } + catch (Exception e) { + System.err.println(e); + err = true; + } + + stopped = true; + } + + class DateFormatThread extends Thread { + + public void run() { + int i = 0; + + while (!stopped) { + SimpleDateFormat sdf; + synchronized (masterSdf) { + sdf = (SimpleDateFormat)masterSdf.clone(); + } + + i++; + String s = sdf.format(new Date(UTC_LONG)); + + if (!s.equals(TIME_STRING)) { + stopped = true; + err = true; + + throw new RuntimeException("Formatting Date Error: counter=" + + i + ", Got<" + s + "> != Expected<" + TIME_STRING + ">"); + } + } + } + } + + class DateParseThread extends Thread { + + public void run() { + int i = 0; + + while (!stopped) { + SimpleDateFormat sdf; + synchronized (masterSdf) { + sdf = (SimpleDateFormat)masterSdf.clone(); + } + + i++; + Date date; + try { + date = sdf.parse(TIME_STRING); + long t = date.getTime(); + + if (t != UTC_LONG) { + stopped = true; + err = true; + + throw new RuntimeException("Parsing Date Error: counter=" + + i + " Got:" + t + "<" + sdf.format(date) + + "> != " + UTC_LONG); + } + } + catch (ParseException e) { + stopped = true; + err = true; + + throw new RuntimeException(e); + } + } + } + } +} diff --git a/jdk/test/java/text/Format/DateFormat/Bug6530336.java b/jdk/test/java/text/Format/DateFormat/Bug6530336.java new file mode 100644 index 00000000000..d01a96aba9e --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/Bug6530336.java @@ -0,0 +1,108 @@ +/* + * Copyright (c) 2007, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 6530336 6537997 8008577 + * @run main/othervm -Djava.locale.providers=COMPAT,SPI Bug6530336 + */ + +import java.text.SimpleDateFormat; +import java.util.Calendar; +import java.util.Date; +import java.util.Locale; +import java.util.TimeZone; + +public class Bug6530336 { + + public static void main(String[] args) throws Exception { + Locale defaultLocale = Locale.getDefault(); + TimeZone defaultTimeZone = TimeZone.getDefault(); + + boolean err = false; + + try { + Locale locales[] = Locale.getAvailableLocales(); + Locale locale_Japan = new Locale("ja", "JP", "JP"); + TimeZone timezone_LA = TimeZone.getTimeZone("America/Los_Angeles"); + TimeZone.setDefault(timezone_LA); + + TimeZone timezones[] = { + TimeZone.getTimeZone("America/New_York"), + TimeZone.getTimeZone("America/Denver"), + }; + + String[] expected = { + "Sun Jul 15 12:00:00 PDT 2007", + "Sun Jul 15 14:00:00 PDT 2007", + }; + + Date[] dates = new Date[2]; + + for (int i = 0; i < locales.length; i++) { + if (locales[i].getLanguage().equals("th") || + locales[i].equals(locale_Japan)) { + continue; + } + + Locale.setDefault(locales[i]); + + for (int j = 0; j < timezones.length; j++) { + Calendar cal = Calendar.getInstance(timezones[j]); + cal.set(2007, 6, 15, 15, 0, 0); + dates[j] = cal.getTime(); + } + + SimpleDateFormat sdf = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy"); + + for (int j = 0; j < timezones.length; j++) { + sdf.setTimeZone(timezones[j]); + String date = sdf.format(dates[j]); + sdf.setTimeZone(timezone_LA); + String date_LA = sdf.parse(date).toString(); + + if (!expected[j].equals(date_LA)) { + System.err.println("Got wrong Pacific time (" + + date_LA + ") for (" + date + ") in " + locales[i] + + " in " + timezones[j] + + ".\nExpected=" + expected[j]); + err = true; + } + } + } + } + catch (Exception e) { + e.printStackTrace(); + err = true; + } + finally { + Locale.setDefault(defaultLocale); + TimeZone.setDefault(defaultTimeZone); + + if (err) { + throw new RuntimeException("Failed."); + } + } + } + +} diff --git a/jdk/test/java/text/Format/DateFormat/Bug8072099.java b/jdk/test/java/text/Format/DateFormat/Bug8072099.java new file mode 100644 index 00000000000..293b5dec2d7 --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/Bug8072099.java @@ -0,0 +1,70 @@ +/* + * 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ +/* + * @test + * @bug 8072099 + * @summary check the date time pattern for which should + * not throw ParseException + */ + +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.Locale; + +public class Bug8072099 { + + private static String[][] shouldPass = { + {"ha", "11AM"}, + {"hma", "33AM"}, + {"ka", "24AM"}, + {"yyyMMM", "2016May"}, + {"yyyyDDEEE", "2016366Sat"}, + {"ddmyyyyz", "22111980GMT+5:30"} + }; + + public static void main(String[] args) { + + Locale defaultLocale = Locale.getDefault(); + try { + Locale.setDefault(Locale.US); + // check the date time pattern which should pass + for (String[] pattern : shouldPass) { + SimpleDateFormat dateTimeFormat = new SimpleDateFormat(pattern[0]); + parseDateTimeInput(dateTimeFormat, pattern[1]); + } + } finally { + Locale.setDefault(defaultLocale); + } + } + + private static void parseDateTimeInput(SimpleDateFormat format, + String inputString) { + try { + format.parse(inputString); + } catch (ParseException ex) { + throw new RuntimeException("[FAILED: Unable to parse date time" + + " string " + inputString + "]"); + } + } + +} diff --git a/jdk/test/java/text/Format/DateFormat/DateFormatRegression.java b/jdk/test/java/text/Format/DateFormat/DateFormatRegression.java new file mode 100644 index 00000000000..d276aac088b --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/DateFormatRegression.java @@ -0,0 +1,1098 @@ +/* + * Copyright (c) 1998, 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. + * + * 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. + */ + +import java.text.*; +import java.util.*; +import java.io.*; + +/** + * @test + * @bug 4029195 4052408 4056591 4059917 4060212 4061287 4065240 4071441 4073003 + * 4089106 4100302 4101483 4103340 4103341 4104136 4104522 4106807 4108407 + * 4134203 4138203 4148168 4151631 4151706 4153860 4162071 4182066 4209272 4210209 + * 4213086 4250359 4253490 4266432 4406615 4413980 8008577 + * @library /java/text/testlib + * @run main/othervm -Djava.locale.providers=COMPAT,SPI DateFormatRegression + */ +public class DateFormatRegression extends IntlTest { + + public static void main(String[] args) throws Exception { + new DateFormatRegression().run(args); + } + + public void Test4029195() { + + Date today = new Date(); + + logln("today: " + today); + + SimpleDateFormat sdf = (SimpleDateFormat)SimpleDateFormat.getDateInstance(); + logln("pattern: " + sdf.toPattern()); + logln("today: " + sdf.format(today)); + + sdf.applyPattern("G yyyy DDD"); + String todayS = sdf.format(today); + logln("today: " + todayS); + try { + today = sdf.parse(todayS); + logln("today date: " + today); + } catch(Exception e) { + logln("Error reparsing date: " + e.getMessage()); + } + + try { + String rt = sdf.format(sdf.parse(todayS)); + logln("round trip: " + rt); + if (!rt.equals(todayS)) errln("Fail: Want " + todayS + " Got " + rt); + } + catch (ParseException e) { + errln("Fail: " + e); + e.printStackTrace(); + } + } + + public void Test4052408() { + + DateFormat fmt = DateFormat.getDateTimeInstance(DateFormat.SHORT, + DateFormat.SHORT, Locale.US); + Date date = new Date(97, Calendar.MAY, 3, 8, 55); + String str; + logln(str = fmt.format(date)); + + if (!str.equals("5/3/97 8:55 AM")) + errln("Fail: Test broken; Want 5/3/97 8:55 AM Got " + str); + Hashtable expected = new Hashtable(); + expected.put(new Integer(DateFormat.MONTH_FIELD), "5"); + expected.put(new Integer(DateFormat.DATE_FIELD), "3"); + expected.put(new Integer(DateFormat.YEAR_FIELD), "97"); + expected.put(new Integer(DateFormat.HOUR1_FIELD), "8"); + expected.put(new Integer(DateFormat.MINUTE_FIELD), "55"); + expected.put(new Integer(DateFormat.AM_PM_FIELD), "AM"); + + StringBuffer buf = new StringBuffer(); + String fieldNames[] = { + "ERA_FIELD", + "YEAR_FIELD", + "MONTH_FIELD", + "DATE_FIELD", + "HOUR_OF_DAY1_FIELD", + "HOUR_OF_DAY0_FIELD", + "MINUTE_FIELD", + "SECOND_FIELD", + "MILLISECOND_FIELD", + "DAY_OF_WEEK_FIELD", + "DAY_OF_YEAR_FIELD", + "DAY_OF_WEEK_IN_MONTH_FIELD", + "WEEK_OF_YEAR_FIELD", + "WEEK_OF_MONTH_FIELD", + "AM_PM_FIELD", + "HOUR1_FIELD", + "HOUR0_FIELD", + "TIMEZONE_FIELD", + }; + boolean pass = true; + for (int i=0; i<=17; ++i) { + FieldPosition pos = new FieldPosition(i); + fmt.format(date, buf, pos); + char[] dst = new char[pos.getEndIndex() - pos.getBeginIndex()]; + buf.getChars(pos.getBeginIndex(), pos.getEndIndex(), dst, 0); + str = new String(dst); + log(i + ": " + fieldNames[i] + + ", \"" + str + "\", " + + pos.getBeginIndex() + ", " + + pos.getEndIndex()); + String exp = (String) expected.get(new Integer(i)); + if ((exp == null && str.length() == 0) || + str.equals(exp)) + logln(" ok"); + else { + logln(" expected " + exp); + pass = false; + } + } + if (!pass) errln("Fail: FieldPosition not set right by DateFormat"); + } + + /** + * Verify the function of the [s|g]et2DigitYearStart() API. + */ + public void Test4056591() { + try { + SimpleDateFormat fmt = new SimpleDateFormat("yyMMdd", Locale.US); + Date start = new Date(1809-1900, Calendar.DECEMBER, 25); + fmt.set2DigitYearStart(start); + if (!fmt.get2DigitYearStart().equals(start)) + errln("get2DigitYearStart broken"); + Object[] DATA = { + "091225", new Date(1809-1900, Calendar.DECEMBER, 25), + "091224", new Date(1909-1900, Calendar.DECEMBER, 24), + "091226", new Date(1809-1900, Calendar.DECEMBER, 26), + "611225", new Date(1861-1900, Calendar.DECEMBER, 25), + }; + for (int i=0; i " + got + "; exp " + exp); + if (!got.equals(exp)) errln("set2DigitYearStart broken"); + } + } + catch (ParseException e) { + errln("Fail: " + e); + e.printStackTrace(); + } + } + + public void Test4059917() { + if (Locale.getDefault().equals(new Locale("hi", "IN"))) { + return; + } + + SimpleDateFormat fmt; + String myDate; + + fmt = new SimpleDateFormat( "yyyy/MM/dd" ); + myDate = "1997/01/01"; + aux917( fmt, myDate ); + + fmt = new SimpleDateFormat( "yyyyMMdd" ); + myDate = "19970101"; + aux917( fmt, myDate ); + } + + void aux917( SimpleDateFormat fmt, String str ) { + try { + logln( "==================" ); + logln( "testIt: pattern=" + fmt.toPattern() + + " string=" + str ); + + Object o; + o = fmt.parseObject( str ); + logln( "Parsed object: " + o ); + + String formatted = fmt.format( o ); + logln( "Formatted string: " + formatted ); + if (!formatted.equals(str)) errln("Fail: Want " + str + " Got " + formatted); + } + catch (ParseException e) { + errln("Fail: " + e); + e.printStackTrace(); + } + } + + public void Test4060212() { + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + try { + String dateString = "1995-040.05:01:29"; + + logln( "dateString= " + dateString ); + logln("Using yyyy-DDD.hh:mm:ss"); + SimpleDateFormat formatter = new SimpleDateFormat("yyyy-DDD.hh:mm:ss"); + ParsePosition pos = new ParsePosition(0); + Date myDate = formatter.parse( dateString, pos ); + String myString = DateFormat.getDateTimeInstance( DateFormat.FULL, + DateFormat.LONG).format( myDate ); + logln( myString ); + Calendar cal = new GregorianCalendar(); + cal.setTime(myDate); + if (cal.get(Calendar.DAY_OF_YEAR) != 40) + errln("Fail: Got " + cal.get(Calendar.DAY_OF_YEAR) + + " Want 40"); + + logln("Using yyyy-ddd.hh:mm:ss"); + formatter = new SimpleDateFormat("yyyy-ddd.hh:mm:ss"); + pos = new ParsePosition(0); + myDate = formatter.parse( dateString, pos ); + myString = DateFormat.getDateTimeInstance( DateFormat.FULL, + DateFormat.LONG).format( myDate ); + logln( myString ); + cal.setTime(myDate); + if (cal.get(Calendar.DAY_OF_YEAR) != 40) + errln("Fail: Got " + cal.get(Calendar.DAY_OF_YEAR) + + " Want 40"); + } + finally { + Locale.setDefault(savedLocale); + } + } + + public void Test4061287() { + SimpleDateFormat df = new SimpleDateFormat("dd/MM/yyyy"); + try { + logln(df.parse("35/01/1971").toString()); + } + catch (ParseException e) { + errln("Fail: " + e); + e.printStackTrace(); + } + df.setLenient(false); + boolean ok = false; + try { + logln(df.parse("35/01/1971").toString()); + } catch (ParseException e) {ok=true;} + if (!ok) errln("Fail: Lenient not working"); + } + + public void Test4065240() { + Date curDate; + DateFormat shortdate, fulldate; + String strShortDate, strFullDate; + Locale saveLocale = Locale.getDefault(); + TimeZone saveZone = TimeZone.getDefault(); + try { + Locale curLocale = new Locale("de","DE"); + Locale.setDefault(curLocale); + TimeZone.setDefault(TimeZone.getTimeZone("EST")); + curDate = new Date(98, 0, 1); + shortdate = DateFormat.getDateInstance(DateFormat.SHORT); + fulldate = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG + ); + strShortDate = new String("The current date (short form) is " + shortdate. + format(curDate)); + strFullDate = new String("The current date (long form) is " + fulldate.format(curDate)); + + logln(strShortDate); + logln(strFullDate); + + // UPDATE THIS AS ZONE NAME RESOURCE FOR in de_DE is updated + if (!strFullDate.endsWith("EST") + && !strFullDate.endsWith("GMT-05:00")) { + errln("Fail: Want GMT-05:00"); + } + } + finally { + Locale.setDefault(saveLocale); + TimeZone.setDefault(saveZone); + } + } + + /* + DateFormat.equals is too narrowly defined. As a result, MessageFormat + does not work correctly. DateFormat.equals needs to be written so + that the Calendar sub-object is not compared using Calendar.equals, + but rather compared for equivalency. This may necessitate adding a + (package private) method to Calendar to test for equivalency. + + Currently this bug breaks MessageFormat.toPattern + */ + public void Test4071441() { + DateFormat fmtA = DateFormat.getInstance(); + DateFormat fmtB = DateFormat.getInstance(); + Calendar calA = fmtA.getCalendar(); + Calendar calB = fmtB.getCalendar(); + Date epoch = new Date(0); + Date xmas = new Date(61, Calendar.DECEMBER, 25); + calA.setTime(epoch); + calB.setTime(epoch); + if (!calA.equals(calB)) + errln("Fail: Can't complete test; Calendar instances unequal"); + if (!fmtA.equals(fmtB)) + errln("Fail: DateFormat unequal when Calendars equal"); + calB.setTime(xmas); + if (calA.equals(calB)) + errln("Fail: Can't complete test; Calendar instances equal"); + if (!fmtA.equals(fmtB)) + errln("Fail: DateFormat unequal when Calendars equivalent"); + logln("DateFormat.equals ok"); + } + + /* The java.text.DateFormat.parse(String) method expects for the + US locale a string formatted according to mm/dd/yy and parses it + correctly. + + When given a string mm/dd/yyyy it only parses up to the first + two y's, typically resulting in a date in the year 1919. + + Please extend the parsing method(s) to handle strings with + four-digit year values (probably also applicable to various + other locales. */ + public void Test4073003() { + try { + DateFormat fmt = DateFormat.getDateInstance(DateFormat.SHORT, Locale.US); + String[] tests = { "12/25/61", "12/25/1961", "4/3/2010", "4/3/10" }; + for (int i=0; i is incorrectly serialized/deserialized."); + } else { + logln("DateFormat instance which uses TimeZone <" + + IDs[i] + "> is correctly serialized/deserialized."); + } + } + if (!pass) { + errln("Fail: DateFormat serialization/equality bug"); + } + } + catch (IOException e) { + errln("Fail: " + e); + e.printStackTrace(); + } + catch (ClassNotFoundException e) { + errln("Fail: " + e); + e.printStackTrace(); + } + finally { + TimeZone.setDefault(savedTimeZone); + } + } + + public void Test4101483() { + SimpleDateFormat sdf = new SimpleDateFormat("z", Locale.US); + FieldPosition fp = new FieldPosition(DateFormat.TIMEZONE_FIELD); + Date d= new Date(9234567890L); + StringBuffer buf = new StringBuffer(""); + logln(sdf.format(d, buf, fp).toString()); + logln(d + " => " + buf); + logln("beginIndex = " + fp.getBeginIndex()); + logln("endIndex = " + fp.getEndIndex()); + if (fp.getBeginIndex() == fp.getEndIndex()) errln("Fail: Empty field"); + } + + /** + * Bug 4103340 + * Bug 4138203 + * This bug really only works in Locale.US, since that's what the locale + * used for Date.toString() is. Bug 4138203 reports that it fails on Korean + * NT; it would actually have failed on any non-US locale. Now it should + * work on all locales. + */ + public void Test4103340() { + // choose a date that is the FIRST of some month + // and some arbitrary time + Date d=new Date(97, 3, 1, 1, 1, 1); + SimpleDateFormat df=new SimpleDateFormat("MMMM", Locale.US); + + String s = d.toString(); + String s2 = df.format(d); + logln("Date="+s); + logln("DF="+s2); + if (s.indexOf(s2.substring(0,2)) == -1) + errln("Months should match"); + } + + public void Test4103341() { + TimeZone saveZone =TimeZone.getDefault(); + try { + TimeZone.setDefault(TimeZone.getTimeZone("CST")); + SimpleDateFormat simple = new SimpleDateFormat("MM/dd/yyyy HH:mm"); + if (!simple.getTimeZone().equals(TimeZone.getDefault())) + errln("Fail: SimpleDateFormat not using default zone"); + } + finally { + TimeZone.setDefault(saveZone); + } + } + + public void Test4104136() { + SimpleDateFormat sdf = new SimpleDateFormat(); + String pattern = "'time' hh:mm"; + sdf.applyPattern(pattern); + logln("pattern: \"" + pattern + "\""); + + Object[] DATA = { + "time 10:30", new ParsePosition(10), new Date(70, Calendar.JANUARY, 1, 10, 30), + "time 10:x", new ParsePosition(0), null, + "time 10x", new ParsePosition(0), null, + }; + for (int i=0; i \"" + + str + "\", exp \"" + OUT[i] + '"'); + } + } + + // Test parsing + fmt.applyPattern("s.S"); + String[] IN = { "1.4", "1.04", "1.004", "1.45", "1.456", + "1.4567", "1.45678" }; + int[] MS = { 4, 4, 4, 45, 456, 567, 678 }; + for (int i=0; i " + + ms + " ms, exp " + MS[i] + " ms"); + } + } + } + + /** + * SimpleDateFormat incorrect handling of 2 single quotes in format() + */ + public void Test4151631() { + String pattern = "'TO_DATE('''dd'-'MM'-'yyyy HH:mm:ss''' , ''DD-MM-YYYY HH:MI:SS'')'"; + logln("pattern=" + pattern); + SimpleDateFormat format = new SimpleDateFormat(pattern, Locale.US); + String result = format.format(new Date(1998-1900, Calendar.JUNE, 30, 13, 30, 0)); + if (!result.equals("TO_DATE('30-06-1998 13:30:00' , 'DD-MM-YYYY HH:MI:SS')")) { + errln("Fail: result=" + result); + } + else { + logln("Pass: result=" + result); + } + } + + /** + * 'z' at end of date format throws index exception in SimpleDateFormat + * CANNOT REPRODUCE THIS BUG ON 1.2FCS + */ + public void Test4151706() { + SimpleDateFormat fmt = + new SimpleDateFormat("EEEE, dd-MMM-yy HH:mm:ss z", Locale.US); + try { + Date d = fmt.parse("Thursday, 31-Dec-98 23:00:00 GMT"); + if (d.getTime() != Date.UTC(1998-1900, Calendar.DECEMBER, 31, 23, 0, 0)) + errln("Incorrect value: " + d); + } catch (Exception e) { + errln("Fail: " + e); + } + } + + /** + * SimpleDateFormat fails to parse redundant data. + * This is actually a bug down in GregorianCalendar, but it was reported + * as follows... + */ + public void Test4153860() throws ParseException { + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + try { + SimpleDateFormat sf = (SimpleDateFormat)DateFormat.getDateTimeInstance(); + // Set the pattern + sf.applyPattern("yyyy.MM-dd"); + // Try to create a Date for February 4th + Date d1 = sf.parse("1998.02-04"); + // Set the pattern, this time to use the W value + sf.applyPattern("yyyy.MM-dd W"); + // Try to create a Date for February 4th + Date d2 = sf.parse("1998.02-04 1"); + if (!d1.equals(d2)) { + errln("Parse failed, got " + d2 + + ", expected " + d1); + } + } + finally { + Locale.setDefault(savedLocale); + } + } + + /** + * Confirm that "EST"(GMT-5:00) and "CST"(GMT-6:00) are used in US + * as "EST" or "CST", not Australian "EST" and "CST". + */ + public void Test4406615() { + Locale savedLocale = Locale.getDefault(); + TimeZone savedTimeZone = TimeZone.getDefault(); + Locale.setDefault(Locale.US); + TimeZone.setDefault(TimeZone.getTimeZone("PST")); + + Date d1, d2; + String dt = "Mon, 1 Jan 2001 00:00:00"; + SimpleDateFormat sdf = + new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss z"); + + try { + d1 = sdf.parse(dt+" EST"); + d2 = sdf.parse(dt+" CST"); + + if (d1.getYear() != (2000-1900) || d1.getMonth() != 11 || + d1.getDate() != 31 || d1.getHours() != 21 || d1.getMinutes() != 0 || + d2.getYear() != (2000-1900) || d2.getMonth() != 11 || + d2.getDate() != 31 || d2.getHours() != 22 || d2.getMinutes() != 0) { + errln("Parse failed, d1 = " + d1 + ", d2 = " + d2); + } else { + logln("Parse passed"); + } + } + catch (Exception e) { + errln("Parse failed, got Exception " + e); + } + finally { + Locale.setDefault(savedLocale); + TimeZone.setDefault(savedTimeZone); + } + } + + /** + * Cannot reproduce this bug under 1.2 FCS -- it may be a convoluted duplicate + * of some other bug that has been fixed. + */ + public void Test4162071() { + String dateString = "Thu, 30-Jul-1999 11:51:14 GMT"; + String format = "EEE', 'dd-MMM-yyyy HH:mm:ss z"; // RFC 822/1123 + SimpleDateFormat df = new + SimpleDateFormat(format, Locale.US); + + try { + Date x = df.parse(dateString); + logln("Parse format \"" + format + "\" ok"); + logln(dateString + " -> " + df.format(x)); + } catch (Exception e) { + errln("Parse format \"" + format + "\" failed."); + } + } + + /** + * DateFormat shouldn't parse year "-1" as a two-digit year (e.g., "-1" -> 1999). + */ + public void Test4182066() { + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + try { + SimpleDateFormat fmt = new SimpleDateFormat("MM/dd/yy", + DateFormatSymbols.getInstance(Locale.US)); + SimpleDateFormat dispFmt = new SimpleDateFormat("MMM dd yyyy GG", + DateFormatSymbols.getInstance(Locale.US)); + /* We expect 2-digit year formats to put 2-digit years in the right + * window. Out of range years, that is, anything less than "00" or + * greater than "99", are treated as literal years. So "1/2/3456" + * becomes 3456 AD. Likewise, "1/2/-3" becomes -3 AD == 2 BC. + */ + Object[] DATA = { + "02/29/00", new Date(2000-1900, Calendar.FEBRUARY, 29), + "01/23/01", new Date(2001-1900, Calendar.JANUARY, 23), + "04/05/-1", new Date( -1-1900, Calendar.APRIL, 5), + "01/23/-9", new Date( -9-1900, Calendar.JANUARY, 23), + "11/12/1314", new Date(1314-1900, Calendar.NOVEMBER, 12), + "10/31/1", new Date( 1-1900, Calendar.OCTOBER, 31), + "09/12/+1", null, // "+1" isn't recognized by US NumberFormat + "09/12/001", new Date( 1-1900, Calendar.SEPTEMBER,12), + }; + StringBuffer out = new StringBuffer(); + boolean pass = true; + for (int i=0; i " + actStr + "\n"); + } else { + String expStr = expected != null + ? dispFmt.format(expected) : String.valueOf(expected); + out.append("FAIL: " + str + " => " + actStr + + ", expected " + expStr + "\n"); + pass = false; + } + } + if (pass) { + log(out.toString()); + } else { + err(out.toString()); + } + } + finally { + Locale.setDefault(savedLocale); + } + } + + /** + * Bug 4210209 + * Bug 4209272 + * DateFormat cannot parse Feb 29 2000 when setLenient(false) + */ + public void Test4210209() { + String pattern = "MMM d, yyyy"; + DateFormat fmt = new SimpleDateFormat(pattern, + DateFormatSymbols.getInstance(Locale.US)); + fmt.getCalendar().setLenient(false); + Date d = new Date(2000-1900, Calendar.FEBRUARY, 29); + String s = fmt.format(d); + logln(d + " x " + pattern + " => " + s); + ParsePosition pos = new ParsePosition(0); + d = fmt.parse(s, pos); + logln(d + " <= " + pattern + " x " + s); + logln("Parse pos = " + pos); + if (pos.getErrorIndex() != -1) { + errln("FAIL"); + } + + // The underlying bug is in GregorianCalendar. If the following lines + // succeed, the bug is fixed. If the bug isn't fixed, they will throw + // an exception. + GregorianCalendar cal = new GregorianCalendar(); + cal.clear(); + cal.setLenient(false); + cal.set(2000, Calendar.FEBRUARY, 29); // This should work! + logln(cal.getTime().toString()); + } + + /** + * DateFormat.getDateTimeInstance() allows illegal parameters. + */ + public void Test4213086() { + int[] DATA = { + // Style value, 0/1 for illegal/legal + -99, 0, + -1, 0, + 0, 1, + 1, 1, + 2, 1, + 3, 1, + 4, 0, + 99, 0, + }; + String[] DESC = { + "getDateTimeInstance(date)", + "getDateTimeInstance(time)", + "getDateInstance", + "getTimeInstance", + }; + String[] GOT = { + "disallowed", "allowed", "" + }; + for (int i=0; i \"" + s + '"'); + } else { + errln("FAIL: " + FORMAT_MS + " ms f* \"" + + FORMAT_PAT[i] + "\" -> \"" + s + "\", expect \"" + + FORMAT_TO[i] + '"'); + } + } + + // Test parsing. We want to make sure all digits are read. + fmt.applyPattern(PARSE_PAT); + for (int i=0; i " + ms + " ms"); + } else { + errln("FAIL: \"" + PARSE_STR[i] + "\" p* \"" + + PARSE_PAT + "\" -> " + ms + " ms, expect " + + PARSE_TO[i] + " ms"); + } + } + + // Test LONG parsing. We want to make sure all digits are read. + fmt.applyPattern(PARSE_LPAT); + for (int i=0; i " + ms + " ms"); + } else { + errln("FAIL: \"" + PARSE_STR[i] + "\" p* \"" + + PARSE_LPAT + "\" -> " + ms + " ms, expect " + + PARSE_TO[i] + " ms"); + } + } + } + + /** + * Bug in handling of time instance; introduces in fix for 4213086. + */ + public void Test4250359() { + DateFormat df = DateFormat.getTimeInstance(DateFormat.SHORT, + Locale.US); + Date d = new Date(1999-1900, Calendar.DECEMBER, 25, + 1, 2, 3); + String s = df.format(d); + // If the bug is present, we see "1:02 AM 1:02 AM". + // Look for more than one instance of "AM". + int i = s.indexOf("AM"); + int j = s.indexOf("AM", i+1); + if (i < 0 || j >= 0) { + errln("FAIL: getTimeInstance().format(d) => \"" + + s + "\""); + } + } + + /** + * Test whether SimpleDataFormat (DateFormatSymbols) can format/parse + * non-localized time zones. + */ + public void Test4261506() { + Locale savedLocale = Locale.getDefault(); + TimeZone savedTimeZone = TimeZone.getDefault(); + Locale.setDefault(Locale.JAPAN); + + // XXX: Test assumes "PST" is not TimeZoneNames_ja. Need to + // pick up another time zone when L10N is done to that file. + TimeZone.setDefault(TimeZone.getTimeZone("PST")); + SimpleDateFormat fmt = new SimpleDateFormat("yy/MM/dd hh:ss zzz", Locale.JAPAN); + String result = fmt.format(new Date(1999, 0, 1)); + logln("format()=>" + result); + if (!result.endsWith("PST")) { + errln("FAIL: SimpleDataFormat.format() did not retrun PST"); + } + + Date d = null; + try { + d = fmt.parse("99/1/1 10:10 PST"); + } catch (ParseException e) { + errln("FAIL: SimpleDataFormat.parse() could not parse PST"); + } + + result = fmt.format(d); + logln("roundtrip:" + result); + if (!result.equals("99/01/01 10:10 PST")) { + errln("FAIL: SimpleDataFomat timezone roundtrip failed"); + } + + Locale.setDefault(savedLocale); + TimeZone.setDefault(savedTimeZone); + } + +} + +//eof diff --git a/jdk/test/java/text/Format/DateFormat/DateFormatRoundTripTest.java b/jdk/test/java/text/Format/DateFormat/DateFormatRoundTripTest.java new file mode 100644 index 00000000000..73d023163f1 --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/DateFormatRoundTripTest.java @@ -0,0 +1,727 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @summary test Date Format (Round Trip) + * @bug 8008577 + * @library /java/text/testlib + * @run main/othervm -Djava.locale.providers=COMPAT,SPI DateFormatRoundTripTest + */ + +import java.text.*; +import java.util.*; + +public class DateFormatRoundTripTest extends IntlTest { + + static Random RANDOM = null; + + static final long FIXED_SEED = 3141592653589793238L; // Arbitrary fixed value + + // Useful for turning up subtle bugs: Use -infinite and run while at lunch. + boolean INFINITE = false; // Warning -- makes test run infinite loop!!! + + boolean random = false; + + // Options used to reproduce failures + Locale locale = null; + String pattern = null; + Date initialDate = null; + + Locale[] avail; + TimeZone defaultZone; + + // If SPARSENESS is > 0, we don't run each exhaustive possibility. + // There are 24 total possible tests per each locale. A SPARSENESS + // of 12 means we run half of them. A SPARSENESS of 23 means we run + // 1 of them. SPARSENESS _must_ be in the range 0..23. + static final int SPARSENESS = 18; + + static final int TRIALS = 4; + + static final int DEPTH = 5; + + static SimpleDateFormat refFormat = + new SimpleDateFormat("EEE MMM dd HH:mm:ss.SSS zzz yyyy G"); + + public DateFormatRoundTripTest(boolean rand, long seed, boolean infinite, + Date date, String pat, Locale loc) { + random = rand; + if (random) { + RANDOM = new Random(seed); + } + INFINITE = infinite; + + initialDate = date; + locale = loc; + pattern = pat; + } + + /** + * Parse a name like "fr_FR" into new Locale("fr", "FR", ""); + */ + static Locale createLocale(String name) { + String country = "", + variant = ""; + int i; + if ((i = name.indexOf('_')) >= 0) { + country = name.substring(i+1); + name = name.substring(0, i); + } + if ((i = country.indexOf('_')) >= 0) { + variant = country.substring(i+1); + country = country.substring(0, i); + } + return new Locale(name, country, variant); + } + + public static void main(String[] args) throws Exception { + // Command-line parameters + Locale loc = null; + boolean infinite = false; + boolean random = false; + long seed = FIXED_SEED; + String pat = null; + Date date = null; + + Vector newArgs = new Vector(); + for (int i=0; i] [-locale ] [-date ] [-INFINITE]"); + System.out.println(" [-random | -randomseed | -seed ]"); + System.out.println("* Warning: Some patterns will fail with some locales."); + System.out.println("* Do not use -pattern unless you know what you are doing!"); + System.out.println("When specifying a locale, use a format such as fr_FR."); + System.out.println("Use -pattern, -locale, and -date to reproduce a failure."); + System.out.println("-random Random with fixed seed (same data every run)."); + System.out.println("-randomseed Random with a random seed."); + System.out.println("-seed Random using as seed."); + super.usage(); + } + + static private class TestCase { + private int[] date; + TimeZone zone; + FormatFactory ff; + boolean timeOnly; + private Date _date; + + TestCase(int[] d, TimeZone z, FormatFactory f, boolean timeOnly) { + date = d; + zone = z; + ff = f; + this.timeOnly = timeOnly; + } + + TestCase(Date d, TimeZone z, FormatFactory f, boolean timeOnly) { + date = null; + _date = d; + zone = z; + ff = f; + this.timeOnly = timeOnly; + } + + /** + * Create a format for testing. + */ + DateFormat createFormat() { + return ff.createFormat(); + } + + /** + * Return the Date of this test case; must be called with the default + * zone set to this TestCase's zone. + */ + Date getDate() { + if (_date == null) { + // Date constructor will work right iff we are in the target zone + int h = 0; + int m = 0; + int s = 0; + if (date.length >= 4) { + h = date[3]; + if (date.length >= 5) { + m = date[4]; + if (date.length >= 6) { + s = date[5]; + } + } + } + _date = new Date(date[0] - 1900, date[1] - 1, date[2], + h, m, s); + } + return _date; + } + + public String toString() { + return String.valueOf(getDate().getTime()) + " " + + refFormat.format(getDate()) + " : " + ff.createFormat().format(getDate()); + } + }; + + private interface FormatFactory { + DateFormat createFormat(); + } + + TestCase[] TESTS = { + // Feb 29 2004 -- ordinary leap day + new TestCase(new int[] {2004, 2, 29}, null, + new FormatFactory() { public DateFormat createFormat() { + return DateFormat.getDateTimeInstance(DateFormat.LONG, + DateFormat.LONG); + }}, false), + + // Feb 29 2000 -- century leap day + new TestCase(new int[] {2000, 2, 29}, null, + new FormatFactory() { public DateFormat createFormat() { + return DateFormat.getDateTimeInstance(DateFormat.LONG, + DateFormat.LONG); + }}, false), + + // 0:00:00 Jan 1 1999 -- first second of normal year + new TestCase(new int[] {1999, 1, 1}, null, + new FormatFactory() { public DateFormat createFormat() { + return DateFormat.getDateTimeInstance(); + }}, false), + + // 23:59:59 Dec 31 1999 -- last second of normal year + new TestCase(new int[] {1999, 12, 31, 23, 59, 59}, null, + new FormatFactory() { public DateFormat createFormat() { + return DateFormat.getDateTimeInstance(); + }}, false), + + // 0:00:00 Jan 1 2004 -- first second of leap year + new TestCase(new int[] {2004, 1, 1}, null, + new FormatFactory() { public DateFormat createFormat() { + return DateFormat.getDateTimeInstance(); + }}, false), + + // 23:59:59 Dec 31 2004 -- last second of leap year + new TestCase(new int[] {2004, 12, 31, 23, 59, 59}, null, + new FormatFactory() { public DateFormat createFormat() { + return DateFormat.getDateTimeInstance(); + }}, false), + + // October 25, 1998 1:59:59 AM PDT -- just before DST cessation + new TestCase(new Date(909305999000L), TimeZone.getTimeZone("PST"), + new FormatFactory() { public DateFormat createFormat() { + return DateFormat.getDateTimeInstance(DateFormat.LONG, + DateFormat.LONG); + }}, false), + + // October 25, 1998 1:00:00 AM PST -- just after DST cessation + new TestCase(new Date(909306000000L), TimeZone.getTimeZone("PST"), + new FormatFactory() { public DateFormat createFormat() { + return DateFormat.getDateTimeInstance(DateFormat.LONG, + DateFormat.LONG); + }}, false), + + // April 4, 1999 1:59:59 AM PST -- just before DST onset + new TestCase(new int[] {1999, 4, 4, 1, 59, 59}, + TimeZone.getTimeZone("PST"), + new FormatFactory() { public DateFormat createFormat() { + return DateFormat.getDateTimeInstance(DateFormat.LONG, + DateFormat.LONG); + }}, false), + + // April 4, 1999 3:00:00 AM PDT -- just after DST onset + new TestCase(new Date(923220000000L), TimeZone.getTimeZone("PST"), + new FormatFactory() { public DateFormat createFormat() { + return DateFormat.getDateTimeInstance(DateFormat.LONG, + DateFormat.LONG); + }}, false), + + // October 4, 1582 11:59:59 PM PDT -- just before Gregorian change + new TestCase(new int[] {1582, 10, 4, 23, 59, 59}, null, + new FormatFactory() { public DateFormat createFormat() { + return DateFormat.getDateTimeInstance(DateFormat.LONG, + DateFormat.LONG); + }}, false), + + // October 15, 1582 12:00:00 AM PDT -- just after Gregorian change + new TestCase(new int[] {1582, 10, 15, 0, 0, 0}, null, + new FormatFactory() { public DateFormat createFormat() { + return DateFormat.getDateTimeInstance(DateFormat.LONG, + DateFormat.LONG); + }}, false), + }; + + public void TestDateFormatRoundTrip() { + avail = DateFormat.getAvailableLocales(); + logln("DateFormat available locales: " + avail.length); + logln("Default TimeZone: " + + (defaultZone = TimeZone.getDefault()).getID()); + + if (random || initialDate != null) { + if (RANDOM == null) { + // Need this for sparse coverage to reduce combinatorial explosion, + // even for non-random looped testing (i.e., with explicit date but + // not pattern or locale). + RANDOM = new Random(FIXED_SEED); + } + loopedTest(); + } else { + for (int i=0; i= 0 && random < 24 && TEST_TABLE[i]) { + TEST_TABLE[i] = false; + ++i; + } + } + } + + int itable = 0; + for (int style=DateFormat.FULL; style<=DateFormat.SHORT; ++style) { + if (TEST_TABLE[itable++]) + doTest(loc, DateFormat.getDateInstance(style, loc)); + } + + for (int style=DateFormat.FULL; style<=DateFormat.SHORT; ++style) { + if (TEST_TABLE[itable++]) + doTest(loc, DateFormat.getTimeInstance(style, loc), true); + } + + for (int dstyle=DateFormat.FULL; dstyle<=DateFormat.SHORT; ++dstyle) { + for (int tstyle=DateFormat.FULL; tstyle<=DateFormat.SHORT; ++tstyle) { + if (TEST_TABLE[itable++]) + doTest(loc, DateFormat.getDateTimeInstance(dstyle, tstyle, loc)); + } + } + } + + void doTest(Locale loc, DateFormat fmt) { doTest(loc, fmt, false); } + + void doTest(Locale loc, DateFormat fmt, boolean timeOnly) { + doTest(loc, fmt, timeOnly, initialDate != null ? initialDate : generateDate()); + } + + void doTest(Locale loc, DateFormat fmt, boolean timeOnly, Date date) { + // Skip testing with the JapaneseImperialCalendar which + // doesn't support the Gregorian year semantices with 'y'. + if (fmt.getCalendar().getClass().getName().equals("java.util.JapaneseImperialCalendar")) { + return; + } + + String pat = ((SimpleDateFormat)fmt).toPattern(); + String deqPat = dequotePattern(pat); // Remove quoted elements + + boolean hasEra = (deqPat.indexOf("G") != -1); + boolean hasZone = (deqPat.indexOf("z") != -1); + + Calendar cal = fmt.getCalendar(); + + // Because patterns contain incomplete data representing the Date, + // we must be careful of how we do the roundtrip. We start with + // a randomly generated Date because they're easier to generate. + // From this we get a string. The string is our real starting point, + // because this string should parse the same way all the time. Note + // that it will not necessarily parse back to the original date because + // of incompleteness in patterns. For example, a time-only pattern won't + // parse back to the same date. + + try { + for (int i=0; i 0) d[loop] = fmt.parse(s[loop-1]); + s[loop] = fmt.format(d[loop]); + + if (loop > 0) { + if (smatch == 0) { + boolean match = s[loop].equals(s[loop-1]); + if (smatch == 0) { + if (match) smatch = loop; + } + else if (!match) { + // This should never happen; if it does, fail. + smatch = -1; + error = "FAIL: String mismatch after match"; + } + } + + if (dmatch == 0) { + boolean match = d[loop].getTime() == d[loop-1].getTime(); + if (dmatch == 0) { + if (match) dmatch = loop; + } + else if (!match) { + // This should never happen; if it does, fail. + dmatch = -1; + error = "FAIL: Date mismatch after match"; + } + } + + if (smatch != 0 && dmatch != 0) break; + } + } + // At this point loop == DEPTH if we've failed, otherwise loop is the + // max(smatch, dmatch), that is, the index at which we have string and + // date matching. + + // Date usually matches in 2. Exceptions handled below. + int maxDmatch = 2; + int maxSmatch = 1; + if (dmatch > maxDmatch) { + // Time-only pattern with zone information and a starting date in PST. + if (timeOnly && hasZone && fmt.getTimeZone().inDaylightTime(d[0])) { + maxDmatch = 3; + maxSmatch = 2; + } + } + + // String usually matches in 1. Exceptions are checked for here. + if (smatch > maxSmatch) { // Don't compute unless necessary + // Starts in BC, with no era in pattern + if (!hasEra && getField(cal, d[0], Calendar.ERA) == GregorianCalendar.BC) + maxSmatch = 2; + // Starts in DST, no year in pattern + else if (fmt.getTimeZone().inDaylightTime(d[0]) && + deqPat.indexOf("yyyy") == -1) + maxSmatch = 2; + // Two digit year with zone and year change and zone in pattern + else if (hasZone && + fmt.getTimeZone().inDaylightTime(d[0]) != + fmt.getTimeZone().inDaylightTime(d[dmatch]) && + getField(cal, d[0], Calendar.YEAR) != + getField(cal, d[dmatch], Calendar.YEAR) && + deqPat.indexOf("y") != -1 && + deqPat.indexOf("yyyy") == -1) + maxSmatch = 2; + // Two digit year, year change, DST changeover hour. Example: + // FAIL: Pattern: dd/MM/yy HH:mm:ss + // Date matched in 2, wanted 2 + // String matched in 2, wanted 1 + // Thu Apr 02 02:35:52.110 PST 1795 AD F> 02/04/95 02:35:52 + // P> Sun Apr 02 01:35:52.000 PST 1995 AD F> 02/04/95 01:35:52 + // P> Sun Apr 02 01:35:52.000 PST 1995 AD F> 02/04/95 01:35:52 d== s== + // The problem is that the initial time is not a DST onset day, but + // then the year changes, and the resultant parsed time IS a DST + // onset day. The hour "2:XX" makes no sense if 2:00 is the DST + // onset, so DateFormat interprets it as 1:XX (arbitrary -- could + // also be 3:XX, same problem). This results in an extra iteration + // for String match convergence. + else if (!justBeforeOnset(cal, d[0]) && justBeforeOnset(cal, d[dmatch]) && + getField(cal, d[0], Calendar.YEAR) != + getField(cal, d[dmatch], Calendar.YEAR) && + deqPat.indexOf("y") != -1 && + deqPat.indexOf("yyyy") == -1) + maxSmatch = 2; + // Another spurious failure: + // FAIL: Pattern: dd MMMM yyyy hh:mm:ss + // Date matched in 2, wanted 2 + // String matched in 2, wanted 1 + // Sun Apr 05 14:28:38.410 PDT 3998 AD F> 05 April 3998 02:28:38 + // P> Sun Apr 05 01:28:38.000 PST 3998 AD F> 05 April 3998 01:28:38 + // P> Sun Apr 05 01:28:38.000 PST 3998 AD F> 05 April 3998 01:28:38 d== s== + // The problem here is that with an 'hh' pattern, hour from 1-12, + // a lack of AM/PM -- that is, no 'a' in pattern, and an initial + // time in the onset hour + 12:00. + else if (deqPat.indexOf('h') >= 0 + && deqPat.indexOf('a') < 0 + && justBeforeOnset(cal, new Date(d[0].getTime() - 12*60*60*1000L)) + && justBeforeOnset(cal, d[1])) + maxSmatch = 2; + } + + if (dmatch > maxDmatch || smatch > maxSmatch + || dmatch < 0 || smatch < 0) { + StringBuffer out = new StringBuffer(); + if (error != null) { + out.append(error + '\n'); + } + out.append("FAIL: Pattern: " + pat + ", Locale: " + loc + '\n'); + out.append(" Initial date (ms): " + d[0].getTime() + '\n'); + out.append(" Date matched in " + dmatch + + ", wanted " + maxDmatch + '\n'); + out.append(" String matched in " + smatch + + ", wanted " + maxSmatch); + + for (int j=0; j<=loop && j0?" P> ":" ") + refFormat.format(d[j]) + " F> " + + escape(s[j]) + + (j>0&&d[j].getTime()==d[j-1].getTime()?" d==":"") + + (j>0&&s[j].equals(s[j-1])?" s==":"")); + } + errln(escape(out.toString())); + } + } + } + catch (ParseException e) { + errln(e.toString()); + } + } + + /** + * Return a field of the given date + */ + static int getField(Calendar cal, Date d, int f) { + // Should be synchronized, but we're single threaded so it's ok + cal.setTime(d); + return cal.get(f); + } + + /** + * Return true if the given Date is in the 1 hour window BEFORE the + * change from STD to DST for the given Calendar. + */ + static final boolean justBeforeOnset(Calendar cal, Date d) { + return nearOnset(cal, d, false); + } + + /** + * Return true if the given Date is in the 1 hour window AFTER the + * change from STD to DST for the given Calendar. + */ + static final boolean justAfterOnset(Calendar cal, Date d) { + return nearOnset(cal, d, true); + } + + /** + * Return true if the given Date is in the 1 hour (or whatever the + * DST savings is) window before or after the onset of DST. + */ + static boolean nearOnset(Calendar cal, Date d, boolean after) { + cal.setTime(d); + if ((cal.get(Calendar.DST_OFFSET) == 0) == after) { + return false; + } + int delta; + try { + delta = ((SimpleTimeZone) cal.getTimeZone()).getDSTSavings(); + } catch (ClassCastException e) { + delta = 60*60*1000; // One hour as ms + } + cal.setTime(new Date(d.getTime() + (after ? -delta : delta))); + return (cal.get(Calendar.DST_OFFSET) == 0) == after; + } + + static String escape(String s) { + StringBuffer buf = new StringBuffer(); + for (int i=0; i 0) { + try (FileOutputStream fos = + new FileOutputStream("SDFserialized.ser")) { + ObjectOutputStream oStream = new ObjectOutputStream(fos); + oStream.writeObject(sdf); + } catch (Exception e) { + e.printStackTrace(); + } + } else { + try (InputStream is = + HexDumpReader.getStreamFromHexDump("SDFserialized.ser.txt")) { + ObjectInputStream iStream = new ObjectInputStream(is); + sdf1 = (SimpleDateFormat)iStream.readObject(); + } + + DateFormatSymbols dfs = sdf.getDateFormatSymbols(); + DateFormatSymbols dfs1 = sdf1.getDateFormatSymbols(); + System.out.println(sdf + "," + sdf.toPattern()); + System.out.println(sdf1 + "," + sdf1.toPattern()); + + // time zone display names should not be a part of this + // compatibility test. See 4112924 and 4282899. + dfs.setZoneStrings(dfs1.getZoneStrings()); + // localPatternChars should not be a part of this + // compatibility test. See 4322313. + dfs.setLocalPatternChars(dfs1.getLocalPatternChars()); + sdf.setDateFormatSymbols(dfs); + + // decimal format symbols should not be part of this + // compatibility test - old decimal format symbols get filled + // in with the root locale (4290801) + DecimalFormat df1 = (DecimalFormat) sdf1.getNumberFormat(); + df1.setDecimalFormatSymbols(df.getDecimalFormatSymbols()); + + if (!dfs.equals(dfs1)) { + err = true; + System.err.println( + "Error: serialized DateFormatSymbols is different"); + } + if (!sdf.equals(sdf1)) { + err = true; + System.err.println( + "Error: serialized SimpleDateFormat is different"); + } + if (err) { + throw new Exception("Serialization failed."); + } + } + } finally { + // restore the reserved locale + Locale.setDefault(reservedLocale); + } + } +} diff --git a/jdk/test/java/text/Format/DateFormat/DateFormatTest.java b/jdk/test/java/text/Format/DateFormat/DateFormatTest.java new file mode 100644 index 00000000000..c4f148f3d77 --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/DateFormatTest.java @@ -0,0 +1,1207 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4052223 4089987 4469904 4326988 4486735 8008577 8045998 8140571 + * @summary test DateFormat and SimpleDateFormat. + * @library /java/text/testlib + * @run main/othervm -Djava.locale.providers=COMPAT,SPI DateFormatTest + */ + +import java.util.*; +import java.text.*; +import static java.util.GregorianCalendar.*; + +public class DateFormatTest extends IntlTest +{ + public static void main(String[] args) throws Exception { + Locale reservedLocale = Locale.getDefault(); + try { + Locale.setDefault(Locale.US); + new DateFormatTest().run(args); + } finally { + // restore the reserved locale + Locale.setDefault(reservedLocale); + } + } + + // Test 4 digit year parsing with pattern "yy" + @SuppressWarnings("deprecation") + public void TestYearParsing() + { + String str = "7/Sep/2001"; + Date exp = new Date(2001-1900, SEPTEMBER, 7); + String pat = "d/MMM/yy"; + SimpleDateFormat sdf = new SimpleDateFormat(pat, Locale.US); + try { + Date d = sdf.parse(str); + logln(str + " parses with " + pat + " to " + d); + if (d.getTime() != exp.getTime()) { + errln("FAIL: Expected " + exp); + } + } + catch (ParseException e) { + errln(str + " parse fails with " + pat); + } + } + + // Test written by Wally Wedel and emailed to me. + public void TestWallyWedel() + { + /* + * Instantiate a TimeZone so we can get the ids. + */ + TimeZone tz = new SimpleTimeZone(7,""); + /* + * Computational variables. + */ + int offset, hours, minutes; + /* + * Instantiate a SimpleDateFormat set up to produce a full time + zone name. + */ + SimpleDateFormat sdf = new SimpleDateFormat("zzzz"); + /* + * A String array for the time zone ids. + */ + String[] ids = TimeZone.getAvailableIDs(); + /* + * How many ids do we have? + */ + logln("Time Zone IDs size: " + ids.length); + /* + * Column headings (sort of) + */ + logln("Ordinal ID offset(h:m) name"); + /* + * Loop through the tzs. + */ + Date today = new Date(); + Calendar cal = Calendar.getInstance(); + for (int i = 0; i < ids.length; i++) { + // logln(i + " " + ids[i]); + TimeZone ttz = TimeZone.getTimeZone(ids[i]); + // offset = ttz.getRawOffset(); + cal.setTimeZone(ttz); + cal.setTime(today); + offset = cal.get(Calendar.ZONE_OFFSET) + cal.get(Calendar.DST_OFFSET); + // logln(i + " " + ids[i] + " offset " + offset); + char sign = '+'; + if (offset < 0) { sign = '-'; offset = -offset; } + hours = offset/3600000; + minutes = (offset%3600000)/60000; + String dstOffset = "" + sign + (hours < 10 ? "0" : "") + + hours + ':' + (minutes < 10 ? "0" : "") + minutes; + /* + * Instantiate a date so we can display the time zone name. + */ + sdf.setTimeZone(ttz); + /* + * Format the output. + */ + StringBuffer tzS = new StringBuffer(); + sdf.format(today,tzS, new FieldPosition(0)); + String fmtOffset = tzS.toString(); + String fmtDstOffset = null; + if (fmtOffset.startsWith("GMT")) + { + fmtDstOffset = fmtOffset.substring(3); + } + /* + * Show our result. + */ + boolean ok = fmtDstOffset == null || fmtDstOffset.equals(dstOffset); + if (ok) + { + logln(i + " " + ids[i] + " " + dstOffset + + " " + fmtOffset + + (fmtDstOffset != null ? " ok" : " ?")); + } + else + { + errln(i + " " + ids[i] + " " + dstOffset + + " " + fmtOffset + " *** FAIL ***"); + } + } + } + + // Test equals + public void TestEquals() + { + DateFormat fmtA = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.FULL); + + DateFormat fmtB = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.FULL); + + if (!fmtA.equals(fmtB)) { + errln("FAIL"); + } + } + + // Check out some specific parsing problem + @SuppressWarnings("deprecation") + public void TestTwoDigitYearDSTParse() + { + SimpleDateFormat fullFmt = + new SimpleDateFormat("EEE MMM dd HH:mm:ss.SSS zzz yyyy G"); + + //DateFormat fmt = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.FULL, + // Locale.ENGLISH); + SimpleDateFormat fmt = new SimpleDateFormat("dd-MMM-yy h:mm:ss 'o''clock' a z", + Locale.ENGLISH); + //Date date = new Date(2004-1900, Calendar.APRIL, 3, 2, 20, 47); + //logln(fmt.format(date)); // This shows what the current locale format is + //logln(((SimpleDateFormat)fmt).toPattern()); + TimeZone save = TimeZone.getDefault(); + TimeZone PST = TimeZone.getTimeZone("PST"); + String s = "03-Apr-04 2:20:47 o'clock AM PST"; + int hour = 2; + try { + TimeZone.setDefault(PST); + Date d = fmt.parse(s); + logln(s + " P> " + fullFmt.format(d)); + if (d.getHours() != hour) { + errln("FAIL: Should parse to hour " + hour); + } + } + catch (ParseException e) { errln("FAIL: " + e.getMessage()); } + finally { + TimeZone.setDefault(save); + } + } + + static String escape(String s) + { + StringBuilder buf = new StringBuilder(); + for (int i=0; i> 12)); + buf.append(Integer.toHexString((c & 0x0F00) >> 8)); + buf.append(Integer.toHexString((c & 0x00F0) >> 4)); + buf.append(Integer.toHexString(c & 0x000F)); + } + } + return buf.toString(); + } + + // Test field position return values + static String fieldNames[] = { + "ERA_FIELD", "YEAR_FIELD", "MONTH_FIELD", + "WEEK_OF_YEAR_FIELD", "WEEK_OF_MONTH_FIELD", "DATE_FIELD", + "DAY_OF_YEAR_FIELD", "DAY_OF_WEEK_FIELD", "DAY_OF_WEEK_IN_MONTH_FIELD", + "AM_PM_FIELD", "HOUR0_FIELD", "HOUR1_FIELD", + "HOUR_OF_DAY0_FIELD", "HOUR_OF_DAY1_FIELD", + "MINUTE_FIELD", "SECOND_FIELD", + "MILLISECOND_FIELD", "TIMEZONE_FIELD", + }; + static int fieldIDs[] = { + DateFormat.ERA_FIELD, DateFormat.YEAR_FIELD, DateFormat.MONTH_FIELD, + DateFormat.WEEK_OF_YEAR_FIELD, DateFormat.WEEK_OF_MONTH_FIELD, DateFormat.DATE_FIELD, + DateFormat.DAY_OF_YEAR_FIELD, DateFormat.DAY_OF_WEEK_FIELD, DateFormat.DAY_OF_WEEK_IN_MONTH_FIELD, + DateFormat.AM_PM_FIELD, DateFormat.HOUR0_FIELD, DateFormat.HOUR1_FIELD, + DateFormat.HOUR_OF_DAY0_FIELD, DateFormat.HOUR_OF_DAY1_FIELD, + DateFormat.MINUTE_FIELD, DateFormat.SECOND_FIELD, + DateFormat.MILLISECOND_FIELD, DateFormat.TIMEZONE_FIELD, + }; + + /** + * Bug 4089987 + */ + public void TestFieldPosition() + { + DateFormat[] dateFormats = { + DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL, + Locale.US), + + DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL,Locale.FRANCE), + new SimpleDateFormat("G, y, M, d, k, H, m, s, S, E, D, F, w, W, a, h, K, z"), + new SimpleDateFormat("G, yy, M, d, k, H, m, s, S, E, D, F, w, W, a, h, K, z"), + new SimpleDateFormat( "GGGG, yyyy, MMMM, dddd, kkkk, HHHH, mmmm, ssss, " + + "SSSS, EEEE, DDDD, " + + "FFFF, wwww, WWWW, aaaa, hhhh, KKKK, zzzz") + }; + String[] expected = + { + "", "1997", "August", "", "", "13", "", "Wednesday", "", + "PM", "", "2", "", "", "34", "12", "", "PDT", + + "", "1997", "ao\u00FBt", "", "", "13", "", "mercredi", "", "", + "", "", "14", "", "34", "", "", "PDT" /*"GMT-07:00"*/, + + "AD", "1997", "8", "33", "3", "13", "225", "Wed", "2", "PM", + "2", "2", "14", "14", "34", "12", "513", "PDT", + + "AD", "97", "8", "33", "3", "13", "225", "Wed", "2", "PM", + "2", "2", "14", "14", "34", "12", "513", "PDT", + + "AD", "1997", "August", "0033", "0003", "0013", "0225", + "Wednesday", "0002", "PM", "0002", "0002", "0014", "0014", + "0034", "0012", "0513", "Pacific Daylight Time", + }; + Date someDate = new Date(871508052513L); + TimeZone PST = TimeZone.getTimeZone("PST"); + for (int j = 0, exp = 0; j < dateFormats.length; ++j) { + DateFormat df = dateFormats[j]; + if (!(df instanceof SimpleDateFormat)) { + continue; + } + df.setTimeZone(PST); + logln(" Pattern = " + ((SimpleDateFormat)df).toPattern()); + logln(" Result = " + df.format(someDate)); + for (int i = 0; i < fieldIDs.length; ++i) + { + String field = getFieldText(df, fieldIDs[i], someDate); + if (!field.equals(expected[exp])) { + errln("FAIL: field #" + i + " " + fieldNames[i] + " = \"" + + escape(field) + "\", expected \"" + escape(expected[exp]) + "\""); + } + ++exp; + } + } + } + // get the string value for the given field for the given date + static String getFieldText(DateFormat df, int field, Date date) + { + StringBuffer buffer = new StringBuffer(); + FieldPosition pos = new FieldPosition(field); + df.format(date, buffer, pos); + return buffer.toString().substring(pos.getBeginIndex(), + pos.getEndIndex()); + } + + // Test parsing of partial strings + @SuppressWarnings("deprecation") + public void TestPartialParse994() + { + SimpleDateFormat f = new SimpleDateFormat(); + Calendar cal = new GregorianCalendar(2014 - 80, JANUARY, 1); + f.set2DigitYearStart(cal.getTime()); + tryPat994(f, "yy/MM/dd HH:mm:ss", "97/01/17 10:11:42", new Date(97, 1-1, 17, 10, 11, 42)); + tryPat994(f, "yy/MM/dd HH:mm:ss", "97/01/17 10:", null); + tryPat994(f, "yy/MM/dd HH:mm:ss", "97/01/17 10", null); + tryPat994(f, "yy/MM/dd HH:mm:ss", "97/01/17 ", null); + tryPat994(f, "yy/MM/dd HH:mm:ss", "97/01/17", null); + } + + void tryPat994(SimpleDateFormat format, String pat, String str, Date expected) + { + logln("Pattern \"" + pat + "\" String \"" + str + "\""); + try { + format.applyPattern(pat); + Date date = format.parse(str); + String f = format.format(date); + logln(" parse(" + str + ") -> " + date.toString()); + logln(" format -> " + f); + if (expected == null || + !date.equals(expected)) { + errln("FAIL: Expected " + expected); + } + if (!f.equals(str)) { + errln("FAIL: Expected " + str); + } + } + catch(ParseException e) { + logln("ParseException: " + e.getMessage()); + if (expected != null) { + errln("FAIL: Expected " + expected); + } + } + catch(Exception e) { + errln("*** Exception:"); + e.printStackTrace(); + } + } + + // Test pattern with runs things together + public void TestRunTogetherPattern985() + { + String format = "yyyyMMddHHmmssSSS"; + String now, then; + + SimpleDateFormat formatter = new SimpleDateFormat(format); + + Date date1 = new Date(); + now = formatter.format(date1); + + logln(now); + + ParsePosition pos = new ParsePosition(0); + + Date date2 = formatter.parse(now, pos); + if (date2 == null) { + then = "Parse stopped at " + pos.getIndex(); + } else { + then = formatter.format(date2); + } + + logln(then); + + if (!date2.equals(date1)) { + errln("FAIL"); + } + } + + // Test patterns which run numbers together + @SuppressWarnings("deprecation") + public void TestRunTogetherPattern917() + { + SimpleDateFormat fmt; + String myDate; + + fmt = new SimpleDateFormat( "yyyy/MM/dd" ); + myDate = "1997/02/03"; + _testIt917( fmt, myDate, new Date(97, 2-1, 3) ); + + fmt = new SimpleDateFormat( "yyyyMMdd" ); + myDate = "19970304"; + _testIt917( fmt, myDate, new Date(97, 3-1, 4) ); + + } + void _testIt917( SimpleDateFormat fmt, String str, Date expected ) + { + logln( "pattern=" + fmt.toPattern() + " string=" + str ); + + Object o; + try { + o = fmt.parseObject( str ); + } catch( ParseException e ) { + e.printStackTrace(); + return; + } + logln( "Parsed object: " + o ); + if (!o.equals(expected)) { + errln("FAIL: Expected " + expected); + } + + String formatted = fmt.format( o ); + logln( "Formatted string: " + formatted ); + if (!formatted.equals(str)) { + errln("FAIL: Expected " + str); + } + } + + // Test Czech month formatting -- this can cause a problem because the June and + // July month names share a common prefix. + @SuppressWarnings("deprecation") + public void TestCzechMonths459() + { + // Use Czech, which has month names with shared prefixes for June and July + DateFormat fmt = DateFormat.getDateInstance(DateFormat.FULL, new Locale("cs", "", "")); + //((SimpleDateFormat)fmt).applyPattern("MMMM d yyyy"); + logln("Pattern " + ((SimpleDateFormat)fmt).toPattern()); + + Date june = new Date(97, Calendar.JUNE, 15); + Date july = new Date(97, Calendar.JULY, 15); + + String juneStr = fmt.format(june); + String julyStr = fmt.format(july); + + try { + logln("format(June 15 1997) = " + juneStr); + Date d = fmt.parse(juneStr); + String s = fmt.format(d); + int month = d.getMonth(); + logln(" -> parse -> " + s + " (month = " + month + ")"); + if (month != JUNE) { + errln("FAIL: Month should be June"); + } + + logln("format(July 15 1997) = " + julyStr); + d = fmt.parse(julyStr); + s = fmt.format(d); + month = d.getMonth(); + logln(" -> parse -> " + s + " (month = " + month + ")"); + if (month != JULY) { + errln("FAIL: Month should be July"); + } + } + catch (ParseException e) { + errln("Exception: " + e); + } + } + + // Test big D (day of year) versus little d (day of month) + @SuppressWarnings("deprecation") + public void TestLetterDPattern212() + { + String dateString = "1995-040.05:01:29"; + String bigD = "yyyy-DDD.hh:mm:ss"; + String littleD = "yyyy-ddd.hh:mm:ss"; + Date expLittleD = new Date(95, 0, 1, 5, 1, 29); + Date expBigD = new Date(expLittleD.getTime() + 39*24*3600000L); // 39 days + expLittleD = expBigD; // Expect the same, with default lenient parsing + logln( "dateString= " + dateString ); + SimpleDateFormat formatter = new SimpleDateFormat(bigD); + ParsePosition pos = new ParsePosition(0); + Date myDate = formatter.parse( dateString, pos ); + logln("Using " + bigD + " -> " + myDate); + if (myDate.getTime() != expBigD.getTime()) { + errln("FAIL: Expected " + expBigD + " got " + myDate); + } + + formatter = new SimpleDateFormat(littleD); + pos = new ParsePosition(0); + myDate = formatter.parse( dateString, pos ); + logln("Using " + littleD + " -> " + myDate); + if (myDate.getTime() != expLittleD.getTime()) { + errln("FAIL: Expected " + expLittleD + " got " + myDate); + } + } + + // Test the 'G' day of year pattern + @SuppressWarnings("deprecation") + public void TestDayOfYearPattern195() + { + Date today = new Date(); + Date expected = new Date(today.getYear(), today.getMonth(), today.getDate()); + + logln("Test Date: " + today); + + SimpleDateFormat sdf = + (SimpleDateFormat)SimpleDateFormat.getDateInstance(); + + tryPattern(sdf, today, null, expected); + tryPattern(sdf, today, "G yyyy DDD", expected); + } + + void tryPattern(SimpleDateFormat sdf, Date d, String pattern, Date expected) + { + if (pattern != null) { + sdf.applyPattern(pattern); + } + logln("pattern: " + sdf.toPattern()); + + String formatResult = sdf.format(d); + logln(" format -> " + formatResult); + try { + Date d2 = sdf.parse(formatResult); + logln(" parse(" + formatResult + ") -> " + d2); + if (d2.getTime() != expected.getTime()) { + errln("FAIL: Expected " + expected); + } + String format2 = sdf.format(d2); + logln(" format -> " + format2); + if (!formatResult.equals(format2)) { + errln("FAIL: Round trip drift"); + } + } + catch(Exception e) { + errln("Error: " + e.getMessage()); + } + } + + // Test a pattern with single quotes + @SuppressWarnings("deprecation") + public void TestQuotePattern161() + { + // This pattern used to end in " zzz" but that makes this test zone-dependent + SimpleDateFormat formatter = new SimpleDateFormat("MM/dd/yyyy 'at' hh:mm:ss a zzz"); + Date currentTime_1 = new Date(97, Calendar.AUGUST, 13, 10, 42, 28); + String dateString = formatter.format(currentTime_1); + String exp = "08/13/1997 at 10:42:28 AM "; + logln("format(" + currentTime_1 + ") = " + dateString); + if (!dateString.regionMatches(0, exp, 0, exp.length())) { + errln("FAIL: Expected " + exp); + } + } + + // Test the parsing of bad input strings + /** Demonstrates a number of bugs in DateFormat.parse(String) where + * either StringIndexOutOfBoundsException is thrown or null is + * returned instead of ParseException. To reproduce, run this program + * and notice all the "SHOULD NOT HAPPEN" errors. Note also that the + * 1 line that should be correct is off by 100 years. (In this day + * and age, no one would assume that 1/1/00 is Jan 1 1900.) + **/ + public void TestBadInput135() + { + int looks[] = { DateFormat.SHORT, DateFormat.MEDIUM, + DateFormat.LONG, DateFormat.FULL }; + String strings[] = { "Mar 15", "Mar 15 1997", "asdf", + "3/1/97 1:23:", "3/1/00 1:23:45 AM" }; + DateFormat full = DateFormat.getDateTimeInstance(DateFormat.LONG, + DateFormat.LONG); + String expected = "March 1, 2000 1:23:45 AM "; + for ( int i = 0; i < strings.length; ++i ){ + String text = strings[i]; + for ( int j = 0; j < looks.length; ++j ){ + int dateLook = looks[j]; + for ( int k = 0; k < looks.length; ++k ){ + int timeLook = looks[k]; + DateFormat df = DateFormat.getDateTimeInstance(dateLook, timeLook); + String prefix = text + ", " + dateLook + "/" + timeLook + ": "; + try { + Date when = df.parse(text); + if ( when == null ){ + errln(prefix + + "SHOULD NOT HAPPEN: parse returned null."); + continue; + } + String format = full.format(when); + logln(prefix + "OK: " + format); + // Only match the start -- not the zone, which could vary + if (!format.regionMatches(0, expected, 0, expected.length())) { + errln("FAIL: Expected " + expected); + } + } + catch ( ParseException e ){ + //errln(prefix + e); // This is expected. + } + catch ( StringIndexOutOfBoundsException e ){ + errln(prefix + "SHOULD NOT HAPPEN: " + e); + } + } + } + } + } + + final private static String parseFormats[] = + { + "MMMM d, yyyy", // january 1, 1970 or jan 1, 1970 + "MMMM d yyyy", // january 1 1970 or jan 1 1970 + "M/d/yy", // 1/1/70 + "d MMMM, yyyy", // 1 january, 1970 or 1 jan, 1970 + "d MMMM yyyy", // 1 january 1970 or 1 jan 1970 + "d MMMM", // 1 january or 1 jan + "MMMM d", // january 1 or jan 1 + "yyyy", // 1970 + "h:mm a MMMM d, yyyy" // Date and Time + }; + final private static String inputStrings[] = + { + "bogus string", null, null, null, null, null, null, null, null, null, + "April 1, 1997", "April 1, 1997", null, null, null, null, null, "April 1", null, null, + "Jan 1, 1970", "January 1, 1970", null, null, null, null, null, "January 1", null, null, + "Jan 1 2037", null, "January 1 2037", null, null, null, null, "January 1", null, null, + "1/1/70", null, null, "1/1/70", null, null, null, null, "0001", null, + "5 May 1997", null, null, null, null, "5 May 1997", "5 May", null, "0005", null, + "16 May", null, null, null, null, null, "16 May", null, "0016", null, + "April 30", null, null, null, null, null, null, "April 30", null, null, + "1998", null, null, null, null, null, null, null, "1998", null, + "1", null, null, null, null, null, null, null, "0001", null, // Bug620 + "3:00 pm Jan 1, 1997", null, null, null, null, null, null, null, "0003", "3:00 PM January 1, 1997", + }; + // More testing of the parsing of bad input + @SuppressWarnings("UnusedAssignment") + public void TestBadInput135a() + { + SimpleDateFormat dateParse = new SimpleDateFormat(); + String s; + Date date; + int PFLENGTH = parseFormats.length; + + dateParse.applyPattern("d MMMM, yyyy"); + dateParse.setTimeZone(TimeZone.getDefault()); + s = "not parseable"; + logln("Trying to parse \"" + s + "\" with " + dateParse.toPattern()); + try { + date = dateParse.parse(s); + errln("FAIL: Expected exception during parse"); + } catch (Exception ex) { + logln("Exception during parse: " + ex); // This is expected + } + + for (int i=0; i " + d.toString()); + if (d.getTime() != expected.getTime()) { + errln("FAIL: Expected " + expected); + } + } catch (ParseException e) { + errln("FAIL: Got exception"); + } + } + + // Test behavior of DateFormat with applied time zone + public void TestDateFormatZone061() + { + Date date; + DateFormat formatter; + + // 25-Mar-97 00:00:00 GMT + date = new Date( 859248000000L ); + logln( "Date 1997/3/25 00:00 GMT: " + date ); + formatter = new SimpleDateFormat("dd-MMM-yyyyy HH:mm", Locale.UK); + formatter.setTimeZone( TimeZone.getTimeZone( "GMT" ) ); + + String temp = formatter.format( date ); + logln( "Formatted in GMT to: " + temp ); + + /* Parse date string */ + try { + Date tempDate = formatter.parse( temp ); + logln( "Parsed to: " + tempDate ); + if (tempDate.getTime() != date.getTime()) { + errln("FAIL: Expected " + date); + } + } + catch( Throwable t ) { + errln( "Date Formatter throws: " + + t.toString() ); + } + } + + // Make sure DateFormat uses the correct zone. + public void TestDateFormatZone146() + { + TimeZone saveDefault = TimeZone.getDefault(); + + try { + TimeZone thedefault = TimeZone.getTimeZone("GMT"); + TimeZone.setDefault(thedefault); + // java.util.Locale.setDefault(new java.util.Locale("ar", "", "")); + + // check to be sure... its GMT all right + TimeZone testdefault = TimeZone.getDefault(); + String testtimezone = testdefault.getID(); + if (testtimezone.equals("GMT")) { + logln("Test timezone = " + testtimezone); + } else { + errln("Test timezone should be GMT, not " + testtimezone); + } + + // now try to use the default GMT time zone + GregorianCalendar greenwichcalendar = + new GregorianCalendar(1997, 3, 4, 23, 0); + //*****************************greenwichcalendar.setTimeZone(TimeZone.getDefault()); + //greenwichcalendar.set(1997, 3, 4, 23, 0); + // try anything to set hour to 23:00 !!! + greenwichcalendar.set(Calendar.HOUR_OF_DAY, 23); + // get time + Date greenwichdate = greenwichcalendar.getTime(); + // format every way + String[] DATA = { + "simple format: ", "04/04/97 23:00 GMT", + "MM/dd/yy HH:mm z", + "full format: ", "Friday, April 4, 1997 11:00:00 o'clock PM GMT", + "EEEE, MMMM d, yyyy h:mm:ss 'o''clock' a z", + "long format: ", "April 4, 1997 11:00:00 PM GMT", + "MMMM d, yyyy h:mm:ss a z", + "default format: ", "04-Apr-97 11:00:00 PM", + "dd-MMM-yy h:mm:ss a", + "short format: ", "4/4/97 11:00 PM", + "M/d/yy h:mm a", + }; + + for (int i=0; i4 y's produces just "2001" until 1.3.1. This + // was fixed in 1.4. + String expected = + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + + "\u6642\u9593:\u6642\u9593:\u6642\u9593:\u6642\u9593:\u6642\u9593:" + + "\u6642\u9593:\u6642\u9593:\u6642\u9593:\u6642\u9593:\u6642\u9593:" + + "\u6642\u9593:\u6642\u9593:\u6642\u9593:\u6642\u9593:\u6642\u9593:" + + "\u6642\u9593:\u6642\u9593:\u6642\u9593:\u6642\u9593:\u6642\u9593:" + + "\u6642\u9593:\u6642\u9593:\u6642\u9593:\u6642\u9593:\u6642\u9593:" + + "00000000000000000000000000000000000000000000000000" + + "00000000000000000000000000000000000000000000000000" + + "00000000000000000000000000000000000000000000000000" + + "00000000000000000000000000000000000000000000000000" + + "00000000000000000000000000000000000000000000000000" + + "00000000000000000000000000000000000000000000002001\u5e74"; + SimpleDateFormat sdf = new SimpleDateFormat(pat); + String s = sdf.format(new Date(2001-1900, Calendar.JANUARY, 1)); + if (!expected.equals(s)) { + errln("wrong format result: expected="+expected+", got="+s); + } + Date longday = sdf.parse(s); + GregorianCalendar cal = new GregorianCalendar(); + cal.setTime(longday); + if (cal.get(YEAR) != 2001) { + errln("wrong parse result: expected=2001, got=" + cal.get(YEAR)); + } + } catch (Exception e) { + throw e; + } finally { + // Restore the initial time zone + TimeZone.setDefault(initialTimeZone); + } + } +} diff --git a/jdk/test/java/text/Format/DateFormat/IntlTestDateFormat.java b/jdk/test/java/text/Format/DateFormat/IntlTestDateFormat.java new file mode 100644 index 00000000000..bc37d4f7fba --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/IntlTestDateFormat.java @@ -0,0 +1,273 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @summary test International Date Format + * @bug 8008577 + * @library /java/text/testlib + * @run main/othervm -Djava.locale.providers=COMPAT,SPI IntlTestDateFormat + * @key randomness + */ +/* +(C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved +(C) Copyright IBM Corp. 1996, 1997 - All Rights Reserved + + The original version of this source code and documentation is copyrighted and +owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are +provided under terms of a License Agreement between Taligent and Sun. This +technology is protected by multiple US and International patents. This notice and +attribution to Taligent may not be removed. + Taligent is a registered trademark of Taligent, Inc. +*/ + +import java.text.*; +import java.util.*; + +public class IntlTestDateFormat extends IntlTest { + // Values in milliseconds (== Date) + private static final long ONESECOND = 1000; + private static final long ONEMINUTE = 60 * ONESECOND; + private static final long ONEHOUR = 60 * ONEMINUTE; + private static final long ONEDAY = 24 * ONEHOUR; + private static final double ONEYEAR = 365.25 * ONEDAY; // Approximate + + // EModes + private static final byte GENERIC = 0; + private static final byte TIME = GENERIC + 1; + private static final byte DATE = TIME + 1; + private static final byte DATE_TIME = DATE + 1; + + private DateFormat fFormat = DateFormat.getInstance(); + private String fTestName = new String("getInstance"); + private int fLimit = 3; // How many iterations it should take to reach convergence + + public static void main(String[] args) throws Exception { + new IntlTestDateFormat().run(args); + } + + public void TestLocale() { + localeTest(Locale.getDefault(), "Default Locale"); + } + + // This test does round-trip testing (format -> parse -> format -> parse -> etc.) of DateFormat. + public void localeTest(final Locale locale, final String localeName) { + int timeStyle, dateStyle; + + // For patterns including only time information and a timezone, it may take + // up to three iterations, since the timezone may shift as the year number + // is determined. For other patterns, 2 iterations should suffice. + fLimit = 3; + + for(timeStyle = 0; timeStyle < 4; timeStyle++) { + fTestName = new String("Time test " + timeStyle + " (" + localeName + ")"); + try { + fFormat = DateFormat.getTimeInstance(timeStyle, locale); + } + catch(StringIndexOutOfBoundsException e) { + errln("FAIL: localeTest time getTimeInstance exception"); + throw e; + } + TestFormat(); + } + + fLimit = 2; + + for(dateStyle = 0; dateStyle < 4; dateStyle++) { + fTestName = new String("Date test " + dateStyle + " (" + localeName + ")"); + try { + fFormat = DateFormat.getDateInstance(dateStyle, locale); + } + catch(StringIndexOutOfBoundsException e) { + errln("FAIL: localeTest date getTimeInstance exception"); + throw e; + } + TestFormat(); + } + + for(dateStyle = 0; dateStyle < 4; dateStyle++) { + for(timeStyle = 0; timeStyle < 4; timeStyle++) { + fTestName = new String("DateTime test " + dateStyle + "/" + timeStyle + " (" + localeName + ")"); + try { + fFormat = DateFormat.getDateTimeInstance(dateStyle, timeStyle, locale); + } + catch(StringIndexOutOfBoundsException e) { + errln("FAIL: localeTest date/time getDateTimeInstance exception"); + throw e; + } + TestFormat(); + } + } + } + + public void TestFormat() { + if (fFormat == null) { + errln("FAIL: DateFormat creation failed"); + return; + } + // logln("TestFormat: " + fTestName); + Date now = new Date(); + tryDate(new Date(0)); + tryDate(new Date((long) 1278161801778.0)); + tryDate(now); + // Shift 6 months into the future, AT THE SAME TIME OF DAY. + // This will test the DST handling. + tryDate(new Date(now.getTime() + 6*30*ONEDAY)); + + Date limit = new Date(now.getTime() * 10); // Arbitrary limit + for (int i=0; i<2; ++i) + // tryDate(new Date(floor(randDouble() * limit))); + tryDate(new Date((long) (randDouble() * limit.getTime()))); + } + + private void describeTest() { + if (fFormat == null) { + errln("FAIL: no DateFormat"); + return; + } + + // Assume it's a SimpleDateFormat and get some info + SimpleDateFormat s = (SimpleDateFormat) fFormat; + logln(fTestName + " Pattern " + s.toPattern()); + } + + private void tryDate(Date theDate) { + final int DEPTH = 10; + Date[] date = new Date[DEPTH]; + StringBuffer[] string = new StringBuffer[DEPTH]; + + int dateMatch = 0; + int stringMatch = 0; + boolean dump = false; + int i; + for (i=0; i 0) { + if (dateMatch == 0 && date[i] == date[i-1]) dateMatch = i; + else if (dateMatch > 0 && date[i] != date[i-1]) { + describeTest(); + errln("********** FAIL: Date mismatch after match."); + dump = true; + break; + } + if (stringMatch == 0 && string[i] == string[i-1]) stringMatch = i; + else if (stringMatch > 0 && string[i] != string[i-1]) { + describeTest(); + errln("********** FAIL: String mismatch after match."); + dump = true; + break; + } + } + if (dateMatch > 0 && stringMatch > 0) break; + } + if (i == DEPTH) --i; + + if (stringMatch > fLimit || dateMatch > fLimit) { + describeTest(); + errln("********** FAIL: No string and/or date match within " + fLimit + " iterations."); + dump = true; + } + + if (dump) { + for (int k=0; k<=i; ++k) { + logln("" + k + ": " + date[k] + " F> " + string[k] + " P> "); + } + } + } + + // Return a random double from 0.01 to 1, inclusive + private double randDouble() { + // Assume 8-bit (or larger) rand values. Also assume + // that the system rand() function is very poor, which it always is. + // double d; + // int i; + // do { + // for (i=0; i < sizeof(double); ++i) + // { + // char poke = (char*)&d; + // poke[i] = (rand() & 0xFF); + // } + // } while (TPlatformUtilities.isNaN(d) || TPlatformUtilities.isInfinite(d)); + + // if (d < 0.0) d = -d; + // if (d > 0.0) + // { + // double e = floor(log10(d)); + // if (e < -2.0) d *= pow(10.0, -e-2); + // else if (e > -1.0) d /= pow(10.0, e+1); + // } + // return d; + Random rand = new Random(); + return rand.nextDouble(); + } + + public void TestAvailableLocales() { + final Locale[] locales = DateFormat.getAvailableLocales(); + long count = locales.length; + logln("" + count + " available locales"); + if (locales != null && count != 0) { + StringBuffer all = new StringBuffer(); + for (int i=0; i 0) { + throw new RuntimeException("FAILED: " + errors + " error(s)"); + } + } + + private static void test(Locale locale) { + Locale.setDefault(locale); + + // Tests with the Japanese imperial calendar + Locale calendarLocale = new Locale("ja", "JP", "JP"); + testRoundTrip(calendarLocale); + testRoundTripSimple(calendarLocale, + locale == Locale.ENGLISH ? JAPANESE_EN : JAPANESE_JA); + testParseExceptions(calendarLocale, + locale == Locale.ENGLISH ? EXCEPTION_JAPANESE_EN : EXCEPTION_JAPANESE_JA); + + // Tests with the Thai Buddhist calendar + calendarLocale = new Locale("th", "TH"); + testRoundTrip(calendarLocale); + testRoundTripSimple(calendarLocale, + locale == Locale.ENGLISH ? BUDDHIST_EN : BUDDHIST_JA); + } + + private static void testRoundTrip(Locale calendarLocale) { + DateFormat df = DateFormat.getDateTimeInstance(DateFormat.FULL, + DateFormat.FULL, + calendarLocale); + + long t = System.currentTimeMillis(); + t = (t / 1000) * 1000; // discard milliseconds + testRoundTrip(df, new Date(t)); + + // H1.8.9 + testRoundTrip(df, new Date(1989-1900, AUGUST, 9)); + + // H17.6.13 + testRoundTrip(df, new Date(2005-1900, JUNE, 13)); + } + + private static void testRoundTrip(DateFormat df, Date orig) { + try { + String s = df.format(orig); + Date parsed = df.parse(s); + if (!orig.equals(parsed)) { + error("testRoundTrip: bad date: origianl: '%s', parsed '%s'%n", orig, parsed); + } + } catch (Exception e) { + error("Unexpected exception: %s%n", e); + } + } + + private static void testRoundTripSimple(Locale calendarLocale, Object[][] data) { + try { + for (Object[] item : data) { + String pattern = (String) item[0]; + String str = (String) item[1]; + Date date = (Date) item[2]; + SimpleDateFormat sdf = new SimpleDateFormat(pattern); + Calendar cal = Calendar.getInstance(calendarLocale); + sdf.setCalendar(cal); + String s = sdf.format(date); + if (!s.equals(str)) { + error("testRoundTripSimple: Got '%s', expected '%s'%n", s, str); + } + Date d = sdf.parse(str); + if (!d.equals(date)) { + error("testRoundTripSimple: Got '%s', expected '%s'%n", d, date); + } + } + } catch (Exception e) { + error("Unexpected exception: %s%n", e); + } + } + + private static void testParseExceptions(Locale calendarLocale, Object[][] data) { + for (Object[] item : data) { + String pattern = (String) item[0]; + String str = (String) item[1]; + SimpleDateFormat sdf = new SimpleDateFormat(pattern); + Calendar cal = Calendar.getInstance(calendarLocale); + sdf.setCalendar(cal); + sdf.setLenient(false); + try { + Date d = sdf.parse(str); + error("testParseExceptions: parsing '%s' doesn't throw a ParseException.%n", str); + } catch (ParseException e) { + // OK + } + } + } + + private static void error(String msg) { + System.out.println(msg); + errors++; + } + + private static void error(String fmt, Object... args) { + System.out.printf(fmt, args); + errors++; + } +} diff --git a/jdk/test/java/text/Format/DateFormat/SDFserialized.ser.txt b/jdk/test/java/text/Format/DateFormat/SDFserialized.ser.txt new file mode 100644 index 00000000000..c0ddced4fab --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/SDFserialized.ser.txt @@ -0,0 +1,173 @@ +# +# Copyright (c) 1999, 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. +# +# 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. +# + +# Hex dump of a serialized DateFormatSymbols for +# DateFormatSymbolsSerializationTest. + +aced00057372001a6a6176612e746578742e53696d706c6544617465466f726d +61744243c9da9394359002000449001573657269616c56657273696f6e4f6e53 +747265616d4c001364656661756c7443656e7475727953746172747400104c6a +6176612f7574696c2f446174653b4c000a666f726d61744461746174001d4c6a +6176612f746578742f44617465466f726d617453796d626f6c733b4c00077061 +747465726e7400124c6a6176612f6c616e672f537472696e673b787200146a61 +76612e746578742e44617465466f726d6174642ca1e4c22615fc0200024c0008 +63616c656e6461727400144c6a6176612f7574696c2f43616c656e6461723b4c +000c6e756d626572466f726d61747400184c6a6176612f746578742f4e756d62 +6572466f726d61743b787200106a6176612e746578742e466f726d6174fbd8bc +12e90f184302000078707372001b6a6176612e7574696c2e477265676f726961 +6e43616c656e6461728f3dd7d6e5b0d0c10200014a0010677265676f7269616e +4375746f766572787200126a6176612e7574696c2e43616c656e646172e6ea4d +1ec8dc5b8e03000b5a000c6172654669656c647353657449000e666972737444 +61794f665765656b5a0009697354696d655365745a00076c656e69656e744900 +166d696e696d616c44617973496e46697273745765656b4900096e6578745374 +616d7049001573657269616c56657273696f6e4f6e53747265616d4a00047469 +6d655b00066669656c64737400025b495b000569735365747400025b5a4c0004 +7a6f6e657400144c6a6176612f7574696c2f54696d655a6f6e653b7870010000 +000101010000000100000002000000010000000000000000757200025b494dba +602676eab2a502000078700000001100000001000007b2000000000000000100 +0000010000000100000001000000050000000100000000000000000000000000 +00000000000000000000000000000000000000757200025b5a578f203914b85d +e20200007870000000110101010101010101010101010101010101737200186a +6176612e7574696c2e53696d706c6554696d655a6f6e65fa675d60d15ef5a603 +001049000a647374536176696e6773490006656e6444617949000c656e644461 +794f665765656b490007656e644d6f6465490008656e644d6f6e746849000765 +6e6454696d654900097261774f666673657449001573657269616c5665727369 +6f6e4f6e53747265616d490008737461727444617949000e7374617274446179 +4f665765656b49000973746172744d6f646549000a73746172744d6f6e746849 +0009737461727454696d654900097374617274596561725a000b757365446179 +6c696768745b000b6d6f6e74684c656e6774687400025b42787200126a617661 +2e7574696c2e54696d655a6f6e6531b3e9f57744aca10200014c000249447100 +7e00037870740003474d540036ee800000000000000000000000000000000000 +0000000000000000000001000000000000000000000000000000000000000000 +00000000757200025b42acf317f8060854e002000078700000000c1f1c1f1e1f +1e1f1f1e1f1e1f770800000004000000007878fffff4e2f964ac00737200176a +6176612e746578742e446563696d616c466f726d61740bff0362d872303a0200 +0b5a001b646563696d616c536570617261746f72416c7761797353686f776e42 +000c67726f7570696e6753697a654200116d696e4578706f6e656e7444696769 +747349000a6d756c7469706c69657249001573657269616c56657273696f6e4f +6e53747265616d5a00167573654578706f6e656e7469616c4e6f746174696f6e +4c000e6e6567617469766550726566697871007e00034c000e6e656761746976 +6553756666697871007e00034c000e706f73697469766550726566697871007e +00034c000e706f73697469766553756666697871007e00034c000773796d626f +6c737400204c6a6176612f746578742f446563696d616c466f726d617453796d +626f6c733b787200166a6176612e746578742e4e756d626572466f726d6174df +f6b3bf137d07e803000b5a000c67726f7570696e67557365644200116d617846 +72616374696f6e4469676974734200106d6178496e7465676572446967697473 +4900156d6178696d756d4672616374696f6e4469676974734900146d6178696d +756d496e74656765724469676974734200116d696e4672616374696f6e446967 +6974734200106d696e496e74656765724469676974734900156d696e696d756d +4672616374696f6e4469676974734900146d696e696d756d496e746567657244 +69676974735a00107061727365496e74656765724f6e6c794900157365726961 +6c56657273696f6e4f6e53747265616d7871007e000701032800000003000000 +2800010000000000000001000000000178010300000000010000000100740001 +2d74000071007e001f71007e001f7372001e6a6176612e746578742e44656369 +6d616c466f726d617453796d626f6c73501d17990868939c02000f4300106465 +63696d616c536570617261746f72430005646967697443000b6578706f6e656e +7469616c43001167726f7570696e67536570617261746f724300096d696e7573 +5369676e4300116d6f6e6574617279536570617261746f724300107061747465 +726e536570617261746f724300077065724d696c6c43000770657263656e7449 +001573657269616c56657273696f6e4f6e53747265616d4300097a65726f4469 +6769744c00034e614e71007e00034c000e63757272656e637953796d626f6c71 +007e00034c0008696e66696e69747971007e00034c0012696e746c4375727265 +6e637953796d626f6c71007e00037870002e00230045002c002d002e003b2030 +0025000000010030740003efbfbd740002c2a4740003e2889e74000358585800 +0000017372000e6a6176612e7574696c2e44617465686a81014b597419030000 +78707708fffffe8f24e5cdd7787372001b6a6176612e746578742e4461746546 +6f726d617453796d626f6c73ace671c9351717c20200085b0005616d706d7374 +00135b4c6a6176612f6c616e672f537472696e673b5b00046572617371007e00 +294c00116c6f63616c5061747465726e436861727371007e00035b00066d6f6e +74687371007e00295b000b73686f72744d6f6e74687371007e00295b000d7368 +6f72745765656b6461797371007e00295b00087765656b6461797371007e0029 +5b000b7a6f6e65537472696e67737400145b5b4c6a6176612f6c616e672f5374 +72696e673b7870757200135b4c6a6176612e6c616e672e537472696e673badd2 +56e7e91d7b47020000787000000002740002414d740002504d7571007e002c00 +0000027400024243740002414474001247794d646b486d735345444677576168 +4b7a7571007e002c0000000d7400074a616e7561727974000846656272756172 +797400054d61726368740005417072696c7400034d61797400044a756e657400 +044a756c7974000641756775737474000953657074656d6265727400074f6374 +6f6265727400084e6f76656d626572740008446563656d62657271007e001f75 +71007e002c0000000d7400034a616e7400034665627400034d61727400034170 +7271007e00397400034a756e7400034a756c7400034175677400035365707400 +034f63747400034e6f7674000344656371007e001f7571007e002c0000000871 +007e001f74000353756e7400034d6f6e74000354756574000357656474000354 +68757400034672697400035361747571007e002c0000000871007e001f740006 +53756e6461797400064d6f6e646179740007547565736461797400095765646e +6573646179740008546875727364617974000646726964617974000853617475 +72646179757200145b5b4c6a6176612e6c616e672e537472696e673b324d09ad +8432e45702000078700000001d7571007e002c00000005740003505354740015 +50616369666963205374616e646172642054696d6571007e0060740015506163 +69666963204461796c696768742054696d657400035044547571007e002c0000 +0005740013416d65726963612f4c6f735f416e67656c657371007e006171007e +006071007e006271007e00637571007e002c000000057400034d53547400164d +6f756e7461696e205374616e646172642054696d6571007e00677400164d6f75 +6e7461696e204461796c696768742054696d657400034d44547571007e002c00 +00000574000e416d65726963612f44656e76657271007e006871007e00677100 +7e006971007e006a7571007e002c00000005740003504e5471007e006871007e +006771007e006871007e00677571007e002c0000000574000f416d6572696361 +2f50686f656e697871007e006871007e006771007e006871007e00677571007e +002c0000000574000343535474001543656e7472616c205374616e6461726420 +54696d6571007e007274001543656e7472616c204461796c696768742054696d +657400034344547571007e002c0000000574000f416d65726963612f43686963 +61676f71007e007371007e007271007e007471007e00757571007e002c000000 +057400034553547400154561737465726e205374616e646172642054696d6571 +007e00797400154561737465726e204461796c696768742054696d6574000345 +44547571007e002c00000005740010416d65726963612f4e65775f596f726b71 +007e007a71007e007971007e007b71007e007c7571007e002c00000005740003 +49455471007e007a71007e007971007e007a71007e00797571007e002c000000 +05740014416d65726963612f496e6469616e61706f6c697371007e007a71007e +007971007e007a71007e00797571007e002c0000000574000348535474001448 +6177616969205374616e646172642054696d6571007e008471007e008571007e +00847571007e002c00000005740010506163696669632f486f6e6f6c756c7571 +007e008571007e008471007e008571007e00847571007e002c00000005740003 +415354740014416c61736b61205374616e646172642054696d65740004414b53 +54740014416c61736b61204461796c696768742054696d65740004414b445475 +71007e002c00000005740011416d65726963612f416e63686f7261676571007e +008a71007e008b71007e008c71007e008d7571007e002c0000000574000f416d +65726963612f48616c6966617874001641746c616e746963205374616e646172 +642054696d6571007e008974001641746c616e746963204461796c6967687420 +54696d657400034144547571007e002c00000005740003434e5474001a4e6577 +666f756e646c616e64205374616e646172642054696d657400034e535474001a +4e6577666f756e646c616e64204461796c696768742054696d657400034e4454 +7571007e002c00000005740010416d65726963612f53745f4a6f686e7371007e +009771007e009871007e009971007e009a7571007e002c000000057400034543 +5474001e43656e7472616c204575726f7065616e205374616e64617264205469 +6d6574000343455474001e43656e7472616c204575726f7065616e204461796c +696768742054696d65740004434553547571007e002c0000000574000c457572 +6f70652f506172697371007e009f71007e00a071007e00a171007e00a2757100 +7e002c0000000571007e0017740013477265656e77696368204d65616e205469 +6d6571007e001771007e00a671007e00177571007e002c000000057400114166 +726963612f43617361626c616e636171007e00a671007e001771007e00a67100 +7e00177571007e002c0000000574000e417369612f4a65727573616c656d7400 +1449737261656c205374616e646172642054696d657400034953547400144973 +7261656c204461796c696768742054696d657400034944547571007e002c0000 +00057400034a53547400134a6170616e205374616e646172642054696d657100 +7e00b071007e00b171007e00b07571007e002c0000000574000a417369612f54 +6f6b796f71007e00b171007e00b071007e00b171007e00b07571007e002c0000 +00057400104575726f70652f42756368617265737474001e4561737465726e20 +4575726f7065616e205374616e646172642054696d6574000345455474001e45 +61737465726e204575726f7065616e204461796c696768742054696d65740004 +454553547571007e002c000000057400034354547400134368696e6120537461 +6e646172642054696d6571007e007271007e00bc71007e00757571007e002c00 +00000574000d417369612f5368616e6768616971007e00bc71007e007271007e +00bc71007e0075740019797979792e4d4d2e646420452068682e6d6d2e737320 +7a7a7a0a diff --git a/jdk/test/java/text/Format/DateFormat/TimeZoneNameTest.java b/jdk/test/java/text/Format/DateFormat/TimeZoneNameTest.java new file mode 100644 index 00000000000..9975672c806 --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/TimeZoneNameTest.java @@ -0,0 +1,152 @@ +/* + * Copyright (c) 2000, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4348864 4112924 4425386 4495052 4836940 4851113 8008577 + * @summary test time zone display names in en_US locale + * @library /java/text/testlib + * @run main/othervm -Djava.locale.providers=COMPAT,SPI TimeZoneNameTest + */ + +import java.util.*; +import java.text.*; + +public class TimeZoneNameTest extends IntlTest +{ + static final String[] data = { + // Added to verify the fix for 4836940 + "N", "Antarctica/Rothera", "ROTT", "Rothera Time", "ROTT", "Rothera Time", + "N", "Asia/Tehran", "IRST", "Iran Standard Time", "IRDT", "Iran Daylight Time", + "N", "Iran", "IRST", "Iran Standard Time", "IRDT", "Iran Daylight Time", + + // Added to verify the fix for 4851113 + "N", "America/Rankin_Inlet", "CST", "Central Standard Time", "CDT", "Central Daylight Time", + "N", "Asia/Samarkand", "UZT", "Uzbekistan Time", "UZT", "Uzbekistan Time", + "N", "Asia/Tashkent", "UZT", "Uzbekistan Time", "UZT", "Uzbekistan Time", + "N", "Atlantic/Jan_Mayen", "CET", "Central European Time", "CEST", "Central European Summer Time", + "N", "Europe/Oslo", "CET", "Central European Time", "CEST", "Central European Summer Time", + + "N", "Pacific/Honolulu", "HST", "Hawaii Standard Time", "HST", "Hawaii Standard Time", + "N", "America/Los_Angeles", "PST", "Pacific Standard Time", "PDT", "Pacific Daylight Time", + "N", "US/Pacific", "PST", "Pacific Standard Time", "PDT", "Pacific Daylight Time", + "N", "America/Phoenix", "MST", "Mountain Standard Time", "MST", "Mountain Standard Time", + "N", "America/Denver", "MST", "Mountain Standard Time", "MDT", "Mountain Daylight Time", + "N", "America/Chicago", "CST", "Central Standard Time", "CDT", "Central Daylight Time", + "N", "America/Indianapolis", "EST", "Eastern Standard Time", "EST", "Eastern Standard Time", + "N", "America/Montreal", "EST", "Eastern Standard Time", "EDT", "Eastern Daylight Time", + "N", "America/Toronto", "EST", "Eastern Standard Time", "EDT", "Eastern Daylight Time", + "N", "America/New_York", "EST", "Eastern Standard Time", "EDT", "Eastern Daylight Time", + "S", "America/Manaus", "AMT", "Amazon Time", "AMT", "Amazon Time", + "S", "America/Campo_Grande", "AMT", "Amazon Time", "AMST", "Amazon Summer Time", + "S", "America/Bahia", "BRT", "Brasilia Time", "BRST", "Brasilia Summer Time", + "N", "America/Halifax", "AST", "Atlantic Standard Time", "ADT", "Atlantic Daylight Time", + "N", "GMT", "GMT", "Greenwich Mean Time", "GMT", "Greenwich Mean Time", + "N", "Europe/London", "GMT", "Greenwich Mean Time", "BST", "British Summer Time", + "N", "Europe/Paris", "CET", "Central European Time", "CEST", "Central European Summer Time", + "N", "WET", "WET", "Western European Time", "WEST", "Western European Summer Time", + "N", "Europe/Berlin", "CET", "Central European Time", "CEST", "Central European Summer Time", + "N", "Asia/Jerusalem", "IST", "Israel Standard Time", "IDT", "Israel Daylight Time", + "N", "Europe/Helsinki", "EET", "Eastern European Time", "EEST", "Eastern European Summer Time", + "N", "Africa/Cairo", "EET", "Eastern European Time", "EEST", "Eastern European Summer Time", + "N", "Europe/Moscow", "MSK", "Moscow Standard Time", "MSD", "Moscow Daylight Time", + "N", "Asia/Omsk", "OMST", "Omsk Time", "OMSST", "Omsk Summer Time", + "N", "Asia/Shanghai", "CST", "China Standard Time", "CST", "China Standard Time", + "N", "Asia/Tokyo", "JST", "Japan Standard Time", "JST", "Japan Standard Time", + "N", "Japan", "JST", "Japan Standard Time", "JST", "Japan Standard Time", + "N", "Asia/Seoul", "KST", "Korea Standard Time", "KST", "Korea Standard Time", + "N", "ROK", "KST", "Korea Standard Time", "KST", "Korea Standard Time", + "S", "Australia/Darwin", "ACST", "Australian Central Standard Time (Northern Territory)", + "ACST", "Australian Central Standard Time (Northern Territory)", + "S", "Australia/Adelaide", "ACST", "Australian Central Standard Time (South Australia)", + "ACDT", "Australian Central Daylight Time (South Australia)", + "S", "Australia/Broken_Hill", "ACST", "Australian Central Standard Time (South Australia/New South Wales)", + "ACDT", "Australian Central Daylight Time (South Australia/New South Wales)", + "S", "Australia/Hobart", "AEST", "Australian Eastern Standard Time (Tasmania)", + "AEDT", "Australian Eastern Daylight Time (Tasmania)", + "S", "Australia/Brisbane", "AEST", "Australian Eastern Standard Time (Queensland)", + "AEST", "Australian Eastern Standard Time (Queensland)", + "S", "Australia/Sydney", "AEST", "Australian Eastern Standard Time (New South Wales)", + "AEDT", "Australian Eastern Daylight Time (New South Wales)", + "N", "Pacific/Guam", "ChST", "Chamorro Standard Time", + "ChST", "Chamorro Standard Time", + "N", "Pacific/Saipan", "ChST", "Chamorro Standard Time", + "ChST", "Chamorro Standard Time", + }; + + public static void main(String[] args) throws Exception { + Locale reservedLocale = Locale.getDefault(); + try { + Locale.setDefault(Locale.US); + new TimeZoneNameTest().run(args); + } finally { + // restore the reserved locale + Locale.setDefault(reservedLocale); + } + } + + public void Test4112924() { + SimpleDateFormat lfmt = new SimpleDateFormat("zzzz"); + SimpleDateFormat sfmt = new SimpleDateFormat("z"); + + GregorianCalendar june = new GregorianCalendar(2000, Calendar.JUNE, 21); + GregorianCalendar december = new GregorianCalendar(2000, Calendar.DECEMBER, 21); + + int count = data.length; + for (int i = 0; i < count; i++) { + GregorianCalendar sol1, sol2; + + // check hemisphere + if ("N".equals(data[i++])) { + sol1 = december; + sol2 = june; + } else { + sol1 = june; + sol2 = december; + } + + TimeZone tz = TimeZone.getTimeZone(data[i++]); + lfmt.setTimeZone(tz); + sfmt.setTimeZone(tz); + + logln(tz.getID() + ": " + sfmt.format(sol1.getTime()) + ", " + lfmt.format(sol1.getTime())); + logln(tz.getID() + ": " + sfmt.format(sol2.getTime()) + ", " + lfmt.format(sol2.getTime())); + String s = sfmt.format(sol1.getTime()); + if (!data[i].equals(s)) { + errln(tz.getID() + ": wrong short name: \"" + s + "\" (expected \"" + data[i] + "\")"); + } + s = lfmt.format(sol1.getTime()); + if (!data[++i].equals(s)) { + errln(tz.getID() + ": wrong long name: \"" + s + "\" (expected \"" + data[i] + "\")"); + } + s = sfmt.format(sol2.getTime()); + if (!data[++i].equals(s)) { + errln(tz.getID() + ": wrong short name: \"" + s + "\" (expected \"" + data[i] + "\")"); + } + s = lfmt.format(sol2.getTime()); + if (!data[++i].equals(s)) { + errln(tz.getID() + ": wrong long name: \"" + s + "\" (expected \"" + data[i] + "\")"); + } + } + } +} diff --git a/jdk/test/java/text/Format/DateFormat/bug4097450.java b/jdk/test/java/text/Format/DateFormat/bug4097450.java new file mode 100644 index 00000000000..c70194bd877 --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/bug4097450.java @@ -0,0 +1,71 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * + * @bug 4097450 + */ + +import java.text.DateFormat; +import java.text.ParseException; +import java.text.SimpleDateFormat; + +public class bug4097450 +{ + public static void main(String args[]) + { + // + // Date parse requiring 4 digit year. + // + String[] dstring = {"97","1997", "97","1997","01","2001", "01","2001" + , "1", + "1","11", "11","111", "111"}; + String[] dformat = {"yy", "yy","yyyy","yyyy","yy", "yy","yyyy","yyyy" + , + "yy","yyyy","yy","yyyy", "yy","yyyy"}; + boolean[] dresult = {true, false, false, true,true, false, false, true + ,false, + false,true, false,false, false}; + SimpleDateFormat formatter; + SimpleDateFormat resultFormatter = new SimpleDateFormat("yyyy"); + + System.out.println("Format\tSource\tResult"); + System.out.println("-------\t-------\t-------"); + for (int i = 0; i < dstring.length; i++) + { + System.out.print(dformat[i] + "\t" + dstring[i] + "\t"); + formatter = new SimpleDateFormat(dformat[i]); + try { + System.out.print(resultFormatter.format(formatter.parse(dstring[ + i]))); + //if ( !dresult[i] ) System.out.print(" <-- error!"); + } + catch (ParseException exception) { + //if ( dresult[i] ) System.out.print(" <-- error!"); + System.out.print("exception --> " + exception); + } + System.out.println(); + } + } +} diff --git a/jdk/test/java/text/Format/DateFormat/bug4099975.java b/jdk/test/java/text/Format/DateFormat/bug4099975.java new file mode 100644 index 00000000000..812b4996c0f --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/bug4099975.java @@ -0,0 +1,41 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * + * @bug 4099975 + */ + +import java.text.*; +import java.util.Date; +public class bug4099975 { + public static void main (String args[]){ + DateFormatSymbols symbols = new DateFormatSymbols(); + SimpleDateFormat df = new SimpleDateFormat("E hh:mm", symbols); + System.out.println(df.toLocalizedPattern()); + symbols.setLocalPatternChars("abcdefghijklmonpqr"); // change value of field + System.out.println(df.toLocalizedPattern()); + + } +} diff --git a/jdk/test/java/text/Format/DateFormat/bug4117335.java b/jdk/test/java/text/Format/DateFormat/bug4117335.java new file mode 100644 index 00000000000..6c9af2a4716 --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/bug4117335.java @@ -0,0 +1,83 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * + * @bug 4117335 4432617 + */ + +import java.text.DateFormatSymbols ; +import java.util.Locale; + +public class bug4117335 { + + public static void main(String[] args) throws Exception + { + DateFormatSymbols symbols = new DateFormatSymbols(Locale.JAPAN); + String[] eras = symbols.getEras(); + System.out.println("BC = " + eras[0]); + if (!eras[0].equals(bc)) { + System.out.println("*** Should have been " + bc); + throw new Exception("Error in BC"); + } + System.out.println("AD = " + eras[1]); + if (!eras[1].equals(ad)) { + System.out.println("*** Should have been " + ad); + throw new Exception("Error in AD"); + } + String[][] zones = symbols.getZoneStrings(); + for (int i = 0; i < zones.length; i++) { + if (!"Asia/Tokyo".equals(zones[i][0])) { + continue; + } + System.out.println("Long zone name = " + zones[i][1]); + if (!zones[i][1].equals(jstLong)) { + System.out.println("*** Should have been " + jstLong); + throw new Exception("Error in long TZ name"); + } + System.out.println("Short zone name = " + zones[i][2]); + if (!zones[i][2].equals(jstShort)) { + System.out.println("*** Should have been " + jstShort); + throw new Exception("Error in short TZ name"); + } + System.out.println("Long zone name = " + zones[i][3]); + if (!zones[i][3].equals(jdtLong)) { + System.out.println("*** Should have been " + jdtLong); + throw new Exception("Error in long TZ name"); + } + System.out.println("SHORT zone name = " + zones[i][4]); + if (!zones[i][4].equals(jdtShort)) { + System.out.println("*** Should have been " + jdtShort); + throw new Exception("Error in short TZ name"); + } + } + } + + static final String bc = "\u7d00\u5143\u524d"; + static final String ad = "\u897f\u66a6"; + static final String jstLong = "\u65e5\u672c\u6a19\u6e96\u6642"; + static final String jstShort = "JST"; + static final String jdtLong = "\u65e5\u672c\u590f\u6642\u9593"; + static final String jdtShort = "JDT"; +} diff --git a/jdk/test/java/text/Format/DateFormat/bug4358730.java b/jdk/test/java/text/Format/DateFormat/bug4358730.java new file mode 100644 index 00000000000..dc448ecd767 --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/bug4358730.java @@ -0,0 +1,84 @@ +/* + * Copyright (c) 2000, 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. + * + * 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. + */ + +import java.io.*; +import java.util.*; +import java.text.*; + +/** + * @test + * @bug 4358730 + * @library /java/text/testlib + * @summary test that confirms Zero-Padding on year. + */ + +public class bug4358730 extends IntlTest { + + public static void main(String[] args) throws Exception { + new bug4358730().run(args); + } + + String[] patterns = {"y", "yy", "yyy", "yyyy", "yyyyy"}; + String[][] data = { + /* 2 A.D. */ {"2", "02", "002", "0002", "00002"}, + /* 20 A.D. */ {"20", "20", "020", "0020", "00020"}, + /* 200 A.D. */ {"200", "00", "200", "0200", "00200"}, + /* 2000 A.D. */ {"2000", "00", "2000", "2000", "02000"}, + }; + int[] year = {2, 20, 200, 2000}; + + SimpleDateFormat sdf = new SimpleDateFormat(); + int datasize = data.length; + int nPatterns = data[0].length; + + public void Test4358730() { + Locale locale = Locale.getDefault(); + if (locale.equals(new Locale("th", "TH")) || + locale.equals(new Locale("hi", "IN"))) { + return; + } + + TimeZone saveZone = TimeZone.getDefault(); + Locale saveLocale = Locale.getDefault(); + + try { + TimeZone.setDefault(TimeZone.getTimeZone("PST")); + Locale.setDefault(new Locale("en", "US")); + + for (int i = 0; i < datasize; i++) { + Date d = new Date(year[i]-1900, 10, 15); + for (int j = 0; j < nPatterns; j++) { + sdf.applyPattern(patterns[j]); + if (!data[i][j].equals(sdf.format(d))) { + errln("Invalid format : " + sdf.format(d) + + ", expected : " + data[i][j]); + } + } + } + } + finally { + TimeZone.setDefault(saveZone); + Locale.setDefault(saveLocale); + } + } +} diff --git a/jdk/test/java/text/Format/DateFormat/bug6271375.java b/jdk/test/java/text/Format/DateFormat/bug6271375.java new file mode 100644 index 00000000000..811470a01d8 --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/bug6271375.java @@ -0,0 +1,61 @@ +/* + * Copyright (c) 2005, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 6271375 7059546 + * @summary Make sure DateFormatSymbols serialization works + * correctly for 'zoneStrings' field + */ + +import java.util.*; +import java.text.*; +import java.io.*; + +public class bug6271375 { + + public static void main(String[] args) throws Exception { + DateFormatSymbols dfsSrc = DateFormatSymbols.getInstance(); + + try (FileOutputStream fos = new FileOutputStream("dfs.ser"); + ObjectOutputStream oStream = new ObjectOutputStream(fos)) { + oStream.writeObject(dfsSrc); + } catch (Exception e) { + throw new RuntimeException("An exception is thrown.", e); + } + + try (FileInputStream fis = new FileInputStream("dfs.ser"); + ObjectInputStream iStream = new ObjectInputStream(fis)) { + DateFormatSymbols dfsDest = (DateFormatSymbols)iStream.readObject(); + + String[][] zoneStringsSrc = dfsSrc.getZoneStrings(); + String[][] zoneStringsDest = dfsDest.getZoneStrings(); + + if (!Arrays.deepEquals(zoneStringsSrc, zoneStringsDest)) { + throw new RuntimeException("src and dest zone strings are not equal"); + } + } catch (Exception e) { + throw new RuntimeException("An exception is thrown.", e); + } + } +} diff --git a/jdk/test/java/text/Format/DateFormat/bug6317072.java b/jdk/test/java/text/Format/DateFormat/bug6317072.java new file mode 100644 index 00000000000..d5614223679 --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/bug6317072.java @@ -0,0 +1,81 @@ +/* + * Copyright (c) 2005, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 6317072 + * @summary Make sure NPE is thrown with "null" argumemnts in the + * SimpleDateFormat constructors. + */ + +import java.util.*; +import java.text.*; +import java.io.*; + +public class bug6317072 { + + public static void main(String[] args) { + + try { + new SimpleDateFormat("yy", (Locale)null); + throw new RuntimeException("should thrown a NullPointerException"); + } catch (NullPointerException e) { + } + + try { + new SimpleDateFormat((String)null, Locale.getDefault()); + throw new RuntimeException("should thrown a NullPointerException"); + } catch (NullPointerException e) { + } + + try { + new SimpleDateFormat("yy", (DateFormatSymbols)null); + throw new RuntimeException("should thrown a NullPointerException"); + } catch (NullPointerException e) { + } + + try { + new SimpleDateFormat((String)null, DateFormatSymbols.getInstance()); + throw new RuntimeException("should thrown a NullPointerException"); + } catch (NullPointerException e) { + } + + try { + DateFormat.getTimeInstance(DateFormat.FULL, null); + throw new RuntimeException("should thrown a NullPointerException"); + } catch (NullPointerException e) { + } + + try { + DateFormat.getDateInstance(DateFormat.FULL, null); + throw new RuntimeException("should thrown a NullPointerException"); + } catch (NullPointerException e) { + } + + try { + DateFormat.getDateTimeInstance(DateFormat.FULL, DateFormat.FULL, null); + throw new RuntimeException("should thrown a NullPointerException"); + } catch (NullPointerException e) { + } + } +} diff --git a/jdk/test/java/text/Format/DateFormat/bug6412896.java b/jdk/test/java/text/Format/DateFormat/bug6412896.java new file mode 100644 index 00000000000..b5422814ac6 --- /dev/null +++ b/jdk/test/java/text/Format/DateFormat/bug6412896.java @@ -0,0 +1,50 @@ +/* + * Copyright (c) 2006, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 6412896 + * @summary Make sure that an IllegalArgumentException is thrown + * if the length of any row in zoneStrings array is less than 5 + */ + +import java.text.*; + +public class bug6412896 { + + static final String[][] zoneOK = {{"America/Los_Angeles", "Pacific Standard Time", "PST", "Pacific Daylight Time", "PDT"}}; + static final String[][] zoneNG = {{"America/Los_Angeles", "Pacific Standard Time", "PST", "Pacific Daylight Time"}}; + + public static void main(String[] args) { + + DateFormatSymbols dfs = DateFormatSymbols.getInstance(); + + dfs.setZoneStrings(zoneOK); + + try { + dfs.setZoneStrings(zoneNG); + throw new RuntimeException("should throw an IllegalArgumentException"); + } catch (IllegalArgumentException e) { + } + } +} diff --git a/jdk/test/java/text/Format/MessageFormat/Bug4185816.ser.txt b/jdk/test/java/text/Format/MessageFormat/Bug4185816.ser.txt new file mode 100644 index 00000000000..1fb54165c49 --- /dev/null +++ b/jdk/test/java/text/Format/MessageFormat/Bug4185816.ser.txt @@ -0,0 +1,58 @@ +# +# Copyright (c) 1999, 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. +# +# 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. +# + +# Hex dump of a serialized MessageFormat for Bug4185816Test. + +aced0005737200176a6176612e746578742e4d657373616765466f726d617459 +ea973e12bd01a80200064900096d61784f66667365745b000f617267756d656e +744e756d626572737400025b495b0007666f726d6174737400135b4c6a617661 +2f746578742f466f726d61743b4c00066c6f63616c657400124c6a6176612f75 +74696c2f4c6f63616c653b5b00076f66667365747371007e00014c0007706174 +7465726e7400124c6a6176612f6c616e672f537472696e673b787200106a6176 +612e746578742e466f726d6174fbd8bc12e90f18430200007870000000017572 +00025b494dba602676eab2a502000078700000000a0000000100000000000000 +0000000000000000000000000000000000000000000000000000000000757200 +135b4c6a6176612e746578742e466f726d61743b5eacf7515deec1f802000078 +700000000a70737200166a6176612e746578742e43686f696365466f726d6174 +18e9c6bee365b6040200025b000d63686f696365466f726d6174737400135b4c +6a6176612f6c616e672f537472696e673b5b000c63686f6963654c696d697473 +7400025b44787200166a6176612e746578742e4e756d626572466f726d6174df +f6b3bf137d07e803000b5a000c67726f7570696e67557365644200116d617846 +72616374696f6e4469676974734200106d6178496e7465676572446967697473 +4900156d6178696d756d4672616374696f6e4469676974734900146d6178696d +756d496e74656765724469676974734200116d696e4672616374696f6e446967 +6974734200106d696e496e74656765724469676974734900156d696e696d756d +4672616374696f6e4469676974734900146d696e696d756d496e746567657244 +69676974735a00107061727365496e74656765724f6e6c794900157365726961 +6c56657273696f6e4f6e53747265616d7871007e000501032800000003000000 +2800010000000000000001000000000178757200135b4c6a6176612e6c616e67 +2e537472696e673badd256e7e91d7b470200007870000000037400086e6f2066 +696c65737400086f6e652066696c657400107b302c6e756d6265727d2066696c +6573757200025b443ea68c14ab635a1e02000078700000000300000000000000 +003ff000000000000040000000000000007070707070707070737200106a6176 +612e7574696c2e4c6f63616c657ef811609c30f9ec0300044900086861736863 +6f64654c0007636f756e74727971007e00044c00086c616e677561676571007e +00044c000776617269616e7471007e00047870ffffffff740002555374000265 +6e740000787571007e00070000000a0000000a00000015000000000000000000 +0000000000000000000000000000000000000000000000740016546865206469 +736b20222220636f6e7461696e73202e diff --git a/jdk/test/java/text/Format/MessageFormat/Bug4185816Corrupt.ser.txt b/jdk/test/java/text/Format/MessageFormat/Bug4185816Corrupt.ser.txt new file mode 100644 index 00000000000..459d257339d --- /dev/null +++ b/jdk/test/java/text/Format/MessageFormat/Bug4185816Corrupt.ser.txt @@ -0,0 +1,58 @@ +# +# Copyright (c) 1999, 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. +# +# 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. +# + +# Hex dump of a corrupted serialized MessageFormat for Bug4185732Test. + +aced0005737200176a6176612e746578742e4d657373616765466f726d617459 +ea973e12bd01a80200064900096d61784f66667365745b000f617267756d656e +744e756d626572737400025b495b0007666f726d6174737400135b4c6a617661 +2f746578742f466f726d61743b4c00066c6f63616c657400124c6a6176612f75 +74696c2f4c6f63616c653b5b00076f66667365747371007e00014c0007706174 +7465726e7400124c6a6176612f6c616e672f537472696e673b787200106a6176 +612e746578742e466f726d6174fbd8bc12e90f18430200007870000000017572 +00025b494dba602676eab2a502000078700000000a0000000100000000000000 +0000000000000000000000000000000000000000000000000000000000757200 +135b4c6a6176612e746578742e466f726d61743b5eacf7515deec1f802000078 +700000000a70737200166a6176612e746578742e43686f696365466f726d6174 +18e9c6bee365b6040200025b000d63686f696365466f726d6174737400135b4c +6a6176612f6c616e672f537472696e673b5b000c63686f6963654c696d697473 +7400025b44787200166a6176612e746578742e4e756d626572466f726d6174df +f6b3bf137d07e803000b5a000c67726f7570696e67557365644200116d617846 +72616374696f6e4469676974734200106d6178496e7465676572446967697473 +4900156d6178696d756d4672616374696f6e4469676974734900146d6178696d +756d496e74656765724469676974734200116d696e4672616374696f6e446967 +6974734200106d696e496e74656765724469676974734900156d696e696d756d +4672616374696f6e4469676974734900146d696e696d756d496e746567657244 +69676974735a00107061727365496e74656765724f6e6c794900157365726961 +6c56657273696f6e4f6e53747265616d7871007e000501032800000003000000 +2800010000000000000001000000000178757200135b4c6a6176612e6c616e67 +2e537472696e673badd256e7e91d7b470200007870000000037400086e6f2066 +696c65737400086f6e652066696c657400107b302c6e756d6265727d2066696c +6573757200025b443ea68c14ab635a1e02000078700000000300000000000000 +003ff000000000000040000000000000007070707070707070737200106a6176 +612e7574696c2e4c6f63616c657ef811609c30f9ec0300044900086861736863 +6f64654c0007636f756e74727971007e00044c00086c616e677561676571007e +00044c000776617269616e7471007e00047870ffffffff740002555374000265 +6e740000787571007e00070000000a0000000a00000015000000000000000000 +0000000000000000000000000000000000000000000000740010546865206469 +736b20222220636f6e74 diff --git a/jdk/test/java/text/Format/MessageFormat/Bug4185816Test.java b/jdk/test/java/text/Format/MessageFormat/Bug4185816Test.java new file mode 100644 index 00000000000..65609941f53 --- /dev/null +++ b/jdk/test/java/text/Format/MessageFormat/Bug4185816Test.java @@ -0,0 +1,135 @@ +/* + * Copyright (c) 1999, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4185816 + * @library /java/text/testlib + * @build Bug4185816Test IntlTest HexDumpReader + * @run main Bug4185816Test + * @summary test that MessageFormat invariants are preserved across serialization + */ +/* + * + * + * (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved + * + * Portions copyright (c) 2007 Sun Microsystems, Inc. + * All Rights Reserved. + * + * The original version of this source code and documentation + * is copyrighted and owned by Taligent, Inc., a wholly-owned + * subsidiary of IBM. These materials are provided under terms + * of a License Agreement between Taligent and Sun. This technology + * is protected by multiple US and International patents. + * + * This notice and attribution to Taligent may not be removed. + * Taligent is a registered trademark of Taligent, Inc. + * + * Permission to use, copy, modify, and distribute this software + * and its documentation for NON-COMMERCIAL purposes and without + * fee is hereby granted provided that this copyright notice + * appears in all copies. Please refer to the file "copyright.html" + * for further important copyright and licensing information. + * + * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF + * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR + * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. + */ + +import java.util.*; +import java.io.*; +import java.text.ChoiceFormat; +import java.text.MessageFormat; + +/** + * A Locale can never contains language codes of he, yi or id. + */ +public class Bug4185816Test extends IntlTest { + private static final String FILE_NAME = "Bug4185816.ser"; + private static final String CORRUPT_FILE_NAME = "Bug4185816Corrupt.ser"; + + public static void main(String[] args) throws Exception { + if (args.length == 1 && args[0].equals("prepTest")) { + prepTest(); + } else { + new Bug4185816Test().run(args); + } + } + + public void testIt() throws Exception { + Exception e = checkStreaming(FILE_NAME); + if (e != null) { + errln("MessageFormat did not stream in valid stream: "+e); + e.printStackTrace(); + } + e = checkStreaming(CORRUPT_FILE_NAME); + if (!(e instanceof InvalidObjectException)) { + errln("MessageFormat did NOT detect corrupt stream: "+e); + e.printStackTrace(); + } + } + + public Exception checkStreaming(final String fileName) { + try { + final InputStream is = HexDumpReader.getStreamFromHexDump(fileName + ".txt"); + final ObjectInputStream in = new ObjectInputStream(is); + final MessageFormat form = (MessageFormat)in.readObject(); + final Object[] testArgs = {new Long(12373), "MyDisk"}; + final String result = form.format(testArgs); + in.close(); + } catch (Exception e) { + return e; + } + return null; + } + + /** + * Create a data file for this test. The data file must be corrupted by hand. + */ + private static void prepTest() { + writeFormatToFile(FILE_NAME); + writeFormatToFile(CORRUPT_FILE_NAME); + } + + private static void writeFormatToFile(final String name) { + try { + ObjectOutputStream out = new ObjectOutputStream( + new FileOutputStream(name)); + + MessageFormat fmt = new MessageFormat("The disk \"{1}\" contains {0}."); + double[] filelimits = {0,1,2}; + String[] filepart = {"no files","one file","{0,number} files"}; + ChoiceFormat fileform = new ChoiceFormat(filelimits, filepart); + fmt.setFormat(1,fileform); // NOT zero, see below + + out.writeObject(fmt); + out.close(); + } catch (Exception e) { + System.out.println(e); + } + } +} diff --git a/jdk/test/java/text/Format/MessageFormat/Bug6481179.java b/jdk/test/java/text/Format/MessageFormat/Bug6481179.java new file mode 100644 index 00000000000..be8e9e29f11 --- /dev/null +++ b/jdk/test/java/text/Format/MessageFormat/Bug6481179.java @@ -0,0 +1,64 @@ +/* + * Copyright (c) 2011, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @summary Confirm that a bug in an error message has been fixed. + * @bug 6481179 + */ + +import java.text.MessageFormat; +import java.text.ParseException; + +public class Bug6481179 { + + public static void main(String[] args) { + boolean err = false; + + try { + MessageFormat.format("Testdata {1,invalid_format_type}", + new Object[] { "val0", "val1" }); + + System.err.println("Error: IllegalArgumentException should be thrown."); + err = true; + } + catch (IllegalArgumentException e) { + String expected = "unknown format type: invalid_format_type"; + String got = e.getMessage(); + + if (!expected.equals(got)) { + System.err.println("Error: Unexpected error message: " + got); + err = true; + } + } + catch (Exception e) { + System.err.println("Error: Unexpected exception was thrown: " + e); + err = true; + } + + if (err) { + throw new RuntimeException("Failed."); + } + } + +} diff --git a/jdk/test/java/text/Format/MessageFormat/LargeMessageFormat.java b/jdk/test/java/text/Format/MessageFormat/LargeMessageFormat.java new file mode 100644 index 00000000000..1a4ca1d092d --- /dev/null +++ b/jdk/test/java/text/Format/MessageFormat/LargeMessageFormat.java @@ -0,0 +1,121 @@ +/* + * Copyright (c) 2000, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4112090 8008577 + * @summary verify that MessageFormat can handle large numbers of arguments + * @run main/othervm -Djava.locale.providers=COMPAT,SPI LargeMessageFormat + */ + +import java.text.MessageFormat; +import java.text.ParseException; +import java.util.Date; +import java.util.Locale; +import java.util.TimeZone; + +public class LargeMessageFormat { + + public static void main(String[] args) throws ParseException { + Locale reservedLocale = Locale.getDefault(); + TimeZone reservedTimeZone = TimeZone.getDefault(); + try { + Locale.setDefault(Locale.GERMANY); + TimeZone.setDefault(TimeZone.getTimeZone("Europe/Berlin")); + testFormat(); + testParse(); + } finally { + // restore the reserved locale and time zone + Locale.setDefault(reservedLocale); + TimeZone.setDefault(reservedTimeZone); + } + } + + private static final int REPEATS = 89; + + private static void testFormat() { + // construct large argument array + Object[] sample = { + new Integer(0), // replace with running count below + "hello", + new Date(89, 10, 9), + new Integer(567890), + new Double(1234.50) + }; + int samples = sample.length; + Object[] arguments = new Object[REPEATS * (samples + 1)]; + for (int i = 0; i < REPEATS; i++) { + System.arraycopy(sample, 0, arguments, i * samples, samples); + arguments[i * samples] = new Integer(i); + } + + // construct large template + StringBuffer template = new StringBuffer(); + for (int i = 0; i < REPEATS; i++) { + template.append("section {" + (i * samples) + ", number} - "); + template.append("string: {" + (i * samples + 1) + "}; "); + template.append("date: {" + (i * samples + 2) + ", date}; "); + template.append("integer: {" + (i * samples + 3) + ", number}; "); + template.append("currency: {" + (i * samples + 4) + ", number, currency};\n"); + } + + // construct expected result string + StringBuffer expected = new StringBuffer(); + for (int i = 0; i < REPEATS; i++) { + expected.append("section " + i + " - "); + expected.append("string: hello; "); + expected.append("date: 09.11.1989; "); + expected.append("integer: 567.890; "); + expected.append("currency: 1.234,50 \u20AC;\n"); + } + + // create message format + MessageFormat format = new MessageFormat(template.toString()); + String result = format.format(arguments); + if (!result.equals(expected.toString())) { + System.out.println("Template:"); + System.out.println(template); + System.out.println("Expected result: "); + System.out.println(expected); + System.out.println("Actual result: "); + System.out.println(result); + throw new RuntimeException(); + } + } + + private static void testParse() throws ParseException { + StringBuffer parseTemplate = new StringBuffer(); + StringBuffer parseInput = new StringBuffer(); + for (int i = 0; i < REPEATS; i++) { + parseTemplate.append("{" + i + ", number} "); + parseInput.append(i + " "); + } + MessageFormat parseFormat = new MessageFormat(parseTemplate.toString()); + Object[] parseResult = parseFormat.parse(parseInput.toString()); + for (int i = 0; i < REPEATS; i++) { + if (((Number) parseResult[i]).intValue() != i) { + throw new RuntimeException("got wrong parse result"); + } + } + } +} diff --git a/jdk/test/java/text/Format/MessageFormat/MessageFormatsByArgumentIndex.java b/jdk/test/java/text/Format/MessageFormat/MessageFormatsByArgumentIndex.java new file mode 100644 index 00000000000..1d69258f68d --- /dev/null +++ b/jdk/test/java/text/Format/MessageFormat/MessageFormatsByArgumentIndex.java @@ -0,0 +1,115 @@ +/* + * Copyright (c) 2000, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4105380 + * @summary basic tests for new methods getFormatsByArgumentIndex, setFormatByArgumentIndex, setFormatsByArgumentIndex + */ + +import java.text.ChoiceFormat; +import java.text.Format; +import java.text.MessageFormat; +import java.text.NumberFormat; + +public class MessageFormatsByArgumentIndex { + + private static String choicePattern = "0.0#are no files|1.0#is one file|1.0 subsitution failed. result = " + tempBuffer.toString()); + logln("Formatted with extra params : " + tempBuffer); + //This statement gives an exception while formatting... + //If we use pattern[1] for the message with param, + //we get an NullPointerException in MessageFormat.java(617) + //If we use pattern[2] for the message with param, + //we get an StringArrayIndexOutOfBoundsException in MessageFormat.java(614) + //Both are due to maxOffset not being reset to -1 + //in applyPattern() when the pattern does not + //contain any param. + } catch (Exception foo) { + errln("Exception when formatting with no params."); + } + } + + /* @bug 4058973 + * MessageFormat.toPattern has weird rounding behavior. + */ + public void Test4058973() { + + MessageFormat fmt = new MessageFormat("{0,choice,0#no files|1#one file|1< {0,number,integer} files}"); + String pat = fmt.toPattern(); + if (!pat.equals("{0,choice,0.0#no files|1.0#one file|1.0< {0,number,integer} files}")) { + errln("MessageFormat.toPattern failed"); + } + } + /* @bug 4031438 + * More robust message formats. + */ + public void Test4031438() { + String pattern1 = "Impossible {1} has occurred -- status code is {0} and message is {2}."; + String pattern2 = "Double '' Quotes {0} test and quoted '{1}' test plus 'other {2} stuff'."; + + // If the current locale is hi_IN, skip this test case. + if (Locale.getDefault().equals(new Locale("hi", "IN"))) { + return; + } + + MessageFormat messageFormatter = new MessageFormat(""); + + try { + logln("Apply with pattern : " + pattern1); + messageFormatter.applyPattern(pattern1); + Object[] params = {new Integer(7)}; + String tempBuffer = messageFormatter.format(params); + if (!tempBuffer.equals("Impossible {1} has occurred -- status code is 7 and message is {2}.")) + errln("Tests arguments < substitution failed. Formatted text=" + + "<" + tempBuffer + ">"); + logln("Formatted with 7 : " + tempBuffer); + ParsePosition status = new ParsePosition(0); + Object[] objs = messageFormatter.parse(tempBuffer, status); + if (objs[params.length] != null) + errln("Parse failed with more than expected arguments"); + for (int i = 0; i < objs.length; i++) { + if (objs[i] != null && !objs[i].toString().equals(params[i].toString())) { + errln("Parse failed on object " + objs[i] + " at index : " + i); + } + } + tempBuffer = messageFormatter.format(null); + if (!tempBuffer.equals("Impossible {1} has occurred -- status code is {0} and message is {2}.")) + errln("Tests with no arguments failed"); + logln("Formatted with null : " + tempBuffer); + logln("Apply with pattern : " + pattern2); + messageFormatter.applyPattern(pattern2); + tempBuffer = messageFormatter.format(params); + if (!tempBuffer.equals("Double ' Quotes 7 test and quoted {1} test plus other {2} stuff.")) + errln("quote format test (w/ params) failed."); + logln("Formatted with params : " + tempBuffer); + tempBuffer = messageFormatter.format(null); + if (!tempBuffer.equals("Double ' Quotes {0} test and quoted {1} test plus other {2} stuff.")) + errln("quote format test (w/ null) failed."); + logln("Formatted with null : " + tempBuffer); + logln("toPattern : " + messageFormatter.toPattern()); + } catch (Exception foo) { + errln("Exception when formatting in bug 4031438. "+foo.getMessage()); + } + } + public void Test4052223() + { + ParsePosition pos = new ParsePosition(0); + if (pos.getErrorIndex() != -1) { + errln("ParsePosition.getErrorIndex initialization failed."); + } + MessageFormat fmt = new MessageFormat("There are {0} apples growing on the {1} tree."); + String str = new String("There is one apple growing on the peach tree."); + Object[] objs = fmt.parse(str, pos); + logln("unparsable string , should fail at " + pos.getErrorIndex()); + if (pos.getErrorIndex() == -1) + errln("Bug 4052223 failed : parsing string " + str); + pos.setErrorIndex(4); + if (pos.getErrorIndex() != 4) + errln("setErrorIndex failed, got " + pos.getErrorIndex() + " instead of 4"); + ChoiceFormat f = new ChoiceFormat( + "-1#are negative|0#are no or fraction|1#is one|1.0"); + Object[] objs1 = null; + Object[] objs2 = {}; + Object[] objs3 = {null}; + try { + logln("pattern: \"" + mf.toPattern() + "\""); + log("format(null) : "); + logln("\"" + mf.format(objs1) + "\""); + log("format({}) : "); + logln("\"" + mf.format(objs2) + "\""); + log("format({null}) :"); + logln("\"" + mf.format(objs3) + "\""); + } catch (Exception e) { + errln("Exception thrown for null argument tests."); + } + } + + /* @bug 4113018 + * MessageFormat.applyPattern works wrong with illegal patterns. + */ + public void Test4113018() + { + String originalPattern = "initial pattern"; + MessageFormat mf = new MessageFormat(originalPattern); + String illegalPattern = "format: {0, xxxYYY}"; + logln("pattern before: \"" + mf.toPattern() + "\""); + logln("illegal pattern: \"" + illegalPattern + "\""); + try { + mf.applyPattern(illegalPattern); + errln("Should have thrown IllegalArgumentException for pattern : " + illegalPattern); + } catch (IllegalArgumentException e) { + if (!originalPattern.equals(mf.toPattern())) + errln("pattern after: \"" + mf.toPattern() + "\""); + } + } + /* @bug 4106661 + * ChoiceFormat is silent about the pattern usage in javadoc. + */ + public void Test4106661() + { + ChoiceFormat fmt = new ChoiceFormat( + "-1#are negative| 0#are no or fraction | 1#is one |1.0 " + + out + "; want \"" + DATA[i+1+j] + '"'); + } + String pat = cf.toPattern(); + String pat2 = new ChoiceFormat(pat).toPattern(); + if (!pat.equals(pat2)) + errln("Fail: Pattern \"" + DATA[i] + "\" x toPattern -> \"" + pat + '"'); + else + logln("Ok: Pattern \"" + DATA[i] + "\" x toPattern -> \"" + pat + '"'); + } + catch (IllegalArgumentException e) { + errln("Fail: Pattern \"" + DATA[i] + "\" -> " + e); + } + } + } + + /** + * @bug 4112104 + * MessageFormat.equals(null) throws a NullPointerException. The JLS states + * that it should return false. + */ + public void Test4112104() { + MessageFormat format = new MessageFormat(""); + try { + // This should NOT throw an exception + if (format.equals(null)) { + // It also should return false + errln("MessageFormat.equals(null) returns false"); + } + } + catch (NullPointerException e) { + errln("MessageFormat.equals(null) throws " + e); + } + } + + /** + * @bug 4169959 + * MessageFormat does not format null objects. CANNOT REPRODUCE THIS BUG. + */ + public void Test4169959() { + // This works + logln(MessageFormat.format( "This will {0}", + new String[]{"work"} ) ); + + // This fails + logln(MessageFormat.format( "This will {0}", + new Object[]{ null } ) ); + } + + public void test4232154() { + boolean gotException = false; + try { + MessageFormat format = new MessageFormat("The date is {0:date}"); + } catch (Exception e) { + gotException = true; + if (!(e instanceof IllegalArgumentException)) { + throw new RuntimeException("got wrong exception type"); + } + if ("argument number too large at ".equals(e.getMessage())) { + throw new RuntimeException("got wrong exception message"); + } + } + if (!gotException) { + throw new RuntimeException("didn't get exception for invalid input"); + } + } + + public void test4293229() { + MessageFormat format = new MessageFormat("'''{'0}'' '''{0}'''"); + Object[] args = { null }; + String expected = "'{0}' '{0}'"; + String result = format.format(args); + if (!result.equals(expected)) { + throw new RuntimeException("wrong format result - expected \"" + + expected + "\", got \"" + result + "\""); + } + } +} diff --git a/jdk/test/java/text/Format/MessageFormat/MessageTest.java b/jdk/test/java/text/Format/MessageFormat/MessageTest.java new file mode 100644 index 00000000000..9234ae90c9f --- /dev/null +++ b/jdk/test/java/text/Format/MessageFormat/MessageTest.java @@ -0,0 +1,102 @@ +/* + * Copyright (c) 1997 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @library /java/text/testlib + * @summary test MessageFormat + */ +/* +(C) Copyright Taligent, Inc. 1996 - All Rights Reserved +(C) Copyright IBM Corp. 1996 - All Rights Reserved + + The original version of this source code and documentation is copyrighted and +owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are +provided under terms of a License Agreement between Taligent and Sun. This +technology is protected by multiple US and International patents. This notice and +attribution to Taligent may not be removed. + Taligent is a registered trademark of Taligent, Inc. +*/ + + +import java.util.*; +import java.io.*; +import java.text.*; + +public class MessageTest extends IntlTest { + + public static void main(String[] args) throws Exception { + new MessageTest().run(args); + } + + + public void TestMSGPatternTest() { + Object[] testArgs = { + new Double (1), new Double(3456), + "Disk", new Date(10000000000L)}; + + String[] testCases = { + "Quotes '', '{', 'a' {0} '{0}'", + "Quotes '', '{', 'a' {0,number} '{0}'", + "'{'1,number,'#',##} {1,number,'#',##}", + "There are {1} files on {2} at {3}", + "On {2}, there are {1} files, with {0,number,currency}.", + "'{1,number,percent}', {1,number,percent}, ", + "'{1,date,full}', {1,date,full}, ", + "'{3,date,full}', {3,date,full}, ", + "'{1,number,#,##}' {1,number,#,##}", + }; + + for (int i = 0; i < testCases.length; ++i) { + Locale save = Locale.getDefault(); + try { + Locale.setDefault(Locale.US); + logln(""); + logln( i + " Pat in: " + testCases[i]); + MessageFormat form = new MessageFormat(testCases[i]); + logln( i + " Pat out: " + form.toPattern()); + String result = form.format(testArgs); + logln( i + " Result: " + result); + Object[] values = form.parse(result); + for (int j = 0; j < testArgs.length; ++j) { + Object testArg = testArgs[j]; + Object value = null; + if (j < values.length) { + value = values[j]; + } + if ((testArg == null && value != null) + || (testArg != null && !testArg.equals(value))) { + logln( i + " " + j + " old: " + testArg); + logln( i + " " + j + " new: " + value); + } + } + } + catch(java.text.ParseException pe ) { + throw new RuntimeException("Error: MessageFormat.parse throws ParseException"); + } + finally{ + Locale.setDefault(save); + } + } + } +} diff --git a/jdk/test/java/text/Format/MessageFormat/bug4492719.java b/jdk/test/java/text/Format/MessageFormat/bug4492719.java new file mode 100644 index 00000000000..6a1d2184ffe --- /dev/null +++ b/jdk/test/java/text/Format/MessageFormat/bug4492719.java @@ -0,0 +1,79 @@ +/* + * Copyright (c) 2001, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * + * @bug 4492719 + * @library /java/text/testlib + * @summary Confirm that Message.parse() interprets time zone which uses "GMT+/-" format correctly and doesn't throw ParseException. + */ + +import java.util.*; +import java.text.*; + +public class bug4492719 extends IntlTest { + + public static void main(String[] args) throws Exception { + Locale savedLocale = Locale.getDefault(); + TimeZone savedTimeZone = TimeZone.getDefault(); + MessageFormat mf; + boolean err =false; + + String[] formats = { + "short", "medium", "long", "full" + }; + String[] timezones = { + "America/Los_Angeles", "GMT", "GMT+09:00", "GMT-8:00", + "GMT+123", "GMT-1234", "GMT+2", "GMT-13" + }; + String text; + + Locale.setDefault(Locale.US); + + try { + for (int i = 0; i < timezones.length; i++) { + TimeZone.setDefault(TimeZone.getTimeZone(timezones[i])); + + for (int j = 0; j < formats.length; j++) { + mf = new MessageFormat("{0,time," + formats[j] + "} - time"); + text = MessageFormat.format("{0,time," + formats[j] + "} - time", + new Object [] { new Date(123456789012L)}); + Object[] objs = mf.parse(text); + } + } + } catch (ParseException e) { + err = true; + System.err.println("Invalid ParseException occurred : " + + e.getMessage()); + System.err.println(" TimeZone=" + TimeZone.getDefault()); + } + finally { + Locale.setDefault(savedLocale); + TimeZone.setDefault(savedTimeZone); + if (err) { + throw new Exception("MessageFormat.parse(\"GMT format\") failed."); + } + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/BigDecimalCompatibilityTest.java b/jdk/test/java/text/Format/NumberFormat/BigDecimalCompatibilityTest.java new file mode 100644 index 00000000000..1a2e7bf3945 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/BigDecimalCompatibilityTest.java @@ -0,0 +1,134 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4018937 + * @summary Confirm that DecimalFormat.parse() parses BigDecimal and BigInteger as expected. + */ + +import java.math.*; +import java.text.*; +import java.util.*; + +public class BigDecimalCompatibilityTest { + + static boolean err = false; + + static final String[] input_data = { + "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890" + }; + static final String[] exponents = { + "E-100", "E100", "E-900", "E900", "" + }; + static final int[] multipliers = { + -1, 1, -100, 100, -9999, 9999 + }; + + public static void main(String[] args) throws Exception { + Locale loc = Locale.getDefault(); + Locale.setDefault(Locale.US); + + testBigDecimal(); + testBigInteger(); + + Locale.setDefault(loc); + + if (err) { + throw new RuntimeException("Error: Unexpected value"); + } + } + + static private void testBigDecimal() { + DecimalFormat df = new DecimalFormat(); + df.setParseBigDecimal(true); + df.setMaximumFractionDigits(Integer.MAX_VALUE); + + for (int i = 0; i < input_data.length; i++) { + for (int j = 0; j < input_data.length; j++) { + for (int k = 0; k < input_data.length; k++) { + for (int l = 0; l < input_data.length; l++) { + for (int m = 0; m < exponents.length; m++) { + String s = input_data[i] + input_data[j] + '.' + + input_data[k] + input_data[l] + + exponents[m]; + for (int n = 0; n < multipliers.length; n++) { + test(df, s, multipliers[n]); + test(df, '-'+s, multipliers[n]); + } + } + } + } + } + } + } + + static private void testBigInteger() { + DecimalFormat df = new DecimalFormat(); + df.setParseBigDecimal(true); + df.setMaximumFractionDigits(Integer.MAX_VALUE); + + for (int i = 0; i < input_data.length; i++) { + for (int j = 0; j < input_data.length; j++) { + String s = input_data[i] + input_data[j]; + for (int k = 0; k < multipliers.length; k++) { + test(df, s, multipliers[k]); + test(df, '-'+s, multipliers[k]); + } + } + } + } + + static void test(DecimalFormat df, String s, int multiplier) { + df.setMultiplier(multiplier); + + Number num = null; + try { + num = df.parse(s); + } + catch (ParseException e) { + err = true; + System.err.println("Failed: Exception occurred: " + e.getMessage()); + return; + } + + BigDecimal bd = new BigDecimal(s); + try { + bd = bd.divide(new BigDecimal(multiplier)); + } + catch (ArithmeticException e) { + bd = bd.divide(new BigDecimal(multiplier), BigDecimal.ROUND_HALF_EVEN); + } + check(num, bd, multiplier); + } + + static void check(Number got, BigDecimal expected, int multiplier) { + if (!got.equals(expected)) { + err = true; + System.err.println("Failed: got:" + got + + ", expected: " + expected + + ", multiplier=" + multiplier); + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/BigDecimalFormat.java b/jdk/test/java/text/Format/NumberFormat/BigDecimalFormat.java new file mode 100644 index 00000000000..14b3a9fec62 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/BigDecimalFormat.java @@ -0,0 +1,1044 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4018937 8008577 + * @summary Confirm that methods which are newly added to support BigDecimal and BigInteger work as expected. + * @library /java/text/testlib + * @run main/othervm -Djava.locale.providers=COMPAT,SPI BigDecimalFormat + */ + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.text.*; +import java.util.*; + +public class BigDecimalFormat extends IntlTest { + + public static void main(String[] args) throws Exception { + new BigDecimalFormat().run(args); + } + + static final String nonsep_int = + "123456789012345678901234567890123456789012345678901234567890" + + "123456789012345678901234567890123456789012345678901234567890" + + "123456789012345678901234567890123456789012345678901234567890" + + "123456789012345678901234567890123456789012345678901234567890" + + "123456789012345678901234567890123456789012345678901234567890" + + "123456789012345678901234567890123456789012345678901234567890"; + + static final String sep_int = + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890"; + + static final String nonsep_zero = + "000000000000000000000000000000000000000000000000000000000000" + + "000000000000000000000000000000000000000000000000000000000000" + + "000000000000000000000000000000000000000000000000000000000000" + + "000000000000000000000000000000000000000000000000000000000000" + + "000000000000000000000000000000000000000000000000000000000000" + + "000000000000000000000000000000000000000000000000000000000000"; + + static final String sep_zero = + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000"; + + static final String fra = + "012345678901234567890123456789012345678901234567890123456789" + + "012345678901234567890123456789012345678901234567890123456789" + + "012345678901234567890123456789012345678901234567890123456789" + + "012345678901234567890123456789012345678901234567890123456789" + + "012345678901234567890123456789012345678901234567890123456789" + + "012345678901234567890123456789012345678901234567890123456789"; + + + StringBuffer formatted = new StringBuffer(1000); + FieldPosition fp; + + /** + * Test for normal big numbers which have the fraction part + */ + void test_Format_in_NumberFormat_BigDecimal() { + String from, to; + + NumberFormat nf = NumberFormat.getInstance(Locale.US); + ((DecimalFormat)nf).applyPattern("#,##0.###"); + setDigits(nf, Integer.MAX_VALUE, 1, Integer.MAX_VALUE, 0); + + // From: 0.000...789 + // To: 0.000...789 (same as From) + formatted.setLength(0); + from = "0." + nonsep_zero + "123456789"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, from, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: -0.000...789 + // To: -0.000...789 (same as From) + // ~ : FieldPosition(SIGN) + fp = new FieldPosition(NumberFormat.Field.SIGN); + formatted.setLength(0); + from = "-0." + nonsep_zero + "123456789"; + nf.format(new BigDecimal(from), formatted, fp); + checkFormat(from, formatted, from, ((DecimalFormat)nf).getMultiplier()); + checkFieldPosition(from, fp, 0, 1); + + /* ------------------------------------------------------------------ */ + + // From: 1234...7890.012...789 + // To: 123,4...7,890.012...789 + // ~~~~~~~~~~~~~ : FieldPosition(INTEGER_FIELD) + fp = new FieldPosition(DecimalFormat.INTEGER_FIELD); + formatted.setLength(0); + from = nonsep_int + "." + fra; + to = sep_int + "." + fra; + nf.format(new BigDecimal(from), formatted, fp); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + checkFieldPosition(from, fp, 0, 479); + + /* ------------------------------------------------------------------ */ + + // From: -1234...7890.012...789 + // To: -123,4...7,890.012...789 + // ~~~~~~~~~ : FieldPosition(FRACTION_FIELD) + fp = new FieldPosition(DecimalFormat.FRACTION_FIELD); + formatted.setLength(0); + from = "-" + nonsep_int + "." + fra; + to = "-" + sep_int + "." + fra; + nf.format(new BigDecimal(from), formatted, fp); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + checkFieldPosition(from, fp, 481, 841); + + /* ------------------------------------------------------------------ */ + + // From: 1234...78900000...0000.000...789 + // To: 123,4...7,890,000,0...0,000.000...789 + formatted.setLength(0); + from = nonsep_int + nonsep_zero + "." + nonsep_zero + fra; + to = sep_int + "," + sep_zero + "." + nonsep_zero + fra; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: -1234...78900000...0000.000...789 + // To: -123,4...7,890,000,0...0,000.000...789 + formatted.setLength(0); + from = "-" + nonsep_int + nonsep_zero + "." + nonsep_zero + fra; + to = "-" + sep_int + "," + sep_zero + "." + nonsep_zero + fra; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: 1234...78900000...0000 + // To: 123,4...7,890,000,0...0,000 + formatted.setLength(0); + from = nonsep_int + nonsep_zero; + to = sep_int + "," + sep_zero; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: -1234...78900000...0000 + // To: -123,4...7,890,000,0...0,000 + formatted.setLength(0); + from = "-" + nonsep_int + nonsep_zero; + to = "-" + sep_int + "," + sep_zero; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: 1234...78900000...0000.0...0 + // To: 1,234...7,890,000,0...0,000 + formatted.setLength(0); + from = nonsep_int + nonsep_zero + "." + nonsep_zero; + to = sep_int + "," + sep_zero; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: -1234...78900000...0000.0...0 + // To: -1,234...7,890,000,0...0,000 + formatted.setLength(0); + from = "-" + nonsep_int + nonsep_zero + "." + nonsep_zero; + to = "-" + sep_int + "," + sep_zero; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: 000...0000 + // To: 0 + formatted.setLength(0); + from = nonsep_zero; + to = "0"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: -000...0000 + // To: 0 + formatted.setLength(0); + from = "-" + nonsep_zero; + to = "0"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: 000...00001234 + // To: 1,234 + formatted.setLength(0); + from = nonsep_zero + "1234"; + to = "1,234"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: -000...00001234 + // To: -1,234 + // ~ : FieldPosition(GROUPING_SEPARATOR) + fp = new FieldPosition(NumberFormat.Field.GROUPING_SEPARATOR); + formatted.setLength(0); + from = "-" + nonsep_zero + "1234"; + to = "-1,234"; + nf.format(new BigDecimal(from), formatted, fp); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + checkFieldPosition(from, fp, 2, 3); + + /* ------------------------------------------------------------------ */ + + // From: 000...0000.0...0 + // To: 0 + formatted.setLength(0); + from = nonsep_zero + "." + nonsep_zero; + to = "0"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("#,##0.0"); + setDigits(nf, Integer.MAX_VALUE, 1, Integer.MAX_VALUE, 1); + + // From: -000...0000.0...0 + // To: 0.0 + formatted.setLength(0); + from = "-" + nonsep_zero + "." + nonsep_zero; + to = "0.0"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: 1234...7890.012...7890...0 + // To: 1,234...7,890.0123...789 + formatted.setLength(0); + from = nonsep_int + "." + fra + nonsep_zero; + to = sep_int + "." + fra; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: -1234...7890.012...7890...0 + // To: -1,234...7,890.0123...789 + formatted.setLength(0); + from = "-" + nonsep_int + "." + fra + nonsep_zero; + to = "-" + sep_int + "." + fra; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("0.###E0"); + setDigits(nf, 1, 1, Integer.MAX_VALUE, 0); + + // From: 1123...890.012...789 + // To : 1.123...8900123...789E360 + // ~~~ : FieldPosition(EXPONENT) + fp = new FieldPosition(NumberFormat.Field.EXPONENT); + formatted.setLength(0); + from = "1" + nonsep_int + "." + fra; + to = "1." + nonsep_int + fra + "E360"; + nf.format(new BigDecimal(from), formatted, fp); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + checkFieldPosition(from, fp, 723, 726); + + /* ------------------------------------------------------------------ */ + + // From: -1123...890.012...789 + // To : -1.123...8900123...789E360 + formatted.setLength(0); + from = "-1" + nonsep_int + "." + fra; + to = "-1." + nonsep_int + fra + "E360"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("0.###E0"); + setDigits(nf, 1, 1, Integer.MAX_VALUE, 0); + + // From: 0.000...0001123...890.012...789 + // To : 1.123...8900123...789E-360 + formatted.setLength(0); + from = "0." + nonsep_zero + "1" + fra; + to = "1." + fra + "E-361"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: -0.000...0001123...890.012...789 + // To : -1.123...8900123...789E-360 + formatted.setLength(0); + from = "-0." + nonsep_zero + "1" + fra; + to = "-1." + fra + "E-361"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: 1123...890.012...789000...000 + // To : 1.123...8900123...789E360 + formatted.setLength(0); + from = "1" + nonsep_int + "." + fra + nonsep_zero; + to = "1." + nonsep_int + fra + "E360"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: -1123...890.012...789000...000 + // To : -1.123...8900123...789E360 + // ~ : FieldPosition(EXPONENT_SYMBOL) + fp = new FieldPosition(NumberFormat.Field.EXPONENT_SYMBOL); + formatted.setLength(0); + from = "-1" + nonsep_int + "." + fra + nonsep_zero; + to = "-1." + nonsep_int + fra + "E360"; + nf.format(new BigDecimal(from), formatted, fp); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + checkFieldPosition(from, fp, 723, 724); + + /* ------------------------------------------------------------------ */ + + // From: 0.000...0001123...890.012...789000...000 + // To : 1.123...8900123...789E-360 + // ~ : FieldPosition(EXPONENT_SIGN) + fp = new FieldPosition(NumberFormat.Field.EXPONENT_SIGN); + formatted.setLength(0); + from = "0." + nonsep_zero + "1" + fra + nonsep_zero; + to = "1." + fra + "E-361"; + nf.format(new BigDecimal(from), formatted, fp); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + checkFieldPosition(from, fp, 363, 364); + + /* ------------------------------------------------------------------ */ + + // From: -0.000...0001123...890.012...789000...000 + // To : -1.123...8900123...789E-360 + formatted.setLength(0); + from = "-0." + nonsep_zero + "1" + fra + nonsep_zero; + to = "-1." + fra + "E-361"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: ABC1123...890.012...789 + // To : ABC1.123...890.0123...789 + formatted = new StringBuffer("ABC"); + from = "1" + nonsep_int + "." + fra; + to = "ABC1." + nonsep_int + fra + "E360"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: ABC-1123...890.012...789 + // To : ABC-1.123...890.0123...789 + // ~ : FieldPosition(DECIMAL_SEPARATOR) + fp = new FieldPosition(NumberFormat.Field.DECIMAL_SEPARATOR); + formatted = new StringBuffer("ABC"); + from = "-1" + nonsep_int + "." + fra; + to = "ABC-1." + nonsep_int + fra + "E360"; + nf.format(new BigDecimal(from), formatted, fp); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + checkFieldPosition(from, fp, 5, 6); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("#,##0.###"); + setDigits(nf, Integer.MAX_VALUE, 1, 726, 0); + + // From: 0.000...000012...7890123456789 + // To: 0.000...000012...789012346 (Shorter than From) + formatted.setLength(0); + from = "0." + nonsep_zero + fra + fra; + to = "0." + nonsep_zero + fra + "012346"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + ((DecimalFormat)nf).applyPattern("#,##0.###"); + setDigits(nf, Integer.MAX_VALUE, 1, 723, 0); + + /* ------------------------------------------------------------------ */ + + // From: -0.000...000012...7890123456789 + // To: -0.000...000012...789012 (Shorter than From) + formatted.setLength(0); + from = "-0." + nonsep_zero + fra + fra; + to = "-0." + nonsep_zero + fra + "012"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("00000.###E0"); + setDigits(nf, 5, 5, 370, 0); + + // From: 1234567890.012...78901234567890 + // To: 12345.67890012...789012346E5 + formatted.setLength(0); + from = "1234567890." + fra + "0123456789"; + to = "12345.67890" + fra + "01235E5"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("0.###E0"); + setDigits(nf, 1, 1, 364, 0); + + // From: -0.000...0001012...7890123456789 + // To: -1.012...789012E-361 + formatted.setLength(0); + from = "-0." + nonsep_zero + "1" + fra + "0123456789"; + to = "-1." + fra + "0123E-361"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("0.###E0"); + setDigits(nf, 1, 1, 366, 0); + + // From: 1012...78901234567890 + // To: 1.012...789012346E370 + formatted.setLength(0); + from = "1" + fra + "0123456789"; + to = "1." + fra + "012346E370"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("0.###E0"); + setDigits(nf, 1, 1, 363, 0); + + // From: -1012...7890123456789 + // To: -1.012...789012E370 + formatted.setLength(0); + from = "-1" + fra + "0123456789"; + to = "-1." + fra + "012E370"; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("#,##0.###"); + setDigits(nf, Integer.MAX_VALUE, 1, Integer.MAX_VALUE, 720); + + // From: 1234...78900000...0000.0...0 + // To: 1,234...7,890,000,0...0,000.0...0 + formatted.setLength(0); + from = nonsep_int + nonsep_zero + "." + nonsep_zero + nonsep_zero; + to = sep_int + "," + sep_zero + "." + nonsep_zero + nonsep_zero; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: -1234...78900000...0000.0...0 + // To: -1,234...7,890,000,0...0,000.0...0 + formatted.setLength(0); + from = "-" + nonsep_int + nonsep_zero + "." + nonsep_zero + nonsep_zero; + to = "-" + sep_int + "," + sep_zero + "." + nonsep_zero + nonsep_zero; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + } + + /** + * Test for normal big numbers which have the fraction part with multiplier + */ + void test_Format_in_NumberFormat_BigDecimal_usingMultiplier() { + String from, to; + + NumberFormat nf = NumberFormat.getInstance(Locale.US); + ((DecimalFormat)nf).applyPattern("#,##0.###"); + setDigits(nf, Integer.MAX_VALUE, 1, Integer.MAX_VALUE, 0); + ((DecimalFormat)nf).setMultiplier(250000000); + ((DecimalFormat)nf).setDecimalSeparatorAlwaysShown(true); + + // From: 1000...0000.000...000 + // To: 250,0...0,000. + formatted.setLength(0); + from = "1" + nonsep_zero + "." + nonsep_zero; + to = "250,000,000," + sep_zero + "."; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).setDecimalSeparatorAlwaysShown(false); + + // From: -1000...0000.000...000 + // To: -250,0...0,000 + formatted.setLength(0); + from = "-1" + nonsep_zero + "." + nonsep_zero; + to = "-250,000,000," + sep_zero; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("#,##0.###"); + setDigits(nf, Integer.MAX_VALUE, 1, Integer.MAX_VALUE, 0); + ((DecimalFormat)nf).setMultiplier(-250000000); + ((DecimalFormat)nf).setDecimalSeparatorAlwaysShown(true); + + // From: 1000...0000.000...000 + // To: -250,0...0,000. + formatted.setLength(0); + from = "1" + nonsep_zero + "." + nonsep_zero; + to = "-250,000,000," + sep_zero + "."; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).setDecimalSeparatorAlwaysShown(false); + + // From: -1000...0000.000...000 + // To: 250,0...0,000 + formatted.setLength(0); + from = "-1" + nonsep_zero + "." + nonsep_zero; + to = "250,000,000," + sep_zero; + nf.format(new BigDecimal(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + } + + /** + * Test for normal big numbers which don't have the fraction part + */ + void test_Format_in_NumberFormat_BigInteger() { + String from, to; + + NumberFormat nf = NumberFormat.getInstance(Locale.US); + if (!(nf instanceof DecimalFormat)) { + throw new RuntimeException("Couldn't get DecimalFormat instance."); + } + + ((DecimalFormat)nf).applyPattern("#,##0.###"); + setDigits(nf, Integer.MAX_VALUE, 1, Integer.MAX_VALUE, 0); + + // From: 1234...7890 + // To: 123,4...7,890 + formatted.setLength(0); + from = nonsep_int; + to = sep_int; + nf.format(new BigInteger(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: -1234...7890 + // To: -123,4...7,890 + // ~~~~~~~~~~~~~ : FieldPosition(INTEGER_FIELD) + fp = new FieldPosition(DecimalFormat.INTEGER_FIELD); + formatted.setLength(0); + from = "-" + nonsep_int; + to = "-" + sep_int; + nf.format(new BigInteger(from), formatted, fp); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + checkFieldPosition(from, fp, 1, 480); + + /* ------------------------------------------------------------------ */ + + // From: 000...0001234...7890 + // To: 123,4...7,890 + formatted.setLength(0); + from = nonsep_zero + nonsep_int; + to = sep_int; + nf.format(new BigInteger(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: -000...0001234...7890 + // To: -123,4...7,890 + // ~ : FieldPosition(SIGN) + fp = new FieldPosition(NumberFormat.Field.SIGN); + formatted.setLength(0); + from = "-" + nonsep_zero + nonsep_int; + to = "-" + sep_int; + nf.format(new BigInteger(from), formatted, fp); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + checkFieldPosition(from, fp, 0, 1); + + /* ------------------------------------------------------------------ */ + + // From: 000...0000 + // To: 0 + formatted.setLength(0); + from = nonsep_zero; + to = "0"; + nf.format(new BigInteger(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("#,##0.0"); + setDigits(nf, Integer.MAX_VALUE, 1, Integer.MAX_VALUE, 1); + + // From: -000...0000 + // To: 0.0 + fp = new FieldPosition(NumberFormat.Field.DECIMAL_SEPARATOR); + formatted.setLength(0); + from = "-" + nonsep_zero; + to = "0.0"; + nf.format(new BigInteger(from), formatted, fp); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + checkFieldPosition(from, fp, 1, 2); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("0.###E0"); + setDigits(nf, 1, 1, Integer.MAX_VALUE, 0); + + // From: 10123...789 + // To : 1.0123...789E360 + // ~~~ : FieldPosition(EXPONENT) + fp = new FieldPosition(NumberFormat.Field.EXPONENT); + formatted.setLength(0); + from = "1" + fra; + to = "1." + fra + "E360"; + nf.format(new BigInteger(from), formatted, fp); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + checkFieldPosition(from, fp, 363, 366); + + /* ------------------------------------------------------------------ */ + + // From: -1012...789 + // To : -1.012...789E360 + formatted.setLength(0); + from = "-1" + fra; + to = "-1." + fra + "E360"; + nf.format(new BigInteger(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("00000.###E0"); + setDigits(nf, 5, 5, Integer.MAX_VALUE, 720); + + // From: 12345012...789000...000 + // To : 12345.012...789000...000E720 + // ~~~ : FieldPosition(EXPONENT) + fp = new FieldPosition(NumberFormat.Field.EXPONENT); + formatted.setLength(0); + from = "12345" + fra + nonsep_zero; + to = "12345." + fra + nonsep_zero + "E720"; + nf.format(new BigInteger(from), formatted, fp); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + checkFieldPosition(from, fp, 727, 730); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("00000.###E0"); + setDigits(nf, 5, 5, Integer.MAX_VALUE, 365); + + // From: -1234567890012...789000...000 + // To : -12345.67890012...789E365 + formatted.setLength(0); + from = "-1234567890" + fra; + to = "-12345.67890" + fra + "E365"; + nf.format(new BigInteger(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + } + + /** + * Test for normal big numbers which don't have the fraction part with + * multiplier + */ + void test_Format_in_NumberFormat_BigInteger_usingMultiplier() { + String from, to; + + NumberFormat nf = NumberFormat.getInstance(Locale.US); + + ((DecimalFormat)nf).applyPattern("#,##0.###"); + ((DecimalFormat)nf).setMultiplier(250000000); + setDigits(nf, Integer.MAX_VALUE, 1, Integer.MAX_VALUE, 0); + + // From: 1000...0000 + // To: 250,0...0,000 + formatted.setLength(0); + from = "1" + nonsep_zero; + to = "250,000,000," + sep_zero; + nf.format(new BigInteger(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: -1000...0000 + // To: -250,0...0,000 + formatted.setLength(0); + from = "-1" + nonsep_zero; + to = "-250,000,000," + sep_zero; + nf.format(new BigInteger(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("#,##0.###"); + ((DecimalFormat)nf).setMultiplier(-250000000); + setDigits(nf, Integer.MAX_VALUE, 1, Integer.MAX_VALUE, 0); + + // From: 1000...0000 + // To: -250,0...0,000 + formatted.setLength(0); + from = "1" + nonsep_zero; + to = "-250,000,000," + sep_zero; + nf.format(new BigInteger(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + // From: -1000...0000 + // To: 250,0...0,000 + formatted.setLength(0); + from = "-1" + nonsep_zero; + to = "250,000,000," + sep_zero; + nf.format(new BigInteger(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + } + + /** + * Test for normal Long numbers when maximum and minimum digits are + * specified + */ + void test_Format_in_NumberFormat_Long_checkDigits() { + String from, to; + + NumberFormat nf = NumberFormat.getInstance(Locale.US); + if (!(nf instanceof DecimalFormat)) { + throw new RuntimeException("Couldn't get DecimalFormat instance."); + } + + ((DecimalFormat)nf).applyPattern("#,##0.###"); + setDigits(nf, Integer.MAX_VALUE, 360, Integer.MAX_VALUE, 0); + + // From: 1234567890 + // To: 000,0...0,000,123,456,789 + // ------------- + // 300 zeros + formatted.setLength(0); + from = "123456789"; + to = sep_zero.substring(0, 399) + ",123,456,789"; + nf.format(new Long(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("##0.###"); + ((DecimalFormat)nf).setMultiplier(-1); + setDigits(nf, Integer.MAX_VALUE, 360, Integer.MAX_VALUE, 360); + + // From: 1234567890 + // To: -0000...0000123456789.000...000 + // ------------- + // 300 zeros + formatted.setLength(0); + from = "123456789"; + to = "-" + nonsep_zero.substring(0, 300) + "123456789." + + nonsep_zero.substring(0, 340); + nf.format(new Long(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("#,##0.###"); + ((DecimalFormat)nf).setMultiplier(Integer.MAX_VALUE); + setDigits(nf, Integer.MAX_VALUE, 360, Integer.MAX_VALUE, 0); + + // From: Long.MAX_VALUE + // To: 000,0...0,000,019,807,040,619,342,712,359,383,728,129 + // --------------- + // 280 zeros + formatted.setLength(0); + from = Long.toString(Long.MAX_VALUE); + to = sep_zero.substring(0, 373) + + "19,807,040,619,342,712,359,383,728,129"; + nf.format(new Long(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("0.###E0"); + ((DecimalFormat)nf).setMultiplier(Integer.MIN_VALUE); + setDigits(nf, 1, 1, Integer.MAX_VALUE, 360); + + // From: Long.MAX_VALUE + // To: -1.9807040628566084396238503936000...000E28 + // --------- + // 312 zeros + formatted.setLength(0); + from = Long.toString(Long.MAX_VALUE); + to = "-1.9807040628566084396238503936" + + nonsep_zero.substring(0, 312) + "E28"; + nf.format(new Long(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("##0.###E0"); + ((DecimalFormat)nf).setMultiplier(Integer.MAX_VALUE); + setDigits(nf, Integer.MAX_VALUE, 360, Integer.MAX_VALUE, 360); + + // From: Long.MIN_VALUE + // To: -198070406193427123615312117760000...0000.000...000E-280 + // ----------- --------- + // 280 zeros 340 zeros + formatted.setLength(0); + from = Long.toString(Long.MIN_VALUE); + to = "-19807040619342712361531211776" + + nonsep_zero.substring(0, 280) + "." + + nonsep_zero.substring(0, 340) + "E-280"; + nf.format(new Long(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + + /* ------------------------------------------------------------------ */ + + ((DecimalFormat)nf).applyPattern("#,##0.###"); + ((DecimalFormat)nf).setMultiplier(Integer.MIN_VALUE); + setDigits(nf, Integer.MAX_VALUE, 360, Integer.MAX_VALUE, 360); + + // From: Long.MIN_VALUE + // To: 000,0...0,000,019,807,040,628,566,084,398,385,987,584.000...000 + // --------------- --------- + // 280 zeros 340 zeros + formatted.setLength(0); + from = Long.toString(Long.MIN_VALUE); + to = sep_zero.substring(0, 373) + + "19,807,040,628,566,084,398,385,987,584." + + nonsep_zero.substring(0, 340); + nf.format(new Long(from), formatted, new FieldPosition(0)); + checkFormat(from, formatted, to, ((DecimalFormat)nf).getMultiplier()); + } + + /** + * Test for special numbers + * Double.NaN + * Double.POSITIVE_INFINITY + * Double.NEGATIVE_INFINITY + */ + void test_Format_in_NumberFormat_SpecialNumber() { + String from, to; + + NumberFormat nf = NumberFormat.getInstance(Locale.US); + if (!(nf instanceof DecimalFormat)) { + throw new RuntimeException("Couldn't get DecimalFormat instance."); + } + + ((DecimalFormat)nf).applyPattern("#,##0.###"); + setDigits(nf, Integer.MAX_VALUE, 1, Integer.MAX_VALUE, 0); + + double[] numbers = { + -0.0, 0.0, Double.NaN, + Double.POSITIVE_INFINITY, 5.1, 5.0, + Double.NEGATIVE_INFINITY, -5.1, -5.0, + }; + int multipliers[] = {0, 5, -5}; + String[][] expected = { + {"-0", "0", "\ufffd", "\ufffd", "0", "0", "\ufffd", "-0", "-0"}, + {"-0", "0", "\ufffd", "\u221e", "25.5", "25", "-\u221e", "-25.5", + "-25"}, + {"0", "-0", "\ufffd", "-\u221e", "-25.5", "-25", "\u221e", "25.5", + "25"}, + }; + + for (int i = 0; i < multipliers.length; i++) { + ((DecimalFormat)nf).setMultiplier(multipliers[i]); + for (int j = 0; j < numbers.length; j++) { + formatted.setLength(0); + from = String.valueOf(numbers[j]); + nf.format(numbers[j], formatted, new FieldPosition(0)); + checkFormat(from, formatted, expected[i][j], + ((DecimalFormat)nf).getMultiplier()); + } + } + } + + /** + * Test for Long.MIN_VALUE + * (Formatting Long.MIN_VALUE w/ multiplier=-1 used to return a wrong + * number.) + */ + void test_Format_in_NumberFormat_Other() { + String from, to; + + NumberFormat nf = NumberFormat.getInstance(Locale.US); + if (!(nf instanceof DecimalFormat)) { + throw new RuntimeException("Couldn't get DecimalFormat instance."); + } + + long[] numbers = { + Long.MIN_VALUE, + }; + int multipliers[] = {1, -1}; + String[][] expected = { + {"-9,223,372,036,854,775,808"}, // Long.MIN_VALUE + {"9,223,372,036,854,775,808"}, // Long.MIN_VALUE * (-1) + }; + + for (int i = 0; i < multipliers.length; i++) { + ((DecimalFormat)nf).setMultiplier(multipliers[i]); + for (int j = 0; j < numbers.length; j++) { + formatted.setLength(0); + from = String.valueOf(numbers[j]); + nf.format(numbers[j], formatted, new FieldPosition(0)); + checkFormat(from, formatted, expected[i][j], + ((DecimalFormat)nf).getMultiplier()); + } + } + } + + /** + * Test for MessageFormat + */ + void test_Format_in_MessageFormat() { + MessageFormat mf = new MessageFormat( + " {0, number}\n" + + " {0, number, integer}\n" + + " {0, number, currency}\n" + + " {0, number, percent}\n" + + " {0, number,0.###########E0}\n" + + + " {1, number}\n" + + " {1, number, integer}\n" + + " {1, number, currency}\n" + + " {1, number, percent}\n" + + " {1, number,0.#######E0}\n", + Locale.US + ); + Object[] testArgs = { + new BigInteger("9876543210987654321098765432109876543210"), + new BigDecimal("-12345678901234567890.98765432109876543210987654321"), + }; + String expected = + " 9,876,543,210,987,654,321,098,765,432,109,876,543,210\n" + + " 9,876,543,210,987,654,321,098,765,432,109,876,543,210\n" + + " $9,876,543,210,987,654,321,098,765,432,109,876,543,210.00\n" + + " 987,654,321,098,765,432,109,876,543,210,987,654,321,000%\n" + + " 9.87654321099E39\n" + + + " -12,345,678,901,234,567,890.988\n" + + " -12,345,678,901,234,567,891\n" + + " ($12,345,678,901,234,567,890.99)\n" + + " -1,234,567,890,123,456,789,099%\n" + + " -1.2345679E19\n" + ; + + if (!expected.equals(mf.format(testArgs))) { + errln("Wrong format.\n got:\n" + mf.format(testArgs) + + " expected:\n" + expected); + } + } + + private void setDigits(NumberFormat nf, + int i_max, int i_min, int f_max, int f_min) { + nf.setMaximumIntegerDigits(i_max); + nf.setMinimumIntegerDigits(i_min); + nf.setMaximumFractionDigits(f_max); + nf.setMinimumFractionDigits(f_min); + } + + private void checkFormat(String orig, StringBuffer got, String expected, + int multiplier) { + if (!expected.equals(new String(got))) { + errln("Formatting... failed." + + "\n original: " + orig + + "\n multiplier: " + multiplier + + "\n formatted: " + got + + "\n expected: " + expected + "\n"); + } + } + + private void checkFieldPosition(String orig, FieldPosition fp, int begin, + int end) { + int position; + + if ((position = fp.getBeginIndex()) != begin) { + errln("Formatting... wrong Begin index returned for " + + fp.getFieldAttribute() + "." + + "\n original: " + orig + + "\n got: " + position + + "\n expected: " + begin + "\n"); + } + if ((position = fp.getEndIndex()) != end) { + errln("Formatting... wrong End index returned for " + + fp.getFieldAttribute() + "." + + "\n original: " + orig + + "\n got: " + position + + "\n expected: " + end + "\n"); + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/BigDecimalParse.java b/jdk/test/java/text/Format/NumberFormat/BigDecimalParse.java new file mode 100644 index 00000000000..be206052d06 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/BigDecimalParse.java @@ -0,0 +1,709 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4018937 8008577 + * @summary Confirm that methods which are newly added to support BigDecimal and BigInteger work as expected. + * @library /java/text/testlib + * @run main/othervm -Djava.locale.providers=COMPAT,SPI BigDecimalParse + */ + +import java.math.BigDecimal; +import java.text.*; +import java.util.*; + +public class BigDecimalParse extends IntlTest { + + public static void main(String[] args) throws Exception { + Locale loc = Locale.getDefault(); + try { + Locale.setDefault(Locale.US); + new BigDecimalParse().run(args); + } finally { + // restore the reserved locale + Locale.setDefault(loc); + } + } + + static final String nonsep_int = + "123456789012345678901234567890123456789012345678901234567890" + + "123456789012345678901234567890123456789012345678901234567890" + + "123456789012345678901234567890123456789012345678901234567890" + + "123456789012345678901234567890123456789012345678901234567890" + + "123456789012345678901234567890123456789012345678901234567890" + + "123456789012345678901234567890123456789012345678901234567890"; + + static final String sep_int = + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890," + + "123,456,789,012,345,678,901,234,567,890"; + + static final String nonsep_zero = + "000000000000000000000000000000000000000000000000000000000000" + + "000000000000000000000000000000000000000000000000000000000000" + + "000000000000000000000000000000000000000000000000000000000000" + + "000000000000000000000000000000000000000000000000000000000000" + + "000000000000000000000000000000000000000000000000000000000000" + + "000000000000000000000000000000000000000000000000000000000000"; + + static final String sep_zero = + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000," + + "000,000,000,000,000,000,000,000,000,000"; + + static final String fra = + "012345678901234567890123456789012345678901234567890123456789" + + "012345678901234567890123456789012345678901234567890123456789" + + "012345678901234567890123456789012345678901234567890123456789" + + "012345678901234567890123456789012345678901234567890123456789" + + "012345678901234567890123456789012345678901234567890123456789" + + "012345678901234567890123456789012345678901234567890123456789"; + + + Number parsed = null; + ParsePosition pp; + boolean exceptionOccurred; + String msg; + DecimalFormat df; + + /** + * Test for normal big numbers which have the fraction part + */ + void test_Parse_in_DecimalFormat_BigDecimal() { + df = new DecimalFormat(); + df.setParseBigDecimal(true); + + // From: 1234...7890.012...789 + // To: BigDecimal 1234...7890.012...789 + check(nonsep_int + "." + fra, new BigDecimal(nonsep_int + "." + fra)); + + // From: -1,234...7,890.012...789 + // To: BigDecimal -1234...7890.012...789 + check("-" + sep_int + "." + fra, + new BigDecimal("-" + nonsep_int + "." + fra)); + + // From: 000...0000.0...0 + // To: BigDecimal 0E-360 + check(nonsep_zero + "." + nonsep_zero, + new BigDecimal(nonsep_zero + "." + nonsep_zero)); + + // From: 0.000...0000123...789E370 + // To: BigDecimal 0.0123...789 + check("0.0000000000" + nonsep_zero + fra + "E370", + new BigDecimal("0.0000000000" + nonsep_zero + fra + "E370")); + + // From: 0.1123...890E-360 + // To: BigDecimal 1.123...890E-361 + check("0.1" + nonsep_int + "E-360", + new BigDecimal("0.1" + nonsep_int + "E-360")); + + // From: 000...0000.0...0123...7890 + // To: BigDecimal 1.234...890E-361 + check(nonsep_zero + "." + nonsep_zero + nonsep_int, + new BigDecimal(nonsep_zero + "." + nonsep_zero + nonsep_int)); + + // From: 0.123...890E360 + // To: BigDecimal 123...890 + check("0." + nonsep_int + "E360", + new BigDecimal("0." + nonsep_int + "E360")); + } + + /** + * Test for normal big numbers which have the fraction part with multiplier + */ + void test_Parse_in_DecimalFormat_BigDecimal_usingMultiplier() { + df = new DecimalFormat(); + df.setParseBigDecimal(true); + + // From: 250,0...0,000.000...000 + // To: 1000...0000.000...000 + df.setMultiplier(250000000); + check("250,000,000," + sep_zero + "." + nonsep_zero, + new BigDecimal("1" + nonsep_zero + "." + nonsep_zero)); + + // From: -250,0...0,000.000...000 + // To: -1000...0000.000...000 + check("-250,000,000," + sep_zero + "." + nonsep_zero, + new BigDecimal("-1" + nonsep_zero + "." + nonsep_zero)); + + // From: 250,0...0,000.000...000 + // To: -1000...0000.000...000 + df.setMultiplier(-250000000); + check("250,000,000," + sep_zero + "." + nonsep_zero, + new BigDecimal("-1" + nonsep_zero + "." + nonsep_zero)); + + // From: -250,0...0,000.000...000 + // To: 1000...0000.000...000 + check("-250,000,000," + sep_zero + "." + nonsep_zero, + new BigDecimal("1" + nonsep_zero + "." + nonsep_zero)); + + // Confirm that ArithmeticException is handled properly + // From: 1000.000 + // To: 333.333 + df.setMultiplier(3); + check("1000.000", new BigDecimal("333.333")); + + // Confirm that ArithmeticException is handled properly + // From: 10000.0000 + // To: 303.0303 + df.setMultiplier(33); + check("10000.0000", new BigDecimal("303.0303")); + } + + /** + * Test for division by zero (BigDecimal) + */ + void test_Parse_in_DecimalFormat_BigDecimal_DivisionByZero() { + df = new DecimalFormat(); + df.setParseBigDecimal(true); + df.setMultiplier(0); + + // From: 1000.000 + // To: Double.POSITIVE_INFINITY + check("1000.000", new Double(Double.POSITIVE_INFINITY)); + + // From: -1000 + // To: Double.NEGATIVE_INFINITY + check("-1000", new Double(Double.NEGATIVE_INFINITY)); + + // From: -0.00 + // To: Double.NaN + check("-0.00", new Double(Double.NaN)); + } + + /** + * Test for division by zero (Double) + */ + void test_Parse_in_DecimalFormat_Double_DivisionByZero() { + df = new DecimalFormat(); + df.setParseBigDecimal(false); + df.setMultiplier(0); + + // From: 1000.000 + // To: Double.POSITIVE_INFINITY + check("1000.000", new Double(Double.POSITIVE_INFINITY)); + + // From: -1000.000 + // To: Double.NEGATIVE_INFINITY + check("-1000.000", new Double(Double.NEGATIVE_INFINITY)); + + // From: 0.0 + // To: Double.NaN + check("0.0", new Double(Double.NaN)); + + // From: -0.0 (Double) + // To: Double.NaN + check("-0.0", new Double(Double.NaN)); + + // From: Double.NaN + // To: Double.NaN + check("\ufffd", new Double(Double.NaN)); + + // From: Double.POSITIVE_INFINITY + // To: Double.NaN + check("\u221e", new Double(Double.POSITIVE_INFINITY)); + + // From: Double.NEGATIVE_INFINITY + // To: Double.NaN + check("-\u221e", new Double(Double.NEGATIVE_INFINITY)); + } + + /** + * Test for division by zero (Long) + */ + void test_Parse_in_DecimalFormat_Long_DivisionByZero() { + df = new DecimalFormat(); + df.setParseBigDecimal(false); + df.setMultiplier(0); + + // From: 1000 + // To: Double.POSITIVE_INFINITY + check("1000", new Double(Double.POSITIVE_INFINITY)); + + // From: -1000 + // To: Double.NEGATIVE_INFINITY + check("-1000", new Double(Double.NEGATIVE_INFINITY)); + + // From: -000 (Long) + // To: Double.NaN + check("-000", new Double(Double.NaN)); + } + + /** + * Test for normal big numbers which don't have the fraction part + */ + void test_Parse_in_DecimalFormat_BigInteger() { + df = new DecimalFormat(); + df.setParseBigDecimal(true); + + // From: 123...890 + // To: BigDecimal 123...890 + check(nonsep_int + nonsep_int, new BigDecimal(nonsep_int + nonsep_int)); + + // From: 123,4...7,890 + // To: BigDecimal 1234...7890 + check(sep_int + "," + sep_int, new BigDecimal(nonsep_int + nonsep_int)); + + // From: -000...000123...890 + // To: BigDecimal -123...890 + check("-" + nonsep_zero + nonsep_int, new BigDecimal("-" + nonsep_int)); + + // From: -000,0...0,000,123,4...7,890 + // To: BigDecimal -123...890 + check("-" + sep_zero + "," + sep_int, new BigDecimal("-" + nonsep_int)); + } + + /** + * Test for normal big numbers which don't have the fraction part with + * multiplier + */ + void test_Parse_in_DecimalFormat_BigInteger_usingMultiplier() { + df = new DecimalFormat(); + df.setParseBigDecimal(true); + + // From: 250,0...0,000 + // To: 1000...0000 + df.setMultiplier(250000000); + check("250,000,000," + sep_zero, new BigDecimal("1" + nonsep_zero)); + + // From: -250,0...0,000 + // To: -1000...0000 + check("-250,000,000," + sep_zero, new BigDecimal("-1" + nonsep_zero)); + + // From: 250,0...0,000 + // To: -1000...0000 + df.setMultiplier(-250000000); + check("250,000,000," + sep_zero, new BigDecimal("-1" + nonsep_zero)); + + // From: -250,0...0,000 + // To: 1000...0000 + check("-250,000,000," + sep_zero, new BigDecimal("1" + nonsep_zero)); + + // From: 250,0...0,000E-360 + // To: -1000...0000.000...000 + check("250,000,000," + sep_zero + "," + sep_zero + "E-360", + new BigDecimal("-1" + nonsep_zero + "." + nonsep_zero)); + + // Confirm that a division which results in a irrational number is done + // properly + // From: 1000 + // To: 333 + df.setMultiplier(3); + check("1000", new BigDecimal("333")); + } + + /** + * Test for special numbers + * Double.NaN + * Double.POSITIVE_INFINITY + * Double.NEGATIVE_INFINITY + */ + void test_Parse_in_DecimalFormat_SpecialNumber() { + df = new DecimalFormat(); + df.setParseBigDecimal(true); + + String[] numbers = { + "0", "0.0", "25", "25.0", "25.5", "\u221e", "\ufffd", + "-0", "-0.0", "-25", "-25.0", "-25.5", "-\u221e", + }; + int multipliers[] = {5, -5}; + Number[][] expected = { + { + new BigDecimal("0"), new BigDecimal("0.0"), new BigDecimal("5"), + new BigDecimal("5.0"), new BigDecimal("5.1"), + new Double(Double.POSITIVE_INFINITY), new Double(Double.NaN), + new BigDecimal("0"), new BigDecimal("0.0"), + new BigDecimal("-5"), new BigDecimal("-5.0"), + new BigDecimal("-5.1"), + new Double(Double.NEGATIVE_INFINITY), new Double(Double.NaN), + }, + { + new BigDecimal("0"), new BigDecimal("0.0"), + new BigDecimal("-5"), new BigDecimal("-5.0"), + new BigDecimal("-5.1"), + new Double(Double.NEGATIVE_INFINITY), new Double(Double.NaN), + new BigDecimal("0"), new BigDecimal("0.0"), new BigDecimal("5"), + new BigDecimal("5.0"), new BigDecimal("5.1"), + new Double(Double.POSITIVE_INFINITY), + }, + }; + + for (int i = 0; i < multipliers.length; i++) { + df.setMultiplier(multipliers[i]); + for (int j = 0; j < numbers.length; j++) { + check(String.valueOf(numbers[j]), expected[i][j]); + } + } + } + + /** + * Test for special numbers + */ + void test_Parse_in_DecimalFormat_Other() { + df = new DecimalFormat(); + df.setParseBigDecimal(true); + + String[] numbers = { + "-9223372036854775808", // Long.MIN_VALUE + }; + int multipliers[] = {1, -1}; + String[][] expected = { + {"-9223372036854775808"}, // Long.MIN_VALUE + {"9223372036854775808"}, // Long.MAX_VALUE+1 = abs(MIN_VALUE) + }; + + for (int i = 0; i < multipliers.length; i++) { + df.setMultiplier(multipliers[i]); + for (int j = 0; j < numbers.length; j++) { + check(String.valueOf(numbers[j]), + new BigDecimal(expected[i][j])); + } + } + } + + static final String[] patterns = { + " {0, number} ", + " {0, number} ", + " {0, number, currency} ", + " {0, number, currency} ", + " {0, number, percent} ", + " {0, number, percent} ", + " {0, number,#,##0.###E0} ", + " {0, number,#,##0.###E0} ", + + " {0, number} ", + " {0, number} ", + " {0, number, integer} ", + " {0, number, integer} ", + " {0, number, currency} ", + " {0, number, currency} ", + " {0, number, percent} ", + " {0, number, percent} ", + " {0, number,#,##0.###E0} ", + " {0, number,#,##0.###E0} ", + }; + static final String[] from = { + " 12,345,678,901,234,567,890.98765432109876543210987654321 ", + " -12,345,678,901,234,567,890.98765432109876543210987654321 ", + " $12,345,678,901,234,567,890.98765432109876543210987654321 ", + " ($12,345,678,901,234,567,890.98765432109876543210987654321) ", + " 1,234,567,890,123,456,789,098.76543210987654321098765432100% ", + " -1,234,567,890,123,456,789,098.76543210987654321098765432100% ", + " 12,345,678,901,234,567,890.98765432109876543210987654321E-20 ", + " -12,345,678,901,234,567,890.98765432109876543210987654321E-20 ", + + " 9,876,543,210,987,654,321,098,765,432,109,876,543,210 ", + " -9,876,543,210,987,654,321,098,765,432,109,876,543,210 ", + " 9,876,543,210,987,654,321,098,765,432,109,876,543,210E5 ", + " -9,876,543,210,987,654,321,098,765,432,109,876,543,210E-5 ", + " $9,876,543,210,987,654,321,098,765,432,109,876,543,210.00 ", + " ($9,876,543,210,987,654,321,098,765,432,109,876,543,210.00) ", + " 987,654,321,098,765,432,109,876,543,210,987,654,321,012% ", + " -987,654,321,098,765,432,109,876,543,210,987,654,321,012% ", + " 98,765,432,109,876,543,210.98765432109876543210E20 ", + " -987,654,321,098,765,432,109,876,543,210,987,654,321,000,000,000,000,000,000,000E-20 ", + }; + + static final String[] expected1 = { // isParseIntegerOnly() == false + "12345678901234567890.98765432109876543210987654321", + "-12345678901234567890.98765432109876543210987654321", + "12345678901234567890.98765432109876543210987654321", + "-12345678901234567890.98765432109876543210987654321", + "12345678901234567890.98765432109876543210987654321", + "-12345678901234567890.98765432109876543210987654321", + "0.1234567890123456789098765432109876543210987654321", + "-0.1234567890123456789098765432109876543210987654321", + + "9876543210987654321098765432109876543210", + "-9876543210987654321098765432109876543210", + "9.876543210987654321098765432109876543210E44", + "-98765432109876543210987654321098765.43210", + "9876543210987654321098765432109876543210.00", + "-9876543210987654321098765432109876543210.00", + "9876543210987654321098765432109876543210.12", + "-9876543210987654321098765432109876543210.12", + "9876543210987654321098765432109876543210", + "-9876543210987654321098765432109876543210.00000000000000000000", + }; + static final int[] parsePosition1 = { + 60, 61, 61, 63, 64, 65, 64, 65, + 57, 58, 59, 61, 61, 63, 60, 61, 54, 88, + }; + + /** + * Test for MessageFormat: setParseIntegerOnly(false) + */ + void test_Parse_in_MessageFormat_NotParseIntegerOnly() { + for (int i=0; i < patterns.length; i++) { + pp = new ParsePosition(0); + Object[] parsed = null; + + try { + MessageFormat mf = new MessageFormat(patterns[i]); + Format[] formats = mf.getFormats(); + for (int j=0; j < formats.length; j++) { + ((DecimalFormat)formats[j]).setParseBigDecimal(true); + } + + parsed = mf.parse(from[i], pp); + + if (pp.getErrorIndex() != -1) { + errln("Case" + (i+1) + + ": getErrorIndex() returns wrong value. expected:-1, got:"+ + pp.getErrorIndex() + " for " + from[i]); + } + if (pp.getIndex() != parsePosition1[i]) { + errln("Case" + (i+1) + + ": getIndex() returns wrong value. expected:" + + parsePosition1[i] + ", got:"+ pp.getIndex() + + " for " + from[i]); + } + } + catch(Exception e) { + errln("Unexpected exception: " + e.getMessage()); + } + + checkType(from[i], getType(new BigDecimal(expected1[i])), + getType((Number)parsed[0])); + checkParse(from[i], new BigDecimal(expected1[i]), + (Number)parsed[0]); + } + } + + static final String[] expected2 = { // isParseIntegerOnly() == true + "12345678901234567890", + "-12345678901234567890", + "12345678901234567890", + "-12345678901234567890", + "12345678901234567890", + "-12345678901234567890", + "0", + "0", + + "9876543210987654321098765432109876543210", + "-9876543210987654321098765432109876543210", + "9.876543210987654321098765432109876543210E44", + "-98765432109876543210987654321098765.43210", + "9876543210987654321098765432109876543210", + "-9876543210987654321098765432109876543210", + "9876543210987654321098765432109876543210.12", + "-9876543210987654321098765432109876543210.12", + "9876543210987654321098765432109876543210", + "-9876543210987654321098765432109876543210.00000000000000000000", + }; + static final int[][] parsePosition2 = { // {errorIndex, index} + /* + * Should keep in mind that the expected result is different from + * DecimalFormat.parse() for some cases. + */ + {28, 0}, // parsing stopped at '.' + {29, 0}, // parsing stopped at '.' + {29, 0}, // parsing stopped at '.' + {2, 0}, // parsing stopped at '(' because cannot find ')' + {2, 0}, // parsing stopped at the first numeric + // because cannot find '%' + {2, 0}, // parsing stopped at the first numeric + // because cannot find '%' + {28, 0}, // parsing stopped at '.' + {29, 0}, // parsing stopped at '.' + + {-1, 57}, {-1, 58}, {-1, 59}, {-1, 61}, + {56, 0}, // parsing stopped at '.' + // because cannot find '%' + {2, 0}, // parsing stopped at '(' because cannot find ')' + {-1, 60}, {-1, 61}, + {28, 0}, // parsing stopped at '.' + {-1, 88}, + }; + + /** + * Test for MessageFormat: setParseIntegerOnly(true) + */ + void test_Parse_in_MessageFormat_ParseIntegerOnly() { + for (int i=0; i < patterns.length; i++) { + pp = new ParsePosition(0); + Object[] parsed = null; + + try { + MessageFormat mf = new MessageFormat(patterns[i]); + Format[] formats = mf.getFormats(); + for (int j=0; j < formats.length; j++) { + ((DecimalFormat)formats[j]).setParseBigDecimal(true); + ((DecimalFormat)formats[j]).setParseIntegerOnly(true); + } + + parsed = mf.parse(from[i], pp); + + if (pp.getErrorIndex() != parsePosition2[i][0]) { + errln("Case" + (i+1) + + ": getErrorIndex() returns wrong value. expected:" + + parsePosition2[i][0] + ", got:"+ pp.getErrorIndex() + + " for " + from[i]); + } + if (pp.getIndex() != parsePosition2[i][1]) { + errln("Case" + (i+1) + + ": getIndex() returns wrong value. expected:" + + parsePosition2[i][1] + ", got:"+ pp.getIndex() + + " for " + from[i]); + } + } + catch(Exception e) { + errln("Unexpected exception: " + e.getMessage()); + } + + if (parsePosition2[i][0] == -1) { + checkType(from[i], getType(new BigDecimal(expected2[i])), + getType((Number)parsed[0])); + checkParse(from[i], new BigDecimal(expected2[i]), + (Number)parsed[0]); + } + } + } + + static final String[] from3 = { + "12,345,678,901,234,567,890.98765432109876543210987654321", + "-12,345,678,901,234,567,890.98765432109876543210987654321", + "9,876,543,210,987,654,321,098,765,432,109,876,543,210", + "-9,876,543,210,987,654,321,098,765,432,109,876,543,210", + "1234556790000E-8", + }; + static final String[] expected3 = { + "12345678901234567890", + "-12345678901234567890", + "9876543210987654321098765432109876543210", + "-9876543210987654321098765432109876543210", + "12345.56790000", + }; + static final int[][] parsePosition3 = { // {errorIndex, index} + {-1, 26}, + {-1, 27}, + {-1, 53}, + {-1, 54}, + {-1, 16}, + }; + + /** + * Test for DecimalFormat: setParseIntegerOnly(true) + */ + void test_Parse_in_DecimalFormat_ParseIntegerOnly() { + DecimalFormat df = (DecimalFormat)NumberFormat.getIntegerInstance(); + df.setParseBigDecimal(true); + + for (int i=0; i < from3.length; i++) { + pp = new ParsePosition(0); + Number parsed = null; + + try { + parsed = df.parse(from3[i], pp); + + if (pp.getErrorIndex() != parsePosition3[i][0]) { + errln("Case" + (i+1) + + ": getErrorIndex() returns wrong value. expected:" + + parsePosition3[i][0] + ", got:"+ pp.getErrorIndex() + + " for " + from3[i]); + } + if (pp.getIndex() != parsePosition3[i][1]) { + errln("Case" + (i+1) + + ": getIndex() returns wrong value. expected:" + + parsePosition3[i][1] + ", got:"+ pp.getIndex() + + " for " + from3[i]); + } + } + catch(Exception e) { + errln("Unexpected exception: " + e.getMessage()); + } + + if (parsePosition3[i][0] == -1) { + checkType(from3[i], getType(new BigDecimal(expected3[i])), + getType(parsed)); + checkParse(from3[i], new BigDecimal(expected3[i]), parsed); + } + } + } + + protected void check(String from, Number to) { + pp = new ParsePosition(0); + try { + parsed = df.parse(from, pp); + } + catch(Exception e) { + exceptionOccurred = true; + errln(e.getMessage()); + } + if (!exceptionOccurred) { + checkParse(from, to, parsed); + checkType(from, getType(to), getType(parsed)); + checkParsePosition(from, from.length(), pp.getIndex()); + } + } + + private void checkParse(String orig, Number expected, Number got) { + if (!expected.equals(got)) { + errln("Parsing... failed." + + "\n original: " + orig + + "\n parsed: " + got + + "\n expected: " + expected + "\n"); + } + } + + private void checkType(String orig, String expected, String got) { + if (!expected.equals(got)) { + errln("Parsing... unexpected Class returned." + + "\n original: " + orig + + "\n got: " + got + + "\n expected: " + expected + "\n"); + } + } + + private void checkParsePosition(String orig, int expected, int got) { + if (expected != got) { + errln("Parsing... wrong ParsePosition returned." + + "\n original: " + orig + + "\n got: " + got + + "\n expected: " + expected + "\n"); + } + } + + private String getType(Number number) { + return number.getClass().getName(); + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/Bug4208135.java b/jdk/test/java/text/Format/NumberFormat/Bug4208135.java new file mode 100644 index 00000000000..3f5785b6f6c --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/Bug4208135.java @@ -0,0 +1,127 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @summary Confirm that the decimal separator is shown when explicitly requested. + * @bug 4208135 + */ + +import java.math.*; +import java.text.*; +import java.util.*; + +public class Bug4208135 { + + static DecimalFormat df; + + static boolean err = false; + + static public void main(String[] args){ + + Locale defaultLoc = Locale.getDefault(); + Locale.setDefault(Locale.US); + + df = new DecimalFormat(); + + df.applyPattern("0.#E0"); + + df.setDecimalSeparatorAlwaysShown(true); + checkFormat(new Double(0.0), "0.E0"); + checkFormat(new Double(10.0), "1.E1"); + checkFormat(new Double(1000.0), "1.E3"); + checkFormat(new Long(0), "0.E0"); + checkFormat(new Long(10), "1.E1"); + checkFormat(new Long(1000), "1.E3"); + checkFormat(new BigDecimal("0.0"), "0.E0"); + checkFormat(new BigDecimal("10.0"), "1.E1"); + checkFormat(new BigDecimal("1000.0"), "1.E3"); + checkFormat(new BigInteger("00"), "0.E0"); + checkFormat(new BigInteger("10"), "1.E1"); + checkFormat(new BigInteger("1000"), "1.E3"); + + df.setDecimalSeparatorAlwaysShown(false); + checkFormat(new Double(0.0), "0E0"); + checkFormat(new Double(10.0), "1E1"); + checkFormat(new Double(1000.0), "1E3"); + checkFormat(new Long(0), "0E0"); + checkFormat(new Long(10), "1E1"); + checkFormat(new Long(1000), "1E3"); + checkFormat(new BigDecimal("0.0"), "0E0"); + checkFormat(new BigDecimal("10.0"), "1E1"); + checkFormat(new BigDecimal("1000.0"), "1E3"); + checkFormat(new BigInteger("0"), "0E0"); + checkFormat(new BigInteger("10"), "1E1"); + checkFormat(new BigInteger("1000"), "1E3"); + + df.applyPattern("0.###"); + + df.setDecimalSeparatorAlwaysShown(true); + checkFormat(new Double(0.0), "0."); + checkFormat(new Double(10.0), "10."); + checkFormat(new Double(1000.0), "1000."); + checkFormat(new Long(0), "0."); + checkFormat(new Long(10), "10."); + checkFormat(new Long(1000), "1000."); + checkFormat(new BigDecimal("0.0"), "0."); + checkFormat(new BigDecimal("10.0"), "10."); + checkFormat(new BigDecimal("1000.0"), "1000."); + checkFormat(new BigInteger("0"), "0."); + checkFormat(new BigInteger("10"), "10."); + checkFormat(new BigInteger("1000"), "1000."); + + df.setDecimalSeparatorAlwaysShown(false); + checkFormat(new Double(0.0), "0"); + checkFormat(new Double(10.0), "10"); + checkFormat(new Double(1000.0), "1000"); + checkFormat(new Long(0), "0"); + checkFormat(new Long(10), "10"); + checkFormat(new Long(1000), "1000"); + checkFormat(new BigDecimal("0.0"), "0"); + checkFormat(new BigDecimal("10.0"), "10"); + checkFormat(new BigDecimal("1000.0"), "1000"); + checkFormat(new BigInteger("0"), "0"); + checkFormat(new BigInteger("10"), "10"); + checkFormat(new BigInteger("1000"), "1000"); + + Locale.setDefault(defaultLoc); + + if (err) { + throw new RuntimeException("Wrong format/parse with DecimalFormat"); + } + } + + static void checkFormat(Number num, String expected) { + String got = df.format(num); + if (!got.equals(expected)) { + err = true; + System.err.println(" DecimalFormat format(" + + num.getClass().getName() + + ") error:" + + "\n\tnumber: " + num + + "\n\tSeparatorShown? : " + df.isDecimalSeparatorAlwaysShown() + + "\n\tgot: " + got + + "\n\texpected: " + expected); + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/Bug4833877.java b/jdk/test/java/text/Format/NumberFormat/Bug4833877.java new file mode 100644 index 00000000000..5f3c5056014 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/Bug4833877.java @@ -0,0 +1,464 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @summary Confirm that the negative multiplier works as expected. + * @bug 4833877 + */ + +import java.math.*; +import java.text.*; +import java.util.*; + +public class Bug4833877 { + + static DecimalFormat df; + + static boolean err = false; + + public static void main(String[] args) throws Exception { + + Locale defaultLoc = Locale.getDefault(); + Locale.setDefault(Locale.US); + + /* ================================================================ */ + + df = new DecimalFormat(); + df.setMaximumFractionDigits(50); + df.setMultiplier(4); + + /* + * Test for double/Double + */ + checkFormat(new Double(252.5252525252525), "1,010.10101010101"); + checkParse("-1,010.10101010101", new Double(-252.5252525252525)); + + checkFormat(new Double(-2222.2222), "-8,888.8888"); + checkParse("8888.8888", new Double(2222.2222)); + + /* + * Test for long/Long + */ + checkFormat(new Long(1000), "4,000"); + checkParse("-4,000", new Long(-1000)); + + checkFormat(new Long(-250), "-1,000"); + checkParse("1000", new Long(250)); + + /* ---------------------------------------------------------------- */ + + df.setParseBigDecimal(true); + + /* + * Test for BigDecimal + */ + checkFormat(new BigDecimal("22222.222222222222222222222"), + "88,888.888888888888888888888"); + checkParse("-88,888.888888888888888888888", + new BigDecimal("-22222.222222222222222222222")); + + checkFormat(new BigDecimal("-1111111111111111111.111111111111111111"), + "-4,444,444,444,444,444,444.444444444444444444"); + checkParse("4444444444444444444.444444444444444444", + new BigDecimal("1111111111111111111.111111111111111111")); + + /* + * Test for BigInteger + */ + checkFormat(new BigInteger("22222222222222222222222222"), + "88,888,888,888,888,888,888,888,888"); + checkParse("-88,888,888,888,888,888,888,888,888", + new BigDecimal("-22222222222222222222222222")); + + checkFormat(new BigInteger("-1111111111111111111111111"), + "-4,444,444,444,444,444,444,444,444"); + checkParse("4444444444444444444444444", + new BigDecimal("1111111111111111111111111")); + + /* ---------------------------------------------------------------- */ + + df.setParseBigDecimal(false); + df.setMultiplier(-4); + + /* + * Test for double/Double + */ + checkFormat(new Double(252.5252525252525), "-1,010.10101010101"); + checkParse("-1,010.10101010101", new Double(252.5252525252525)); + + checkFormat(new Double(-2222.2222), "8,888.8888"); + checkParse("8888.8888", new Double(-2222.2222)); + + /* + * Test for long/Long + */ + checkFormat(new Long(1000), "-4,000"); + checkParse("-4,000", new Long(1000)); + + checkFormat(new Long(-250), "1,000"); + checkParse("1000", new Long(-250)); + + /* ---------------------------------------------------------------- */ + + df.setParseBigDecimal(true); + + /* + * Test for BigDecimal + */ + checkFormat(new BigDecimal("22222.222222222222222222222"), + "-88,888.888888888888888888888"); + checkParse("-88,888.888888888888888888888", + new BigDecimal("22222.222222222222222222222")); + + checkFormat(new BigDecimal("-1111111111111111111.111111111111111111"), + "4,444,444,444,444,444,444.444444444444444444"); + checkParse("4444444444444444444.444444444444444444", + new BigDecimal("-1111111111111111111.111111111111111111")); + + /* + * Test for BigInteger + */ + checkFormat(new BigInteger("22222222222222222222222222"), + "-88,888,888,888,888,888,888,888,888"); + checkParse("-88,888,888,888,888,888,888,888,888", + new BigDecimal("22222222222222222222222222")); + + checkFormat(new BigInteger("-1111111111111111111111111"), + "4,444,444,444,444,444,444,444,444"); + checkParse("4444444444444444444444444", + new BigDecimal("-1111111111111111111111111")); + + /* ---------------------------------------------------------------- */ + + df.setParseBigDecimal(false); + df.setMultiplier(-3); + + /* + * Test for double/Double + */ + checkFormat(new Double(3333.3333333), "-9,999.9999999"); + checkParse("-10,000.00000000000", new Double(3333.3333333333335));// rounding error + + df.setParseIntegerOnly(true); + checkFormat(new Double(-3333.3333333), "9,999.9999999"); + checkParse("10,000.00000000000", new Long(-3333)); + df.setParseIntegerOnly(false); + checkFormat(new Double(-3333.3333333), "9,999.9999999"); + checkParse("10,000.00000000000", new Double(-3333.3333333333335));// rounding error + + /* + * Test for long/Long + */ + checkFormat(new Long(3333), "-9,999"); + df.setParseIntegerOnly(true); + checkParse("-10,000", new Long(3333)); + df.setParseIntegerOnly(false); + checkParse("-10000", new Double(3333.3333333333335));// rounding error + + checkFormat(new Long(-3333), "9,999"); + df.setParseIntegerOnly(true); + checkParse("10,000", new Long(-3333)); + df.setParseIntegerOnly(false); + checkParse("10000", new Double(-3333.3333333333335));// rounding error + + /* ---------------------------------------------------------------- */ + + df.setParseBigDecimal(true); + + /* + * Test for BigDecimal + */ + checkFormat(new BigDecimal("33333.333333333333333333333"), + "-99,999.999999999999999999999"); + checkParse("-100,000.000000000000000000000", + new BigDecimal("33333.333333333333333333333")); + + checkFormat(new BigDecimal("-33333.333333333333333333333"), + "99,999.999999999999999999999"); + checkParse("100,000.000000000000000000000", + new BigDecimal("-33333.333333333333333333333")); + + /* + * Test for BigInteger + */ + checkFormat(new BigInteger("33333333333333333333333333"), + "-99,999,999,999,999,999,999,999,999"); + checkParse("-100,000,000,000,000,000,000,000,000", + new BigDecimal("33333333333333333333333333")); + + checkFormat(new BigInteger("-33333333333333333333333333"), + "99,999,999,999,999,999,999,999,999"); + df.setParseIntegerOnly(true); + checkParse("100,000,000,000,000,000,000,000,000.000", + new BigDecimal("-33333333333333333333333333")); + df.setParseIntegerOnly(false); + checkParse("100,000,000,000,000,000,000,000,000.000", + new BigDecimal("-33333333333333333333333333.333")); + + /* ================================================================ */ + + df = new DecimalFormat("0.#E0;-0.#E0"); + df.setMaximumFractionDigits(50); + df.setMultiplier(4); + + /* + * Test for double/Double + */ + checkFormat(new Double(252.5252525252525), "1.01010101010101E3"); + checkParse("-1.01010101010101E3", new Double(-2.525252525252525E2)); + + checkFormat(new Double(-2222.2222), "-8.8888888E3"); + checkParse("8888.8888", new Double(2.2222222E3)); + + /* + * Test for long/Long + */ + checkFormat(new Long(1000), "4E3"); + checkParse("-4E3", new Long(-1000)); + + checkFormat(new Long(-250), "-1E3"); + checkParse("1000", new Long(250)); + + /* ---------------------------------------------------------------- */ + + df.setParseBigDecimal(true); + + /* + * Test for BigDecimal + */ + + checkFormat(new BigDecimal("22222.222222222222222222222"), + "8.8888888888888888888888888E4"); + checkParse("-8.8888888888888888888888888E4", + new BigDecimal("-2.2222222222222222222222222E4")); + + checkFormat(new BigDecimal("-1111111111111111111.111111111111111111"), + "-4.444444444444444444444444444444444444E18"); + checkParse("4444444444444444444.444444444444444444", + new BigDecimal("1111111111111111111.111111111111111111")); + + /* + * Test for BigInteger + */ + checkFormat(new BigInteger("22222222222222222222222222"), + "8.8888888888888888888888888E25"); + checkParse("-8.8888888888888888888888888E25", + new BigDecimal("-22222222222222222222222222")); + + checkFormat(new BigInteger("-1111111111111111111111111"), + "-4.444444444444444444444444E24"); + checkParse("4444444444444444444444444", + new BigDecimal("1111111111111111111111111")); + + /* ---------------------------------------------------------------- */ + + df.setParseBigDecimal(false); + df.setMultiplier(-4); + + /* + * Test for double/Double + */ + checkFormat(new Double(252.5252525252525), "-1.01010101010101E3"); + checkParse("-1.01010101010101E3", new Double(2.525252525252525E2)); + + checkFormat(new Double(-2222.2222), "8.8888888E3"); + checkParse("8888.8888", new Double(-2.2222222E3)); + + /* + * Test for long/Long + */ + checkFormat(new Long(1000), "-4E3"); + checkParse("-4E3", new Long(1000)); + + checkFormat(new Long(-250), "1E3"); + checkParse("1000", new Long(-250)); + + /* ---------------------------------------------------------------- */ + + df.setParseBigDecimal(true); + + /* + * Test for BigDecimal + */ + + checkFormat(new BigDecimal("22222.222222222222222222222"), + "-8.8888888888888888888888888E4"); + checkParse("-8.8888888888888888888888888E4", + new BigDecimal("2.2222222222222222222222222E4")); + + checkFormat(new BigDecimal("-1111111111111111111.111111111111111111"), + "4.444444444444444444444444444444444444E18"); + checkParse("4444444444444444444.444444444444444444", + new BigDecimal("-1111111111111111111.111111111111111111")); + + /* + * Test for BigInteger + */ + checkFormat(new BigInteger("22222222222222222222222222"), + "-8.8888888888888888888888888E25"); + checkParse("-8.8888888888888888888888888E25", + new BigDecimal("22222222222222222222222222")); + + checkFormat(new BigInteger("-1111111111111111111111111"), + "4.444444444444444444444444E24"); + checkParse("4444444444444444444444444", + new BigDecimal("-1111111111111111111111111")); + + /* ---------------------------------------------------------------- */ + + df.setParseBigDecimal(false); + df.setMultiplier(-3); + + /* + * Test for double/Double + */ + checkFormat(new Double(3333.3333333), "-9.9999999999E3"); + checkParse("-1.00000000000000E3", new Double(3.33333333333333333E2)); + + df.setParseIntegerOnly(true); + checkFormat(new Double(-3333.3333333), "9.9999999999E3"); + checkParse("10.00000000000000E3", new Long(-3)); + df.setParseIntegerOnly(false); + checkFormat(new Double(-3333.3333333), "9.9999999999E3"); + checkParse("10.00000000000000E3", new Double(-3.33333333333333333E3)); + + /* + * Test for long/Long + */ + checkFormat(new Long(3333), "-9.999E3"); + df.setParseIntegerOnly(true); + checkParse("-1.0E4", new Long(0)); + df.setParseIntegerOnly(false); + checkParse("-1.0E4", new Double(3333.3333333333335)); + + checkFormat(new Long(-3333), "9.999E3"); + df.setParseIntegerOnly(true); + checkParse("10.0E4", new Long(-3)); + df.setParseIntegerOnly(false); + checkParse("10.0E4", new Double(-33333.3333333333336)); + + /* ---------------------------------------------------------------- */ + + df.setParseBigDecimal(true); + + /* + * Test for BigDecimal + */ + + checkFormat(new BigDecimal("333.333333333333333333333333"), + "-9.99999999999999999999999999E2"); + checkParse("-1.0000000000000000000000000E3", + new BigDecimal("3.333333333333333333333333E2")); + + df.setParseIntegerOnly(true); + checkFormat(new BigDecimal("-333.333333333333333333333333"), + "9.99999999999999999999999999E2"); + checkParse("10.0000000000000000000000000E3", + new BigDecimal("-3")); + df.setParseIntegerOnly(false); + checkFormat(new BigDecimal("-333.333333333333333333333333"), + "9.99999999999999999999999999E2"); + checkParse("1.0000000000000000000000000E3", + new BigDecimal("-3.333333333333333333333333E2")); + + /* + * Test for BigInteger + */ + checkFormat(new BigInteger("33333333333333333333333333"), + "-9.9999999999999999999999999E25"); + checkParse("-100000000000000000000000000", + new BigDecimal("33333333333333333333333333")); + + checkFormat(new BigInteger("-33333333333333333333333333"), + "9.9999999999999999999999999E25"); + df.setParseIntegerOnly(true); + checkParse("100000000000000000000000000000", + new BigDecimal("-33333333333333333333333333333")); + df.setParseIntegerOnly(false); + checkParse("100000000000000000000000000.000", + new BigDecimal("-33333333333333333333333333.333")); + + /* ================================================================ */ + + Locale.setDefault(defaultLoc); + + if (err) { + throw new RuntimeException("Wrong format/parse with DecimalFormat"); + } + } + + static void checkFormat(Number num, String expected) { + String got = df.format(num); + if (!got.equals(expected)) { + err = true; + System.err.println(" DecimalFormat format(" + + num.getClass().getName() + + ") error:" + + "\n\tnumber: " + num + + "\n\tpattern: " + df.toPattern() + + "\n\tmultiplier: " + df.getMultiplier() + + "\n\tgot: " + got + + "\n\texpected: " + expected); + } + } + + static void checkParse(String text, Double expected) { + Double got = (Double)df.parse(text, new ParsePosition(0)); + if (!got.equals(expected)) { + err = true; + System.err.println(" DecimalFormat parse(double) error:" + + "\n\ttext: " + text + + "\n\tpattern: " + df.toPattern() + + "\n\tmultiplier: " + df.getMultiplier() + + "\n\tgot: " + got + + "\n\texpected: " + expected); + } + } + + static void checkParse(String text, Long expected) { + Long got = (Long)df.parse(text, new ParsePosition(0)); + if (!got.equals(expected)) { + err = true; + System.err.println(" DecimalFormat parse(long) error:" + + "\n\ttext: " + text + + "\n\tpattern: " + df.toPattern() + + "\n\tmultiplier: " + df.getMultiplier() + + "\n\tgot: " + got + + "\n\texpected: " + expected); + } + } + + static void checkParse(String text, BigDecimal expected) { + BigDecimal got = (BigDecimal)df.parse(text, new ParsePosition(0)); + if (!got.equals(expected)) { + err = true; + System.err.println(" DecimalFormat parse(BigDecimal) error:" + + "\n\ttext: " + text + + "\n\tpattern: " + df.toPattern() + + "\n\tmultiplier: " + df.getMultiplier() + + "\n\tgot: " + got + + "\n\texpected: " + expected); + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/Bug4838107.java b/jdk/test/java/text/Format/NumberFormat/Bug4838107.java new file mode 100644 index 00000000000..a15d537d8e6 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/Bug4838107.java @@ -0,0 +1,248 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4838107 8008577 + * @summary Confirm that DecimalFormat can format a number with negative exponent number correctly. + * @library /java/text/testlib + * @run main/othervm -Djava.locale.providers=COMPAT,SPI Bug4838107 + */ + +import java.math.*; +import java.util.*; +import java.text.*; + +public class Bug4838107 extends IntlTest { + + static DecimalFormat df; + static DecimalFormatSymbols dfs; + static boolean err = false; + + static public void main(String[] args) { + Locale defaultLoc = Locale.getDefault(); + Locale.setDefault(Locale.US); + + /** + * This bug is about exponential formatting. But I added test cases for: + * - Double and BigDecimal numbers which don't have exponent parts. + * - Long and BigInteger numbers which don't support exponential + * notation. + * because there are few test cases for suffix and prefix. + * And also, I added test cases to guarantee further formatting and + * parsing using the same DecimalFormat instance will not change the + * Number's value anymore. + */ + + test_double(); + test_long(); + test_BigDecimal(); + test_BigInteger(); + + Locale.setDefault(defaultLoc); + + if (err) { + throw new RuntimeException("Wrong format with DecimalFormat"); + } + } + + static void test_double() { + df = new DecimalFormat(); + dfs = df.getDecimalFormatSymbols(); + + /* Test with default pattern */ + test(new Double(1234), "1,234"); + test(new Double(0.1234), "0.123"); // rounded + test(new Double(-1234), "-1,234"); + test(new Double(-0.1234), "-0.123"); // rounded + + test(new Double(Double.POSITIVE_INFINITY), "\u221e"); + test(new Double(Double.NEGATIVE_INFINITY), "-\u221e"); + test(new Double(Double.NaN), "\ufffd"); // without prefix and suffix + test(new Double(0.0), "0"); + test(new Double(-0.0), "-0"); // with the minus sign + + /* Specify a pattern and the minus sign. */ + prepareFormatter("

#.###E00", 'm'); + test(new Double(1234), "

1.234E03"); + test(new Double(0.1234), "

1.234Em01"); + test(new Double(-1234), "m

1.234E03"); + test(new Double(-0.1234), "m

1.234Em01"); + + prepareFormatter("

#.###E00;#.###E00", 'm'); + test(new Double(1234), "

1.234E03"); + test(new Double(0.1234), "

1.234Em01"); + test(new Double(-1234), "1.234E03"); + test(new Double(-0.1234), "1.234Em01"); + + prepareFormatter("#.###E00;

#.###E00", 'm'); + test(new Double(1234), "1.234E03"); + test(new Double(0.1234), "1.234Em01"); + test(new Double(-1234), "

1.234E03"); + test(new Double(-0.1234), "

1.234Em01"); + + prepareFormatter("

#.###E00;

-#.###E00", 'm'); + test(new Double(1234), "

1.234E03"); + test(new Double(0.1234), "

1.234Em01"); + test(new Double(-1234), "

m1.234E03"); + test(new Double(-0.1234), "

m1.234Em01"); + + test(new Double(Double.POSITIVE_INFINITY), "

\u221e"); + test(new Double(Double.NEGATIVE_INFINITY), "

m\u221e"); + test(new Double(Double.NaN), "\ufffd"); // without prefix and suffix + test(new Double(0.0), "

0E00"); + test(new Double(-0.0), "

m0E00"); // with the minus sign + } + + static void test_BigDecimal() { + df = new DecimalFormat(); + dfs = df.getDecimalFormatSymbols(); + + /* Test with default pattern */ + test(new BigDecimal("123456789012345678901234567890"), + "123,456,789,012,345,678,901,234,567,890"); + test(new BigDecimal("0.000000000123456789012345678901234567890"), + "0"); + test(new BigDecimal("-123456789012345678901234567890"), + "-123,456,789,012,345,678,901,234,567,890"); + test(new BigDecimal("-0.000000000123456789012345678901234567890"), + "-0"); + + test(new BigDecimal("0"), "0"); + test(new BigDecimal("-0"), "0"); + + /* Specify a pattern and the minus sign. */ + prepareFormatter("

#.####################E00;

-#.####################E00", 'm'); + test(new BigDecimal("123456789012345678901234567890"), + "

1.23456789012345678901E29"); + test(new BigDecimal("0.000000000123456789012345678901234567890"), + "

1.23456789012345678901Em10"); + test(new BigDecimal("-123456789012345678901234567890"), + "

m1.23456789012345678901E29"); + test(new BigDecimal("-0.000000000123456789012345678901234567890"), + "

m1.23456789012345678901Em10"); + + test(new BigDecimal("0"), "

0E00"); + test(new BigDecimal("-0"), "

0E00"); + } + + static void test_long() { + df = new DecimalFormat(); + dfs = df.getDecimalFormatSymbols(); + + /* Test with default pattern */ + test(new Long(123456789), "123,456,789"); + test(new Long(-123456789), "-123,456,789"); + + test(new Long(0), "0"); + test(new Long(-0), "0"); + + /* Specify a pattern and the minus sign. */ + prepareFormatter("

#,###;

-#,###", 'm'); + test(new Long(123456789), "

123,456,789"); + test(new Long(-123456789), "

m123,456,789"); + + test(new Long(0), "

0"); + test(new Long(-0), "

0"); + } + + static void test_BigInteger() { + df = new DecimalFormat(); + dfs = df.getDecimalFormatSymbols(); + + /* Test with default pattern */ + test(new BigInteger("123456789012345678901234567890"), + "123,456,789,012,345,678,901,234,567,890"); + test(new BigInteger("-123456789012345678901234567890"), + "-123,456,789,012,345,678,901,234,567,890"); + + test(new BigInteger("0"), "0"); + test(new BigInteger("-0"), "0"); + + /* Specify a pattern and the minus sign. */ + prepareFormatter("

#,###;

-#,###", 'm'); + test(new BigInteger("123456789012345678901234567890"), + "

123,456,789,012,345,678,901,234,567,890"); + test(new BigInteger("-123456789012345678901234567890"), + "

m123,456,789,012,345,678,901,234,567,890"); + + test(new BigInteger("0"), "

0"); + test(new BigInteger("-0"), "

0"); + } + + static void prepareFormatter(String pattern, char minusSign) { + dfs = df.getDecimalFormatSymbols(); + df.applyPattern(pattern); + dfs.setMinusSign(minusSign); + df.setDecimalFormatSymbols(dfs); + } + + static void test(Number num, String str) { + String formatted = df.format(num); + if (!formatted.equals(str)) { + err = true; + System.err.println(" DecimalFormat format(" + + num.getClass().getName() + + ") error: \n\tnumber: " + num + + "\n\tminus sign: " + dfs.getMinusSign() + + "\n\tgot: " + formatted + + "\n\texpected: " + str); + return; + } + + if (num instanceof BigDecimal || num instanceof BigInteger) { + df.setParseBigDecimal(true); + } + Number parsed1 = null, parsed2 = null; + try { + parsed1 = df.parse(formatted); + formatted = df.format(parsed1); + parsed2 = df.parse(formatted); + if (!parsed1.equals(parsed2)) { + err = true; + System.err.println(" DecimalFormat roundtrip parse(" + + num.getClass().getName() + + ") error: \n\toriginal number: " + str + + "\n\tparsed number: " + parsed1 + + " (" + parsed1.getClass().getName() + ")" + + "\n\tformatted number: " + formatted + + "\n\tre-parsed number: " + parsed2 + + " (" + parsed2.getClass().getName() + ")" + + "\n\tminus sign: " + dfs.getMinusSign()); + } + } + catch (Exception e) { + err = true; + System.err.println(" DecimalFormat parse(" + + num.getClass().getName() + + ") threw an Exception: " + e.getMessage() + + "\n\toriginal number: " + str + + "\n\tparsed number : " + parsed1 + + " (" + parsed1.getClass().getName() + ")" + + "\n\tformatted number: " + formatted + + "\n\tre-parsed number: " + parsed2 + + " (" + parsed2.getClass().getName() + ")" + + "\n\tminus sign: " + dfs.getMinusSign()); + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/Bug4944439.java b/jdk/test/java/text/Format/NumberFormat/Bug4944439.java new file mode 100644 index 00000000000..beb4d77c235 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/Bug4944439.java @@ -0,0 +1,111 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4944439 + * @summary Confirm that numbers where all digits after the decimal separator are 0 + * and which are between Long.MIN_VALUE and Long.MAX_VALUE are returned as Long(not double). + */ + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.text.DecimalFormat; +import java.util.Locale; + +public class Bug4944439 { + + static boolean err = false; + static DecimalFormat df; + + public static void main(String[] args) throws Exception { + + Locale defaultLoc = Locale.getDefault(); + Locale.setDefault(Locale.US); + + df = new DecimalFormat(); + String s = "-9223372036854775809"; // Long.MIN_VALUE-1 + check_Double(s); + + test(Long.MIN_VALUE, Long.MIN_VALUE+10); + test(-10, 10); + test(Long.MAX_VALUE-10, Long.MAX_VALUE-1); + + s = "9223372036854775807.00"; // Long.MAX_VALUE + check_Long(s); + s = "9223372036854775808"; // Long.MAX_VALUE+1 + check_Double(s); + + s = "-0.0"; + check_Double(s); + s = "0.0"; + check_Long(s); + + Locale.setDefault(defaultLoc); + + if (err) { + throw new RuntimeException("Wrong parsing with DecimalFormat"); + } + } + + private static void test(long from, long to) throws Exception { + for (long l = from; l <= to; l++) { + check_Long(Long.toString(l) + ".00"); + } + } + + private static void check_Long(String s) throws Exception { + Number number = df.parse(s); + if (!(number instanceof Long)) { + err = true; + System.err.println("Failed: DecimalFormat.parse(\"" + s + + "\") should return a Long, but returned a " + + number.getClass().getName()); + } + + int index = s.indexOf('.'); + Long l = new Long(s.substring(0, index)); + if (!l.equals(number)) { + err = true; + System.err.println("Failed: DecimalFormat.parse(" + s + + ") should return a Long(" + l + "), but returned " + number); + } + } + + private static void check_Double(String s) throws Exception { + Number number = df.parse(s); + if (!(number instanceof Double)) { + err = true; + System.err.println("Failed: DecimalFormat.parse(\"" + s + + "\") should return a Double, but returned a " + + number.getClass().getName()); + } + + Double d = new Double(s); + if (!d.equals(number)) { + err = true; + System.err.println("Failed: DecimalFormat.parse(" + s + + ") should return a Double(" + d + "), but returned " + number); + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/Bug4990596.java b/jdk/test/java/text/Format/NumberFormat/Bug4990596.java new file mode 100644 index 00000000000..a8c03b8a035 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/Bug4990596.java @@ -0,0 +1,59 @@ +/* + * Copyright (c) 2004, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4990596 + * @summary Make sure that any subclass of Number can be formatted using DecimalFormat.format(). + */ + +import java.text.DecimalFormat; + +public class Bug4990596 { + + public static void main(String[] args) { + new DecimalFormat().format(new MutableInteger(0)); + } + + public static class MutableInteger extends Number { + public int value; + + public MutableInteger() { + } + public MutableInteger(int value) { + this.value = value; + } + public double doubleValue() { + return this.value; + } + public float floatValue() { + return this.value; + } + public int intValue() { + return this.value; + } + public long longValue() { + return this.value; + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/Bug6278616.java b/jdk/test/java/text/Format/NumberFormat/Bug6278616.java new file mode 100644 index 00000000000..9066a7da02e --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/Bug6278616.java @@ -0,0 +1,69 @@ +/* + * Copyright (c) 2005, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @summary Confirm that AtomicInteger and AtomicLong are formatted correctly. + * @bug 6278616 + */ + +import java.text.NumberFormat; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.concurrent.atomic.AtomicLong; + +import java.util.Locale; + +public class Bug6278616 { + + static final int[] ints = { + Integer.MIN_VALUE, -1, 0, 1, Integer.MAX_VALUE + }; + + static final long[] longs = { + Long.MIN_VALUE, -1, 0, 1, Long.MAX_VALUE + }; + + public static void main(String[] args) { + NumberFormat nf = NumberFormat.getInstance(); + + for (int j = 0; j < ints.length; j++) { + String s_i = nf.format(new Integer(ints[j])); + String s_ai = nf.format(new AtomicInteger(ints[j])); + if (!s_i.equals(s_ai)) { + throw new RuntimeException("format(AtomicInteger " + s_ai + + ") doesn't equal format(Integer " + + s_i + ")"); + } + } + + for (int j = 0; j < longs.length; j++) { + String s_l = nf.format(new Long(longs[j])); + String s_al = nf.format(new AtomicLong(longs[j])); + if (!s_l.equals(s_al)) { + throw new RuntimeException("format(AtomicLong " + s_al + + ") doesn't equal format(Long " + + s_l + ")"); + } + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/CurrencyFormat.java b/jdk/test/java/text/Format/NumberFormat/CurrencyFormat.java new file mode 100644 index 00000000000..96fa3976701 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/CurrencyFormat.java @@ -0,0 +1,141 @@ +/* + * Copyright (c) 2001, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4290801 4942982 5102005 8008577 8021121 + * @summary Basic tests for currency formatting. + * @run main/othervm -Djava.locale.providers=JRE,SPI CurrencyFormat + */ + +import java.io.File; +import java.io.FileInputStream; +import java.util.Currency; +import java.util.Locale; +import java.util.Properties; +import java.util.StringTokenizer; +import java.util.TimeZone; +import java.text.DecimalFormatSymbols; +import java.text.NumberFormat; +import java.text.SimpleDateFormat; + +public class CurrencyFormat { + + public static void main(String[] args) throws Exception { + testFormatting(); + testSymbols(); + } + + static void testFormatting() { + boolean failed = false; + Locale[] locales = { + Locale.US, + Locale.JAPAN, + Locale.GERMANY, + Locale.ITALY, + new Locale("it", "IT", "EURO") }; + Currency[] currencies = { + null, + Currency.getInstance("USD"), + Currency.getInstance("JPY"), + Currency.getInstance("DEM"), + Currency.getInstance("EUR"), + }; + String[][] expecteds = { + {"$1,234.56", "$1,234.56", "JPY1,235", "DEM1,234.56", "EUR1,234.56"}, + {"\uFFE51,235", "USD1,234.56", "\uFFE51,235", "DEM1,234.56", "EUR1,234.56"}, + {"1.234,56 \u20AC", "1.234,56 USD", "1.235 JPY", "1.234,56 DM", "1.234,56 \u20AC"}, + {"\u20AC 1.234,56", "USD 1.234,56", "JPY 1.235", "DEM 1.234,56", "\u20AC 1.234,56"}, + {"\u20AC 1.234,56", "USD 1.234,56", "JPY 1.235", "DEM 1.234,56", "\u20AC 1.234,56"}, + }; + + for (int i = 0; i < locales.length; i++) { + Locale locale = locales[i]; + NumberFormat format = NumberFormat.getCurrencyInstance(locale); + for (int j = 0; j < currencies.length; j++) { + Currency currency = currencies[j]; + String expected = expecteds[i][j]; + if (currency != null) { + format.setCurrency(currency); + int digits = currency.getDefaultFractionDigits(); + format.setMinimumFractionDigits(digits); + format.setMaximumFractionDigits(digits); + } + String result = format.format(1234.56); + if (!result.equals(expected)) { + failed = true; + System.out.println("FAIL: Locale " + locale + + (currency == null ? ", default currency" : (", currency: " + currency)) + + ", expected: " + expected + + ", actual: " + result); + } + } + } + + if (failed) { + throw new RuntimeException(); + } + } + + static void testSymbols() throws Exception { + FileInputStream stream = new FileInputStream(new File(System.getProperty("test.src", "."), "CurrencySymbols.properties")); + Properties props = new Properties(); + props.load(stream); + SimpleDateFormat format = null; + + Locale[] locales = NumberFormat.getAvailableLocales(); + for (int i = 0; i < locales.length; i++) { + Locale locale = locales[i]; + DecimalFormatSymbols symbols = DecimalFormatSymbols.getInstance(locale); + String result = symbols.getCurrencySymbol(); + String expected = (String) props.get(locale.toString()); + + if (expected == null) { + System.out.println("Warning: No expected currency symbol defined for locale " + locale); + } else { + if (expected.contains(";")) { + StringTokenizer tokens = new StringTokenizer(expected, ";"); + int tokensCount = tokens.countTokens(); + + if (tokensCount == 3) { + expected = tokens.nextToken(); + if (format == null) { + format = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss", Locale.US); + format.setTimeZone(TimeZone.getTimeZone("GMT")); + format.setLenient(false); + } + + if (format.parse(tokens.nextToken()).getTime() < System.currentTimeMillis()) { + expected = tokens.nextToken(); + } + } + } + + if (!expected.equals(result)) { + throw new RuntimeException("Wrong currency symbol for locale " + + locale + ", expected: " + expected + ", got: " + result); + } + } + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/CurrencySymbols.properties b/jdk/test/java/text/Format/NumberFormat/CurrencySymbols.properties new file mode 100644 index 00000000000..cc919005db7 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/CurrencySymbols.properties @@ -0,0 +1,134 @@ +ar=\u00A4 +ar_AE=\u062F.\u0625.\u200F +ar_BH=\u062F.\u0628.\u200F +ar_DZ=\u062F.\u062C.\u200F +ar_EG=\u062C.\u0645.\u200F +ar_IQ=\u062F.\u0639.\u200F +ar_JO=\u062F.\u0623.\u200F +ar_KW=\u062F.\u0643.\u200F +ar_LB=\u0644.\u0644.\u200F +ar_LY=\u062F.\u0644.\u200F +ar_MA=\u062F.\u0645.\u200F +ar_OM=\u0631.\u0639.\u200F +ar_QA=\u0631.\u0642.\u200F +ar_SA=\u0631.\u0633.\u200F +# see bug 4412080 +# ar_SD=\u062C.\u0633.\u200F +ar_SY=\u0644.\u0633.\u200F +ar_TN=\u062F.\u062A.\u200F +ar_YE=\u0631.\u064A.\u200F +be=\u00A4 +# see bug 4412080 +# be_BY=\u0420\u0443\u0431 +bg=\u00A4 +# see bug 4412080 +# bg_BG=Lr +ca=\u00A4 +ca_ES=\u20AC +cs=\u00A4 +cs_CZ=K\u010D +da=\u00A4 +da_DK=kr +de=\u00A4 +de_AT=\u20AC +de_CH=SFr. +de_DE=\u20AC +de_LU=\u20AC +el=\u00A4 +el_GR=\u20AC +en=\u00A4 +en_AU=$ +en_CA=$ +en_GB=\u00A3 +en_IE=\u20AC +en_NZ=$ +en_US=$ +en_ZA=R +es=\u00A4 +es_AR=$ +es_BO=B$ +es_CL=Ch$ +# 5102005 +es_CO=$ +es_CR=C +es_CU=CU$ +es_DO=RD$ +# see bug 4412080 +# es_EC=S/ +es_ES=\u20AC +es_GT=Q +es_HN=L +es_MX=$ +es_NI=$C +es_PA=B +es_PE=S/. +es_PR=$ +es_PY=G +es_SV=C +es_UY=NU$ +es_VE=Bs.F. +et=\u00A4 +et_EE=\u20AC +fi=\u00A4 +fi_FI=\u20AC +fr=\u00A4 +fr_BE=\u20AC +fr_CA=$ +fr_CH=SFr. +fr_FR=\u20AC +fr_LU=\u20AC +hi_IN=\u0930\u0942 +hr=\u00A4 +hr_HR=Kn +hu=\u00A4 +hu_HU=Ft +is=\u00A4 +is_IS=kr. +it=\u00A4 +it_CH=SFr. +it_IT=\u20AC +iw=\u00A4 +iw_IL=\u05E9"\u05D7 +ja=\u00A4 +ja_JP=\uFFE5 +ko=\u00A4 +ko_KR=\uFFE6 +lt=\u00A4 +lt_LT=Lt;2014-12-31-22-00-00;\u20AC +lv=\u00A4 +lv_LV=Ls;2013-12-31-22-00-00;\u20AC +mk=\u00A4 +mk_MK=Den +nl=\u00A4 +nl_BE=\u20AC +nl_NL=\u20AC +no=\u00A4 +no_NO=kr +no_NO_NY=kr +pl=\u00A4 +pl_PL=z\u0142 +pt=\u00A4 +pt_BR=R$ +pt_PT=\u20AC +ro=\u00A4 +ro_RO=LEI +ru=\u00A4 +ru_RU=\u0440\u0443\u0431. +sk=\u00A4 +sk_SK=\u20AC +sl=\u00A4 +sl_SI=\u20AC +sq=\u00A4 +sq_AL=Lek +sv=\u00A4 +sv_SE=kr +th=\u00A4 +th_TH=\u0E3F +tr=\u00A4 +tr_TR=TL +uk=\u00A4 +uk_UA=\u0433\u0440\u043d. +zh=\u00A4 +zh_CN=\uFFE5 +zh_HK=HK$ +zh_TW=NT$ diff --git a/jdk/test/java/text/Format/NumberFormat/DFSDeserialization142.java b/jdk/test/java/text/Format/NumberFormat/DFSDeserialization142.java new file mode 100644 index 00000000000..2927f4e2c3b --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/DFSDeserialization142.java @@ -0,0 +1,56 @@ +/* + * Copyright (c) 2005, 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. + * + * 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. + */ + +/* + * No at-test for this test, because it needs to be run on older version JDK than 1.6 to test. + * It was tested using 1.4.2. The file object was created using JDK1.6. + */ + + + +import java.awt.*; +import java.text.*; +import java.util.*; +import java.io.*; + +public class DFSDeserialization142{ + + public static void main(String[] args) + { + try { + + File file = new File("DecimalFormatSymbols.current"); + FileInputStream istream = new FileInputStream(file); + ObjectInputStream p = new ObjectInputStream(istream); + DecimalFormatSymbols dfs = (DecimalFormatSymbols)p.readObject(); + if (dfs.getCurrencySymbol().equals("*SpecialCurrencySymbol*")){ + System.out.println("Serialization/Deserialization Test Passed."); + }else{ + throw new Exception("Serialization/Deserialization Test Failed:"+dfs.getCurrencySymbol()); + } + istream.close(); + } catch (Exception e) { + e.printStackTrace(); + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/DFSExponential.java b/jdk/test/java/text/Format/NumberFormat/DFSExponential.java new file mode 100644 index 00000000000..898fb3feccb --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/DFSExponential.java @@ -0,0 +1,87 @@ +/* + * Copyright (c) 2005, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4068067 + * @library /java/text/testlib + * @summary test NumberFormat with exponential separator symbols. It also tests the new + * public methods in DecimalFormatSymbols, setExponentSeparator() and + * getExponentSeparator() + */ + +import java.util.*; +import java.text.*; + +public class DFSExponential extends IntlTest +{ + + public static void main(String[] args) throws Exception { + new DFSExponential().run(args); + } + + + public void DFSExponenTest() throws Exception { + DecimalFormatSymbols sym = new DecimalFormatSymbols(Locale.US); + String pat[] = { "0.####E0", "00.000E00", "##0.####E000", "0.###E0;[0.###E0]" }; + double val[] = { 0.01234, 123456789, 1.23e300, -3.141592653e-271 }; + long lval[] = { 0, -1, 1, 123456789 }; + String valFormat[][] = { + {"1.234x10^-2", "1.2346x10^8", "1.23x10^300", "-3.1416x10^-271"}, + {"12.340x10^-03", "12.346x10^07", "12.300x10^299", "-31.416x10^-272"}, + {"12.34x10^-003", "123.4568x10^006", "1.23x10^300", "-314.1593x10^-273"}, + {"1.234x10^-2", "1.235x10^8", "1.23x10^300", "[3.142x10^-271]"}, + }; + + + int ival = 0, ilval = 0; + logln("Default exponent separator: "+sym.getExponentSeparator()); + try { + sym.setExponentSeparator("x10^"); + } catch (NullPointerException e){ + errln("null String was passed to set an exponent separator symbol"); + throw new RuntimeException("Test Malfunction: null String was passed to set an exponent separator symbol" ); + } + logln("Current exponent separator: "+sym.getExponentSeparator()); + + for (int p=0; p "+s); + if(valFormat[p][v].equals(s)){ + logln(": Passed"); + }else{ + errln(" Failed: Should be formatted as "+valFormat[p][v]+ "but got "+s); + throw new RuntimeException(" Failed: Should be formatted as "+valFormat[p][v]+ "but got "+s); + } + } + } //end of the first for loop + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/DFSSerialization.java b/jdk/test/java/text/Format/NumberFormat/DFSSerialization.java new file mode 100644 index 00000000000..40b40b39b87 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/DFSSerialization.java @@ -0,0 +1,151 @@ +/* + * Copyright (c) 2005, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4068067 + * @library /java/text/testlib + * @build DFSSerialization IntlTest HexDumpReader + * @run main DFSSerialization + * @summary Three different tests are done. 1.read from the object created using jdk1.4.2 2.create a valid DecimalFormatSymbols object with current JDK, then read the object 3.Try to create an valid DecimalFormatSymbols object by passing null to set null for the exponent separator symbol. Expect the NullPointerException. + */ + +import java.awt.*; +import java.text.*; +import java.util.*; +import java.io.*; + +public class DFSSerialization extends IntlTest{ + public static void main(String[] args) throws Exception { + new DFSSerialization().run(args); + } + public void TestDFSSerialization(){ + /* + * 1. read from the object created using jdk1.4.2 + */ + File oldFile = new File(System.getProperty("test.src", "."), "DecimalFormatSymbols.142.txt"); + DecimalFormatSymbols dfs142 = readTestObject(oldFile); + if (dfs142 != null){ + if (dfs142.getExponentSeparator().equals("E") && dfs142.getCurrencySymbol().equals("*SpecialCurrencySymbol*")){ + System.out.println("\n Deserialization of JDK1.4.2 Object from the current JDK: Passed."); + logln(" Deserialization of JDK1.4.2 Object from the current JDK: Passed."); + } else { + errln(" Deserialization of JDK1.4.2 Object from the current JDK was Failed:" + +dfs142.getCurrencySymbol()+" "+dfs142.getExponentSeparator()); + /* + * logically should not throw this exception as errln throws exception + * if not thrown yet - but in case errln got changed + */ + throw new RuntimeException(" Deserialization of JDK1.4.2 Object from the current JDK was Failed:" + +dfs142.getCurrencySymbol()+" "+dfs142.getExponentSeparator()); + } + } + /* + * 2. create a valid DecimalFormatSymbols object with current JDK, then read the object + */ + String validObject = "DecimalFormatSymbols.current"; + File currentFile = createTestObject(validObject, "*SpecialExponentSeparator*"); + + DecimalFormatSymbols dfsValid = readTestObject(currentFile); + if (dfsValid != null){ + if (dfsValid.getExponentSeparator().equals("*SpecialExponentSeparator*") && + dfsValid.getCurrencySymbol().equals("*SpecialCurrencySymbol*")){ + System.out.println(" Deserialization of current JDK Object from the current JDK: Passed."); + logln(" Deserialization of current JDK Object from the current JDK: Passed."); + } else { + errln(" Deserialization of current JDK Object from the current JDK was Failed:" + +dfsValid.getCurrencySymbol()+" "+dfsValid.getExponentSeparator()); + /* + * logically should not throw this exception as errln throws exception + * if not thrown yet - but in case errln got changed + */ + throw new RuntimeException(" Deserialization of current Object from the current JDK was Failed:" + +dfsValid.getCurrencySymbol()+" "+dfsValid.getExponentSeparator()); + } + } + /* + * 3. Try to create an valid DecimalFormatSymbols object by passing null + * to set null for the exponent separator symbol. Expect the NullPointerException. + */ + DecimalFormatSymbols symNPE = new DecimalFormatSymbols(Locale.US); + boolean npePassed = false; + try { + symNPE.setExponentSeparator(null); + } catch (NullPointerException npe){ + npePassed = true; + System.out.println(" Trying to set exponent separator with null: Passed."); + logln(" Trying to set exponent separator with null: Passed."); + } + if (!npePassed){ + System.out.println(" Trying to set exponent separator with null:Failed."); + errln(" Trying to set exponent separator with null:Failed."); + /* + * logically should not throw this exception as errln throws exception + * if not thrown yet - but in case errln got changed + */ + throw new RuntimeException(" Trying to set exponent separator with null:Failed."); + } + + } + + private DecimalFormatSymbols readTestObject(File inputFile){ + try (InputStream istream = inputFile.getName().endsWith(".txt") ? + HexDumpReader.getStreamFromHexDump(inputFile) : + new FileInputStream(inputFile)) { + ObjectInputStream p = new ObjectInputStream(istream); + DecimalFormatSymbols dfs = (DecimalFormatSymbols)p.readObject(); + return dfs; + } catch (Exception e) { + errln("Test Malfunction in DFSSerialization: Exception while reading the object"); + /* + * logically should not throw this exception as errln throws exception + * if not thrown yet - but in case errln got changed + */ + throw new RuntimeException("Test Malfunction: re-throwing the exception", e); + } + } + + private File createTestObject(String objectName, String expString){ + DecimalFormatSymbols dfs= new DecimalFormatSymbols(); + dfs.setExponentSeparator(expString); + dfs.setCurrencySymbol("*SpecialCurrencySymbol*"); + logln(" The special exponent separator is set : " + dfs.getExponentSeparator()); + logln(" The special currency symbol is set : " + dfs.getCurrencySymbol()); + + // 6345659: create a test object in the test.class dir where test user has a write permission. + File file = new File(System.getProperty("test.class", "."), objectName); + try (FileOutputStream ostream = new FileOutputStream(file)) { + ObjectOutputStream p = new ObjectOutputStream(ostream); + p.writeObject(dfs); + //System.out.println(" The special currency symbol is set : " + dfs.getCurrencySymbol()); + return file; + } catch (Exception e){ + errln("Test Malfunction in DFSSerialization: Exception while creating an object"); + /* + * logically should not throw this exception as errln throws exception + * if not thrown yet - but in case errln got changed + */ + throw new RuntimeException("Test Malfunction: re-throwing the exception", e); + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/DFSSerialization142.java b/jdk/test/java/text/Format/NumberFormat/DFSSerialization142.java new file mode 100644 index 00000000000..4a5e873ee23 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/DFSSerialization142.java @@ -0,0 +1,54 @@ +/* + * Copyright (c) 2005, 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. + * + * 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. + */ + +/* + * No at-test for this test, because it needs to be run on JDK 1.4.2 + * Instead, the resulting serialized file + * DecimalFormatSymbols.142 is archived. + */ + +import java.awt.*; +import java.text.*; +import java.util.*; +import java.io.*; + +public class DFSSerialization142 { + + public static void main(String[] args) + { + try { + + DecimalFormatSymbols dfs= new DecimalFormatSymbols(); + System.out.println("Default currency symbol in the default locale : " + dfs.getCurrencySymbol()); + dfs.setCurrencySymbol("*SpecialCurrencySymbol*"); + System.out.println("The special currency symbol is set : " + dfs.getCurrencySymbol()); + FileOutputStream ostream = new FileOutputStream("DecimalFormatSymbols.142"); + ObjectOutputStream p = new ObjectOutputStream(ostream); + p.writeObject(dfs); + ostream.close(); + System.out.println("DecimalFormatSymbols saved ok."); + } catch (Exception e) { + e.printStackTrace(); + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/DecimalFormat.114.txt b/jdk/test/java/text/Format/NumberFormat/DecimalFormat.114.txt new file mode 100644 index 00000000000..efa6df41419 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/DecimalFormat.114.txt @@ -0,0 +1,54 @@ +# +# Copyright (c) 1998, 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. +# +# 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. +# + +# Hex dump of a serialized DecimalFormat for SerializationLoadTest. + +aced000573720012436865636b446563696d616c466f726d6174aa9218d3b530 +540a0200014c000a5f646563466f726d61747400194c6a6176612f746578742f +446563696d616c466f726d61743b7870737200176a6176612e746578742e4465 +63696d616c466f726d61740bff0362d872303a0200085a001b646563696d616c +536570617261746f72416c7761797353686f776e42000c67726f7570696e6753 +697a6549000a6d756c7469706c6965724c000e6e656761746976655072656669 +787400124c6a6176612f6c616e672f537472696e673b4c000e6e656761746976 +655375666669787400124c6a6176612f6c616e672f537472696e673b4c000e70 +6f7369746976655072656669787400124c6a6176612f6c616e672f537472696e +673b4c000e706f7369746976655375666669787400124c6a6176612f6c616e67 +2f537472696e673b4c000773796d626f6c737400204c6a6176612f746578742f +446563696d616c466f726d617453796d626f6c733b787200166a6176612e7465 +78742e4e756d626572466f726d6174dff6b3bf137d07e80200065a000c67726f +7570696e67557365644200116d61784672616374696f6e446967697473420010 +6d6178496e74656765724469676974734200116d696e4672616374696f6e4469 +676974734200106d696e496e74656765724469676974735a0010706172736549 +6e74656765724f6e6c79787200106a6176612e746578742e466f726d6174fbd8 +bc12e90f1843020000787001037f0001000003000000017400012d7400007400 +007400007372001e6a6176612e746578742e446563696d616c466f726d617453 +796d626f6c73501d17990868939c02000c430010646563696d616c5365706172 +61746f72430005646967697443001167726f7570696e67536570617261746f72 +4300096d696e75735369676e4300107061747465726e536570617261746f7243 +00077065724d696c6c43000770657263656e744300097a65726f44696769744c +00034e614e7400124c6a6176612f6c616e672f537472696e673b4c000e637572 +72656e637953796d626f6c7400124c6a6176612f6c616e672f537472696e673b +4c0008696e66696e6974797400124c6a6176612f6c616e672f537472696e673b +4c0012696e746c43757272656e637953796d626f6c7400124c6a6176612f6c61 +6e672f537472696e673b7870002e0023002c002d003b203000250030740003ef +bfbd74000124740003e2889e740003555344 diff --git a/jdk/test/java/text/Format/NumberFormat/DecimalFormatSymbols.114.txt b/jdk/test/java/text/Format/NumberFormat/DecimalFormatSymbols.114.txt new file mode 100644 index 00000000000..6707e375a99 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/DecimalFormatSymbols.114.txt @@ -0,0 +1,39 @@ +# +# Copyright (c) 1998, 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. +# +# 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. +# + +# Hex dump of a serialized DecimalFormatSymbols for SerializationLoadTest. + +aced000573720019436865636b446563696d616c466f726d617453796d626f6c +737763237e1aa359bb0200014c00115f646563466f726d617453796d626f6c73 +7400204c6a6176612f746578742f446563696d616c466f726d617453796d626f +6c733b78707372001e6a6176612e746578742e446563696d616c466f726d6174 +53796d626f6c73501d17990868939c02000c430010646563696d616c53657061 +7261746f72430005646967697443001167726f7570696e67536570617261746f +724300096d696e75735369676e4300107061747465726e536570617261746f72 +4300077065724d696c6c43000770657263656e744300097a65726f4469676974 +4c00034e614e7400124c6a6176612f6c616e672f537472696e673b4c000e6375 +7272656e637953796d626f6c7400124c6a6176612f6c616e672f537472696e67 +3b4c0008696e66696e6974797400124c6a6176612f6c616e672f537472696e67 +3b4c0012696e746c43757272656e637953796d626f6c7400124c6a6176612f6c +616e672f537472696e673b7870002e0023002c002d003b203000250030740003 +efbfbd74000124740003e2889e740003555344 diff --git a/jdk/test/java/text/Format/NumberFormat/DecimalFormatSymbols.142.txt b/jdk/test/java/text/Format/NumberFormat/DecimalFormatSymbols.142.txt new file mode 100644 index 00000000000..723f107b402 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/DecimalFormatSymbols.142.txt @@ -0,0 +1,42 @@ +# +# Copyright (c) 1998, 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. +# +# 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. +# + +# Hex dump of a serialized DecimalFormatSymbols for SerializationLoadTest. + +aced00057372001e6a6176612e746578742e446563696d616c466f726d617453 +796d626f6c73501d17990868939c020010430010646563696d616c5365706172 +61746f72430005646967697443000b6578706f6e656e7469616c43001167726f +7570696e67536570617261746f724300096d696e75735369676e4300116d6f6e +6574617279536570617261746f724300107061747465726e536570617261746f +724300077065724d696c6c43000770657263656e7449001573657269616c5665 +7273696f6e4f6e53747265616d4300097a65726f44696769744c00034e614e74 +00124c6a6176612f6c616e672f537472696e673b4c000e63757272656e637953 +796d626f6c71007e00014c0008696e66696e69747971007e00014c0012696e74 +6c43757272656e637953796d626f6c71007e00014c00066c6f63616c65740012 +4c6a6176612f7574696c2f4c6f63616c653b7870002e00230045002c002d002e +003b20300025000000020030740003efbfbd7400172a5370656369616c437572 +72656e637953796d626f6c2a740003e2889e740003434e59737200106a617661 +2e7574696c2e4c6f63616c657ef811609c30f9ec03000449000868617368636f +64654c0007636f756e74727971007e00014c00086c616e677561676571007e00 +014c000776617269616e7471007e00017870ffffffff740002434e7400027a68 +74000078 diff --git a/jdk/test/java/text/Format/NumberFormat/IntlTestDecimalFormatAPI.java b/jdk/test/java/text/Format/NumberFormat/IntlTestDecimalFormatAPI.java new file mode 100644 index 00000000000..fcda5b863b4 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/IntlTestDecimalFormatAPI.java @@ -0,0 +1,255 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @library /java/text/testlib + * @summary test International Decimal Format API + */ +/* +(C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved +(C) Copyright IBM Corp. 1996, 1997 - All Rights Reserved + + The original version of this source code and documentation is copyrighted and +owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are +provided under terms of a License Agreement between Taligent and Sun. This +technology is protected by multiple US and International patents. This notice and +attribution to Taligent may not be removed. + Taligent is a registered trademark of Taligent, Inc. +*/ + +import java.text.*; +import java.util.*; + +public class IntlTestDecimalFormatAPI extends IntlTest +{ + public static void main(String[] args) throws Exception { + new IntlTestDecimalFormatAPI().run(args); + } + + // This test checks various generic API methods in DecimalFormat to achieve 100% API coverage. + public void TestAPI() + { + Locale reservedLocale = Locale.getDefault(); + try { + logln("DecimalFormat API test---"); logln(""); + Locale.setDefault(Locale.ENGLISH); + + // ======= Test constructors + + logln("Testing DecimalFormat constructors"); + + DecimalFormat def = new DecimalFormat(); + + final String pattern = new String("#,##0.# FF"); + DecimalFormat pat = null; + try { + pat = new DecimalFormat(pattern); + } + catch (IllegalArgumentException e) { + errln("ERROR: Could not create DecimalFormat (pattern)"); + } + + DecimalFormatSymbols symbols = + new DecimalFormatSymbols(Locale.FRENCH); + + DecimalFormat cust1 = new DecimalFormat(pattern, symbols); + + // ======= Test clone(), assignment, and equality + + logln("Testing clone() and equality operators"); + + Format clone = (Format) def.clone(); + if( ! def.equals(clone)) { + errln("ERROR: Clone() failed"); + } + + // ======= Test various format() methods + + logln("Testing various format() methods"); + +// final double d = -10456.0037; // this appears as + // -10456.003700000001 on NT +// final double d = -1.04560037e-4; // this appears as + // -1.0456003700000002E-4 on NT + final double d = -10456.00370000000000; // this works! + final long l = 100000000; + logln("" + d + " is the double value"); + + StringBuffer res1 = new StringBuffer(); + StringBuffer res2 = new StringBuffer(); + StringBuffer res3 = new StringBuffer(); + StringBuffer res4 = new StringBuffer(); + FieldPosition pos1 = new FieldPosition(0); + FieldPosition pos2 = new FieldPosition(0); + FieldPosition pos3 = new FieldPosition(0); + FieldPosition pos4 = new FieldPosition(0); + + res1 = def.format(d, res1, pos1); + logln("" + d + " formatted to " + res1); + + res2 = pat.format(l, res2, pos2); + logln("" + l + " formatted to " + res2); + + res3 = cust1.format(d, res3, pos3); + logln("" + d + " formatted to " + res3); + + res4 = cust1.format(l, res4, pos4); + logln("" + l + " formatted to " + res4); + + // ======= Test parse() + + logln("Testing parse()"); + + String text = new String("-10,456.0037"); + ParsePosition pos = new ParsePosition(0); + String patt = new String("#,##0.#"); + pat.applyPattern(patt); + double d2 = pat.parse(text, pos).doubleValue(); + if(d2 != d) { + errln("ERROR: Roundtrip failed (via parse(" + + d2 + " != " + d + ")) for " + text); + } + logln(text + " parsed into " + (long) d2); + + // ======= Test getters and setters + + logln("Testing getters and setters"); + + final DecimalFormatSymbols syms = pat.getDecimalFormatSymbols(); + def.setDecimalFormatSymbols(syms); + if(!pat.getDecimalFormatSymbols().equals( + def.getDecimalFormatSymbols())) { + errln("ERROR: set DecimalFormatSymbols() failed"); + } + + String posPrefix; + pat.setPositivePrefix("+"); + posPrefix = pat.getPositivePrefix(); + logln("Positive prefix (should be +): " + posPrefix); + if(posPrefix != "+") { + errln("ERROR: setPositivePrefix() failed"); + } + + String negPrefix; + pat.setNegativePrefix("-"); + negPrefix = pat.getNegativePrefix(); + logln("Negative prefix (should be -): " + negPrefix); + if(negPrefix != "-") { + errln("ERROR: setNegativePrefix() failed"); + } + + String posSuffix; + pat.setPositiveSuffix("_"); + posSuffix = pat.getPositiveSuffix(); + logln("Positive suffix (should be _): " + posSuffix); + if(posSuffix != "_") { + errln("ERROR: setPositiveSuffix() failed"); + } + + String negSuffix; + pat.setNegativeSuffix("~"); + negSuffix = pat.getNegativeSuffix(); + logln("Negative suffix (should be ~): " + negSuffix); + if(negSuffix != "~") { + errln("ERROR: setNegativeSuffix() failed"); + } + + long multiplier = 0; + pat.setMultiplier(8); + multiplier = pat.getMultiplier(); + logln("Multiplier (should be 8): " + multiplier); + if(multiplier != 8) { + errln("ERROR: setMultiplier() failed"); + } + + int groupingSize = 0; + pat.setGroupingSize(2); + groupingSize = pat.getGroupingSize(); + logln("Grouping size (should be 2): " + (long) groupingSize); + if(groupingSize != 2) { + errln("ERROR: setGroupingSize() failed"); + } + + pat.setDecimalSeparatorAlwaysShown(true); + boolean tf = pat.isDecimalSeparatorAlwaysShown(); + logln("DecimalSeparatorIsAlwaysShown (should be true) is " + + (tf ? "true" : "false")); + if(tf != true) { + errln("ERROR: setDecimalSeparatorAlwaysShown() failed"); + } + + String funkyPat; + funkyPat = pat.toPattern(); + logln("Pattern is " + funkyPat); + + String locPat; + locPat = pat.toLocalizedPattern(); + logln("Localized pattern is " + locPat); + + // ======= Test applyPattern() + + logln("Testing applyPattern()"); + + String p1 = new String("#,##0.0#;(#,##0.0#)"); + logln("Applying pattern " + p1); + pat.applyPattern(p1); + String s2; + s2 = pat.toPattern(); + logln("Extracted pattern is " + s2); + if( ! s2.equals(p1) ) { + errln("ERROR: toPattern() result did not match " + + "pattern applied"); + } + + String p2 = new String("#,##0.0# FF;(#,##0.0# FF)"); + logln("Applying pattern " + p2); + pat.applyLocalizedPattern(p2); + String s3; + s3 = pat.toLocalizedPattern(); + logln("Extracted pattern is " + s3); + if( ! s3.equals(p2) ) { + errln("ERROR: toLocalizedPattern() result did not match " + + "pattern applied"); + } + + // ======= Test getStaticClassID() + +// logln("Testing instanceof()"); + +// try { +// NumberFormat test = new DecimalFormat(); + +// if (! (test instanceof DecimalFormat)) { +// errln("ERROR: instanceof failed"); +// } +// } +// catch (Exception e) { +// errln("ERROR: Couldn't create a DecimalFormat"); +// } + } finally { + // restore the reserved locale + Locale.setDefault(reservedLocale); + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/IntlTestDecimalFormatSymbols.java b/jdk/test/java/text/Format/NumberFormat/IntlTestDecimalFormatSymbols.java new file mode 100644 index 00000000000..cd19fee1e35 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/IntlTestDecimalFormatSymbols.java @@ -0,0 +1,139 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @library /java/text/testlib + * @summary test International Decimal Format Symbols + */ +/* +(C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved +(C) Copyright IBM Corp. 1996, 1997 - All Rights Reserved + + The original version of this source code and documentation is copyrighted and +owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are +provided under terms of a License Agreement between Taligent and Sun. This +technology is protected by multiple US and International patents. This notice and +attribution to Taligent may not be removed. + Taligent is a registered trademark of Taligent, Inc. +*/ + +import java.text.*; +import java.util.*; + +public class IntlTestDecimalFormatSymbols extends IntlTest +{ + public static void main(String[] args) throws Exception { + new IntlTestDecimalFormatSymbols().run(args); + } + + // Test the API of DecimalFormatSymbols; primarily a simple get/set set. + public void TestSymbols() + { + DecimalFormatSymbols fr = new DecimalFormatSymbols(Locale.FRENCH); + + DecimalFormatSymbols en = new DecimalFormatSymbols(Locale.ENGLISH); + + if(en.equals(fr)) { + errln("ERROR: English DecimalFormatSymbols equal to French"); + } + + // just do some VERY basic tests to make sure that get/set work + + char zero = en.getZeroDigit(); + fr.setZeroDigit(zero); + if(fr.getZeroDigit() != en.getZeroDigit()) { + errln("ERROR: get/set ZeroDigit failed"); + } + + char group = en.getGroupingSeparator(); + fr.setGroupingSeparator(group); + if(fr.getGroupingSeparator() != en.getGroupingSeparator()) { + errln("ERROR: get/set GroupingSeparator failed"); + } + + char decimal = en.getDecimalSeparator(); + fr.setDecimalSeparator(decimal); + if(fr.getDecimalSeparator() != en.getDecimalSeparator()) { + errln("ERROR: get/set DecimalSeparator failed"); + } + + char perMill = en.getPerMill(); + fr.setPerMill(perMill); + if(fr.getPerMill() != en.getPerMill()) { + errln("ERROR: get/set PerMill failed"); + } + + char percent = en.getPercent(); + fr.setPercent(percent); + if(fr.getPercent() != en.getPercent()) { + errln("ERROR: get/set Percent failed"); + } + + char digit = en.getDigit(); + fr.setDigit(digit); + if(fr.getPercent() != en.getPercent()) { + errln("ERROR: get/set Percent failed"); + } + + char patternSeparator = en.getPatternSeparator(); + fr.setPatternSeparator(patternSeparator); + if(fr.getPatternSeparator() != en.getPatternSeparator()) { + errln("ERROR: get/set PatternSeparator failed"); + } + + String infinity = en.getInfinity(); + fr.setInfinity(infinity); + String infinity2 = fr.getInfinity(); + if(! infinity.equals(infinity2)) { + errln("ERROR: get/set Infinity failed"); + } + + String nan = en.getNaN(); + fr.setNaN(nan); + String nan2 = fr.getNaN(); + if(! nan.equals(nan2)) { + errln("ERROR: get/set NaN failed"); + } + + char minusSign = en.getMinusSign(); + fr.setMinusSign(minusSign); + if(fr.getMinusSign() != en.getMinusSign()) { + errln("ERROR: get/set MinusSign failed"); + } + +// char exponential = en.getExponentialSymbol(); +// fr.setExponentialSymbol(exponential); +// if(fr.getExponentialSymbol() != en.getExponentialSymbol()) { +// errln("ERROR: get/set Exponential failed"); +// } + + DecimalFormatSymbols foo = new DecimalFormatSymbols(); + + en = (DecimalFormatSymbols) fr.clone(); + + if(! en.equals(fr)) { + errln("ERROR: Clone failed"); + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/IntlTestNumberFormatAPI.java b/jdk/test/java/text/Format/NumberFormat/IntlTestNumberFormatAPI.java new file mode 100644 index 00000000000..ab1069bdfc2 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/IntlTestNumberFormatAPI.java @@ -0,0 +1,220 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @library /java/text/testlib + * @summary test International Number Format API + */ +/* +(C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved +(C) Copyright IBM Corp. 1996, 1997 - All Rights Reserved + + The original version of this source code and documentation is copyrighted and +owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are +provided under terms of a License Agreement between Taligent and Sun. This +technology is protected by multiple US and International patents. This notice and +attribution to Taligent may not be removed. + Taligent is a registered trademark of Taligent, Inc. +*/ + +import java.text.*; +import java.util.*; + +public class IntlTestNumberFormatAPI extends IntlTest +{ + public static void main(String[] args) throws Exception { + new IntlTestNumberFormatAPI().run(args); + } + + // This test checks various generic API methods in DecimalFormat to achieve 100% API coverage. + public void TestAPI() + { + Locale reservedLocale = Locale.getDefault(); + try { + logln("NumberFormat API test---"); logln(""); + Locale.setDefault(Locale.ENGLISH); + + // ======= Test constructors + + logln("Testing NumberFormat constructors"); + + NumberFormat def = NumberFormat.getInstance(); + + NumberFormat fr = NumberFormat.getInstance(Locale.FRENCH); + + NumberFormat cur = NumberFormat.getCurrencyInstance(); + + NumberFormat cur_fr = + NumberFormat.getCurrencyInstance(Locale.FRENCH); + + NumberFormat per = NumberFormat.getPercentInstance(); + + NumberFormat per_fr = + NumberFormat.getPercentInstance(Locale.FRENCH); + + // ======= Test equality + + logln("Testing equality operator"); + + if( per_fr.equals(cur_fr) ) { + errln("ERROR: == failed"); + } + + // ======= Test various format() methods + + logln("Testing various format() methods"); + +// final double d = -10456.0037; // this appears as + // -10456.003700000001 on NT +// final double d = -1.04560037e-4; // this appears as + // -1.0456003700000002E-4 on NT + final double d = -10456.00370000000000; // this works! + final long l = 100000000; + + String res1 = new String(); + String res2 = new String(); + StringBuffer res3 = new StringBuffer(); + StringBuffer res4 = new StringBuffer(); + StringBuffer res5 = new StringBuffer(); + StringBuffer res6 = new StringBuffer(); + FieldPosition pos1 = new FieldPosition(0); + FieldPosition pos2 = new FieldPosition(0); + FieldPosition pos3 = new FieldPosition(0); + FieldPosition pos4 = new FieldPosition(0); + + res1 = cur_fr.format(d); + logln( "" + d + " formatted to " + res1); + + res2 = cur_fr.format(l); + logln("" + l + " formatted to " + res2); + + res3 = cur_fr.format(d, res3, pos1); + logln( "" + d + " formatted to " + res3); + + res4 = cur_fr.format(l, res4, pos2); + logln("" + l + " formatted to " + res4); + + res5 = cur_fr.format(d, res5, pos3); + logln("" + d + " formatted to " + res5); + + res6 = cur_fr.format(l, res6, pos4); + logln("" + l + " formatted to " + res6); + + + // ======= Test parse() + + logln("Testing parse()"); + +// String text = new String("-10,456.0037"); + String text = new String("-10456,0037"); + ParsePosition pos = new ParsePosition(0); + ParsePosition pos01 = new ParsePosition(0); + double d1 = ((Number)fr.parseObject(text, pos)).doubleValue(); + if(d1 != d) { + errln("ERROR: Roundtrip failed (via parse()) for " + text); + } + logln(text + " parsed into " + d1); + + double d2 = fr.parse(text, pos01).doubleValue(); + if(d2 != d) { + errln("ERROR: Roundtrip failed (via parse()) for " + text); + } + logln(text + " parsed into " + d2); + + double d3 = 0; + try { + d3 = fr.parse(text).doubleValue(); + } + catch (ParseException e) { + errln("ERROR: parse() failed"); + } + if(d3 != d) { + errln("ERROR: Roundtrip failed (via parse()) for " + text); + } + logln(text + " parsed into " + d3); + + + // ======= Test getters and setters + + logln("Testing getters and setters"); + + final Locale[] locales = NumberFormat.getAvailableLocales(); + long count = locales.length; + logln("Got " + count + " locales" ); + for(int i = 0; i < count; i++) { + String name; + name = locales[i].getDisplayName(); + logln(name); + } + + fr.setParseIntegerOnly( def.isParseIntegerOnly() ); + if(fr.isParseIntegerOnly() != def.isParseIntegerOnly() ) { + errln("ERROR: setParseIntegerOnly() failed"); + } + + fr.setGroupingUsed( def.isGroupingUsed() ); + if(fr.isGroupingUsed() != def.isGroupingUsed() ) { + errln("ERROR: setGroupingUsed() failed"); + } + + fr.setMaximumIntegerDigits( def.getMaximumIntegerDigits() ); + if(fr.getMaximumIntegerDigits() != def.getMaximumIntegerDigits() ) { + errln("ERROR: setMaximumIntegerDigits() failed"); + } + + fr.setMinimumIntegerDigits( def.getMinimumIntegerDigits() ); + if(fr.getMinimumIntegerDigits() != def.getMinimumIntegerDigits() ) { + errln("ERROR: setMinimumIntegerDigits() failed"); + } + + fr.setMaximumFractionDigits( def.getMaximumFractionDigits() ); + if(fr.getMaximumFractionDigits() != def.getMaximumFractionDigits() ) { + errln("ERROR: setMaximumFractionDigits() failed"); + } + + fr.setMinimumFractionDigits( def.getMinimumFractionDigits() ); + if(fr.getMinimumFractionDigits() != def.getMinimumFractionDigits() ) { + errln("ERROR: setMinimumFractionDigits() failed"); + } + + // ======= Test getStaticClassID() + +// logln("Testing instanceof()"); + +// try { +// NumberFormat test = new DecimalFormat(); + +// if (! (test instanceof DecimalFormat)) { +// errln("ERROR: instanceof failed"); +// } +// } +// catch (Exception e) { +// errln("ERROR: Couldn't create a DecimalFormat"); +// } + } finally { + // restore the reserved locale + Locale.setDefault(reservedLocale); + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/NumberFormat4185761a.ser.txt b/jdk/test/java/text/Format/NumberFormat/NumberFormat4185761a.ser.txt new file mode 100644 index 00000000000..d27bb94eb69 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/NumberFormat4185761a.ser.txt @@ -0,0 +1,57 @@ +# +# Copyright (c) 1999, 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. +# +# 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. +# + +# Hex dump of a serialized NumberFormat for NumberRegression. + +aced0005737200176a6176612e746578742e446563696d616c466f726d61740b +ff0362d872303a02000b5a001b646563696d616c536570617261746f72416c77 +61797353686f776e42000c67726f7570696e6753697a654200116d696e457870 +6f6e656e7444696769747349000a6d756c7469706c6965724900157365726961 +6c56657273696f6e4f6e53747265616d5a00167573654578706f6e656e746961 +6c4e6f746174696f6e4c000e6e656761746976655072656669787400124c6a61 +76612f6c616e672f537472696e673b4c000e6e65676174697665537566666978 +71007e00014c000e706f73697469766550726566697871007e00014c000e706f +73697469766553756666697871007e00014c000773796d626f6c737400204c6a +6176612f746578742f446563696d616c466f726d617453796d626f6c733b7872 +00166a6176612e746578742e4e756d626572466f726d6174dff6b3bf137d07e8 +03000b5a000c67726f7570696e67557365644200116d61784672616374696f6e +4469676974734200106d6178496e74656765724469676974734900156d617869 +6d756d4672616374696f6e4469676974734900146d6178696d756d496e746567 +65724469676974734200116d696e4672616374696f6e4469676974734200106d +696e496e74656765724469676974734900156d696e696d756d4672616374696f +6e4469676974734900146d696e696d756d496e74656765724469676974735a00 +107061727365496e74656765724f6e6c7949001573657269616c56657273696f +6e4f6e53747265616d787200106a6176612e746578742e466f726d6174fbd8bc +12e90f18430200007870017f7f00000123000001217f7f000001240000012200 +00000001780003000000000100000001007400012d7400007400007400007372 +001e6a6176612e746578742e446563696d616c466f726d617453796d626f6c73 +501d17990868939c02000f430010646563696d616c536570617261746f724300 +05646967697443000b6578706f6e656e7469616c43001167726f7570696e6753 +6570617261746f724300096d696e75735369676e4300116d6f6e657461727953 +6570617261746f724300107061747465726e536570617261746f724300077065 +724d696c6c43000770657263656e7449001573657269616c56657273696f6e4f +6e53747265616d4300097a65726f44696769744c00034e614e71007e00014c00 +0e63757272656e637953796d626f6c71007e00014c0008696e66696e69747971 +007e00014c0012696e746c43757272656e637953796d626f6c71007e00017870 +002e00230045002c002d002e003b20300025000000010030740003efbfbd7400 +0124740003e2889e740003555344 diff --git a/jdk/test/java/text/Format/NumberFormat/NumberFormat4185761b.ser.txt b/jdk/test/java/text/Format/NumberFormat/NumberFormat4185761b.ser.txt new file mode 100644 index 00000000000..8da4dde6bd1 --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/NumberFormat4185761b.ser.txt @@ -0,0 +1,57 @@ +# +# Copyright (c) 1999, 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. +# +# 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. +# + +# Hex dump of a serialized NumberFormat for NumberRegression. + +aced0005737200176a6176612e746578742e446563696d616c466f726d61740b +ff0362d872303a02000b5a001b646563696d616c536570617261746f72416c77 +61797353686f776e42000c67726f7570696e6753697a654200116d696e457870 +6f6e656e7444696769747349000a6d756c7469706c6965724900157365726961 +6c56657273696f6e4f6e53747265616d5a00167573654578706f6e656e746961 +6c4e6f746174696f6e4c000e6e656761746976655072656669787400124c6a61 +76612f6c616e672f537472696e673b4c000e6e65676174697665537566666978 +71007e00014c000e706f73697469766550726566697871007e00014c000e706f +73697469766553756666697871007e00014c000773796d626f6c737400204c6a +6176612f746578742f446563696d616c466f726d617453796d626f6c733b7872 +00166a6176612e746578742e4e756d626572466f726d6174dff6b3bf137d07e8 +03000b5a000c67726f7570696e67557365644200116d61784672616374696f6e +4469676974734200106d6178496e74656765724469676974734900156d617869 +6d756d4672616374696f6e4469676974734900146d6178696d756d496e746567 +65724469676974734200116d696e4672616374696f6e4469676974734200106d +696e496e74656765724469676974734900156d696e696d756d4672616374696f +6e4469676974734900146d696e696d756d496e74656765724469676974735a00 +107061727365496e74656765724f6e6c7949001573657269616c56657273696f +6e4f6e53747265616d787200106a6176612e746578742e466f726d6174fbd8bc +12e90f18430200007870017f7f00000314000003127f7f000003130000031100 +00000001780003000000000100000001007400012d7400007400007400007372 +001e6a6176612e746578742e446563696d616c466f726d617453796d626f6c73 +501d17990868939c02000f430010646563696d616c536570617261746f724300 +05646967697443000b6578706f6e656e7469616c43001167726f7570696e6753 +6570617261746f724300096d696e75735369676e4300116d6f6e657461727953 +6570617261746f724300107061747465726e536570617261746f724300077065 +724d696c6c43000770657263656e7449001573657269616c56657273696f6e4f +6e53747265616d4300097a65726f44696769744c00034e614e71007e00014c00 +0e63757272656e637953796d626f6c71007e00014c0008696e66696e69747971 +007e00014c0012696e746c43757272656e637953796d626f6c71007e00017870 +002e00230045002c002d002e003b20300025000000010030740003efbfbd7400 +0124740003e2889e740003555344 diff --git a/jdk/test/java/text/Format/NumberFormat/NumberFormatRounding.java b/jdk/test/java/text/Format/NumberFormat/NumberFormatRounding.java new file mode 100644 index 00000000000..895d885ff2e --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/NumberFormatRounding.java @@ -0,0 +1,130 @@ +/* + * Copyright (c) 2005, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4092330 6246348 + * @summary Tests for rounding mode in NumberFormat + */ + +import java.math.*; +import java.text.*; + +public class NumberFormatRounding { + + static final String AE = "ArithmeticException"; + + static final double src[] = {5.5, 2.5, 1.6, 1.1, 1.0, -1.0, -1.1, -1.6, -2.5, -5.5, + 5.501, -5.501, 5.500, -5.500, 1.001, -1.001, 4.501, -4.501, 4.500, -4.500}; + static final String up[] = {"6", "3", "2", "2", "1", "-1", "-2", "-2", "-3", "-6", + "6", "-6", "6", "-6", "2", "-2", "5", "-5", "5", "-5"}; + static final String down[] = {"5", "2", "1", "1", "1", "-1", "-1", "-1", "-2", "-5", + "5", "-5", "5", "-5", "1", "-1", "4", "-4", "4", "-4"}; + static final String ceiling[] = {"6", "3", "2", "2", "1", "-1", "-1", "-1", "-2", "-5", + "6", "-5", "6", "-5", "2", "-1", "5", "-4", "5", "-4"}; + static final String floor[] = {"5", "2", "1", "1", "1", "-1", "-2", "-2", "-3", "-6", + "5", "-6", "5", "-6", "1", "-2", "4", "-5", "4", "-5"}; + static final String half_up[] = {"6", "3", "2", "1", "1", "-1", "-1", "-2", "-3", "-6", + "6", "-6", "6", "-6", "1", "-1", "5", "-5", "5", "-5"}; + static final String half_down[] = {"5", "2", "2", "1", "1", "-1", "-1", "-2", "-2", "-5", + "6", "-6", "5", "-5", "1", "-1", "5", "-5", "4", "-4"}; + static final String half_even[] = {"6", "2", "2", "1", "1", "-1", "-1", "-2", "-2", "-6", + "6", "-6", "6", "-6", "1", "-1", "5", "-5", "4", "-4"}; + static final String unnecessary[] = {AE, AE, AE, AE, "1", "-1", AE, AE, AE, AE, + AE, AE, AE, AE, AE, AE, AE, AE, AE, AE}; + + public static void main(String[] args) { + basicTest(); + + roundTest(RoundingMode.UP, up); + roundTest(RoundingMode.DOWN, down); + roundTest(RoundingMode.CEILING, ceiling); + roundTest(RoundingMode.FLOOR, floor); + roundTest(RoundingMode.HALF_UP, half_up); + roundTest(RoundingMode.HALF_DOWN, half_down); + roundTest(RoundingMode.HALF_EVEN, half_even); + roundTest(RoundingMode.UNNECESSARY, unnecessary); + } + + static void basicTest() { + NumberFormat nf = NumberFormat.getIntegerInstance(); + + if (nf.getRoundingMode() != RoundingMode.HALF_EVEN) { + throw new RuntimeException("default rounding is not HALF_EVEN"); + } + + try { + nf.setRoundingMode(null); + throw new RuntimeException( + "NullPointerException is not thrown by calling setRoundingMode(null)"); + } catch (NullPointerException npe) { + // continue testing + } + + ChoiceFormat cf = new ChoiceFormat(""); + + try { + cf.setRoundingMode(RoundingMode.HALF_EVEN); + throw new RuntimeException( + "UnsupportedOperationException is not thrown by calling setRoundingMode()"); + } catch (UnsupportedOperationException uoe) { + // continue testing + } + + try { + cf.getRoundingMode(); + throw new RuntimeException( + "UnsupportedOperationException is not thrown by calling getRoundingMode()"); + } catch (UnsupportedOperationException uoe) { + // continue testing + } + } + + static void roundTest(RoundingMode rm, String[] expected) { + NumberFormat nf = NumberFormat.getIntegerInstance(); + nf.setRoundingMode(rm); + + if (nf.getRoundingMode() != rm) { + throw new RuntimeException("set rounding mode is not returned by get method"); + } + + for (int i = 0; i < src.length; i ++) { + String result = null; + try { + result = nf.parse(nf.format(src[i])).toString(); + if (!result.equals(expected[i])) { + throw new RuntimeException("rounding test #"+i+" failed. mode: "+rm+" src: "+src[i]+" expected: "+expected[i]+" result: "+result); + } + } catch (ArithmeticException ae) { + if (expected[i].equals(AE)) { + continue; + } else { + result = AE; + throw new RuntimeException("rounding test #"+i+" failed. mode: "+rm+" src: "+src[i]+" expected: "+expected[i]+" result: "+result); + } + } catch (ParseException pe) { + throw new RuntimeException("ParseException ocurred.", pe); + } + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/NumberRegression.java b/jdk/test/java/text/Format/NumberFormat/NumberRegression.java new file mode 100644 index 00000000000..674fdd619ca --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/NumberRegression.java @@ -0,0 +1,1824 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4052223 4059870 4061302 4062486 4066646 4068693 4070798 4071005 4071014 + * 4071492 4071859 4074454 4074620 4075713 4083018 4086575 4087244 4087245 + * 4087251 4087535 4088161 4088503 4090489 4090504 4092480 4092561 4095713 + * 4098741 4099404 4101481 4106658 4106662 4106664 4108738 4110936 4122840 + * 4125885 4134034 4134300 4140009 4141750 4145457 4147295 4147706 4162198 + * 4162852 4167494 4170798 4176114 4179818 4185761 4212072 4212073 4216742 + * 4217661 4243011 4243108 4330377 4233840 4241880 4833877 8008577 + * @summary Regression tests for NumberFormat and associated classes + * @library /java/text/testlib + * @build IntlTest HexDumpReader + * @modules java.base/sun.util.resources + * @compile -XDignore.symbol.file NumberRegression.java + * @run main/othervm -Djava.locale.providers=COMPAT,SPI NumberRegression + */ + +/* +(C) Copyright Taligent, Inc. 1996 - All Rights Reserved +(C) Copyright IBM Corp. 1996 - All Rights Reserved + + The original version of this source code and documentation is copyrighted and +owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are +provided under terms of a License Agreement between Taligent and Sun. This +technology is protected by multiple US and International patents. This notice and +attribution to Taligent may not be removed. + Taligent is a registered trademark of Taligent, Inc. +*/ + +import java.text.*; +import java.util.*; +import java.math.BigDecimal; +import java.io.*; +import java.math.BigInteger; +import sun.util.resources.LocaleData; + +public class NumberRegression extends IntlTest { + + public static void main(String[] args) throws Exception { + new NumberRegression().run(args); + } + + /** + * NumberFormat.equals comparing with null should always return false. + */ + public void Test4075713(){ + + try { + MyNumberFormatTest tmp = new MyNumberFormatTest(); + if (!tmp.equals(null)) + logln("NumberFormat.equals passed"); + } catch (NullPointerException e) { + errln("(new MyNumberFormatTest()).equals(null) throws unexpected exception"); + } + } + + /** + * NumberFormat.equals comparing two obj equal even the setGroupingUsed + * flag is different. + */ + public void Test4074620() { + + MyNumberFormatTest nf1 = new MyNumberFormatTest(); + MyNumberFormatTest nf2 = new MyNumberFormatTest(); + + nf1.setGroupingUsed(false); + nf2.setGroupingUsed(true); + + if (nf1.equals(nf2)) errln("Test for bug 4074620 failed"); + else logln("Test for bug 4074620 passed."); + return; + } + + + /** + * DecimalFormat.format() incorrectly uses maxFractionDigits setting. + */ + + public void Test4088161 (){ + DecimalFormat df = new DecimalFormat(); + double d = 100; + df.setMinimumFractionDigits(0); + df.setMaximumFractionDigits(16); + StringBuffer sBuf1 = new StringBuffer(""); + FieldPosition fp1 = new FieldPosition(0); + logln("d = " + d); + logln("maxFractionDigits = " + df.getMaximumFractionDigits()); + logln(" format(d) = '" + df.format(d, sBuf1, fp1) + "'"); + df.setMaximumFractionDigits(17); + StringBuffer sBuf2 = new StringBuffer(""); + FieldPosition fp2 = new FieldPosition(0); + logln("maxFractionDigits = " + df.getMaximumFractionDigits()); + df.format(d, sBuf2, fp2); + String expected = Locale.getDefault().equals(new Locale("hi", "IN")) ? + "\u0967\u0966\u0966" : "100"; + if (!sBuf2.toString().equals(expected)) + errln(" format(d) = '" + sBuf2 + "'"); + } + /** + * DecimalFormatSymbols should be cloned in the ctor DecimalFormat. + * DecimalFormat(String, DecimalFormatSymbols). + */ + public void Test4087245 (){ + DecimalFormatSymbols symbols = DecimalFormatSymbols.getInstance(); + DecimalFormat df = new DecimalFormat("#,##0.0", symbols); + long n = 123; + StringBuffer buf1 = new StringBuffer(); + StringBuffer buf2 = new StringBuffer(); + logln("format(" + n + ") = " + + df.format(n, buf1, new FieldPosition(0))); + symbols.setDecimalSeparator('p'); // change value of field + logln("format(" + n + ") = " + + df.format(n, buf2, new FieldPosition(0))); + if (!buf1.toString().equals(buf2.toString())) + errln("Test for bug 4087245 failed"); + } + /** + * DecimalFormat.format() incorrectly formats 0.0 + */ + public void Test4087535 () + { + DecimalFormat df = new DecimalFormat(); + df.setMinimumIntegerDigits(0); + + double n = 0; + String buffer = new String(); + buffer = df.format(n); + if (buffer.length() == 0) + errln(n + ": '" + buffer + "'"); + n = 0.1; + buffer = df.format(n); + if (buffer.length() == 0) + errln(n + ": '" + buffer + "'"); + } + + /** + * DecimalFormat.format fails when groupingSize is set to 0. + */ + public void Test4088503 (){ + DecimalFormat df = new DecimalFormat(); + df.setGroupingSize(0); + StringBuffer sBuf = new StringBuffer(""); + FieldPosition fp = new FieldPosition(0); + try { + logln(df.format(123, sBuf, fp).toString()); + } catch (Exception foo) { + errln("Test for bug 4088503 failed."); + } + + } + /** + * NumberFormat.getCurrencyInstance is wrong. + */ + public void Test4066646 () { + float returnfloat = 0.0f; + assignFloatValue(2.04f); + assignFloatValue(2.03f); + assignFloatValue(2.02f); + assignFloatValue(0.0f); + } + + public float assignFloatValue(float returnfloat) + { + logln(" VALUE " + returnfloat); + NumberFormat nfcommon = NumberFormat.getCurrencyInstance(Locale.US); + nfcommon.setGroupingUsed(false); + + String stringValue = nfcommon.format(returnfloat).substring(1); + if (Float.valueOf(stringValue).floatValue() != returnfloat) + errln(" DISPLAYVALUE " + stringValue); + return returnfloat; + } // End Of assignFloatValue() + + /** + * DecimalFormat throws exception when parsing "0" + */ + public void Test4059870() { + DecimalFormat format = new DecimalFormat("00"); + try { + logln(format.parse("0").toString()); + } catch (Exception e) { errln("Test for bug 4059870 failed : " + e); } + } + /** + * DecimalFormatSymbol.equals should always return false when + * comparing with null. + */ + + public void Test4083018 (){ + DecimalFormatSymbols dfs = DecimalFormatSymbols.getInstance(); + try { + if (!dfs.equals(null)) + logln("Test Passed!"); + } catch (Exception foo) { + errln("Test for bug 4083018 failed => Message : " + foo.getMessage()); + } + } + /** + * DecimalFormat does not round up correctly. + */ + public void Test4071492 (){ + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + double x = 0.00159999; + NumberFormat nf = NumberFormat.getInstance(); + nf.setMaximumFractionDigits(4); + String out = nf.format(x); + logln("0.00159999 formats with 4 fractional digits to " + out); + String expected = "0.0016"; + if (!out.equals(expected)) + errln("FAIL: Expected " + expected); + Locale.setDefault(savedLocale); + } + + /** + * A space as a group separator for localized pattern causes + * wrong format. WorkAround : use non-breaking space. + */ + public void Test4086575() { + + NumberFormat nf = NumberFormat.getInstance(Locale.FRANCE); + logln("nf toPattern1: " + ((DecimalFormat)nf).toPattern()); + logln("nf toLocPattern1: " + ((DecimalFormat)nf).toLocalizedPattern()); + + // No group separator + logln("...applyLocalizedPattern ###,00;(###,00) "); + ((DecimalFormat)nf).applyLocalizedPattern("###,00;(###,00)"); + logln("nf toPattern2: " + ((DecimalFormat)nf).toPattern()); + logln("nf toLocPattern2: " + ((DecimalFormat)nf).toLocalizedPattern()); + + logln("nf: " + nf.format(1234)); // 1234,00 + logln("nf: " + nf.format(-1234)); // (1234,00) + + // Space as group separator + + logln("...applyLocalizedPattern # ###,00;(# ###,00) "); + ((DecimalFormat)nf).applyLocalizedPattern("#\u00a0###,00;(#\u00a0###,00)"); + logln("nf toPattern2: " + ((DecimalFormat)nf).toPattern()); + logln("nf toLocPattern2: " + ((DecimalFormat)nf).toLocalizedPattern()); + String buffer = nf.format(1234); + if (!buffer.equals("1\u00a0234,00")) + errln("nf : " + buffer); // Expect 1 234,00 + buffer = nf.format(-1234); + if (!buffer.equals("(1\u00a0234,00)")) + errln("nf : " + buffer); // Expect (1 234,00) + + // Erroneously prints: + // 1234,00 , + // (1234,00 ,) + + } + /** + * DecimalFormat.parse returns wrong value + */ + public void Test4068693() + { + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + logln("----- Test Application -----"); + ParsePosition pos; + DecimalFormat df = new DecimalFormat(); + Double d = (Double)df.parse("123.55456", pos=new ParsePosition(0)); + if (!d.toString().equals("123.55456")) { + errln("Result -> " + d.doubleValue()); + } + Locale.setDefault(savedLocale); + } + + /* bugs 4069754, 4067878 + * null pointer thrown when accessing a deserialized DecimalFormat + * object. + */ + public void Test4069754() + { + try { + myformat it = new myformat(); + logln(it.Now()); + FileOutputStream ostream = new FileOutputStream("t.tmp"); + ObjectOutputStream p = new ObjectOutputStream(ostream); + p.writeObject(it); + ostream.close(); + logln("Saved ok."); + + FileInputStream istream = new FileInputStream("t.tmp"); + ObjectInputStream p2 = new ObjectInputStream(istream); + myformat it2 = (myformat)p2.readObject(); + logln(it2.Now()); + istream.close(); + logln("Loaded ok."); + } catch (Exception foo) { + errln("Test for bug 4069754 or 4057878 failed => Exception: " + foo.getMessage()); + } + } + + /** + * DecimalFormat.applyPattern(String) allows illegal patterns + */ + public void Test4087251 (){ + DecimalFormat df = new DecimalFormat(); + try { + df.applyPattern("#.#.#"); + logln("toPattern() returns \"" + df.toPattern() + "\""); + errln("applyPattern(\"#.#.#\") doesn't throw IllegalArgumentException"); + } catch (IllegalArgumentException e) { + logln("Caught Illegal Argument Error !"); + } + // Second test; added 5/11/98 when reported to fail on 1.2b3 + try { + df.applyPattern("#0.0#0#0"); + logln("toPattern() returns \"" + df.toPattern() + "\""); + errln("applyPattern(\"#0.0#0#0\") doesn't throw IllegalArgumentException"); + } catch (IllegalArgumentException e) { + logln("Ok - IllegalArgumentException for #0.0#0#0"); + } + } + + /** + * DecimalFormat.format() loses precision + */ + public void Test4090489 (){ + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + DecimalFormat df = new DecimalFormat(); + df.setMinimumFractionDigits(10); + df.setGroupingUsed(false); + double d = 1.000000000000001E7; + BigDecimal bd = new BigDecimal(d); + StringBuffer sb = new StringBuffer(""); + FieldPosition fp = new FieldPosition(0); + logln("d = " + d); + logln("BigDecimal.toString(): " + bd.toString()); + df.format(d, sb, fp); + if (!sb.toString().equals("10000000.0000000100")) { + errln("DecimalFormat.format(): " + sb.toString()); + } + Locale.setDefault(savedLocale); + } + + /** + * DecimalFormat.format() loses precision + */ + public void Test4090504 () + { + double d = 1; + logln("d = " + d); + DecimalFormat df = new DecimalFormat(); + StringBuffer sb; + FieldPosition fp; + try { + for (int i = 17; i <= 20; i++) { + df.setMaximumFractionDigits(i); + sb = new StringBuffer(""); + fp = new FieldPosition(0); + logln(" getMaximumFractionDigits() = " + i); + logln(" formated: " + df.format(d, sb, fp)); + } + } catch (Exception foo) { + errln("Bug 4090504 regression test failed. Message : " + foo.getMessage()); + } + } + /** + * DecimalFormat.parse(String str, ParsePosition pp) loses precision + */ + public void Test4095713 () + { + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + DecimalFormat df = new DecimalFormat(); + String str = "0.1234"; + Double d1 = new Double(str); + Double d2 = (Double) df.parse(str, new ParsePosition(0)); + logln(d1.toString()); + if (d2.doubleValue() != d1.doubleValue()) + errln("Bug 4095713 test failed, new double value : " + d2.doubleValue()); + Locale.setDefault(savedLocale); + } + + /** + * DecimalFormat.parse() fails when multiplier is not set to 1 + */ + public void Test4092561 () + { + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + DecimalFormat df = new DecimalFormat(); + + String str = Long.toString(Long.MIN_VALUE); + logln("Long.MIN_VALUE : " + df.parse(str, new ParsePosition(0)).toString()); + df.setMultiplier(100); + Number num = df.parse(str, new ParsePosition(0)); + if (num.doubleValue() != -9.223372036854776E16) { + errln("Bug 4092561 test failed when multiplier is not set to 1. Expected: -9.223372036854776E16, got: " + num.doubleValue()); + } + + df.setMultiplier(-100); + num = df.parse(str, new ParsePosition(0)); + if (num.doubleValue() != 9.223372036854776E16) { + errln("Bug 4092561 test failed when multiplier is not set to 1. Expected: 9.223372036854776E16, got: " + num.doubleValue()); + } + + str = Long.toString(Long.MAX_VALUE); + logln("Long.MAX_VALUE : " + df.parse(str, new ParsePosition(0)).toString()); + + df.setMultiplier(100); + num = df.parse(str, new ParsePosition(0)); + if (num.doubleValue() != 9.223372036854776E16) { + errln("Bug 4092561 test failed when multiplier is not set to 1. Expected: 9.223372036854776E16, got: " + num.doubleValue()); + } + + df.setMultiplier(-100); + num = df.parse(str, new ParsePosition(0)); + if (num.doubleValue() != -9.223372036854776E16) { + errln("Bug 4092561 test failed when multiplier is not set to 1. Expected: -9.223372036854776E16, got: " + num.doubleValue()); + } + + Locale.setDefault(savedLocale); + } + + /** + * DecimalFormat: Negative format ignored. + */ + public void Test4092480 () + { + DecimalFormat dfFoo = new DecimalFormat("000"); + + try { + dfFoo.applyPattern("0000;-000"); + if (!dfFoo.toPattern().equals("#0000")) + errln("dfFoo.toPattern : " + dfFoo.toPattern()); + logln(dfFoo.format(42)); + logln(dfFoo.format(-42)); + dfFoo.applyPattern("000;-000"); + if (!dfFoo.toPattern().equals("#000")) + errln("dfFoo.toPattern : " + dfFoo.toPattern()); + logln(dfFoo.format(42)); + logln(dfFoo.format(-42)); + + dfFoo.applyPattern("000;-0000"); + if (!dfFoo.toPattern().equals("#000")) + errln("dfFoo.toPattern : " + dfFoo.toPattern()); + logln(dfFoo.format(42)); + logln(dfFoo.format(-42)); + + dfFoo.applyPattern("0000;-000"); + if (!dfFoo.toPattern().equals("#0000")) + errln("dfFoo.toPattern : " + dfFoo.toPattern()); + logln(dfFoo.format(42)); + logln(dfFoo.format(-42)); + } catch (Exception foo) { + errln("Message " + foo.getMessage()); + } + } + /** + * NumberFormat.getCurrencyInstance() produces format that uses + * decimal separator instead of monetary decimal separator. + * + * Rewrote this test not to depend on the actual pattern. Pattern should + * never contain the monetary separator! Decimal separator in pattern is + * interpreted as monetary separator if currency symbol is seen! + */ + public void Test4087244 () { + Locale de = new Locale("pt", "PT"); + DecimalFormat df = (DecimalFormat) NumberFormat.getCurrencyInstance(de); + DecimalFormatSymbols sym = df.getDecimalFormatSymbols(); + sym.setMonetaryDecimalSeparator('$'); + df.setDecimalFormatSymbols(sym); + char decSep = sym.getDecimalSeparator(); + char monSep = sym.getMonetaryDecimalSeparator(); + char zero = sym.getZeroDigit(); + if (decSep == monSep) { + errln("ERROR in test: want decimal sep != monetary sep"); + } else { + df.setMinimumIntegerDigits(1); + df.setMinimumFractionDigits(2); + String str = df.format(1.23); + String monStr = "1" + monSep + "23"; + String decStr = "1" + decSep + "23"; + if (str.indexOf(monStr) >= 0 && str.indexOf(decStr) < 0) { + logln("OK: 1.23 -> \"" + str + "\" contains \"" + + monStr + "\" and not \"" + decStr + '"'); + } else { + errln("FAIL: 1.23 -> \"" + str + "\", should contain \"" + + monStr + + "\" and not \"" + decStr + '"'); + } + } + } + /** + * Number format data rounding errors for locale FR + */ + public void Test4070798 () { + NumberFormat formatter; + String tempString; + /* User error : + String expectedDefault = "-5\u00a0789,987"; + String expectedCurrency = "5\u00a0789,98 F"; + String expectedPercent = "-578\u00a0998%"; + */ + String expectedDefault = "-5\u00a0789,988"; + String expectedCurrency = "5\u00a0789,99 \u20AC"; + // changed for bug 6547501 + String expectedPercent = "-578\u00a0999 %"; + + formatter = NumberFormat.getNumberInstance(Locale.FRANCE); + tempString = formatter.format (-5789.9876); + + if (tempString.equals(expectedDefault)) { + logln ("Bug 4070798 default test passed."); + } else { + errln("Failed:" + + " Expected " + expectedDefault + + " Received " + tempString ); + } + + + formatter = NumberFormat.getCurrencyInstance(Locale.FRANCE); + tempString = formatter.format( 5789.9876 ); + + if (tempString.equals(expectedCurrency) ) { + logln ("Bug 4070798 currency test assed."); + } else { + errln("Failed:" + + " Expected " + expectedCurrency + + " Received " + tempString ); + } + + + formatter = NumberFormat.getPercentInstance(Locale.FRANCE); + tempString = formatter.format (-5789.9876); + + if (tempString.equals(expectedPercent) ) { + logln ("Bug 4070798 percentage test passed."); + } else { + errln("Failed:" + + " Expected " + expectedPercent + + " Received " + tempString ); + } + } + /** + * Data rounding errors for French (Canada) locale + */ + public void Test4071005 () { + + NumberFormat formatter; + String tempString; + /* user error : + String expectedDefault = "-5 789,987"; + String expectedCurrency = "5 789,98 $"; + String expectedPercent = "-578 998%"; + */ + String expectedDefault = "-5\u00a0789,988"; + String expectedCurrency = "5\u00a0789,99 $"; + // changed for bug 6547501 + String expectedPercent = "-578\u00a0999 %"; + + formatter = NumberFormat.getNumberInstance(Locale.CANADA_FRENCH); + tempString = formatter.format (-5789.9876); + if (tempString.equals(expectedDefault)) { + logln ("Bug 4071005 default test passed."); + } else { + errln("Failed:" + + " Expected " + expectedDefault + + " Received " + tempString ); + } + + formatter = NumberFormat.getCurrencyInstance(Locale.CANADA_FRENCH); + tempString = formatter.format( 5789.9876 ) ; + + if (tempString.equals(expectedCurrency) ) { + logln ("Bug 4071005 currency test passed."); + } else { + errln("Failed:" + + " Expected " + expectedCurrency + + " Received " + tempString ); + } + formatter = NumberFormat.getPercentInstance(Locale.CANADA_FRENCH); + tempString = formatter.format (-5789.9876); + + if (tempString.equals(expectedPercent) ) { + logln ("Bug 4071005 percentage test passed."); + } else { + errln("Failed:" + + " Expected " + expectedPercent + + " Received " + tempString ); + } + } + + /** + * Data rounding errors for German (Germany) locale + */ + public void Test4071014 () { + NumberFormat formatter; + String tempString; + /* user error : + String expectedDefault = "-5.789,987"; + String expectedCurrency = "5.789,98 DM"; + String expectedPercent = "-578.998%"; + */ + String expectedDefault = "-5.789,988"; + String expectedCurrency = "5.789,99 \u20AC"; + String expectedPercent = "-578.999%"; + + formatter = NumberFormat.getNumberInstance(Locale.GERMANY); + tempString = formatter.format (-5789.9876); + + if (tempString.equals(expectedDefault)) { + logln ("Bug 4071014 default test passed."); + } else { + errln("Failed:" + + " Expected " + expectedDefault + + " Received " + tempString ); + } + + formatter = NumberFormat.getCurrencyInstance(Locale.GERMANY); + tempString = formatter.format( 5789.9876 ) ; + + if (tempString.equals(expectedCurrency) ) { + logln ("Bug 4071014 currency test passed."); + } else { + errln("Failed:" + + " Expected " + expectedCurrency + + " Received " + tempString ); + } + + formatter = NumberFormat.getPercentInstance(Locale.GERMANY); + tempString = formatter.format (-5789.9876); + + if (tempString.equals(expectedPercent) ) { + logln ("Bug 4071014 percentage test passed."); + } else { + errln("Failed:" + + " Expected " + expectedPercent + + " Received " + tempString ); + } + + } + /** + * Data rounding errors for Italian locale number formats + */ + public void Test4071859 () { + NumberFormat formatter; + String tempString; + /* user error : + String expectedDefault = "-5.789,987"; + String expectedCurrency = "-L. 5.789,98"; + String expectedPercent = "-578.998%"; + */ + String expectedDefault = "-5.789,988"; + String expectedCurrency = "-\u20AC 5.789,99"; + String expectedPercent = "-578.999%"; + + formatter = NumberFormat.getNumberInstance(Locale.ITALY); + tempString = formatter.format (-5789.9876); + + if (tempString.equals(expectedDefault)) { + logln ("Bug 4071859 default test passed."); + } else { + errln("Failed:" + + " Expected " + expectedDefault + + " Received " + tempString ); + } + + formatter = NumberFormat.getCurrencyInstance(Locale.ITALY); + tempString = formatter.format( -5789.9876 ) ; + + if (tempString.equals(expectedCurrency) ) { + logln ("Bug 4071859 currency test passed."); + } else { + errln("Failed:" + + " Expected " + expectedCurrency + + " Received " + tempString ); + } + + formatter = NumberFormat.getPercentInstance(Locale.ITALY); + tempString = formatter.format (-5789.9876); + + if (tempString.equals(expectedPercent) ) { + logln ("Bug 4071859 percentage test passed."); + } else { + errln("Failed:" + + " Expected " + expectedPercent + + " Received " + tempString ); + } + + } + + /* bug 4071859 + * Test rounding for nearest even. + */ + public void Test4093610() + { + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + DecimalFormat df = new DecimalFormat("#0.#"); + + roundingTest(df, 12.15, "12.2"); // Rounding-up. Above tie (12.150..) + roundingTest(df, 12.25, "12.2"); // No round-up. Exact + half-even rule. + roundingTest(df, 12.45, "12.4"); // No round-up. Below tie (12.449..) + roundingTest(df, 12.450000001,"12.5"); // Rounding-up. Above tie. + roundingTest(df, 12.55, "12.6"); // Rounding-up. Above tie (12.550..) + roundingTest(df, 12.650000001,"12.7"); // Rounding-up. Above tie. + roundingTest(df, 12.75, "12.8"); // Rounding-up. Exact + half-even rule. + roundingTest(df, 12.750000001,"12.8"); // Rounding-up. Above tie. + roundingTest(df, 12.85, "12.8"); // No round-up. Below tie (12.849..) + roundingTest(df, 12.850000001,"12.9"); // Rounding-up. Above tie. + roundingTest(df, 12.950000001,"13"); // Rounding-up. Above tie. + + Locale.setDefault(savedLocale); + } + + void roundingTest(DecimalFormat df, double x, String expected) + { + String out = df.format(x); + logln("" + x + " formats with 1 fractional digits to " + out); + if (!out.equals(expected)) errln("FAIL: Expected " + expected); + } + /** + * Tests the setMaximumFractionDigits limit. + */ + public void Test4098741() + { + try { + NumberFormat fmt = NumberFormat.getPercentInstance(); + fmt.setMaximumFractionDigits(20); + logln(fmt.format(.001)); + } catch (Exception foo) { + errln("Bug 4098471 failed with exception thrown : " + foo.getMessage()); + } + } + /** + * Tests illegal pattern exception. + * Fix comment : HShih A31 Part1 will not be fixed and javadoc needs to be updated. + * Part2 has been fixed. + */ + public void Test4074454() + { + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + try { + DecimalFormat fmt = new DecimalFormat("#,#00.00;-#.#"); + logln("Inconsistent negative pattern is fine."); + DecimalFormat newFmt = new DecimalFormat("#,#00.00 p''ieces;-#,#00.00 p''ieces"); + String tempString = newFmt.format(3456.78); + if (!tempString.equals("3,456.78 p'ieces")) + errln("Failed! 3,456.78 p'ieces expected, but got : " + tempString); + } catch (Exception foo) { + errln("An exception was thrown for any inconsistent negative pattern."); + } + Locale.setDefault(savedLocale); + } + + /** + * Tests all different comments. + * Response to some comments : + * [1] DecimalFormat.parse API documentation is more than just one line. + * This is not a reproducable doc error in 116 source code. + * [2] See updated javadoc. + * [3] Fixed. + * [4] NumberFormat.parse(String, ParsePosition) : If parsing fails, + * a null object will be returned. The unchanged parse position also + * reflects an error. + * NumberFormat.parse(String) : If parsing fails, an ParseException + * will be thrown. + * See updated javadoc for more details. + * [5] See updated javadoc. + * [6] See updated javadoc. + * [7] This is a correct behavior if the DateFormat object is linient. + * Otherwise, an IllegalArgumentException will be thrown when formatting + * "January 35". See GregorianCalendar class javadoc for more details. + */ + public void Test4099404() + { + try { + DecimalFormat fmt = new DecimalFormat("000.0#0"); + errln("Bug 4099404 failed applying illegal pattern \"000.0#0\""); + } catch (Exception foo) { + logln("Bug 4099404 pattern \"000.0#0\" passed"); + } + try { + DecimalFormat fmt = new DecimalFormat("0#0.000"); + errln("Bug 4099404 failed applying illegal pattern \"0#0.000\""); + } catch (Exception foo) { + logln("Bug 4099404 pattern \"0#0.000\" passed"); + } + } + /** + * DecimalFormat.applyPattern doesn't set minimum integer digits + */ + public void Test4101481() + { + DecimalFormat sdf = new DecimalFormat("#,##0"); + if (sdf.getMinimumIntegerDigits() != 1) + errln("Minimum integer digits : " + sdf.getMinimumIntegerDigits()); + } + /** + * Tests ParsePosition.setErrorPosition() and ParsePosition.getErrorPosition(). + */ + public void Test4052223() + { + try { + DecimalFormat fmt = new DecimalFormat("#,#00.00"); + Number num = fmt.parse("abc3"); + errln("Bug 4052223 failed : can't parse string \"a\". Got " + num); + } catch (ParseException foo) { + logln("Caught expected ParseException : " + foo.getMessage() + " at index : " + foo.getErrorOffset()); + } + } + /** + * API tests for API addition request A9. + */ + public void Test4061302() + { + DecimalFormatSymbols fmt = DecimalFormatSymbols.getInstance(); + String currency = fmt.getCurrencySymbol(); + String intlCurrency = fmt.getInternationalCurrencySymbol(); + char monDecSeparator = fmt.getMonetaryDecimalSeparator(); + if (currency.equals("") || + intlCurrency.equals("") || + monDecSeparator == 0) { + errln("getCurrencySymbols failed, got empty string."); + } + logln("Before set ==> Currency : " + currency + " Intl Currency : " + intlCurrency + " Monetary Decimal Separator : " + monDecSeparator); + fmt.setCurrencySymbol("XYZ"); + fmt.setInternationalCurrencySymbol("ABC"); + fmt.setMonetaryDecimalSeparator('*'); + currency = fmt.getCurrencySymbol(); + intlCurrency = fmt.getInternationalCurrencySymbol(); + monDecSeparator = fmt.getMonetaryDecimalSeparator(); + if (!currency.equals("XYZ") || + !intlCurrency.equals("ABC") || + monDecSeparator != '*') { + errln("setCurrencySymbols failed."); + } + logln("After set ==> Currency : " + currency + " Intl Currency : " + intlCurrency + " Monetary Decimal Separator : " + monDecSeparator); + } + /** + * API tests for API addition request A23. FieldPosition.getBeginIndex and + * FieldPosition.getEndIndex. + */ + public void Test4062486() + { + DecimalFormat fmt = new DecimalFormat("#,##0.00"); + StringBuffer formatted = new StringBuffer(); + FieldPosition field = new FieldPosition(0); + Double num = new Double(1234.5); + fmt.format(num, formatted, field); + if (field.getBeginIndex() != 0 && field.getEndIndex() != 5) + errln("Format 1234.5 failed. Begin index: " + field.getBeginIndex() + " End index: " + field.getEndIndex()); + field.setBeginIndex(7); + field.setEndIndex(4); + if (field.getBeginIndex() != 7 && field.getEndIndex() != 4) + errln("Set begin/end field indexes failed. Begin index: " + field.getBeginIndex() + " End index: " + field.getEndIndex()); + } + + /** + * DecimalFormat.parse incorrectly works with a group separator. + */ + public void Test4108738() + { + + DecimalFormat df = new DecimalFormat("#,##0.###", + DecimalFormatSymbols.getInstance(java.util.Locale.US)); + String text = "1.222,111"; + Number num = df.parse(text,new ParsePosition(0)); + if (!num.toString().equals("1.222")) + errln("\"" + text + "\" is parsed as " + num); + text = "1.222x111"; + num = df.parse(text,new ParsePosition(0)); + if (!num.toString().equals("1.222")) + errln("\"" + text + "\" is parsed as " + num); + } + + /** + * DecimalFormat.format() incorrectly formats negative doubles. + */ + public void Test4106658() + { + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + DecimalFormat df = new DecimalFormat(); // Corrected; see 4147706 + double d1 = -0.0; + double d2 = -0.0001; + StringBuffer buffer = new StringBuffer(); + logln("pattern: \"" + df.toPattern() + "\""); + df.format(d1, buffer, new FieldPosition(0)); + if (!buffer.toString().equals("-0")) { // Corrected; see 4147706 + errln(d1 + " is formatted as " + buffer); + } + buffer.setLength(0); + df.format(d2, buffer, new FieldPosition(0)); + if (!buffer.toString().equals("-0")) { // Corrected; see 4147706 + errln(d2 + " is formatted as " + buffer); + } + Locale.setDefault(savedLocale); + } + + /** + * DecimalFormat.parse returns 0 if string parameter is incorrect. + */ + public void Test4106662() + { + DecimalFormat df = new DecimalFormat(); + String text = "x"; + ParsePosition pos1 = new ParsePosition(0), pos2 = new ParsePosition(0); + + logln("pattern: \"" + df.toPattern() + "\""); + Number num = df.parse(text, pos1); + if (num != null) { + errln("Test Failed: \"" + text + "\" is parsed as " + num); + } + df = null; + df = new DecimalFormat("$###.00"); + num = df.parse("$", pos2); + if (num != null){ + errln("Test Failed: \"$\" is parsed as " + num); + } + } + + /** + * NumberFormat.parse doesn't return null + */ + public void Test4114639() + { + NumberFormat format = NumberFormat.getInstance(); + String text = "time 10:x"; + ParsePosition pos = new ParsePosition(8); + Number result = format.parse(text, pos); + if (result != null) errln("Should return null but got : " + result); // Should be null; it isn't + } + + /** + * DecimalFormat.format(long n) fails if n * multiplier > MAX_LONG. + */ + public void Test4106664() + { + DecimalFormat df = new DecimalFormat(); + long n = 1234567890123456L; + int m = 12345678; + BigInteger bigN = BigInteger.valueOf(n); + bigN = bigN.multiply(BigInteger.valueOf(m)); + df.setMultiplier(m); + df.setGroupingUsed(false); + logln("formated: " + + df.format(n, new StringBuffer(), new FieldPosition(0))); + logln("expected: " + bigN.toString()); + } + /** + * DecimalFormat.format incorrectly formats -0.0. + */ + public void Test4106667() + { + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + DecimalFormat df = new DecimalFormat(); + df.setPositivePrefix("+"); + double d = -0.0; + logln("pattern: \"" + df.toPattern() + "\""); + StringBuffer buffer = new StringBuffer(); + df.format(d, buffer, new FieldPosition(0)); + if (!buffer.toString().equals("-0")) { // Corrected; see 4147706 + errln(d + " is formatted as " + buffer); + } + Locale.setDefault(savedLocale); + } + + /** + * DecimalFormat.setMaximumIntegerDigits() works incorrectly. + */ + public void Test4110936() + { + NumberFormat nf = NumberFormat.getInstance(); + nf.setMaximumIntegerDigits(128); + logln("setMaximumIntegerDigits(128)"); + if (nf.getMaximumIntegerDigits() != 128) + errln("getMaximumIntegerDigits() returns " + + nf.getMaximumIntegerDigits()); + } + + /** + * Locale data should use generic currency symbol + * + * 1) Make sure that all currency formats use the generic currency symbol. + * 2) Make sure we get the same results using the generic symbol or a + * hard-coded one. + */ + public void Test4122840() + { + Locale[] locales = NumberFormat.getAvailableLocales(); + + for (int i = 0; i < locales.length; i++) { + ResourceBundle rb = LocaleData.getBundle("sun.text.resources.FormatData", + locales[i]); + // + // Get the currency pattern for this locale. We have to fish it + // out of the ResourceBundle directly, since DecimalFormat.toPattern + // will return the localized symbol, not \00a4 + // + String[] numPatterns = (String[])rb.getObject("NumberPatterns"); + String pattern = numPatterns[1]; + + if (pattern.indexOf("\u00A4") == -1 ) { + errln("Currency format for " + locales[i] + + " does not contain generic currency symbol:" + + pattern ); + } + + // Create a DecimalFormat using the pattern we got and format a number + DecimalFormatSymbols symbols = DecimalFormatSymbols.getInstance(locales[i]); + DecimalFormat fmt1 = new DecimalFormat(pattern, symbols); + + String result1 = fmt1.format(1.111); + + // + // Now substitute in the locale's currency symbol and create another + // pattern. Replace the decimal separator with the monetary separator. + // + char decSep = symbols.getDecimalSeparator(); + char monSep = symbols.getMonetaryDecimalSeparator(); + StringBuffer buf = new StringBuffer(pattern); + for (int j = 0; j < buf.length(); j++) { + if (buf.charAt(j) == '\u00a4') { + String cur = "'" + symbols.getCurrencySymbol() + "'"; + buf.replace(j, j+1, cur); + j += cur.length() - 1; + } + } + symbols.setDecimalSeparator(monSep); + DecimalFormat fmt2 = new DecimalFormat(buf.toString(), symbols); + + String result2 = fmt2.format(1.111); + + if (!result1.equals(result2)) { + errln("Results for " + locales[i] + " differ: " + + result1 + " vs " + result2); + } + } + } + + /** + * DecimalFormat.format() delivers wrong string. + */ + public void Test4125885() + { + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + double rate = 12.34; + DecimalFormat formatDec = new DecimalFormat ("000.00"); + logln("toPattern: " + formatDec.toPattern()); + String rateString= formatDec.format(rate); + if (!rateString.equals("012.34")) + errln("result : " + rateString + " expected : 012.34"); + rate = 0.1234; + formatDec = null; + formatDec = new DecimalFormat ("+000.00%;-000.00%"); + logln("toPattern: " + formatDec.toPattern()); + rateString= formatDec.format(rate); + if (!rateString.equals("+012.34%")) + errln("result : " + rateString + " expected : +012.34%"); + Locale.setDefault(savedLocale); + } + + /** + ** + * DecimalFormat produces extra zeros when formatting numbers. + */ + public void Test4134034() { + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + DecimalFormat nf = new DecimalFormat("##,###,###.00"); + + String f = nf.format(9.02); + if (f.equals("9.02")) logln(f + " ok"); else errln("9.02 -> " + f + "; want 9.02"); + + f = nf.format(0); + if (f.equals(".00")) logln(f + " ok"); else errln("0 -> " + f + "; want .00"); + Locale.setDefault(savedLocale); + } + + /** + * CANNOT REPRODUCE - This bug could not be reproduced. It may be + * a duplicate of 4134034. + * + * JDK 1.1.6 Bug, did NOT occur in 1.1.5 + * Possibly related to bug 4125885. + * + * This class demonstrates a regression in version 1.1.6 + * of DecimalFormat class. + * + * 1.1.6 Results + * Value 1.2 Format #.00 Result '01.20' !!!wrong + * Value 1.2 Format 0.00 Result '001.20' !!!wrong + * Value 1.2 Format 00.00 Result '0001.20' !!!wrong + * Value 1.2 Format #0.0# Result '1.2' + * Value 1.2 Format #0.00 Result '001.20' !!!wrong + * + * 1.1.5 Results + * Value 1.2 Format #.00 Result '1.20' + * Value 1.2 Format 0.00 Result '1.20' + * Value 1.2 Format 00.00 Result '01.20' + * Value 1.2 Format #0.0# Result '1.2' + * Value 1.2 Format #0.00 Result '1.20' + */ + public void Test4134300() { + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + String[] DATA = { + // Pattern Expected string + "#.00", "1.20", + "0.00", "1.20", + "00.00", "01.20", + "#0.0#", "1.2", + "#0.00", "1.20", + }; + for (int i=0; i " + s); + s = f.format(-123.456); + if (!s.equals("-123.456")) + errln("Fail: Format empty pattern x -123.456 => " + s); + } + } + + /** + * BigDecimal numbers get their fractions truncated by NumberFormat. + */ + public void Test4141750() { + try { + String str = "12345.67"; + BigDecimal bd = new BigDecimal(str); + NumberFormat nf = NumberFormat.getInstance(Locale.US); + String sd = nf.format(bd); + if (!sd.endsWith("67")) { + errln("Fail: " + str + " x format -> " + sd); + } + } + catch (Exception e) { + errln(e.toString()); + e.printStackTrace(); + } + } + + /** + * DecimalFormat toPattern() doesn't quote special characters or handle + * single quotes. + */ + public void Test4145457() { + try { + DecimalFormat nf = (DecimalFormat)NumberFormat.getInstance(); + DecimalFormatSymbols sym = nf.getDecimalFormatSymbols(); + sym.setDecimalSeparator('\''); + nf.setDecimalFormatSymbols(sym); + double pi = 3.14159; + + String[] PATS = { "#.00 'num''ber'", "''#.00''" }; + + for (int i=0; i \"" + pat + '"'); + + if (val == val2 && out.equals(out2)) { + logln("Ok " + pi + " x \"" + PATS[i] + "\" -> \"" + + out + "\" -> " + val + " -> \"" + + out2 + "\" -> " + val2); + } + else { + errln("Fail " + pi + " x \"" + PATS[i] + "\" -> \"" + + out + "\" -> " + val + " -> \"" + + out2 + "\" -> " + val2); + } + } + } + catch (ParseException e) { + errln("Fail: " + e); + e.printStackTrace(); + } + } + + /** + * DecimalFormat.applyPattern() sets minimum integer digits incorrectly. + * CANNOT REPRODUCE + * This bug is a duplicate of 4139344, which is a duplicate of 4134300 + */ + public void Test4147295() { + DecimalFormat sdf = new DecimalFormat(); + String pattern = "#,###"; + logln("Applying pattern \"" + pattern + "\""); + sdf.applyPattern(pattern); + int minIntDig = sdf.getMinimumIntegerDigits(); + if (minIntDig != 0) { + errln("Test failed"); + errln(" Minimum integer digits : " + minIntDig); + errln(" new pattern: " + sdf.toPattern()); + } else { + logln("Test passed"); + logln(" Minimum integer digits : " + minIntDig); + } + } + + /** + * DecimalFormat formats -0.0 as +0.0 + * See also older related bug 4106658, 4106667 + */ + public void Test4147706() { + DecimalFormat df = new DecimalFormat("#,##0.0##"); + df.setDecimalFormatSymbols(DecimalFormatSymbols.getInstance(Locale.ENGLISH)); + double d1 = -0.0; + double d2 = -0.0001; + StringBuffer f1 = df.format(d1, new StringBuffer(), new FieldPosition(0)); + StringBuffer f2 = df.format(d2, new StringBuffer(), new FieldPosition(0)); + if (!f1.toString().equals("-0.0")) { + errln(d1 + " x \"" + df.toPattern() + "\" is formatted as \"" + f1 + '"'); + } + if (!f2.toString().equals("-0.0")) { + errln(d2 + " x \"" + df.toPattern() + "\" is formatted as \"" + f2 + '"'); + } + } + + /** + * NumberFormat cannot format Double.MAX_VALUE + */ + public void Test4162198() { + double dbl = Double.MAX_VALUE; + NumberFormat f = NumberFormat.getInstance(); + f.setMaximumFractionDigits(Integer.MAX_VALUE); + f.setMaximumIntegerDigits(Integer.MAX_VALUE); + String s = f.format(dbl); + logln("The number " + dbl + " formatted to " + s); + Number n = null; + try { + n = f.parse(s); + } catch (java.text.ParseException e) { + errln("Caught a ParseException:"); + e.printStackTrace(); + } + logln("The string " + s + " parsed as " + n); + if (n.doubleValue() != dbl) { + errln("Round trip failure"); + } + } + + /** + * NumberFormat does not parse negative zero. + */ + public void Test4162852() throws ParseException { + for (int i=0; i<2; ++i) { + NumberFormat f = (i == 0) ? NumberFormat.getInstance() + : NumberFormat.getPercentInstance(); + double d = -0.0; + String s = f.format(d); + double e = f.parse(s).doubleValue(); + logln("" + + d + " -> " + + '"' + s + '"' + " -> " + + e); + if (e != 0.0 || 1.0/e > 0.0) { + logln("Failed to parse negative zero"); + } + } + } + + /** + * NumberFormat truncates data + */ + public void Test4167494() throws Exception { + NumberFormat fmt = NumberFormat.getInstance(Locale.US); + + double a = Double.MAX_VALUE; + String s = fmt.format(a); + double b = fmt.parse(s).doubleValue(); + boolean match = a == b; + if (match) { + logln("" + a + " -> \"" + s + "\" -> " + b + " ok"); + } else { + errln("" + a + " -> \"" + s + "\" -> " + b + " FAIL"); + } + + // We don't test Double.MIN_VALUE because the locale data for the US + // currently doesn't specify enough digits to display Double.MIN_VALUE. + // This is correct for now; however, we leave this here as a reminder + // in case we want to address this later. + if (false) { + a = Double.MIN_VALUE; + s = fmt.format(a); + b = fmt.parse(s).doubleValue(); + match = a == b; + if (match) { + logln("" + a + " -> \"" + s + "\" -> " + b + " ok"); + } else { + errln("" + a + " -> \"" + s + "\" -> " + b + " FAIL"); + } + } + } + + /** + * DecimalFormat.parse() fails when ParseIntegerOnly set to true + */ + public void Test4170798() { + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + DecimalFormat df = new DecimalFormat(); + df.setParseIntegerOnly(true); + Number n = df.parse("-0.0", new ParsePosition(0)); + if (!(n instanceof Long || n instanceof Integer) + || n.intValue() != 0) { + errln("FAIL: parse(\"-0.0\") returns " + + n + " (" + n.getClass().getName() + ')'); + } + Locale.setDefault(savedLocale); + } + + /** + * toPattern only puts the first grouping separator in. + */ + public void Test4176114() { + String[] DATA = { + "00", "#00", + "000", "#000", // No grouping + "#000", "#000", // No grouping + "#,##0", "#,##0", + "#,000", "#,000", + "0,000", "#0,000", + "00,000", "#00,000", + "000,000", "#,000,000", + "0,000,000,000,000.0000", "#0,000,000,000,000.0000", // Reported + }; + for (int i=0; i " + s + ", want " + DATA[i+1]); + } + } + } + + /** + * DecimalFormat is incorrectly rounding numbers like 1.2501 to 1.2 + */ + public void Test4179818() { + String DATA[] = { + // Input Pattern Expected output + "1.2511", "#.#", "1.3", + "1.2501", "#.#", "1.3", + "0.9999", "#", "1", + }; + DecimalFormat fmt = new DecimalFormat("#", + DecimalFormatSymbols.getInstance(Locale.US)); + for (int i=0; i " + fmt.format(-1) + + ", exp ^1"); + } + if (!fmt.getNegativePrefix().equals("^")) { + errln("FAIL: (minus=^).getNegativePrefix -> " + + fmt.getNegativePrefix() + ", exp ^"); + } + sym.setMinusSign('-'); + + fmt.applyPattern("#%"); + sym.setPercent('^'); + fmt.setDecimalFormatSymbols(sym); + if (!fmt.format(0.25).equals("25^")) { + errln("FAIL: 0.25 x (percent=^) -> " + fmt.format(0.25) + + ", exp 25^"); + } + if (!fmt.getPositiveSuffix().equals("^")) { + errln("FAIL: (percent=^).getPositiveSuffix -> " + + fmt.getPositiveSuffix() + ", exp ^"); + } + sym.setPercent('%'); + + fmt.applyPattern("#\u2030"); + sym.setPerMill('^'); + fmt.setDecimalFormatSymbols(sym); + if (!fmt.format(0.25).equals("250^")) { + errln("FAIL: 0.25 x (permill=^) -> " + fmt.format(0.25) + + ", exp 250^"); + } + if (!fmt.getPositiveSuffix().equals("^")) { + errln("FAIL: (permill=^).getPositiveSuffix -> " + + fmt.getPositiveSuffix() + ", exp ^"); + } + sym.setPerMill('\u2030'); + + fmt.applyPattern("\u00A4#.00"); + sym.setCurrencySymbol("usd"); + fmt.setDecimalFormatSymbols(sym); + if (!fmt.format(12.5).equals("usd12.50")) { + errln("FAIL: 12.5 x (currency=usd) -> " + fmt.format(12.5) + + ", exp usd12.50"); + } + if (!fmt.getPositivePrefix().equals("usd")) { + errln("FAIL: (currency=usd).getPositivePrefix -> " + + fmt.getPositivePrefix() + ", exp usd"); + } + sym.setCurrencySymbol("$"); + + fmt.applyPattern("\u00A4\u00A4#.00"); + sym.setInternationalCurrencySymbol("DOL"); + fmt.setDecimalFormatSymbols(sym); + if (!fmt.format(12.5).equals("DOL12.50")) { + errln("FAIL: 12.5 x (intlcurrency=DOL) -> " + fmt.format(12.5) + + ", exp DOL12.50"); + } + if (!fmt.getPositivePrefix().equals("DOL")) { + errln("FAIL: (intlcurrency=DOL).getPositivePrefix -> " + + fmt.getPositivePrefix() + ", exp DOL"); + } + sym.setInternationalCurrencySymbol("USD"); + + // Since the pattern logic has changed, make sure that patterns round + // trip properly. Test stream in/out integrity too. + Locale[] avail = NumberFormat.getAvailableLocales(); + for (int i=0; i \"" + pat + + "\" -> \"" + f2.toPattern() + '"'); + } + + // Test toLocalizedPattern/applyLocalizedPattern round trip + pat = df.toLocalizedPattern(); + f2.applyLocalizedPattern(pat); + if (!df.equals(f2)) { + errln("FAIL: " + avail[i] + " -> localized \"" + pat + + "\" -> \"" + f2.toPattern() + '"'); + } + + // Test writeObject/readObject round trip + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + ObjectOutputStream oos = new ObjectOutputStream(baos); + oos.writeObject(df); + oos.flush(); + baos.close(); + byte[] bytes = baos.toByteArray(); + ObjectInputStream ois = + new ObjectInputStream(new ByteArrayInputStream(bytes)); + f2 = (DecimalFormat) ois.readObject(); + if (!df.equals(f2)) { + errln("FAIL: Stream in/out " + avail[i] + " -> \"" + pat + + "\" -> " + + (f2 != null ? ("\""+f2.toPattern()+'"') : "null")); + } + + } + } + } + + /** + * DecimalFormat.parse() fails for mulipliers 2^n. + */ + public void Test4216742() throws ParseException { + DecimalFormat fmt = (DecimalFormat) NumberFormat.getInstance(Locale.US); + long[] DATA = { Long.MIN_VALUE, Long.MAX_VALUE, -100000000L, 100000000L}; + for (int i=0; i 0 != DATA[i] > 0) { + errln("\"" + str + "\" parse(x " + fmt.getMultiplier() + + ") => " + n); + } + } + } + } + + /** + * DecimalFormat formats 1.001 to "1.00" instead of "1" with 2 fraction + * digits. + */ + public void Test4217661() { + Object[] DATA = { + new Double(0.001), "0", + new Double(1.001), "1", + new Double(0.006), "0.01", + new Double(1.006), "1.01", + }; + NumberFormat fmt = NumberFormat.getInstance(Locale.US); + fmt.setMaximumFractionDigits(2); + for (int i=0; i 0 && args[0].equals("-debug")) { + DEBUG = true; + String[] newargs = new String[args.length - 1]; + System.arraycopy(args, 1, newargs, 0, newargs.length); + args = newargs; + } + new NumberRoundTrip().run(args); + } + + public void TestNumberFormatRoundTrip() { + logln("Default Locale"); + localeName = "Default Locale"; + formatName = "getInstance"; + doTest(NumberFormat.getInstance()); + formatName = "getNumberInstance"; + doTest(NumberFormat.getNumberInstance()); + formatName = "getCurrencyInstance"; + doTest(NumberFormat.getCurrencyInstance()); + formatName = "getPercentInstance"; + doTest(NumberFormat.getPercentInstance()); + + Locale[] loc = NumberFormat.getAvailableLocales(); + for (int i=0; i " + escape(s)); + n = fmt.parse(s); + if (DEBUG) logln(" " + escape(s) + " P> " + n); + s2 = fmt.format(n); + if (DEBUG) logln(" " + n + " F> " + escape(s2)); + + if (STRING_COMPARE) { + if (!s.equals(s2)) { + if (fmt instanceof DecimalFormat) { + logln("Text mismatch: expected: " + s + ", got: " + s2 + " --- Try BigDecimal parsing."); + ((DecimalFormat)fmt).setParseBigDecimal(true); + n = fmt.parse(s); + if (DEBUG) logln(" " + escape(s) + " P> " + n); + s2 = fmt.format(n); + if (DEBUG) logln(" " + n + " F> " + escape(s2)); + ((DecimalFormat)fmt).setParseBigDecimal(false); + + if (!s.equals(s2)) { + err = "STRING ERROR(DecimalFormat): "; + } + } else { + err = "STRING ERROR(NumberFormat): "; + } + } + } + + if (EXACT_NUMERIC_COMPARE) { + if (value.doubleValue() != n.doubleValue()) { + err += "NUMERIC ERROR: "; + } + } else { + // Compute proportional error + double error = proportionalError(value, n); + + if (error > MAX_ERROR) { + err += "NUMERIC ERROR " + error + ": "; + } + + if (error > max_numeric_error) max_numeric_error = error; + if (error < min_numeric_error) min_numeric_error = error; + } + + String message = value + typeOf(value) + " F> " + + escape(s) + " P> " + + n + typeOf(n) + " F> " + + escape(s2); + if (err.length() > 0) { + errln("*** " + err + " with " + + formatName + " in " + localeName + + " " + message); + } else { + logln(message); + } + } catch (ParseException e) { + errln("*** " + e.toString() + " with " + + formatName + " in " + localeName); + } + } + + static String typeOf(Number n) { + if (n instanceof Long) return " Long"; + if (n instanceof Double) return " Double"; + return " Number"; + } + + static String escape(String s) { + StringBuffer buf = new StringBuffer(); + for (int i=0; i> 12)); + buf.append(Integer.toHexString((c & 0x0F00) >> 8)); + buf.append(Integer.toHexString((c & 0x00F0) >> 4)); + buf.append(Integer.toHexString(c & 0x000F)); + } + } + return buf.toString(); + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/NumberTest.java b/jdk/test/java/text/Format/NumberFormat/NumberTest.java new file mode 100644 index 00000000000..ca519bb6dab --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/NumberTest.java @@ -0,0 +1,411 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4122840 4135202 4408066 4838107 8008577 + * @summary test NumberFormat + * @library /java/text/testlib + * @modules java.base/sun.util.resources + * @compile -XDignore.symbol.file NumberTest.java + * @run main/othervm -Djava.locale.providers=COMPAT,SPI NumberTest + */ + +import java.util.*; +import java.text.*; +import sun.util.resources.LocaleData; + +public class NumberTest extends IntlTest +{ + public static void main(String[] args) throws Exception { + new NumberTest().run(args); + } + + // Test pattern handling + public void TestPatterns() + { + DecimalFormatSymbols sym = DecimalFormatSymbols.getInstance(Locale.US); + String pat[] = { "#.#", "#.", ".#", "#" }; + String newpat[] = { "#0.#", "#0.", "#.0", "#" }; + String num[] = { "0", "0.", ".0", "0" }; + for (int i=0; i \"" + + fmt.toPattern() + '"'); + + for (int v=0; v " + escape(s)); + if (!s.equals(valFormat[v+ival])) { + errln("FAIL: Expected " + valFormat[v+ival] + + ", got " + s + + ", pattern=" + fmt.toPattern()); + } + + ParsePosition pos = new ParsePosition(0); + Number a = fmt.parse(s, pos); + if (pos.getIndex() == s.length()) { + logln(" Parse -> " + a); + if (a.doubleValue() != valParse[v+ival]) { + errln("FAIL: Expected " + valParse[v+ival] + + ", got " + a.doubleValue() + + ", pattern=" + fmt.toPattern()); + } + } else { + errln(" FAIL: Partial parse (" + pos.getIndex() + + " chars) -> " + a); + } + } + for (int v=0; v " + escape(s)); + if (!s.equals(lvalFormat[v+ilval])) { + errln("ERROR: Expected " + lvalFormat[v+ilval] + + ", got " + s + + ", pattern=" + fmt.toPattern()); + } + + ParsePosition pos = new ParsePosition(0); + Number a = fmt.parse(s, pos); + if (pos.getIndex() == s.length()) { + logln(" Parse -> " + a); + if (a.longValue() != lvalParse[v+ilval]) { + errln("FAIL: Expected " + lvalParse[v+ilval] + + ", got " + a + + ", pattern=" + fmt.toPattern()); + } + } else { + errln(" FAIL: Partial parse (" + pos.getIndex() + + " chars) -> " + a); + } + } + ival += val.length; + ilval += lval.length; + } + } + + // Test the handling of quotes + public void TestQuotes() + { + String pat; + DecimalFormatSymbols sym = DecimalFormatSymbols.getInstance(Locale.US); + DecimalFormat fmt = new DecimalFormat(pat = "a'fo''o'b#", sym); + String s = fmt.format(123); + logln("Pattern \"" + pat + "\""); + logln(" Format 123 -> " + escape(s)); + if (!s.equals("afo'ob123")) errln("FAIL: Expected afo'ob123"); + + fmt = new DecimalFormat(pat = "a''b#", sym); + s = fmt.format(123); + logln("Pattern \"" + pat + "\""); + logln(" Format 123 -> " + escape(s)); + if (!s.equals("a'b123")) errln("FAIL: Expected a'b123"); + } + + // Test the use of the currency sign + public void TestCurrencySign() + { + DecimalFormatSymbols sym = DecimalFormatSymbols.getInstance(Locale.US); + DecimalFormat fmt = new DecimalFormat("\u00A4#,##0.00;-\u00A4#,##0.00", sym); + // Can't test this properly until currency API goes public + // DecimalFormatSymbols sym = fmt.getDecimalFormatSymbols(); + + String s = fmt.format(1234.56); + logln("Pattern \"" + fmt.toPattern() + "\""); + logln(" Format " + 1234.56 + " -> " + escape(s)); + if (!s.equals("$1,234.56")) errln("FAIL: Expected $1,234.56"); + s = fmt.format(-1234.56); + logln(" Format " + -1234.56 + " -> " + escape(s)); + if (!s.equals("-$1,234.56")) errln("FAIL: Expected -$1,234.56"); + + fmt = new DecimalFormat("\u00A4\u00A4 #,##0.00;\u00A4\u00A4 -#,##0.00", sym); + s = fmt.format(1234.56); + logln("Pattern \"" + fmt.toPattern() + "\""); + logln(" Format " + 1234.56 + " -> " + escape(s)); + if (!s.equals("USD 1,234.56")) errln("FAIL: Expected USD 1,234.56"); + s = fmt.format(-1234.56); + logln(" Format " + -1234.56 + " -> " + escape(s)); + if (!s.equals("USD -1,234.56")) errln("FAIL: Expected USD -1,234.56"); + } + static String escape(String s) + { + StringBuffer buf = new StringBuffer(); + char HEX[] = { '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F' }; + for (int i=0; i> 12]); + buf.append(HEX[(c & 0x0F00) >> 8]); + buf.append(HEX[(c & 0x00F0) >> 4]); + buf.append(HEX[c & 0x000F]); + } + } + return buf.toString(); + } + + // Test simple currency format + // Bug 4024941; this code used to throw a NumberFormat exception + public void TestCurrency() { + NumberFormat currencyFmt = + NumberFormat.getCurrencyInstance(Locale.CANADA_FRENCH); + String s = currencyFmt.format(1.50); + logln("Un pauvre ici a..........." + s); + if (!s.equals("1,50 $")) { + errln("FAIL: Expected 1,50 $; got " + s + "; "+ dumpFmt(currencyFmt)); + } + currencyFmt = NumberFormat.getCurrencyInstance(Locale.GERMANY); + s = currencyFmt.format(1.50); + logln("Un pauvre en Allemagne a.." + s); + if (!s.equals("1,50 \u20AC")) { + errln("FAIL: Expected 1,50 \u20AC; got " + s + "; " + dumpFmt(currencyFmt)); + } + currencyFmt = NumberFormat.getCurrencyInstance(Locale.FRANCE); + s = currencyFmt.format(1.50); + logln("Un pauvre en France a....." + s); + if (!s.equals("1,50 \u20AC")) { + errln("FAIL: Expected 1,50 \u20AC; got " + s + "; " + dumpFmt(currencyFmt)); + } + } + + String dumpFmt(NumberFormat numfmt) { + DecimalFormat fmt = (DecimalFormat)numfmt; + StringBuffer buf = new StringBuffer(); + buf.append("pattern \""); + buf.append(fmt.toPattern()); + buf.append("\", currency \""); + buf.append(fmt.getDecimalFormatSymbols().getCurrencySymbol()); + buf.append("\""); + return buf.toString(); + } + + // Test numeric parsing + // Bug 4059870 + public void TestParse() + { + String arg = "0"; + java.text.DecimalFormat format = new java.text.DecimalFormat("00"); + try { + Number n = format.parse(arg); + logln("parse(" + arg + ") = " + n); + if (n.doubleValue() != 0.0) errln("FAIL: Expected 0"); + } catch (Exception e) { errln("Exception caught: " + e); } + } + + // Test rounding + public void TestRounding487() { + NumberFormat nf = NumberFormat.getInstance(Locale.US); + roundingTest(nf, 0.00159999, 4, "0.0016"); + roundingTest(nf, 0.00995, 4, "0.01"); + roundingTest(nf, 12.7995, 3, "12.8"); + roundingTest(nf, 12.4999, 0, "12"); + roundingTest(nf, -19.5, 0, "-20"); + } + + void roundingTest(NumberFormat nf, double x, int maxFractionDigits, String expected) { + nf.setMaximumFractionDigits(maxFractionDigits); + String out = nf.format(x); + logln("" + x + " formats with " + maxFractionDigits + " fractional digits to " + out); + if (!out.equals(expected)) { + errln("FAIL: Expected " + expected + ", got " + out); + } + } + + /** + * Bug 4135202 + * DecimalFormat should recognize not only Latin digits 0-9 (\u0030-\u0039) + * but also various other ranges of Unicode digits, such as Arabic + * digits \u0660-\u0669 and Devanagari digits \u0966-\u096F, to name + * a couple. + * @see java.lang.Character#isDigit(char) + */ + public void TestUnicodeDigits() { + char[] zeros = { + 0x0030, // ISO-LATIN-1 digits ('0' through '9') + 0x0660, // Arabic-Indic digits + 0x06F0, // Extended Arabic-Indic digits + 0x0966, // Devanagari digits + 0x09E6, // Bengali digits + 0x0A66, // Gurmukhi digits + 0x0AE6, // Gujarati digits + 0x0B66, // Oriya digits + 0x0BE6, // Tamil digits + 0x0C66, // Telugu digits + 0x0CE6, // Kannada digits + 0x0D66, // Malayalam digits + 0x0E50, // Thai digits + 0x0ED0, // Lao digits + 0x0F20, // Tibetan digits + 0xFF10, // Fullwidth digits + }; + NumberFormat format = NumberFormat.getInstance(); + for (int i=0; i= 0) { + if (customNeg.indexOf(INTL_SYM) >= 0) + errln("Fail: Positive and negative patterns use different symbols"); + else + logln("Ok: " + locales[i] + + " uses currency symbol: " + genericPos + + ", " + customPos); + } + else if (customPos.indexOf(INTL_SYM) >= 0) { + if (customNeg.indexOf(SYM) >= 0) + errln("Fail: Positive and negative patterns use different symbols"); + else + logln("Ok: " + locales[i] + + " uses intl. currency symbol: " + genericPos + + ", " + customPos); + } + else { + errln("FAIL: " + locales[i] + + " contains no currency symbol (impossible!)"); + } + } + } + else logln("Skipping " + locales[i] + "; not a DecimalFormat"); + } + } + + public void TestIntegerFormat() throws ParseException { + NumberFormat format = NumberFormat.getIntegerInstance(Locale.GERMANY); + + float[] formatInput = { 12345.67f, -12345.67f, -0, 0 }; + String[] formatExpected = { "12.346", "-12.346", "0", "0" }; + + for (int i = 0; i < formatInput.length; i++) { + String result = format.format(formatInput[i]); + if (!result.equals(formatExpected[i])) { + errln("FAIL: Expected " + formatExpected[i] + ", got " + result); + } + } + + String[] parseInput = { "0", "-0", "12.345,67", "-12.345,67" }; + float[] parseExpected = { 0, 0, 12345, -12345 }; + + for (int i = 0; i < parseInput.length; i++) { + float result = ((Number) format.parse(parseInput[i])).floatValue(); + if (result != parseExpected[i]) { + errln("FAIL: Expected " + parseExpected[i] + ", got " + result); + } + } + } +} diff --git a/jdk/test/java/text/Format/NumberFormat/PositionTest.java b/jdk/test/java/text/Format/NumberFormat/PositionTest.java new file mode 100644 index 00000000000..31a5a3dbebd --- /dev/null +++ b/jdk/test/java/text/Format/NumberFormat/PositionTest.java @@ -0,0 +1,221 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4109023 4153060 4153061 + * @library /java/text/testlib + * @summary test ParsePosition and FieldPosition + */ +/* +(C) Copyright Taligent, Inc. 1996 - All Rights Reserved +(C) Copyright IBM Corp. 1996 - All Rights Reserved + + The original version of this source code and documentation is copyrighted and +owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are +provided under terms of a License Agreement between Taligent and Sun. This +technology is protected by multiple US and International patents. This notice and +attribution to Taligent may not be removed. + Taligent is a registered trademark of Taligent, Inc. +*/ + +import java.text.*; +import java.io.*; + +public class PositionTest extends IntlTest { + + public static void main(String[] args) throws Exception { + new PositionTest().run(args); + } + + public void TestParsePosition() { + ParsePosition pp1 = new ParsePosition(0); + if (pp1.getIndex() == 0) { + logln("PP constructor() tested."); + }else{ + errln("*** PP getIndex or constructor() result"); + } + + { + int to = 5; + ParsePosition pp2 = new ParsePosition ( to ); + if (pp2.getIndex() == 5) { + logln("PP getIndex and constructor(TextOffset) tested."); + }else{ + errln("*** PP getIndex or constructor(TextOffset) result"); + } + pp2.setIndex( 3 ); + if (pp2.getIndex() == 3) { + logln("PP setIndex tested."); + }else{ + errln("*** PP getIndex or setIndex result"); + } + } + + ParsePosition pp2, pp3; + pp2 = new ParsePosition( 3 ); + pp3 = new ParsePosition( 5 ); + ParsePosition pp4 = new ParsePosition(5); + if (! pp2.equals(pp3)) { + logln("PP not equals tested."); + }else{ + errln("*** PP not equals fails"); + } + if (pp3.equals(pp4)) { + logln("PP equals tested."); + }else{ + errln("*** PP equals fails (" + pp3.getIndex() + " != " + pp4.getIndex() + ")"); + } + + ParsePosition pp5; + pp5 = pp4; + if (pp4.equals(pp5)) { + logln("PP operator= tested."); + }else{ + errln("*** PP operator= operator== or operator != result"); + } + + } + + public void TestFieldPosition() { + FieldPosition fp = new FieldPosition( 7 ); + + if (fp.getField() == 7) { + logln("FP constructor(int) and getField tested."); + }else{ + errln("*** FP constructor(int) or getField"); + } + + FieldPosition fph = new FieldPosition( 3 ); + if ( fph.getField() != 3) errln("*** FP getField or heap constr."); + + boolean err1 = false; + boolean err2 = false; + boolean err3 = false; +// for (long i = -50; i < 50; i++ ) { +// fp.setField( i+8 ); +// fp.setBeginIndex( i+6 ); +// fp.setEndIndex( i+7 ); +// if (fp.getField() != i+8) err1 = true; +// if (fp.getBeginIndex() != i+6) err2 = true; +// if (fp.getEndIndex() != i+7) err3 = true; +// } + if (!err1) { + logln("FP setField and getField tested."); + }else{ + errln("*** FP setField or getField"); + } + if (!err2) { + logln("FP setBeginIndex and getBeginIndex tested."); + }else{ + errln("*** FP setBeginIndex or getBeginIndex"); + } + if (!err3) { + logln("FP setEndIndex and getEndIndex tested."); + }else{ + errln("*** FP setEndIndex or getEndIndex"); + } + + logln(""); + } + + public void TestFieldPosition_example() { + //***** no error detection yet !!!!!!! + //***** this test is for compiler checks and visual verification only. + double doubleNum[] = { 123456789.0, -12345678.9, 1234567.89, -123456.789, + 12345.6789, -1234.56789, 123.456789, -12.3456789, 1.23456789}; + int dNumSize = doubleNum.length; + + DecimalFormat fmt = (DecimalFormat) NumberFormat.getInstance(); + fmt.setDecimalSeparatorAlwaysShown(true); + + final int tempLen = 20; + StringBuffer temp; + + for (int i=0; iformat(doubleNum[i], buf, pos), fmtText); + StringBuffer res = fmt.format(doubleNum[i], buf, pos); + int tempOffset = (tempLen <= (tempLen - pos.getEndIndex())) ? + tempLen : (tempLen - pos.getEndIndex()); + for (int j=0; j succeeded."); + } +} diff --git a/jdk/test/java/text/Format/common/Bug6215962.java b/jdk/test/java/text/Format/common/Bug6215962.java new file mode 100644 index 00000000000..85dd5e2cebd --- /dev/null +++ b/jdk/test/java/text/Format/common/Bug6215962.java @@ -0,0 +1,161 @@ +/* + * Copyright (c) 2005, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 6215962 + * @summary Confirm that replacing Utility.arayEquals methods have with + * Arrays.equals introduces no problem. + */ +import java.text.*; +import java.util.*; + +public class Bug6215962 { + + public static void main(String[] args) { + testMessageFormat(); + testChoiceFormat(); + testDateFormatSymbols(); + } + + /** + * Test cases for MessageFormat + */ + static void testMessageFormat() { + MessageFormat mf1 = new MessageFormat("{0}", null); + MessageFormat mf2 = new MessageFormat("{0}", null); + check(mf1, mf2, true); + + mf1.setLocale(null); + check(mf1, mf2, true); + + mf1 = new MessageFormat("{0}", Locale.US); + check(mf1, mf2, false); + + mf2 = new MessageFormat("{0}", Locale.JAPAN); + check(mf1, mf2, false); + + mf1 = new MessageFormat("{0}", new Locale("ja", "JP")); + check(mf1, mf2, true); + + mf1.setLocale(null); + check(mf1, mf2, false); + + mf1 = new MessageFormat("{0}", new Locale("ja", "JP", "FOO")); + check(mf1, mf2, false); + + mf2 = new MessageFormat("{1}", new Locale("ja", "JP", "FOO")); + check(mf1, mf2, false); + + mf1 = new MessageFormat("{1}", new Locale("ja", "JP", "FOO")); + check(mf1, mf2, true); + + mf1 = new MessageFormat("{1, date}", new Locale("ja", "JP", "FOO")); + check(mf1, mf2, false); + + mf2 = new MessageFormat("{1, date}", new Locale("ja", "JP", "FOO")); + check(mf1, mf2, true); + } + + static void check(MessageFormat f1, MessageFormat f2, boolean expected) { + boolean got = f1.equals(f2); + if (got != expected) { + throw new RuntimeException("Test failed for MessageFormat.equals(). Got: " + got + ", Expected: " + expected); + } + } + + /** + * Test cases for MessageFormat + */ + static void testChoiceFormat() { + double[] limits0 = {0,1,2,3,4,5,6}; + double[] limits1 = {1,2,3,4,5,6,7}; + String[] monthNames0 = {"Sun","Mon","Tue","Wed","Thu","Fri","Sat"}; + String[] monthNames1 = {"Sun","Mon","Tue","Wed","Thur","Fri","Sat"}; + + ChoiceFormat cf1 = new ChoiceFormat(limits1, monthNames0); + ChoiceFormat cf2 = new ChoiceFormat(limits1, monthNames0); + check(cf1, cf2, true); + + cf2 = new ChoiceFormat(limits0, monthNames0); + check(cf1, cf2, false); + + cf2 = new ChoiceFormat(limits1, monthNames1); + check(cf1, cf2, false); + } + + static void check(ChoiceFormat f1, ChoiceFormat f2, boolean expected) { + boolean got = f1.equals(f2); + if (got != expected) { + throw new RuntimeException("Test failed for ChoiceFormat.equals(). Got: " + got + ", Expected: " + expected); + } + } + + /** + * Test cases for DateFormatSymbols + */ + static void testDateFormatSymbols() { + DateFormatSymbols dfs1 = new DateFormatSymbols(); + DateFormatSymbols dfs2 = new DateFormatSymbols(); + check(dfs1, dfs2, true); + + // Becase eras, months, shortmonths, weekdays, shortweekdays, ampms are + // the same data type (String[]) and are treated in the same way, here + // I test only Months. + String[] tmp = dfs1.getMonths(); + String saved = tmp[0]; + tmp[0] = "Foo"; + dfs1.setMonths(tmp); + check(dfs1, dfs2, false); + + tmp[0] = saved; + dfs1.setMonths(tmp); + check(dfs1, dfs2, true); + + // Test LocalizedpatternChars (String) + String pattern = dfs2.getLocalPatternChars(); + dfs2.setLocalPatternChars("Bar"); + check(dfs1, dfs2, false); + + dfs2.setLocalPatternChars(pattern); + check(dfs1, dfs2, true); + + // Test TimeZone strings (String[][]) + String[][] zones = dfs1.getZoneStrings(); + saved = zones[0][1]; + zones[0][1] = "Yokohama Summer Time"; + dfs1.setZoneStrings(zones); + check(dfs1, dfs2, false); + + zones[0][1] = saved; + dfs1.setZoneStrings(zones); + check(dfs1, dfs2, true); + } + + static void check(DateFormatSymbols dfs1, DateFormatSymbols dfs2, boolean expected) { + boolean got = dfs1.equals(dfs2); + if (got != expected) { + throw new RuntimeException("Test failed for DateFormatSymbols.equals(). Got: " + got + ", Expected: " + expected); + } + } +} diff --git a/jdk/test/java/text/Format/common/ChoiceFormat.ser.txt b/jdk/test/java/text/Format/common/ChoiceFormat.ser.txt new file mode 100644 index 00000000000..4947d1936e7 --- /dev/null +++ b/jdk/test/java/text/Format/common/ChoiceFormat.ser.txt @@ -0,0 +1,37 @@ +# +# Copyright (c) 2003, 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. +# +# 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. +# + +# Hex dump of a serialized ChoiceFormat for Bug4769840. + +aced0005737200166a6176612e746578742e43686f696365466f726d617418e9 +c6bee365b6040200025b000d63686f696365466f726d6174737400135b4c6a61 +76612f6c616e672f537472696e673b5b000c63686f6963654c696d6974737400 +025b44787200166a6176612e746578742e4e756d626572466f726d6174dff6b3 +bf137d07e80200065a000c67726f7570696e67557365644200116d6178467261 +6374696f6e4469676974734200106d6178496e74656765724469676974734200 +116d696e4672616374696f6e4469676974734200106d696e496e746567657244 +69676974735a00107061727365496e74656765724f6e6c79787200106a617661 +2e746578742e466f726d6174fbd8bc12e90f1843020000787001032800010075 +7200135b4c6a6176612e6c616e672e537472696e673badd256e7e91d7b470200 +0078700000000274000420666f6f74000420626172757200025b443ea68c14ab +635a1e02000078700000000200000000000000003ff0000000000000 diff --git a/jdk/test/java/text/Format/common/DateFormat.Field.ser.txt b/jdk/test/java/text/Format/common/DateFormat.Field.ser.txt new file mode 100644 index 00000000000..e78f24409e7 --- /dev/null +++ b/jdk/test/java/text/Format/common/DateFormat.Field.ser.txt @@ -0,0 +1,32 @@ +# +# Copyright (c) 2003, 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. +# +# 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. +# + +# Hex dump of a serialized DateFormat.Field for Bug4769840. + +aced00057372001a6a6176612e746578742e44617465466f726d617424466965 +6c646744fc81f123e71002000149000d63616c656e6461724669656c64787200 +166a6176612e746578742e466f726d6174244669656c6403d7fbbd383b0f9b02 +00007872002f6a6176612e746578742e41747472696275746564436861726163 +7465724974657261746f7224417474726962757465811e7426cd47175c020001 +4c00046e616d657400124c6a6176612f6c616e672f537472696e673b78707400 +0974696d65207a6f6e65ffffffff diff --git a/jdk/test/java/text/Format/common/FormatIteratorTest.java b/jdk/test/java/text/Format/common/FormatIteratorTest.java new file mode 100644 index 00000000000..7102f59dec2 --- /dev/null +++ b/jdk/test/java/text/Format/common/FormatIteratorTest.java @@ -0,0 +1,440 @@ +/* + * Copyright (c) 2000, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4018937 + * @library /java/text/testlib + * @build FormatIteratorTest PParser IntlTest + * @run main FormatIteratorTest + * @summary Tests the formatToCharacterIterator method of SimpleDateFormat, + * MessageFormat and DecimalFormat. + */ + +import java.io.*; +import java.lang.reflect.*; +import java.text.*; +import java.util.*; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.concurrent.atomic.AtomicLong; + +/** + * FormatTester creates Formats, and tests the resulting FieldPositions + * and AttributedCharacterIterator based on a file. The file is a hierarchical + * set of key/value pairs, where each value can also be an array or map. The + * top map must contain a tests entry, which will be an array consisting + * of pairs of maps. The first map specifies the Format that + * should be created, and consists of: + *

+ *   class = className
+ *   args = (arg1 arg2 ...)
+ *   valueClass = className
+ *   valueArgs = (arg1 arg2 ...)
+ * 
+ * The second map dictates what to test, and should consist of the following: + *
+ *   length = lengthOfFormattedString
+ *   text = Result of Formatting
+ *   0...lengthOfFormattedString = (arg1 arg2 ...)
+ *   limits = ( range1 range2 ...)
+ *   fieldPositions = ( fp1 fp2 ...)
+ * 
+ * lengthOfFormattedString indicate the total length of formatted + * string. text indicates the resulting string. + * 0...x where x == lengthOfFormattedString - 1 is + * an array of the attributes that should exist at the particular + * location. limits is an array of maps, where each map + * can be used to test the bounds of a set of attributes. Each map will + * consist of: + *
+ *   attributes = array of attributes
+ *   begin = start location
+ *   begin2 = second start location
+ *   end = limit location
+ *   end2 = second limit location
+ * 
+ * These are tested by iterating from begin to end in the CharacterIterator + * and doing the following at each index: + *
+ *   getRunStart() == begin
+ *   getRunStart(attributes) == begin2
+ *   getRunLimit() == end
+ *   getRunLimit(attributes) == end2
+ * 
+ * fieldPositions is used to test the results of invoking + * format with a FieldPosition. + * fieldPositions is an array of maps, where each map contains + * the following: + *
+ *   field = Integer field reference (optional)
+ *   fieldID = Object reference
+ *   begin = begin index of FieldPosition after formatting
+ *   end = end index of FieldPosition after formatting
+ * 
+ * Any lines starting with {@code '#'} are comment lines and ignored. + */ +public class FormatIteratorTest extends IntlTest { + private static HashMap attrs; + private Format format; + private Object value; + private String text; + + public static final Object ARG0_FIELD_ID = MessageFormat. + Field.ARGUMENT; + public static final Object ARG1_FIELD_ID = MessageFormat. + Field.ARGUMENT; + public static final Object ARG2_FIELD_ID = MessageFormat. + Field.ARGUMENT; + public static final Object ARG3_FIELD_ID = MessageFormat. + Field.ARGUMENT; + + public static void main(String[] args) throws Exception { + Locale reservedLocale = Locale.getDefault(); + TimeZone reservedTimeZone = TimeZone.getDefault(); + try { + // The current tests are only appropriate for US. If tests are + // added for other locales are added, then a property should be + // added to each file (test) to be able to specify the locale. + Locale.setDefault(Locale.US); + TimeZone.setDefault(TimeZone.getTimeZone("America/Los_Angeles")); + new FormatIteratorTest().run(args); + } finally { + // restore the reserved locale and time zone + Locale.setDefault(reservedLocale); + TimeZone.setDefault(reservedTimeZone); + } + } + + public FormatIteratorTest() { + } + + public void testDecimalFormat() { + _test(new File(System.getProperty("test.src", "."), + "decimalFormat.props")); + } + + public void testMessageFormat() { + _test(new File(System.getProperty("test.src", "."), + "messageFormat.props")); + } + + public void testDateFormat() { + _test(new File(System.getProperty("test.src", "."), + "dateFormat.props")); + } + + private void _test(File file) { + try { + attrs = new HashMap(); + logln("testing: " + file); + PParser parser = new PParser(); + Hashtable contents = parser.parse(new BufferedReader( + new FileReader(file))); + Vector test = (Vector)contents.get("tests"); + + for (int counter = 0; counter < test.size(); counter++) { + logln("creating: " + (counter / 2)); + + AttributedCharacterIterator iterator = + create((Hashtable)test.get(counter)); + + logln("verifying: " + (counter / 2)); + verify(iterator, (Hashtable)test.get(++counter)); + } + } catch (IOException ioe) { + errln("Error reading: " + ioe); + } + } + + public void verify(AttributedCharacterIterator iterator,Hashtable table) { + int length = Integer.parseInt((String)table.get("length")); + + // Verify the text + if (!getText(iterator).equals( + escapeIfNecessary((String)table.get("text")))) { + String text = getText(iterator); + + errln("text doesn't match, got: " + getText(iterator)); + } + if (iterator.getBeginIndex() != 0) { + errln("Bogus start: " + iterator.getBeginIndex()); + } + if (iterator.getEndIndex() != length) { + errln("Bogus end: " + iterator.getEndIndex()); + } + for (int counter = 0; counter < length; counter++) { + iterator.setIndex(counter); + if (!verifyAttributes(iterator.getAttributes().keySet(), + makeAttributes((Vector)table.get(Integer. + toString(counter))))) { + errln("Attributes don't match at " + counter + " expecting " + + makeAttributes((Vector)table.get(Integer.toString + (counter))) + " got " + + iterator.getAttributes().keySet()); + } + } + for (int counter = length - 1; counter >= 0; counter--) { + iterator.setIndex(counter); + if (!verifyAttributes(iterator.getAttributes().keySet(), + makeAttributes((Vector)table.get(Integer. + toString(counter))))) { + errln("Attributes don't match at " + counter + " expecting " + + makeAttributes((Vector)table.get(Integer.toString + (counter))) + " got " + + iterator.getAttributes().keySet()); + } + } + verifyLimits(iterator, table); + + text = escapeIfNecessary((String)table.get("text")); + Vector fps = (Vector)table.get("fieldPositions"); + + if (fps != null) { + for (int counter = 0; counter < fps.size(); counter++) { + verifyFieldPosition(counter, (Hashtable)fps.get(counter)); + } + } + } + + private void verifyLimits(AttributedCharacterIterator iterator, + Hashtable table) { + Vector limits = (Vector)table.get("limits"); + + if (limits != null) { + for (int counter = 0; counter < limits.size(); counter++) { + verifyLimit(iterator, (Hashtable)limits.get(counter)); + } + } + } + + private void verifyLimit(AttributedCharacterIterator iterator, + Hashtable table) { + int begin = Integer.parseInt((String)table.get("begin")); + int end = Integer.parseInt((String)table.get("end")); + Set attrs = makeAttributes((Vector)table.get("attributes")); + String begin2S = (String)table.get("begin2"); + int begin2 = (begin2S != null) ? Integer.parseInt(begin2S) : begin; + String end2S = (String)table.get("end2"); + int end2 = (end2S != null) ? Integer.parseInt(end2S) : end; + + for (int counter = begin; counter < end; counter++) { + iterator.setIndex(counter); + if (iterator.getRunStart() != begin) { + errln("Begin doesn't match want " + begin + " got " + + iterator.getRunStart() + " at " + counter + " attrs " + + attrs); + } + if (iterator.getRunStart(attrs) != begin2) { + errln("Begin2 doesn't match want " + begin2 + " got " + + iterator.getRunStart(attrs) + " at " + counter + + " attrs " + attrs); + } + if (iterator.getRunLimit() != end) { + errln("End doesn't match want " + end + " got " + + iterator.getRunLimit() + " at " + counter + " attrs " + + attrs); + } + if (iterator.getRunLimit(attrs) != end2) { + errln("End2 doesn't match want " + end2 + " got " + + iterator.getRunLimit(attrs) + " at " + counter + + " attrs " + attrs); + } + } + } + + private boolean verifyAttributes(Set a, Set b) { + boolean aEmpty = (a.size() == 0); + boolean bEmpty = (b.size() == 0); + + if (aEmpty && bEmpty) { + return true; + } + else if (aEmpty || bEmpty) { + return false; + } + return a.equals(b); + } + + private String getText(AttributedCharacterIterator iterator) { + StringBuffer buffer = new StringBuffer(); + + for (int counter = 0; counter < iterator.getEndIndex(); counter++) { + buffer.append(iterator.setIndex(counter)); + } + return buffer.toString(); + } + + private void verifyFieldPosition(int index, Hashtable table) { + Object o = table.get("field"); + int begin = Integer.parseInt((String)table.get("begin")); + int end = Integer.parseInt((String)table.get("end")); + + if (o != null) { + FieldPosition fp = new FieldPosition(((Integer) + lookupField((String)o)).intValue()); + + verifyFieldPosition(fp, begin, end, index); + } + o = table.get("fieldID"); + if (o != null) { + FieldPosition fp = new FieldPosition((Format.Field) + lookupField((String)o)); + verifyFieldPosition(fp, begin, end, index); + } + } + + private void verifyFieldPosition(FieldPosition fp, int begin, int end, + int index) { + StringBuffer buffer = new StringBuffer(); + + format.format(value, buffer, fp); + if (fp.getBeginIndex() != begin) { + errln("bogus begin want " + begin + " got " + fp.getBeginIndex() + + " for " + fp + " at " + index); + } + if (fp.getEndIndex() != end) { + errln("bogus end want " + end + " got " + fp.getEndIndex() + + " for " + fp + " at " + index); + } + if (!buffer.toString().equals(text)) { + errln("Text does not match, want !" + buffer.toString() + + "! got !" + text + "!"); + } + } + + public AttributedCharacterIterator create(Hashtable table) { + format = (Format)createInstance((String)table.get("class"), + ((Vector)table.get("args")).toArray()); + value = createInstance((String)table.get("valueClass"), + ((Vector)table.get("valueArgs")).toArray()); + + logln("Created format: " + format + " value " + value); + AttributedCharacterIterator aci = format. + formatToCharacterIterator(value); + + logln("Obtained Iterator: " + aci); + return aci; + } + + public Format.Field makeAttribute(String name) { + return (Format.Field)lookupField(name); + } + + private Object createInstance(String className, Object[] args) { + if (className.equals("java.lang.reflect.Array")) { + for (int counter = 0; counter < args.length; counter++) { + if (args[counter] instanceof Vector) { + Vector v = (Vector)args[counter]; + + args[counter] = createInstance((String)v.get(0), + ((Vector)v.get(1)).toArray()); + } + } + return args; + } + for (int counter = 0; counter < args.length; counter++) { + args[counter] = escapeIfNecessary((String)args[counter]); + } + try { + if (className.equals("java.util.concurrent.atomic.AtomicInteger")) { + return new AtomicInteger(Integer.valueOf((String)args[0])); + } else if (className.equals("java.util.concurrent.atomic.AtomicLong")) { + return new AtomicLong(Long.valueOf((String)args[0])); + } else { + Class klass = lookupClass(className); + Constructor cons = klass.getConstructor( + new Class[] { String.class }); + Object value = cons.newInstance(args); + + return value; + } + } catch (Throwable th) { + errln("Error creating instance " + th); + return null; + } + } + + private Class lookupClass(String name) throws ClassNotFoundException { + try { + Class klass = Class.forName(name); + + return klass; + } catch (ClassNotFoundException e1) {} + + try { + Class klass = Class.forName("java.lang." + name); + + return klass; + } catch (ClassNotFoundException e1) {} + + Class klass = Class.forName("java.text." + name); + + return klass; + } + + private Object lookupField(String name) { + Throwable error = null; + + try { + int dotIndex = name.indexOf('.'); + Class klass = lookupClass(name.substring(0, dotIndex)); + String fieldName = name.substring(dotIndex + 1); + Field[] fields = klass.getFields(); + + for (int counter = fields.length - 1; counter >= 0; counter--) { + if (fields[counter].getName().equals(fieldName)) { + return fields[counter].get(null); + } + } + } catch (Throwable th) { + error = th; + } + errln("Could not lookup field " + name + " " + error); + return null; + } + + protected String escapeIfNecessary(String string) { + if (string != null) { + int index; + + if ((index = string.indexOf("\\u")) != -1) { + StringBuffer sb = new StringBuffer(string.substring(0, index)); + + sb.append((char)Integer.parseInt( + string.substring(index + 2, index + 6), 16)); + sb.append(string.substring(index + 6)); + string = sb.toString(); + } + } + return string; + } + + public Set makeAttributes(Vector names) { + HashSet set = new HashSet(Math.max(1, names.size())); + + for (int counter = 0; counter < names.size(); counter++) { + set.add(makeAttribute((String)names.get(counter))); + } + return set; + } +} diff --git a/jdk/test/java/text/Format/common/MessageFormat.Field.ser.txt b/jdk/test/java/text/Format/common/MessageFormat.Field.ser.txt new file mode 100644 index 00000000000..5428b76680c --- /dev/null +++ b/jdk/test/java/text/Format/common/MessageFormat.Field.ser.txt @@ -0,0 +1,32 @@ +# +# Copyright (c) 2003, 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. +# +# 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. +# + +# Hex dump of a serialized MessageFormat.Field for Bug4769840. + +aced00057372001d6a6176612e746578742e4d657373616765466f726d617424 +4669656c646da23d2c7b46bfaa020000787200166a6176612e746578742e466f +726d6174244669656c6403d7fbbd383b0f9b0200007872002f6a6176612e7465 +78742e417474726962757465644368617261637465724974657261746f722441 +7474726962757465811e7426cd47175c0200014c00046e616d657400124c6a61 +76612f6c616e672f537472696e673b78707400166d6573736167652061726775 +6d656e74206669656c64 diff --git a/jdk/test/java/text/Format/common/NumberFormat.Field.ser.txt b/jdk/test/java/text/Format/common/NumberFormat.Field.ser.txt new file mode 100644 index 00000000000..12851638adf --- /dev/null +++ b/jdk/test/java/text/Format/common/NumberFormat.Field.ser.txt @@ -0,0 +1,31 @@ +# +# Copyright (c) 2003, 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. +# +# 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. +# + +# Hex dump of a serialized NumberFormat.Field for Bug4769840. + +aced00057372001c6a6176612e746578742e4e756d626572466f726d61742446 +69656c646802a038193ff37a020000787200166a6176612e746578742e466f72 +6d6174244669656c6403d7fbbd383b0f9b0200007872002f6a6176612e746578 +742e417474726962757465644368617261637465724974657261746f72244174 +74726962757465811e7426cd47175c0200014c00046e616d657400124c6a6176 +612f6c616e672f537472696e673b7870740007696e7465676572 diff --git a/jdk/test/java/text/Format/common/PParser.java b/jdk/test/java/text/Format/common/PParser.java new file mode 100644 index 00000000000..6ada76b1059 --- /dev/null +++ b/jdk/test/java/text/Format/common/PParser.java @@ -0,0 +1,274 @@ +/* + * Copyright (c) 2000, 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. + * + * 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. + */ + +import java.io.*; +import java.util.*; + +/* + * assignment : key = value; + * key : string + * value : string | array | dict + * nValue : , value + * array : ( value nValue ) + * nAssignment: , assignment|value + * dict : { assignment* } + * string : "*" or anything but a ,(){}= + * + * special characters: ,(){}= + */ + +public class PParser { + protected static final int OPEN_PAIR = 1; + protected static final int CLOSE_PAIR = 2; + protected static final int OPEN_ARRAY = 3; + protected static final int CLOSE_ARRAY = 4; + protected static final int MORE = 5; + protected static final int EQUAL = 6; + protected static final int STRING = 7; + protected static final int WS = 8; + + protected Reader reader; + protected boolean bufferedToken; + protected StringBuffer stringBuffer = new StringBuffer(); + protected int lastChar; + protected int lastToken; + protected int lineNumber; + protected int column; + + public PParser() { + } + + public Hashtable parse(Reader r) throws IOException { + this.reader = r; + bufferedToken = false; + lineNumber = 0; + column = 0; + if (getToken() != OPEN_PAIR) { + error("No initial open"); + } + return parsePair(); + } + + protected Object parseValue(int lookAhead) throws IOException { + int token; + + if (lookAhead == -1) { + token = getToken(); + } else { + token = lookAhead; + } + switch (token) { + case STRING: + return stringBuffer.toString(); + case OPEN_ARRAY: + return parseArray(); + case OPEN_PAIR: + return parsePair(); + default: + error("Expecting value"); + } + return null; + } + + protected Object parseArray() throws IOException { + Vector array = new Vector(); + int token; + + while ((token = getToken()) != CLOSE_ARRAY) { + if (token == MORE) { + token = getToken(); + } + if (token != CLOSE_ARRAY) { + array.addElement(parseValue(token)); + } + } + return array; + } + + protected Hashtable parsePair() throws IOException { + Hashtable ht = new Hashtable(11); + int token; + + while ((token = getToken()) != CLOSE_PAIR) { + if (token != STRING) { + error("Pair expecting string got"); + } + String key = stringBuffer.toString(); + + if (getToken() != EQUAL) { + error("Expecting = "); + } + + Object value = parseValue(-1); + ht.put(key, value); + } + return ht; + } + + protected void ungetToken() { + if (bufferedToken) { + error("Can not buffer more than one token"); + } + bufferedToken = true; + } + + protected int getToken() throws IOException { + int token = getToken(false, false); + + return token; + } + + protected int getToken(boolean wantsWS, boolean inString) + throws IOException { + if (bufferedToken) { + bufferedToken = false; + if (lastToken != WS || wantsWS) { + return lastToken; + } + } + while ((lastChar = reader.read()) != -1) { + // If a line starts with '#', skip the line. + if (column == 0 && lastChar == '#') { + while ((lastChar = reader.read()) != -1 + && lastChar != '\n') { + } + if (lastChar == -1) { + break; + } + } + + column++; + switch(lastChar) { + case '\n': + lineNumber++; + column = 0; + case ' ': + case '\r': + case '\t': + if (wantsWS) { + lastToken = WS; + return WS; + } + break; + case ',': + lastToken = MORE; + return MORE; + case '(': + lastToken = OPEN_ARRAY; + return OPEN_ARRAY; + case ')': + lastToken = CLOSE_ARRAY; + return CLOSE_ARRAY; + case '{': + lastToken = OPEN_PAIR; + return OPEN_PAIR; + case '}': + lastToken = CLOSE_PAIR; + return CLOSE_PAIR; + case '=': + lastToken = EQUAL; + return EQUAL; + case '"': + lastToken = STRING; + if (!inString) { + stringBuffer.setLength(0); + while (true) { + getToken(true, true); + if (lastChar == '"') { + lastToken = STRING; + return STRING; + } + stringBuffer.append((char)lastChar); + } + } + return STRING; + default: + lastToken = STRING; + if (!inString) { + stringBuffer.setLength(0); + stringBuffer.append((char)lastChar); + while (getToken(true, true) == STRING) { + if (lastChar == '"') { + error("Unexpected quote"); + } + stringBuffer.append((char)lastChar); + } + ungetToken(); + } + return STRING; + } + } + return -1; + } + + protected void error(String errorString) { + throw new RuntimeException(errorString + " at line " + lineNumber + " column " + column); + } + + public static void dump(Object o) { + if (o instanceof String) { + System.out.print(o); + } else if(o instanceof Vector) { + Enumeration e = ((Vector)o).elements(); + + dump(" ("); + while (e.hasMoreElements()) { + dump(e.nextElement()); + dump(" -- "); + } + dump(" )"); + } else { + Hashtable ht = (Hashtable)o; + Enumeration e = ht.keys(); + + dump(" {"); + while (e.hasMoreElements()) { + Object key = e.nextElement(); + + dump(key); + dump(" = "); + dump(ht.get(key)); + dump(";"); + } + dump(" }"); + } + } + + public static void main(String[] args) { + if (args.length == 0) { + System.out.println("need filename"); + } else { + try { + FileReader fr = new FileReader(args[0]); + PParser parser = new PParser(); + Hashtable ht = parser.parse(fr); + + dump(ht); + System.out.println(); + } + catch (IOException ioe) { + System.out.println("Couldn't parse: " + ioe); + } + } + } +} diff --git a/jdk/test/java/text/Format/common/dateFormat.props b/jdk/test/java/text/Format/common/dateFormat.props new file mode 100644 index 00000000000..22bb9a44d78 --- /dev/null +++ b/jdk/test/java/text/Format/common/dateFormat.props @@ -0,0 +1,333 @@ +# +# Copyright (c) 2000, 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. +# +# This code is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# version 2 for more details (a copy is included in the LICENSE file that +# accompanied this code). +# +# You should have received a copy of the GNU General Public License version +# 2 along with this work; if not, write to the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA +# or visit www.oracle.com if you need additional information or have any +# questions. +# + +# Test data for FormatIteratorTest + +{ + tests = + ( + { + class = java.text.SimpleDateFormat + args = ("M/dd/yy") + valueClass = java.util.Date + valueArgs = ("7/10/71") + } + { + length = 7 + text = "7/10/71" + 0 = (DateFormat$Field.MONTH) + 1 = () + 2 = (DateFormat$Field.DAY_OF_MONTH) + 3 = (DateFormat$Field.DAY_OF_MONTH) + 4 = () + 5 = (DateFormat$Field.YEAR) + 6 = (DateFormat$Field.YEAR) + limits = ( { attributes = (DateFormat$Field.MONTH) + begin = 0 end = 1} + { attributes = () + begin = 1 begin2 = 0 end = 2 end2 = 7} + { attributes = (DateFormat$Field.DAY_OF_MONTH) + begin = 2 end = 4} + { attributes = () + begin = 4 begin2 = 0 end = 5 end2 = 7} + { attributes = (DateFormat$Field.YEAR) + begin = 5 end = 7} + ) + fieldPositions = + ( + { + field = DateFormat.MONTH_FIELD + fieldID = DateFormat$Field.MONTH + begin = 0 end = 1 + } + { + field = DateFormat.DATE_FIELD + fieldID = DateFormat$Field.DAY_OF_MONTH + begin = 2 end = 4 + } + { + field = DateFormat.YEAR_FIELD + fieldID = DateFormat$Field.YEAR + begin = 5 end = 7 + } + ) + } + + { + class = java.text.SimpleDateFormat + args = ("EEEEEEE MMMMMMMMMMMMM yyyy GG") + valueClass = java.util.Date + valueArgs = ("12/10/2020") + } + { + length = 25 + text = "Thursday December 2020 AD" + 0 = (DateFormat$Field.DAY_OF_WEEK) + 1 = (DateFormat$Field.DAY_OF_WEEK) + 2 = (DateFormat$Field.DAY_OF_WEEK) + 3 = (DateFormat$Field.DAY_OF_WEEK) + 4 = (DateFormat$Field.DAY_OF_WEEK) + 5 = (DateFormat$Field.DAY_OF_WEEK) + 6 = (DateFormat$Field.DAY_OF_WEEK) + 7 = (DateFormat$Field.DAY_OF_WEEK) + 8 = () + 9 = (DateFormat$Field.MONTH) + 10 = (DateFormat$Field.MONTH) + 11 = (DateFormat$Field.MONTH) + 12 = (DateFormat$Field.MONTH) + 13 = (DateFormat$Field.MONTH) + 14 = (DateFormat$Field.MONTH) + 15 = (DateFormat$Field.MONTH) + 16 = (DateFormat$Field.MONTH) + 17 = () + 18 = (DateFormat$Field.YEAR) + 19 = (DateFormat$Field.YEAR) + 20 = (DateFormat$Field.YEAR) + 21 = (DateFormat$Field.YEAR) + 22 = () + 23 = (DateFormat$Field.ERA) + 24 = (DateFormat$Field.ERA) + limits = ( { attributes = (DateFormat$Field.DAY_OF_WEEK) + begin = 0 end = 8} + { attributes = () + begin = 8 begin2 = 0 end = 9 end2 = 25} + { attributes = (DateFormat$Field.MONTH) + begin = 9 end = 17} + { attributes = () + begin = 17 begin2 = 0 end = 18 end2 = 25} + { attributes = (DateFormat$Field.YEAR) + begin = 18 end = 22} + { attributes = () + begin = 22 begin2 = 0 end = 23 end2 = 25} + { attributes = (DateFormat$Field.ERA) + begin = 23 end = 25} + ) + fieldPositions = + ( + { + field = DateFormat.DAY_OF_WEEK_FIELD + fieldID = DateFormat$Field.DAY_OF_WEEK + begin = 0 end = 8 + } + { + field = DateFormat.MONTH_FIELD + fieldID = DateFormat$Field.MONTH + begin = 9 end = 17 + } + { + field = DateFormat.YEAR_FIELD + fieldID = DateFormat$Field.YEAR + begin = 18 end = 22 + } + { + field = DateFormat.ERA_FIELD + fieldID = DateFormat$Field.ERA + begin = 23 end = 25 + } + ) + } + + { + class = java.text.SimpleDateFormat + args = ("h HH:mm:ss:SSS aa") + valueClass = java.util.Date + valueArgs = ("1/1/2000 2:52:12 PM") + } + { + length = 17 + text = "2 14:52:12:000 PM" + 0 = (DateFormat$Field.HOUR1) + 1 = () + 2 = (DateFormat$Field.HOUR_OF_DAY0) + 3 = (DateFormat$Field.HOUR_OF_DAY0) + 4 = () + 5 = (DateFormat$Field.MINUTE) + 6 = (DateFormat$Field.MINUTE) + 7 = () + 8 = (DateFormat$Field.SECOND) + 9 = (DateFormat$Field.SECOND) + 10 = () + 11 = (DateFormat$Field.MILLISECOND) + 12 = (DateFormat$Field.MILLISECOND) + 13 = (DateFormat$Field.MILLISECOND) + 14 = () + 15 = (DateFormat$Field.AM_PM) + 16 = (DateFormat$Field.AM_PM) + limits = ( { attributes = (DateFormat$Field.HOUR1) + begin = 0 end = 1} + { attributes = () + begin = 1 begin2 = 0 end = 2 end2 = 17} + { attributes = (DateFormat$Field.HOUR_OF_DAY0) + begin = 2 end = 4} + { attributes = () + begin = 4 begin2 = 0 end = 5 end2 = 17} + { attributes = (DateFormat$Field.MINUTE) + begin = 5 end = 7} + { attributes = () + begin = 7 begin2 = 0 end = 8 end2 = 17} + { attributes = (DateFormat$Field.SECOND) + begin = 8 end = 10} + { attributes = () + begin = 10 begin2 = 0 end = 11 end2 = 17} + { attributes = (DateFormat$Field.MILLISECOND) + begin = 11 end = 14} + { attributes = () + begin = 14 begin2 = 0 end = 15 end2 = 17} + { attributes = (DateFormat$Field.AM_PM) + begin = 15 end = 17} + ) + fieldPositions = + ( + { + field = DateFormat.HOUR1_FIELD + fieldID = DateFormat$Field.HOUR1 + begin = 0 end = 1 + } + { + field = DateFormat.HOUR_OF_DAY0_FIELD + fieldID = DateFormat$Field.HOUR_OF_DAY0 + begin = 2 end = 4 + } + { + field = DateFormat.MINUTE_FIELD + fieldID = DateFormat$Field.MINUTE + begin = 5 end = 7 + } + { + field = DateFormat.SECOND_FIELD + fieldID = DateFormat$Field.SECOND + begin = 8 end = 10 + } + { + field = DateFormat.MILLISECOND_FIELD + fieldID = DateFormat$Field.MILLISECOND + begin = 11 end = 14 + } + { + field = DateFormat.AM_PM_FIELD + fieldID = DateFormat$Field.AM_PM + begin = 15 end = 17 + } + ) + } + + + { + class = java.text.SimpleDateFormat + args = ("kk KK DDD FF ww WW zz") + valueClass = java.util.Date + valueArgs = ("4/26/2031 2:02:52 AM") + } + { + length = 22 + text = "02 02 116 04 17 04 PDT" + 0 = (DateFormat$Field.HOUR_OF_DAY1) + 1 = (DateFormat$Field.HOUR_OF_DAY1) + 2 = () + 3 = (DateFormat$Field.HOUR0) + 4 = (DateFormat$Field.HOUR0) + 5 = () + 6 = (DateFormat$Field.DAY_OF_YEAR) + 7 = (DateFormat$Field.DAY_OF_YEAR) + 8 = (DateFormat$Field.DAY_OF_YEAR) + 9 = () + 10 = (DateFormat$Field.DAY_OF_WEEK_IN_MONTH) + 11 = (DateFormat$Field.DAY_OF_WEEK_IN_MONTH) + 12 = () + 13 = (DateFormat$Field.WEEK_OF_YEAR) + 14 = (DateFormat$Field.WEEK_OF_YEAR) + 15 = () + 16 = (DateFormat$Field.WEEK_OF_MONTH) + 17 = (DateFormat$Field.WEEK_OF_MONTH) + 18 = () + 19 = (DateFormat$Field.TIME_ZONE) + 20 = (DateFormat$Field.TIME_ZONE) + 21 = (DateFormat$Field.TIME_ZONE) + limits = ( { attributes = (DateFormat$Field.HOUR_OF_DAY1) + begin = 0 end = 2} + { attributes = () + begin = 2 begin2 = 0 end = 3 end2 = 22} + { attributes = (DateFormat$Field.HOUR0) + begin = 3 end = 5} + { attributes = () + begin = 5 begin2 = 0 end = 6 end2 = 22} + { attributes = (DateFormat$Field.DAY_OF_YEAR) + begin = 6 end = 9} + { attributes = () + begin = 9 begin2 = 0 end = 10 end2 = 22} + { attributes = (DateFormat$Field.DAY_OF_WEEK_IN_MONTH) + begin = 10 end = 12} + { attributes = () + begin = 12 begin2 = 0 end = 13 end2 = 22} + { attributes = (DateFormat$Field.WEEK_OF_YEAR) + begin = 13 end = 15} + { attributes = () + begin = 15 begin2 = 0 end = 16 end2 = 22} + { attributes = (DateFormat$Field.WEEK_OF_MONTH) + begin = 16 end = 18} + { attributes = () + begin = 18 begin2 = 0 end = 19 end2 = 22} + { attributes = (DateFormat$Field.TIME_ZONE) + begin = 19 end = 22} + ) + fieldPositions = + ( + { + field = DateFormat.HOUR_OF_DAY1_FIELD + fieldID = DateFormat$Field.HOUR_OF_DAY1 + begin = 0 end = 2 + } + { + field = DateFormat.HOUR0_FIELD + fieldID = DateFormat$Field.HOUR0 + begin = 3 end = 5 + } + { + field = DateFormat.DAY_OF_YEAR_FIELD + fieldID = DateFormat$Field.DAY_OF_YEAR + begin = 6 end = 9 + } + { + field = DateFormat.DAY_OF_WEEK_IN_MONTH_FIELD + fieldID = DateFormat$Field.DAY_OF_WEEK_IN_MONTH + begin = 10 end = 12 + } + { + field = DateFormat.WEEK_OF_YEAR_FIELD + fieldID = DateFormat$Field.WEEK_OF_YEAR + begin = 13 end = 15 + } + { + field = DateFormat.WEEK_OF_MONTH_FIELD + fieldID = DateFormat$Field.WEEK_OF_MONTH + begin = 16 end = 18 + } + { + field = DateFormat.TIMEZONE_FIELD + fieldID = DateFormat$Field.TIME_ZONE + begin = 19 end = 22 + } + ) + } + ) +} diff --git a/jdk/test/java/text/Format/common/decimalFormat.props b/jdk/test/java/text/Format/common/decimalFormat.props new file mode 100644 index 00000000000..e6d9adc7974 --- /dev/null +++ b/jdk/test/java/text/Format/common/decimalFormat.props @@ -0,0 +1,1280 @@ +# +# Copyright (c) 2000, 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. +# +# This code is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# version 2 for more details (a copy is included in the LICENSE file that +# accompanied this code). +# +# You should have received a copy of the GNU General Public License version +# 2 along with this work; if not, write to the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA +# or visit www.oracle.com if you need additional information or have any +# questions. +# + +# Test data for FormatIteratorTest + +{ + tests = + ( + { + class = java.text.DecimalFormat + args = ("#,###") + valueClass = java.lang.Integer + valueArgs = ("1234567") + } + { + length = 9 + text = "1,234,567" + 0 = (NumberFormat$Field.INTEGER) + 1 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 2 = (NumberFormat$Field.INTEGER) + 3 = (NumberFormat$Field.INTEGER) + 4 = (NumberFormat$Field.INTEGER) + 5 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 6 = (NumberFormat$Field.INTEGER) + 7 = (NumberFormat$Field.INTEGER) + 8 = (NumberFormat$Field.INTEGER) + limits = ( { attributes = (NumberFormat$Field.INTEGER) + begin = 0 end = 1 end2 = 9} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 1 end = 2} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 1 end = 2} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 5 end = 6} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 5 end = 6} + ) + fieldPositions = + ( + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 0 end = 9 + } + { + fieldID = NumberFormat$Field.GROUPING_SEPARATOR + begin = 1 end = 2 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("#,###.##") + valueClass = java.lang.Float + valueArgs = ("567.78") + } + { + length = 6 + text = "567.78" + 0 = (NumberFormat$Field.INTEGER) + 1 = (NumberFormat$Field.INTEGER) + 2 = (NumberFormat$Field.INTEGER) + 3 = (NumberFormat$Field.DECIMAL_SEPARATOR) + 4 = (NumberFormat$Field.FRACTION) + 5 = (NumberFormat$Field.FRACTION) + limits = ( { attributes = (NumberFormat$Field.INTEGER) + begin = 0 end = 3 } + { attributes = (NumberFormat$Field.DECIMAL_SEPARATOR) + begin = 3 end = 4} + { attributes = (NumberFormat$Field.FRACTION) + begin = 4 end = 6} + ) + fieldPositions = + ( + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 0 end = 3 + } + { + fieldID = NumberFormat$Field.DECIMAL_SEPARATOR + begin = 3 end = 4 + } + { + field = NumberFormat.FRACTION_FIELD + fieldID = NumberFormat$Field.FRACTION + begin = 4 end = 6 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("0.#E00") + valueClass = java.lang.Float + valueArgs = ("1200") + } + { + length = 6 + text = "1.2E03" + 0 = (NumberFormat$Field.INTEGER) + 1 = (NumberFormat$Field.DECIMAL_SEPARATOR) + 2 = (NumberFormat$Field.FRACTION) + 3 = (NumberFormat$Field.EXPONENT_SYMBOL) + 4 = (NumberFormat$Field.EXPONENT) + 5 = (NumberFormat$Field.EXPONENT) + limits = ( { attributes = (NumberFormat$Field.INTEGER) + begin = 0 end = 1 } + { attributes = (NumberFormat$Field.DECIMAL_SEPARATOR) + begin = 1 end = 2} + { attributes = (NumberFormat$Field.FRACTION) + begin = 2 end = 3} + { attributes = (NumberFormat$Field.EXPONENT_SYMBOL) + begin = 3 end = 4} + { attributes = (NumberFormat$Field.EXPONENT) + begin = 4 end = 6} + ) + fieldPositions = + ( + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 0 end = 1 + } + { + fieldID = NumberFormat$Field.DECIMAL_SEPARATOR + begin = 1 end = 2 + } + { + field = NumberFormat.FRACTION_FIELD + fieldID = NumberFormat$Field.FRACTION + begin = 2 end = 3 + } + { + fieldID = NumberFormat$Field.EXPONENT_SYMBOL + begin = 3 end = 4 + } + { + fieldID = NumberFormat$Field.EXPONENT + begin = 4 end = 6 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("0.#E00") + valueClass = java.lang.Float + valueArgs = ("-.0012") + } + { + length = 8 + text = "-1.2E-03" + 0 = (NumberFormat$Field.SIGN) + 1 = (NumberFormat$Field.INTEGER) + 2 = (NumberFormat$Field.DECIMAL_SEPARATOR) + 3 = (NumberFormat$Field.FRACTION) + 4 = (NumberFormat$Field.EXPONENT_SYMBOL) + 5 = (NumberFormat$Field.EXPONENT_SIGN) + 6 = (NumberFormat$Field.EXPONENT) + 7 = (NumberFormat$Field.EXPONENT) + limits = ( { attributes = (NumberFormat$Field.SIGN) + begin = 0 end = 1 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 1 end = 2} + { attributes = (NumberFormat$Field.DECIMAL_SEPARATOR) + begin = 2 end = 3} + { attributes = (NumberFormat$Field.FRACTION) + begin = 3 end = 4} + { attributes = (NumberFormat$Field.EXPONENT_SYMBOL) + begin = 4 end = 5} + { attributes = (NumberFormat$Field.EXPONENT_SIGN) + begin = 5 end = 6} + { attributes = (NumberFormat$Field.EXPONENT) + begin = 6 end = 8} + ) + fieldPositions = + ( + { + fieldID = NumberFormat$Field.SIGN + begin = 0 end = 1 + } + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 1 end = 2 + } + { + fieldID = NumberFormat$Field.DECIMAL_SEPARATOR + begin = 2 end = 3 + } + { + field = NumberFormat.FRACTION_FIELD + fieldID = NumberFormat$Field.FRACTION + begin = 3 end = 4 + } + { + fieldID = NumberFormat$Field.EXPONENT_SYMBOL + begin = 4 end = 5 + } + { + fieldID = NumberFormat$Field.EXPONENT_SIGN + begin = 5 end = 6 + } + { + fieldID = NumberFormat$Field.EXPONENT + begin = 6 end = 8 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("#,###;(#,###)") + valueClass = java.lang.Integer + valueArgs = ("-1234") + } + { + length = 7 + text = "(1,234)" + 0 = () + 1 = (NumberFormat$Field.INTEGER) + 2 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 3 = (NumberFormat$Field.INTEGER) + 4 = (NumberFormat$Field.INTEGER) + 5 = (NumberFormat$Field.INTEGER) + 6 = () + limits = ( { attributes = () + begin = 0 end = 1 end2 = 7 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 1 end = 2 end2 = 6} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 2 end = 3} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 2 end = 3} + { attributes = () + begin = 6 begin2 = 0 end = 7} + ) + fieldPositions = + ( + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 1 end = 6 + } + { + fieldID = NumberFormat$Field.GROUPING_SEPARATOR + begin = 2 end = 3 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("#,###;-#,###") + valueClass = java.lang.Integer + valueArgs = ("-134") + } + { + length = 4 + text = "-134" + 0 = (NumberFormat$Field.SIGN) + 1 = (NumberFormat$Field.INTEGER) + 2 = (NumberFormat$Field.INTEGER) + 3 = (NumberFormat$Field.INTEGER) + limits = ( { attributes = (NumberFormat$Field.SIGN) + begin = 0 end = 1 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 1 end = 4 } + ) + fieldPositions = + ( + { + fieldID = NumberFormat$Field.SIGN + begin = 0 end = 1 + } + { + fieldID = NumberFormat$Field.INTEGER + begin = 1 end = 4 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("+#,###") + valueClass = java.lang.Integer + valueArgs = ("134") + } + { + length = 4 + text = "+134" + 0 = () + 1 = (NumberFormat$Field.INTEGER) + 2 = (NumberFormat$Field.INTEGER) + 3 = (NumberFormat$Field.INTEGER) + limits = ( { attributes = (NumberFormat$Field.SIGN) + begin = 0 end2 = 4 end = 1 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 1 end = 4 } + ) + fieldPositions = + ( + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 1 end = 4 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("##.0#%") + valueClass = java.lang.Float + valueArgs = (".1234") + } + { + length = 6 + text = "12.34%" + 0 = (NumberFormat$Field.INTEGER) + 1 = (NumberFormat$Field.INTEGER) + 2 = (NumberFormat$Field.DECIMAL_SEPARATOR) + 3 = (NumberFormat$Field.FRACTION) + 4 = (NumberFormat$Field.FRACTION) + 5 = (NumberFormat$Field.PERCENT) + limits = ( { attributes = (NumberFormat$Field.INTEGER) + begin = 0 end = 2 } + { attributes = (NumberFormat$Field.DECIMAL_SEPARATOR) + begin = 2 end = 3 } + { attributes = (NumberFormat$Field.FRACTION) + begin = 3 end = 5 } + { attributes = (NumberFormat$Field.PERCENT) + begin = 5 end = 6 } + ) + fieldPositions = + ( + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 0 end = 2 + } + { + fieldID = NumberFormat$Field.DECIMAL_SEPARATOR + begin = 2 end = 3 + } + { + field = NumberFormat.FRACTION_FIELD + fieldID = NumberFormat$Field.FRACTION + begin = 3 end = 5 + } + { + fieldID = NumberFormat$Field.PERCENT + begin = 5 end = 6 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("#,##.#\u2030") + valueClass = java.lang.Float + valueArgs = (".1234") + } + { + length = 7 + text = "1,23.4\u2030" + 0 = (NumberFormat$Field.INTEGER) + 1 = (NumberFormat$Field.GROUPING_SEPARATOR + NumberFormat$Field.INTEGER) + 2 = (NumberFormat$Field.INTEGER) + 3 = (NumberFormat$Field.INTEGER) + 4 = (NumberFormat$Field.DECIMAL_SEPARATOR) + 5 = (NumberFormat$Field.FRACTION) + 6 = (NumberFormat$Field.PERMILLE) + limits = ( { attributes = (NumberFormat$Field.INTEGER) + begin = 0 end = 1 end2 = 4 } + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 1 end = 2 } + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 1 end = 2 } + { attributes = (NumberFormat$Field.DECIMAL_SEPARATOR) + begin = 4 end = 5 } + { attributes = (NumberFormat$Field.FRACTION) + begin = 5 end = 6 } + { attributes = (NumberFormat$Field.PERMILLE) + begin = 6 end = 7 } + ) + fieldPositions = + ( + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 0 end = 4 + } + { + fieldID = NumberFormat$Field.GROUPING_SEPARATOR + begin = 1 end = 2 + } + { + fieldID = NumberFormat$Field.DECIMAL_SEPARATOR + begin = 4 end = 5 + } + { + field = NumberFormat.FRACTION_FIELD + fieldID = NumberFormat$Field.FRACTION + begin = 5 end = 6 + } + { + fieldID = NumberFormat$Field.PERMILLE + begin = 6 end = 7 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("\u00A40,000.00") + valueClass = java.lang.Float + valueArgs = ("12.51") + } + { + length = 9 + text = "$0,012.51" + 0 = (NumberFormat$Field.CURRENCY) + 1 = (NumberFormat$Field.INTEGER) + 2 = (NumberFormat$Field.GROUPING_SEPARATOR + NumberFormat$Field.INTEGER) + 3 = (NumberFormat$Field.INTEGER) + 4 = (NumberFormat$Field.INTEGER) + 5 = (NumberFormat$Field.INTEGER) + 6 = (NumberFormat$Field.DECIMAL_SEPARATOR) + 7 = (NumberFormat$Field.FRACTION) + 8 = (NumberFormat$Field.FRACTION) + limits = ( { attributes = (NumberFormat$Field.CURRENCY) + begin = 0 end = 1 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 1 end = 2 end2 = 6 } + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 2 end = 3 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 3 begin2 = 1 end = 6 } + { attributes = (NumberFormat$Field.DECIMAL_SEPARATOR) + begin = 6 end = 7 } + { attributes = (NumberFormat$Field.FRACTION) + begin = 7 end = 9 } + ) + fieldPositions = + ( + { + fieldID = NumberFormat$Field.CURRENCY + begin = 0 end = 1 + } + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 1 end = 6 + } + { + fieldID = NumberFormat$Field.GROUPING_SEPARATOR + begin = 2 end = 3 + } + { + fieldID = NumberFormat$Field.DECIMAL_SEPARATOR + begin = 6 end = 7 + } + { + field = NumberFormat.FRACTION_FIELD + fieldID = NumberFormat$Field.FRACTION + begin = 7 end = 9 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("#,###") + valueClass = java.math.BigInteger + valueArgs = ("-12345678901234567890123456789012345") + } + { + length = 47 + text = "-12,345,678,901,234,567,890,123,456,789,012,345" + 0 = (NumberFormat$Field.SIGN) + 1 = (NumberFormat$Field.INTEGER) + 2 = (NumberFormat$Field.INTEGER) + 3 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 4 = (NumberFormat$Field.INTEGER) + 5 = (NumberFormat$Field.INTEGER) + 6 = (NumberFormat$Field.INTEGER) + 7 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 8 = (NumberFormat$Field.INTEGER) + 9 = (NumberFormat$Field.INTEGER) + 10 = (NumberFormat$Field.INTEGER) + 11 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 12 = (NumberFormat$Field.INTEGER) + 13 = (NumberFormat$Field.INTEGER) + 14 = (NumberFormat$Field.INTEGER) + 15 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 16 = (NumberFormat$Field.INTEGER) + 17 = (NumberFormat$Field.INTEGER) + 18 = (NumberFormat$Field.INTEGER) + 19 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 20 = (NumberFormat$Field.INTEGER) + 21 = (NumberFormat$Field.INTEGER) + 22 = (NumberFormat$Field.INTEGER) + 23 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 24 = (NumberFormat$Field.INTEGER) + 25 = (NumberFormat$Field.INTEGER) + 26 = (NumberFormat$Field.INTEGER) + 27 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 28 = (NumberFormat$Field.INTEGER) + 29 = (NumberFormat$Field.INTEGER) + 30 = (NumberFormat$Field.INTEGER) + 31 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 32 = (NumberFormat$Field.INTEGER) + 33 = (NumberFormat$Field.INTEGER) + 34 = (NumberFormat$Field.INTEGER) + 35 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 36 = (NumberFormat$Field.INTEGER) + 37 = (NumberFormat$Field.INTEGER) + 38 = (NumberFormat$Field.INTEGER) + 39 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 40 = (NumberFormat$Field.INTEGER) + 41 = (NumberFormat$Field.INTEGER) + 42 = (NumberFormat$Field.INTEGER) + 43 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 44 = (NumberFormat$Field.INTEGER) + 45 = (NumberFormat$Field.INTEGER) + 46 = (NumberFormat$Field.INTEGER) + limits = ( + { attributes = (NumberFormat$Field.SIGN) + begin = 0 end = 1 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 1 end = 3 end2 = 47 } + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 3 end = 4 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 4 begin2 = 1 end = 7 end2 = 47} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 7 end = 8 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 8 begin2 = 1 end = 11 end2 = 47} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 11 end = 12 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 12 begin2 = 1 end = 15 end2 = 47} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 15 end = 16 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 16 begin2 = 1 end = 19 end2 = 47} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 19 end = 20 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 20 begin2 = 1 end = 23 end2 = 47} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 23 end = 24 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 24 begin2 = 1 end = 27 end2 = 47} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 27 end = 28 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 28 begin2 = 1 end = 31 end2 = 47} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 31 end = 32 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 32 begin2 = 1 end = 35 end2 = 47} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 35 end = 36 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 36 begin2 = 1 end = 39 end2 = 47} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 39 end = 40 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 40 begin2 = 1 end = 43 end2 = 47} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 43 begin2 = 43 end = 44 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 44 begin2 = 1 end = 47} + ) + fieldPositions = + ( + { + fieldID = NumberFormat$Field.SIGN + begin = 0 end = 1 + } + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 1 end = 47 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("#,###.#####################") + valueClass = java.math.BigDecimal + valueArgs = ("-123456789012345678901234567890.12345678901234567890") + } + { + length = 60 + text = "-123,456,789,012,345,678,901,234,567,890.1234567890123456789" + 0 = (NumberFormat$Field.SIGN) + 1 = (NumberFormat$Field.INTEGER) + 2 = (NumberFormat$Field.INTEGER) + 3 = (NumberFormat$Field.INTEGER) + 4 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 5 = (NumberFormat$Field.INTEGER) + 6 = (NumberFormat$Field.INTEGER) + 7 = (NumberFormat$Field.INTEGER) + 8 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 9 = (NumberFormat$Field.INTEGER) + 10 = (NumberFormat$Field.INTEGER) + 11 = (NumberFormat$Field.INTEGER) + 12 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 13 = (NumberFormat$Field.INTEGER) + 14 = (NumberFormat$Field.INTEGER) + 15 = (NumberFormat$Field.INTEGER) + 16 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 17 = (NumberFormat$Field.INTEGER) + 18 = (NumberFormat$Field.INTEGER) + 19 = (NumberFormat$Field.INTEGER) + 20 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 21 = (NumberFormat$Field.INTEGER) + 22 = (NumberFormat$Field.INTEGER) + 23 = (NumberFormat$Field.INTEGER) + 24 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 25 = (NumberFormat$Field.INTEGER) + 26 = (NumberFormat$Field.INTEGER) + 27 = (NumberFormat$Field.INTEGER) + 28 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 29 = (NumberFormat$Field.INTEGER) + 30 = (NumberFormat$Field.INTEGER) + 31 = (NumberFormat$Field.INTEGER) + 32 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 33 = (NumberFormat$Field.INTEGER) + 34 = (NumberFormat$Field.INTEGER) + 35 = (NumberFormat$Field.INTEGER) + 36 = (NumberFormat$Field.INTEGER NumberFormat$Field.GROUPING_SEPARATOR) + 37 = (NumberFormat$Field.INTEGER) + 38 = (NumberFormat$Field.INTEGER) + 39 = (NumberFormat$Field.INTEGER) + 40 = (NumberFormat$Field.DECIMAL_SEPARATOR) + 41 = (NumberFormat$Field.FRACTION) + 42 = (NumberFormat$Field.FRACTION) + 43 = (NumberFormat$Field.FRACTION) + 44 = (NumberFormat$Field.FRACTION) + 45 = (NumberFormat$Field.FRACTION) + 45 = (NumberFormat$Field.FRACTION) + 45 = (NumberFormat$Field.FRACTION) + 45 = (NumberFormat$Field.FRACTION) + 45 = (NumberFormat$Field.FRACTION) + 45 = (NumberFormat$Field.FRACTION) + 45 = (NumberFormat$Field.FRACTION) + 45 = (NumberFormat$Field.FRACTION) + 46 = (NumberFormat$Field.FRACTION) + 47 = (NumberFormat$Field.FRACTION) + 48 = (NumberFormat$Field.FRACTION) + 49 = (NumberFormat$Field.FRACTION) + 50 = (NumberFormat$Field.FRACTION) + 51 = (NumberFormat$Field.FRACTION) + 52 = (NumberFormat$Field.FRACTION) + 53 = (NumberFormat$Field.FRACTION) + 54 = (NumberFormat$Field.FRACTION) + 55 = (NumberFormat$Field.FRACTION) + 56 = (NumberFormat$Field.FRACTION) + 57 = (NumberFormat$Field.FRACTION) + 58 = (NumberFormat$Field.FRACTION) + 59 = (NumberFormat$Field.FRACTION) + limits = ( + { attributes = (NumberFormat$Field.SIGN) + begin = 0 end = 1 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 1 end = 4 end2 = 40 } + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 4 end = 5 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 5 begin2 = 1 end = 8 end2 = 40} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 8 end = 9 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 9 begin2 = 1 end = 12 end2 = 40} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 12 end = 13 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 13 begin2 = 1 end = 16 end2 = 40} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 16 end = 17 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 17 begin2 = 1 end = 20 end2 = 40} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 20 end = 21 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 21 begin2 = 1 end = 24 end2 = 40} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 24 end = 25 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 25 begin2 = 1 end = 28 end2 = 40} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 28 end = 29 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 29 begin2 = 1 end = 32 end2 = 40} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 32 end = 33 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 33 begin2 = 1 end = 36 end2 = 40} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 36 end = 37 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 37 begin2 = 1 end = 40 end2 = 40} + { attributes = (NumberFormat$Field.DECIMAL_SEPARATOR) + begin = 40 end = 41 } + { attributes = (NumberFormat$Field.FRACTION) + begin = 41 begin2 = 41 end = 60 } + ) + fieldPositions = + ( + { + fieldID = NumberFormat$Field.SIGN + begin = 0 end = 1 + } + { + fieldID = NumberFormat$Field.DECIMAL_SEPARATOR + begin = 40 end = 41 + } + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 1 end = 40 + } + { + field = NumberFormat.FRACTION_FIELD + fieldID = NumberFormat$Field.FRACTION + begin = 41 end = 60 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("#,###") + valueClass = java.lang.Long + valueArgs = ("9223372036854775807") + } + { + length = 25 + text = "9,223,372,036,854,775,807" + 0 = (NumberFormat$Field.INTEGER) + 1 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 2 = (NumberFormat$Field.INTEGER) + 3 = (NumberFormat$Field.INTEGER) + 4 = (NumberFormat$Field.INTEGER) + 5 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 6 = (NumberFormat$Field.INTEGER) + 7 = (NumberFormat$Field.INTEGER) + 8 = (NumberFormat$Field.INTEGER) + 9 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 10 = (NumberFormat$Field.INTEGER) + 11 = (NumberFormat$Field.INTEGER) + 12 = (NumberFormat$Field.INTEGER) + 13 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 14 = (NumberFormat$Field.INTEGER) + 15 = (NumberFormat$Field.INTEGER) + 16 = (NumberFormat$Field.INTEGER) + 17 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 18 = (NumberFormat$Field.INTEGER) + 19 = (NumberFormat$Field.INTEGER) + 20 = (NumberFormat$Field.INTEGER) + 21 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 22 = (NumberFormat$Field.INTEGER) + 23 = (NumberFormat$Field.INTEGER) + 24 = (NumberFormat$Field.INTEGER) + limits = ( + { attributes = (NumberFormat$Field.INTEGER) + begin = 0 end = 1 end2 = 25} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 1 end = 2} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 1 end = 2} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 5 end = 6} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 5 end = 6} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 9 end = 10} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 9 end = 10} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 13 end = 14} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 13 end = 14} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 17 end = 18} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 17 end = 18} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 21 end = 22} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 21 end = 22} + ) + fieldPositions = + ( + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 0 end = 25 + } + { + fieldID = NumberFormat$Field.GROUPING_SEPARATOR + begin = 1 end = 2 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("#,###") + valueClass = java.util.concurrent.atomic.AtomicLong + valueArgs = ("9223372036854775807") + } + { + length = 25 + text = "9,223,372,036,854,775,807" + 0 = (NumberFormat$Field.INTEGER) + 1 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 2 = (NumberFormat$Field.INTEGER) + 3 = (NumberFormat$Field.INTEGER) + 4 = (NumberFormat$Field.INTEGER) + 5 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 6 = (NumberFormat$Field.INTEGER) + 7 = (NumberFormat$Field.INTEGER) + 8 = (NumberFormat$Field.INTEGER) + 9 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 10 = (NumberFormat$Field.INTEGER) + 11 = (NumberFormat$Field.INTEGER) + 12 = (NumberFormat$Field.INTEGER) + 13 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 14 = (NumberFormat$Field.INTEGER) + 15 = (NumberFormat$Field.INTEGER) + 16 = (NumberFormat$Field.INTEGER) + 17 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 18 = (NumberFormat$Field.INTEGER) + 19 = (NumberFormat$Field.INTEGER) + 20 = (NumberFormat$Field.INTEGER) + 21 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 22 = (NumberFormat$Field.INTEGER) + 23 = (NumberFormat$Field.INTEGER) + 24 = (NumberFormat$Field.INTEGER) + limits = ( + { attributes = (NumberFormat$Field.INTEGER) + begin = 0 end = 1 end2 = 25} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 1 end = 2} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 1 end = 2} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 5 end = 6} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 5 end = 6} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 9 end = 10} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 9 end = 10} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 13 end = 14} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 13 end = 14} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 17 end = 18} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 17 end = 18} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 21 end = 22} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 21 end = 22} + ) + fieldPositions = + ( + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 0 end = 25 + } + { + fieldID = NumberFormat$Field.GROUPING_SEPARATOR + begin = 1 end = 2 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("#,###") + valueClass = java.lang.Long + valueArgs = ("-9223372036854775808") + } + { + length = 26 + text = "-9,223,372,036,854,775,808" + 0 = (NumberFormat$Field.SIGN) + 1 = (NumberFormat$Field.INTEGER) + 2 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 3 = (NumberFormat$Field.INTEGER) + 4 = (NumberFormat$Field.INTEGER) + 5 = (NumberFormat$Field.INTEGER) + 6 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 7 = (NumberFormat$Field.INTEGER) + 8 = (NumberFormat$Field.INTEGER) + 9 = (NumberFormat$Field.INTEGER) + 10 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 11 = (NumberFormat$Field.INTEGER) + 12 = (NumberFormat$Field.INTEGER) + 13 = (NumberFormat$Field.INTEGER) + 14 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 15 = (NumberFormat$Field.INTEGER) + 16 = (NumberFormat$Field.INTEGER) + 17 = (NumberFormat$Field.INTEGER) + 18 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 19 = (NumberFormat$Field.INTEGER) + 20 = (NumberFormat$Field.INTEGER) + 21 = (NumberFormat$Field.INTEGER) + 22 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 23 = (NumberFormat$Field.INTEGER) + 24 = (NumberFormat$Field.INTEGER) + 25 = (NumberFormat$Field.INTEGER) + limits = ( + { attributes = (NumberFormat$Field.SIGN) + begin = 0 end = 1 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 1 end = 2 end2 = 26} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 2 end = 3} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 2 end = 3} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 6 end = 7} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 6 end = 7} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 10 end = 11} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 10 end = 11} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 14 end = 15} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 14 end = 15} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 18 end = 19} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 18 end = 19} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 22 end = 23} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 22 end = 23} + ) + fieldPositions = + ( + { + fieldID = NumberFormat$Field.SIGN + begin = 0 end = 1 + } + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 1 end = 26 + } + { + fieldID = NumberFormat$Field.GROUPING_SEPARATOR + begin = 2 end = 3 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("#,###") + valueClass = java.util.concurrent.atomic.AtomicLong + valueArgs = ("-9223372036854775808") + } + { + length = 26 + text = "-9,223,372,036,854,775,808" + 0 = (NumberFormat$Field.SIGN) + 1 = (NumberFormat$Field.INTEGER) + 2 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 3 = (NumberFormat$Field.INTEGER) + 4 = (NumberFormat$Field.INTEGER) + 5 = (NumberFormat$Field.INTEGER) + 6 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 7 = (NumberFormat$Field.INTEGER) + 8 = (NumberFormat$Field.INTEGER) + 9 = (NumberFormat$Field.INTEGER) + 10 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 11 = (NumberFormat$Field.INTEGER) + 12 = (NumberFormat$Field.INTEGER) + 13 = (NumberFormat$Field.INTEGER) + 14 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 15 = (NumberFormat$Field.INTEGER) + 16 = (NumberFormat$Field.INTEGER) + 17 = (NumberFormat$Field.INTEGER) + 18 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 19 = (NumberFormat$Field.INTEGER) + 20 = (NumberFormat$Field.INTEGER) + 21 = (NumberFormat$Field.INTEGER) + 22 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 23 = (NumberFormat$Field.INTEGER) + 24 = (NumberFormat$Field.INTEGER) + 25 = (NumberFormat$Field.INTEGER) + limits = ( + { attributes = (NumberFormat$Field.SIGN) + begin = 0 end = 1 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 1 end = 2 end2 = 26} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 2 end = 3} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 2 end = 3} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 6 end = 7} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 6 end = 7} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 10 end = 11} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 10 end = 11} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 14 end = 15} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 14 end = 15} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 18 end = 19} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 18 end = 19} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 22 end = 23} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 22 end = 23} + ) + fieldPositions = + ( + { + fieldID = NumberFormat$Field.SIGN + begin = 0 end = 1 + } + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 1 end = 26 + } + { + fieldID = NumberFormat$Field.GROUPING_SEPARATOR + begin = 2 end = 3 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("#,###") + valueClass = java.util.concurrent.atomic.AtomicInteger + valueArgs = ("2147483647") + } + { + length = 13 + text = "2,147,483,647" + 0 = (NumberFormat$Field.INTEGER) + 1 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 2 = (NumberFormat$Field.INTEGER) + 3 = (NumberFormat$Field.INTEGER) + 4 = (NumberFormat$Field.INTEGER) + 5 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 6 = (NumberFormat$Field.INTEGER) + 7 = (NumberFormat$Field.INTEGER) + 8 = (NumberFormat$Field.INTEGER) + 9 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 10 = (NumberFormat$Field.INTEGER) + 11 = (NumberFormat$Field.INTEGER) + 12 = (NumberFormat$Field.INTEGER) + limits = ( + { attributes = (NumberFormat$Field.INTEGER) + begin = 0 end = 1 end2 = 13} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 1 end = 2} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 1 end = 2} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 5 end = 6} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 5 end = 6} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 9 end = 10} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 9 end = 10} + ) + fieldPositions = + ( + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 0 end = 13 + } + { + fieldID = NumberFormat$Field.GROUPING_SEPARATOR + begin = 1 end = 2 + } + ) + } + + { + class = java.text.DecimalFormat + args = ("#,###") + valueClass = java.util.concurrent.atomic.AtomicInteger + valueArgs = ("-2147483648") + } + { + length = 14 + text = "-2,147,483,648" + 0 = (NumberFormat$Field.SIGN) + 1 = (NumberFormat$Field.INTEGER) + 2 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 3 = (NumberFormat$Field.INTEGER) + 4 = (NumberFormat$Field.INTEGER) + 5 = (NumberFormat$Field.INTEGER) + 6 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 7 = (NumberFormat$Field.INTEGER) + 8 = (NumberFormat$Field.INTEGER) + 9 = (NumberFormat$Field.INTEGER) + 10 = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 11 = (NumberFormat$Field.INTEGER) + 12 = (NumberFormat$Field.INTEGER) + 13 = (NumberFormat$Field.INTEGER) + limits = ( + { attributes = (NumberFormat$Field.SIGN) + begin = 0 end = 1 } + { attributes = (NumberFormat$Field.INTEGER) + begin = 1 end = 2 end2 = 14} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 2 end = 3} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 2 end = 3} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 6 end = 7} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 6 end = 7} + { attributes = (NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + begin = 10 end = 11} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 10 end = 11} + ) + fieldPositions = + ( + { + fieldID = NumberFormat$Field.SIGN + begin = 0 end = 1 + } + { + field = NumberFormat.INTEGER_FIELD + fieldID = NumberFormat$Field.INTEGER + begin = 1 end = 14 + } + { + fieldID = NumberFormat$Field.GROUPING_SEPARATOR + begin = 2 end = 3 + } + ) + } + ) +} diff --git a/jdk/test/java/text/Format/common/messageFormat.props b/jdk/test/java/text/Format/common/messageFormat.props new file mode 100644 index 00000000000..c8aaeecfd32 --- /dev/null +++ b/jdk/test/java/text/Format/common/messageFormat.props @@ -0,0 +1,520 @@ +# +# Copyright (c) 2000, 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. +# +# This code is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# version 2 for more details (a copy is included in the LICENSE file that +# accompanied this code). +# +# You should have received a copy of the GNU General Public License version +# 2 along with this work; if not, write to the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA +# or visit www.oracle.com if you need additional information or have any +# questions. +# + +# Test data for FormatIteratorTest + +{ + tests = + ( + { + class = java.text.MessageFormat + args = ("0={0} 1={1}") + valueClass = java.lang.reflect.Array + valueArgs = ("zero" "one") + } + { + length = 12 + text = "0=zero 1=one" + 0 = () + 1 = () + 2 = (MessageFormat$Field.ARGUMENT) + 3 = (MessageFormat$Field.ARGUMENT) + 4 = (MessageFormat$Field.ARGUMENT) + 5 = (MessageFormat$Field.ARGUMENT) + 6 = () + 7 = () + 8 = () + 9 = (MessageFormat$Field.ARGUMENT) + 10 = (MessageFormat$Field.ARGUMENT) + 11 = (MessageFormat$Field.ARGUMENT) + limits = ( { attributes = (MessageFormat$Field.ARGUMENT) + begin = 2 end = 6} + { attributes = () + begin = 0 begin2 = 0 end = 2 end2 = 12} + { attributes = () + begin = 6 begin2 = 0 end = 9 end2 = 12} + { attributes = (MessageFormat$Field.ARGUMENT) + begin = 9 end = 12} + ) + fieldPositions = + ( + { + fieldID = MessageFormat$Field.ARGUMENT + begin = 2 end = 6 + } + ) + } + + { + class = java.text.MessageFormat + args = ("0={0} 1={1} 0={0}") + valueClass = java.lang.reflect.Array + valueArgs = ("ze" "on") + } + { + length = 14 + text = "0=ze 1=on 0=ze" + 0 = () + 1 = () + 2 = (MessageFormat$Field.ARGUMENT) + 3 = (MessageFormat$Field.ARGUMENT) + 4 = () + 5 = () + 6 = () + 7 = (MessageFormat$Field.ARGUMENT) + 8 = (MessageFormat$Field.ARGUMENT) + 9 = () + 10 = () + 11 = () + 12 = (MessageFormat$Field.ARGUMENT) + 13 = (MessageFormat$Field.ARGUMENT) + limits = ( + { attributes = () + begin = 0 end = 2 end2 = 14} + { attributes = (MessageFormat$Field.ARGUMENT) + begin = 2 end = 4} + { attributes = () + begin = 4 begin2 = 0 end = 7 end2 = 14} + { attributes = (MessageFormat$Field.ARGUMENT) + begin = 7 end = 9} + { attributes = () + begin = 9 begin2 = 0 end = 12 end2 = 14} + { attributes = (MessageFormat$Field.ARGUMENT) + begin = 12 end = 14} + ) + fieldPositions = + ( + { + fieldID = MessageFormat$Field.ARGUMENT + begin = 2 end = 4 + } + ) + } + + { + class = java.text.MessageFormat + args = ("0={0,date} 1={1,number}") + valueClass = java.lang.reflect.Array + valueArgs = ((java.util.Date ("5/23/2001")) (Integer ("20122"))) + } + { + length = 23 + text = "0=May 23, 2001 1=20,122" + 0 = () + 1 = () + 2 = (MessageFormat$Field.ARGUMENT DateFormat$Field.MONTH) + 3 = (MessageFormat$Field.ARGUMENT DateFormat$Field.MONTH) + 4 = (MessageFormat$Field.ARGUMENT DateFormat$Field.MONTH) + 5 = (MessageFormat$Field.ARGUMENT) + 6 = (MessageFormat$Field.ARGUMENT DateFormat$Field.DAY_OF_MONTH) + 7 = (MessageFormat$Field.ARGUMENT DateFormat$Field.DAY_OF_MONTH) + 8 = (MessageFormat$Field.ARGUMENT) + 9 = (MessageFormat$Field.ARGUMENT) + 10 = (MessageFormat$Field.ARGUMENT DateFormat$Field.YEAR) + 11 = (MessageFormat$Field.ARGUMENT DateFormat$Field.YEAR) + 12 = (MessageFormat$Field.ARGUMENT DateFormat$Field.YEAR) + 13 = (MessageFormat$Field.ARGUMENT DateFormat$Field.YEAR) + 14 = () + 15 = () + 16 = () + 17 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 18 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 19 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 20 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 21 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 22 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + limits = ( + { attributes = () + begin = 0 end = 2 end2 = 23} + { attributes = (MessageFormat$Field.ARGUMENT) + begin = 2 end = 5 end2 = 14} + { attributes = (MessageFormat$Field.ARGUMENT + DateFormat$Field.MONTH) + begin = 2 end = 5} + { attributes = (MessageFormat$Field.ARGUMENT) + begin = 5 begin2 = 2 end = 6 end2 = 14} + { attributes = (DateFormat$Field.DAY_OF_MONTH) + begin = 6 end = 8} + { attributes = (MessageFormat$Field.ARGUMENT) + begin = 8 begin2 = 2 end = 10 end2 = 14} + { attributes = () + begin = 14 begin2 = 0 end = 17 end2 = 23} + { attributes = (MessageFormat$Field.ARGUMENT) + begin = 17 end = 19 end2 = 23} + { attributes = (MessageFormat$Field.ARGUMENT + NumberFormat$Field.INTEGER) + begin = 17 end = 19 end2 = 23} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 19 end = 20 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 20 begin2 = 17 end = 23} + ) + fieldPositions = + ( + { + fieldID = MessageFormat$Field.ARGUMENT + begin = 2 end = 14 + } + ) + } + + { + class = java.text.MessageFormat + args = ("0={0,date} 1={1,number}") + valueClass = java.lang.reflect.Array + valueArgs = ((java.util.Date ("1/22/2003")) (java.math.BigInteger ("12345678901234567890123456789012345"))) + } + { + length = 63 + text = "0=Jan 22, 2003 1=12,345,678,901,234,567,890,123,456,789,012,345" + 0 = () + 1 = () + 2 = (MessageFormat$Field.ARGUMENT DateFormat$Field.MONTH) + 3 = (MessageFormat$Field.ARGUMENT DateFormat$Field.MONTH) + 4 = (MessageFormat$Field.ARGUMENT DateFormat$Field.MONTH) + 5 = (MessageFormat$Field.ARGUMENT) + 6 = (MessageFormat$Field.ARGUMENT DateFormat$Field.DAY_OF_MONTH) + 7 = (MessageFormat$Field.ARGUMENT DateFormat$Field.DAY_OF_MONTH) + 8 = (MessageFormat$Field.ARGUMENT) + 9 = (MessageFormat$Field.ARGUMENT) + 10 = (MessageFormat$Field.ARGUMENT DateFormat$Field.YEAR) + 11 = (MessageFormat$Field.ARGUMENT DateFormat$Field.YEAR) + 12 = (MessageFormat$Field.ARGUMENT DateFormat$Field.YEAR) + 13 = (MessageFormat$Field.ARGUMENT DateFormat$Field.YEAR) + 14 = () + 15 = () + 16 = () + 17 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 18 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 19 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 20 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 21 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 22 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 23 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 24 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 25 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 26 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 27 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 28 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 29 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 30 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 31 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 32 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 33 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 34 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 35 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 36 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 37 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 38 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 39 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 40 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 41 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 42 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 43 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 44 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 45 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 46 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 47 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 48 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 49 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 50 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 51 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 52 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 53 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 54 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 55 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 56 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 57 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 58 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 59 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 60 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 61 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 62 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + limits = ( + { attributes = () + begin = 0 end = 2 end2 = 63} + { attributes = (MessageFormat$Field.ARGUMENT) + begin = 2 end = 5 end2 = 14} + { attributes = (MessageFormat$Field.ARGUMENT + DateFormat$Field.MONTH) + begin = 2 end = 5} + { attributes = (MessageFormat$Field.ARGUMENT) + begin = 5 begin2 = 2 end = 6 end2 = 14} + { attributes = (DateFormat$Field.DAY_OF_MONTH) + begin = 6 end = 8} + { attributes = (MessageFormat$Field.ARGUMENT) + begin = 8 begin2 = 2 end = 10 end2 = 14} + { attributes = () + begin = 14 begin2 = 0 end = 17 end2 = 63} + { attributes = (MessageFormat$Field.ARGUMENT + NumberFormat$Field.INTEGER) + begin = 17 end = 19 end2 = 63} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 19 end = 20 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 20 begin2 = 17 end = 23 end2 = 63} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 23 end = 24 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 24 begin2 = 17 end = 27 end2 = 63} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 27 end = 28 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 28 begin2 = 17 end = 31 end2 = 63} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 31 end = 32 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 32 begin2 = 17 end = 35 end2 = 63} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 35 end = 36 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 36 begin2 = 17 end = 39 end2 = 63} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 39 end = 40 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 40 begin2 = 17 end = 43 end2 = 63} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 43 end = 44 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 44 begin2 = 17 end = 47 end2 = 63} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 47 end = 48 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 48 begin2 = 17 end = 51 end2 = 63} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 51 end = 52 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 52 begin2 = 17 end = 55 end2 = 63} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 55 end = 56 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 56 begin2 = 17 end = 59 end2 = 63} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 59 end = 60 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 60 begin2 = 17 end = 63} + ) + fieldPositions = + ( + { + fieldID = MessageFormat$Field.ARGUMENT + begin = 2 end = 14 + } + ) + } + + { + class = java.text.MessageFormat + args = ("0={0,date} 1={1,number}") + valueClass = java.lang.reflect.Array + valueArgs = ((java.util.Date ("1/26/2003")) (java.math.BigDecimal ("-12345678901234567890.1239"))) + } + { + length = 48 + text = "0=Jan 26, 2003 1=-12,345,678,901,234,567,890.124" + 0 = () + 1 = () + 2 = (MessageFormat$Field.ARGUMENT DateFormat$Field.MONTH) + 3 = (MessageFormat$Field.ARGUMENT DateFormat$Field.MONTH) + 4 = (MessageFormat$Field.ARGUMENT DateFormat$Field.MONTH) + 5 = (MessageFormat$Field.ARGUMENT) + 6 = (MessageFormat$Field.ARGUMENT DateFormat$Field.DAY_OF_MONTH) + 7 = (MessageFormat$Field.ARGUMENT DateFormat$Field.DAY_OF_MONTH) + 8 = (MessageFormat$Field.ARGUMENT) + 9 = (MessageFormat$Field.ARGUMENT) + 10 = (MessageFormat$Field.ARGUMENT DateFormat$Field.YEAR) + 11 = (MessageFormat$Field.ARGUMENT DateFormat$Field.YEAR) + 12 = (MessageFormat$Field.ARGUMENT DateFormat$Field.YEAR) + 13 = (MessageFormat$Field.ARGUMENT DateFormat$Field.YEAR) + 14 = () + 15 = () + 16 = () + 17 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.SIGN) + 18 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 19 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 20 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 21 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 22 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 23 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 24 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 25 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 26 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 27 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 28 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 29 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 30 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 31 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 32 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 33 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 34 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 35 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 36 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 37 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 38 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 39 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 40 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER + NumberFormat$Field.GROUPING_SEPARATOR) + 41 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 42 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 43 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.INTEGER) + 44 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.DECIMAL_SEPARATOR) + 45 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.FRACTION) + 46 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.FRACTION) + 47 = (MessageFormat$Field.ARGUMENT NumberFormat$Field.FRACTION) + limits = ( + { attributes = () + begin = 0 end = 2 end2 = 48} + { attributes = (MessageFormat$Field.ARGUMENT) + begin = 2 end = 5 end2 = 14} + { attributes = (MessageFormat$Field.ARGUMENT + DateFormat$Field.MONTH) + begin = 2 end = 5} + { attributes = (MessageFormat$Field.ARGUMENT) + begin = 5 begin2 = 2 end = 6 end2 = 14} + { attributes = (DateFormat$Field.DAY_OF_MONTH) + begin = 6 end = 8} + { attributes = (MessageFormat$Field.ARGUMENT) + begin = 8 begin2 = 2 end = 10 end2 = 14} + { attributes = () + begin = 14 begin2 = 0 end = 17 end2 = 48} + + { attributes = (NumberFormat$Field.SIGN) + begin = 17 end = 18 } + { attributes = (MessageFormat$Field.ARGUMENT + NumberFormat$Field.INTEGER) + begin = 18 end = 20 end2 = 44} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 20 end = 21 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 21 begin2 = 18 end = 24 end2 = 44} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 24 end = 25 } + + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 25 begin2 = 18 end = 28 end2 = 44} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 28 end = 29 } + + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 29 begin2 = 18 end = 32 end2 = 44} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 32 end = 33 } + + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 33 begin2 = 18 end = 36 end2 = 44} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 36 end = 37 } + + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 37 begin2 = 18 end = 40 end2 = 44} + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 40 end = 41 } + { attributes = (NumberFormat$Field.INTEGER + MessageFormat$Field.ARGUMENT) + begin = 41 begin2 = 18 end = 44 end2 = 44} + + { attributes = (NumberFormat$Field.GROUPING_SEPARATOR) + begin = 44 begin2 = 41 end = 45 end2 = 48} + + { attributes = (NumberFormat$Field.FRACTION + MessageFormat$Field.ARGUMENT) + begin = 45 end = 48} + ) + fieldPositions = + ( + { + fieldID = MessageFormat$Field.ARGUMENT + begin = 2 end = 14 + } + ) + } + + { + class = java.text.MessageFormat + args = ("0={0,choice,-1#neg| 0#zero | 1#more}xx") + valueClass = java.lang.reflect.Array + valueArgs = ((Integer ("-11"))) + } + { + length = 7 + text = "0=negxx" + 0 = () + 1 = () + 2 = (MessageFormat$Field.ARGUMENT) + 3 = (MessageFormat$Field.ARGUMENT) + 4 = (MessageFormat$Field.ARGUMENT) + 5 = () + 6 = () + limits = ( + { attributes = () + begin = 0 end = 2 end2 = 7} + { attributes = (MessageFormat$Field.ARGUMENT) + begin = 2 end = 5} + { attributes = () + begin = 5 begin2 = 0 end = 7} + ) + fieldPositions = + ( + { + fieldID = MessageFormat$Field.ARGUMENT + begin = 2 end = 5 + } + ) + } + ) +} + diff --git a/jdk/test/java/text/testlib/HexDumpReader.java b/jdk/test/java/text/testlib/HexDumpReader.java new file mode 100644 index 00000000000..31a820d04d4 --- /dev/null +++ b/jdk/test/java/text/testlib/HexDumpReader.java @@ -0,0 +1,115 @@ +/* + * 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. + * + * 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. + */ + +import java.io.BufferedReader; +import java.io.ByteArrayInputStream; +import java.io.File; +import java.io.FileInputStream; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.util.ArrayList; +import java.util.List; + +/** + * HexDumpReader provides utility methods to read a hex dump text file + * and convert to an InputStream. The format supported by the methods + * can be generated by the following command. + * + * $ od -vw -t x1 foo | sed -r -e 's/^[0-9]+ ?//' -e 's/ //g' -e '/^$/d' + */ +public class HexDumpReader { + public static InputStream getStreamFromHexDump(String fileName) { + return getStreamFromHexDump(new File(System.getProperty("test.src", "."), + fileName)); + } + + public static InputStream getStreamFromHexDump(File hexFile) { + ByteArrayBuilder bab = new ByteArrayBuilder(); + int lineNo = 0; + try (BufferedReader reader + = new BufferedReader(new InputStreamReader(new FileInputStream(hexFile), + "us-ascii"))) { + String line; + while ((line = reader.readLine()) != null) { + lineNo++; + line = line.trim(); + // Skip blank and comment lines. + if (line.length() == 0) { + continue; + } + int x = line.indexOf('#'); + if (x == 0) { + continue; + } + if (x > 0) { + line = line.substring(0, x).trim(); + } + int len = line.length(); + for (int i = 0; i < len; i += 2) { + bab.put((byte)Integer.parseInt(line, i, i + 2, 16)); + } + } + } catch (Exception e) { + throw new RuntimeException(hexFile.getName() + ":error:" + lineNo + ": " + e, e); + } + return new ByteArrayInputStream(bab.toArray()); + } + + + private static class ByteArrayBuilder { + private static final int BUFFER_SIZE = 4096; + + private int size; + private List bytes; + private byte[] current; + private int offset; + + ByteArrayBuilder() { + bytes = new ArrayList<>(); + current = new byte[BUFFER_SIZE]; + } + + void put(byte b) { + if (offset == BUFFER_SIZE) { + bytes.add(current); + current = new byte[BUFFER_SIZE]; + offset = 0; + } + current[offset++] = b; + size++; + } + + byte[] toArray() { + byte[] buf = new byte[size]; + int ptr = 0; + for (byte[] ba : bytes) { + System.arraycopy(ba, 0, buf, ptr, ba.length); + ptr += ba.length; + } + System.arraycopy(current, 0, buf, ptr, offset); + assert ptr + offset == size; + return buf; + } + } + +} diff --git a/jdk/test/java/text/testlib/IntlTest.java b/jdk/test/java/text/testlib/IntlTest.java new file mode 100644 index 00000000000..d8ae8572f30 --- /dev/null +++ b/jdk/test/java/text/testlib/IntlTest.java @@ -0,0 +1,266 @@ +/* + * Copyright (c) 1998, 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. + * + * 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. + */ + +import java.io.IOException; +import java.io.PrintWriter; +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; +import java.lang.reflect.Modifier; +import java.util.ArrayList; +import java.util.Map; +import java.util.LinkedHashMap; +import java.util.List; + +/** + * IntlTest is a base class for tests that can be run conveniently from + * the command line as well as under the Java test harness. + *

+ * Sub-classes implement a set of public void methods named "Test*" or + * "test*" with no arguments. Each of these methods performs some + * test. Test methods should indicate errors by calling either err() or + * errln(). This will increment the errorCount field and may optionally + * print a message to the log. Debugging information may also be added to + * the log via the log and logln methods. These methods will add their + * arguments to the log only if the test is being run in verbose mode. + */ +public abstract class IntlTest { + + //------------------------------------------------------------------------ + // Everything below here is boilerplate code that makes it possible + // to add a new test by simply adding a method to an existing class. + //------------------------------------------------------------------------ + + protected IntlTest() { + // Populate testMethods with all the test methods. + Method[] methods = getClass().getDeclaredMethods(); + for (Method method : methods) { + if (Modifier.isPublic(method.getModifiers()) + && method.getReturnType() == void.class + && method.getParameterCount() == 0) { + String name = method.getName(); + if (name.length() > 4) { + if (name.startsWith("Test") || name.startsWith("test")) { + testMethods.put(name, method); + } + } + } + } + } + + protected void run(String[] args) throws Exception + { + // Set up the log and reference streams. We use PrintWriters in order to + // take advantage of character conversion. The JavaEsc converter will + // convert Unicode outside the ASCII range to Java's \\uxxxx notation. + log = new PrintWriter(System.out, true); + + // Parse the test arguments. They can be either the flag + // "-verbose" or names of test methods. Create a list of + // tests to be run. + List testsToRun = new ArrayList<>(args.length); + for (String arg : args) { + switch (arg) { + case "-verbose": + verbose = true; + break; + case "-prompt": + prompt = true; + break; + case "-nothrow": + nothrow = true; + break; + default: + Method m = testMethods.get(arg); + if (m == null) { + System.out.println("Method " + arg + ": not found"); + usage(); + return; + } + testsToRun.add(m); + break; + } + } + + // If no test method names were given explicitly, run them all. + if (testsToRun.isEmpty()) { + testsToRun.addAll(testMethods.values()); + } + + System.out.println(getClass().getName() + " {"); + indentLevel++; + + // Run the list of tests given in the test arguments + for (Method testMethod : testsToRun) { + int oldCount = errorCount; + + writeTestName(testMethod.getName()); + + try { + testMethod.invoke(this, new Object[0]); + } catch (IllegalAccessException e) { + errln("Can't acces test method " + testMethod.getName()); + } catch (InvocationTargetException e) { + errln("Uncaught exception thrown in test method " + + testMethod.getName()); + e.getTargetException().printStackTrace(this.log); + } + writeTestResult(errorCount - oldCount); + } + indentLevel--; + writeTestResult(errorCount); + + if (prompt) { + System.out.println("Hit RETURN to exit..."); + try { + System.in.read(); + } catch (IOException e) { + System.out.println("Exception: " + e.toString() + e.getMessage()); + } + } + if (nothrow) { + System.exit(errorCount); + } + } + + /** + * Adds the given message to the log if we are in verbose mode. + */ + protected void log(String message) { + logImpl(message, false); + } + + protected void logln(String message) { + logImpl(message, true); + } + + protected void logln() { + logImpl(null, true); + } + + private void logImpl(String message, boolean newline) { + if (verbose) { + if (message != null) { + indent(indentLevel + 1); + log.print(message); + } + if (newline) { + log.println(); + } + } + } + + protected void err(String message) { + errImpl(message, false); + } + + protected void errln(String message) { + errImpl(message, true); + } + + private void errImpl(String message, boolean newline) { + errorCount++; + indent(indentLevel + 1); + log.print(message); + if (newline) { + log.println(); + } + log.flush(); + + if (!nothrow) { + throw new RuntimeException(message); + } + } + + protected int getErrorCount() { + return errorCount; + } + + protected void writeTestName(String testName) { + indent(indentLevel); + log.print(testName); + log.flush(); + needLineFeed = true; + } + + protected void writeTestResult(int count) { + if (!needLineFeed) { + indent(indentLevel); + log.print("}"); + } + needLineFeed = false; + + if (count != 0) { + log.println(" FAILED"); + } else { + log.println(" Passed"); + } + } + + /* + * Returns a spece-delimited hex String. + */ + protected static String toHexString(String s) { + StringBuilder sb = new StringBuilder(" "); + + for (int i = 0; i < s.length(); i++) { + sb.append(Integer.toHexString(s.charAt(i))); + sb.append(' '); + } + + return sb.toString(); + } + + private void indent(int distance) { + if (needLineFeed) { + log.println(" {"); + needLineFeed = false; + } + log.print(SPACES.substring(0, distance * 2)); + } + + /** + * Print a usage message for this test class. + */ + void usage() { + System.out.println(getClass().getName() + + ": [-verbose] [-nothrow] [-prompt] [test names]"); + + System.out.println(" Available test names:"); + for (String methodName : testMethods.keySet()) { + System.out.println("\t" + methodName); + } + } + + private boolean prompt; + private boolean nothrow; + protected boolean verbose; + + private PrintWriter log; + private int indentLevel; + private boolean needLineFeed; + private int errorCount; + + private final Map testMethods = new LinkedHashMap<>(); + + private static final String SPACES = " "; +} diff --git a/jdk/test/java/time/test/java/time/format/TestDateTimeFormatterBuilder.java b/jdk/test/java/time/test/java/time/format/TestDateTimeFormatterBuilder.java index c4c88bc3b1b..b47e6c92a31 100644 --- a/jdk/test/java/time/test/java/time/format/TestDateTimeFormatterBuilder.java +++ b/jdk/test/java/time/test/java/time/format/TestDateTimeFormatterBuilder.java @@ -918,9 +918,9 @@ public class TestDateTimeFormatterBuilder { {null, FormatStyle.SHORT, IsoChronology.INSTANCE, Locale.US, "h:mm a"}, // French Locale and ISO Chronology - {FormatStyle.FULL, FormatStyle.FULL, IsoChronology.INSTANCE, Locale.FRENCH, "EEEE d MMMM y HH:mm:ss zzzz"}, - {FormatStyle.LONG, FormatStyle.LONG, IsoChronology.INSTANCE, Locale.FRENCH, "d MMMM y HH:mm:ss z"}, - {FormatStyle.MEDIUM, FormatStyle.MEDIUM, IsoChronology.INSTANCE, Locale.FRENCH, "d MMM y HH:mm:ss"}, + {FormatStyle.FULL, FormatStyle.FULL, IsoChronology.INSTANCE, Locale.FRENCH, "EEEE d MMMM y '\u00e0' HH:mm:ss zzzz"}, + {FormatStyle.LONG, FormatStyle.LONG, IsoChronology.INSTANCE, Locale.FRENCH, "d MMMM y '\u00e0' HH:mm:ss z"}, + {FormatStyle.MEDIUM, FormatStyle.MEDIUM, IsoChronology.INSTANCE, Locale.FRENCH, "d MMM y '\u00e0' HH:mm:ss"}, {FormatStyle.SHORT, FormatStyle.SHORT, IsoChronology.INSTANCE, Locale.FRENCH, "dd/MM/y HH:mm"}, {FormatStyle.FULL, null, IsoChronology.INSTANCE, Locale.FRENCH, "EEEE d MMMM y"}, {FormatStyle.LONG, null, IsoChronology.INSTANCE, Locale.FRENCH, "d MMMM y"}, @@ -935,11 +935,11 @@ public class TestDateTimeFormatterBuilder { {FormatStyle.FULL, FormatStyle.FULL, JapaneseChronology.INSTANCE, Locale.JAPANESE, "Gy\u5e74M\u6708d\u65e5EEEE H\u6642mm\u5206ss\u79d2 zzzz"}, {FormatStyle.LONG, FormatStyle.LONG, JapaneseChronology.INSTANCE, Locale.JAPANESE, "Gy\u5e74M\u6708d\u65e5 H:mm:ss z"}, {FormatStyle.MEDIUM, FormatStyle.MEDIUM, JapaneseChronology.INSTANCE, Locale.JAPANESE, "Gy\u5e74M\u6708d\u65e5 H:mm:ss"}, - {FormatStyle.SHORT, FormatStyle.SHORT, JapaneseChronology.INSTANCE, Locale.JAPANESE, "Gyy/MM/dd H:mm"}, + {FormatStyle.SHORT, FormatStyle.SHORT, JapaneseChronology.INSTANCE, Locale.JAPANESE, "GGGGGy/M/d H:mm"}, {FormatStyle.FULL, null, JapaneseChronology.INSTANCE, Locale.JAPANESE, "Gy\u5e74M\u6708d\u65e5EEEE"}, {FormatStyle.LONG, null, JapaneseChronology.INSTANCE, Locale.JAPANESE, "Gy\u5e74M\u6708d\u65e5"}, {FormatStyle.MEDIUM, null, JapaneseChronology.INSTANCE, Locale.JAPANESE, "Gy\u5e74M\u6708d\u65e5"}, - {FormatStyle.SHORT, null, JapaneseChronology.INSTANCE, Locale.JAPANESE, "Gyy/MM/dd"}, + {FormatStyle.SHORT, null, JapaneseChronology.INSTANCE, Locale.JAPANESE, "GGGGGy/M/d"}, {null, FormatStyle.FULL, JapaneseChronology.INSTANCE, Locale.JAPANESE, "H\u6642mm\u5206ss\u79d2 zzzz"}, {null, FormatStyle.LONG, JapaneseChronology.INSTANCE, Locale.JAPANESE, "H:mm:ss z"}, {null, FormatStyle.MEDIUM, JapaneseChronology.INSTANCE, Locale.JAPANESE, "H:mm:ss"}, diff --git a/jdk/test/java/time/test/java/time/format/TestNonIsoFormatter.java b/jdk/test/java/time/test/java/time/format/TestNonIsoFormatter.java index 075a0f4246d..6ba45267414 100644 --- a/jdk/test/java/time/test/java/time/format/TestNonIsoFormatter.java +++ b/jdk/test/java/time/test/java/time/format/TestNonIsoFormatter.java @@ -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 @@ -81,7 +81,7 @@ public class TestNonIsoFormatter { "\u0627\u0644\u0627\u062b\u0646\u064a\u0646\u060c \u0661 \u0631\u0628\u064a\u0639 " + "\u0627\u0644\u0622\u062e\u0631\u060c \u0661\u0664\u0663\u0664 \u0647\u0640" }, // Hijrah AH 1434-04-01 (Mon) { MINGUO, Locale.TAIWAN, Locale.TAIWAN, MINGUO.date(IsoDate), - "\u6c11\u570b102\u5e742\u670811\u65e5\u661f\u671f\u4e00" }, // Minguo ROC 102-02-11 (Mon) + "\u6c11\u570b102\u5e742\u670811\u65e5 \u661f\u671f\u4e00" }, // Minguo ROC 102-02-11 (Mon) { BUDDHIST, thTH, thTH, BUDDHIST.date(IsoDate), "\u0e27\u0e31\u0e19\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c\u0e17\u0e35\u0e48" + " 11 \u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c" diff --git a/jdk/test/java/time/test/java/time/temporal/TestChronoField.java b/jdk/test/java/time/test/java/time/temporal/TestChronoField.java index 41d464c0a72..df51dbbfa4d 100644 --- a/jdk/test/java/time/test/java/time/temporal/TestChronoField.java +++ b/jdk/test/java/time/test/java/time/temporal/TestChronoField.java @@ -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 @@ -123,7 +123,7 @@ public class TestChronoField { public void test_IsoFields_week_based_year() { Locale locale = Locale.US; String name = IsoFields.WEEK_OF_WEEK_BASED_YEAR.getDisplayName(locale); - assertEquals(name, "Week"); + assertEquals(name, "week"); } @Test(expectedExceptions=NullPointerException.class) @@ -136,7 +136,7 @@ public class TestChronoField { Locale locale = Locale.US; TemporalField weekOfYearField = WeekFields.SUNDAY_START.weekOfYear(); String name = weekOfYearField.getDisplayName(locale); - assertEquals(name, "Week"); + assertEquals(name, "week"); } @Test(expectedExceptions=NullPointerException.class) diff --git a/jdk/test/java/util/Calendar/BuddhistCalendarTest.java b/jdk/test/java/util/Calendar/BuddhistCalendarTest.java new file mode 100644 index 00000000000..8d6a5fc3466 --- /dev/null +++ b/jdk/test/java/util/Calendar/BuddhistCalendarTest.java @@ -0,0 +1,243 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4817812 4847186 4956227 4956479 + * @summary Confirm that BuddhistCalendar's add(), roll() and toString() work correctly with Buddhist Era years. + */ + +import java.util.Calendar; +import java.util.GregorianCalendar; +import java.util.Locale; +import static java.util.Calendar.*; + +public class BuddhistCalendarTest { + + private static final Locale THAI_LOCALE = new Locale("th", "TH"); + + public static void main(String[] args) { + testAddRoll(); + testToString(); + testException(); + testLeastMax(); + } + + /** + * 4817812 + */ + static void testAddRoll() { + Calendar cal; + int base, year; + + /* + * Test: BuddhistCalendar.add(YEAR) + */ + cal = getBuddhistCalendar(); + base = cal.get(YEAR); + cal.add(YEAR, 1); + year = cal.get(YEAR); + check(year, base+1, "add(+YEAR)"); + + cal = getBuddhistCalendar(); + base = cal.get(YEAR); + cal.add(YEAR, -3); + year = cal.get(YEAR); + check(year, base-3, "add(-YEAR)"); + + /* + * Test BuddhistCalendar.add(MONTH) + */ + cal = getBuddhistCalendar(); + base = cal.get(YEAR); + cal.set(MONTH, DECEMBER); + cal.add(MONTH, 2); + year = cal.get(YEAR); + check(year, base+1, "add(+MONTH)"); + + cal = getBuddhistCalendar(); + base = cal.get(YEAR); + cal.set(MONTH, FEBRUARY); + cal.add(MONTH, -4); + year = cal.get(YEAR); + check(year, base-1, "add(-MONTH)"); + + /* + * Test BuddhistCalendar.roll(YEAR) + */ + cal = getBuddhistCalendar(); + base = cal.get(YEAR); + cal.roll(YEAR, 2); + year = cal.get(YEAR); + check(year, base+2, "roll(+YEAR)"); + + cal = getBuddhistCalendar(); + base = cal.get(YEAR); + cal.roll(YEAR, -4); + year = cal.get(YEAR); + check(year, base-4, "roll(-YEAR)"); + + /* + * Test BuddhistCalendar.roll(WEEK_OF_YEAR) + */ + cal = getBuddhistCalendar(); + cal.set(YEAR, 2543); // A.D.2000 + cal.set(MONTH, DECEMBER); + cal.set(DATE, 31); + base = cal.get(YEAR); + check(base, 2543, "roll(+WEEK_OF_YEAR)"); + cal.roll(WEEK_OF_YEAR, 10); + year = cal.get(YEAR); + check(year, base, "roll(+WEEK_OF_YEAR)"); + + cal = getBuddhistCalendar(); + cal.set(YEAR, 2543); // A.D.2000 + cal.set(MONTH, JANUARY); + cal.set(DATE, 1); + base = cal.get(YEAR); + check(base, 2543, "roll(+WEEK_OF_YEAR)"); + cal.roll(WEEK_OF_YEAR, -10); + year = cal.get(YEAR); + check(year, base, "roll(-WEEK_OF_YEAR)"); + + /* + * Test Calendar.set(year, month, date) + */ + cal = getBuddhistCalendar(); + base = cal.get(YEAR); + cal.set(3001, APRIL, 10); + year = cal.get(YEAR); + check(year, 3001, "set(year, month, date)"); + + /* + * Test Calendar.set(year, month, date, hour, minute) + */ + cal = getBuddhistCalendar(); + base = cal.get(YEAR); + cal.set(3020, MAY, 20, 9, 10); + year = cal.get(YEAR); + check(year, 3020, "set(year, month, date, hour, minute)"); + + /* + * Test Calendar.set(year, month, date, hour, minute, second) + */ + cal = getBuddhistCalendar(); + base = cal.get(YEAR); + cal.set(3120, MAY, 20, 9, 10, 52); + year = cal.get(YEAR); + check(year, 3120, "set(year, month, date, hour, minute, second)"); + + /* + * Test BuddhistCalendar.getActualMaximum(YEAR); + * set(YEAR)/get(YEAR) in this method doesn't affect the real + * YEAR value because a clone is used with set()&get(). + */ + cal = getBuddhistCalendar(); + base = cal.get(YEAR); + int limit = cal.getActualMaximum(YEAR); + year = cal.get(YEAR); + check(year, base, "BuddhistCalendar.getActualMaximum(YEAR)"); + + /* + * Test BuddhistCalendar.getActualMinimum(YEAR); + * This doesn't call set(YEAR) nor get(YEAR), though. + */ + cal = getBuddhistCalendar(); + base = cal.get(YEAR); + limit = cal.getActualMinimum(YEAR); + year = cal.get(YEAR); + check(year, base, "BuddhistCalendar.getActualMinimum(YEAR)"); + } + + /** + * 4847186: BuddhistCalendar: toString() returns Gregorian year + */ + static void testToString() { + Calendar cal = getBuddhistCalendar(); + int year = cal.get(YEAR); + String s = cal.toString(); + String y = s.replaceAll(".+,YEAR=(\\d+),.+", "$1"); + if (Integer.parseInt(y) != year) { + throw new RuntimeException("toString(): wrong year value: got " + y + + ", expected " + year); + } + } + + /** + * 4956479: BuddhistCalendar methods may return wrong values after exception + */ + static void testException() { + Calendar cal = getBuddhistCalendar(); + int year = cal.get(YEAR); + boolean exceptionOccurred = false; + try { + cal.add(100, +1); // cause exception + } catch (Exception e) { + exceptionOccurred = true; + } + if (!exceptionOccurred) { + throw new RuntimeException("testException: test case failed: no exception thrown"); + } + int year2 = cal.get(YEAR); + if (year2 != year) { + throw new RuntimeException("wrong year value after exception: got " + year2 + + ", expected " + year); + } + } + + /** + * 4956227: getLeastMaximum(WEEK_OF_MONTH) return diff. val. for Greg. and Buddhist Calendar + */ + static void testLeastMax() { + Calendar bc = getBuddhistCalendar(); + // Specify THAI_LOCALE to get the same params for WEEK + // calculations (6904680). + Calendar gc = new GregorianCalendar(THAI_LOCALE); + for (int f = 0; f < Calendar.FIELD_COUNT; f++) { + if (f == ERA || f == YEAR) { + continue; + } + int bn = bc.getLeastMaximum(f); + int gn = gc.getLeastMaximum(f); + if (bn != gn) { + throw new RuntimeException("inconsistent Least Max value for " + Koyomi.getFieldName(f) + + ": Buddhist=" + bn + + ": Gregorian=" + gn); + } + } + } + + /** + * @return a BuddhistCalendar + */ + static Calendar getBuddhistCalendar() { + return Calendar.getInstance(THAI_LOCALE); + } + + static void check(int got, int expected, String s) { + if (got != expected) { + throw new RuntimeException("Failed: " + + s + ": got:" + got + ", expected:" + expected); + } + } +} diff --git a/jdk/test/java/util/Calendar/Bug4302966.java b/jdk/test/java/util/Calendar/Bug4302966.java new file mode 100644 index 00000000000..6c3b9c3d60e --- /dev/null +++ b/jdk/test/java/util/Calendar/Bug4302966.java @@ -0,0 +1,42 @@ +/* + * Copyright (c) 2001, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4302966 + * @summary In Czech Republic first day of week is Monday not Sunday + */ + +import java.util.Calendar; +import java.util.Locale; + +public class Bug4302966 { + + public static void main(String[] args) { + Calendar czechCalendar = Calendar.getInstance(new Locale("cs")); + int firstDayOfWeek = czechCalendar.getFirstDayOfWeek(); + if (firstDayOfWeek != Calendar.MONDAY) { + throw new RuntimeException(); + } + } +} diff --git a/jdk/test/java/util/Calendar/Bug4766302.java b/jdk/test/java/util/Calendar/Bug4766302.java new file mode 100644 index 00000000000..42df92b7e16 --- /dev/null +++ b/jdk/test/java/util/Calendar/Bug4766302.java @@ -0,0 +1,51 @@ +/* + * Copyright (c) 2002, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4766302 + * @summary Make sure that computeTime call doesn't reset the isTimeSet value. + */ + +import java.util.GregorianCalendar; + +public class Bug4766302 { + + static class MyCalendar extends GregorianCalendar { + boolean isTimeStillSet() { + return isTimeSet; + } + + protected void computeTime() { + super.computeTime(); + } + } + + public static void main(String[] args) { + MyCalendar cal = new MyCalendar(); + cal.computeTime(); + if (!cal.isTimeStillSet()) { + throw new RuntimeException("computeTime() call reset isTimeSet."); + } + } +} diff --git a/jdk/test/java/util/Calendar/Bug4851640.java b/jdk/test/java/util/Calendar/Bug4851640.java new file mode 100644 index 00000000000..4f5add37679 --- /dev/null +++ b/jdk/test/java/util/Calendar/Bug4851640.java @@ -0,0 +1,59 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4851640 + * @summary Make sure not to set UNSET fields to COMPUTED after time calculation. + */ + +import java.util.GregorianCalendar; +import static java.util.Calendar.*; + +public class Bug4851640 { + + public static void main(String args[]) { + GregorianCalendar cal = new GregorianCalendar(); + cal.clear(); + cal.set(YEAR, 2003); + long t = cal.getTime().getTime(); + + // For the time calculation, the MONTH and DAY_OF_MONTH fields + // (with the default values) have been used for determining + // the date. However, both the MONTH and DAY_OF_MONTH fields + // should be kept UNSET after the time calculation. + if (cal.isSet(MONTH) || cal.isSet(DAY_OF_MONTH)) { + throw new RuntimeException("After getTime(): MONTH field=" + cal.isSet(MONTH) + + ", DAY_OF_MONTH field=" + cal.isSet(DAY_OF_MONTH)); + } + + // After calling get() for any field, all field values are + // recalculated and their field states are set to + // COMPUTED. isSet() must return true. + int y = cal.get(YEAR); + if (!(cal.isSet(MONTH) && cal.isSet(DAY_OF_MONTH))) { + throw new RuntimeException("After get(): MONTH field=" + cal.isSet(MONTH) + + ", DAY_OF_MONTH field=" + cal.isSet(DAY_OF_MONTH)); + } + } +} diff --git a/jdk/test/java/util/Calendar/Bug4958050.java b/jdk/test/java/util/Calendar/Bug4958050.java new file mode 100644 index 00000000000..dfd627cda6f --- /dev/null +++ b/jdk/test/java/util/Calendar/Bug4958050.java @@ -0,0 +1,255 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4958050 + * @summary Make sure that add() and roll() handle time zone offset changes (both raw and DST) correctly. + */ + +import java.util.Locale; +import java.util.TimeZone; +import static java.util.Calendar.*; + +public class Bug4958050 { + static int errorCount = 0; + + public static void main(String[] args) { + // All the test cases depend on historical GMT offset changes + // of Asia/Novosibirsk. + Koyomi cal = new Koyomi(TimeZone.getTimeZone("Asia/Novosibirsk"), Locale.US); + System.out.println("Time zone = " + cal.getTimeZone().getID()); + + // Test the week fields + int[] weekFields = { WEEK_OF_YEAR, WEEK_OF_MONTH, DAY_OF_WEEK_IN_MONTH }; + for (int i = 0; i < weekFields.length; i++) { + int field = weekFields[i]; + // add() + cal.clear(); + cal.set(1919, DECEMBER, 14-7, 23, 50, 00); + cal.add(weekFields[i], +1); + if (!cal.checkDate(1919, DECEMBER, 14)) { + error("1919/12/07: add("+cal.getFieldName(weekFields[i])+", +1)\n" + + cal.getMessage()+" " + cal.toDateTimeString()); + } + cal.clear(); + cal.set(1930, JUNE, 21-7); + cal.add(weekFields[i], +1); + if (!cal.checkDateTime(1930, JUNE, 21, 01, 00, 00, 000)) { + error("1930/6/14: add("+cal.getFieldName(weekFields[i])+", +1)\n" + + cal.getMessage()+" " + cal.toDateTimeString()); + } + + // roll() + cal.clear(); + cal.set(1919, DECEMBER, 14-7, 23, 50, 00); + cal.roll(weekFields[i], +1); + if (!cal.checkDate(1919, DECEMBER, 14)) { + error("1919/12/07: roll("+cal.getFieldName(weekFields[i])+", +1)\n" + + cal.getMessage()+" " + cal.toDateTimeString()); + } + cal.clear(); + cal.set(1930, JUNE, 21-7); + cal.roll(weekFields[i], +1); + if (!cal.checkDateTime(1930, JUNE, 21, 01, 00, 00, 000)) { + error("1930/6/14: roll("+cal.getFieldName(weekFields[i])+", +1)\n" + + cal.getMessage()+" " + cal.toDateTimeString()); + } + } + + // Test the day fields + int[] dayFields = { DAY_OF_MONTH, DAY_OF_YEAR, DAY_OF_WEEK }; + for (int i = 0; i < dayFields.length; i++) { + int field = dayFields[i]; + // add() + cal.clear(); + cal.set(1919, DECEMBER, 14-1, 23, 50, 00); + cal.add(field, +1); + if (!cal.checkDate(1919, DECEMBER, 14)) { + error("1919/12/13: add("+cal.getFieldName(field)+", +1)\n" + + cal.getMessage()+" " + cal.toDateTimeString()); + } + cal.clear(); + cal.set(1919, DECEMBER, 14, 00, 00, 00); + cal.add(field, -1); + if (!cal.checkDate(1919, DECEMBER, 13)) { + error("1919/12/14: add("+cal.getFieldName(field)+", -1)\n" + + cal.getMessage()+" " + cal.toDateTimeString()); + } + cal.clear(); + cal.set(1930, JUNE, 21-1); + cal.add(field, +1); + if (!cal.checkDateTime(1930, JUNE, 21, 01, 00, 00, 000)) { + error("1930/6/20: add("+cal.getFieldName(field)+", +1)\n" + + cal.getMessage() + cal.toDateTimeString()); + } + cal.clear(); + cal.set(1930, JUNE, 21, 01, 00, 00); + cal.add(field, -1); + if (!cal.checkDateTime(1930, JUNE, 20, 01, 00, 00, 000)) { + error("1930/6/21: add("+cal.getFieldName(field)+", -1)\n" + + cal.getMessage()+" " + cal.toDateTimeString()); + } + + // roll() + cal.clear(); + cal.set(1930, JUNE, 21-1); + int amount = +1; + if (field == DAY_OF_WEEK) { + amount += 700; + } + cal.roll(field, amount); + if (!cal.checkDateTime(1930, JUNE, 21, 01, 00, 00, 000)) { + error("1930/6/20: roll("+cal.getFieldName(field)+", +"+amount+")\n" + + cal.getMessage() + " " + cal.toDateTimeString()); + } + cal.clear(); + cal.set(1930, JUNE, 21, 01, 00, 00); + amount = -1; + if (field == DAY_OF_WEEK) { + amount -= 700; + } + cal.roll(field, amount); + if (!cal.checkDateTime(1930, JUNE, 20, 01, 00, 00, 000)) { + error("1930/6/21: roll("+cal.getFieldName(field)+", "+amount+")\n" + + cal.getMessage()+" "+cal.toDateTimeString()); + } + } + + // Test the AM_PM field + // add() + cal.clear(); + cal.set(1919, DECEMBER, 14-1, 23, 50, 00); + cal.add(AM_PM, +1); + if (!cal.checkDate(1919, DECEMBER, 14) + || !cal.checkFieldValue(AM_PM, AM)) { + error("1919/12/13: add(AM_PM, +1)\n" + + cal.getMessage()+" "+cal.toDateTimeString()); + } + + cal.clear(); + cal.set(1930, JUNE, 21-1, 12, 00, 00); + cal.add(AM_PM, +1); + if (!cal.checkDate(1930, JUNE, 21) + || !cal.checkFieldValue(AM_PM, AM)) { + error("1930/6/20: add(AM_PM, +1)\n" + + cal.getMessage()+" "+cal.toDateTimeString()); + } + + cal.clear(); + cal.set(1930, JUNE, 21-2, 12, 00, 00); + cal.add(AM_PM, +3); + if (!cal.checkDate(1930, JUNE, 21) + || !cal.checkFieldValue(AM_PM, AM)) { + error("1930/6/10: add(AM_PM, +3)\n" + + cal.getMessage()+" "+cal.toDateTimeString()); + } + + cal.clear(); + cal.set(1919, DECEMBER, 14, 11, 50, 00); + cal.add(AM_PM, -1); + if (!cal.checkDateTime(1919, DECEMBER, 14-1, 23, 50, 00, 000) + || !cal.checkFieldValue(AM_PM, PM)) { + error("1919/12/14 11:50:00: add(AM_PM, -1)\n" + + cal.getMessage()+" "+cal.toDateTimeString()); + } + + cal.clear(); + cal.set(1930, JUNE, 21, 01, 00, 00); + cal.add(AM_PM, -1); + if (!cal.checkDateTime(1930, JUNE, 21-1, 01+12, 00, 00, 000) + || !cal.checkFieldValue(AM_PM, PM)) { + error("1930/6/20: add(AM_PM, -1)\n" + + cal.getMessage()+" "+cal.toDateTimeString()); + } + + cal.clear(); + cal.set(1930, JUNE, 21, 01, 00, 00); + cal.add(AM_PM, -3); + if (!cal.checkDateTime(1930, JUNE, 21-2, 01+12, 00, 00, 000) + || !cal.checkFieldValue(AM_PM, PM)) { + error("1930/6/10: add(AM_PM, -3)\n" + + cal.getMessage()+" "+cal.toDateTimeString()); + } + + // roll() (should NOT change the date) + cal.clear(); + cal.set(1919, DECEMBER, 14-1, 23, 50, 00); + cal.roll(AM_PM, +1); + if (!cal.checkDateTime(1919, DECEMBER, 14-1, 23-12, 50, 00, 000) + || !cal.checkFieldValue(AM_PM, AM)) { + error("1919/12/13: roll(AM_PM, +1)\n" + + cal.getMessage()+" "+cal.toDateTimeString()); + } + + cal.clear(); + cal.set(1930, JUNE, 21-1, 12, 00, 00); + cal.roll(AM_PM, +1); + if (!cal.checkDateTime(1930, JUNE, 21-1, 12-12, 00, 00, 000) + || !cal.checkFieldValue(AM_PM, AM)) { + error("1930/6/20: roll(AM_PM, +1)\n" + + cal.getMessage()+" "+cal.toDateTimeString()); + } + + cal.clear(); + cal.set(1930, JUNE, 21-2, 12, 00, 00); + cal.roll(AM_PM, +3); + if (!cal.checkDateTime(1930, JUNE, 21-2, 12-12, 00, 00, 000) + || !cal.checkFieldValue(AM_PM, AM)) { + error("1930/6/10: roll(AM_PM, +3)\n" + + cal.getMessage()+" "+cal.toDateTimeString()); + } + + // Test the HOUR_OF_DAY field + // add() + cal.clear(); + cal.set(1930, JUNE, 20, 23, 00, 00); + cal.add(HOUR_OF_DAY, +1); + if (!cal.checkDateTime(1930, JUNE, 21, 01, 00, 00, 000)) { + error("1930/6/20 23:00:00: add(HOUR_OF_DAY, +1)\n" + + cal.getMessage()+" "+cal.toDateTimeString()); + } + + // roll() (should NOT change the date) + cal.clear(); + cal.set(1930, JUNE, 20, 23, 00, 00); + cal.roll(HOUR_OF_DAY, +1); + if (!cal.checkDateTime(1930, JUNE, 20, 00, 00, 00, 000)) { + error("1930/6/20 23:00:00: roll(HOUR_OF_DAY, +1)\n" + + cal.getMessage()+" "+cal.toDateTimeString()); + } + + checkErrors(); + } + + static void error(String s) { + System.out.println(s); + errorCount++; + } + + static void checkErrors() { + if (errorCount > 0) { + throw new RuntimeException("Failed: " + errorCount + " error(s)"); + } + } +} diff --git a/jdk/test/java/util/Calendar/Bug5078053.java b/jdk/test/java/util/Calendar/Bug5078053.java new file mode 100644 index 00000000000..c6bb25bcf82 --- /dev/null +++ b/jdk/test/java/util/Calendar/Bug5078053.java @@ -0,0 +1,100 @@ +/* + * Copyright (c) 2004, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 5078053 + * @summary Make sure that Calendar.complete() normalizes stamp[] to + * COMPUTED. This can be observed through add() and roll(). + */ + +import java.util.TimeZone; +import static java.util.Calendar.*; + +public class Bug5078053 { + static int errorCount = 0; + + public static void main(String[] args) { + TimeZone defaultTz = TimeZone.getDefault(); + + try { + TimeZone tz = TimeZone.getTimeZone("Australia/Adelaide"); + TimeZone.setDefault(tz); + Koyomi cal = new Koyomi(); + cal.setFirstDayOfWeek(2); + cal.setMinimalDaysInFirstWeek(4); + + // test roll() + cal.clear(); + // 2002-01-01T00:00:00 in Australia/Adelaide + cal.setTimeInMillis(1009805400000L); + System.out.println(cal.getTime()); + // The following set calls shouldn't affect roll() and add() + cal.set(DAY_OF_WEEK, cal.get(DAY_OF_WEEK)); + cal.set(WEEK_OF_YEAR, cal.get(WEEK_OF_YEAR)); + cal.getTime(); + cal.roll(MONTH, +1); + System.out.println("roll: " + cal.getTime()); + if (!cal.checkDate(2002, FEBRUARY, 1)) { + error("roll(MONTH, +1): " + cal.getMessage()); + } + cal.roll(MONTH, -1); + if (!cal.checkDate(2002, JANUARY, 1)) { + error("roll(MONTH, -1): " + cal.getMessage()); + } + + // test add() + cal.clear(); + // 2002-01-01T00:00:00+0930 in Australia/Adelaide + cal.setTimeInMillis(1009805400000L); + cal.set(DAY_OF_WEEK, cal.get(DAY_OF_WEEK)); + cal.set(WEEK_OF_YEAR, cal.get(WEEK_OF_YEAR)); + cal.getTime(); + cal.add(MONTH, +1); + System.out.println(" add: " + cal.getTime()); + if (!cal.checkDate(2002, FEBRUARY, 1)) { + error("add(MONTH, +1): " + cal.getMessage()); + } + cal.add(MONTH, -1); + if (!cal.checkDate(2002, JANUARY, 1)) { + error("add(MONTH, -1): " + cal.getMessage()); + } + } + finally { + TimeZone.setDefault(defaultTz); + } + + checkErrors(); + } + + static void error(String s) { + System.out.println(s); + errorCount++; + } + + static void checkErrors() { + if (errorCount > 0) { + throw new RuntimeException("Failed: " + errorCount + " error(s)"); + } + } +} diff --git a/jdk/test/java/util/Calendar/Bug6178071.java b/jdk/test/java/util/Calendar/Bug6178071.java new file mode 100644 index 00000000000..8d361c76bcb --- /dev/null +++ b/jdk/test/java/util/Calendar/Bug6178071.java @@ -0,0 +1,50 @@ +/* + * Copyright (c) 2005, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 6178071 6440854 + * @summary Make sure that setting HOUR right after a construction works + * as expected. + */ + +import java.util.GregorianCalendar; +import static java.util.Calendar.*; + +public class Bug6178071 { + public static void main(String[] args) { + GregorianCalendar cal = new GregorianCalendar(2004, JANUARY, 1); + cal.set(HOUR, 1); + if (cal.get(HOUR_OF_DAY) != 1 || + cal.get(HOUR) != 1 || cal.get(AM_PM) != AM) { + throw new RuntimeException("Unexpected hour of day: " + cal.getTime()); + } + + // Test case for 6440854 + GregorianCalendar gc = new GregorianCalendar(2006,5,16); + gc.setLenient(false); + gc.set(HOUR_OF_DAY, 10); + // The following line shouldn't throw an IllegalArgumentException. + gc.get(YEAR); + } +} diff --git a/jdk/test/java/util/Calendar/Bug6234795.java b/jdk/test/java/util/Calendar/Bug6234795.java new file mode 100644 index 00000000000..d1b2bc55c01 --- /dev/null +++ b/jdk/test/java/util/Calendar/Bug6234795.java @@ -0,0 +1,97 @@ +/* + * Copyright (c) 2005, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 6234795 + * @summary Rolling of HOUR or HOUR_OF_SET must set the other hour field. + */ + +import java.util.GregorianCalendar; +import static java.util.Calendar.AM; +import static java.util.Calendar.AM_PM; +import static java.util.Calendar.HOUR; +import static java.util.Calendar.HOUR_OF_DAY; +import static java.util.Calendar.SEPTEMBER; +import java.util.Locale; +import java.util.TimeZone; + +public class Bug6234795 { + public static void main(String[] args) { + testRoll(HOUR); + testRoll(HOUR_OF_DAY); + } + + static void testRoll(int field) { + GregorianCalendar cal = new GregorianCalendar(TimeZone.getTimeZone("GMT"), Locale.US); + cal.clear(); + cal.set(2005, SEPTEMBER, 12); + + int otherField = (field == HOUR) ? HOUR_OF_DAY : HOUR; + int unit = (field == HOUR) ? 12 : 24; + int h; + for (h = 0; h <= 72; h++) { + int hour = cal.get(otherField); + int expected = h % 12; + if (hour != expected) { + throw new RuntimeException((field == HOUR ? "HOUR" : "HOUR_OF_DAY") + + "+: h=" + h + ", got " + hour + + ", expected " + expected); + } + if (field == HOUR_OF_DAY) { + int ampm = cal.get(AM_PM); + expected = (h % unit) / 12; + if (ampm != expected) { + throw new RuntimeException((field == HOUR ? "HOUR" : "HOUR_OF_DAY") + + "+: h=" + h + ", got " + + toString(ampm) + + ", expected " + toString(expected)); + } + } + cal.roll(field, +1); + } + for (; h >= 0; h--) { + int hour = cal.get(otherField); + int expected = h % 12; + if (hour != expected) { + throw new RuntimeException((field == HOUR ? "HOUR" : "HOUR_OF_DAY") + + "-: h=" + h + ", got " + hour + + ", expected " + expected); + } + if (field == HOUR_OF_DAY) { + int ampm = cal.get(AM_PM); + expected = (h % unit) / 12; + if (ampm != expected) { + throw new RuntimeException((field == HOUR ? "HOUR" : "HOUR_OF_DAY") + + "-: h=" + h + ", got " + toString(ampm) + + ", expected " + toString(expected)); + } + } + cal.roll(field, -1); + } + } + + static String toString(int ampm) { + return ampm == AM ? "AM" : "PM"; + } +} diff --git a/jdk/test/java/util/Calendar/Bug6448234.java b/jdk/test/java/util/Calendar/Bug6448234.java new file mode 100644 index 00000000000..16cf0fca1c4 --- /dev/null +++ b/jdk/test/java/util/Calendar/Bug6448234.java @@ -0,0 +1,58 @@ +/* + * Copyright (c) 2006, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 6448234 + * @summary Make sure indexing of DAY_OF_WEEK is correct in JapaneseImperialCalendar.getDisplayName. + */ + +import java.util.Calendar; +import java.util.Locale; +import static java.util.Calendar.*; + +public class Bug6448234 { + public static void main(String[] args) { + Calendar jcal = Calendar.getInstance(new Locale("ja", "JP", "JP")); + Calendar gcal = Calendar.getInstance(Locale.US); + + for (int i = SUNDAY; i <= SATURDAY; i++) { + jcal.set(DAY_OF_WEEK, i); + gcal.set(DAY_OF_WEEK, i); + + // Test LONG + String j = jcal.getDisplayName(DAY_OF_WEEK, LONG, Locale.US); + String g = gcal.getDisplayName(DAY_OF_WEEK, LONG, Locale.US); + if (!j.equals(g)) { + throw new RuntimeException("Got " + j + ", expected " + g); + } + + // Test SHORT + j = jcal.getDisplayName(DAY_OF_WEEK, SHORT, Locale.US); + g = gcal.getDisplayName(DAY_OF_WEEK, SHORT, Locale.US); + if (!j.equals(g)) { + throw new RuntimeException("Got " + j + ", expected " + g); + } + } + } +} diff --git a/jdk/test/java/util/Calendar/CalendarLimitTest.java b/jdk/test/java/util/Calendar/CalendarLimitTest.java new file mode 100644 index 00000000000..69dcbb5efcf --- /dev/null +++ b/jdk/test/java/util/Calendar/CalendarLimitTest.java @@ -0,0 +1,202 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4033662 + * @library /java/text/testlib + * @summary test for limit on Calendar + * @run main CalendarLimitTest -verbose + */ + +import java.util.*; +import java.text.*; + +/** + * This test verifies the behavior of Calendar around the very earliest limits + * which it can handle. It also verifies the behavior for large values of millis. + * + * Note: There used to be a limit, due to a bug, for early times. There is + * currently no limit. + * + * March 17, 1998: Added code to make sure big + dates are big + AD years, and + * big - dates are big + BC years. + */ +public class CalendarLimitTest extends IntlTest +{ + // This number determined empirically; this is the old limit, + // which we test for to make sure it isn't there anymore. + static final long EARLIEST_SUPPORTED_MILLIS = -210993120000000L; + + static final int EPOCH_JULIAN_DAY = 2440588; // Jaunary 1, 1970 (Gregorian) + static final int JAN_1_1_JULIAN_DAY = 1721426; // January 1, year 1 (Gregorian) + + // Useful millisecond constants + static final int ONE_SECOND = 1000; + static final int ONE_MINUTE = 60*ONE_SECOND; + static final int ONE_HOUR = 60*ONE_MINUTE; + static final int ONE_DAY = 24*ONE_HOUR; + static final int ONE_WEEK = 7*ONE_DAY; + static final long ONE_YEAR = (long)(365.2425 * ONE_DAY); + + static long ORIGIN; // This is the *approximate* point at which BC switches to AD + + public static void main(String argv[]) throws Exception { + new CalendarLimitTest().run(argv); + } + + /** + * Converts Julian day to time as milliseconds. + * @param julian the given Julian day number. + * @return time as milliseconds. + */ + private static final long julianDayToMillis(long julian) { + return (julian - EPOCH_JULIAN_DAY) * ONE_DAY; + } + + /** + * Verify that the given time is processed without problem. + * @return the adjust year, with 0 = 1 BC, -1 = 2 BC, etc. + */ + int test(long millis, Calendar cal, DateFormat fmt) + { + Exception exception = null; + String theDate = ""; + try { + Date d= new Date(millis); + cal.setTime(d); + theDate = fmt.format(d); + } + catch (IllegalArgumentException e) { + exception = e; + } + String s = "0x" + Long.toHexString(millis) + " " + theDate; + + int era=cal.get(Calendar.ERA), year=cal.get(Calendar.YEAR), + dom=cal.get(Calendar.DATE), mon=cal.get(Calendar.MONTH); + + cal.clear(); + cal.set(year, mon, dom); + cal.set(Calendar.ERA, era); + Date rt = cal.getTime(); + + boolean ok = true; + if (exception != null) { + errln("FAIL: Exception " + s); + ok = false; + } + if (((millis >= ORIGIN) && (era != GregorianCalendar.AD)) || + ((millis < ORIGIN) && (era != GregorianCalendar.BC)) || + (year < 1)) { + errln("FAIL: Bad year/era " + s); + ok = false; + } + if (dom<1 || dom>31) { + errln("FAIL: Bad DOM " + s); + ok = false; + } + if (Math.abs(millis - rt.getTime()) > ONE_DAY) { + errln("FAIL: RT fail " + s + " -> 0x" + + Long.toHexString(rt.getTime()) + " " + + fmt.format(rt)); + ok = false; + } + if (ok) logln(s); + if (era==GregorianCalendar.BC) year = 1-year; + return year; + } + + public void TestCalendarLimit() + { + ORIGIN = julianDayToMillis(JAN_1_1_JULIAN_DAY); + + Calendar cal = Calendar.getInstance(); + // You must set the time zone to GMT+0 or the edge cases like + // Long.MIN_VALUE, Long.MAX_VALUE, and right around the threshold + // won't work, since before converting to fields the calendar code + // will add the offset for the zone. + cal.setTimeZone(TimeZone.getTimeZone("Africa/Casablanca")); + + DateFormat dateFormat = DateFormat.getDateInstance(); + dateFormat.setCalendar(cal); // Make sure you do this -- same reason as above + ((SimpleDateFormat)dateFormat).applyPattern("MMM d, yyyy G"); + + // Don't expect any failure for positive longs + int lastYear=0; + boolean first=true; + for (long m = Long.MAX_VALUE; m > 0; m >>= 1) + { + int y = test(m, cal, dateFormat); + if (!first && y > lastYear) + errln("FAIL: Years should be decreasing " + lastYear + " " + y); + first = false; + lastYear = y; + } + + // Expect failures for negative millis below threshold + first = true; + for (long m = Long.MIN_VALUE; m < 0; m /= 2) // Don't use m >>= 1 + { + int y = test(m, cal, dateFormat); + if (!first && y < lastYear) + errln("FAIL: Years should be increasing " + lastYear + " " + y); + first = false; + lastYear = y; + } + + // Test right around the threshold + test(EARLIEST_SUPPORTED_MILLIS, cal, dateFormat); + test(EARLIEST_SUPPORTED_MILLIS-1, cal, dateFormat); + + // Test a date that should work + test(Long.MIN_VALUE + ONE_DAY, cal, dateFormat); + + // Try hours in the earliest day or two + // JUST FOR DEBUGGING: + if (false) { + ((SimpleDateFormat)dateFormat).applyPattern("H:mm MMM d, yyyy G"); + for (int dom=2; dom<=3; ++dom) { + for (int h=0; h<24; ++h) { + cal.clear(); + cal.set(Calendar.ERA, GregorianCalendar.BC); + cal.set(292269055, Calendar.DECEMBER, dom, h, 0); + Date d = cal.getTime(); + cal.setTime(d); + logln("" + h + ":00 Dec "+dom+", 292269055 BC -> " + + Long.toHexString(d.getTime()) + " -> " + + dateFormat.format(cal.getTime())); + } + } + // Other way + long t = 0x80000000018c5c00L; // Dec 3, 292269055 BC + while (t<0) { + cal.setTime(new Date(t)); + logln("0x" + Long.toHexString(t) + " -> " + + dateFormat.format(cal.getTime())); + t -= ONE_HOUR; + } + } + } +} + +//eof diff --git a/jdk/test/java/util/Calendar/CalendarRegression.java b/jdk/test/java/util/Calendar/CalendarRegression.java new file mode 100644 index 00000000000..baae13f14fd --- /dev/null +++ b/jdk/test/java/util/Calendar/CalendarRegression.java @@ -0,0 +1,2496 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4031502 4035301 4040996 4051765 4059654 4061476 4070502 4071197 4071385 + * 4073929 4083167 4086724 4092362 4095407 4096231 4096539 4100311 4103271 + * 4106136 4108764 4114578 4118384 4125881 4125892 4136399 4141665 4142933 + * 4145158 4145983 4147269 4149677 4162587 4165343 4166109 4167060 4173516 + * 4174361 4177484 4197699 4209071 4288792 4328747 4413980 4546637 4623997 + * 4685354 4655637 4683492 4080631 4080631 4167995 4340146 4639407 + * 4652815 4652830 4740554 4936355 4738710 4633646 4846659 4822110 4960642 + * 4973919 4980088 4965624 5013094 5006864 8152077 + * @library /java/text/testlib + */ + +import java.lang.reflect.*; +import java.io.*; +import java.util.*; +import java.text.*; + +public class CalendarRegression extends IntlTest { + + public static void main(String[] args) throws Exception { + new CalendarRegression().run(args); + } + + /* + Synopsis: java.sql.Timestamp constructor works wrong on Windows 95 + + ==== Here is the test ==== + public static void main (String args[]) { + java.sql.Timestamp t= new java.sql.Timestamp(0,15,5,5,8,13,123456700); + logln("expected=1901-04-05 05:08:13.1234567"); + logln(" result="+t); + } + + ==== Here is the output of the test on Solaris or NT ==== + expected=1901-04-05 05:08:13.1234567 + result=1901-04-05 05:08:13.1234567 + + ==== Here is the output of the test on Windows95 ==== + expected=1901-04-05 05:08:13.1234567 + result=1901-04-05 06:08:13.1234567 + */ + + public void Test4031502() { + // This bug actually occurs on Windows NT as well, and doesn't + // require the host zone to be set; it can be set in Java. + String[] ids = TimeZone.getAvailableIDs(); + boolean bad = false; + for (int i=0; i + * @param date The date to start from + */ + public static Date getAssociatedDate(Date d) { + GregorianCalendar cal = new GregorianCalendar(); + cal.setTime(d); + //cal.add(field, amount); //<-- PROBLEM SEEN WITH field = DATE,MONTH + // cal.getTime(); // <--- REMOVE THIS TO SEE BUG + while (true) { + int wd = cal.get(Calendar.DAY_OF_WEEK); + if (wd == Calendar.SATURDAY || wd == Calendar.SUNDAY) { + cal.add(Calendar.DATE, 1); + // cal.getTime(); + } + else + break; + } + return cal.getTime(); + } + + public void Test4071197() { + dowTest(false); + dowTest(true); + } + + void dowTest(boolean lenient) { + GregorianCalendar cal = new GregorianCalendar(); + cal.set(1997, Calendar.AUGUST, 12); // Wednesday + // cal.getTime(); // Force update + cal.setLenient(lenient); + cal.set(1996, Calendar.DECEMBER, 1); // Set the date to be December 1, 1996 + int dow = cal.get(Calendar.DAY_OF_WEEK); + int min = cal.getMinimum(Calendar.DAY_OF_WEEK); + int max = cal.getMaximum(Calendar.DAY_OF_WEEK); + logln(cal.getTime().toString()); + if (min != Calendar.SUNDAY || max != Calendar.SATURDAY) + errln("FAIL: Min/max bad"); + if (dow < min || dow > max) + errln("FAIL: Day of week " + dow + " out of range"); + if (dow != Calendar.SUNDAY) + errln("FAIL: Day of week should be SUNDAY Got " + dow); + } + + public void Test4071385() { + Calendar cal = Calendar.getInstance(); + cal.setTime(new Date(98, Calendar.JUNE, 24)); + cal.set(Calendar.MONTH, Calendar.NOVEMBER); // change a field + logln(cal.getTime().toString()); + if (!cal.getTime().equals(new Date(98, Calendar.NOVEMBER, 24))) + errln("Fail"); + } + + public void Test4073929() { + GregorianCalendar foo1 = new GregorianCalendar(1997, 8, 27); + foo1.add(Calendar.DAY_OF_MONTH, +1); + int testyear = foo1.get(Calendar.YEAR); + int testmonth = foo1.get(Calendar.MONTH); + int testday = foo1.get(Calendar.DAY_OF_MONTH); + if (testyear != 1997 || + testmonth != 8 || + testday != 28) + errln("Fail: Calendar not initialized"); + } + + public void Test4083167() { + TimeZone saveZone = TimeZone.getDefault(); + try { + TimeZone.setDefault(TimeZone.getTimeZone("UTC")); + Date firstDate = new Date(); + Calendar cal = new GregorianCalendar(); + cal.setTime(firstDate); + long firstMillisInDay = cal.get(Calendar.HOUR_OF_DAY) * 3600000L + + cal.get(Calendar.MINUTE) * 60000L + + cal.get(Calendar.SECOND) * 1000L + + cal.get(Calendar.MILLISECOND); + + logln("Current time: " + firstDate.toString()); + + for (int validity=0; validity<30; validity++) { + Date lastDate = new Date(firstDate.getTime() + + (long)validity*1000*24*60*60); + cal.setTime(lastDate); + long millisInDay = cal.get(Calendar.HOUR_OF_DAY) * 3600000L + + cal.get(Calendar.MINUTE) * 60000L + + cal.get(Calendar.SECOND) * 1000L + + cal.get(Calendar.MILLISECOND); + if (firstMillisInDay != millisInDay) { + errln("Day has shifted " + lastDate); + } + } + } + finally { + TimeZone.setDefault(saveZone); + } + } + + public void Test4086724() { + SimpleDateFormat date; + TimeZone saveZone = TimeZone.getDefault(); + Locale saveLocale = Locale.getDefault(); + + String summerTime = "British Summer Time"; + String standardTime = "Greenwich Mean Time"; + try { + Locale.setDefault(Locale.UK); + TimeZone.setDefault(TimeZone.getTimeZone("Europe/London")); + date = new SimpleDateFormat("zzzz"); + + Calendar cal=Calendar.getInstance(); + cal.set(1997,Calendar.SEPTEMBER,30); + Date now=cal.getTime(); + String formattedDate = date.format(now); + if (!formattedDate.equals(summerTime)) { + errln("Wrong display name \"" + formattedDate + + "\" for <" + now + ">"); + } + int weekOfYear = cal.get(Calendar.WEEK_OF_YEAR); + if (weekOfYear != 40) { + errln("Wrong week-of-year " + weekOfYear + + " for <" + now + ">"); + } + + cal.set(1996,Calendar.DECEMBER,31); + now=cal.getTime(); + formattedDate = date.format(now); + if (!formattedDate.equals(standardTime)) { + errln("Wrong display name \"" + formattedDate + + "\" for <" + now + ">"); + } + weekOfYear = cal.get(Calendar.WEEK_OF_YEAR); + if (weekOfYear != 1) { + errln("Wrong week-of-year " + weekOfYear + + " for <" + now + ">"); + } + + cal.set(1997,Calendar.JANUARY,1); + now=cal.getTime(); + formattedDate = date.format(now); + if (!formattedDate.equals(standardTime)) { + errln("Wrong display name \"" + formattedDate + + "\" for <" + now + ">"); + } + weekOfYear = cal.get(Calendar.WEEK_OF_YEAR); + if (weekOfYear != 1) { + errln("Wrong week-of-year " + weekOfYear + + " for <" + now + ">"); + } + + cal.set(1997,Calendar.JANUARY,8); + now=cal.getTime(); + formattedDate = date.format(now); + if (!formattedDate.equals(standardTime)) { + errln("Wrong display name \"" + formattedDate + + "\" for <" + now + ">"); + } + weekOfYear = cal.get(Calendar.WEEK_OF_YEAR); + if (weekOfYear != 2) { + errln("Wrong week-of-year " + weekOfYear + + " for <" + now + ">"); + } + + } + finally { + Locale.setDefault(saveLocale); + TimeZone.setDefault(saveZone); + } + } + + public void Test4092362() { + GregorianCalendar cal1 = new GregorianCalendar(1997, 10, 11, 10, 20, 40); + /*cal1.set( Calendar.YEAR, 1997 ); + cal1.set( Calendar.MONTH, 10 ); + cal1.set( Calendar.DATE, 11 ); + cal1.set( Calendar.HOUR, 10 ); + cal1.set( Calendar.MINUTE, 20 ); + cal1.set( Calendar.SECOND, 40 ); */ + + logln( " Cal1 = " + cal1.getTime().getTime() ); + logln( " Cal1 time in ms = " + cal1.get(Calendar.MILLISECOND) ); + for( int k = 0; k < 100 ; k++ ); + + GregorianCalendar cal2 = new GregorianCalendar(1997, 10, 11, 10, 20, 40); + /*cal2.set( Calendar.YEAR, 1997 ); + cal2.set( Calendar.MONTH, 10 ); + cal2.set( Calendar.DATE, 11 ); + cal2.set( Calendar.HOUR, 10 ); + cal2.set( Calendar.MINUTE, 20 ); + cal2.set( Calendar.SECOND, 40 ); */ + + logln( " Cal2 = " + cal2.getTime().getTime() ); + logln( " Cal2 time in ms = " + cal2.get(Calendar.MILLISECOND) ); + if( !cal1.equals( cal2 ) ) + errln("Fail: Milliseconds randomized"); + } + + public void Test4095407() { + GregorianCalendar a = new GregorianCalendar(1997,Calendar.NOVEMBER, 13); + int dow = a.get(Calendar.DAY_OF_WEEK); + if (dow != Calendar.THURSDAY) + errln("Fail: Want THURSDAY Got " + dow); + } + + public void Test4096231() { + TimeZone GMT = TimeZone.getTimeZone("GMT"); + TimeZone PST = TimeZone.getTimeZone("PST"); + int sec = 0, min = 0, hr = 0, day = 1, month = 10, year = 1997; + + Calendar cal1 = new GregorianCalendar(PST); + cal1.setTime(new Date(880698639000L)); + int p; + logln("PST 1 is: " + (p=cal1.get(cal1.HOUR_OF_DAY))); + cal1.setTimeZone(GMT); + // Issue 1: Changing the timezone doesn't change the + // represented time. + int h1,h2; + logln("GMT 1 is: " + (h1=cal1.get(cal1.HOUR_OF_DAY))); + cal1.setTime(new Date(880698639000L)); + logln("GMT 2 is: " + (h2=cal1.get(cal1.HOUR_OF_DAY))); + // Note: This test had a bug in it. It wanted h1!=h2, when + // what was meant was h1!=p. Fixed this concurrent with fix + // to 4177484. + if (p == h1 || h1 != h2) + errln("Fail: Hour same in different zones"); + + Calendar cal2 = new GregorianCalendar(GMT); + Calendar cal3 = new GregorianCalendar(PST); + cal2.set(Calendar.MILLISECOND, 0); + cal3.set(Calendar.MILLISECOND, 0); + + cal2.set(cal1.get(cal1.YEAR), + cal1.get(cal1.MONTH), + cal1.get(cal1.DAY_OF_MONTH), + cal1.get(cal1.HOUR_OF_DAY), + cal1.get(cal1.MINUTE), + cal1.get(cal1.SECOND)); + + long t1,t2,t3,t4; + logln("RGMT 1 is: " + (t1=cal2.getTime().getTime())); + cal3.set(year, month, day, hr, min, sec); + logln("RPST 1 is: " + (t2=cal3.getTime().getTime())); + cal3.setTimeZone(GMT); + logln("RGMT 2 is: " + (t3=cal3.getTime().getTime())); + cal3.set(cal1.get(cal1.YEAR), + cal1.get(cal1.MONTH), + cal1.get(cal1.DAY_OF_MONTH), + cal1.get(cal1.HOUR_OF_DAY), + cal1.get(cal1.MINUTE), + cal1.get(cal1.SECOND)); + // Issue 2: Calendar continues to use the timezone in its + // constructor for set() conversions, regardless + // of calls to setTimeZone() + logln("RGMT 3 is: " + (t4=cal3.getTime().getTime())); + if (t1 == t2 || + t1 != t4 || + t2 != t3) + errln("Fail: Calendar zone behavior faulty"); + } + + public void Test4096539() { + int[] y = {31,28,31,30,31,30,31,31,30,31,30,31}; + + for (int x=0;x<12;x++) { + GregorianCalendar gc = new + GregorianCalendar(1997,x,y[x]); + int m1,m2; + log((m1=gc.get(Calendar.MONTH)+1)+"/"+ + gc.get(Calendar.DATE)+"/"+gc.get(Calendar.YEAR)+ + " + 1mo = "); + + gc.add(Calendar.MONTH, 1); + logln((m2=gc.get(Calendar.MONTH)+1)+"/"+ + gc.get(Calendar.DATE)+"/"+gc.get(Calendar.YEAR) + ); + int m = (m1 % 12) + 1; + if (m2 != m) + errln("Fail: Want " + m + " Got " + m2); + } + + } + + public void Test4100311() { + GregorianCalendar cal = (GregorianCalendar)Calendar.getInstance(); + cal.set(Calendar.YEAR, 1997); + cal.set(Calendar.DAY_OF_YEAR, 1); + Date d = cal.getTime(); // Should be Jan 1 + logln(d.toString()); + if (cal.get(Calendar.DAY_OF_YEAR) != 1) + errln("Fail: DAY_OF_YEAR not set"); + } + + public void Test4103271() { + if (Locale.getDefault().equals(new Locale("th", "TH"))) { + return; + } + + SimpleDateFormat sdf = new SimpleDateFormat(); + int numYears=40, startYear=1997, numDays=15; + String output, testDesc; + GregorianCalendar testCal = (GregorianCalendar)Calendar.getInstance(); + testCal.clear(); + sdf.setCalendar(testCal); + sdf.applyPattern("d MMM yyyy"); + boolean fail = false; + for (int firstDay=1; firstDay<=2; firstDay++) { + for (int minDays=1; minDays<=7; minDays++) { + testCal.setMinimalDaysInFirstWeek(minDays); + testCal.setFirstDayOfWeek(firstDay); + testDesc = ("Test" + String.valueOf(firstDay) + String.valueOf(minDays)); + logln(testDesc + " => 1st day of week=" + + String.valueOf(firstDay) + + ", minimum days in first week=" + + String.valueOf(minDays)); + for (int j=startYear; j<=startYear+numYears; j++) { + testCal.set(j,11,25); + for(int i=0; i 53) { + Date d = testCal.getTime(); + calWOY = String.valueOf(actWOY); + output = testDesc + " - " + sdf.format(d) + "\t"; + output = output + "\t" + calWOY; + logln(output); + fail = true; + } + } + } + } + } + + int[] DATA = { + 3, 52, 52, 52, 52, 52, 52, 52, + 1, 1, 1, 1, 1, 1, 1, + 2, 2, 2, 2, 2, 2, 2, + 4, 52, 52, 52, 52, 52, 52, 52, + 53, 53, 53, 53, 53, 53, 53, + 1, 1, 1, 1, 1, 1, 1, + }; + testCal.setFirstDayOfWeek(Calendar.SUNDAY); + for (int j=0; j " + testCal.getTime()); + if (!after.equals(testCal.getTime())) { + logln("\tFAIL\n\t\texp: " + after); + fail = true; + } else + logln(" OK"); + + testCal.setTime(after); + if (ADDROLL[i] == ADD) + testCal.add(Calendar.WEEK_OF_YEAR, -amount); + else + testCal.roll(Calendar.WEEK_OF_YEAR, -amount); + log((ADDROLL[i]==ADD ? "add(WOY," : "roll(WOY,") + + (-amount) + ") " + after + + "\n\t\t => " + testCal.getTime()); + if (!before.equals(testCal.getTime())) { + logln("\tFAIL\n\t\texp: " + before); + fail = true; + } + else logln("\tOK"); + } + + if (fail) { + errln("Fail: Week of year misbehaving"); + } + } + + public void Test4106136() { + Locale saveLocale = Locale.getDefault(); + try { + Locale[] locales = { Locale.CHINESE, Locale.CHINA }; + for (int i=0; i maxYear) { + errln("Failed for "+DATES[i].getTime()+" ms: year=" + + year + ", maxYear=" + maxYear); + } + } + } + + /** + * This is a bug in the validation code of GregorianCalendar. As reported, + * the bug seems worse than it really is, due to a bug in the way the bug + * report test was written. In reality the bug is restricted to the DAY_OF_YEAR + * field. - liu 6/29/98 + */ + public void Test4147269() { + final String[] fieldName = { + "ERA", + "YEAR", + "MONTH", + "WEEK_OF_YEAR", + "WEEK_OF_MONTH", + "DAY_OF_MONTH", + "DAY_OF_YEAR", + "DAY_OF_WEEK", + "DAY_OF_WEEK_IN_MONTH", + "AM_PM", + "HOUR", + "HOUR_OF_DAY", + "MINUTE", + "SECOND", + "MILLISECOND", + "ZONE_OFFSET", + "DST_OFFSET" + }; + GregorianCalendar calendar = new GregorianCalendar(); + calendar.setLenient(false); + Date date = new Date(1996-1900, Calendar.JANUARY, 3); // Arbitrary date + for (int field = 0; field < Calendar.FIELD_COUNT; field++) { + calendar.setTime(date); + // Note: In the bug report, getActualMaximum() was called instead + // of getMaximum() -- this was an error. The validation code doesn't + // use getActualMaximum(), since that's too costly. + int max = calendar.getMaximum(field); + int value = max+1; + calendar.set(field, value); + try { + calendar.getTime(); // Force time computation + // We expect an exception to be thrown. If we fall through + // to the next line, then we have a bug. + errln("Test failed with field " + fieldName[field] + + ", date before: " + date + + ", date after: " + calendar.getTime() + + ", value: " + value + " (max = " + max +")"); + } catch (IllegalArgumentException e) {} + } + } + + /** + * Reported bug is that a GregorianCalendar with a cutover of Date(Long.MAX_VALUE) + * doesn't behave as a pure Julian calendar. + * CANNOT REPRODUCE THIS BUG + */ + public void Test4149677() { + TimeZone[] zones = { TimeZone.getTimeZone("GMT"), + TimeZone.getTimeZone("PST"), + TimeZone.getTimeZone("EAT") }; + for (int i=0; i0) logln("---"); + + cal.clear(); + cal.set(1998, Calendar.APRIL, 5, i, 0); + d = cal.getTime(); + String s0 = d.toString(); + logln("0 " + i + ": " + s0); + + cal.clear(); + cal.set(1998, Calendar.APRIL, 4, i+24, 0); + d = cal.getTime(); + String sPlus = d.toString(); + logln("+ " + i + ": " + sPlus); + + cal.clear(); + cal.set(1998, Calendar.APRIL, 6, i-24, 0); + d = cal.getTime(); + String sMinus = d.toString(); + logln("- " + i + ": " + sMinus); + + if (!s0.equals(sPlus) || !s0.equals(sMinus)) { + errln("Fail: All three lines must match"); + } + } + } + finally { + TimeZone.setDefault(savedTz); + } + } + + /** + * Adding 12 months behaves differently from adding 1 year + */ + public void Test4165343() { + GregorianCalendar calendar = new GregorianCalendar(1996, Calendar.FEBRUARY, 29); + Date start = calendar.getTime(); + logln("init date: " + start); + calendar.add(Calendar.MONTH, 12); + Date date1 = calendar.getTime(); + logln("after adding 12 months: " + date1); + calendar.setTime(start); + calendar.add(Calendar.YEAR, 1); + Date date2 = calendar.getTime(); + logln("after adding one year : " + date2); + if (date1.equals(date2)) { + logln("Test passed"); + } else { + errln("Test failed"); + } + } + + /** + * GregorianCalendar.getActualMaximum() does not account for first day of week. + */ + public void Test4166109() { + /* Test month: + * + * March 1998 + * Su Mo Tu We Th Fr Sa + * 1 2 3 4 5 6 7 + * 8 9 10 11 12 13 14 + * 15 16 17 18 19 20 21 + * 22 23 24 25 26 27 28 + * 29 30 31 + */ + boolean passed = true; + int field = Calendar.WEEK_OF_MONTH; + + GregorianCalendar calendar = new GregorianCalendar(Locale.US); + calendar.set(1998, Calendar.MARCH, 1); + calendar.setMinimalDaysInFirstWeek(1); + logln("Date: " + calendar.getTime()); + + int firstInMonth = calendar.get(Calendar.DAY_OF_MONTH); + + for (int firstInWeek = Calendar.SUNDAY; firstInWeek <= Calendar.SATURDAY; firstInWeek++) { + calendar.setFirstDayOfWeek(firstInWeek); + int returned = calendar.getActualMaximum(field); + int expected = (31 + ((firstInMonth - firstInWeek + 7)% 7) + 6) / 7; + + logln("First day of week = " + firstInWeek + + " getActualMaximum(WEEK_OF_MONTH) = " + returned + + " expected = " + expected + + ((returned == expected) ? " ok" : " FAIL")); + + if (returned != expected) { + passed = false; + } + } + if (!passed) { + errln("Test failed"); + } + } + + /** + * Calendar.getActualMaximum(YEAR) works wrong. + * + * Note: Before 1.5, this test case assumed that + * setGregorianChange didn't change object's date. But it was + * changed. See 4928615. + */ + public void Test4167060() { + int field = Calendar.YEAR; + DateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy G", + Locale.US); + + int[][] dates = { + // year, month, day of month + { 100, Calendar.NOVEMBER, 1 }, + { -99 /*100BC*/, Calendar.JANUARY, 1 }, + { 1996, Calendar.FEBRUARY, 29 }}; + + String[] id = { "Hybrid", "Gregorian", "Julian" }; + + for (int k=0; k<3; ++k) { + logln("--- " + id[k] + " ---"); + + for (int j = 0; j < dates.length; ++j) { + GregorianCalendar calendar = new GregorianCalendar(); + if (k == 1) { + calendar.setGregorianChange(new Date(Long.MIN_VALUE)); + } else if (k == 2) { + calendar.setGregorianChange(new Date(Long.MAX_VALUE)); + } + calendar.set(dates[j][0], dates[j][1], dates[j][2]); + format.setCalendar((Calendar)calendar.clone()); + + Date dateBefore = calendar.getTime(); + + int maxYear = calendar.getActualMaximum(field); + logln("maxYear: " + maxYear + " for " + format.format(calendar.getTime())); + logln("date before: " + format.format(dateBefore)); + + int years[] = {2000, maxYear-1, maxYear, maxYear+1}; + + for (int i = 0; i < years.length; i++) { + boolean valid = years[i] <= maxYear; + calendar.set(field, years[i]); + Date dateAfter = calendar.getTime(); + int newYear = calendar.get(field); + calendar.setTime(dateBefore); // restore calendar for next use + + logln(" Year " + years[i] + (valid? " ok " : " bad") + + " => " + format.format(dateAfter)); + if (valid && newYear != years[i]) { + errln(" FAIL: " + newYear + " should be valid; date, month and time shouldn't change"); + } else if (!valid && newYear == years[i]) { + errln(" FAIL: " + newYear + " should be invalid"); + } + } + } + } + } + + /** + * Calendar.roll broken + * This bug relies on the TimeZone bug 4173604 to also be fixed. + */ + public void Test4173516() { + if (Locale.getDefault().equals(new Locale("th", "TH"))) { + return; + } + + int fieldsList[][] = { + { 1997, Calendar.FEBRUARY, 1, 10, 45, 15, 900 }, + { 1999, Calendar.DECEMBER, 22, 23, 59, 59, 999 }, + // test case for 4960642 with default cutover + { 1582, Calendar.OCTOBER, 4, 23, 59, 59, 999 }, + }; + String[] fieldNames = { + "ERA", "YEAR", "MONTH", "WEEK_OF_YEAR", "WEEK_OF_MONTH", + "DAY_OF_MONTH", "DAY_OF_YEAR", "DAY_OF_WEEK", "DAY_OF_WEEK_IN_MONTH", + "AM_PM", "HOUR", "HOUR_OF_DAY", "MINUTE", "SECOND", "MILLISECOND", + "ZONE_OFFSET", "DST_OFFSET" + }; + + Locale savedLocale = Locale.getDefault(); + Locale.setDefault(Locale.US); + int limit = 40; + + try { + GregorianCalendar cal = new GregorianCalendar(); + + cal.setTime(new Date(0)); + cal.roll(Calendar.HOUR, 0x7F000000); + cal.roll(Calendar.HOUR, -0x7F000000); + if (cal.getTime().getTime() != 0) { + errln("Hour rolling broken. expected 0, got "+cal.getTime().getTime()); + } + + for (int op=0; op<2; ++op) { + logln("Testing GregorianCalendar " + (op==0 ? "add" : "roll")); + + for (int field=0; field < Calendar.FIELD_COUNT; ++field) { + if (field != Calendar.ZONE_OFFSET && + field != Calendar.DST_OFFSET) { + for (int j=0; j " + + cal.get(Calendar.YEAR) + + "/" + (cal.get(Calendar.MONTH) + 1) + + "/" + cal.get(Calendar.DATE) + + " " + cal.get(Calendar.HOUR_OF_DAY) + + ":" + cal.get(Calendar.MINUTE) + + ":" + cal.get(Calendar.SECOND) + + "." + cal.get(Calendar.MILLISECOND) + + " d=" + delta); + } + } + } + } + } + } + } + finally { + Locale.setDefault(savedLocale); + } + } + + public void Test4174361() { + GregorianCalendar calendar = new GregorianCalendar(1996, 1, 29); + + calendar.add(Calendar.MONTH, 10); + Date date1 = calendar.getTime(); + int d1 = calendar.get(Calendar.DAY_OF_MONTH); + + calendar = new GregorianCalendar(1996, 1, 29); + calendar.add(Calendar.MONTH, 11); + Date date2 = calendar.getTime(); + int d2 = calendar.get(Calendar.DAY_OF_MONTH); + + if (d1 != d2) { + errln("adding months to Feb 29 broken"); + } + } + + /** + * Calendar does not update field values when setTimeZone is called. + */ + public void Test4177484() { + TimeZone PST = TimeZone.getTimeZone("PST"); + TimeZone EST = TimeZone.getTimeZone("EST"); + + Calendar cal = Calendar.getInstance(PST, Locale.US); + cal.clear(); + cal.set(1999, 3, 21, 15, 5, 0); // Arbitrary + int h1 = cal.get(Calendar.HOUR_OF_DAY); + cal.setTimeZone(EST); + int h2 = cal.get(Calendar.HOUR_OF_DAY); + if (h1 == h2) { + errln("FAIL: Fields not updated after setTimeZone"); + } + + // getTime() must NOT change when time zone is changed. + // getTime() returns zone-independent time in ms. + cal.clear(); + cal.setTimeZone(PST); + cal.set(Calendar.HOUR_OF_DAY, 10); + Date pst10 = cal.getTime(); + cal.setTimeZone(EST); + Date est10 = cal.getTime(); + if (!pst10.equals(est10)) { + errln("FAIL: setTimeZone changed time"); + } + } + + /** + * Week of year is wrong at the start and end of the year. + */ + public void Test4197699() { + GregorianCalendar cal = new GregorianCalendar(); + cal.setFirstDayOfWeek(Calendar.MONDAY); + cal.setMinimalDaysInFirstWeek(4); + DateFormat fmt = new SimpleDateFormat("E dd MMM yyyy 'DOY='D 'WOY='w"); + fmt.setCalendar(cal); + + int[] DATA = { + 2000, Calendar.JANUARY, 1, 52, + 2001, Calendar.DECEMBER, 31, 1, + }; + + for (int i=0; i " + actual + + ", want " + DATA[i+1]); + } + } + } + + public void Test4288792() throws Exception + { + TimeZone savedTZ = TimeZone.getDefault(); + TimeZone.setDefault(TimeZone.getTimeZone("GMT")); + GregorianCalendar cal = new GregorianCalendar(); + try { + for (int i = 1900; i < 2100; i++) { + for (int j1 = 1; j1 <= 7; j1++) { + // Loop for MinimalDaysInFirstWeek: 1..7 + for (int j = Calendar.SUNDAY; j <= Calendar.SATURDAY; j++) { + // Loop for FirstDayOfWeek: SUNDAY..SATURDAY + cal.clear(); + cal.setMinimalDaysInFirstWeek(j1); + cal.setFirstDayOfWeek(j); + cal.set(Calendar.YEAR, i); + int maxWeek = cal.getActualMaximum(Calendar.WEEK_OF_YEAR); + cal.set(Calendar.WEEK_OF_YEAR, maxWeek); + cal.set(Calendar.DAY_OF_WEEK, j); + + for (int k = 1; k < 7; k++) { + cal.add(Calendar.DATE, 1); + int WOY = cal.get(Calendar.WEEK_OF_YEAR); + if (WOY != maxWeek) { + errln(cal.getTime() + ",got=" + WOY + + ",expected=" + maxWeek + + ",min=" + j1 + ",first=" + j); + } + } + + cal.add(Calendar.DATE, 1); + int WOY = cal.get(Calendar.WEEK_OF_YEAR); + if (WOY != 1) { + errln(cal.getTime() + ",got=" + WOY + + ",expected=1,min=" + j1 + ",first" + j); + } + } + } + } + } + finally { + TimeZone.setDefault(savedTZ); + } + } + + public void Test4328747() throws Exception { + Calendar c = (Calendar)Calendar.getInstance(Locale.US); + c.clear(); + c.set(1966,0,1); // 1 jan 1966 + + // serialize + ByteArrayOutputStream out = new ByteArrayOutputStream(); + ObjectOutputStream s = new ObjectOutputStream(out); + s.writeObject(c); + s.flush(); + + // deserialize + ObjectInputStream t = new ObjectInputStream(new ByteArrayInputStream(out.toByteArray())); + Calendar result = (Calendar)t.readObject(); + + // let recalculate fields with the same UTC time + result.setTime(result.getTime()); + // Bug gives 1965 11 19 + if ((result.get(c.YEAR) != 1966) || (result.get(c.MONTH) != 0) + || (result.get(c.DATE) != 1)) { + errln("deserialized Calendar returned wrong date field(s): " + + result.get(c.YEAR) + "/" + result.get(c.MONTH) + "/" + result.get(c.DATE) + + ", expected 1966/0/1"); + } + } + + /** + * Test whether Calendar can be serialized/deserialized correctly + * even if invalid/customized TimeZone is used. + */ + public void Test4413980() { + TimeZone savedTimeZone = TimeZone.getDefault(); + try { + boolean pass = true; + String[] IDs = new String[] {"Undefined", "PST", "US/Pacific", + "GMT+3:00", "GMT-01:30"}; + for (int i = 0; i < IDs.length; i++) { + TimeZone tz = TimeZone.getTimeZone(IDs[i]); + TimeZone.setDefault(tz); + + Calendar c = (Calendar)Calendar.getInstance(); + + // serialize + ByteArrayOutputStream out = new ByteArrayOutputStream(); + ObjectOutputStream s = new ObjectOutputStream(out); + s.writeObject(c); + s.flush(); + + // deserialize + ObjectInputStream t = new ObjectInputStream(new ByteArrayInputStream(out.toByteArray())); + + if (!c.equals(t.readObject())) { + pass = false; + logln("Calendar instance which uses TimeZone <" + + IDs[i] + "> is incorrectly serialized/deserialized."); + } else { + logln("Calendar instance which uses TimeZone <" + + IDs[i] + "> is correctly serialized/deserialized."); + } + } + if (!pass) { + errln("Fail: Calendar serialization/equality bug"); + } + } + catch (IOException e) { + errln("Fail: " + e); + e.printStackTrace(); + } + catch (ClassNotFoundException e) { + errln("Fail: " + e); + e.printStackTrace(); + } + finally { + TimeZone.setDefault(savedTimeZone); + } + } + + /** + * 4546637: Incorrect WEEK_OF_MONTH after changing First Day Of Week + */ + public void Test4546637() { + GregorianCalendar day = new GregorianCalendar (2001, Calendar.NOVEMBER, 04); + day.setMinimalDaysInFirstWeek(1); + int wom = day.get(Calendar.WEEK_OF_MONTH); + + day.setFirstDayOfWeek(Calendar.MONDAY); + if (day.get(Calendar.WEEK_OF_MONTH) != 1) { + errln("Fail: 2001/11/4 must be the first week of the month."); + } + } + + /** + * 4623997: GregorianCalendar returns bad WEEK_OF_YEAR + */ + public void Test4623997() { + GregorianCalendar cal = new GregorianCalendar(2000, GregorianCalendar.JANUARY, 1); + + int dow = cal.get(GregorianCalendar.DAY_OF_WEEK); + + cal.setFirstDayOfWeek(GregorianCalendar.MONDAY); + cal.setMinimalDaysInFirstWeek(4); + + if (cal.get(GregorianCalendar.WEEK_OF_YEAR) != 52) { + errln("Fail: 2000/1/1 must be the 52nd week of the year."); + } + } + + /** + * 4685354: Handling of Calendar fields setting state is broken + * + *

Need to use SimpleDateFormat to test because a call to + * get(int) changes internal states of a Calendar. + */ + public void Test4685354() { + if (Locale.getDefault().equals(new Locale("hi", "IN"))) { + return; + } + + Calendar calendar = Calendar.getInstance(Locale.US); + DateFormat df = new SimpleDateFormat("yyyy/MM/dd", Locale.US); + String expected = "1999/12/31"; + Date t; + String s; + + try { + calendar.setTime(df.parse(expected)); + } catch (Exception e) { + throw new RuntimeException("Unexpected parse exception", e); + } + + t = calendar.getTime(); + calendar.set(Calendar.DAY_OF_MONTH, 33); + t = calendar.getTime(); + calendar.set(Calendar.DAY_OF_MONTH, 0); + s = df.format(calendar.getTime()); + if (!expected.equals(s)) { + errln("DAY_OF_MONTH w/o ZONE_OFFSET: expected: " + expected + ", got: " + s); + } + + // The same thing must work with ZONE_OFFSET set + try { + calendar.setTime(df.parse(expected)); + } catch (Exception e) { + throw new RuntimeException("Unexpected parse exception", e); + } + t = calendar.getTime(); + calendar.set(calendar.ZONE_OFFSET, calendar.get(calendar.ZONE_OFFSET)); + calendar.set(Calendar.DAY_OF_MONTH, 33); + t = calendar.getTime(); + calendar.set(Calendar.DAY_OF_MONTH, 0); + s = df.format(calendar.getTime()); + if (!expected.equals(s)) { + errln("DAY_OF_MONTH: expected: " + expected + ", got: " + s); + } + + expected = "1999/12/24"; // 0th week of 2000 + calendar.clear(); + Date initialDate = null; + try { + initialDate = df.parse(expected); + calendar.setTime(initialDate); + } catch (Exception e) { + throw new RuntimeException("Unexpected parse exception", e); + } + t = calendar.getTime(); + calendar.set(calendar.ZONE_OFFSET, calendar.get(calendar.ZONE_OFFSET)); + // jump to the next year + calendar.set(Calendar.WEEK_OF_YEAR, 100); + t = calendar.getTime(); + calendar.set(Calendar.WEEK_OF_YEAR, 0); + s = df.format(calendar.getTime()); + if (!expected.equals(s)) { + errln("WEEK_OF_YEAR: expected: " + expected + ", got: " + s); + } + // change the state back + calendar.clear(); + calendar.setTime(initialDate); + calendar.set(calendar.ZONE_OFFSET, calendar.get(calendar.ZONE_OFFSET)); + // jump to next month + calendar.set(Calendar.WEEK_OF_MONTH, 7); + t = calendar.getTime(); + calendar.set(Calendar.WEEK_OF_MONTH, 0); + s = df.format(calendar.getTime()); + if (!expected.equals(s)) { + errln("WEEK_OF_MONTH: expected: " + expected + ", got: " + s); + } + + // Make sure the time fields work correctly. + calendar.clear(); + df = new SimpleDateFormat("HH:mm:ss"); + TimeZone tz = TimeZone.getTimeZone("GMT"); + df.setTimeZone(tz); + calendar.setTimeZone(tz); + expected = "22:59:59"; + try { + calendar.setTime(df.parse(expected)); + } catch (Exception e) { + throw new RuntimeException("Unexpected parse exception", e); + } + t = calendar.getTime(); + // time should be 22:59:59. + calendar.set(Calendar.MINUTE, 61); + // time should be 23:01:59. + t = calendar.getTime(); + calendar.set(Calendar.MINUTE, -1); + // time should be back to 22:59:59. + s = df.format(calendar.getTime()); + if (!expected.equals(s)) { + errln("MINUTE: expected: " + expected + ", got: " + s); + } + } + + /** + * 4655637: Calendar.set() for DAY_OF_WEEK does not return the right value + * + *

Need to use SimpleDateFormat to test because a call to + * get(int) changes internal states of a Calendar. + */ + public void Test4655637() { + // Skip this test case if it's Thai locale + if (Locale.getDefault().equals(new Locale("th", "TH"))) { + return; + } + + Calendar cal = Calendar.getInstance(); + cal.setTime(new Date(1029814211523L)); + cal.set(Calendar.YEAR, 2001); + Date t = cal.getTime(); + cal.set(Calendar.MONTH, Calendar.JANUARY); + t = cal.getTime(); + + cal.set(Calendar.DAY_OF_MONTH, 8); + t = cal.getTime(); + + cal.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY); + DateFormat df = new SimpleDateFormat("yyyy/MM/dd", Locale.US); + String expected = "2001/01/08"; + String s = df.format(cal.getTime()); + if (!expected.equals(s)) { + errln("expected: " + expected + ", got: " + s); + } + } + + /** + * 4683492: Invalid value for MONTH in GregorianCalendar causes exception in getTime(). + * + *

Need to use SimpleDateFormat to test because a call to + * get(int) changes internal states of a Calendar. + * + *

This test case throws ArrayIndexOutOfBoundsException without the fix. + */ + public void Test4683492() { + Calendar cal = new GregorianCalendar(2002, 3, 29, 10, 0, 0); + cal.set(Calendar.DAY_OF_WEEK, Calendar.FRIDAY); + cal.set(Calendar.DAY_OF_WEEK_IN_MONTH, -1); + cal.set(Calendar.MONTH, 12); + DateFormat df = new SimpleDateFormat("yyyy/MM/dd", Locale.US); + String expected = "2003/01/31"; + String s = df.format(cal.getTime()); + if (!expected.equals(s)) { + errln("expected: " + expected + ", got: " + s); + } + } + + /** + * 4080631: Calendar.hashCode is amazingly bad + */ + public void Test4080631() { + Calendar cal = Calendar.getInstance(); + int h1 = cal.hashCode(); + cal.add(cal.SECOND, +1); + int h2 = cal.hashCode(); + Calendar cal2 = (Calendar) cal.clone(); + cal.add(cal.MILLISECOND, +1); + int h3 = cal.hashCode(); + logln("hash code: h1="+h1+", h2="+h2+", h3="+h3); + if (h1 == h2 || h1 == h3 || h2 == h3) { + errln("hash code is poor: hashCode="+h1); + } + h2 = cal2.hashCode(); + cal.add(cal.MILLISECOND, -1); + int h4 = cal.hashCode(); + logln("hash code: h2="+h2+", h4="+h4); + if (cal.equals(cal2) && h2 != h4) { + errln("broken hash code: h2="+h2+", h4="+h4); + } + int x = cal.getFirstDayOfWeek() + 3; + if (x > cal.SATURDAY) { + x -= 7; + } + cal.setFirstDayOfWeek(x); + int h5 = cal.hashCode(); + logln("hash code: h4="+h4+", h5="+h5); + if (h4 == h5) { + errln("has code is poor with first day of week param: hashCode="+h4); + } + } + + /** + * 4125161: RFE: GregorianCalendar needs more era names (BCE and CE) + */ + /* + public void Test4125161() throws Exception { + Class gc = GregorianCalendar.class; + Field f; + int mod; + f = gc.getDeclaredField("BCE"); + mod = f.getModifiers(); + if (!Modifier.isStatic(mod) || !Modifier.isFinal(mod)) { + errln("BCE: wrong modifiers: " + mod); + } + f = gc.getDeclaredField("CE"); + mod = f.getModifiers(); + if (!Modifier.isStatic(mod) || !Modifier.isFinal(mod)) { + errln("CE: wrong modifiers: " + mod); + } + if (GregorianCalendar.BCE != GregorianCalendar.BC + || GregorianCalendar.CE != GregorianCalendar.AD) { + errln("Wrong BCE and/or CE values"); + } + } + */ + + /** + * 4167995: GregorianCalendar.setGregorianChange() not to spec + */ + public void Test4167995() { + Koyomi gc = new Koyomi(TimeZone.getTimeZone("GMT")); + logln("Hybrid: min date"); + gc.setTime(new Date(Long.MIN_VALUE)); + if (!gc.checkDate(292269055, gc.DECEMBER, 2, gc.SUNDAY) + || !gc.checkFieldValue(gc.ERA, gc.BC)) { + errln(gc.getMessage()); + } + logln("Hybrid: max date"); + gc.setTime(new Date(Long.MAX_VALUE)); + if (!gc.checkDate(292278994, gc.AUGUST, 17, gc.SUNDAY) + || !gc.checkFieldValue(gc.ERA, gc.AD)) { + errln(gc.getMessage()); + } + + gc.setGregorianChange(new Date(Long.MIN_VALUE)); + logln("Gregorian: min date"); + gc.setTime(new Date(Long.MIN_VALUE)); + if (!gc.checkDate(292275056, gc.MAY, 16, gc.SUNDAY) + || !gc.checkFieldValue(gc.ERA, gc.BC)) { + errln(gc.getMessage()); + } + logln("Gregorian: max date"); + gc.setTime(new Date(Long.MAX_VALUE)); + if (!gc.checkDate(292278994, gc.AUGUST, 17, gc.SUNDAY) + || !gc.checkFieldValue(gc.ERA, gc.AD)) { + errln(gc.getMessage()); + } + + gc.setGregorianChange(new Date(Long.MAX_VALUE)); + logln("Julian: min date"); + gc.setTime(new Date(Long.MIN_VALUE)); + if (!gc.checkDate(292269055, gc.DECEMBER, 2, gc.SUNDAY) + || !gc.checkFieldValue(gc.ERA, gc.BC)) { + errln(gc.getMessage()); + } + logln("Julian: max date"); + gc.setTime(new Date(Long.MAX_VALUE)); + if (!gc.checkDate(292272993, gc.JANUARY, 4, gc.SUNDAY) + || !gc.checkFieldValue(gc.ERA, gc.AD)) { + errln(gc.getMessage()); + } + } + + /** + * 4340146: Calendar.equals modifies state + */ + public void Test4340146() { + Koyomi cal = new Koyomi(); + cal.clear(); + cal.set(2003, cal.OCTOBER, 32); + cal.equals(new Koyomi()); + if (!cal.checkInternalDate(2003, cal.OCTOBER, 32)) { + errln(cal.getMessage()); + } + new Koyomi().equals(cal); + if (!cal.checkInternalDate(2003, cal.OCTOBER, 32)) { + errln(cal.getMessage()); + } + } + + /** + * 4639407: GregorianCalendar doesn't work in non-lenient due to timezone bounds checking + */ + public void Test4639407() { + // The following operations in non-lenient mode shouldn't + // throw IllegalArgumentException. + Koyomi cal = new Koyomi(TimeZone.getTimeZone("Pacific/Kiritimati")); + cal.setLenient(false); + cal.set(2003, cal.OCTOBER, 10); + cal.getTime(); + cal.setTimeZone(TimeZone.getTimeZone("Pacific/Tongatapu")); + cal.set(2003, cal.OCTOBER, 10); + cal.getTime(); + } + + /** + * 4652815: rolling week-of-year back hundreds of weeks changes year + */ + public void Test4652815() { + Koyomi cal = new Koyomi(Locale.US); + testRoll(cal, 2003, cal.SEPTEMBER, 29); + testRoll(cal, 2003, cal.DECEMBER, 24); + testRoll(cal, 1582, cal.DECEMBER, 19); + testRoll(cal, 1582, cal.DECEMBER, 20); + } + + private void testRoll(Koyomi cal, int year, int month, int dayOfMonth) { + cal.clear(); + cal.set(year, month, dayOfMonth); + cal.getTime(); // normalize fields + logln("Roll backwards from " + cal.toDateString()); + for (int i = 0; i < 1000; i++) { + cal.roll(cal.WEEK_OF_YEAR, -i); + if (!cal.checkFieldValue(cal.YEAR, year)) { + errln(cal.getMessage()); + } + } + logln("Roll forewards from " + cal.toDateString()); + for (int i = 0; i < 1000; i++) { + cal.roll(cal.WEEK_OF_YEAR, +i); + if (!cal.checkFieldValue(cal.YEAR, year)) { + errln(cal.getMessage()); + } + } + } + + /** + * 4652830: GregorianCalendar roll behaves unexpectedly for dates in BC era + */ + public void Test4652830() { + Koyomi cal = new Koyomi(Locale.US); + cal.clear(); + logln("BCE 9-2-28 (leap year) roll DAY_OF_MONTH++ twice"); + cal.set(cal.ERA, cal.BC); + cal.set(9, cal.FEBRUARY, 28); + if (cal.getActualMaximum(cal.DAY_OF_YEAR) != 366) { + errln(" wrong actual max of DAY_OF_YEAR: got " + + cal.getActualMaximum(cal.DAY_OF_YEAR) + " expected " + 366); + } + cal.roll(cal.DAY_OF_MONTH, +1); + if (!cal.checkFieldValue(cal.ERA, cal.BC) + || !cal.checkDate(9, cal.FEBRUARY, 29)) { + errln(cal.getMessage()); + } + cal.roll(cal.DAY_OF_MONTH, +1); + if (!cal.checkFieldValue(cal.ERA, cal.BC) + || !cal.checkDate(9, cal.FEBRUARY, 1)) { + errln(cal.getMessage()); + } + } + + /** + * 4740554: GregorianCalendar.getActualMaximum is inconsistent with normalization + */ + public void Test4740554() { + logln("1999/(Feb+12)/1 should be normalized to 2000/Feb/1 for getActualMaximum"); + Koyomi cal = new Koyomi(Locale.US); + cal.clear(); + cal.set(1999, cal.FEBRUARY + 12, 1); + if (!cal.checkActualMaximum(cal.DAY_OF_YEAR, 366)) { + errln(cal.getMessage()); + } + if (!cal.checkActualMaximum(cal.DAY_OF_MONTH, 29)) { + errln(cal.getMessage()); + } + } + + /** + * 4936355: GregorianCalendar causes overflow/underflow with time of day calculation + */ + public void Test4936355() { + Koyomi cal = new Koyomi(TimeZone.getTimeZone("GMT")); + cal.clear(); + cal.set(1970, cal.JANUARY, 1); + checkTimeCalculation(cal, cal.HOUR_OF_DAY, Integer.MAX_VALUE, + (long)Integer.MAX_VALUE * 60 * 60 * 1000); + + cal.clear(); + cal.set(1970, cal.JANUARY, 1); + checkTimeCalculation(cal, cal.HOUR, Integer.MAX_VALUE, + (long)Integer.MAX_VALUE * 60 * 60 * 1000); + + cal.clear(); + cal.set(1970, cal.JANUARY, 1); + checkTimeCalculation(cal, cal.MINUTE, Integer.MAX_VALUE, + (long)Integer.MAX_VALUE * 60 * 1000); + + cal.clear(); + // Make sure to use Gregorian dates (before and after the + // set() call) for testing + cal.set(250000, cal.JANUARY, 1); + checkTimeCalculation(cal, cal.HOUR_OF_DAY, Integer.MIN_VALUE, + (long)Integer.MIN_VALUE * 60 * 60 * 1000); + + cal.clear(); + cal.set(250000, cal.JANUARY, 1); + checkTimeCalculation(cal, cal.HOUR, Integer.MIN_VALUE, + (long)Integer.MIN_VALUE * 60 * 60 * 1000); + + cal.clear(); + cal.set(250000, cal.JANUARY, 1); + checkTimeCalculation(cal, cal.MINUTE, Integer.MIN_VALUE, + (long)Integer.MIN_VALUE * 60 * 1000); + } + + private void checkTimeCalculation(Koyomi cal, int field, int value, long expectedDelta) { + long time = cal.getTimeInMillis(); + cal.set(field, value); + long time2 = cal.getTimeInMillis(); + if ((time + expectedDelta) != time2) { + String s = value == Integer.MAX_VALUE ? "Integer.MAX_VALUE" : "Integer.MIN_VALUE"; + errln("set(" + Koyomi.getFieldName(field) + ", " + s + ") failed." + " got " + time2 + + ", expected " + (time+expectedDelta)); + } + } + + /** + * 4722650: Calendar.equals can throw an exception in non-lenient + * (piggy-back tests for compareTo() which is new in 1.5) + */ + public void Test4722650() { + Calendar cal1 = new GregorianCalendar(); + cal1.clear(); + Calendar cal2 = new GregorianCalendar(); + cal2.clear(); + cal2.setLenient(false); + + cal1.set(2003, Calendar.OCTOBER, 31); + cal2.set(2003, Calendar.OCTOBER, 31); + try { + if (cal1.equals(cal2)) { + errln("lenient and non-lenient shouldn't be equal. (2003/10/31)"); + } + if (cal1.compareTo(cal2) != 0) { + errln("cal1 and cal2 should represent the same time. (2003/10/31)"); + } + } catch (IllegalArgumentException e) { + errln("equals threw IllegalArugumentException with non-lenient"); + } + + cal1.set(2003, Calendar.OCTOBER, 32); + cal2.set(2003, Calendar.OCTOBER, 32); + try { + if (cal1.equals(cal2)) { + errln("lenient and non-lenient shouldn't be equal. (2003/10/32)"); + } + if (cal1.compareTo(cal2) != 0) { + errln("cal1 and cal2 should represent the same time. (2003/10/32)"); + } + } catch (IllegalArgumentException e) { + errln("equals threw IllegalArugumentException with non-lenient"); + } + + cal1 = Calendar.getInstance(new Locale("th", "TH")); + cal1.setTimeInMillis(0L); + cal2 = Calendar.getInstance(Locale.US); + cal2.setTimeInMillis(0L); + if (cal1.equals(cal2)) { + errln("Buddhist.equals(Gregorian) shouldn't be true. (millis=0)"); + } + if (cal1.compareTo(cal2) != 0) { + errln("cal1 (Buddhist) and cal2 (Gregorian) should represent the same time. (millis=0)"); + } + } + + /** + * 4738710: API: Calendar comparison methods should be improved + */ + public void Test4738710() { + Calendar cal0 = new GregorianCalendar(2003, Calendar.SEPTEMBER, 30); + Comparable cal1 = new GregorianCalendar(2003, Calendar.OCTOBER, 1); + Calendar cal2 = new GregorianCalendar(2003, Calendar.OCTOBER, 2); + if (!(cal1.compareTo(cal0) > 0)) { + errln("!(cal1 > cal0)"); + } + if (!(cal1.compareTo(cal2) < 0)) { + errln("!(cal1 < cal2)"); + } + if (cal1.compareTo(new GregorianCalendar(2003, Calendar.OCTOBER, 1)) != 0) { + errln("cal1 != new GregorianCalendar(2003, Calendar.OCTOBER, 1)"); + } + + if (cal0.after(cal2)) { + errln("cal0 shouldn't be after cal2"); + } + if (cal2.before(cal0)) { + errln("cal2 shouldn't be before cal0"); + } + + if (cal0.after(new Integer(0))) { + errln("cal0.after() returned true with an Integer."); + } + if (cal0.before(new Integer(0))) { + errln("cal0.before() returned true with an Integer."); + } + if (cal0.after(null)) { + errln("cal0.after() returned true with null."); + } + if (cal0.before(null)) { + errln("cal0.before() returned true with null."); + } + } + + /** + * 4633646: Setting WEEK_OF_MONTH to 1 results in incorrect date + */ + public void Test4633646() { + Koyomi cal = new Koyomi(Locale.US); + cal.setTime(new Date(2002-1900, 1-1, 28)); + sub4633646(cal); + + cal.setLenient(false); + cal.setTime(new Date(2002-1900, 1-1, 28)); + sub4633646(cal); + + cal = new Koyomi(Locale.US); + cal.clear(); + cal.set(2002, cal.JANUARY, 28); + sub4633646(cal); + + cal.clear(); + cal.setLenient(false); + cal.set(2002, cal.JANUARY, 28); + sub4633646(cal); + } + + void sub4633646(Koyomi cal) { + cal.getTime(); + cal.set(cal.WEEK_OF_MONTH, 1); + if (cal.isLenient()) { + if (!cal.checkDate(2001, cal.DECEMBER, 31)) { + errln(cal.getMessage()); + } + if (!cal.checkFieldValue(cal.WEEK_OF_MONTH, 6)) { + errln(cal.getMessage()); + } + } else { + try { + Date d = cal.getTime(); + errln("didn't throw IllegalArgumentException in non-lenient"); + } catch (IllegalArgumentException e) { + } + } + } + + /** + * 4846659: Calendar: Both set() and roll() don't work for AM_PM time field + * (Partially fixed only roll as of 1.5) + */ + public void Test4846659() { + Koyomi cal = new Koyomi(); + cal.clear(); + cal.set(2003, cal.OCTOBER, 31, 10, 30, 30); + cal.getTime(); + // Test roll() + cal.roll(cal.AM_PM, +1); // should turn to PM + if (!cal.checkFieldValue(cal.HOUR_OF_DAY, 10+12)) { + errln("roll: AM_PM didn't change to PM"); + } + + cal.clear(); + cal.set(2003, cal.OCTOBER, 31, 10, 30, 30); + cal.getTime(); + // Test set() + cal.set(cal.AM_PM, cal.PM); // should turn to PM + if (!cal.checkFieldValue(cal.HOUR_OF_DAY, 10+12)) { + errln("set: AM_PM didn't change to PM"); + } + + cal.clear(); + cal.set(2003, cal.OCTOBER, 31, 10, 30, 30); + cal.getTime(); + cal.set(cal.AM_PM, cal.PM); + cal.set(cal.HOUR, 9); + if (!cal.checkFieldValue(cal.HOUR_OF_DAY, 9+12)) { + errln("set: both AM_PM and HOUT didn't change to PM"); + } + } + + /** + * 4822110: GregorianCalendar.get() returns an incorrect date after setFirstDayOfWeek() + */ + public void Test4822110() { + Koyomi cal = new Koyomi(Locale.US); + // June 2003 + // S M Tu W Th F S + // 1 2 3 4 5 6 7 + // 8 9 10 11 12 13 14 + // 15 16 17 18 19 20 21 + // 22 23 24 25 26 27 28 + // 29 30 + cal.clear(); + // 6/1 to 6/7 should be the 1st week of June. + cal.set(2003, cal.JUNE, 2); + cal.getTime(); // Let cal calculate time. + cal.setFirstDayOfWeek(cal.MONDAY); + // Now 6/2 to 6/8 should be the 2nd week of June. Sunday of + // that week is 6/8. + logln("1: " +cal.get(cal.WEEK_OF_MONTH)+", "+cal.get(cal.DAY_OF_MONTH)); + cal.set(cal.DAY_OF_WEEK, cal.SUNDAY); + logln("1st Sunday of June 2003 with FirstDayOfWeek=MONDAY"); + if (!cal.checkDate(2003, cal.JUNE, 8)) { + errln(cal.getMessage()); + } + } + + /** + * 4973919: Inconsistent GregorianCalendar hashCode before and after serialization + */ + public void Test4966499() throws Exception { + GregorianCalendar date1 = new GregorianCalendar(2004, Calendar.JANUARY, 7); + + // Serialize date1 + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + ObjectOutputStream oos = new ObjectOutputStream(baos); + oos.writeObject(date1); + + byte[] buffer = baos.toByteArray(); + + // Deserialize it + ByteArrayInputStream bais = new ByteArrayInputStream(buffer); + ObjectInputStream ois = new ObjectInputStream(bais); + GregorianCalendar date2 = (GregorianCalendar)ois.readObject(); + + if (!date1.equals(date2)) { + errln("date1.equals(date2) != true"); + } + if (date1.hashCode() != date2.hashCode()) { + errln("inconsistent hashCode() value (before=0x" + +Integer.toHexString(date1.hashCode())+ + ", after=0x"+Integer.toHexString(date2.hashCode())+")"); + } + } + + /** + * 4980088: GregorianCalendar.getActualMaximum doesn't throw exception + */ + public void Test4980088() { + GregorianCalendar cal = new GregorianCalendar(); + try { + int x = cal.getMaximum(100); + errln("getMaximum(100) didn't throw an exception."); + } catch (IndexOutOfBoundsException e) { + logln("getMaximum: " + e.getClass().getName() + ": " + e.getMessage()); + } + + try { + int x = cal.getLeastMaximum(100); + errln("getLeastMaximum(100) didn't throw an exception."); + } catch (IndexOutOfBoundsException e) { + logln("getLeastMaximum: " + e.getClass().getName() + ": " + e.getMessage()); + } + + try { + int x = cal.getActualMaximum(100); + errln("getActualMaximum(100) didn't throw an exception."); + } catch (IndexOutOfBoundsException e) { + logln("getActualMaximum: " + e.getClass().getName() + ": " + e.getMessage()); + } + + try { + int x = cal.getMinimum(100); + errln("getMinimum(100) didn't throw an exception."); + } catch (IndexOutOfBoundsException e) { + logln("getMinimum: " + e.getClass().getName() + ": " + e.getMessage()); + } + + try { + int x = cal.getGreatestMinimum(100); + errln("getGreatestMinimum(100) didn't throw an exception."); + } catch (IndexOutOfBoundsException e) { + logln("getGreatestMinimum: " + e.getClass().getName() + ": " + e.getMessage()); + } + + try { + int x = cal.getActualMinimum(100); + errln("getActualMinimum(100) didn't throw an exception."); + } catch (IndexOutOfBoundsException e) { + logln("getActualMinimum: " + e.getClass().getName() + ": " + e.getMessage()); + } + } + + /** + * 4965624: GregorianCalendar.isLeapYear(1000) returns incorrect value + */ + public void Test4965624() { + // 5013094: This test case needs to use "GMT" to specify + // Gregorian cutover dates. + TimeZone savedZone = TimeZone.getDefault(); + TimeZone.setDefault(TimeZone.getTimeZone("GMT")); + try { + Map data = new HashMap(); + data.put(getGregorianDate(999, Calendar.OCTOBER, 1), Boolean.FALSE); + data.put(getGregorianDate(1000, Calendar.JANUARY, 1), Boolean.FALSE); + data.put(getGregorianDate(1000, Calendar.FEBRUARY, 1), Boolean.FALSE); + data.put(getGregorianDate(1000, Calendar.FEBRUARY, 28), Boolean.FALSE); + data.put(getGregorianDate(1000, Calendar.MARCH, 1), Boolean.TRUE); + data.put(getGregorianDate(1001, Calendar.JANUARY, 1), Boolean.TRUE); + data.put(getGregorianDate(1001, Calendar.JANUARY, 6), Boolean.TRUE); + data.put(getGregorianDate(1001, Calendar.MARCH, 1), Boolean.TRUE); + + Iterator itr = data.keySet().iterator(); + while (itr.hasNext()) { + Date d = itr.next(); + boolean expected = data.get(d).booleanValue(); + GregorianCalendar cal = new GregorianCalendar(); + cal.setGregorianChange(d); + if (cal.isLeapYear(1000) != expected) { + errln("isLeapYear(1000) returned " + cal.isLeapYear(1000) + + " with cutover date (Julian) " + d); + } + } + } + finally { + TimeZone.setDefault(savedZone); + } + } + + // Note that we can't use Date to produce Gregorian calendar dates + // before the default cutover date. + static Date getGregorianDate(int year, int month, int dayOfMonth) { + GregorianCalendar g = new GregorianCalendar(); + // Make g a pure Gregorian calendar + g.setGregorianChange(new Date(Long.MIN_VALUE)); + g.clear(); + g.set(year, month, dayOfMonth); + return g.getTime(); + } + + /** + * 5006864: Define the minimum value of DAY_OF_WEEK_IN_MONTH as 1 + */ + public void Test5006864() { + GregorianCalendar cal = new GregorianCalendar(); + int min = cal.getMinimum(cal.DAY_OF_WEEK_IN_MONTH); + if (min != 1) { + errln("GregorianCalendar.getMinimum(DAY_OF_WEEK_IN_MONTH) returned " + + min + ", expected 1."); + } + min = cal.getGreatestMinimum(cal.DAY_OF_WEEK_IN_MONTH); + if (min != 1) { + errln("GregorianCalendar.getGreatestMinimum(DAY_OF_WEEK_IN_MONTH) returned " + + min + ", expected 1."); + } + } +} diff --git a/jdk/test/java/util/Calendar/CalendarTest.java b/jdk/test/java/util/Calendar/CalendarTest.java new file mode 100644 index 00000000000..d8320295a6d --- /dev/null +++ b/jdk/test/java/util/Calendar/CalendarTest.java @@ -0,0 +1,1102 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4064654 4374886 4984320 4984574 4944795 + * @library /java/text/testlib + * @summary test for Calendar + * @key randomness + */ + +import java.util.*; +import java.text.*; +import java.io.*; + +public class CalendarTest extends IntlTest { + static final int ONE_DAY = 24*60*60*1000; + static final int EPOCH_JULIAN = 2440588; + + public static void main(String argv[]) throws Exception { + new CalendarTest().run(argv); + } + + /** + * Test the behavior of the GregorianCalendar around the changeover. + */ + public void TestGregorianChangeover() { + TimeZone savedZone = TimeZone.getDefault(); + /* + Changeover -7 days: 1582/9/28 dow=6 + Changeover -6 days: 1582/9/29 dow=7 + Changeover -5 days: 1582/9/30 dow=1 + Changeover -4 days: 1582/10/1 dow=2 + Changeover -3 days: 1582/10/2 dow=3 + Changeover -2 days: 1582/10/3 dow=4 + Changeover -1 days: 1582/10/4 dow=5 + Changeover +0 days: 1582/10/15 dow=6 + Changeover +1 days: 1582/10/16 dow=7 + Changeover +2 days: 1582/10/17 dow=1 + Changeover +3 days: 1582/10/18 dow=2 + Changeover +4 days: 1582/10/19 dow=3 + Changeover +5 days: 1582/10/20 dow=4 + Changeover +6 days: 1582/10/21 dow=5 + Changeover +7 days: 1582/10/22 dow=6 + */ + int MON[] = { 9, 9, 9,10,10,10,10, 10, 10, 10, 10, 10, 10, 10, 10 }; + int DOM[] = { 28, 29, 30, 1, 2, 3, 4, 15, 16, 17, 18, 19, 20, 21, 22 }; + int DOW[] = { 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6 }; + // ^ <-Changeover Fri Oct 15 1582 + + try { + TimeZone.setDefault(TimeZone.getTimeZone("GMT")); + Date co = new Date(1582-1900, Calendar.OCTOBER, 15); + GregorianCalendar cal = new GregorianCalendar(); + int j = 0; + for (int i = -7; i <= 7; ++i, ++j) { + Date d = new Date(co.getTime() + i*ONE_DAY); + cal.setTime(d); + int y = cal.get(Calendar.YEAR); + int mon = cal.get(Calendar.MONTH)+1-Calendar.JANUARY; + int dom = cal.get(Calendar.DATE); + int dow = cal.get(Calendar.DAY_OF_WEEK); + + logln("Changeover " + (i>=0?"+":"") + i + + " days: " + y + "/" + mon + "/" + dom + " dow=" + dow); + if (y != 1582 || mon != MON[j] || dom != DOM[j] || dow != DOW[j]) { + errln(" Fail: Above line is wrong"); + } + } + } + finally { + TimeZone.setDefault(savedZone); + } + } + + /** + * Test the mapping between millis and fields. For the purposes + * of this test, we don't care about timezones and week data + * (first day of week, minimal days in first week). + */ + public void TestMapping() { + TimeZone saveZone = TimeZone.getDefault(); + int[] DATA = { + // Julian# Year Month DOM JULIAN:Year, Month, DOM + 2440588, 1970, Calendar.JANUARY, 1, 1969, Calendar.DECEMBER, 19, + 2415080, 1900, Calendar.MARCH, 1, 1900, Calendar.FEBRUARY, 17, + 2451604, 2000, Calendar.FEBRUARY, 29, 2000, Calendar.FEBRUARY, 16, + 2452269, 2001, Calendar.DECEMBER, 25, 2001, Calendar.DECEMBER, 12, + 2416526, 1904, Calendar.FEBRUARY, 15, 1904, Calendar.FEBRUARY, 2, + 2416656, 1904, Calendar.JUNE, 24, 1904, Calendar.JUNE, 11, + 1721426, 1, Calendar.JANUARY, 1, 1, Calendar.JANUARY, 3, + 2000000, 763, Calendar.SEPTEMBER, 18, 763, Calendar.SEPTEMBER, 14, + 4000000, 6239, Calendar.JULY, 12, 6239, Calendar.MAY, 28, + 8000000, 17191, Calendar.FEBRUARY, 26, 17190, Calendar.OCTOBER, 22, + 10000000, 22666, Calendar.DECEMBER, 20, 22666, Calendar.JULY, 5, + }; + + try { + TimeZone.setDefault(TimeZone.getTimeZone("UTC")); + Date PURE_GREGORIAN = new Date(Long.MIN_VALUE); + Date PURE_JULIAN = new Date(Long.MAX_VALUE); + GregorianCalendar cal = new GregorianCalendar(); + for (int i = 0; i < DATA.length; i += 7) { + int julian = DATA[i]; + int year = DATA[i+1]; + int month = DATA[i+2]; + int dom = DATA[i+3]; + int year2, month2, dom2; + long millis = ((long)julian - EPOCH_JULIAN) * ONE_DAY; + String s; + + // Test Gregorian computation + cal.setGregorianChange(PURE_GREGORIAN); + cal.clear(); + cal.set(year, month, dom); + long calMillis = cal.getTime().getTime(); + long delta = calMillis - millis; + cal.setTime(new Date(millis)); + year2 = cal.get(Calendar.YEAR); + month2 = cal.get(Calendar.MONTH); + dom2 = cal.get(Calendar.DAY_OF_MONTH); + s = "G " + year + "-" + (month+1-Calendar.JANUARY) + "-" + dom + + " => " + calMillis + + " (" + ((float)delta/ONE_DAY) + " day delta) => " + + year2 + "-" + (month2+1-Calendar.JANUARY) + "-" + dom2; + if (delta != 0 || year != year2 || month != month2 || + dom != dom2) { + errln(s + " FAIL"); + } else { + logln(s); + } + + // Test Julian computation + year = DATA[i+4]; + month = DATA[i+5]; + dom = DATA[i+6]; + cal.setGregorianChange(PURE_JULIAN); + cal.clear(); + cal.set(year, month, dom); + calMillis = cal.getTime().getTime(); + delta = calMillis - millis; + cal.setTime(new Date(millis)); + year2 = cal.get(Calendar.YEAR); + month2 = cal.get(Calendar.MONTH); + dom2 = cal.get(Calendar.DAY_OF_MONTH); + s = "J " + year + "-" + (month+1-Calendar.JANUARY) + "-" + dom + + " => " + calMillis + + " (" + ((float)delta/ONE_DAY) + " day delta) => " + + year2 + "-" + (month2+1-Calendar.JANUARY) + "-" + dom2; + if (delta != 0 || year != year2 || month != month2 || + dom != dom2) { + errln(s + " FAIL"); + } else { + logln(s); + } + } + + cal.setGregorianChange(new Date(1582-1900, Calendar.OCTOBER, 15)); + auxMapping(cal, 1582, Calendar.OCTOBER, 4); + auxMapping(cal, 1582, Calendar.OCTOBER, 15); + auxMapping(cal, 1582, Calendar.OCTOBER, 16); + for (int y = 800; y < 3000; y += 1+(int)100*Math.random()) { + for (int m = Calendar.JANUARY; m <= Calendar.DECEMBER; ++m) { + auxMapping(cal, y, m, 15); + } + } + } + finally { + TimeZone.setDefault(saveZone); + } + } + private void auxMapping(Calendar cal, int y, int m, int d) { + cal.clear(); + cal.set(y, m, d); + long millis = cal.getTime().getTime(); + cal.setTime(new Date(millis)); + int year2 = cal.get(Calendar.YEAR); + int month2 = cal.get(Calendar.MONTH); + int dom2 = cal.get(Calendar.DAY_OF_MONTH); + if (y != year2 || m != month2 || dom2 != d) + errln("Round-trip failure: " + y + "-" + (m+1) + "-"+d+" =>ms=> " + + year2 + "-" + (month2+1) + "-" + dom2); + } + + public void TestGenericAPI() { + if (Locale.getDefault().equals(new Locale("th", "TH"))) { + return; + } + + String str; + + Date when = new Date(90, Calendar.APRIL, 15); + + String tzid = "TestZone"; + int tzoffset = 123400; + + SimpleTimeZone zone = new SimpleTimeZone(tzoffset, tzid); + Calendar cal = (Calendar)Calendar.getInstance((SimpleTimeZone)zone.clone()); + + if (!zone.equals(cal.getTimeZone())) errln("FAIL: Calendar.getTimeZone failed"); + + Calendar cal2 = Calendar.getInstance(cal.getTimeZone()); + + cal.setTime(when); + cal2.setTime(when); + + if (!(cal.equals(cal2))) errln("FAIL: Calendar.operator== failed"); + // if ((*cal != *cal2)) errln("FAIL: Calendar.operator!= failed"); + if (!cal.equals(cal2) || + cal.before(cal2) || + cal.after(cal2)) errln("FAIL: equals/before/after failed"); + + cal2.setTime(new Date(when.getTime() + 1000)); + if (cal.equals(cal2) || + cal2.before(cal) || + cal.after(cal2)) errln("FAIL: equals/before/after failed"); + + cal.roll(Calendar.SECOND, true); + if (!cal.equals(cal2) || + cal.before(cal2) || + cal.after(cal2)) errln("FAIL: equals/before/after failed"); + + // Roll back to January + cal.roll(Calendar.MONTH, (int)(1 + Calendar.DECEMBER - cal.get(Calendar.MONTH))); + if (cal.equals(cal2) || + cal2.before(cal) || + cal.after(cal2)) errln("FAIL: equals/before/after failed"); + + // C++ only + /* TimeZone z = cal.orphanTimeZone(); + if (z.getID(str) != tzid || + z.getRawOffset() != tzoffset) + errln("FAIL: orphanTimeZone failed"); + */ + + for (int i = 0; i < 2; ++i) { + boolean lenient = ( i > 0 ); + cal.setLenient(lenient); + if (lenient != cal.isLenient()) errln("FAIL: setLenient/isLenient failed"); + // Later: Check for lenient behavior + } + + int i; + for (i = Calendar.SUNDAY; i <= Calendar.SATURDAY; ++i) { + cal.setFirstDayOfWeek(i); + if (cal.getFirstDayOfWeek() != i) errln("FAIL: set/getFirstDayOfWeek failed"); + } + + for (i = 0; i <= 7; ++i) { + cal.setMinimalDaysInFirstWeek(i); + if (cal.getMinimalDaysInFirstWeek() != i) errln("FAIL: set/getFirstDayOfWeek failed"); + } + + for (i = 0; i < Calendar.FIELD_COUNT; ++i) { + if (cal.getMinimum(i) != cal.getGreatestMinimum(i)) + errln("FAIL: getMinimum doesn't match getGreatestMinimum for field " + i); + if (cal.getLeastMaximum(i) > cal.getMaximum(i)) + errln("FAIL: getLeastMaximum larger than getMaximum for field " + i); + if (cal.getMinimum(i) >= cal.getMaximum(i)) + errln("FAIL: getMinimum not less than getMaximum for field " + i); + } + + cal.setTimeZone(TimeZone.getDefault()); + cal.clear(); + cal.set(1984, 5, 24); + if (cal.getTime().getTime() != new Date(84, 5, 24).getTime()) { + errln("FAIL: Calendar.set(3 args) failed"); + logln(" Got: " + cal.getTime() + " Expected: " + new Date(84, 5, 24)); + } + + cal.clear(); + cal.set(1985, 3, 2, 11, 49); + if (cal.getTime().getTime() != new Date(85, 3, 2, 11, 49).getTime()) { + errln("FAIL: Calendar.set(5 args) failed"); + logln(" Got: " + cal.getTime() + " Expected: " + new Date(85, 3, 2, 11, 49)); + } + + cal.clear(); + cal.set(1995, 9, 12, 1, 39, 55); + if (cal.getTime().getTime() != new Date(95, 9, 12, 1, 39, 55).getTime()) { + errln("FAIL: Calendar.set(6 args) failed"); + logln(" Got: " + cal.getTime() + " Expected: " + new Date(95, 9, 12, 1, 39, 55)); + } + + cal.getTime(); + for (i = 0; i < Calendar.FIELD_COUNT; ++i) { + switch(i) { + case Calendar.YEAR: case Calendar.MONTH: case Calendar.DATE: + case Calendar.HOUR_OF_DAY: case Calendar.MINUTE: case Calendar.SECOND: + if (!cal.isSet(i)) + errln("FAIL: !Calendar.isSet test failed: " + calendarFieldNames[i]); + break; + default: + if (cal.isSet(i)) + errln("FAIL: Calendar.isSet test failed: " + calendarFieldNames[i]); + } + cal.clear(i); + if (cal.isSet(i)) errln("FAIL: Calendar.clear/isSet failed"); + } + + // delete cal; + // delete cal2; + + Locale[] loc = Calendar.getAvailableLocales(); + long count = loc.length; + if (count < 1 || loc == null) { + errln("FAIL: getAvailableLocales failed"); + } + else { + for (i = 0; i < count; ++i) { + cal = Calendar.getInstance(loc[i]); + // delete cal; + } + } + + cal = Calendar.getInstance(TimeZone.getDefault(), Locale.ENGLISH); + // delete cal; + + cal = Calendar.getInstance(zone, Locale.ENGLISH); + // delete cal; + + GregorianCalendar gc = new GregorianCalendar(zone); + // delete gc; + + gc = new GregorianCalendar(Locale.ENGLISH); + // delete gc; + + gc = new GregorianCalendar(Locale.ENGLISH); + // delete gc; + + gc = new GregorianCalendar(zone, Locale.ENGLISH); + // delete gc; + + gc = new GregorianCalendar(zone); + // delete gc; + + gc = new GregorianCalendar(1998, 10, 14, 21, 43); + if (gc.getTime().getTime() != new Date(98, 10, 14, 21, 43).getTime()) + errln("FAIL: new GregorianCalendar(ymdhm) failed"); + // delete gc; + + gc = new GregorianCalendar(1998, 10, 14, 21, 43, 55); + if (gc.getTime().getTime() != new Date(98, 10, 14, 21, 43, 55).getTime()) + errln("FAIL: new GregorianCalendar(ymdhms) failed"); + + // C++ only: + // GregorianCalendar gc2 = new GregorianCalendar(Locale.ENGLISH); + // gc2 = gc; + // if (gc2 != gc || !(gc2 == gc)) errln("FAIL: GregorianCalendar assignment/operator==/operator!= failed"); + // delete gc; + // delete z; + } + + // Verify Roger Webster's bug + public void TestRog() { + GregorianCalendar gc = new GregorianCalendar(); + + int year = 1997, month = Calendar.APRIL, date = 1; + gc.set(year, month, date); // April 1, 1997 + + gc.set(Calendar.HOUR_OF_DAY, 23); + gc.set(Calendar.MINUTE, 0); + gc.set(Calendar.SECOND, 0); + gc.set(Calendar.MILLISECOND, 0); + + for (int i = 0; i < 9; i++, gc.add(Calendar.DATE, 1)) { + if (gc.get(Calendar.YEAR) != year || + gc.get(Calendar.MONTH) != month || + gc.get(Calendar.DATE) != (date + i)) + errln("FAIL: Date " + gc.getTime() + " wrong"); + } + } + + // Verify DAY_OF_WEEK + public void TestDOW943() { + dowTest(false); + dowTest(true); + } + + void dowTest(boolean lenient) { + GregorianCalendar cal = new GregorianCalendar(); + cal.set(1997, Calendar.AUGUST, 12); // Wednesday + cal.getTime(); // Force update + cal.setLenient(lenient); + cal.set(1996, Calendar.DECEMBER, 1); // Set the date to be December 1, 1996 + int dow = cal.get(Calendar.DAY_OF_WEEK); + int min = cal.getMinimum(Calendar.DAY_OF_WEEK); + int max = cal.getMaximum(Calendar.DAY_OF_WEEK); + if (dow < min || dow > max) errln("FAIL: Day of week " + dow + " out of range"); + if (dow != Calendar.SUNDAY) { + errln("FAIL2: Day of week should be SUNDAY; is " + dow + ": " + cal.getTime()); + } + if (min != Calendar.SUNDAY || max != Calendar.SATURDAY) errln("FAIL: Min/max bad"); + } + + // Verify that the clone method produces distinct objects with no + // unintentionally shared fields. + public void TestClonesUnique908() { + Calendar c = Calendar.getInstance(); + Calendar d = (Calendar)c.clone(); + c.set(Calendar.MILLISECOND, 123); + d.set(Calendar.MILLISECOND, 456); + if (c.get(Calendar.MILLISECOND) != 123 || + d.get(Calendar.MILLISECOND) != 456) { + errln("FAIL: Clones share fields"); + } + } + + // Verify effect of Gregorian cutoff value + public void TestGregorianChange768() { + boolean b; + GregorianCalendar c = new GregorianCalendar(); + logln("With cutoff " + c.getGregorianChange()); + logln(" isLeapYear(1800) = " + (b=c.isLeapYear(1800))); + logln(" (should be FALSE)"); + if (b != false) errln("FAIL"); + c.setGregorianChange(new Date(0, 0, 1)); // Jan 1 1900 + logln("With cutoff " + c.getGregorianChange()); + logln(" isLeapYear(1800) = " + (b=c.isLeapYear(1800))); + logln(" (should be TRUE)"); + if (b != true) errln("FAIL"); + } + + // Test the correct behavior of the disambiguation algorithm. + public void TestDisambiguation765() throws Exception { + Locale savedLocale = Locale.getDefault(); + try { + Locale.setDefault(Locale.US); + Calendar c = Calendar.getInstance(); + c.setLenient(false); + + c.clear(); + c.set(Calendar.YEAR, 1997); + c.set(Calendar.MONTH, Calendar.JUNE); + c.set(Calendar.DATE, 3); + + verify765("1997 third day of June = ", c, 1997, Calendar.JUNE, 3); + + c.clear(); + c.set(Calendar.YEAR, 1997); + c.set(Calendar.DAY_OF_WEEK, Calendar.TUESDAY); + c.set(Calendar.MONTH, Calendar.JUNE); + c.set(Calendar.DAY_OF_WEEK_IN_MONTH, 1); + verify765("1997 first Tuesday in June = ", c, 1997, Calendar.JUNE, 3); + + c.setLenient(true); // for 4944795 + c.clear(); + c.set(Calendar.YEAR, 1997); + c.set(Calendar.DAY_OF_WEEK, Calendar.TUESDAY); + c.set(Calendar.MONTH, Calendar.JUNE); + c.set(Calendar.DAY_OF_WEEK_IN_MONTH, -1); + verify765("1997 last Tuesday in June = ", c, 1997, Calendar.JUNE, 24); + + c.setLenient(false); + IllegalArgumentException e = null; + try { + c.clear(); + c.set(Calendar.YEAR, 1997); + c.set(Calendar.DAY_OF_WEEK, Calendar.TUESDAY); + c.set(Calendar.MONTH, Calendar.JUNE); + c.set(Calendar.DAY_OF_WEEK_IN_MONTH, 0); + c.getTime(); + } + catch (IllegalArgumentException ex) { + e = ex; + } + verify765("1997 zero-th Tuesday in June = ", e); + + c.clear(); + c.set(Calendar.YEAR, 1997); + c.set(Calendar.DAY_OF_WEEK, Calendar.TUESDAY); + c.set(Calendar.MONTH, Calendar.JUNE); + c.set(Calendar.WEEK_OF_MONTH, 1); + verify765("1997 Tuesday in week 1 of June = ", c, 1997, Calendar.JUNE, 3); + + c.clear(); + c.set(Calendar.YEAR, 1997); + c.set(Calendar.DAY_OF_WEEK, Calendar.TUESDAY); + c.set(Calendar.MONTH, Calendar.JUNE); + c.set(Calendar.WEEK_OF_MONTH, 4); + verify765("1997 Tuesday in week 4 of June = ", c, 1997, Calendar.JUNE, 24); + + try { + c.clear(); + c.set(Calendar.YEAR, 1997); + c.set(Calendar.DAY_OF_WEEK, Calendar.TUESDAY); + c.set(Calendar.MONTH, Calendar.JUNE); + c.set(Calendar.WEEK_OF_MONTH, 1); + verify765("1997 Tuesday in week 0 of June = ", c, 1997, Calendar.JUNE, 3); + } + catch (IllegalArgumentException ex) { + errln("FAIL: Exception seen: " + ex.getMessage()); + // ex.printStackTrace(log); + } + + c.clear(); + c.set(Calendar.YEAR, 1997); + c.set(Calendar.DAY_OF_WEEK, Calendar.TUESDAY); + c.set(Calendar.WEEK_OF_YEAR, 2); + verify765("1997 Tuesday in week 2 of year = ", c, 1997, Calendar.JANUARY, 7); + + c.clear(); + c.set(Calendar.YEAR, 1997); + c.set(Calendar.DAY_OF_WEEK, Calendar.TUESDAY); + c.set(Calendar.WEEK_OF_YEAR, 10); + verify765("1997 Tuesday in week 10 of year = ", c, 1997, Calendar.MARCH, 4); + + try { + c.clear(); + c.set(Calendar.YEAR, 1997); + c.set(Calendar.DAY_OF_WEEK, Calendar.TUESDAY); + c.set(Calendar.WEEK_OF_YEAR, 0); + verify765("1997 Tuesday in week 0 of year = ", c, 1996, Calendar.DECEMBER, 24); + throw new Exception("Fail: WEEK_OF_YEAR 0 should be illegal"); + } + catch (IllegalArgumentException ex) {} + } + finally { + Locale.setDefault(savedLocale); + } + } + void verify765(String msg, Calendar c, int year, int month, int day) { + if (c.get(Calendar.YEAR) == year && + c.get(Calendar.MONTH) == month && + c.get(Calendar.DATE) == day) { + logln("PASS: " + msg + c.getTime()); + } + else { + errln("FAIL: " + msg + c.getTime() + + "; expected " + + year + "/" + (month+1) + "/" + day); + } + } + // Called when e expected to be non-null + void verify765(String msg, IllegalArgumentException e) { + if (e == null) errln("FAIL: No IllegalArgumentException for " + msg); + else logln("PASS: " + msg + "IllegalArgument as expected"); + } + + // Test the behavior of GMT vs. local time + public void TestGMTvsLocal4064654() { + if (Locale.getDefault().equals(new Locale("th", "TH"))) { + return; + } + + // Sample output 1: + // % /usr/local/java/jdk1.1.3/solaris/bin/java test 1997 1 1 12 0 0 + // date = Wed Jan 01 04:00:00 PST 1997 + // offset for Wed Jan 01 04:00:00 PST 1997= -8hr + test4064654(1997, 1, 1, 12, 0, 0); + + // Sample output 2: + // % /usr/local/java/jdk1.1.3/solaris/bin/java test 1997 4 16 18 30 0 + // date = Wed Apr 16 10:30:00 PDT 1997 + // offset for Wed Apr 16 10:30:00 PDT 1997= -7hr + + // Note that in sample output 2 according to the offset, the gmt time + // of the result would be 1997 4 16 17 30 0 which is different from the + // input of 1997 4 16 18 30 0. + test4064654(1997, 4, 16, 18, 30, 0); + } + void test4064654(int yr, int mo, int dt, int hr, int mn, int sc) { + Date date; + Calendar gmtcal = Calendar.getInstance(); + gmtcal.setTimeZone(TimeZone.getTimeZone("Africa/Casablanca")); + gmtcal.set(yr, mo-1, dt, hr, mn, sc); + gmtcal.set(Calendar.MILLISECOND, 0); + + date = gmtcal.getTime(); + logln("date = "+date); + + Calendar cal = Calendar.getInstance(); + cal.setTimeZone(TimeZone.getTimeZone("America/Los_Angeles")); + cal.setTime(date); + + int offset = cal.getTimeZone().getOffset(cal.get(Calendar.ERA), + cal.get(Calendar.YEAR), + cal.get(Calendar.MONTH), + cal.get(Calendar.DATE), + cal.get(Calendar.DAY_OF_WEEK), + cal.get(Calendar.MILLISECOND)); + + logln("offset for "+date+"= "+(offset/1000/60/60.0) + "hr"); + + int utc = ((cal.get(Calendar.HOUR_OF_DAY) * 60 + + cal.get(Calendar.MINUTE)) * 60 + + cal.get(Calendar.SECOND)) * 1000 + + cal.get(Calendar.MILLISECOND) - offset; + + int expected = ((hr * 60 + mn) * 60 + sc) * 1000; + + if (utc != expected) + errln("FAIL: Discrepancy of " + + (utc - expected) + " millis = " + + ((utc-expected)/1000/60/60.0) + " hr"); + } + + // Verify that add and set work regardless of the order in which + // they are called. + public void TestAddSetOrder621() { + Date d = new Date(97, 4, 14, 13, 23, 45); + + Calendar cal = Calendar.getInstance (); + cal.setTime (d); + cal.add (Calendar.DATE, -5); + cal.set (Calendar.HOUR_OF_DAY, 0); + cal.set (Calendar.MINUTE, 0); + cal.set (Calendar.SECOND, 0); + // ma feb 03 00:00:00 GMT+00:00 1997 + String s = cal.getTime ().toString (); + + cal = Calendar.getInstance (); + cal.setTime (d); + cal.set (Calendar.HOUR_OF_DAY, 0); + cal.set (Calendar.MINUTE, 0); + cal.set (Calendar.SECOND, 0); + cal.add (Calendar.DATE, -5); + // ma feb 03 13:11:06 GMT+00:00 1997 + String s2 = cal.getTime ().toString (); + + if (s.equals(s2)) + logln("Pass: " + s + " == " + s2); + else + errln("FAIL: " + s + " != " + s2); + } + + // Verify that add works. + public void TestAdd520() { + int y = 1997, m = Calendar.FEBRUARY, d = 1; + GregorianCalendar temp = new GregorianCalendar( y, m, d ); + check520(temp, y, m, d); + + temp.add( temp.YEAR, 1 ); + y++; + check520(temp, y, m, d); + + temp.add( temp.MONTH, 1 ); + m++; + check520(temp, y, m, d); + + temp.add( temp.DATE, 1 ); + d++; + check520(temp, y, m, d); + + temp.add( temp.DATE, 2 ); + d += 2; + check520(temp, y, m, d); + + temp.add( temp.DATE, 28 ); + d = 1; ++m; + check520(temp, y, m, d); + } + void check520(Calendar c, int y, int m, int d) { + if (c.get(Calendar.YEAR) != y || + c.get(Calendar.MONTH) != m || + c.get(Calendar.DATE) != d) { + errln("FAILURE: Expected YEAR/MONTH/DATE of " + + y + "/" + (m+1) + "/" + d + + "; got " + + c.get(Calendar.YEAR) + "/" + + (c.get(Calendar.MONTH)+1) + "/" + + c.get(Calendar.DATE)); + } + else logln("Confirmed: " + + y + "/" + (m+1) + "/" + d); + } + + // Verify that setting fields works. This test fails when an exception is thrown. + public void TestFieldSet4781() { + try { + GregorianCalendar g = new GregorianCalendar(); + GregorianCalendar g2 = new GregorianCalendar(); + // At this point UTC value is set, various fields are not. + // Now set to noon. + g2.set(Calendar.HOUR, 12); + g2.set(Calendar.MINUTE, 0); + g2.set(Calendar.SECOND, 0); + // At this point the object thinks UTC is NOT set, but fields are set. + // The following line will result in IllegalArgumentException because + // it thinks the YEAR is set and it is NOT. + if (g2.equals(g)) + logln("Same"); + else + logln("Different"); + } + catch (IllegalArgumentException e) { + errln("Unexpected exception seen: " + e); + } + } + + // Test serialization of a Calendar object + public void TestSerialize337() { + Calendar cal = Calendar.getInstance(); + + boolean ok = false; + + try { + FileOutputStream f = new FileOutputStream(FILENAME); + ObjectOutput s = new ObjectOutputStream(f); + s.writeObject(PREFIX); + s.writeObject(cal); + s.writeObject(POSTFIX); + f.close(); + + FileInputStream in = new FileInputStream(FILENAME); + ObjectInputStream t = new ObjectInputStream(in); + String pre = (String)t.readObject(); + Calendar c = (Calendar)t.readObject(); + String post = (String)t.readObject(); + in.close(); + + ok = pre.equals(PREFIX) && + post.equals(POSTFIX) && + cal.equals(c); + + File fl = new File(FILENAME); + fl.delete(); + } + catch (IOException e) { + errln("FAIL: Exception received:"); + // e.printStackTrace(log); + } + catch (ClassNotFoundException e) { + errln("FAIL: Exception received:"); + // e.printStackTrace(log); + } + + if (!ok) errln("Serialization of Calendar object failed."); + } + static final String PREFIX = "abc"; + static final String POSTFIX = "def"; + static final String FILENAME = "tmp337.bin"; + + // Try to zero out the seconds field + public void TestSecondsZero121() { + Calendar cal = new GregorianCalendar(); + // Initialize with current date/time + cal.setTime(new Date()); + // Round down to minute + cal.set(Calendar.SECOND, 0); + Date d = cal.getTime(); + String s = d.toString(); + if (s.indexOf(":00 ") < 0) errln("Expected to see :00 in " + s); + } + + // Try various sequences of add, set, and get method calls. + public void TestAddSetGet0610() { + // + // Error case 1: + // - Upon initialization calendar fields, millis = System.currentTime + // - After set is called fields are initialized, time is not + // - Addition uses millis which are still *now* + // + { + Calendar calendar = new GregorianCalendar( ) ; + calendar.set( 1993, Calendar.JANUARY, 4 ) ; + logln( "1A) " + value( calendar ) ) ; + calendar.add( Calendar.DATE, 1 ) ; + String v = value(calendar); + logln( "1B) " + v ); + logln( "--) 1993/0/5" ) ; + if (!v.equals(EXPECTED_0610)) errln("Expected " + EXPECTED_0610 + + "; saw " + v); + } + + // + // Error case 2: + // - Upon initialization calendar fields set, millis = 0 + // - Addition uses millis which are still 1970, 0, 1 + // + + { + Calendar calendar = new GregorianCalendar( 1993, Calendar.JANUARY, 4 ) ; + logln( "2A) " + value( calendar ) ) ; + calendar.add( Calendar.DATE, 1 ) ; + String v = value(calendar); + logln( "2B) " + v ); + logln( "--) 1993/0/5" ) ; + if (!v.equals(EXPECTED_0610)) errln("Expected " + EXPECTED_0610 + + "; saw " + v); + } + + // + // Error case 3: + // - Upon initialization calendar fields, millis = 0 + // - getTime( ) is called which forces the millis to be set + // - Addition uses millis which are correct + // + + { + Calendar calendar = new GregorianCalendar( 1993, Calendar.JANUARY, 4 ) ; + logln( "3A) " + value( calendar ) ) ; + calendar.getTime( ) ; + calendar.add( Calendar.DATE, 1 ) ; + String v = value(calendar); + logln( "3B) " + v ) ; + logln( "--) 1993/0/5" ) ; + if (!v.equals(EXPECTED_0610)) errln("Expected " + EXPECTED_0610 + + "; saw " + v); + } + } + static String value( Calendar calendar ) { + return( calendar.get( Calendar.YEAR ) + "/" + + calendar.get( Calendar.MONTH ) + "/" + + calendar.get( Calendar.DATE ) ) ; + } + static String EXPECTED_0610 = "1993/0/5"; + + // Test that certain fields on a certain date are as expected. + public void TestFields060() { + int year = 1997; + int month = java.util.Calendar.OCTOBER; //october + int dDate = 22; //DAYOFWEEK should return 3 for Wednesday + GregorianCalendar calendar = null; + + calendar = new GregorianCalendar( year, month, dDate); + for (int i = 0; i < EXPECTED_FIELDS.length; ) { + int field = EXPECTED_FIELDS[i++]; + int expected = EXPECTED_FIELDS[i++]; + if (calendar.get(field) != expected) { + errln("Expected field " + field + " to have value " + expected + + "; received " + calendar.get(field) + " instead"); + } + } + } + static int EXPECTED_FIELDS[] = { + Calendar.YEAR, 1997, + Calendar.MONTH, Calendar.OCTOBER, + Calendar.DAY_OF_MONTH, 22, + Calendar.DAY_OF_WEEK, Calendar.WEDNESDAY, + Calendar.DAY_OF_WEEK_IN_MONTH, 4, + Calendar.DAY_OF_YEAR, 295 + }; + + static final String[] calendarFieldNames = { + /* 0 */ "ERA", + /* 1 */ "YEAR", + /* 2 */ "MONTH", + /* 3 */ "WEEK_OF_YEAR", + /* 4 */ "WEEK_OF_MONTH", + /* 5 */ "DAY_OF_MONTH", + /* 6 */ "DAY_OF_YEAR", + /* 7 */ "DAY_OF_WEEK", + /* 8 */ "DAY_OF_WEEK_IN_MONTH", + /* 9 */ "AM_PM", + /* 10 */ "HOUR", + /* 11 */ "HOUR_OF_DAY", + /* 12 */ "MINUTE", + /* 13 */ "SECOND", + /* 14 */ "MILLISECOND", + /* 15 */ "ZONE_OFFSET", + /* 16 */ "DST_OFFSET" + }; + + // Verify that the fields are as expected (mostly zero) at the epoch start. + // Note that we adjust for the default timezone to get most things to zero. + public void TestEpochStartFields() { + if (Locale.getDefault().equals(new Locale("th", "TH"))) { + return; + } + + String[][] lt = { + {"en", "US", "US/Pacific"}, /* First day = 1, Minimum day = 1 */ + {"en", "US", "America/Anchorage"}, /* First day = 1, Minimum day = 1 */ + {"en", "TO", "Pacific/Tongatapu"}, /* First day = 1, Minimum day = 1 */ + {"en", "MH", "Pacific/Majuro"}, /* First day = 1, Minimum day = 1 */ + {"ja", "JP", "Asia/Tokyo"}, /* First day = 1, Minimum day = 1 */ + {"iw", "IL", "Asia/Jerusalem"}, /* First day = 1, Minimum day = 1 */ + {"hi", "IN", "Asia/Jakarta"}, /* First day = 1, Minimum day = 1 */ + {"en", "GB", "Europe/London"}, /* First day = 2, Minimum day = 1 */ + {"en", "GB", "GMT"}, /* First day = 2, Minimum day = 1 */ + {"de", "DE", "Europe/Berlin"}, /* First day = 2, Minimum day = 4 */ + {"ar", "EG", "Africa/Cairo"}, /* First day = 7, Minimum day = 1 */ + }; + + int[][] goldenData = { + {1, 1970, 0, 1, 1, 1, 1, 5, 1, 0, 0, 0, 0, 0, 0, -28800000, 0}, + {1, 1969, 11, 1, 5, 31, 365, 4, 5, 1, 11, 23, 0, 0, 0, -36000000, 0}, + {1, 1970, 0, 1, 1, 1, 1, 5, 1, 0, 0, 0, 0, 0, 0, 46800000, 0}, + {1, 1970, 0, 1, 1, 1, 1, 5, 1, 0, 0, 0, 0, 0, 0, 43200000, 0}, + {1, 1970, 0, 1, 1, 1, 1, 5, 1, 0, 0, 0, 0, 0, 0, 32400000, 0}, + {1, 1970, 0, 1, 1, 1, 1, 5, 1, 0, 0, 0, 0, 0, 0, 7200000, 0}, + {1, 1970, 0, 1, 1, 1, 1, 5, 1, 0, 0, 0, 0, 0, 0, 25200000, 0}, + {1, 1970, 0, 1, 1, 1, 1, 5, 1, 0, 1, 1, 0, 0, 0, 3600000, 0}, + {1, 1970, 0, 1, 1, 1, 1, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0}, + {1, 1970, 0, 1, 1, 1, 1, 5, 1, 0, 0, 0, 0, 0, 0, 3600000, 0}, + {1, 1970, 0, 1, 1, 1, 1, 5, 1, 0, 0, 0, 0, 0, 0, 7200000, 0}, + }; + + Locale savedLocale = Locale.getDefault(); + TimeZone savedTimeZone = TimeZone.getDefault(); + + try { + for (int j = 0; j < lt.length; j++) { + Locale l = new Locale(lt[j][0], lt[j][1]); + TimeZone z = TimeZone.getTimeZone(lt[j][2]); + Locale.setDefault(l); + TimeZone.setDefault(z); + Calendar c = Calendar.getInstance(); + Date d = new Date(-z.getRawOffset()); + + int val; + int[] EPOCH_FIELDS = goldenData[j]; + c.setTime(d); + + boolean err = false; + for (int i = 0; i < calendarFieldNames.length; ++i) { + if ((val = c.get(i)) != EPOCH_FIELDS[i]) { + errln("Wrong value: " + val + + " for field(" + calendarFieldNames[i] + + "), expected: " + EPOCH_FIELDS[i]); + err = true; + } + } + if (err) { + errln("Failed: \n\tDate=" + d + "\n\tTimeZone=" + z + + "\n\tLocale=" + l + "\n\tCalendar=" + c); + } + } + } + finally { + Locale.setDefault(savedLocale); + TimeZone.setDefault(savedTimeZone); + } + } + + // Verify that as you add days to the calendar (e.g., 24 day periods), + // the day of the week shifts in the expected pattern. + public void TestDOWProgression() { + Calendar cal = + new GregorianCalendar(1972, Calendar.OCTOBER, 26); + marchByDelta(cal, 24); // Last parameter must be != 0 modulo 7 + } + + // Supply a delta which is not a multiple of 7. + void marchByDelta(Calendar cal, int delta) { + Calendar cur = (Calendar)cal.clone(); + int initialDOW = cur.get(Calendar.DAY_OF_WEEK); + int DOW, newDOW = initialDOW; + do { + DOW = newDOW; + logln("DOW = " + DOW + " " + cur.getTime()); + + cur.add(Calendar.DAY_OF_WEEK, delta); + newDOW = cur.get(Calendar.DAY_OF_WEEK); + int expectedDOW = 1 + (DOW + delta - 1) % 7; + if (newDOW != expectedDOW) { + errln("Day of week should be " + expectedDOW + + " instead of " + newDOW + " on " + cur.getTime()); + return; + } + } + while (newDOW != initialDOW); + } + + public void TestActualMinMax() { + Calendar cal = new GregorianCalendar(1967, Calendar.MARCH, 10); + cal.setFirstDayOfWeek(Calendar.SUNDAY); + cal.setMinimalDaysInFirstWeek(3); + + if (cal.getActualMinimum(Calendar.DAY_OF_MONTH) != 1) + errln("Actual minimum date for 3/10/1967 should have been 1; got " + + cal.getActualMinimum(Calendar.DAY_OF_MONTH)); + if (cal.getActualMaximum(Calendar.DAY_OF_MONTH) != 31) + errln("Actual maximum date for 3/10/1967 should have been 31; got " + + cal.getActualMaximum(Calendar.DAY_OF_MONTH)); + + cal.set(Calendar.MONTH, Calendar.FEBRUARY); + if (cal.getActualMaximum(Calendar.DAY_OF_MONTH) != 28) + errln("Actual maximum date for 2/10/1967 should have been 28; got " + + cal.getActualMaximum(Calendar.DAY_OF_MONTH)); + if (cal.getActualMaximum(Calendar.DAY_OF_YEAR) != 365) + errln("Number of days in 1967 should have been 365; got " + + cal.getActualMaximum(Calendar.DAY_OF_YEAR)); + + cal.set(Calendar.YEAR, 1968); + if (cal.getActualMaximum(Calendar.DAY_OF_MONTH) != 29) + errln("Actual maximum date for 2/10/1968 should have been 29; got " + + cal.getActualMaximum(Calendar.DAY_OF_MONTH)); + if (cal.getActualMaximum(Calendar.DAY_OF_YEAR) != 366) + errln("Number of days in 1968 should have been 366; got " + + cal.getActualMaximum(Calendar.DAY_OF_YEAR)); + // Using week settings of SUNDAY/3 (see above) + if (cal.getActualMaximum(Calendar.WEEK_OF_YEAR) != 52) + errln("Number of weeks in 1968 should have been 52; got " + + cal.getActualMaximum(Calendar.WEEK_OF_YEAR)); + + cal.set(Calendar.YEAR, 1976); + // Using week settings of SUNDAY/3 (see above) + if (cal.getActualMaximum(Calendar.WEEK_OF_YEAR) != 53) + errln("Number of weeks in 1976 should have been 53; got " + + cal.getActualMaximum(Calendar.WEEK_OF_YEAR)); + } + + public void TestRoll() { + Calendar cal = new GregorianCalendar(1997, Calendar.JANUARY, 31); + + int[] dayValues = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, 31 }; + + for (int i = 0; i < dayValues.length; i++) { + Calendar cal2 = (Calendar)cal.clone(); + cal2.roll(Calendar.MONTH, i); + if (cal2.get(Calendar.DAY_OF_MONTH) != dayValues[i]) + errln("Rolling the month in 1/31/1997 up by " + i + " should have yielded " + + ((i + 1) % 12) + "/" + dayValues[i] + "/1997, but actually yielded " + + ((i + 1) % 12) + "/" + cal2.get(Calendar.DAY_OF_MONTH) + "/1997."); + } + + cal.set(1996, Calendar.FEBRUARY, 29); + + int[] monthValues = { 1, 2, 2, 2, 1, 2, 2, 2, 1, 2 }; + int[] dayValues2 = { 29, 1, 1, 1, 29, 1, 1, 1, 29, 1 }; + + for (int i = 0; i < dayValues2.length; i++) { + Calendar cal2 = (Calendar)cal.clone(); + cal2.roll(Calendar.YEAR, i); + if (cal2.get(Calendar.DAY_OF_MONTH) != dayValues2[i] || cal2.get(Calendar.MONTH) + != monthValues[i]) + errln("Rolling the year in 2/29/1996 up by " + i + " should have yielded " + + (monthValues[i] + 1) + "/" + dayValues2[i] + "/" + + (1996 + i) + ", but actually yielded " + + (cal2.get(Calendar.MONTH) + 1) + "/" + + cal2.get(Calendar.DAY_OF_MONTH) + "/" + (1996 + i) + "."); + } + + // Test rolling hour of day + cal.set(Calendar.HOUR_OF_DAY, 0); + cal.roll(Calendar.HOUR_OF_DAY, -2); + int f = cal.get(Calendar.HOUR_OF_DAY); + if (f != 22) errln("Rolling HOUR_OF_DAY=0 delta=-2 gave " + f + " Wanted 22"); + cal.roll(Calendar.HOUR_OF_DAY, 5); + f = cal.get(Calendar.HOUR_OF_DAY); + if (f != 3) errln("Rolling HOUR_OF_DAY=22 delta=5 gave " + f + " Wanted 3"); + cal.roll(Calendar.HOUR_OF_DAY, 21); + f = cal.get(Calendar.HOUR_OF_DAY); + if (f != 0) errln("Rolling HOUR_OF_DAY=3 delta=21 gave " + f + " Wanted 0"); + + // Test rolling hour + cal.set(Calendar.HOUR_OF_DAY, 0); + cal.roll(Calendar.HOUR, -2); + f = cal.get(Calendar.HOUR); + if (f != 10) errln("Rolling HOUR=0 delta=-2 gave " + f + " Wanted 10"); + cal.roll(Calendar.HOUR, 5); + f = cal.get(Calendar.HOUR); + if (f != 3) errln("Rolling HOUR=10 delta=5 gave " + f + " Wanted 3"); + cal.roll(Calendar.HOUR, 9); + f = cal.get(Calendar.HOUR); + if (f != 0) errln("Rolling HOUR=3 delta=9 gave " + f + " Wanted 0"); + } + + /* + * Confirm that multiple calls to Calendar.set() works correctly. + */ + public void Test4374886() { + Locale savedLocale = Locale.getDefault(); + TimeZone savedTimeZone = TimeZone.getDefault(); + + try { + Locale.setDefault(Locale.US); + TimeZone.setDefault(TimeZone.getTimeZone("PST")); + + Calendar cal = Calendar.getInstance(); + cal.set(Calendar.YEAR, 2001); + cal.set(Calendar.MONTH, Calendar.OCTOBER); + cal.set(Calendar.WEEK_OF_YEAR, 4); + cal.set(Calendar.DAY_OF_WEEK, 2); + + if (cal.get(Calendar.YEAR) != 2001 || + cal.get(Calendar.MONTH) != Calendar.JANUARY || + cal.get(Calendar.DATE) != 22 || + cal.get(Calendar.DAY_OF_WEEK) != Calendar.MONDAY) { + errln("Failed : got " + cal.getTime() + ", expected Mon Jan 22, 2001"); + } + } + finally { + Locale.setDefault(savedLocale); + TimeZone.setDefault(savedTimeZone); + } + } +} + +//eof diff --git a/jdk/test/java/util/Calendar/CldrFormatNamesTest.java b/jdk/test/java/util/Calendar/CldrFormatNamesTest.java index 4b1588653ef..c8e2aad735b 100644 --- a/jdk/test/java/util/Calendar/CldrFormatNamesTest.java +++ b/jdk/test/java/util/Calendar/CldrFormatNamesTest.java @@ -23,7 +23,7 @@ /* * @test - * @bug 8004489 8006509 8008577 + * @bug 8004489 8006509 8008577 8145136 * @summary Unit test for CLDR FormatData resources * @modules java.base/sun.util.locale.provider * jdk.localedata @@ -52,7 +52,7 @@ public class CldrFormatNamesTest { "Gy\u5e74M\u6708d\u65e5EEEE", "Gy\u5e74M\u6708d\u65e5", "Gy\u5e74M\u6708d\u65e5", - "Gyy/MM/dd", + "GGGGGy/M/d", }, "java.time.roc.DatePatterns", new String[] { "Gy\u5e74M\u6708d\u65e5EEEE", diff --git a/jdk/test/java/util/Calendar/FieldStateTest.java b/jdk/test/java/util/Calendar/FieldStateTest.java new file mode 100644 index 00000000000..caa6f219a24 --- /dev/null +++ b/jdk/test/java/util/Calendar/FieldStateTest.java @@ -0,0 +1,216 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4860664 4916815 4867075 + * @library /java/text/testlib + * @build Koyomi + * @run main FieldStateTest + * @summary Unit tests for internal fields states. + */ + +import java.util.Date; +import java.util.Locale; +import java.util.TimeZone; + +import static java.util.Calendar.*; + +public class FieldStateTest extends IntlTest { + + public static void main(String[] args) throws Exception { + Locale reservedLocale = Locale.getDefault(); + TimeZone reservedTimeZone = TimeZone.getDefault(); + try { + TimeZone.setDefault(TimeZone.getTimeZone("GMT")); + Locale.setDefault(Locale.US); + + new FieldStateTest().run(args); + } finally { + // restore the reserved locale and time zone + Locale.setDefault(reservedLocale); + TimeZone.setDefault(reservedTimeZone); + } + } + + public void TestFieldState() { + Koyomi cal = new Koyomi(); + logln("Right after instantialtion:"); + if (!cal.checkAllSet()) { + errln(cal.getMessage()); + } + + logln("Set date to 2003/10/31 after the instantiation:"); + cal.set(2003, OCTOBER, 31); + // let cal calculate the time + cal.getTime(); + // At this point, all fields have to be recalculated and + // happen to have the set-state from the instantiation. The + // three fields should have "externally set" and the rest of + // the fields have "computed". But we can't distinguish them + // outside the package. + if (!cal.checkAllSet()) { + errln(cal.getMessage()); + } + // Make sure that the correct date was produced. + if (!cal.checkInternalDate(2003, OCTOBER, 31, FRIDAY)) { + errln(cal.getMessage()); + } + + logln("Change to Monday of the week, which is 2003/10/27:"); + cal.set(DAY_OF_WEEK, MONDAY); + cal.getTime(); + if (!cal.checkDate(2003, OCTOBER, 27)) { + errln(cal.getMessage()); + } + + // The same operation didn't work after calling clear() before + // 1.5 because the set-state was just depends on its previous + // operations. After the instantiation, all the fields are set + // to "computed". But after calling clear(), the state becomes + // "unset". + logln("Set to 2003/10/31 after clear():"); + cal.clear(); + cal.set(2003, OCTOBER, 31); + cal.getTime(); + cal.set(DAY_OF_WEEK, MONDAY); + if (!cal.checkDate(2003, OCTOBER, 27, MONDAY)) { + errln(cal.getMessage()); + } + + logln("Set to 2003/10/31 after clear(), then to the 51st week of year (12/19):"); + cal.clear(); + cal.set(2003, OCTOBER, 31); + cal.getTime(); + cal.set(WEEK_OF_YEAR, 51); + if (!cal.checkFieldValue(WEEK_OF_YEAR, 51)) { + errln(cal.getMessage()); + } + if (!cal.checkDate(2003, DECEMBER, 19, FRIDAY)) { + errln(cal.getMessage()); + } + + logln("Set to 2003/10 Mon of 4th week (10/20: 43rd week of year, 293rd day):"); + cal.clear(); + cal.set(YEAR, 2003); + cal.set(MONTH, OCTOBER); + cal.set(DAY_OF_WEEK, MONDAY); + cal.set(WEEK_OF_MONTH, 4); + cal.getTime(); + if (!cal.checkFieldValue(DAY_OF_MONTH, 20)) { + errln(cal.getMessage()); + } + if (!cal.checkFieldValue(DAY_OF_YEAR, 293)) { + errln(cal.getMessage()); + } + if (!cal.checkFieldValue(WEEK_OF_YEAR, 43)) { + errln(cal.getMessage()); + } + + logln("Set to 2003/10 Mon of 43rd week of year (10/20: 4th week of month, 293rd day):"); + cal.clear(); + cal.set(YEAR, 2003); + cal.set(DAY_OF_WEEK, MONDAY); + cal.set(WEEK_OF_YEAR, 43); + cal.getTime(); + if (!cal.checkDate(2003, OCTOBER, 20, MONDAY)) { + errln(cal.getMessage()); + } + if (!cal.checkFieldValue(WEEK_OF_MONTH, 4)) { + errln(cal.getMessage()); + } + if (!cal.checkFieldValue(DAY_OF_YEAR, 293)) { + errln(cal.getMessage()); + } + + logln("Set day of week to SUNDAY and date to 2003/10/31. " + + "Then, getTime and set week of year to 43."); + cal.setTime(new Date(2003-1990, OCTOBER, 31)); + cal.set(DAY_OF_WEEK, SUNDAY); + cal.set(2003, OCTOBER, 31); // 2003/10/31 is Friday. + cal.set(ZONE_OFFSET, 0); + cal.set(DST_OFFSET, 0); + + // This call should change the day of week to FRIDAY since the + // selected field combination should be YEAR, MONTH and + // DAY_OF_MONTH. The other calendar fields must be normalized + // with the selected date. + cal.getTime(); + cal.set(WEEK_OF_YEAR, 43); + if (!cal.checkDate(2003, OCTOBER, 24, FRIDAY)) { + errln(cal.getMessage()); + } + } + + /* + * 4916815: REGRESSION: Problem with java.util.Calendar VM 1.4.2-b28 + */ + public void Test4916815() { + logln("Set date to 2003/9/26 (Fri). Roll to Aug and back to Sep. "+ + "Set dayofweek to Sunday which should be 2003/9/21."); + Koyomi cal = new Koyomi(); + cal.clear(); + // 2003/9/26 (Fri) + cal.set(2003, SEPTEMBER, 26); + // Go to August then back to September + cal.roll(MONTH, -1); + cal.roll(MONTH, +1); + Koyomi cal2 = (Koyomi) cal.clone(); + cal2.getTime(); + // Sunday of the week should be 2003/9/21. + cal2.set(DAY_OF_WEEK, SUNDAY); + if (!cal2.checkDate(2003, SEPTEMBER, 21, SUNDAY)) { + errln(cal2.getMessage()); + } + } + + /* + * 4867075: GregorianCalendar get() calls complete() internally, should getTime() too? + */ + public void Test4867075() { + Koyomi cal = new Koyomi(Locale.US); + cal.clear(); + cal.set(YEAR, 2004); + cal.set(WEEK_OF_YEAR, 1); + checkDate(cal, SUNDAY, 2003, DECEMBER, 28); + checkDate(cal, MONDAY, 2003, DECEMBER, 29); + checkDate(cal, TUESDAY, 2003, DECEMBER, 30); + checkDate(cal, WEDNESDAY, 2003, DECEMBER, 31); + checkDate(cal, THURSDAY, 2004, JANUARY, 1); + checkDate(cal, FRIDAY, 2004, JANUARY, 2); + checkDate(cal, SATURDAY, 2004, JANUARY, 3); + } + + private void checkDate(Koyomi cal, int dayOfWeek, + int expectedYear, int expectedMonth, int expectedDayOfMonth) { + cal.set(DAY_OF_WEEK, dayOfWeek); + cal.getTime(); + if (!cal.checkInternalDate(expectedYear, expectedMonth, expectedDayOfMonth, dayOfWeek)) { + errln(cal.getMessage()); + } + } + + static String toHexString(int x) { + return Integer.toHexString(x); + } +} diff --git a/jdk/test/java/util/Calendar/GregorianCutoverTest.java b/jdk/test/java/util/Calendar/GregorianCutoverTest.java new file mode 100644 index 00000000000..bd743ae19f6 --- /dev/null +++ b/jdk/test/java/util/Calendar/GregorianCutoverTest.java @@ -0,0 +1,324 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4359204 4928615 4743587 4956232 6459836 6549953 + * @library /java/text/testlib + * @build Koyomi + * @run main GregorianCutoverTest + * @summary Unit tests related to the Gregorian cutover support. + */ + +import java.util.Date; +import java.util.Locale; +import java.util.TimeZone; + +import static java.util.GregorianCalendar.*; + +public class GregorianCutoverTest extends IntlTest { + + public static void main(String[] args) throws Exception { + TimeZone tz = TimeZone.getDefault(); + Locale lc = Locale.getDefault(); + try { + TimeZone.setDefault(TimeZone.getTimeZone("GMT")); + Locale.setDefault(Locale.US); + + new GregorianCutoverTest().run(args); + } finally { + TimeZone.setDefault(tz); + Locale.setDefault(lc); + } + } + + /** + * 4359204: GregorianCalendar.get(cal.DAY_OF_YEAR) is inconsistent for year 1582 + */ + public void Test4359204() { + Koyomi cal = new Koyomi(); + + cal.set(1582, JANUARY, 1); + checkContinuity(cal, DAY_OF_YEAR); + checkContinuity(cal, WEEK_OF_YEAR); + cal.set(1582, OCTOBER, 1); + checkContinuity(cal, WEEK_OF_MONTH); + + // JCK tests the cutover date 1970-1-1 (Epoch) + cal.setGregorianChange(new Date(0)); + cal.set(1969, JANUARY, 1); + checkContinuity(cal, DAY_OF_YEAR); + checkContinuity(cal, WEEK_OF_YEAR); + cal.set(1969, DECEMBER, 1); + checkContinuity(cal, WEEK_OF_MONTH); + cal.set(1970, JANUARY, 1); + checkContinuity(cal, DAY_OF_YEAR); + checkContinuity(cal, WEEK_OF_YEAR); + + // Use large date (year >= 50000) + cal.setGregorianChange(new Date(50000-1900, JANUARY, 20)); + cal.set(49998, JANUARY, 1); + checkContinuity(cal, DAY_OF_YEAR); + checkContinuity(cal, WEEK_OF_YEAR); + cal.set(49999, JANUARY, 1); + checkContinuity(cal, DAY_OF_YEAR); + checkContinuity(cal, WEEK_OF_YEAR); + cal.set(50000, JANUARY, 20); + checkContinuity(cal, DAY_OF_YEAR); + checkContinuity(cal, WEEK_OF_YEAR); + + // Handling of "overlapping" dates may still be incorrect as + // of 1.5. Also, there's no way to disambiguate "overlapping" + // dates. + // millis=-112033929600000: date=-1581-10-15T00:00:00.000Z + cal.setGregorianChange(new Date(-112033929600000L)); + cal.set(ERA, AD); + cal.set(-1581, JANUARY, 1); + // The year should have 379 days. + checkContinuity(cal, DAY_OF_YEAR); + checkContinuity(cal, WEEK_OF_YEAR); + + logln("Default cutover"); + cal = new Koyomi(); + cal.set(1582, OCTOBER, 1); + logln(" roll --DAY_OF_MONTH from 1582/10/01"); + cal.roll(DAY_OF_MONTH, -1); + if (!cal.checkDate(1582, OCTOBER, 31)) { + errln(cal.getMessage()); + } + logln(" roll DAY_OF_MONTH+10 from 1582/10/31"); + cal.roll(DAY_OF_MONTH, +10); + if (!cal.checkDate(1582, OCTOBER, 20)) { + errln(cal.getMessage()); + } + logln(" roll DAY_OF_MONTH-10 from 1582/10/20"); + cal.roll(DAY_OF_MONTH, -10); + if (!cal.checkDate(1582, OCTOBER, 31)) { + errln(cal.getMessage()); + } + logln(" roll back one day further"); + cal.roll(DAY_OF_MONTH, +1); + if (!cal.checkDate(1582, OCTOBER, 1)) { + errln(cal.getMessage()); + } + + // should handle the gap between 1969/12/22 (Julian) to 1970/1/5 (Gregorian) + logln("Cutover date is 1970/1/5"); + cal.setGregorianChange(new Date(1970-1900, JANUARY, 5)); + cal.set(ERA, AD); + cal.set(YEAR, 1970); + logln(" Set DAY_OF_YEAR to the 28th day of 1970"); + cal.set(DAY_OF_YEAR, 28); + if (!cal.checkDate(1970, FEBRUARY, 1)) { + errln(cal.getMessage()); + } + if (!cal.checkFieldValue(WEEK_OF_YEAR, 5)) { + errln(cal.getMessage()); + } + logln(" 1969/12/22 should be the 356th day of the year."); + cal.set(1969, DECEMBER, 22); + if (!cal.checkFieldValue(DAY_OF_YEAR, 356)) { + errln(cal.getMessage()); + } + logln(" Set DAY_OF_YEAR to autual maximum."); + int actualMaxDayOfYear = cal.getActualMaximum(DAY_OF_YEAR); + if (actualMaxDayOfYear != 356) { + errln("actual maximum of DAY_OF_YEAR: got " + actualMaxDayOfYear + ", expected 356"); + } + cal.set(DAY_OF_YEAR, actualMaxDayOfYear); + if (!cal.checkDate(1969, DECEMBER, 22)) { + errln(cal.getMessage()); + } + cal.set(1969, DECEMBER, 22); + cal.roll(DAY_OF_YEAR, +1); + logln(" Set to 1969/12/22 and roll DAY_OF_YEAR++"); + if (!cal.checkDate(1969, JANUARY, 1)) { + errln(cal.getMessage()); + } + logln(" 1970/1/5 should be the first day of the year."); + cal.set(1970, JANUARY, 5); + if (!cal.checkFieldValue(DAY_OF_YEAR, 1)) { + errln(cal.getMessage()); + } + logln(" roll --DAY_OF_MONTH from 1970/1/5"); + cal.roll(DAY_OF_MONTH, -1); + if (!cal.checkDate(1970, JANUARY, 31)) { + errln(cal.getMessage()); + } + logln(" roll back one day of month"); + cal.roll(DAY_OF_MONTH, +1); + if (!cal.checkDate(1970, JANUARY, 5)) { + errln(cal.getMessage()); + } + + // Test "missing" dates in non-lenient. + cal = new Koyomi(); // new instance for the default cutover + cal.setLenient(false); + try { + // the next day of 1582/10/4 (Julian) is 1582/10/15 (Gregorian) + logln("1582/10/10 doesn't exit with the default cutover."); + cal.set(1582, OCTOBER, 10); + cal.getTime(); + errln(" Didn't throw IllegalArgumentException in non-lenient."); + } catch (IllegalArgumentException e) { + } + } + + private void checkContinuity(Koyomi cal, int field) { + cal.getTime(); + logln(Koyomi.getFieldName(field) + " starting on " + cal.toDateString()); + int max = cal.getActualMaximum(field); + for (int i = 1; i <= max; i++) { + logln(i + " " + cal.toDateString()); + if (!cal.checkFieldValue(field, i)) { + errln(" " + cal.toDateString() + ":\t" + cal.getMessage()); + } + cal.add(field, +1); + } + } + + /** + * 4928615: GregorianCalendar returns wrong dates after setGregorianChange + */ + public void Test4928615() { + Koyomi cal = new Koyomi(); + logln("Today is 2003/10/1 Gregorian."); + Date x = new Date(2003-1900, 10-1, 1); + cal.setTime(x); + + logln(" Changing the cutover date to yesterday..."); + cal.setGregorianChange(new Date(x.getTime() - (24*3600*1000))); + if (!cal.checkDate(2003, OCTOBER, 1)) { + errln(" " + cal.getMessage()); + } + logln(" Changing the cutover date to tomorrow..."); + cal.setGregorianChange(new Date(x.getTime() + (24*3600*1000))); + if (!cal.checkDate(2003, SEPTEMBER, 18)) { + errln(" " + cal.getMessage()); + } + } + + /** + * 4743587: GregorianCalendar.getLeastMaximum() returns wrong values + */ + public void Test4743587() { + Koyomi cal = new Koyomi(); + Koyomi cal2 = (Koyomi) cal.clone(); + logln("getLeastMaximum should handle cutover year.\n" + +" default cutover date"); + if (!cal.checkLeastMaximum(DAY_OF_YEAR, 365-10)) { + errln(" " + cal.getMessage()); + } + if (!cal.checkLeastMaximum(WEEK_OF_YEAR, 52-((10+6)/7))) { + errln(" " + cal.getMessage()); + } + // Corrected for 4956232 + if (!cal.checkLeastMaximum(DAY_OF_MONTH, 28)) { + errln(" " + cal.getMessage()); + } + if (!cal.checkLeastMaximum(WEEK_OF_MONTH, 3)) { + errln(" " + cal.getMessage()); + } + if (!cal.checkLeastMaximum(DAY_OF_WEEK_IN_MONTH, 3)) { + errln(" " + cal.getMessage()); + } + // make sure that getLeastMaximum calls didn't affect the date + if (!cal.equals(cal2)) { + errln(" getLeastMaximum calls modified the object."); + } + if (!cal.checkGreatestMinimum(DAY_OF_MONTH, 1)) { + errln(" " + cal.getMessage()); + } + + logln(" changing the date to 1582/10/20 for actual min/max tests"); + cal.set(1582, OCTOBER, 20); + if (!cal.checkActualMinimum(DAY_OF_MONTH, 1)) { + errln(" " + cal.getMessage()); + } + if (!cal.checkActualMaximum(DAY_OF_MONTH, 31)) { + errln(" " + cal.getMessage()); + } + + cal = new Koyomi(); + logln("Change the cutover date to 1970/1/5."); + cal.setGregorianChange(new Date(1970-1900, 0, 5)); + if (!cal.checkLeastMaximum(DAY_OF_YEAR, 356)) { + errln(" " + cal.getMessage()); + } + if (!cal.checkLeastMaximum(DAY_OF_MONTH, 22)) { + errln(" " + cal.getMessage()); + } + if (!cal.checkGreatestMinimum(DAY_OF_MONTH, 5)) { + errln(" " + cal.getMessage()); + } + cal.set(1970, JANUARY, 10); + if (!cal.checkActualMinimum(DAY_OF_MONTH, 5)) { + errln(" " + cal.getMessage()); + } + if (!cal.checkActualMaximum(DAY_OF_MONTH, 31)) { + errln(" " + cal.getMessage()); + } + } + + /** + * 6459836: (cal) GregorianCalendar set method provides wrong result + */ + public void Test6459836() { + int hour = 13865672; + Koyomi gc1 = new Koyomi(); + gc1.clear(); + gc1.set(1, gc1.JANUARY, 1, 0, 0, 0); + gc1.set(gc1.HOUR_OF_DAY, hour); + if (!gc1.checkDate(1582, gc1.OCTOBER, 4)) { + errln("test case 1: " + gc1.getMessage()); + } + gc1.clear(); + gc1.set(1, gc1.JANUARY, 1, 0, 0, 0); + gc1.set(gc1.HOUR_OF_DAY, hour + 24); + if (!gc1.checkDate(1582, gc1.OCTOBER, 15)) { + errln("test case 2: " + gc1.getMessage()); + } + } + + /** + * 6549953 (cal) WEEK_OF_YEAR and DAY_OF_YEAR calculation problems around Gregorian cutover + */ + public void Test6549953() { + Koyomi cal = new Koyomi(); + + cal.set(YEAR, 1582); + cal.set(WEEK_OF_YEAR, 42); + cal.set(DAY_OF_WEEK, FRIDAY); + cal.checkFieldValue(WEEK_OF_YEAR, 42); + cal.checkFieldValue(DAY_OF_WEEK, FRIDAY); + if (!cal.checkDate(1582, OCTOBER, 29)) { + errln(cal.getMessage()); + } + cal.clear(); + cal.set(1582, OCTOBER, 1); + cal.set(DAY_OF_YEAR, 292); + if (!cal.checkDate(1582, OCTOBER, 29)) { + errln(cal.getMessage()); + } + } +} diff --git a/jdk/test/java/util/Calendar/JulianTest.java b/jdk/test/java/util/Calendar/JulianTest.java new file mode 100644 index 00000000000..bd7105bce89 --- /dev/null +++ b/jdk/test/java/util/Calendar/JulianTest.java @@ -0,0 +1,52 @@ +/* + * Copyright (c) 2004, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 5029449 + * @summary Tests for the Julian calendar system (before the Gregorian cutover) + * @library /java/text/testlib + */ + +import static java.util.GregorianCalendar.*; + +public class JulianTest extends IntlTest { + + public static void main(String[] args) throws Exception { + new JulianTest().run(args); + } + + /* + * 5029449: Regression: GregorianCalendar produces wrong Julian calendar dates in BC 1 + */ + public void Test5029449() { + Koyomi cal = new Koyomi(); + cal.clear(); + cal.set(1, JANUARY, 0); + // Date should be BC 1/12/31 + if (!cal.checkFieldValue(ERA, BC) + || !cal.checkDate(1, DECEMBER, 31)) { + errln(cal.getMessage()); + } + } +} diff --git a/jdk/test/java/util/Calendar/Koyomi.java b/jdk/test/java/util/Calendar/Koyomi.java new file mode 100644 index 00000000000..8eec03b5de4 --- /dev/null +++ b/jdk/test/java/util/Calendar/Koyomi.java @@ -0,0 +1,289 @@ +/* + * Copyright (c) 2003, 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. + * + * 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. + */ + +import static java.util.Calendar.*; + +import java.util.GregorianCalendar; +import java.util.Locale; +import java.util.TimeZone; + +/** + * GregorianCalendar subclass for testing. + */ +public class Koyomi extends GregorianCalendar { + static final String[] FIELD_NAMES = { + "ERA", "YEAR", "MONTH", "WEEK_OF_YEAR", "WEEK_OF_MONTH", "DAY_OF_MONTH", + "DAY_OF_YEAR", "DAY_OF_WEEK", "DAY_OF_WEEK_IN_MONTH", "AM_PM", "HOUR", + "HOUR_OF_DAY", "MINUTE", "SECOND", "MILLISECOND", "ZONE_OFFSET", + "DST_OFFSET" + }; + + static final int ALL_FIELDS = (1 << FIELD_COUNT) - 1; + + public Koyomi() { + } + + public Koyomi(TimeZone tz) { + super(tz); + } + + public Koyomi(Locale loc) { + super(loc); + } + + public Koyomi(TimeZone tz, Locale loc) { + super(tz, loc); + } + + @Override + public void computeTime() { + super.computeTime(); + } + + @Override + public void computeFields() { + super.computeFields(); + } + + @Override + public void complete() { + super.complete(); + } + + static String getFieldName(int field) { + return FIELD_NAMES[field]; + } + + String toDateString() { + StringBuilder sb = new StringBuilder(); + sb.append(internalGet(ERA) == 0 ? "BCE " : ""); + sb.append(internalGet(YEAR)).append('-'); + sb.append(internalGet(MONTH)+1).append('-'); + sb.append(internalGet(DAY_OF_MONTH)); + return sb.toString(); + } + + String toTimeString() { + StringBuilder sb = new StringBuilder(); + sb.append(internalGet(HOUR_OF_DAY)).append(':'); + sb.append(internalGet(MINUTE)).append(':'); + sb.append(internalGet(SECOND)).append('.'); + int ms = internalGet(MILLISECOND); + if (ms < 100) { + sb.append('0'); + if (ms < 10) { + sb.append('0'); + } + } + sb.append(ms); + int offset = internalGet(ZONE_OFFSET) + internalGet(DST_OFFSET); + offset /= 60000; + offset = (offset/60) * 100 + (offset%60); + if (offset >= 0) { + sb.append('+'); + } else { + sb.append('-'); + offset = -offset; + } + if (offset < 1000) { + sb.append('0'); + if (offset < 100) { + sb.append('0'); + } + } + sb.append(offset); + return sb.toString(); + } + + String toDateTimeString() { + return toDateString() + "T" + toTimeString(); + } + + StringBuilder msg = new StringBuilder(); + + void initTest() { + msg = new StringBuilder(); + } + + String getMessage() { + String s = msg.toString(); + msg = new StringBuilder(); + return " " + s; + } + + void setMessage(String msg) { + this.msg = new StringBuilder(msg); + } + + void appendMessage(String msg) { + this.msg.append(msg); + } + + boolean getStatus() { + return msg.length() == 0; + } + + int getSetStateFields() { + int mask = 0; + for (int i = 0; i < FIELD_COUNT; i++) { + if (isSet(i)) { + mask |= 1 << i; + } + } + return mask; + } + + int[] getFields() { + int[] fds = new int[fields.length]; + System.arraycopy(fields, 0, fds, 0, fds.length); + return fds; + } + + boolean checkAllSet() { + initTest(); + for (int i = 0; i < FIELD_COUNT; i++) { + checkFieldState(i, true); + } + return getStatus(); + } + + boolean checkInternalDate(int year, int month, int dayOfMonth) { + initTest(); + checkInternalFieldValue(YEAR, year); + checkInternalFieldValue(MONTH, month); + checkInternalFieldValue(DAY_OF_MONTH, dayOfMonth); + return getStatus(); + } + + boolean checkInternalDate(int year, int month, int dayOfMonth, int dayOfWeek) { + initTest(); + checkInternalFieldValue(YEAR, year); + checkInternalFieldValue(MONTH, month); + checkInternalFieldValue(DAY_OF_MONTH, dayOfMonth); + checkInternalFieldValue(DAY_OF_WEEK, dayOfWeek); + return getStatus(); + } + + boolean checkActualMaximum(int field, int expectedValue) { + int val; + if ((val = getActualMaximum(field)) != expectedValue) { + appendMessage("getActualMaximum("+FIELD_NAMES[field]+"): got " + val + + " expected " + expectedValue); + } + return getStatus(); + } + + boolean checkLeastMaximum(int field, int expectedValue) { + int val; + if ((val = getLeastMaximum(field)) != expectedValue) { + appendMessage("getLeastMaximum("+FIELD_NAMES[field]+"): got " + val + + " expected " + expectedValue); + } + return getStatus(); + } + + boolean checkActualMinimum(int field, int expectedValue) { + int val; + if ((val = getActualMinimum(field)) != expectedValue) { + appendMessage("getActualMinimum("+FIELD_NAMES[field]+"): got " + val + + " expected " + expectedValue); + } + return getStatus(); + } + + boolean checkGreatestMinimum(int field, int expectedValue) { + int val; + if ((val = getGreatestMinimum(field)) != expectedValue) { + appendMessage("getGreatestMinimum("+FIELD_NAMES[field]+"): got " + val + + " expected " + expectedValue); + } + return getStatus(); + } + + boolean checkDate(int year, int month, int dayOfMonth) { + initTest(); + checkFieldValue(YEAR, year); + checkFieldValue(MONTH, month); + checkFieldValue(DAY_OF_MONTH, dayOfMonth); + return getStatus(); + } + + boolean checkDate(int year, int month, int dayOfMonth, int dayOfWeek) { + initTest(); + checkFieldValue(YEAR, year); + checkFieldValue(MONTH, month); + checkFieldValue(DAY_OF_MONTH, dayOfMonth); + checkFieldValue(DAY_OF_WEEK, dayOfWeek); + return getStatus(); + } + + boolean checkDateTime(int year, int month, int dayOfMonth, + int hourOfDay, int minute, int second, int ms) { + initTest(); + checkFieldValue(YEAR, year); + checkFieldValue(MONTH, month); + checkFieldValue(DAY_OF_MONTH, dayOfMonth); + checkFieldValue(HOUR_OF_DAY, hourOfDay); + checkFieldValue(MINUTE, minute); + checkFieldValue(SECOND, second); + checkFieldValue(MILLISECOND, ms); + return getStatus(); + } + + boolean checkTime(int hourOfDay, int minute, int second, int ms) { + initTest(); + checkFieldValue(HOUR_OF_DAY, hourOfDay); + checkFieldValue(MINUTE, minute); + checkFieldValue(SECOND, second); + checkFieldValue(MILLISECOND, ms); + return getStatus(); + } + + boolean checkFieldState(int field, boolean expectedState) { + if (isSet(field) != expectedState) { + appendMessage(FIELD_NAMES[field] + " state is not " + expectedState + "; "); + return false; + } + return true; + } + + boolean checkFieldValue(int field, int expectedValue) { + int val; + if ((val = get(field)) != expectedValue) { + appendMessage("get(" + FIELD_NAMES[field] + "): got " + val + + ", expected " + expectedValue + "; "); + return false; + } + return true; + } + + boolean checkInternalFieldValue(int field, int expectedValue) { + int val; + if ((val = internalGet(field)) != expectedValue) { + appendMessage("internalGet(" + FIELD_NAMES[field] + "): got " + val + + ", expected " + expectedValue + "; "); + return false; + } + return true; + } +} diff --git a/jdk/test/java/util/Calendar/Limit.java b/jdk/test/java/util/Calendar/Limit.java new file mode 100644 index 00000000000..1ab0e172dc8 --- /dev/null +++ b/jdk/test/java/util/Calendar/Limit.java @@ -0,0 +1,64 @@ +/* + * Copyright (c) 1997, 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. + * + * 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. + */ + +import java.util.*; +import java.text.*; + +/** + * Test GregorianCalendar limits, which should not exist. + * @test + * @bug 4056585 + * @summary Make sure that GregorianCalendar works far in the past and future. + * @author Alan Liu + */ +public class Limit { + static final long ONE_DAY = 24*60*60*1000L; + + public static void main(String args[]) throws Exception { + GregorianCalendar c = new GregorianCalendar(); + DateFormat fmt = new SimpleDateFormat("EEEE, MMMM dd, yyyy G", Locale.US); + long bigMillis = 300000000000000L; + + try { + // We check two things: + // 1. That handling millis in the range of +/- bigMillis works. + // bigMillis is a value that used to blow up. + // 2. The round-trip format/parse works in these extreme areas. + c.setTime(new Date(-bigMillis)); + String s = fmt.format(c.getTime()); + Date d = fmt.parse(s); + if (Math.abs(d.getTime() + bigMillis) >= ONE_DAY) { + throw new Exception(s + " != " + fmt.format(d)); + } + + c.setTime(new Date(+bigMillis)); + s = fmt.format(c.getTime()); + d = fmt.parse(s); + if (Math.abs(d.getTime() - bigMillis) >= ONE_DAY) { + throw new Exception(s + " != " + fmt.format(d)); + } + } catch (IllegalArgumentException | ParseException e) { + throw e; + } + } +} diff --git a/jdk/test/java/util/Calendar/NonLenientTest.java b/jdk/test/java/util/Calendar/NonLenientTest.java new file mode 100644 index 00000000000..6c42c594932 --- /dev/null +++ b/jdk/test/java/util/Calendar/NonLenientTest.java @@ -0,0 +1,221 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4147269 4266783 4726030 + * @summary Make sure that validation is adequate in non-lenient mode. + * @library /java/text/testlib + */ + +import java.util.*; + +import static java.util.Calendar.*; + +public class NonLenientTest extends IntlTest { + + public static void main(String[] args) throws Exception { + Locale reservedLocale = Locale.getDefault(); + TimeZone reservedTimeZone = TimeZone.getDefault(); + try { + Locale.setDefault(Locale.US); + TimeZone.setDefault(TimeZone.getTimeZone("America/Los_Angeles")); + new NonLenientTest().run(args); + } finally { + // restore the reserved locale and time zone + Locale.setDefault(reservedLocale); + TimeZone.setDefault(reservedTimeZone); + } + } + + public void TestValidationInNonLenient() { + Koyomi cal = getNonLenient(); + + // 2003 isn't a leap year. + cal.set(2003, FEBRUARY, 29); + validate(cal, "2003/2/29"); + + // October has only 31 days. + cal.set(2003, OCTOBER, 32); + validate(cal, "2003/10/32"); + + // 2003/10/31 is Friday. + cal.set(2003, OCTOBER, 31); + cal.set(DAY_OF_WEEK, SUNDAY); + validate(cal, "2003/10/31 SUNDAY"); + + // 2003/10/31 is the 304th day of the year. + cal.clear(); + cal.set(DAY_OF_YEAR, 1); + cal.set(2003, OCTOBER, 31); + validate(cal, "2003/10/31 DAY_OF_YEAR=1"); + + // 2003/10 isn't the 1st week of the year. + cal.clear(); + cal.set(YEAR, 2003); + cal.set(WEEK_OF_YEAR, 1); + cal.set(MONTH, OCTOBER); + validate(cal, "2003/10 WEEK_OF_YEAR=1"); + + // The 1st week of 2003 doesn't have Monday. + cal.clear(); + cal.set(YEAR, 2003); + cal.set(WEEK_OF_YEAR, 1); + cal.set(DAY_OF_WEEK, MONDAY); + validate(cal, "2003 WEEK_OF_YEAR=1 MONDAY."); + + // 2003 has 52 weeks. + cal.clear(); + cal.set(YEAR, 2003); + cal.set(WEEK_OF_YEAR, 53); + cal.set(DAY_OF_WEEK, WEDNESDAY); + validate(cal, "2003 WEEK_OF_YEAR=53"); + + /* + * These test cases assume incompatible behavior in Tiger as + * the result of the validation bug fixes. However, it looks + * like we have to allow applications to set ZONE_OFFSET and + * DST_OFFSET values to modify the time zone offsets given by + * a TimeZone. The definition of non-leniency for time zone + * offsets is somewhat vague. (See 6231602) + * + * The following test cases are now disabled. + + // America/Los_Angeles is GMT-08:00 + cal.clear(); + cal.set(2003, OCTOBER, 31); + cal.set(ZONE_OFFSET, 0); + validate(cal, "ZONE_OFFSET=0:00 in America/Los_Angeles"); + + // 2003/10/31 shouldn't be in DST. + cal.clear(); + cal.set(2003, OCTOBER, 31); + cal.set(DST_OFFSET, 60*60*1000); + validate(cal, "2003/10/31 DST_OFFSET=1:00 in America/Los_Angeles"); + + */ + } + + /** + * 4266783: java.util.GregorianCalendar: incorrect validation in non-lenient + */ + public void Test4266783() { + Koyomi cal = getNonLenient(); + // 2003/1 has up to 5 weeks. + cal.set(YEAR, 2003); + cal.set(MONTH, JANUARY); + cal.set(WEEK_OF_MONTH, 6); + cal.set(DAY_OF_WEEK, SUNDAY); + validate(cal, "6th Sunday in Jan 2003"); + } + + + /** + * 4726030: GregorianCalendar doesn't check invalid dates in non-lenient + */ + public void Test4726030() { + Koyomi cal = getNonLenient(); + // Default year is 1970 in GregorianCalendar which isn't a leap year. + cal.set(MONTH, FEBRUARY); + cal.set(DAY_OF_MONTH, 29); + validate(cal, "2/29 in the default year 1970"); + } + + /** + * 4147269: java.util.GregorianCalendar.computeTime() works wrong when lenient is false + */ + public void Test4147269() { + Koyomi calendar = getNonLenient(); + Date date = (new GregorianCalendar(1996,0,3)).getTime(); + + for (int field = 0; field < Calendar.FIELD_COUNT; field++) { + calendar.setTime(date); + int max = calendar.getActualMaximum(field); + int value = max+1; + calendar.set(field, value); + try { + calendar.computeTime(); // call method under test + errln("Test failed with field " + calendar.getFieldName(field) + + "\n\tdate before: " + date + + "\n\tdate after: " + calendar.getTime() + + "\n\tvalue: " + value + " (max = " + max +")"); + } catch (IllegalArgumentException e) { + } + } + + for (int field = 0; field < Calendar.FIELD_COUNT; field++) { + calendar.setTime(date); + int min = calendar.getActualMinimum(field); + int value = min-1; + calendar.set(field, value); + try { + calendar.computeTime(); // call method under test + errln("Test failed with field " + calendar.getFieldName(field) + + "\n\tdate before: " + date + + "\n\tdate after: " + calendar.getTime() + + "\n\tvalue: " + value + " (min = " + min +")"); + } catch (IllegalArgumentException e) { + } + } + } + + void validate(Koyomi cal, String desc) { + int[] originalFields = cal.getFields(); + int setFields = cal.getSetStateFields(); + + try { + cal.complete(); + errln(desc + " should throw IllegalArgumentException in non-lenient."); + } catch (IllegalArgumentException e) { + } + + // The code below will be executed with the -nothrow option + + // In non-lenient, calendar field values that have beeb set by + // user shouldn't be modified. + int[] afterFields = cal.getFields(); + for (int i = 0; i < Calendar.FIELD_COUNT; i++) { + if (cal.isSet(i) && originalFields[i] != afterFields[i]) { + errln(" complete() modified fields[" + cal.getFieldName(i) + "] got " + + afterFields[i] + ", expected " + originalFields[i]); + } + } + // In non-lenient, set state of fields shouldn't be modified. + int afterSetFields = cal.getSetStateFields(); + if (setFields != afterSetFields) { + errln(" complate() modified set states: before 0x" + toHex(setFields) + + ", after 0x"+ toHex(afterSetFields)); + } + } + + static Koyomi getNonLenient() { + Koyomi cal = new Koyomi(); + cal.clear(); + cal.setLenient(false); + return cal; + } + + static String toHex(int x) { + return Integer.toHexString(x); + } +} diff --git a/jdk/test/java/util/Calendar/ResolutionTest.java b/jdk/test/java/util/Calendar/ResolutionTest.java new file mode 100644 index 00000000000..98356131b0a --- /dev/null +++ b/jdk/test/java/util/Calendar/ResolutionTest.java @@ -0,0 +1,111 @@ +/* + * Copyright (c) 2007, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 6452848 + * @summary Make sure that the resolution of (WEKK_OF_MONTH + + * DAY_OF_WEEK) and (DAY_OF_WEEK_IN_MONTH + DAY_OF_WEEK) works as + * specified in the API. + * @key randomness + */ + +import java.util.*; +import static java.util.Calendar.*; + +public class ResolutionTest { + static Random rand = new Random(); + + public static void main(String[] args) { + for (int year = 1995; year < 2011; year++) { + for (int month = JANUARY; month <= DECEMBER; month++) { + for (int dow = SUNDAY; dow <= SATURDAY; dow++) { + test(year, month, dow); + } + } + } + } + + static void test(int year, int month, int dow) { + Calendar cal = new GregorianCalendar(year, month, 1); + int max = cal.getActualMaximum(DAY_OF_MONTH); + ArrayList list = new ArrayList(); + for (int d = 1; d <= max; d++) { + cal.clear(); + cal.set(year, month, d); + if (cal.get(DAY_OF_WEEK) == dow) { + list.add(d); + } + } + for (int i = 0; i < 100; i++) { + int nth = rand.nextInt(list.size()); // 0-based + int day = list.get(nth); + nth++; // 1-based + testDayOfWeekInMonth(year, month, nth, dow, day); + } + + // Put WEEK_OF_MONTH-DAY_OF_MONTH pairs + list = new ArrayList(); + for (int d = 1; d <= max; d++) { + cal.clear(); + cal.set(year, month, d); + if (cal.get(DAY_OF_WEEK) == dow) { + list.add(cal.get(WEEK_OF_MONTH)); + list.add(d); + } + } + for (int i = 0; i < list.size(); i++) { + int nth = list.get(i++); + int day = list.get(i); + testWeekOfMonth(year, month, nth, dow, day); + } + } + + static Koyomi cal = new Koyomi(); + + static void testDayOfWeekInMonth(int year, int month, int nth, int dow, int expected) { + // don't call clear() here + cal.set(YEAR, year); + cal.set(MONTH, month); + // Set DAY_OF_WEEK_IN_MONTH before DAY_OF_WEEK + cal.set(DAY_OF_WEEK_IN_MONTH, nth); + cal.set(DAY_OF_WEEK, dow); + if (!cal.checkDate(year, month, expected)) { + throw new RuntimeException(String.format("DOWIM: year=%d, month=%d, nth=%d, dow=%d:%s%n", + year, month+1, nth, dow, cal.getMessage())); + } + } + + static void testWeekOfMonth(int year, int month, int nth, int dow, int expected) { + // don't call clear() here + cal.set(YEAR, year); + cal.set(MONTH, month); + // Set WEEK_OF_MONTH before DAY_OF_WEEK + cal.set(WEEK_OF_MONTH, nth); + cal.set(DAY_OF_WEEK, dow); + if (!cal.checkDate(year, month, expected)) { + throw new RuntimeException(String.format("WOM: year=%d, month=%d, nth=%d, dow=%d:%s%n", + year, month+1, nth, dow, cal.getMessage())); + } + } +} diff --git a/jdk/test/java/util/Calendar/RollDayOfWeekTest.java b/jdk/test/java/util/Calendar/RollDayOfWeekTest.java new file mode 100644 index 00000000000..5b85016c311 --- /dev/null +++ b/jdk/test/java/util/Calendar/RollDayOfWeekTest.java @@ -0,0 +1,137 @@ +/* + * Copyright (c) 2004, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 5090555 5091805 + * @summary Make sure that rolling DAY_OF_WEEK stays in the same week + * around year boundaries. + * @run main/othervm RollDayOfWeekTest 5 5 + */ + +import java.util.*; + +import static java.util.Calendar.*; + +// Usage: java RollDayOfWeekTest [pastYears futureYears] +public class RollDayOfWeekTest { + public static void main(String[] args) { + int pastYears = 5, futureYears = 23; + if (args.length == 2) { + pastYears = Integer.parseInt(args[0]); + pastYears = Math.max(1, Math.min(pastYears, 5)); + futureYears = Integer.parseInt(args[1]); + futureYears = Math.max(1, Math.min(futureYears, 28)); + } + + System.out.printf("Test [%d .. %+d] year range.%n", -pastYears, futureYears); + Calendar cal = new GregorianCalendar(); + int year = cal.get(YEAR) - pastYears; + + // Use the all combinations of firstDayOfWeek and + // minimalDaysInFirstWeek values in the year range current + // year - pastYears to current year + futureYears. + for (int fdw = SUNDAY; fdw <= SATURDAY; fdw++) { + for (int mdifw = 1; mdifw <= 7; mdifw++) { + cal.clear(); + cal.setFirstDayOfWeek(fdw); + cal.setMinimalDaysInFirstWeek(mdifw); + cal.set(year, JANUARY, 1); + checkRoll(cal, futureYears); + } + } + + // testing roll from BCE to CE + year = -1; + for (int fdw = SUNDAY; fdw <= SATURDAY; fdw++) { + for (int mdifw = 1; mdifw <= 7; mdifw++) { + cal.clear(); + cal.setFirstDayOfWeek(fdw); + cal.setMinimalDaysInFirstWeek(mdifw); + cal.set(year, JANUARY, 1); + checkRoll(cal, 4); + } + } + } + + + static void checkRoll(Calendar cal, int years) { + Calendar cal2 = null, cal3 = null, prev = null; + // Check 28 years + for (int x = 0; x < (int)(365.2425*years); x++) { + cal2 = (Calendar) cal.clone(); + cal3 = (Calendar) cal.clone(); + + // roll foreword + for (int i = 0; i < 10; i++) { + prev = (Calendar) cal2.clone(); + cal2.roll(Calendar.DAY_OF_WEEK, +1); + roll(cal3, +1); + long t2 = cal2.getTimeInMillis(); + long t3 = cal3.getTimeInMillis(); + if (t2 != t3) { + System.err.println("prev: " + prev.getTime() + "\n" + prev); + System.err.println("cal2: " + cal2.getTime() + "\n" + cal2); + System.err.println("cal3: " + cal3.getTime() + "\n" + cal3); + throw new RuntimeException("+1: t2=" + t2 + ", t3=" + t3); + } + } + + // roll backward + for (int i = 0; i < 10; i++) { + prev = (Calendar) cal2.clone(); + cal2.roll(Calendar.DAY_OF_WEEK, -1); + roll(cal3, -1); + long t2 = cal2.getTimeInMillis(); + long t3 = cal3.getTimeInMillis(); + if (t2 != t3) { + System.err.println("prev: " + prev.getTime() + "\n" + prev); + System.err.println("cal2: " + cal2.getTime() + "\n" + cal2); + System.err.println("cal3: " + cal3.getTime() + "\n" + cal3); + throw new RuntimeException("-1: t2=" + t2 + ", t3=" + t3); + } + } + cal.add(DAY_OF_YEAR, +1); + } + } + + // Another way to roll within the same week. + static void roll(Calendar cal, int n) { + int doy = cal.get(DAY_OF_YEAR); + int diff = cal.get(DAY_OF_WEEK) - cal.getFirstDayOfWeek(); + if (diff < 0) { + diff += 7; + } + + // dow1: first day of the week + int dow1 = doy - diff; + n %= 7; + doy += n; + if (doy < dow1) { + doy += 7; + } else if (doy >= dow1 + 7) { + doy -= 7; + } + cal.set(DAY_OF_YEAR, doy); + } +} diff --git a/jdk/test/java/util/Calendar/StampOverflow.java b/jdk/test/java/util/Calendar/StampOverflow.java new file mode 100644 index 00000000000..fc10595c87f --- /dev/null +++ b/jdk/test/java/util/Calendar/StampOverflow.java @@ -0,0 +1,80 @@ +/* + * Copyright (c) 2001, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4404619 6348819 + * @summary Make sure that Calendar doesn't cause nextStamp overflow. + */ + +import java.lang.reflect.*; +import java.util.*; +import static java.util.Calendar.*; + +// Calendar fails when turning negative to positive (zero), not +// positive to negative with nextStamp. If a negative value was set to +// nextStamp, it would fail even with the fix. So, there's no way to +// reproduce the symptom in a short time -- at leaset it would take a +// couple of hours even if we started with Integer.MAX_VALUE. So, this +// test case just checks that set() calls don't cause any nextStamp +// overflow. + +public class StampOverflow { + public static void main(String[] args) throws IllegalAccessException { + // Get a Field for "nextStamp". + Field nextstamp = null; + try { + nextstamp = Calendar.class.getDeclaredField("nextStamp"); + } catch (NoSuchFieldException e) { + throw new RuntimeException("implementation changed?", e); + } + + nextstamp.setAccessible(true); + + Calendar cal = new GregorianCalendar(); + int initialValue = nextstamp.getInt(cal); + // Set nextStamp to a very large number + nextstamp.setInt(cal, Integer.MAX_VALUE - 100); + + for (int i = 0; i < 1000; i++) { + invoke(cal); + int stampValue = nextstamp.getInt(cal); + // nextStamp must not be less than initialValue. + if (stampValue < initialValue) { + throw new RuntimeException("invalid nextStamp: " + stampValue); + } + } + } + + static void invoke(Calendar cal) { + cal.clear(); + cal.set(2000, NOVEMBER, 2, 0, 0, 0); + int y = cal.get(YEAR); + int m = cal.get(MONTH); + int d = cal.get(DAY_OF_MONTH); + if (y != 2000 || m != NOVEMBER || d != 2) { + throw new RuntimeException("wrong date produced (" + + y + "/" + (m+1) + "/" + d + ")"); + } + } +} diff --git a/jdk/test/java/util/Calendar/ZoneOffsets.java b/jdk/test/java/util/Calendar/ZoneOffsets.java new file mode 100644 index 00000000000..147df337497 --- /dev/null +++ b/jdk/test/java/util/Calendar/ZoneOffsets.java @@ -0,0 +1,231 @@ +/* + * Copyright (c) 2005, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 6231602 + * @summary Make sure that ZONE_OFFSET and/or DST_OFFSET setting is + * taken into account for time calculations. + */ + +import java.util.*; +import static java.util.GregorianCalendar.*; + +public class ZoneOffsets { + // This TimeZone always returns the dstOffset value. + private static class TestTimeZone extends TimeZone { + private int gmtOffset; + private int dstOffset; + + TestTimeZone(int gmtOffset, String id, int dstOffset) { + this.gmtOffset = gmtOffset; + setID(id); + this.dstOffset = dstOffset; + } + + public int getOffset(int era, int year, int month, int day, + int dayOfWeek, int milliseconds) { + return gmtOffset + dstOffset; + } + + public int getOffset(long date) { + return gmtOffset + dstOffset; + } + + public void setRawOffset(int offsetMillis) { + gmtOffset = offsetMillis; + } + + public int getRawOffset() { + return gmtOffset; + } + + public int getDSTSavings() { + return dstOffset; + } + + public boolean useDaylightTime() { + return dstOffset != 0; + } + + public boolean inDaylightTime(Date date) { + return dstOffset != 0; + } + + public String toString() { + return "TestTimeZone[" + getID() + ", " + gmtOffset + ", " + dstOffset + "]"; + } + } + + private static Locale[] locales = { + Locale.getDefault(), + new Locale("th", "TH"), + new Locale("ja", "JP", "JP"), + }; + + private static final int HOUR = 60 * 60 * 1000; + + private static int[][] offsets = { + { 0, 0 }, + { 0, HOUR }, + { 0, 2 * HOUR }, + { -8 * HOUR, 0 }, + { -8 * HOUR, HOUR }, + { -8 * HOUR, 2 * HOUR }, + { 9 * HOUR, 0 }, + { 9 * HOUR, HOUR }, + { 9 * HOUR, 2 * HOUR }, + }; + + public static void main(String[] args) { + for (int l = 0; l < locales.length; l++) { + Locale loc = locales[l]; + for (int i = 0; i < offsets.length; i++) { + test(loc, offsets[i][0], offsets[i][1]); + } + } + + // The test case in the bug report. + GregorianCalendar cal = new GregorianCalendar(); + cal.setLenient(false); + cal.setGregorianChange(new Date(Long.MIN_VALUE)); + cal.clear(); + cal.set(ZONE_OFFSET, 0); + cal.set(DST_OFFSET, 0); + cal.set(ERA, AD); + cal.set(2004, FEBRUARY, 3, 0, 0, 0); + cal.set(MILLISECOND, 0); + // The following line should not throw an IllegalArgumentException. + cal.getTime(); + } + + private static void test(Locale loc, int gmtOffset, int dstOffset) { + TimeZone tz1 = new TestTimeZone(gmtOffset, + "GMT" + (gmtOffset/HOUR) + "." + (dstOffset/HOUR), + dstOffset); + int someDifferentOffset = gmtOffset + 2 * HOUR; + TimeZone tz2 = new TestTimeZone(someDifferentOffset, + "GMT"+ (someDifferentOffset/HOUR) + "." + (dstOffset/HOUR), + dstOffset); + + int someDifferentDSTOffset = dstOffset == 2 * HOUR ? HOUR : dstOffset + HOUR; + TimeZone tz3 = new TestTimeZone(gmtOffset, + "GMT"+ (gmtOffset/HOUR) + "." + (someDifferentDSTOffset/HOUR), + someDifferentDSTOffset); + + // cal1 is the base line. + Calendar cal1 = Calendar.getInstance(tz1, loc); + cal1.clear(); + cal1.set(2005, MARCH, 11); + long t1 = cal1.getTime().getTime(); + int gmt = cal1.get(ZONE_OFFSET); + int dst = cal1.get(DST_OFFSET); + + // Test 8 cases with cal2. + Calendar cal2 = Calendar.getInstance(tz2, loc); + cal2.clear(); + cal2.set(2005, MARCH, 11); + // test1: set only ZONE_OFFSET + cal2.set(ZONE_OFFSET, gmtOffset); + if (t1 != cal2.getTime().getTime() || dst != cal2.get(DST_OFFSET)) { + error("Test1", loc, cal2, gmtOffset, dstOffset, t1); + } + + cal2.setTimeZone(tz3); + cal2.clear(); + cal2.set(2005, MARCH, 11); + // test2: set only DST_OFFSET + cal2.set(DST_OFFSET, dstOffset); + if (t1 != cal2.getTime().getTime() || gmt != cal2.get(ZONE_OFFSET)) { + error("Test2", loc, cal2, gmtOffset, dstOffset, t1); + } + + cal2.setTimeZone(tz2); + cal2.clear(); + cal2.set(2005, MARCH, 11); + // test3: set both ZONE_OFFSET and DST_OFFSET + cal2.set(ZONE_OFFSET, gmtOffset); + cal2.set(DST_OFFSET, dstOffset); + if (t1 != cal2.getTime().getTime()) { + error("Test3", loc, cal2, gmtOffset, dstOffset, t1); + } + + cal2.setTimeZone(tz3); + cal2.clear(); + cal2.set(2005, MARCH, 11); + // test4: set both ZONE_OFFSET and DST_OFFSET + cal2.set(ZONE_OFFSET, gmtOffset); + cal2.set(DST_OFFSET, dstOffset); + if (t1 != cal2.getTime().getTime()) { + error("Test4", loc, cal2, gmtOffset, dstOffset, t1); + } + + // Test the same thing in non-lenient + cal2.setLenient(false); + + cal2.setTimeZone(tz2); + cal2.clear(); + cal2.set(2005, MARCH, 11); + // test5: set only ZONE_OFFSET in non-lenient + cal2.set(ZONE_OFFSET, gmtOffset); + if (t1 != cal2.getTime().getTime() || dst != cal2.get(DST_OFFSET)) { + error("Test5", loc, cal2, gmtOffset, dstOffset, t1); + } + + cal2.setTimeZone(tz3); + cal2.clear(); + cal2.set(2005, MARCH, 11); + // test6: set only DST_OFFSET in non-lenient + cal2.set(DST_OFFSET, dstOffset); + if (t1 != cal2.getTime().getTime() || gmt != cal2.get(ZONE_OFFSET)) { + error("Test6", loc, cal2, gmtOffset, dstOffset, t1); + } + + cal2.setTimeZone(tz2); + cal2.clear(); + cal2.set(2005, MARCH, 11); + // test7: set both ZONE_OFFSET and DST_OFFSET in non-lenient + cal2.set(ZONE_OFFSET, gmtOffset); + cal2.set(DST_OFFSET, dstOffset); + if (t1 != cal2.getTime().getTime()) { + error("Test7", loc, cal2, gmtOffset, dstOffset, t1); + } + + cal2.setTimeZone(tz3); + cal2.clear(); + cal2.set(2005, MARCH, 11); + // test8: set both ZONE_OFFSET and DST_OFFSET in non-lenient + cal2.set(ZONE_OFFSET, gmtOffset); + cal2.set(DST_OFFSET, dstOffset); + if (t1 != cal2.getTime().getTime()) { + error("Test8", loc, cal2, gmtOffset, dstOffset, t1); + } + } + + private static void error(String msg, Locale loc, Calendar cal2, int gmtOffset, int dstOffset, long t1) { + System.err.println(cal2); + throw new RuntimeException(msg + ": Locale=" + loc + + ", gmtOffset=" + gmtOffset + ", dstOffset=" + dstOffset + + ", cal1 time=" + t1 + ", cal2 time=" + cal2.getTime().getTime()); + } +} diff --git a/jdk/test/java/util/Calendar/bug4028518.java b/jdk/test/java/util/Calendar/bug4028518.java new file mode 100644 index 00000000000..982b93adc86 --- /dev/null +++ b/jdk/test/java/util/Calendar/bug4028518.java @@ -0,0 +1,56 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4028518 + * @summary Make sure cloned GregorianCalendar is unchanged by modifying its original. + */ + +import java.util.GregorianCalendar ; +import static java.util.Calendar.*; + +public class bug4028518 { + + public static void main(String[] args) + { + GregorianCalendar cal1 = new GregorianCalendar() ; + GregorianCalendar cal2 = (GregorianCalendar) cal1.clone() ; + + printdate(cal1, "cal1: ") ; + printdate(cal2, "cal2 - cloned(): ") ; + cal1.add(DAY_OF_MONTH, 1) ; + printdate(cal1, "cal1 after adding 1 day: ") ; + printdate(cal2, "cal2 should be unmodified: ") ; + if (cal1.get(DAY_OF_MONTH) == cal2.get(DAY_OF_MONTH)) { + throw new RuntimeException("cloned GregorianCalendar modified"); + } + } + + private static void printdate(GregorianCalendar cal, String string) + { + System.out.println(string + (cal.get(MONTH) + 1) + + "/" + cal.get(DAY_OF_MONTH) + + "/" + cal.get(YEAR)) ; + } +} diff --git a/jdk/test/java/util/Calendar/bug4100311.java b/jdk/test/java/util/Calendar/bug4100311.java new file mode 100644 index 00000000000..ef0f36ecbd2 --- /dev/null +++ b/jdk/test/java/util/Calendar/bug4100311.java @@ -0,0 +1,47 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4100311 + * @summary Make sure set(DAY_OF_YEAR, 1) works. + */ + +import java.util.Calendar; +import java.util.GregorianCalendar; +import java.util.Date; + +public class bug4100311 +{ + @SuppressWarnings("deprecation") + public static void main(String args[]) + { + GregorianCalendar cal = new GregorianCalendar(); + cal.set(Calendar.YEAR, 1997); + cal.set(Calendar.DAY_OF_YEAR, 1); + Date d = cal.getTime(); // Should be Jan 1 + if (d.getMonth() != 0 || d.getDate() != 1) { + throw new RuntimeException("Date isn't Jan 1"); + } + } +} diff --git a/jdk/test/java/util/Calendar/bug4243802.java b/jdk/test/java/util/Calendar/bug4243802.java new file mode 100644 index 00000000000..1f3b910c1b3 --- /dev/null +++ b/jdk/test/java/util/Calendar/bug4243802.java @@ -0,0 +1,93 @@ +/* + * Copyright (c) 2001, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4243802 + * @summary confirm that Calendar.setTimeInMillis() and + * getTimeInMillis() can be called from a user program. (They used to + * be protected methods.) + * @library /java/text/testlib + */ + +import java.util.*; + +public class bug4243802 extends IntlTest { + + public static void main(String[] args) throws Exception { + new bug4243802().run(args); + } + + /** + * 4243802: RFE: need way to set the date of a calendar without a Date object + */ + public void Test4243802() { + TimeZone saveZone = TimeZone.getDefault(); + Locale saveLocale = Locale.getDefault(); + try { + Locale.setDefault(Locale.US); + TimeZone.setDefault(TimeZone.getTimeZone("America/Los_Angeles")); + + Calendar cal1 = Calendar.getInstance(); + Calendar cal2 = Calendar.getInstance(); + + cal1.clear(); + cal2.clear(); + cal1.set(2001, Calendar.JANUARY, 25, 1, 23, 45); + cal2.setTimeInMillis(cal1.getTimeInMillis()); + if ((cal2.get(Calendar.YEAR) != 2001) || + (cal2.get(Calendar.MONTH) != Calendar.JANUARY) || + (cal2.get(Calendar.DAY_OF_MONTH) != 25) || + (cal2.get(Calendar.HOUR_OF_DAY) != 1) || + (cal2.get(Calendar.MINUTE) != 23) || + (cal2.get(Calendar.SECOND) != 45) || + (cal2.get(Calendar.MILLISECOND) != 0)) { + errln("Failed: expected 1/25/2001 1:23:45.000" + + ", got " + (cal2.get(Calendar.MONTH)+1) + "/" + + cal2.get(Calendar.DAY_OF_MONTH) +"/" + + cal2.get(Calendar.YEAR) + " " + + cal2.get(Calendar.HOUR_OF_DAY) + ":" + + cal2.get(Calendar.MINUTE) + ":" + + cal2.get(Calendar.SECOND) + "." + + toMillis(cal2.get(Calendar.MILLISECOND))); + } + logln("Passed."); + } + finally { + Locale.setDefault(saveLocale); + TimeZone.setDefault(saveZone); + } + } + + private String toMillis(int m) { + StringBuffer sb = new StringBuffer(); + if (m < 100) { + sb.append('0'); + } + if (m < 10) { + sb.append('0'); + } + sb.append(m); + return sb.toString(); + } +} diff --git a/jdk/test/java/util/Calendar/bug4316678.java b/jdk/test/java/util/Calendar/bug4316678.java new file mode 100644 index 00000000000..8ae6bbc294f --- /dev/null +++ b/jdk/test/java/util/Calendar/bug4316678.java @@ -0,0 +1,69 @@ +/* + * Copyright (c) 2000, 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. + * + * 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. + */ + +import java.io.*; +import java.util.*; +import java.text.*; + +/** + * @test + * @bug 4316678 + * @summary test that Calendar's Serializasion works correctly. + * @library /java/text/testlib + */ +public class bug4316678 extends IntlTest { + + public static void main(String[] args) throws Exception { + new bug4316678().run(args); + } + + public void Test4316678() throws Exception { + GregorianCalendar gc1; + GregorianCalendar gc2; + TimeZone saveZone = TimeZone.getDefault(); + + try { + TimeZone.setDefault(TimeZone.getTimeZone("PST")); + + gc1 = new GregorianCalendar(2000, Calendar.OCTOBER, 10); + try (ObjectOutputStream out + = new ObjectOutputStream(new FileOutputStream("bug4316678.ser"))) { + out.writeObject(gc1); + } + + try (ObjectInputStream in + = new ObjectInputStream(new FileInputStream("bug4316678.ser"))) { + gc2 = (GregorianCalendar)in.readObject(); + } + + gc1.set(Calendar.DATE, 16); + gc2.set(Calendar.DATE, 16); + if (!gc1.getTime().equals(gc2.getTime())) { + errln("Invalid Time :" + gc2.getTime() + + ", expected :" + gc1.getTime()); + } + } finally { + TimeZone.setDefault(saveZone); + } + } +} diff --git a/jdk/test/java/util/Calendar/bug4372743.java b/jdk/test/java/util/Calendar/bug4372743.java new file mode 100644 index 00000000000..1800ebc002a --- /dev/null +++ b/jdk/test/java/util/Calendar/bug4372743.java @@ -0,0 +1,133 @@ +/* + * Copyright (c) 2000, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4372743 + * @summary test that checks transitions of ERA and YEAR which are caused by add(MONTH). + * @library /java/text/testlib + */ + +import java.io.*; +import java.util.*; +import java.text.*; + +import static java.util.GregorianCalendar.*; + +public class bug4372743 extends IntlTest { + + public static void main(String[] args) throws Exception { + new bug4372743().run(args); + } + + private int[][] data = { + {AD, 2, MARCH}, + {AD, 2, FEBRUARY}, + {AD, 2, JANUARY}, + {AD, 1, DECEMBER}, + {AD, 1, NOVEMBER}, + {AD, 1, OCTOBER}, + {AD, 1, SEPTEMBER}, + {AD, 1, AUGUST}, + {AD, 1, JULY}, + {AD, 1, JUNE}, + {AD, 1, MAY}, + {AD, 1, APRIL}, + {AD, 1, MARCH}, + {AD, 1, FEBRUARY}, + {AD, 1, JANUARY}, + {BC, 1, DECEMBER}, + {BC, 1, NOVEMBER}, + {BC, 1, OCTOBER}, + {BC, 1, SEPTEMBER}, + {BC, 1, AUGUST}, + {BC, 1, JULY}, + {BC, 1, JUNE}, + {BC, 1, MAY}, + {BC, 1, APRIL}, + {BC, 1, MARCH}, + {BC, 1, FEBRUARY}, + {BC, 1, JANUARY}, + {BC, 2, DECEMBER}, + {BC, 2, NOVEMBER}, + {BC, 2, OCTOBER}, + }; + private int tablesize = data.length; + + private void check(GregorianCalendar gc, int index) { + if (gc.get(ERA) != data[index][ERA]) { + errln("Invalid era :" + gc.get(ERA) + + ", expected :" + data[index][ERA]); + } + if (gc.get(YEAR) != data[index][YEAR]) { + errln("Invalid year :" + gc.get(YEAR) + + ", expected :" + data[index][YEAR]); + } + if (gc.get(MONTH) != data[index][MONTH]) { + errln("Invalid month :" + gc.get(MONTH) + + ", expected :" + data[index][MONTH]); + } + } + + public void Test4372743() { + GregorianCalendar gc; + TimeZone saveZone = TimeZone.getDefault(); + + try { + TimeZone.setDefault(TimeZone.getTimeZone("PST")); + + /* Set March 3, A.D. 2 */ + gc = new GregorianCalendar(2, MARCH, 3); + for (int i = 0; i < tablesize; i++) { + check(gc, i); + gc.add(gc.MONTH, -1); + } + + /* Again, Set March 3, A.D. 2 */ + gc = new GregorianCalendar(2, MARCH, 3); + for (int i = 0; i < tablesize; i+=7) { + check(gc, i); + gc.add(gc.MONTH, -7); + } + + /* Set March 10, 2 B.C. */ + gc = new GregorianCalendar(2, OCTOBER, 10); + gc.add(gc.YEAR, -3); + for (int i = tablesize -1; i >= 0; i--) { + check(gc, i); + gc.add(gc.MONTH, 1); + } + + /* Again, Set March 10, 2 B.C. */ + gc = new GregorianCalendar(2, OCTOBER, 10); + gc.add(gc.YEAR, -3); + for (int i = tablesize -1; i >= 0; i-=8) { + check(gc, i); + gc.add(gc.MONTH, 8); + } + } + finally { + TimeZone.setDefault(saveZone); + } + } +} diff --git a/jdk/test/java/util/Calendar/bug4401223.java b/jdk/test/java/util/Calendar/bug4401223.java new file mode 100644 index 00000000000..fbd9e29a8f6 --- /dev/null +++ b/jdk/test/java/util/Calendar/bug4401223.java @@ -0,0 +1,91 @@ +/* + * Copyright (c) 2001, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4401223 + * @summary Make sure that GregorianCalendar doesn't cause IllegalArgumentException at some special situations which are related to the Leap Year. + * @library /java/text/testlib + */ + +import java.util.*; + +public class bug4401223 extends IntlTest { + + public void Test4401223a() { + int status = 0; + String s = null; + + try { + Date date = new Date(2000-1900, Calendar.FEBRUARY, 29); + GregorianCalendar gc = new GregorianCalendar(); + gc.setTime(date); + gc.setLenient(false); + gc.set(Calendar.YEAR, 2001); + s = "02/29/00 & set(YEAR,2001) = " + gc.getTime().toString(); + } catch (Exception ex) { + status++; + s = "Exception occurred for 2/29/00 & set(YEAR,2001): " + ex; + } + if (status > 0) { + errln(s); + } else { + logln(s); + } + } + + public void Test4401223b() { + int status = 0; + String s = null; + + try { + Date date = new Date(2000-1900, Calendar.DECEMBER, 31); + GregorianCalendar gc = new GregorianCalendar(); + gc.setTime(date); + gc.setLenient(false); + gc.set(Calendar.YEAR, 2001); + + if (gc.get(Calendar.YEAR) != 2001 || + gc.get(Calendar.MONTH) != Calendar.DECEMBER || + gc.get(Calendar.DATE) != 31 || + gc.get(Calendar.DAY_OF_YEAR) != 365) { + status++; + s = "Wrong Date : 12/31/00 & set(YEAR,2001) ---> " + gc.getTime().toString(); + } else { + s = "12/31/00 & set(YEAR,2001) = " + gc.getTime().toString(); + } + } catch (Exception ex) { + status++; + s = "Exception occurred for 12/31/00 & set(YEAR,2001) : " + ex; + } + if (status > 0) { + errln(s); + } else { + logln(s); + } + } + + public static void main(String[] args) throws Exception { + new bug4401223().run(args); + } +} diff --git a/jdk/test/java/util/Calendar/bug4409072.java b/jdk/test/java/util/Calendar/bug4409072.java new file mode 100644 index 00000000000..d8e56a45547 --- /dev/null +++ b/jdk/test/java/util/Calendar/bug4409072.java @@ -0,0 +1,683 @@ +/* + * Copyright (c) 2001, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4409072 + * @summary tests for set(), add(), and roll() with various week parameters. + * @library /java/text/testlib + */ + +import java.util.*; +import static java.util.Calendar.*; + +public class bug4409072 extends IntlTest { + + public static void main(String[] args) throws Exception { + new bug4409072().run(args); + } + + /* Confirm some public methods' behavior in Calendar. + * (e.g. add(), roll(), set()) + */ + public void Test4409072() { + if (Locale.getDefault().equals(new Locale("th", "TH"))) { + return; + } + + Locale savedLocale = Locale.getDefault(); + TimeZone savedTZ = TimeZone.getDefault(); + try { + TimeZone.setDefault(TimeZone.getTimeZone("GMT")); + testSet(); + testAdd(); + testRoll(); + } finally { + TimeZone.setDefault(savedTZ); + Locale.setDefault(savedLocale); + } + } + + /* + * Golden data for set() test + */ + static final int[][][] resultWOMForSetTest = { + { /* For year1998 */ + /* Min = 1 2 3 4 5 6 7 */ + /* Sun */ {11, 4}, {11, 4}, {11, 4}, {11, 4}, {11, 4}, {11,11}, {11,11}, + /* Mon */ {11, 4}, {11, 4}, {11, 4}, {11, 4}, {11, 4}, {11, 4}, {11,11}, + /* Tue */ {11, 4}, {11, 4}, {11, 4}, {11, 4}, {11, 4}, {11, 4}, {11, 4}, + /* Wed */ {10,27}, {11, 4}, {11, 4}, {11, 4}, {11, 4}, {11, 4}, {11, 4}, + /* Thu */ {10,27}, {10,27}, {11, 4}, {11, 4}, {11, 4}, {11, 4}, {11, 4}, + /* Fri */ {10,27}, {10,27}, {10,27}, {11, 4}, {11, 4}, {11, 4}, {11, 4}, + /* Sat */ {11, 4}, {11, 4}, {11, 4}, {11, 4}, {11,11}, {11,11}, {11,11}, + }, + { /* For year1999 */ + /* Min = 1 2 3 4 5 6 7 */ + /* Sun */ {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11,10}, {11,10}, {11,10}, + /* Mon */ {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11,10}, {11,10}, + /* Tue */ {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11,10}, + /* Wed */ {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, + /* Thu */ {10,26}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, + /* Fri */ {10,26}, {10,26}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, + /* Sat */ {11, 3}, {11, 3}, {11, 3}, {11,10}, {11,10}, {11,10}, {11,10}, + }, + { /* For year2000 */ + /* Min = 1 2 3 4 5 6 7 */ + /* Sun */ {11, 1}, {11, 1}, {11, 8}, {11, 8}, {11, 8}, {11, 8}, {11, 8}, + /* Mon */ {11, 1}, {11, 1}, {11, 1}, {11, 8}, {11, 8}, {11, 8}, {11, 8}, + /* Tue */ {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 8}, {11, 8}, {11, 8}, + /* Wed */ {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 8}, {11, 8}, + /* Thu */ {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 8}, + /* Fri */ {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 1}, + /* Sat */ {11, 1}, {11, 8}, {11, 8}, {11, 8}, {11, 8}, {11, 8}, {11, 8}, + }, + { /* For year2001 */ + /* Min = 1 2 3 4 5 6 7 */ + /* Sun */ {10,30}, {11, 7}, {11, 7}, {11, 7}, {11, 7}, {11, 7}, {11, 7}, + /* Mon */ {10,30}, {10,30}, {11, 7}, {11, 7}, {11, 7}, {11, 7}, {11, 7}, + /* Tue */ {10,30}, {10,30}, {10,30}, {11, 7}, {11, 7}, {11, 7}, {11, 7}, + /* Wed */ {10,30}, {10,30}, {10,30}, {10,30}, {11, 7}, {11, 7}, {11, 7}, + /* Thu */ {10,30}, {10,30}, {10,30}, {10,30}, {10,30}, {11, 7}, {11, 7}, + /* Fri */ {10,30}, {10,30}, {10,30}, {10,30}, {10,30}, {10,30}, {11, 7}, + /* Sat */ {11, 7}, {11, 7}, {11, 7}, {11, 7}, {11, 7}, {11, 7}, {11, 7}, + }, + { /* For year2002 */ + /* Min = 1 2 3 4 5 6 7 */ + /* Sun */ {11, 6}, {11, 6}, {11, 6}, {11, 6}, {11, 6}, {11, 6}, {11, 6}, + /* Mon */ {10,29}, {11, 6}, {11, 6}, {11, 6}, {11, 6}, {11, 6}, {11, 6}, + /* Tue */ {10,29}, {10,29}, {11, 6}, {11, 6}, {11, 6}, {11, 6}, {11, 6}, + /* Wed */ {10,29}, {10,29}, {10,29}, {11, 6}, {11, 6}, {11, 6}, {11, 6}, + /* Thu */ {10,29}, {10,29}, {10,29}, {10,29}, {11, 6}, {11, 6}, {11, 6}, + /* Fri */ {10,29}, {10,29}, {10,29}, {10,29}, {10,29}, {11, 6}, {11, 6}, + /* Sat */ {11, 6}, {11, 6}, {11, 6}, {11, 6}, {11, 6}, {11, 6}, {11,13}, + }, + { /* For year2003 */ + /* Min = 1 2 3 4 5 6 7 */ + /* Sun */ {11, 5}, {11, 5}, {11, 5}, {11, 5}, {11, 5}, {11, 5}, {11,12}, + /* Mon */ {11, 5}, {11, 5}, {11, 5}, {11, 5}, {11, 5}, {11, 5}, {11, 5}, + /* Tue */ {10,28}, {11, 5}, {11, 5}, {11, 5}, {11, 5}, {11, 5}, {11, 5}, + /* Wed */ {10,28}, {10,28}, {11, 5}, {11, 5}, {11, 5}, {11, 5}, {11, 5}, + /* Thu */ {10,28}, {10,28}, {10,28}, {11, 5}, {11, 5}, {11, 5}, {11, 5}, + /* Fri */ {10,28}, {10,28}, {10,28}, {10,28}, {11, 5}, {11, 5}, {11, 5}, + /* Sat */ {11, 5}, {11, 5}, {11, 5}, {11, 5}, {11, 5}, {11,12}, {11,12}, + }, + { /* For year2004 */ + /* Min = 1 2 3 4 5 6 7 */ + /* Sun */ {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11,10}, {11,10}, {11,10}, + /* Mon */ {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11,10}, {11,10}, + /* Tue */ {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11,10}, + /* Wed */ {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, + /* Thu */ {10,26}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, + /* Fri */ {10,26}, {10,26}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, {11, 3}, + /* Sat */ {11, 3}, {11, 3}, {11, 3}, {11,10}, {11,10}, {11,10}, {11,10}, + }, + { /* For year2005 */ + /* Min = 1 2 3 4 5 6 7 */ + /* Sun */ {11, 2}, {11, 2}, {11, 2}, {11, 9}, {11, 9}, {11, 9}, {11, 9}, + /* Mon */ {11, 2}, {11, 2}, {11, 2}, {11, 2}, {11, 9}, {11, 9}, {11, 9}, + /* Tue */ {11, 2}, {11, 2}, {11, 2}, {11, 2}, {11, 2}, {11, 9}, {11, 9}, + /* Wed */ {11, 2}, {11, 2}, {11, 2}, {11, 2}, {11, 2}, {11, 2}, {11, 9}, + /* Thu */ {11, 2}, {11, 2}, {11, 2}, {11, 2}, {11, 2}, {11, 2}, {11, 2}, + /* Fri */ {10,25}, {11, 2}, {11, 2}, {11, 2}, {11, 2}, {11, 2}, {11, 2}, + /* Sat */ {11, 2}, {11, 2}, {11, 9}, {11, 9}, {11, 9}, {11, 9}, {11, 9}, + }, + { /* For year2006 */ + /* Min = 1 2 3 4 5 6 7 */ + /* Sun */ {11, 1}, {11, 1}, {11, 8}, {11, 8}, {11, 8}, {11, 8}, {11, 8}, + /* Mon */ {11, 1}, {11, 1}, {11, 1}, {11, 8}, {11, 8}, {11, 8}, {11, 8}, + /* Tue */ {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 8}, {11, 8}, {11, 8}, + /* Wed */ {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 8}, {11, 8}, + /* Thu */ {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 8}, + /* Fri */ {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 1}, {11, 1}, + /* Sat */ {11, 1}, {11, 8}, {11, 8}, {11, 8}, {11, 8}, {11, 8}, {11, 8}, + }, + }; + + static final int[][][] resultWOYForSetTest1 = { + { /* For year1998 */ + /* FirstDayOfWeek = Sunday */ + {1998, 0, 2}, {1998, 0, 2}, {1998, 0, 2}, {1998, 0, 9}, + {1998, 0, 9}, {1998, 0, 9}, {1998, 0, 9}, + /* FirstDayOfWeek = Monday */ + {1998, 0, 2}, {1998, 0, 2}, {1998, 0, 2}, {1998, 0, 2}, + {1998, 0, 9}, {1998, 0, 9}, {1998, 0, 9}, + /* FirstDayOfWeek = Tuesday */ + {1998, 0, 2}, {1998, 0, 2}, {1998, 0, 2}, {1998, 0, 2}, + {1998, 0, 2}, {1998, 0, 9}, {1998, 0, 9}, + /* FirstDayOfWeek = Wednesday */ + {1998, 0, 2}, {1998, 0, 2}, {1998, 0, 2}, {1998, 0, 2}, + {1998, 0, 2}, {1998, 0, 2}, {1998, 0, 9}, + /* FirstDayOfWeek = Thursday */ + {1998, 0, 2}, {1998, 0, 2}, {1998, 0, 2}, {1998, 0, 2}, + {1998, 0, 2}, {1998, 0, 2}, {1998, 0, 2}, + /* FirstDayOfWeek = Friday */ + {1997,11,26}, {1998, 0, 2}, {1998, 0, 2}, {1998, 0, 2}, + {1998, 0, 2}, {1998, 0, 2}, {1998, 0, 2}, + /* FirstDayOfWeek = Saturday */ + {1998, 0, 2}, {1998, 0, 2}, {1998, 0, 9}, {1998, 0, 9}, + {1998, 0, 9}, {1998, 0, 9}, {1998, 0, 9}, + }, + { /* For year1999 */ + /* FirstDayOfWeek = Sunday */ + {1999, 0, 1}, {1999, 0, 1}, {1999, 0, 8}, {1999, 0, 8}, + {1999, 0, 8}, {1999, 0, 8}, {1999, 0, 8}, + /* FirstDayOfWeek = Monday */ + {1999, 0, 1}, {1999, 0, 1}, {1999, 0, 1}, {1999, 0, 8}, + {1999, 0, 8}, {1999, 0, 8}, {1999, 0, 8}, + /* FirstDayOfWeek = Tuesday */ + {1999, 0, 1}, {1999, 0, 1}, {1999, 0, 1}, {1999, 0, 1}, + {1999, 0, 8}, {1999, 0, 8}, {1999, 0, 8}, + /* FirstDayOfWeek = Wednesday */ + {1999, 0, 1}, {1999, 0, 1}, {1999, 0, 1}, {1999, 0, 1}, + {1999, 0, 1}, {1999, 0, 8}, {1999, 0, 8}, + /* FirstDayOfWeek = Thursday */ + {1999, 0, 1}, {1999, 0, 1}, {1999, 0, 1}, {1999, 0, 1}, + {1999, 0, 1}, {1999, 0, 1}, {1999, 0, 8}, + /* FirstDayOfWeek = Friday */ + {1999, 0, 1}, {1999, 0, 1}, {1999, 0, 1}, {1999, 0, 1}, + {1999, 0, 1}, {1999, 0, 1}, {1999, 0, 1}, + /* FirstDayOfWeek = Saturday */ + {1999, 0, 1}, {1999, 0, 8}, {1999, 0, 8}, {1999, 0, 8}, + {1999, 0, 8}, {1999, 0, 8}, {1999, 0, 8}, + }, + { /* For year2000 */ + /* FirstDayOfWeek = Sunday */ + {1999,11,31}, {2000, 0, 7}, {2000, 0, 7}, {2000, 0, 7}, + {2000, 0, 7}, {2000, 0, 7}, {2000, 0, 7}, + /* FirstDayOfWeek = Monday */ + {1999,11,31}, {1999,11,31}, {2000, 0, 7}, {2000, 0, 7}, + {2000, 0, 7}, {2000, 0, 7}, {2000, 0, 7}, + /* FirstDayOfWeek = Tuesday */ + {1999,11,31}, {1999,11,31}, {1999,11,31}, {2000, 0, 7}, + {2000, 0, 7}, {2000, 0, 7}, {2000, 0, 7}, + /* FirstDayOfWeek = Wednesday */ + {1999,11,31}, {1999,11,31}, {1999,11,31}, {1999,11,31}, + {2000, 0, 7}, {2000, 0, 7}, {2000, 0, 7}, + /* FirstDayOfWeek = Thursday */ + {1999,11,31}, {1999,11,31}, {1999,11,31}, {1999,11,31}, + {1999,11,31}, {2000, 0, 7}, {2000, 0, 7}, + /* FirstDayOfWeek = Friday */ + {1999,11,31}, {1999,11,31}, {1999,11,31}, {1999,11,31}, + {1999,11,31}, {1999,11,31}, {2000, 0, 7}, + /* FirstDayOfWeek = Saturday */ + {2000, 0, 7}, {2000, 0, 7}, {2000, 0, 7}, {2000, 0, 7}, + {2000, 0, 7}, {2000, 0, 7}, {2000, 0, 7}, + }, + { /* For year2001 */ + /* FirstDayOfWeek = Sunday */ + {2001, 0, 5}, {2001, 0, 5}, {2001, 0, 5}, {2001, 0, 5}, + {2001, 0, 5}, {2001, 0, 5}, {2001, 0,12}, + /* FirstDayOfWeek = Monday */ + {2001, 0, 5}, {2001, 0, 5}, {2001, 0, 5}, {2001, 0, 5}, + {2001, 0, 5}, {2001, 0, 5}, {2001, 0, 5}, + /* FirstDayOfWeek = Tuesday */ + {2000,11,29}, {2001, 0, 5}, {2001, 0, 5}, {2001, 0, 5}, + {2001, 0, 5}, {2001, 0, 5}, {2001, 0, 5}, + /* FirstDayOfWeek = Wednesday */ + {2000,11,29}, {2000,11,29}, {2001, 0, 5}, {2001, 0, 5}, + {2001, 0, 5}, {2001, 0, 5}, {2001, 0, 5}, + /* FirstDayOfWeek = Thursday */ + {2000,11,29}, {2000,11,29}, {2000,11,29}, {2001, 0, 5}, + {2001, 0, 5}, {2001, 0, 5}, {2001, 0, 5}, + /* FirstDayOfWeek = Friday */ + {2000,11,29}, {2000,11,29}, {2000,11,29}, {2000,11,29}, + {2001, 0, 5}, {2001, 0, 5}, {2001, 0, 5}, + /* FirstDayOfWeek = Saturday */ + {2001, 0, 5}, {2001, 0, 5}, {2001, 0, 5}, {2001, 0, 5}, + {2001, 0, 5}, {2001, 0,12}, {2001, 0,12}, + }, + { /* For year2002 */ + /* FirstDayOfWeek = Sunday */ + {2002, 0, 4}, {2002, 0, 4}, {2002, 0, 4}, {2002, 0, 4}, + {2002, 0, 4}, {2002, 0,11}, {2002, 0,11}, + /* FirstDayOfWeek = Monday */ + {2002, 0, 4}, {2002, 0, 4}, {2002, 0, 4}, {2002, 0, 4}, + {2002, 0, 4}, {2002, 0, 4}, {2002, 0,11}, + /* FirstDayOfWeek = Tuesday */ + {2002, 0, 4}, {2002, 0, 4}, {2002, 0, 4}, {2002, 0, 4}, + {2002, 0, 4}, {2002, 0, 4}, {2002, 0, 4}, + /* FirstDayOfWeek = Wednesday */ + {2001,11,28}, {2002, 0, 4}, {2002, 0, 4}, {2002, 0, 4}, + {2002, 0, 4}, {2002, 0, 4}, {2002, 0, 4}, + /* FirstDayOfWeek = Thursday */ + {2001,11,28}, {2001,11,28}, {2002, 0, 4}, {2002, 0, 4}, + {2002, 0, 4}, {2002, 0, 4}, {2002, 0, 4}, + /* FirstDayOfWeek = Friday */ + {2001,11,28}, {2001,11,28}, {2001,11,28}, {2002, 0, 4}, + {2002, 0, 4}, {2002, 0, 4}, {2002, 0, 4}, + /* FirstDayOfWeek = Saturday */ + {2002, 0, 4}, {2002, 0, 4}, {2002, 0, 4}, {2002, 0, 4}, + {2002, 0,11}, {2002, 0,11}, {2002, 0,11}, + }, + { /* For year2003 */ + /* FirstDayOfWeek = Sunday */ + {2003, 0, 3}, {2003, 0, 3}, {2003, 0, 3}, {2003, 0, 3}, + {2003, 0,10}, {2003, 0,10}, {2003, 0,10}, + /* FirstDayOfWeek = Monday */ + {2003, 0, 3}, {2003, 0, 3}, {2003, 0, 3}, {2003, 0, 3}, + {2003, 0, 3}, {2003, 0,10}, {2003, 0,10}, + /* FirstDayOfWeek = Tuesday */ + {2003, 0, 3}, {2003, 0, 3}, {2003, 0, 3}, {2003, 0, 3}, + {2003, 0, 3}, {2003, 0, 3}, {2003, 0,10}, + /* FirstDayOfWeek = Wednesday */ + {2003, 0, 3}, {2003, 0, 3}, {2003, 0, 3}, {2003, 0, 3}, + {2003, 0, 3}, {2003, 0, 3}, {2003, 0, 3}, + /* FirstDayOfWeek = Thursday */ + {2002,11,27}, {2003, 0, 3}, {2003, 0, 3}, {2003, 0, 3}, + {2003, 0, 3}, {2003, 0, 3}, {2003, 0, 3}, + /* FirstDayOfWeek = Friday */ + {2002,11,27}, {2002,11,27}, {2003, 0, 3}, {2003, 0, 3}, + {2003, 0, 3}, {2003, 0, 3}, {2003, 0, 3}, + /* FirstDayOfWeek = Saturday */ + {2003, 0, 3}, {2003, 0, 3}, {2003, 0, 3}, {2003, 0,10}, + {2003, 0,10}, {2003, 0,10}, {2003, 0,10}, + }, + { /* For year2004 */ + /* FirstDayOfWeek = Sunday */ + {2004, 0, 2}, {2004, 0, 2}, {2004, 0, 2}, {2004, 0, 9}, + {2004, 0, 9}, {2004, 0, 9}, {2004, 0, 9}, + /* FirstDayOfWeek = Monday */ + {2004, 0, 2}, {2004, 0, 2}, {2004, 0, 2}, {2004, 0, 2}, + {2004, 0, 9}, {2004, 0, 9}, {2004, 0, 9}, + /* FirstDayOfWeek = Tuesday */ + {2004, 0, 2}, {2004, 0, 2}, {2004, 0, 2}, {2004, 0, 2}, + {2004, 0, 2}, {2004, 0, 9}, {2004, 0, 9}, + /* FirstDayOfWeek = Wednesday */ + {2004, 0, 2}, {2004, 0, 2}, {2004, 0, 2}, {2004, 0, 2}, + {2004, 0, 2}, {2004, 0, 2}, {2004, 0, 9}, + /* FirstDayOfWeek = Thursday */ + {2004, 0, 2}, {2004, 0, 2}, {2004, 0, 2}, {2004, 0, 2}, + {2004, 0, 2}, {2004, 0, 2}, {2004, 0, 2}, + /* FirstDayOfWeek = Friday */ + {2003,11,26}, {2004, 0, 2}, {2004, 0, 2}, {2004, 0, 2}, + {2004, 0, 2}, {2004, 0, 2}, {2004, 0, 2}, + /* FirstDayOfWeek = Saturday */ + {2004, 0, 2}, {2004, 0, 2}, {2004, 0, 9}, {2004, 0, 9}, + {2004, 0, 9}, {2004, 0, 9}, {2004, 0, 9}, + }, + { /* For year2005 */ + /* FirstDayOfWeek = Sunday */ + {2004,11,31}, {2005, 0, 7}, {2005, 0, 7}, {2005, 0, 7}, + {2005, 0, 7}, {2005, 0, 7}, {2005, 0, 7}, + /* FirstDayOfWeek = Monday */ + {2004,11,31}, {2004,11,31}, {2005, 0, 7}, {2005, 0, 7}, + {2005, 0, 7}, {2005, 0, 7}, {2005, 0, 7}, + /* FirstDayOfWeek = Tuesday */ + {2004,11,31}, {2004,11,31}, {2004,11,31}, {2005, 0, 7}, + {2005, 0, 7}, {2005, 0, 7}, {2005, 0, 7}, + /* FirstDayOfWeek = Wednesday */ + {2004,11,31}, {2004,11,31}, {2004,11,31}, {2004,11,31}, + {2005, 0, 7}, {2005, 0, 7}, {2005, 0, 7}, + /* FirstDayOfWeek = Thursday */ + {2004,11,31}, {2004,11,31}, {2004,11,31}, {2004,11,31}, + {2004,11,31}, {2005, 0, 7}, {2005, 0, 7}, + /* FirstDayOfWeek = Friday */ + {2004,11,31}, {2004,11,31}, {2004,11,31}, {2004,11,31}, + {2004,11,31}, {2004,11,31}, {2005, 0, 7}, + /* FirstDayOfWeek = Saturday */ + {2005, 0, 7}, {2005, 0, 7}, {2005, 0, 7}, {2005, 0, 7}, + {2005, 0, 7}, {2005, 0, 7}, {2005, 0, 7}, + }, + { /* For year2006 */ + /* FirstDayOfWeek = Sunday */ + {2006, 0, 6}, {2006, 0, 6}, {2006, 0, 6}, {2006, 0, 6}, + {2006, 0, 6}, {2006, 0, 6}, {2006, 0, 6}, + /* FirstDayOfWeek = Monday */ + {2005,11,30}, {2006, 0, 6}, {2006, 0, 6}, {2006, 0, 6}, + {2006, 0, 6}, {2006, 0, 6}, {2006, 0, 6}, + /* FirstDayOfWeek = Tuesday */ + {2005,11,30}, {2005,11,30}, {2006, 0, 6}, {2006, 0, 6}, + {2006, 0, 6}, {2006, 0, 6}, {2006, 0, 6}, + /* FirstDayOfWeek = Wednesday */ + {2005,11,30}, {2005,11,30}, {2005,11,30}, {2006, 0, 6}, + {2006, 0, 6}, {2006, 0, 6}, {2006, 0, 6}, + /* FirstDayOfWeek = Thursday */ + {2005,11,30}, {2005,11,30}, {2005,11,30}, {2005,11,30}, + {2006, 0, 6}, {2006, 0, 6}, {2006, 0, 6}, + /* FirstDayOfWeek = Friday */ + {2005,11,30}, {2005,11,30}, {2005,11,30}, {2005,11,30}, + {2005,11,30}, {2006, 0, 6}, {2006, 0, 6}, + /* FirstDayOfWeek = Saturday */ + {2006, 0, 6}, {2006, 0, 6}, {2006, 0, 6}, {2006, 0, 6}, + {2006, 0, 6}, {2006, 0, 6}, {2006, 0,13}, + } + }; + + static final int[][] resultWOYForSetTest2 = { + /* Min = 1 2 3 4 5 6 7 */ + /* Sun */ {4,25}, {5, 1}, {5, 1}, {5, 1}, {5, 1}, {5, 1}, {5, 1}, + /* Mon */ {4,25}, {4,25}, {5, 1}, {5, 1}, {5, 1}, {5, 1}, {5, 1}, + /* Tue */ {4,25}, {4,25}, {4,25}, {5, 1}, {5, 1}, {5, 1}, {5, 1}, + /* Wed */ {4,25}, {4,25}, {4,25}, {4,25}, {5, 1}, {5, 1}, {5, 1}, + /* Thu */ {5, 1}, {5, 1}, {5, 1}, {5, 1}, {5, 1}, {5, 8}, {5, 8}, + /* Fri */ {5, 1}, {5, 1}, {5, 1}, {5, 1}, {5, 1}, {5, 1}, {5, 8}, + /* Sat */ {5, 1}, {5, 1}, {5, 1}, {5, 1}, {5, 1}, {5, 1}, {5, 1}, + }; + + /** + * Test for set() + */ + void testSet() { + boolean noerror = true; + Calendar cal = Calendar.getInstance(); + int sYear=1998; + int eYear=2006; + + // Loop for FirstDayOfWeek: SUNDAY..SATURDAY + for (int dow = SUNDAY; dow <= SATURDAY; dow++) { + + // Loop for MinimalDaysInFirstWeek: 1..7 + for (int minDow = 1; minDow <= 7; minDow++) { + int index = (dow-1)*7 + (minDow-1); + + cal.clear(); + cal.setLenient(true); + cal.setMinimalDaysInFirstWeek(minDow); + cal.setFirstDayOfWeek(dow); + cal.set(YEAR, 2005); + cal.set(DAY_OF_WEEK, WEDNESDAY); + cal.set(WEEK_OF_YEAR, 22); + + int y = 2005; + int m = resultWOYForSetTest2[index][0]; + int d = resultWOYForSetTest2[index][1]; + int year = cal.get(YEAR); + int month = cal.get(MONTH); + int date = cal.get(DATE); + + if (cal.get(WEEK_OF_YEAR) != 22) { + noerror = false; + errln("Failed : set(WEEK_OF_YEAR=22)" + + " *** get(WEEK_OF_YEAR=" + + cal.get(WEEK_OF_YEAR) + ")" + + ", got " + (month+1)+"/"+date+"/"+year + + ", expected " + (m+1)+"/"+d+"/"+2005 + + ", MinFirstDOW=" + minDow + + ", FirstDOW=" + dow); + } else if ((year != y) || (month != m) || (date != d)) { + noerror = false; + errln("Failed : set(WEEK_OF_YEAR=22)" + + " got " + (month+1)+"/"+date+"/"+year + + ", expected " + (m+1)+"/"+d+"/"+y + + ", MinFirstDOW=" + minDow + + ", FirstDOW=" + dow); + } + + for (int targetYear = sYear; targetYear<= eYear; targetYear++) { + cal.clear(); + cal.setLenient(true); + cal.setMinimalDaysInFirstWeek(minDow); + cal.setFirstDayOfWeek(dow); + cal.set(YEAR, targetYear); + cal.set(DAY_OF_WEEK, FRIDAY); + cal.set(MONTH, DECEMBER); + cal.set(WEEK_OF_MONTH, 1); + + y = targetYear; + m = resultWOMForSetTest[targetYear-sYear][index][0]; + d = resultWOMForSetTest[targetYear-sYear][index][1]; + year = cal.get(YEAR); + month = cal.get(MONTH); + date = cal.get(DATE); + + if ((year != y) || (month != m) || (date != d)) { + noerror = false; + errln("Failed : set(WEEK_OF_MONTH=1)" + + " got " + (month+1)+"/"+date+"/"+year + + ", expected " + (m+1)+"/"+d+"/"+y + + ", MinFirstDOW=" + minDow + + ", FirstDOW=" + dow); + } + + cal.clear(); + cal.setLenient(true); + cal.setMinimalDaysInFirstWeek(minDow); + cal.setFirstDayOfWeek(dow); + cal.set(YEAR, targetYear); + cal.set(DAY_OF_WEEK, FRIDAY); + cal.set(WEEK_OF_YEAR, 1); + + y = resultWOYForSetTest1[targetYear-sYear][index][0]; + m = resultWOYForSetTest1[targetYear-sYear][index][1]; + d = resultWOYForSetTest1[targetYear-sYear][index][2]; + year = cal.get(YEAR); + month = cal.get(MONTH); + date = cal.get(DATE); + + if (cal.get(WEEK_OF_YEAR) != 1) { + noerror = false; + errln("Failed : set(WEEK_OF_YEAR=1)" + + " *** get(WEEK_OF_YEAR=" + + cal.get(WEEK_OF_YEAR) + ")" + + ", got " + (month+1)+"/"+date+"/"+year + + ", expected " + (m+1)+"/"+d+"/"+y + + ", MinFirstDOW=" + minDow + + ", FirstDOW=" + dow); + } else if ((year != y) || (month != m) || (date != d)) { + noerror = false; + errln("Failed : set(WEEK_OF_YEAR=1)" + + " got " + (month+1)+"/"+date+"/"+year + + ", expected " + (m+1)+"/"+d+"/"+y + + ", MinFirstDOW=" + minDow + + ", FirstDOW=" + dow); + } + } + } + } + + if (noerror) { + logln("Passed : set() test"); + } + } + + /** + * Test for add() + */ + void testAdd() { + boolean noerror = true; + Calendar cal = Calendar.getInstance(); + + // Loop for FirstDayOfWeek: SUNDAY..SATURDAY + for (int dow = SUNDAY; dow <= SATURDAY; dow++) { + + // Loop for MinimalDaysInFirstWeek: 1..7 + for (int minDow = 1; minDow <= 7; minDow++) { + int oldWOY, newWOY; + + cal.clear(); + cal.setLenient(true); + cal.setMinimalDaysInFirstWeek(minDow); + cal.setFirstDayOfWeek(dow); + cal.set(2005, DECEMBER, 7); + oldWOY = cal.get(WEEK_OF_YEAR); + + for (int cnt = 0; cnt < 7; cnt++) { + cal.add(WEEK_OF_YEAR, 1); + } + + int year = cal.get(YEAR); + int month = cal.get(MONTH); + int date = cal.get(DATE); + + if ((year != 2006) || (month != 0) || (date != 25)) { + noerror = false; + errln("Failed : add(WEEK_OF_YEAR+1)" + + " got " + (month+1)+"/"+date+"/"+year + + ", expected 1/25/2006" + + ", MinFirstDOW=" + minDow + + ", FirstDOW=" + dow); + } + + for (int cnt = 0; cnt < 10; cnt++) { + cal.add(WEEK_OF_YEAR, -1); + } + newWOY = cal.get(WEEK_OF_YEAR); + + year = cal.get(YEAR); + month = cal.get(MONTH); + date = cal.get(DATE); + + if ((oldWOY - newWOY) != 3) { + errln("Failed : add(WEEK_OF_YEAR-1)" + + " got " + (month+1)+"/"+date+"/"+year + + ", expected 11/16/2005" + + ", MinFirstDOW=" + minDow + + ", FirstDOW=" + dow + + ", WEEK_OF_YEAR=" + newWOY + + " should be " + (oldWOY-3)); + } else if ((year != 2005) || (month != 10) || (date != 16)) { + errln("Failed : add(-1)" + + " got " + (month+1)+"/"+date+"/"+year + + ", expected 11/16/2005" + + ", MinFirstDOW=" + minDow + + ", FirstDOW=" + dow); + } + } + } + + if (noerror) { + logln("Passed : add() test"); + } + } + + /* + * Golden data for roll() test + */ + static final int[] resultWOMForRollTest = { + /* Min = 1 2 3 4 5 6 7 */ + /* Sun */ 1, 1, 1, 26, 26, 26, 26, + /* Mon */ 1, 1, 1, 1, 26, 26, 26, + /* Tue */ 31, 31, 31, 31, 31, 24, 24, + /* Wed */ 31, 31, 31, 31, 31, 31, 24, + /* Thu */ 31, 31, 31, 31, 31, 31, 31, + /* Fri */ 1, 31, 31, 31, 31, 31, 31, + /* Sat */ 1, 1, 31, 31, 31, 31, 31, + }; + + static final int[][] resultWOYForRollTest = { + /* Min = 1 2 3 4 5 6 7 */ + /* Sun */ {0,26}, {0,26}, {0,26}, {0,26}, {0,26}, {0,26}, {0,26}, + /* Mon */ {1, 2}, {0,26}, {0,26}, {0,26}, {0,26}, {0,26}, {0,26}, + /* Tue */ {1, 2}, {1, 2}, {0,26}, {0,26}, {0,26}, {0,26}, {0,26}, + /* Wed */ {1, 2}, {1, 2}, {1, 2}, {0,26}, {0,26}, {0,26}, {0,26}, + /* Thu */ {0,26}, {0,26}, {0,26}, {0,26}, {0,26}, {1, 2}, {1, 2}, + /* Fri */ {0,26}, {0,26}, {0,26}, {0,26}, {0,26}, {0,26}, {1, 2}, + /* Sat */ {0,26}, {0,26}, {0,26}, {0,26}, {0,26}, {0,26}, {0,26}, + }; + + /** + * Test for roll() + */ + void testRoll() { + boolean noerror = true; + Calendar cal = Calendar.getInstance(); + + // Loop for FirstDayOfWeek: SUNDAY..SATURDAY + for (int dow = SUNDAY; dow <= SATURDAY; dow++) { + + // Loop for MinimalDaysInFirstWeek: 1..7 + for (int minDow = 1; minDow <= 7; minDow++) { + int oldWOY, newWOY; + int index = (dow-1)*7 + (minDow-1); + + cal.clear(); + cal.setLenient(true); + cal.setMinimalDaysInFirstWeek(minDow); + cal.setFirstDayOfWeek(dow); + cal.set(2005, DECEMBER, 12); + oldWOY = cal.get(WEEK_OF_YEAR); + for (int cnt = 0; cnt < 2; cnt++) { + cal.roll(WEEK_OF_MONTH, -1); + } + int y = 2005; + int m = DECEMBER; + int d = resultWOMForRollTest[index]; + int year = cal.get(YEAR); + int month = cal.get(MONTH); + int date = cal.get(DATE); + + if ((year != y) || (month != m) || (date != d)) { + noerror = false; + errln("Failed : roll(WEEK_OF_MONTH-1)" + + " got " + (month+1) + "/" + date + "/" + year + + ", expected " + (m+1) + "/" + d + "/" + y + + ", MinFirstDOW=" + minDow + + ", FirstDOW=" + dow); + } + + cal.clear(); + cal.setLenient(true); + cal.setMinimalDaysInFirstWeek(minDow); + cal.setFirstDayOfWeek(dow); + cal.set(2005, DECEMBER, 7); + oldWOY = cal.get(WEEK_OF_YEAR); + + for (int cnt = 0; cnt < 7; cnt++) { + cal.roll(WEEK_OF_YEAR, 1); + } + + y = 2005; + m = resultWOYForRollTest[index][0]; + d = resultWOYForRollTest[index][1]; + year = cal.get(YEAR); + month = cal.get(MONTH); + date = cal.get(DATE); + + if ((year != y) || (month != m) || (date != d)) { + noerror = false; + errln("Failed : roll(WEEK_OF_YEAR+1)" + + " got " + (month+1) + "/" + date + "/" + year + + ", expected " + (m+1) + "/" + d + "/" + y + + ", MinFirstDOW=" + minDow + + ", FirstDOW=" + dow); + } + + for (int cnt = 0; cnt < 10; cnt++) { + cal.roll(WEEK_OF_YEAR, -1); + } + newWOY = cal.get(WEEK_OF_YEAR); + + y = 2005; + m = NOVEMBER; + d = 16; + year = cal.get(YEAR); + month = cal.get(MONTH); + date = cal.get(DATE); + + if ((year != y) || (month != m) || (date != d)) { + noerror = false; + errln("Failed : roll(WEEK_OF_YEAR-1)" + + " got " + (month+1)+"/"+date+"/"+year + + ", expected " + (m+1)+"/"+d+"/"+y + + ", MinFirstDOW=" + minDow + + ", FirstDOW=" + dow); + } + } + } + + if (noerror) { + logln("Passed : roll() test"); + } + } +} diff --git a/jdk/test/java/util/Calendar/bug4514831.java b/jdk/test/java/util/Calendar/bug4514831.java new file mode 100644 index 00000000000..9d635e26167 --- /dev/null +++ b/jdk/test/java/util/Calendar/bug4514831.java @@ -0,0 +1,95 @@ +/* + * Copyright (c) 2002, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4514831 + * @summary Confirm that GregorianCalendar.roll() works properly during transition from Daylight Saving Time to Standard Time. + */ + +import java.util.*; + +public class bug4514831 { + + public static void main(String[] args) { + Locale savedLocale = Locale.getDefault(); + TimeZone savedTimeZone = TimeZone.getDefault(); + boolean err = false; + + String golden_data1 ="27-28 28-29 29-30 30-31 31-1 1-2 2-3 "; + String golden_data2 ="27-28 28-29 29-30 30-31 31-25 25-26 26-27 "; + String golden_data3 ="1-8 8-15 15-22 22-29 29-1 1-8 8-15 "; + + try { + Locale.setDefault(Locale.US); + TimeZone.setDefault(TimeZone.getTimeZone("US/Pacific")); + + String test_roll = ""; + GregorianCalendar c_roll = new GregorianCalendar(2001, Calendar.OCTOBER, 27); + for (int i=0; i < 7; i++) { + test_roll += c_roll.get(c_roll.DAY_OF_MONTH) + "-"; + c_roll.roll(c_roll.DAY_OF_YEAR, true); + test_roll += c_roll.get(c_roll.DAY_OF_MONTH) + " "; + } + if (!test_roll.equals(golden_data1)) { + err = true; + System.err.println("Wrong roll(DAY_OF_YEAR) transition: got "+ + test_roll + "expected " + golden_data1); + } + + test_roll = ""; + c_roll = new GregorianCalendar(2001, Calendar.OCTOBER, 27); + c_roll.setFirstDayOfWeek(Calendar.THURSDAY); + for (int i=0; i < 7; i++) { + test_roll += c_roll.get(c_roll.DAY_OF_MONTH) + "-"; + c_roll.roll(c_roll.DAY_OF_WEEK, true); + test_roll += c_roll.get(c_roll.DAY_OF_MONTH) + " "; + } + if (!test_roll.equals(golden_data2)) { + err = true; + System.err.println("Wrong roll(DAY_OF_WEEK) transition: got "+ + test_roll + "expected " + golden_data2); + } + + test_roll = ""; + c_roll = new GregorianCalendar(2001, Calendar.OCTOBER, 1); + for (int i=0; i < 7; i++) { + test_roll += c_roll.get(c_roll.DAY_OF_MONTH) + "-"; + c_roll.roll(c_roll.DAY_OF_WEEK_IN_MONTH, true); + test_roll += c_roll.get(c_roll.DAY_OF_MONTH) + " "; + } + if (!test_roll.equals(golden_data3)) { + err = true; + System.err.println("Wrong roll(DAY_OF_WEEK_IN_MONTH) transition: got "+ + test_roll + "expected " + golden_data3); + } + } finally { + Locale.setDefault(savedLocale); + TimeZone.setDefault(savedTimeZone); + } + + if (err) { + throw new RuntimeException("Wrong roll() transition"); + } + } +} diff --git a/jdk/test/java/util/Date/Bug4955000.java b/jdk/test/java/util/Date/Bug4955000.java new file mode 100644 index 00000000000..c94b23868ca --- /dev/null +++ b/jdk/test/java/util/Date/Bug4955000.java @@ -0,0 +1,144 @@ +/* + * Copyright (c) 2005, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4955000 + * @summary Make sure that a Date and a GregorianCalendar produce the + * same date/time. Both are new implementations in 1.5. + */ + +import java.util.*; +import static java.util.GregorianCalendar.*; + +@SuppressWarnings("deprecation") +public class Bug4955000 { + // Tests for Date.UTC(), derived from JCK + // Date.miscTests.Date1025 and Date2015 + public static void main(String[] args) { + TimeZone defaultTZ = TimeZone.getDefault(); + try { + TimeZone.setDefault(TimeZone.getTimeZone("NST")); + GregorianCalendar gc = new GregorianCalendar(TimeZone.getTimeZone("UTC")); + // Date1025 + int[] years1 = { + Integer.MIN_VALUE, + Integer.MIN_VALUE + 1, + gc.getMinimum(YEAR) - 1, + gc.getMaximum(YEAR) + 1, + Integer.MAX_VALUE - 1, + Integer.MAX_VALUE + }; + for (int i = 0; i < years1.length; i++) { + gc.clear(); + gc.set(years1[i], gc.JANUARY, 1); + long t = gc.getTimeInMillis(); + long utc = Date.UTC(years1[i] - 1900, 1-1, 1, + 0, 0, 0); // Jan 1 00:00:00 + if (t != utc) { + throw new RuntimeException("t (" + t + ") != utc (" + utc +")"); + } + } + + // Date2015 + int years[] = { + gc.getGreatestMinimum(YEAR), + gc.getGreatestMinimum(YEAR) + 1, + -1, + 0, + 1, + gc.getLeastMaximum(YEAR) - 1, + gc.getLeastMaximum(YEAR) + }; + + int months[] = { + gc.getMinimum(MONTH), + gc.getMinimum(MONTH) + 1, + gc.getMaximum(MONTH) - 1, + gc.getMaximum(MONTH) + }; + + int dates[] = { + gc.getMinimum(DAY_OF_MONTH), + gc.getMinimum(DAY_OF_MONTH) + 1, + gc.getMaximum(DAY_OF_MONTH) - 1, + gc.getMaximum(DAY_OF_MONTH) + }; + + int hs[] = { + gc.getMinimum(HOUR), + gc.getMinimum(HOUR) + 1, + gc.getMaximum(HOUR) - 1, + gc.getMaximum(HOUR) + }; + + int ms[] = { + gc.getMinimum(MINUTE), + gc.getMinimum(MINUTE) + 1, + gc.getMaximum(MINUTE) - 1, + gc.getMaximum(MINUTE) + }; + + int ss[] = { + gc.getMinimum(SECOND), + gc.getMinimum(SECOND) + 1, + gc.getMaximum(SECOND) - 1, + gc.getMaximum(SECOND) + }; + + for(int i = 0; i < years.length; i++) { + for(int j = 0; j < months.length; j++) { + for(int k = 0; k < dates.length; k++) { + for(int m = 0; m < hs.length; m++) { + for(int n = 0; n < ms.length; n++) { + for(int p = 0; p < ss.length; p++) { + int year = years[i] - 1900; + int month = months[j]; + int date = dates[k]; + int hours = hs[m]; + int minutes = ms[n]; + int seconds = ss[p]; + + long result = Date.UTC(year, month, date, + hours, minutes, seconds); + + gc.clear(); + gc.set(year + 1900, month, date, hours, minutes, seconds); + + long expected = gc.getTime().getTime(); + + if (expected != result) { + throw new RuntimeException("expected (" + expected + + ") != result (" + result +")"); + } + } + } + } + } + } + } + } finally { + TimeZone.setDefault(defaultTZ); + } + } +} diff --git a/jdk/test/java/util/Date/DateGregorianCalendarTest.java b/jdk/test/java/util/Date/DateGregorianCalendarTest.java new file mode 100644 index 00000000000..49dbc8bc41a --- /dev/null +++ b/jdk/test/java/util/Date/DateGregorianCalendarTest.java @@ -0,0 +1,235 @@ +/* + * Copyright (c) 2003, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4614842 + * @summary Make sure that a Date and a GregorianCalendar produce the same date/time. Both are new implementations in 1.5. + * @run main DateGregorianCalendarTest 15 + */ + +import java.util.*; +import static java.util.GregorianCalendar.*; + +// Usage: java DateGregorianCalendarTest [duration] + +@SuppressWarnings("deprecation") +public class DateGregorianCalendarTest { + static volatile boolean runrun = true; + static int nThreads; + + public static void main(String[] args) { + int duration = 600; + if (args.length == 1) { + duration = Math.max(10, Integer.parseInt(args[0])); + } + + TimeZone savedTZ = TimeZone.getDefault(); + try { + TimeZone.setDefault(TimeZone.getTimeZone("GMT")); + Thread[] t = new Thread[10]; // for future bugs... + int index = 0; + t[index++] = new Thread(new Runnable() { + public void run() { + GregorianCalendar gc = new GregorianCalendar(); + + long delta = (long)(279 * 365.2422 * 24 * 60 * 60 * 1000); + long count = 0; + try { + for (long t = Long.MIN_VALUE; runrun && t < Long.MAX_VALUE-delta; t += delta) { + gc.setTimeInMillis(t); + Date date = new Date(t); + int y; + if (!((y = gc.get(YEAR)) == (date.getYear()+1900) && + gc.get(MONTH) == date.getMonth() && + gc.get(DAY_OF_MONTH) == date.getDate() && + gc.get(HOUR_OF_DAY) == date.getHours() && + gc.get(MINUTE) == date.getMinutes() && + gc.get(SECOND) == date.getSeconds())) { + throw new RuntimeException("GregorinCalendar and Date returned different dates." + +" (millis=" + t + ")\n" + +"GC=" + gc + "\nDate=" + date); + } + ++count; + if (y >= 1) { + delta = (long)(365.2422 * 24 * 60 * 60 * 1000); + } + if (y >= 1970) { + delta = (24 * 60 * 60 * 1000); + } + if (y >= 2039) { + delta = (long)(279 * 365.2422 * 24 * 60 * 60 * 1000); + } + } + if (runrun) { + System.out.println("Part I (count="+count+"): Passed"); + } else { + System.out.println("Part I (count="+count+"): Incomplete"); + } + } catch (RuntimeException e) { + System.out.println("Part I (count="+count+"): FAILED"); + runrun = false; + throw e; + } finally { + decrementCounter(); + } + } + }); + + t[index++] = new Thread(new Runnable() { + public void run() { + GregorianCalendar gc = new GregorianCalendar(); + + long count = 0; + int delta; + try { + for (long year = Integer.MIN_VALUE+1900; + runrun && year <= Integer.MAX_VALUE; year += delta) { + checkTimes(gc, year, JANUARY, 1, 0, 0, 0); + ++count; + delta = getDelta((int)year); + } + + for (long month = Integer.MIN_VALUE; + runrun && month <= Integer.MAX_VALUE; month += delta) { + checkTimes(gc, 1900, month, 1, 0, 0, 0); + ++count; + delta = getDelta(gc.get(YEAR)); + } + + for (long dayOfMonth = Integer.MIN_VALUE; + runrun && dayOfMonth <= Integer.MAX_VALUE; dayOfMonth += delta) { + checkTimes(gc, 1900, JANUARY, dayOfMonth, 0, 0, 0); + ++count; + delta = getDelta(gc.get(YEAR)); + } + if (runrun) { + System.out.println("Part II (count="+count+"): Passed"); + } else { + System.out.println("Part II (count="+count+"): Incomplete"); + } + } catch (RuntimeException e) { + System.out.println("Part II (count="+count+"): FAILED"); + runrun = false; + throw e; + } finally { + decrementCounter(); + } + } + }); + + // t3 takes more than 10 minutes (on Ultra-60 450MHz) without + // the 4936355 fix due to getting the small delta. + t[index++] = new Thread(new Runnable() { + public void run() { + GregorianCalendar gc = new GregorianCalendar(); + + long count = 0; + int delta; + try { + for (long hourOfDay = Integer.MIN_VALUE; + runrun && hourOfDay <= Integer.MAX_VALUE; hourOfDay += delta) { + checkTimes(gc, 1970, JANUARY, 1, hourOfDay, 0, 0); + ++count; + delta = getDelta(gc.get(YEAR)); + } + for (long minutes = Integer.MIN_VALUE; + runrun && minutes <= Integer.MAX_VALUE; minutes += delta) { + checkTimes(gc, 1970, JANUARY, 1, 0, minutes, 0); + ++count; + delta = getDelta(gc.get(YEAR)) * 60; + } + for (long seconds = Integer.MIN_VALUE; + runrun && seconds <= Integer.MAX_VALUE; seconds += delta) { + checkTimes(gc, 1970, JANUARY, 1, 0, 0, seconds); + ++count; + delta = getDelta(gc.get(YEAR)) * 60 * 60; + } + if (runrun) { + System.out.println("Part III (count="+count+"): Passed"); + } else { + System.out.println("Part III (count="+count+"): Incomplete"); + } + } catch (RuntimeException e) { + System.out.println("Part III (count="+count+"): FAILED"); + runrun = false; + throw e; + } finally { + decrementCounter(); + } + } + }); + + for (int i = 0; i < index; i++) { + incrementCounter(); + t[i].start(); + } + + try { + for (int i = 0; getCounter() > 0 && i < duration; i++) { + Thread.sleep(1000); + } + runrun = false; + for (int i = 0; i < index; i++) { + t[i].join(); + } + } catch (InterruptedException e) { + } + } finally { + TimeZone.setDefault(savedTZ); + } + } + + static void checkTimes(GregorianCalendar gc, long year, long month, long dayOfMonth, + long hourOfDay, long minutes, long seconds) { + gc.clear(); + gc.set((int)year, (int)month, (int)dayOfMonth, (int)hourOfDay, (int)minutes, (int)seconds); + long time = gc.getTimeInMillis(); + Date date = new Date((int)year - 1900, (int)month, (int)dayOfMonth, + (int)hourOfDay, (int)minutes, (int)seconds); + long time2 = date.getTime(); + if (time != time2) { + throw new RuntimeException("GregorinCalendar and Date returned different values.\n" + +"year="+year+", month="+month+", dayOfMonth="+dayOfMonth + +"\nhourOfDay="+hourOfDay+", minutes="+minutes+", seconds="+seconds + +"\ntime=" + time + ", time2=" + time2 + +"\nGC=" + gc + "\nDate=" + date); + } + } + + static final int getDelta(int year) { + return (year >= 1970 && year <= 2039) ? 1 : 1<<13; + } + + synchronized static void incrementCounter() { + nThreads++; + } + + synchronized static void decrementCounter() { + nThreads--; + } + + synchronized static int getCounter() { + return nThreads; + } +} diff --git a/jdk/test/java/util/Date/DateRegression.java b/jdk/test/java/util/Date/DateRegression.java new file mode 100644 index 00000000000..70d8a5bf706 --- /dev/null +++ b/jdk/test/java/util/Date/DateRegression.java @@ -0,0 +1,241 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4023247 4027685 4032037 4072029 4073003 4118010 4120606 4133833 4136916 6274757 6314387 + * @library /java/text/testlib + */ + +import java.util.*; + +@SuppressWarnings("deprecation") +public class DateRegression extends IntlTest { + + public static void main(String[] args) throws Exception { + new DateRegression().run(args); + } + + /** + * @bug 4023247 + */ + public void Test4023247() { + Date d1 = new Date(0); + Date d2 = new Date(0); + + d1.setYear(96); + d1.setMonth(11); + d1.setDate(22); + d1.setHours(0); + d1.setMinutes(0); + d1.setSeconds(0); + + d2.setYear(96); + d2.setMonth(11); + d2.setDate(22); + d2.setHours(0); + d2.setMinutes(0); + d2.setSeconds(0); + + if (d1.hashCode() != d2.hashCode()) + errln("Fail: Date hashCode misbehaves"); + } + + /** + * @bug 4027685 + */ + public void Test4027685() { + // Should be 01/16/97 00:00:00 + Date nite = new Date("16-JAN-97 12:00 AM"); + // Should be 01/16/97 12:00:00 + Date noon = new Date("16-JAN-97 12:00 PM"); + + logln("Midnight = " + nite + ", Noon = " + noon); + if (!nite.equals(new Date(97, Calendar.JANUARY, 16, 0, 0)) || + !noon.equals(new Date(97, Calendar.JANUARY, 16, 12, 0))) + errln("Fail: Nite/Noon confused"); + } + + /** + * @bug 4032037 + */ + public void Test4032037() { + Date ref = new Date(97, 1, 10); + Date d = new Date(Date.parse("2/10/97")); + logln("Date.parse(2/10/97) => " + d); + if (!d.equals(ref)) errln("Fail: Want " + ref + " Got " + d); + d = new Date(Date.parse("10 feb 1997")); + logln("Date.parse(10 feb 1997) => " + d); + if (!d.equals(ref)) errln("Fail: Want " + ref + " Got " + d); + d = new Date("2/10/97"); + logln("Date(2/10/97) => " + d); + if (!d.equals(ref)) errln("Fail: Want " + ref + " Got " + d); + d = new Date("10 feb 1997"); + logln("Date(10 feb 1997) => " + d); + if (!d.equals(ref)) errln("Fail: Want " + ref + " Got " + d); + } + + /** + * @bug 4072029 + */ + public void Test4072029() { + TimeZone saveZone = TimeZone.getDefault(); + + try { + TimeZone.setDefault(TimeZone.getTimeZone("PST")); + Date now = new Date(); + String s = now.toString(); + Date now2 = new Date(now.toString()); + String s2 = now2.toString(); // An hour's difference + + if (!s.equals(s2) || + Math.abs(now.getTime() - now2.getTime()) > 60000 /*one min*/) { + errln("Fail: Roundtrip toString/parse"); + } + } + finally { + TimeZone.setDefault(saveZone); + } + } + + /** + * @bug 4073003 + */ + public void Test4073003() { + Date d = new Date(Date.parse("01/02/1984")); + if (!d.equals(new Date(84, 0, 2))) + errln("Fail: Want 1/2/1984 Got " + d); + d = new Date(Date.parse("02/03/2012")); + if (!d.equals(new Date(112, 1, 3))) + errln("Fail: Want 2/3/2012 Got " + d); + d = new Date(Date.parse("03/04/15")); + if (!d.equals(new Date(115, 2, 4))) + errln("Fail: Want 3/4/2015 Got " + d); + } + + /** + * @bug 4118010 + * Regress bug: + * Feb. 2000 has 29 days, but Date(2000, 1, 29) returns March 01, 2000 + * NOTE: This turned out to be a user error (passing in 2000 instead + * of 2000-1900 to the Date constructor). + */ + public void Test4118010() { + Date d=new java.util.Date(2000-1900, Calendar.FEBRUARY, 29); + int m=d.getMonth(); + int date=d.getDate(); + if (m != Calendar.FEBRUARY || + date != 29) + errln("Fail: Want Feb 29, got " + d); + } + + /** + * @bug 4120606 + * Date objects share state after cloning. + */ + public void Test4120606() { + Date d = new Date(98, Calendar.JUNE, 24); + d.setMonth(Calendar.MAY); + Date e = (Date)d.clone(); + d.setMonth(Calendar.FEBRUARY); + if (e.getMonth() != Calendar.MAY) { + errln("Cloned Date objects share state"); + } + } + + /** + * @bug 4133833 + * Date constructor crashes with parameters out of range, when it should + * normalize. + */ + public void Test4133833() { + Date date = new java.util.Date(12,15,19); + Date exp = new Date(1913-1900, Calendar.APRIL, 19); + if (!date.equals(exp)) + errln("Fail: Want " + exp + + "; got " + date); + } + + /** + * @bug 4136916 + * Date.toString() throws exception in 1.2b4-E + * CANNOT REPRODUCE this bug + */ + public void Test4136916() { + Date time = new Date(); + logln(time.toString()); + } + + /** + * @bug 6274757 + * Date getTime and toString interaction for some time values + */ + public void Test6274757() { + TimeZone savedTz = TimeZone.getDefault(); + try { + // Use a time zone west of GMT. + TimeZone.setDefault(TimeZone.getTimeZone("America/Los_Angeles")); + TimeZone jdkGMT = TimeZone.getTimeZone("GMT"); + Calendar jdkCal = Calendar.getInstance(jdkGMT); + jdkCal.clear(); + jdkCal.set(1582, Calendar.OCTOBER, 15); + logln("JDK time: " + jdkCal.getTime().getTime() ); + logln("JDK time (str): " + jdkCal.getTime() ); + logln("Day of month: " + jdkCal.get(Calendar.DAY_OF_MONTH)); + Date co = jdkCal.getTime(); + logln("Change over (Oct 15 1582) = " + co + " (" + + co.getTime() + ")"); + long a = jdkCal.getTime().getTime(); + Date c = jdkCal.getTime(); + c.toString(); + long b = c.getTime(); + + if (a != b) { + errln("ERROR: " + a + " != " + b); + } else { + logln(a + " = " + b); + } + } finally { + TimeZone.setDefault(savedTz); + } + } + + /** + * @bug 6314387 + * JCK6.0: api/java_util/Date/index.html#misc fails, mustang + */ + public void Test6314387() { + Date d = new Date(Long.MAX_VALUE); + int y = d.getYear(); + if (y != 292277094) { + errln("yesr: got " + y + ", expected 292277094"); + } + d = new Date(Long.MIN_VALUE); + y = d.getYear(); + if (y != 292267155) { + errln("yesr: got " + y + ", expected 292267155"); + } + } +} + +//eof diff --git a/jdk/test/java/util/Date/DateTest.java b/jdk/test/java/util/Date/DateTest.java new file mode 100644 index 00000000000..98392760ba3 --- /dev/null +++ b/jdk/test/java/util/Date/DateTest.java @@ -0,0 +1,236 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4143459 + * @summary test Date + * @library /java/text/testlib + */ + +import java.text.*; +import java.util.*; + +@SuppressWarnings("deprecation") +public class DateTest extends IntlTest +{ + public static void main(String[] args) throws Exception { + new DateTest().run(args); + } + + /** + * @bug 4143459 + * Warning: Use TestDefaultZone() for complete testing of this bug. + */ + public void TestDefaultZoneLite() { + // Note: This test is redundant with TestDefaultZone(). It was added by + // request to provide a short&sweet test for this bug. It does not test + // all cases though, so IF THIS TEST PASSES, THE BUG MAY STILL BE + // PRESENT. Use TestDefaultZone() to be sure. + TimeZone save = TimeZone.getDefault(); + try { + TimeZone.setDefault(TimeZone.getTimeZone("GMT")); + Date d = new Date(); + d.setYear(98); + d.setMonth(Calendar.JANUARY); + d.setDate(1); + d.setHours(6); + TimeZone.setDefault(TimeZone.getTimeZone("PST")); + if (d.getHours() != 22) { + errln("Fail: Date.setHours()/getHours() ignoring default zone"); + } + } + finally { TimeZone.setDefault(save); } + } + + /** + * @bug 4143459 + */ + public void TestDefaultZone() { + // Various problems can creep up, with the current implementation of Date, + // when the default zone is changed. + + TimeZone saveZone = TimeZone.getDefault(); + try { + + Date d = new Date(); // Trigger static init + Date ref = new Date(883634400000L); // This is Thu Jan 1 1998 6:00 am GMT + String refstr = "Jan 1 1998 6:00"; + TimeZone GMT = TimeZone.getTimeZone("GMT"); + TimeZone PST = TimeZone.getTimeZone("PST"); + + String[] names = { "year", "month", "date", "day of week", "hour", "offset" }; + int[] GMT_EXP = { 98, Calendar.JANUARY, 1, Calendar.THURSDAY - Calendar.SUNDAY, 6, 0 }; + int[] PST_EXP = { 97, Calendar.DECEMBER, 31, Calendar.WEDNESDAY - Calendar.SUNDAY, 22, 480 }; + + // There are two cases to consider: a Date object with no Calendar + // sub-object (most Date objects), and a Date object with a Calendar + // sub-object. We make two passes to cover the two cases. + for (int pass=0; pass<2; ++pass) { + logln(pass == 0 ? "Normal Date object" : "Date with Calendar sub-object"); + + TimeZone.setDefault(GMT); + d = new Date(refstr); + if (pass == 1) { + // Force creation of Calendar sub-object + d.setYear(d.getYear()); + } + if (d.getTime() != ref.getTime()) { + errln("FAIL: new Date(\"" + refstr + "\") x GMT -> " + d + + " " + d.getTime() + " ms"); + } + + int[] fields = { d.getYear(), d.getMonth(), d.getDate(), + d.getDay(), d.getHours(), d.getTimezoneOffset() }; + for (int i=0; i PER_LOOP_LIMIT) + logln("WARNING: Date constructor/getYear slower than " + + PER_LOOP_LIMIT + " ms"); + } + static double PER_LOOP_LIMIT = 3.0; + + /** + * Verify that the Date(String) constructor works. + */ + public void TestParseOfGMT() + { + Date OUT = null; + + /* Input values */ + String stringVal = "Jan 01 00:00:00 GMT 1900"; + long expectedVal = -2208988800000L; + + OUT = new Date( stringVal ); + + if( OUT.getTime( ) == expectedVal ) { + // logln("PASS"); + } + else { + errln( "Expected: " + + new Date( expectedVal ) + + ": " + + expectedVal + + " Received: " + + OUT.toString() + + ": " + + OUT.getTime() ); + } + } + + // Check out Date's behavior with large negative year values; bug 664 + // As of the fix to bug 4056585, Date should work correctly with + // large negative years. + public void TestDateNegativeYears() + { + Date d1= new Date(80,-1,2); + logln(d1.toString()); + d1= new Date(-80,-1,2); + logln(d1.toString()); + boolean e = false; + try { + d1= new Date(-800000,-1,2); + logln(d1.toString()); + } + catch (IllegalArgumentException ex) { + e = true; + } + if (e) errln("FAIL: Saw exception for year -800000"); + else logln("Pass: No exception for year -800000"); + } + + // Verify the behavior of Date + public void TestDate480() + { + TimeZone save = TimeZone.getDefault(); + try { + TimeZone.setDefault(TimeZone.getTimeZone("PST")); + Date d1=new java.util.Date(97,8,13,10,8,13); + logln("d = "+d1); + Date d2=new java.util.Date(97,8,13,30,8,13); // 20 hours later + logln("d+20h = "+d2); + + double delta = (d2.getTime() - d1.getTime()) / 3600000; + + logln("delta = " + delta + "h"); + + if (delta != 20.0) errln("Expected delta of 20; got " + delta); + + Calendar cal = Calendar.getInstance(); + cal.clear(); + cal.set(1997,8,13,10,8,13); + Date t1 = cal.getTime(); + logln("d = "+t1); + cal.clear(); + cal.set(1997,8,13,30,8,13); // 20 hours later + Date t2 = cal.getTime(); + logln("d+20h = "+t2); + + double delta2 = (t2.getTime() - t1.getTime()) / 3600000; + + logln("delta = " + delta2 + "h"); + + if (delta != 20.0) errln("Expected delta of 20; got " + delta2); + } + finally { + TimeZone.setDefault(save); + } + } +} diff --git a/jdk/test/java/util/Date/TZ.java b/jdk/test/java/util/Date/TZ.java new file mode 100644 index 00000000000..56722a1cdb7 --- /dev/null +++ b/jdk/test/java/util/Date/TZ.java @@ -0,0 +1,58 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* @test + * @bug 4108737 + * @summary java.util.Date doesn't fail if current TimeZone is changed + */ + +import java.util.TimeZone; +import java.util.Date; + +public class TZ { + + public static void main(String args[]) { + TimeZone tz = TimeZone.getDefault(); + try { + testMain(); + } finally { + TimeZone.setDefault(tz); + } + } + + static void testMain() { + String expectedResult = "Sat Feb 01 00:00:00 PST 1997"; + + // load the java.util.Date class in the GMT timezone + TimeZone.setDefault(TimeZone.getTimeZone("GMT")); + new Date(); // load the class (to run static initializers) + + // use the class in different timezone + TimeZone.setDefault(TimeZone.getTimeZone("PST")); + @SuppressWarnings("deprecation") + Date date = new Date(97, 1, 1); + if (!date.toString().equals(expectedResult)) { + throw new RuntimeException("Regression bug id #4108737 - Date fails if default time zone changed"); + } + } +} diff --git a/jdk/test/java/util/Date/TimestampTest.java b/jdk/test/java/util/Date/TimestampTest.java new file mode 100644 index 00000000000..950f0a5fb91 --- /dev/null +++ b/jdk/test/java/util/Date/TimestampTest.java @@ -0,0 +1,134 @@ +/* + * Copyright (c) 2004, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 5008227 + * @summary Make sure that changes to the Date class don't break java.sql.Timestamp. + * @modules java.sql + * @library /java/text/testlib + */ + +import java.util.*; +import java.sql.Timestamp; + +public class TimestampTest extends IntlTest { + + public static void main(String[] args) throws Exception { + new TimestampTest().run(args); + } + + /** + * 5008227: java.sql.Timestamp.after() is not returning correct result + * + * Test before(), after(), equals(), compareTo() and getTime(). + */ + public void Test5008227() { + long t = System.currentTimeMillis(); + Timestamp ts1 = new Timestamp(t), ts2 = new Timestamp(t); + ts1.setNanos(999999999); + ts2.setNanos( 1000000); + compareTimestamps(ts1, ts2, 1); + + ts1.setTime(t + 1000); + ts2.setTime(t); + ts1.setNanos( 999999); + ts2.setNanos(999999999); + compareTimestamps(ts1, ts2, 1); + + ts1.setTime(t); + ts2.setTime(t); + ts1.setNanos(123456789); + ts2.setNanos(123456789); + compareTimestamps(ts1, ts2, 0); + + ts1.setTime(t); + ts2.setTime(t); + ts1.setNanos(1); + ts2.setNanos(2); + compareTimestamps(ts1, ts2, -1); + + ts1.setTime(t); + ts2.setTime(t+1000); + ts1.setNanos(999999); + ts2.setNanos( 0); + compareTimestamps(ts1, ts2, -1); + } + + /** + * Compares two Timestamps with the expected result. + * + * @param ts1 the first Timestamp + * @param ts2 the second Timestamp + * @param expect the expected relation between ts1 and ts2; 0 if + * ts1 equals to ts2, or 1 if ts1 is after ts2, or -1 if ts1 is + * before ts2. + */ + private void compareTimestamps(Timestamp ts1, Timestamp ts2, int expected) { + boolean expectedResult = expected > 0; + boolean result = ts1.after(ts2); + if (result != expectedResult) { + errln("ts1.after(ts2) returned " + result + + ". (ts1=" + ts1 + ", ts2=" + ts2 + ")"); + } + + expectedResult = expected < 0; + result = ts1.before(ts2); + if (result != expectedResult) { + errln("ts1.before(ts2) returned " + result + + ". (ts1=" + ts1 + ", ts2=" + ts2 + ")"); + } + + expectedResult = expected == 0; + result = ts1.equals(ts2); + if (result != expectedResult) { + errln("ts1.equals(ts2) returned " + result + + ". (ts1=" + ts1 + ", ts2=" + ts2 + ")"); + } + + int x = ts1.compareTo(ts2); + int y = (x > 0) ? 1 : (x < 0) ? -1 : 0; + if (y != expected) { + errln("ts1.compareTo(ts2) returned " + x + ", expected " + + relation(expected, "") + "0" + + ". (ts1=" + ts1 + ", ts2=" + ts2 + ")"); + } + long t1 = ts1.getTime(); + long t2 = ts2.getTime(); + int z = (t1 > t2) ? 1 : (t1 < t2) ? -1 : 0; + if (z == 0) { + int n1 = ts1.getNanos(); + int n2 = ts2.getNanos(); + z = (n1 > n2) ? 1 : (n1 < n2) ? -1 : 0; + } + if (z != expected) { + errln("ts1.getTime() " + relation(z, "==") + " ts2.getTime(), expected " + + relation(expected, "==") + + ". (ts1=" + ts1 + ", ts2=" + ts2 + ")"); + } + } + + private static String relation(int x, String whenEqual) { + return (x > 0) ? ">" : (x < 0) ? "<" : whenEqual; + } +} diff --git a/jdk/test/java/util/Locale/ThaiGov.java b/jdk/test/java/util/Locale/ThaiGov.java index 5dfe8d15c65..5bef2afde2b 100644 --- a/jdk/test/java/util/Locale/ThaiGov.java +++ b/jdk/test/java/util/Locale/ThaiGov.java @@ -25,6 +25,7 @@ * @bug 4474409 * @author John O'Conner * @modules jdk.localedata + * @run main/othervm -Djava.locale.providers=COMPAT ThaiGov */ import java.util.*; diff --git a/jdk/test/java/util/ResourceBundle/RestrictedBundleTest.html b/jdk/test/java/util/ResourceBundle/RestrictedBundleTest.html deleted file mode 100644 index 4214467a1e9..00000000000 --- a/jdk/test/java/util/ResourceBundle/RestrictedBundleTest.html +++ /dev/null @@ -1,3 +0,0 @@ - -This is a test. - diff --git a/jdk/test/java/util/ResourceBundle/RestrictedBundleTest.java b/jdk/test/java/util/ResourceBundle/RestrictedBundleTest.java deleted file mode 100644 index 7a1969164f0..00000000000 --- a/jdk/test/java/util/ResourceBundle/RestrictedBundleTest.java +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) 2007, 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. - * - * This code is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - * version 2 for more details (a copy is included in the LICENSE file that - * accompanied this code). - * - * You should have received a copy of the GNU General Public License version - * 2 along with this work; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. - * - * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA - * or visit www.oracle.com if you need additional information or have any - * questions. - */ -/** - * @test - * @bug 4126805 - * @ignore until 6842022 is resolved - * @run applet RestrictedBundleTest.html - * @summary I was able to reproduce this bug with 1.2b2, but not with the current 1.2 - * build. It appears that it was fixed by changes to the class-loading mechanism, - * which now throws a ClassNotFoundException where before it was propagating through - * a bogus ClassFormatError. Therefore, this is just an additional regression test - * for whatever bug that was. - */ - -import java.util.ResourceBundle; -import java.applet.Applet; -import java.util.MissingResourceException; - -public class RestrictedBundleTest extends Applet { - public void init() { - super.init(); - try { - ResourceBundle bundle = ResourceBundle.getBundle("unavailable.base.name"); - - throw new RuntimeException("Error: MissingResourceException is not thrown"); - } - catch (MissingResourceException e) { - // other types of error will propagate back out into the test harness - System.out.println("OK"); - } - } -} diff --git a/jdk/test/java/util/TimeZone/Bug4322313.java b/jdk/test/java/util/TimeZone/Bug4322313.java new file mode 100644 index 00000000000..fdd1f7c92ce --- /dev/null +++ b/jdk/test/java/util/TimeZone/Bug4322313.java @@ -0,0 +1,228 @@ +/* + * Copyright (c) 2001, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4322313 + * @summary Make sure that new implementation of custom time zone + * support for TimeZone.getTimeZone() works correctly and the + * getDisplayName() methods are locale independent. + * @library /java/text/testlib + */ + +import java.io.*; +import java.text.*; +import java.util.*; + +public class Bug4322313 extends IntlTest { + private static final int MPM = 60 * 1000; /* Milliseconds per minute */ + private static final Object[][] VALIDS = { + /* given ID rawOffset normalized ID */ + {"GMT+00:00", 0, "GMT+00:00"}, + {"GMT+3:04", 184 * MPM, "GMT+03:04"}, + {"GMT+03:04", 184 * MPM, "GMT+03:04"}, + {"GMT+13:42", 822 * MPM, "GMT+13:42"}, + /* ISO-LATIN-1 digits */ + {"GMT+\u0030\u0031:\u0032\u0033", 83 * MPM, "GMT+01:23"}, + + {"GMT+0", 0, "GMT+00:00"}, + {"GMT+3", 180 * MPM, "GMT+03:00"}, + {"GMT+13", 780 * MPM, "GMT+13:00"}, + {"GMT+034", 34 * MPM, "GMT+00:34"}, + {"GMT+1034", 634 * MPM, "GMT+10:34"}, + + {"GMT-00:00", 0, "GMT-00:00"}, + {"GMT-3:04", -184 * MPM, "GMT-03:04"}, + {"GMT-03:04", -184 * MPM, "GMT-03:04"}, + {"GMT-13:42", -822 * MPM, "GMT-13:42"}, + /* ISO-LATIN-1 digits */ + {"GMT-\u0030\u0031:\u0032\u0033", -83 * MPM, "GMT-01:23"}, + + {"GMT-0", 0, "GMT-00:00"}, + {"GMT-3", -180 * MPM, "GMT-03:00"}, + {"GMT-13", -780 * MPM, "GMT-13:00"}, + {"GMT-034", -34 * MPM, "GMT-00:34"}, + {"GMT-1034", -634 * MPM, "GMT-10:34"}, + }; + + private static final String[] INVALIDS = { + "GMT+5:8", "GMT+11:1", "GMT+23:60", "GMT+24:13", + "GMT+0a:0A", "GMT +13:42", "GMT+ 13:42", "GMT+13 :42", + "GMT+13: 42", "GMT+421:950", "GMT+-13:42", "GMT+!13:42", + "GMT+a", "GMT+24", "GMT+060", "GMT+3003", + "GMT+42195", "GMT+-1", "GMT+-15", " GMT", + + "GMT-5:8", "GMT-11:1", "GMT-23:60", "GMT-24:13", + "GMT-0a:0A", "GMT -13:42", "GMT- 13:42", "GMT-13 :42", + "GMT-13: 42", "GMT-421:950", "GMT-+13:42", "GMT-#13:42", + "GMT-a", "GMT-24", "GMT-060", "GMT-2403", + "GMT-42195", "GMT-+1", "GMT-+15", "G M T", + "GMT+09:00 ", + }; + + void Test4322313() { + Locale savedLocale = Locale.getDefault(); + TimeZone savedTimeZone = TimeZone.getDefault(); + boolean err = false; + + Locale[] locs = Locale.getAvailableLocales(); + try { + TimeZone.setDefault(TimeZone.getTimeZone("GMT")); + + for (int i = 0; i < locs.length; i++) { + Locale.setDefault(locs[i]); + + /* Okay case */ + for (int k = 0; k < VALIDS.length; k++) { + TimeZone tz = TimeZone.getTimeZone((String)VALIDS[k][0]); + int offset; + + if (!tz.getID().equals(VALIDS[k][2])) { + err = true; + System.err.println("\tFailed [Locale=" + + Locale.getDefault() + ", \"" + VALIDS[k][0] + + "\"] Invalid TimeZone ID, expected:" + + VALIDS[k][2] + ", got:" + tz.getID() + ", " + tz); + } else { + logln("\tPassed [Locale=" + + Locale.getDefault() + ", \"" + VALIDS[k][0] + + "\"] Valid TimeZone ID, got:" + VALIDS[k][2]); + } + + offset = tz.getRawOffset(); + if (offset != (int)VALIDS[k][1]) { + err = true; + System.err.println("\tFailed [Locale=" + + Locale.getDefault() + ", \"" + VALIDS[k][0] + + "\"] Invalid RawOffset, expected:" + VALIDS[k][1] + + ", got:" + offset + ", " + tz); + } else { + logln("\tPassed [Locale=" + + Locale.getDefault() + ", \"" + VALIDS[k][0] + + "\"] Vaild RawOffset, got:" + offset); + } + + offset = tz.getDSTSavings(); + if (offset != 0) { + err = true; + System.err.println("\tFailed [Locale=" + + Locale.getDefault() + ", \"" + VALIDS[k][0] + + "\"] DSTSavings should be zero, got:" + offset + + ", " + tz); + } else { + logln("\tPassed [Locale=" + + Locale.getDefault() + ", \"" + VALIDS[k][0] + + "\"] DSTSavings is zero."); + } + } + + /* Error case */ + for (int k=0; k < INVALIDS.length; k++) { + TimeZone tz = TimeZone.getTimeZone(INVALIDS[k]); + int offset; + + if (!tz.getID().equals("GMT")) { + err = true; + System.err.println("\tFailed [Locale=" + + Locale.getDefault() + ", \"" + INVALIDS[k] + + "\"] Invalid TimeZone ID, expected:GMT, got:" + + tz.getID() + ", " + tz); + } else { + logln("\tPassed [Locale=" + + Locale.getDefault() + ", \"" + INVALIDS[k] + + "\"] Valid TimeZone ID, got:" + tz.getID()); + } + + offset = tz.getRawOffset(); + if (offset != 0) { + err = true; + System.err.println("\tFailed [Locale=" + + Locale.getDefault() + ", \"" + INVALIDS[k] + + "\"] RawOffset should be zero, got:" + offset + + ", " + tz); + } else { + logln("\tPassed [Locale=" + + Locale.getDefault() + ", \"" + INVALIDS[k] + + "\"] RawOffset is zero."); + } + + offset = tz.getDSTSavings(); + if (offset != 0) { + err = true; + System.err.println("\tFailed [Locale=" + + Locale.getDefault() + ", \"" + INVALIDS[k] + + "\"] DSTSavings should be zero, got:" + offset + + ", " + tz); + } else { + logln("\tPassed [Locale=" + + Locale.getDefault() + ", \"" + INVALIDS[k] + + "\"] DSTSavings is zero."); + } + } + + // getDisplayName() tests + { + String normalizedID = "GMT-08:00"; + TimeZone tz = TimeZone.getTimeZone("GMT-8"); + String s; + s = tz.getDisplayName(true, tz.LONG); + if (!normalizedID.equals(s)) { + err = true; + System.err.println("getDisplayName returned unexpected name: " + s + + " in " + Locale.getDefault()); + } + s = tz.getDisplayName(true, tz.SHORT); + if (!normalizedID.equals(s)) { + err = true; + System.err.println("getDisplayName returned unexpected name: " + s + + " in " + Locale.getDefault()); + } + s = tz.getDisplayName(false, tz.LONG); + if (!normalizedID.equals(s)) { + err = true; + System.err.println("getDisplayName returned unexpected name: " + s + + " in " + Locale.getDefault()); + } + s = tz.getDisplayName(false, tz.SHORT); + if (!normalizedID.equals(s)) { + err = true; + System.err.println("getDisplayName returned unexpected name: " + s + + " in " + Locale.getDefault()); + } + } + } + } finally { + Locale.setDefault(savedLocale); + TimeZone.setDefault(savedTimeZone); + } + if (err) { + errln("TimeZone.getTimeZone() test failed"); + } else { + logln("TimeZone.getTimeZone() test passed"); + } + } + + public static void main (String[] args) throws Exception { + new Bug4322313().run(args); + } +} diff --git a/jdk/test/java/util/TimeZone/Bug5097350.java b/jdk/test/java/util/TimeZone/Bug5097350.java new file mode 100644 index 00000000000..ff0894bf3d7 --- /dev/null +++ b/jdk/test/java/util/TimeZone/Bug5097350.java @@ -0,0 +1,63 @@ +/* + * Copyright (c) 2004, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 5097350 + * @summary Make sure that TimeZone.getTimeZone returns a clone of a cached TimeZone instance. + */ + +import java.util.*; +import java.text.*; + +public class Bug5097350 { + public static void main(String[] args) { + String[] tzids = TimeZone.getAvailableIDs(); + List ids = new ArrayList<>(tzids.length + 10); + ids.addAll(Arrays.asList(tzids)); + // add some custom ids + ids.add("GMT+1"); + ids.add("GMT-7:00"); + ids.add("GMT+10:20"); + ids.add("GMT-00:00"); + ids.add("GMT+00:00"); + + for (String id : ids) { + test(id); + } + } + + private static void test(String id) { + TimeZone tz1 = TimeZone.getTimeZone(id); + int offset1 = tz1.getRawOffset(); + tz1.setRawOffset(offset1 + 13 * 60 * 60 * 1000); + + TimeZone tz2 = TimeZone.getTimeZone(id); + if (tz1 == tz2) { + throw new RuntimeException("TimeZones are identical: " + id); + } + if (offset1 != tz2.getRawOffset()) { + throw new RuntimeException("Offset changed through aliasing: " + id); + } + } +} diff --git a/jdk/test/java/util/TimeZone/CheckDisplayNames.java b/jdk/test/java/util/TimeZone/CheckDisplayNames.java new file mode 100644 index 00000000000..efdb5cdf38d --- /dev/null +++ b/jdk/test/java/util/TimeZone/CheckDisplayNames.java @@ -0,0 +1,296 @@ +/* + * Copyright (c) 2002, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 6405639 8008577 + * @summary Validate timezone display names in + * src/java.base/share/classes/sun/util/resources/TimeZoneNames.java. + * @modules java.base/sun.util.resources + * @compile -XDignore.symbol.file CheckDisplayNames.java + * @run main/othervm -Djava.locale.providers=COMPAT,SPI CheckDisplayNames + */ + +import java.util.*; +import sun.util.resources.TimeZoneNames; + +/** + * CheckDisplayNames checks all available time zones in the Java run + * time environment and sees if those have their display names besides doing + * some other test cases. It outputs time zones that don't have display names + * if -source option is specified. + *

+ *
+ *    Usage: java CheckDisplayNames [-source]
+ *              -source ... produces source code for editing TimeZoneNames.java.
+ * 
+ *
+ */ +public class CheckDisplayNames { + + private static boolean err = false; + private static boolean src = false; + + private static Locale[] locales = Locale.getAvailableLocales(); + private static String[] zones = TimeZone.getAvailableIDs(); + + private static String[] zones_118 = { + "ACT", "Australia/Darwin", + "AET", "Australia/Sydney", + "AGT", "America/Buenos_Aires", + "ART", "Africa/Cairo", + "AST", "America/Anchorage", + "BET", "America/Sao_Paulo", + "BST", "Asia/Dacca", + "CAT", "Africa/Harare", + "CNT", "America/St_Johns", + "CST", "America/Chicago", + "CTT", "Asia/Shanghai", + "EAT", "Africa/Addis_Ababa", + "ECT", "Europe/Paris", +// "EET", "Africa/Istanbul", + "EST", "America/New_York", + "HST", "Pacific/Honolulu", + "IET", "America/Indiana/Indianapolis", +// Comment out for this test case fails as the result of L10N for hi_IN. +// "IST", "Asia/Calcutta", + "JST", "Asia/Tokyo", +// "MET", "Asia/Tehran", + "MIT", "Pacific/Apia", + "MST", "America/Denver", + "NET", "Asia/Yerevan", + "NST", "Pacific/Auckland", + "PLT", "Asia/Karachi", + "PNT", "America/Phoenix", + "PRT", "America/Puerto_Rico", + "PST", "America/Los_Angeles", + "SST", "Pacific/Guadalcanal", + "VST", "Asia/Saigon", + }; + + + public static void main(String[] argv) { + Locale reservedLocale = Locale.getDefault(); + try { + if (argv.length == 1 && "-source".equals(argv[0])) { + src = true; + } + + testDisplayNames(); + testRAWoffsetAndDisplayNames(); + test118DisplayNames(); + + if (err) { + throw new RuntimeException( + "TimeZone display name validation failed."); + } else { + System.out.println( + "\nAll test passed.\nTotal number of valid TimeZone id is " + + zones.length); + } + } finally { + // restore the reserved locale + Locale.setDefault(reservedLocale); + } + + } + + /* + * Checks if each timezone ID has display names. If it doesn't and + * "-source" option was specified, source code is generated. + */ + private static void testDisplayNames() { + System.out.println("Checking if each entry in TimeZoneNames is a valid TimeZone ID"); + + Locale.setDefault(Locale.US); + Enumeration data = new TimeZoneNames().getKeys(); + + while (data.hasMoreElements()) { + String name = (String)data.nextElement(); + String id = TimeZone.getTimeZone(name).getID(); + if (!name.equals(id)) { + System.err.println("\t" + name + " doesn't seem to be a valid TimeZone ID."); + err = true; + } + } + + System.out.println("Checking if each TimeZone ID has display names."); + + for (int i = 0; i < zones.length; i++) { + String id = zones[i]; + + if (id != null) { + if (id.startsWith("Etc/GMT")) { + continue; + } + if (id.indexOf("Riyadh8") != -1) { + continue; + } + if (id.equals("GMT0")) { + continue; + } + } + + TimeZone tz = TimeZone.getTimeZone(id); + String name = tz.getDisplayName(); + + if (name == null || name.startsWith("GMT+") || name.startsWith("GMT-")) { + if (src) { + System.out.println("\t {\"" + tz.getID() + "\", " + + "new String[] {\"Standard Time Name\", \"ST\",\n" + + "\t\t\t\t\t\t\"Daylight Time Name\", \"DT\"}},"); + } else { + System.err.println("\t" + tz.getID() + " doesn't seem to have display names"); + err = true; + } + } + } + } + + /* + * Compares + * - raw DST offset + * - short display names in non-DST + * - short display names in DST + * - long display names in DST + * of two timezones whose long display names in non-DST are same. + * If one of these are different, there may be a bug. + */ + private static void testRAWoffsetAndDisplayNames() { + System.out.println("Checking if each entry in TimeZoneNames is a valid TimeZone ID"); + + HashMap map = new HashMap(); + + for (int i = 0; i < locales.length; i++) { + map.clear(); + + for (int j = 0; j < zones.length; j++) { + TimeZone tz1 = TimeZone.getTimeZone(zones[j]); + String name = tz1.getDisplayName(false, TimeZone.LONG, locales[i]); + + if (map.containsKey(name)) { + TimeZone tz2 = map.get(name); + + int offset1 = tz1.getRawOffset(); + int offset2 = tz2.getRawOffset(); + if (offset1 != offset2) { + System.err.println("Two timezones which have the same long display name \"" + + name + "\" in non-DST have different DST offsets in " + + locales[i] + " locale.\n\tTimezone 1=" + + tz1.getID() + "(" + offset1 + ")\n\tTimezone 2=" + + tz2.getID() + "(" + offset2 + ")"); + } + + String name1 = tz1.getDisplayName(false, TimeZone.SHORT, locales[i]); + String name2 = tz2.getDisplayName(false, TimeZone.SHORT, locales[i]); + if (!(name1.equals("GMT") && name2.equals("GMT")) && + !(name1.equals("CET") && name2.equals("MET")) && + !(name1.equals("MET") && name2.equals("CET"))) { + if (!name1.equals(name2)) { + System.err.println("Two timezones which have the same short display name \"" + + name + + "\" in non-DST have different short display names in non-DST in " + + locales[i] + " locale.\n\tTimezone 1=" + + tz1.getID() + "(" + name1 + ")\n\tTimezone 2=" + + tz2.getID() + "(" + name2 + ")"); + } + + name1 = tz1.getDisplayName(true, TimeZone.SHORT, locales[i]); + name2 = tz2.getDisplayName(true, TimeZone.SHORT, locales[i]); + if (!name1.equals(name2)) { + System.err.println("Two timezones which have the same short display name \"" + + name + + "\" in non-DST have different short display names in DST in " + + locales[i] + " locale.\n\tTimezone 1=" + + tz1.getID() + "(" + name1 + ")\n\tTimezone 2=" + + tz2.getID() + "(" + name2 + ")"); + } + + name1 = tz1.getDisplayName(true, TimeZone.LONG, locales[i]); + name2 = tz2.getDisplayName(true, TimeZone.LONG, locales[i]); + if (!name1.equals(name2)) { + System.err.println("Two timezones which have the same long display name \"" + + name + + "\" in non-DST have different long display names in DST in " + + locales[i] + " locale.\n\tTimezone 1=" + + tz1.getID() + "(" + name1 + ")\n\tTimezone 2=" + + tz2.getID() + "(" + name2 + ")"); + } + } + } else { + map.put(name, tz1); + } + } + } + } + + /* + * Compares three-letter timezones' display names with corresponding + * "popular" timezones. + */ + private static void test118DisplayNames() { + System.out.println("Checking compatibility of Java 1.1.X's three-letter timezones"); + + for (int i = 0; i < zones_118.length; i+=2) { + String id_118 = zones_118[i]; + String id_later = zones_118[i+1]; + String zone_118, zone_later, localename; + TimeZone tz_118 = TimeZone.getTimeZone(id_118); + TimeZone tz_later = TimeZone.getTimeZone(id_later); + + for (int j = 0; j < locales.length; j++) { + localename = locales[j].toString(); + zone_118 = tz_118.getDisplayName(false, TimeZone.SHORT, locales[j]); + zone_later = tz_later.getDisplayName(false, TimeZone.SHORT, locales[j]); + check(id_118, id_later, zone_118, zone_later, "short", "non-DST", localename); + + zone_118 = tz_118.getDisplayName(true, TimeZone.SHORT, locales[j]); + zone_later = tz_later.getDisplayName(true, TimeZone.SHORT, locales[j]); + check(id_118, id_later, zone_118, zone_later, "short", "DST", localename); + + zone_118 = tz_118.getDisplayName(false, TimeZone.LONG, locales[j]); + zone_later = tz_later.getDisplayName(false, TimeZone.LONG, locales[j]); + check(id_118, id_later, zone_118, zone_later, "long", "non-DST", localename); + + zone_118 = tz_118.getDisplayName(true, TimeZone.LONG, locales[j]); + zone_later = tz_later.getDisplayName(true, TimeZone.LONG, locales[j]); + check(id_118, id_later, zone_118, zone_later, "long", "DST", localename); + } + } + } + + private static void check(String zoneID_118, String zoneID_later, + String zonename_118, String zonename_later, + String format, String dst, String loc) { + if (!zonename_118.equals(zonename_later)) { + System.err.println("JDK 118 TimeZone \"" + zoneID_118 + + "\" has a different " + format + + " display name from its equivalent timezone \"" + + zoneID_later + "\" in " + dst + " in " + loc + " locale."); + System.err.println(" Got: " + zonename_118 + ", Expected: " + + zonename_later); + err = true; + } + } + +} diff --git a/jdk/test/java/util/TimeZone/DefaultTimeZoneTest.html b/jdk/test/java/util/TimeZone/DefaultTimeZoneTest.html new file mode 100644 index 00000000000..1fa0659ed63 --- /dev/null +++ b/jdk/test/java/util/TimeZone/DefaultTimeZoneTest.html @@ -0,0 +1,74 @@ + + + + + + Disable Auto-adjust Daylight Saving Time Test + + + +This applet tests the platform time zone detection on all platforms (Part I) +and on/off of DST adjustment on Windows (Part II). + +Part I: + +Observe the displayed Time zone ID and the local time. If you can change +the platform time zone setting, try several time zones. If both the ID and +the local time, including the time zone name and its time zone offset, are +always correct, Part I passes. Note that some time zone IDs have their +aliases that may be displayed. For example, "US/Pacific" is an alias of +"America/Los_Angeles". + +If you are running this applet in non-English locale, the time zone names +can be displayed in the local language and English by pushing the +English/Local button. + +If platform time zones are NOT detected correctly, press the Fail button +to finish this applet. + +If this platform is Windows, proceed to Part II. Otherwise, press the Pass +button to finish this applet. + +Part II: + +Note that Part II may require the Administrator privilege to change +Windows setting. + + 1. Open the Date and Time control panel. + 2. Select any time zone where daylight saving time is *currently* in effect, + such as "(GMT-08:00) Pacific Time (US & Canada); Tijuana", + "(GMT+10:00) Canberra, Melbourne, Sydney", and Apply. + 3. Observe the local time on the control panel (Date&Time pane) and + the applet local time should be the same (daylight time). + 4. Clear "Automatically adjust clock for daylight saving changes" and Apply. + 5. Observe the two local times should be the same (standard time). + 6. Select "Automatically adjust clock for daylight saving changes" and Apply. + +If the local time in the control panel and applet are always the same, +then this test passes. Press the Pass or Fail button based on the Part II +result and finish this applet. + + + + diff --git a/jdk/test/java/util/TimeZone/DefaultTimeZoneTest.java b/jdk/test/java/util/TimeZone/DefaultTimeZoneTest.java new file mode 100644 index 00000000000..a6d3ac50866 --- /dev/null +++ b/jdk/test/java/util/TimeZone/DefaultTimeZoneTest.java @@ -0,0 +1,108 @@ +/* + * Copyright (c) 2005, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4296930 5033603 7092679 + * @summary Make sure that Java runtime detects the platform time zone + * correctly. Also make sure that the system time zone detection code + * detects the "Automatically adjust clock for daylight saving + * changes" setting correctly on Windows. + * @run applet/manual=yesno DefaultTimeZoneTest.html + */ + +import javax.swing.*; +import java.awt.*; +import java.awt.event.*; +import java.text.*; +import java.util.*; + +public class DefaultTimeZoneTest extends JApplet implements Runnable { + static final String FORMAT = "yyyy-MM-dd HH:mm:ss zzzz (XXX)"; + JLabel tzid; + JLabel label; + SimpleDateFormat sdf = new SimpleDateFormat(FORMAT); + JButton button = new JButton("English"); + Thread clock; + boolean english = false; + + @Override + public void init() { + tzid = new JLabel("Time zone ID: " + sdf.getTimeZone().getID(), SwingConstants.CENTER); + tzid.setAlignmentX(Component.CENTER_ALIGNMENT); + label = new JLabel(sdf.format(new Date()), SwingConstants.CENTER); + label.setAlignmentX(Component.CENTER_ALIGNMENT); + button.addActionListener(new ActionListener() { + @Override + @SuppressWarnings("deprecation") + public void actionPerformed(ActionEvent e) { + english = (english == false); + Locale loc = english ? Locale.US : Locale.getDefault(); + sdf = new SimpleDateFormat(FORMAT, loc); + button.setLabel(!english ? "English" : "Local"); + } + }); + button.setAlignmentX(Component.CENTER_ALIGNMENT); + JPanel panel = new JPanel(); + panel.setLayout(new BoxLayout(panel, BoxLayout.PAGE_AXIS)); + panel.add(Box.createRigidArea(new Dimension(0, 10))); + panel.add(tzid); + panel.add(Box.createRigidArea(new Dimension(0, 5))); + panel.add(label); + panel.add(Box.createRigidArea(new Dimension(0, 10))); + panel.add(button); + getContentPane().add(panel); + } + + @Override + public void start() { + clock = new Thread(this); + clock.start(); + } + + @Override + public void stop() { + clock = null; + } + + @Override + public void run() { + Thread me = Thread.currentThread(); + + while (clock == me) { + // Reset the default time zone so that + // TimeZone.getDefault will detect the platform time zone + TimeZone.setDefault(null); + System.setProperty("user.timezone", ""); + TimeZone tz = TimeZone.getDefault(); + sdf.setTimeZone(tz); + tzid.setText("Time zone ID: " + tz.getID()); + label.setText(sdf.format(new Date())); + repaint(); + try { + Thread.sleep(1000); + } catch (InterruptedException e) { + } + } + } +} diff --git a/jdk/test/java/util/TimeZone/HongKong.java b/jdk/test/java/util/TimeZone/HongKong.java new file mode 100644 index 00000000000..ef9c3f923f5 --- /dev/null +++ b/jdk/test/java/util/TimeZone/HongKong.java @@ -0,0 +1,64 @@ +/* + * Copyright (c) 2001, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4487276 8008577 + * @summary Verify that Hong Kong locale uses traditional Chinese names. + * @run main/othervm -Djava.locale.providers=COMPAT,SPI HongKong + */ + +import java.util.Locale; +import java.util.TimeZone; + +public class HongKong { + public static void main(String[] args) { + Locale reservedLocale = Locale.getDefault(); + try { + Locale.setDefault(new Locale("zh", "HK")); + checkCountry(Locale.GERMANY, "\u5fb7\u570b"); + checkCountry(Locale.FRANCE, "\u6cd5\u570b"); + checkCountry(Locale.ITALY, "\u7fa9\u5927\u5229"); + checkTimeZone("Asia/Shanghai", + "\u4e2d\u570b\u6a19\u6e96\u6642\u9593"); + } finally { + // restore the reserved locale + Locale.setDefault(reservedLocale); + } + } + + private static void checkCountry(Locale country, String expected) { + String actual = country.getDisplayCountry(); + if (!expected.equals(actual)) { + throw new RuntimeException(); + } + } + + private static void checkTimeZone(String timeZoneID, String expected) { + TimeZone timeZone = TimeZone.getTimeZone(timeZoneID); + String actual = timeZone.getDisplayName(); + if (!expected.equals(actual)) { + throw new RuntimeException(); + } + } +} diff --git a/jdk/test/java/util/TimeZone/IDTest.java b/jdk/test/java/util/TimeZone/IDTest.java new file mode 100644 index 00000000000..d5396b619b8 --- /dev/null +++ b/jdk/test/java/util/TimeZone/IDTest.java @@ -0,0 +1,121 @@ +/* + * Copyright (c) 2002, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4509255 5055567 6176318 7090844 + * @summary Tests consistencies of time zone IDs. + */ + +import java.util.Arrays; +import java.util.HashSet; +import java.util.Map; +import java.util.Set; +import java.util.TimeZone; +import java.util.TreeMap; + +public class IDTest { + public static void main(String[] args) { + Set ids = new HashSet<>(); + Map> tree = new TreeMap<>(); + + String[] tzs = TimeZone.getAvailableIDs(); + String[] tzs2 = TimeZone.getAvailableIDs(); + if (tzs.length != tzs2.length) { + throw new RuntimeException("tzs.length(" + tzs.length + + ") != tzs2.length(" + tzs2.length + ")"); + } + for (int i = 0; i < tzs.length; i++) { + if (tzs[i] != tzs2[i]) { + throw new RuntimeException(i + ": " + tzs[i] + " != " + tzs2[i]); + } + } + + System.out.println("Total: " + tzs.length + " time zone IDs"); + for (String id : tzs) { + ids.add(id); + TimeZone tz = TimeZone.getTimeZone(id); + Integer offset = tz.getRawOffset(); + Set s = tree.get(offset); + if (s == null) { + s = new HashSet<>(); + tree.put(offset, s); + } + s.add(id); + } + + for (Integer key : tree.keySet()) { + Set s1 = tree.get(key); + + // Make sure no duplicates in the other sets + for (Integer k : tree.keySet()) { + if (k.equals(key)) { + continue; + } + Set s2 = new HashSet<>(tree.get(k)); + s2.retainAll(s1); + if (!s2.isEmpty()) { + throw new RuntimeException("s1 included in the subset for " + (k.intValue()/60000) + + " (" + s2 + " shouldn't be in s1)"); + } + } + + // Check the getAvailableIDs(int) call to return the same + // set of IDs + int offset = key.intValue(); + tzs = TimeZone.getAvailableIDs(offset); + tzs2 = TimeZone.getAvailableIDs(offset); + if (!Arrays.equals(tzs, tzs2)) { + throw new RuntimeException("inconsistent tzs from getAvailableIDs("+offset+")"); + } + Set s2 = new HashSet<>(); + s2.addAll(Arrays.asList(tzs)); + if (!s1.equals(s2)) { + throw new RuntimeException("s1 != s2 for " + offset/60000 + + " (diff=" + getDiff(s1, s2) + ")"); + } + if (!ids.containsAll(s2)) { + throw new RuntimeException("s2 isn't a subset of ids (" + getDiff(s2, ids) + + " not in ids)"); + } + } + + for (Integer key : tree.keySet()) { + Set s1 = tree.get(key); + ids.removeAll(s1); + } + if (!ids.isEmpty()) { + throw new RuntimeException("ids didn't become empty. (" + ids + ")"); + } + } + + private static String getDiff(Set set1, Set set2) { + Set s1 = new HashSet<>(set1); + s1.removeAll(set2); + + Set s2 = new HashSet<>(set2); + s2.removeAll(set1); + s2.addAll(s1); + return s2.toString(); + } +} diff --git a/jdk/test/java/util/TimeZone/TimeZoneBoundaryTest.java b/jdk/test/java/util/TimeZone/TimeZoneBoundaryTest.java new file mode 100644 index 00000000000..a1d44ea080d --- /dev/null +++ b/jdk/test/java/util/TimeZone/TimeZoneBoundaryTest.java @@ -0,0 +1,491 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @library /java/text/testlib + * @summary test Time Zone Boundary + */ + +import java.text.*; +import java.util.*; + +/** + * A test which discovers the boundaries of DST programmatically and verifies + * that they are correct. + */ +public class TimeZoneBoundaryTest extends IntlTest +{ + static final int ONE_SECOND = 1000; + static final int ONE_MINUTE = 60*ONE_SECOND; + static final int ONE_HOUR = 60*ONE_MINUTE; + static final long ONE_DAY = 24*ONE_HOUR; + static final long ONE_YEAR = (long)(365.25 * ONE_DAY); + static final long SIX_MONTHS = ONE_YEAR / 2; + + static final int MONTH_LENGTH[] = {31,29,31,30,31,30,31,31,30,31,30,31}; + + // These values are empirically determined to be correct + static final long PST_1997_BEG = 860320800000L; + static final long PST_1997_END = 877856400000L; + + // Minimum interval for binary searches in ms; should be no larger + // than 1000. + static final long INTERVAL = 10; // Milliseconds + + static final String AUSTRALIA = "Australia/Adelaide"; + static final long AUSTRALIA_1997_BEG = 877797000000L; + static final long AUSTRALIA_1997_END = 859653000000L; + + public static void main(String[] args) throws Exception { + new TimeZoneBoundaryTest().run(args); + } + + /** + * Date.toString().substring() Boundary Test + * Look for a DST changeover to occur within 6 months of the given Date. + * The initial Date.toString() should yield a string containing the + * startMode as a SUBSTRING. The boundary will be tested to be + * at the expectedBoundary value. + */ + void findDaylightBoundaryUsingDate(Date d, String startMode, long expectedBoundary) + { + // Given a date with a year start, find the Daylight onset + // and end. The given date should be 1/1/xx in some year. + + if (d.toString().indexOf(startMode) == -1) + { + logln("Error: " + startMode + " not present in " + d); + } + + // Use a binary search, assuming that we have a Standard + // time at the midpoint. + long min = d.getTime(); + long max = min + SIX_MONTHS; + + while ((max - min) > INTERVAL) + { + long mid = (min + max) >> 1; + String s = new Date(mid).toString(); + // logln(s); + if (s.indexOf(startMode) != -1) + { + min = mid; + } + else + { + max = mid; + } + } + + logln("Date Before: " + showDate(min)); + logln("Date After: " + showDate(max)); + long mindelta = expectedBoundary - min; + long maxdelta = max - expectedBoundary; + if (mindelta >= 0 && mindelta <= INTERVAL && + mindelta >= 0 && mindelta <= INTERVAL) + logln("PASS: Expected boundary at " + expectedBoundary); + else + errln("FAIL: Expected boundary at " + expectedBoundary); + } + + void findDaylightBoundaryUsingTimeZone(Date d, boolean startsInDST, long expectedBoundary) + { + findDaylightBoundaryUsingTimeZone(d, startsInDST, expectedBoundary, + TimeZone.getDefault()); + } + + void findDaylightBoundaryUsingTimeZone(Date d, boolean startsInDST, + long expectedBoundary, TimeZone tz) + { + // Given a date with a year start, find the Daylight onset + // and end. The given date should be 1/1/xx in some year. + + // Use a binary search, assuming that we have a Standard + // time at the midpoint. + long min = d.getTime(); + long max = min + SIX_MONTHS; + + if (tz.inDaylightTime(d) != startsInDST) + { + errln("FAIL: " + tz.getID() + " inDaylightTime(" + + d + ") != " + startsInDST); + startsInDST = !startsInDST; // Flip over; find the apparent value + } + + if (tz.inDaylightTime(new Date(max)) == startsInDST) + { + errln("FAIL: " + tz.getID() + " inDaylightTime(" + + (new Date(max)) + ") != " + (!startsInDST)); + return; + } + + while ((max - min) > INTERVAL) + { + long mid = (min + max) >> 1; + boolean isIn = tz.inDaylightTime(new Date(mid)); + if (isIn == startsInDST) + { + min = mid; + } + else + { + max = mid; + } + } + + logln(tz.getID() + " Before: " + showDate(min, tz)); + logln(tz.getID() + " After: " + showDate(max, tz)); + + long mindelta = expectedBoundary - min; + long maxdelta = max - expectedBoundary; + if (mindelta >= 0 && mindelta <= INTERVAL && + mindelta >= 0 && mindelta <= INTERVAL) + logln("PASS: Expected boundary at " + expectedBoundary); + else + errln("FAIL: Expected boundary at " + expectedBoundary); + } + + private static String showDate(long l) + { + return showDate(new Date(l)); + } + + @SuppressWarnings("deprecation") + private static String showDate(Date d) + { + return "" + d.getYear() + "/" + showNN(d.getMonth()+1) + "/" + showNN(d.getDate()) + + " " + showNN(d.getHours()) + ":" + showNN(d.getMinutes()) + + " \"" + d + "\" = " + + d.getTime(); + } + + private static String showDate(long l, TimeZone z) + { + return showDate(new Date(l), z); + } + + @SuppressWarnings("deprecation") + private static String showDate(Date d, TimeZone zone) + { + DateFormat fmt = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG); + fmt.setTimeZone(zone); + return "" + d.getYear() + "/" + showNN(d.getMonth()+1) + "/" + showNN(d.getDate()) + + " " + showNN(d.getHours()) + ":" + showNN(d.getMinutes()) + + " \"" + d + "\" = " + + fmt.format(d); + } + + private static String showNN(int n) + { + return ((n < 10) ? "0" : "") + n; + } + + /** + * Given a date, a TimeZone, and expected values for inDaylightTime, + * useDaylightTime, zone and DST offset, verify that this is the case. + */ + void verifyDST(Date d, TimeZone time_zone, + boolean expUseDaylightTime, boolean expInDaylightTime, + int expZoneOffset, int expDSTOffset) + { + logln("-- Verifying time " + d + + " in zone " + time_zone.getID()); + + if (time_zone.inDaylightTime(d) == expInDaylightTime) + logln("PASS: inDaylightTime = " + time_zone.inDaylightTime(d)); + else + errln("FAIL: inDaylightTime = " + time_zone.inDaylightTime(d)); + + if (time_zone.useDaylightTime() == expUseDaylightTime) + logln("PASS: useDaylightTime = " + time_zone.useDaylightTime()); + else + errln("FAIL: useDaylightTime = " + time_zone.useDaylightTime()); + + if (time_zone.getRawOffset() == expZoneOffset) + logln("PASS: getRawOffset() = " + expZoneOffset/(double)ONE_HOUR); + else + errln("FAIL: getRawOffset() = " + time_zone.getRawOffset()/(double)ONE_HOUR + + "; expected " + expZoneOffset/(double)ONE_HOUR); + + GregorianCalendar gc = new GregorianCalendar(time_zone); + gc.setTime(d); + int offset = time_zone.getOffset(gc.get(gc.ERA), gc.get(gc.YEAR), gc.get(gc.MONTH), + gc.get(gc.DAY_OF_MONTH), gc.get(gc.DAY_OF_WEEK), + ((gc.get(gc.HOUR_OF_DAY) * 60 + + gc.get(gc.MINUTE)) * 60 + + gc.get(gc.SECOND)) * 1000 + + gc.get(gc.MILLISECOND)); + if (offset == expDSTOffset) + logln("PASS: getOffset() = " + offset/(double)ONE_HOUR); + else + errln("FAIL: getOffset() = " + offset/(double)ONE_HOUR + + "; expected " + expDSTOffset/(double)ONE_HOUR); + } + + @SuppressWarnings("deprecation") + public void TestBoundaries() + { + TimeZone pst = TimeZone.getTimeZone("PST"); + TimeZone save = TimeZone.getDefault(); + try { + TimeZone.setDefault(pst); + + // DST changeover for PST is 4/6/1997 at 2 hours past midnight + Date d = new Date(97,Calendar.APRIL,6); + + // i is minutes past midnight standard time + for (int i=60; i<=180; i+=15) + { + boolean inDST = (i >= 120); + Date e = new Date(d.getTime() + i*60*1000); + verifyDST(e, pst, true, inDST, -8*ONE_HOUR, + inDST ? -7*ONE_HOUR : -8*ONE_HOUR); + } + + logln("========================================"); + findDaylightBoundaryUsingDate(new Date(97,0,1), "PST", PST_1997_BEG); + logln("========================================"); + findDaylightBoundaryUsingDate(new Date(97,6,1), "PDT", PST_1997_END); + + // Southern hemisphere test + logln("========================================"); + TimeZone z = TimeZone.getTimeZone(AUSTRALIA); + findDaylightBoundaryUsingTimeZone(new Date(97,0,1), true, AUSTRALIA_1997_END, z); + + logln("========================================"); + findDaylightBoundaryUsingTimeZone(new Date(97,0,1), false, PST_1997_BEG); + logln("========================================"); + findDaylightBoundaryUsingTimeZone(new Date(97,6,1), true, PST_1997_END); + } finally { + TimeZone.setDefault(save); + } + } + + void testUsingBinarySearch(SimpleTimeZone tz, Date d, long expectedBoundary) + { + // Given a date with a year start, find the Daylight onset + // and end. The given date should be 1/1/xx in some year. + + // Use a binary search, assuming that we have a Standard + // time at the midpoint. + long min = d.getTime(); + long max = min + (long)(365.25 / 2 * ONE_DAY); + + // First check the boundaries + boolean startsInDST = tz.inDaylightTime(d); + + if (tz.inDaylightTime(new Date(max)) == startsInDST) + { + logln("Error: inDaylightTime(" + (new Date(max)) + ") != " + (!startsInDST)); + } + + while ((max - min) > INTERVAL) + { + long mid = (min + max) >> 1; + if (tz.inDaylightTime(new Date(mid)) == startsInDST) + { + min = mid; + } + else + { + max = mid; + } + } + + logln("Binary Search Before: " + showDate(min)); + logln("Binary Search After: " + showDate(max)); + + long mindelta = expectedBoundary - min; + long maxdelta = max - expectedBoundary; + if (mindelta >= 0 && mindelta <= INTERVAL && + mindelta >= 0 && mindelta <= INTERVAL) + logln("PASS: Expected boundary at " + expectedBoundary); + else + errln("FAIL: Expected boundary at " + expectedBoundary); + } + + /* + static void testUsingMillis(Date d, boolean startsInDST) + { + long millis = d.getTime(); + long max = millis + (long)(370 * ONE_DAY); // A year plus extra + + boolean lastDST = startsInDST; + while (millis < max) + { + cal.setTime(new Date(millis)); + boolean inDaylight = cal.inDaylightTime(); + + if (inDaylight != lastDST) + { + logln("Switch " + (inDaylight ? "into" : "out of") + + " DST at " + (new Date(millis))); + lastDST = inDaylight; + } + + millis += 15*ONE_MINUTE; + } + } + */ + + /** + * Test new rule formats. + */ + @SuppressWarnings("deprecation") + public void TestNewRules() + { + //logln(Locale.getDefault().getDisplayName()); + //logln(TimeZone.getDefault().getID()); + //logln(new Date(0)); + + if (true) + { + // Doesn't matter what the default TimeZone is here, since we + // are creating our own TimeZone objects. + + SimpleTimeZone tz; + + logln("-----------------------------------------------------------------"); + logln("Aug 2ndTues .. Mar 15"); + tz = new SimpleTimeZone(-8*ONE_HOUR, "Test_1", + Calendar.AUGUST, 2, Calendar.TUESDAY, 2*ONE_HOUR, + Calendar.MARCH, 15, 0, 2*ONE_HOUR); + //logln(tz.toString()); + logln("========================================"); + testUsingBinarySearch(tz, new Date(97,0,1), 858416400000L); + logln("========================================"); + testUsingBinarySearch(tz, new Date(97,6,1), 871380000000L); + + logln("-----------------------------------------------------------------"); + logln("Apr Wed>=14 .. Sep Sun<=20"); + tz = new SimpleTimeZone(-8*ONE_HOUR, "Test_2", + Calendar.APRIL, 14, -Calendar.WEDNESDAY, 2*ONE_HOUR, + Calendar.SEPTEMBER, -20, -Calendar.SUNDAY, 2*ONE_HOUR); + //logln(tz.toString()); + logln("========================================"); + testUsingBinarySearch(tz, new Date(97,0,1), 861184800000L); + logln("========================================"); + testUsingBinarySearch(tz, new Date(97,6,1), 874227600000L); + } + + /* + if (true) + { + logln("========================================"); + logln("Stepping using millis"); + testUsingMillis(new Date(97,0,1), false); + } + + if (true) + { + logln("========================================"); + logln("Stepping using fields"); + testUsingFields(1997, false); + } + + if (false) + { + cal.clear(); + cal.set(1997, 3, 5, 10, 0); + // cal.inDaylightTime(); + logln("Date = " + cal.getTime()); + logln("Millis = " + cal.getTime().getTime()/3600000); + } + */ + } + + //---------------------------------------------------------------------- + //---------------------------------------------------------------------- + //---------------------------------------------------------------------- + // Long Bug + //---------------------------------------------------------------------- + //---------------------------------------------------------------------- + //---------------------------------------------------------------------- + + //public void Test3() + //{ + // findDaylightBoundaryUsingTimeZone(new Date(97,6,1), true); + //} + + /** + * Find boundaries by stepping. + */ + @SuppressWarnings("deprecation") + void findBoundariesStepwise(int year, long interval, TimeZone z, int expectedChanges) + { + Date d = new Date(year - 1900, Calendar.JANUARY, 1); + long time = d.getTime(); // ms + long limit = time + ONE_YEAR + ONE_DAY; + boolean lastState = z.inDaylightTime(d); + int changes = 0; + logln("-- Zone " + z.getID() + " starts in " + year + " with DST = " + lastState); + logln("useDaylightTime = " + z.useDaylightTime()); + while (time < limit) + { + d.setTime(time); + boolean state = z.inDaylightTime(d); + if (state != lastState) + { + logln((state ? "Entry " : "Exit ") + + "at " + d); + lastState = state; + ++changes; + } + time += interval; + } + if (changes == 0) + { + if (!lastState && !z.useDaylightTime()) logln("No DST"); + else errln("FAIL: Timezone<" + z.getID() + "> DST all year, or no DST with true useDaylightTime"); + } + else if (changes != 2) + { + errln("FAIL: Timezone<" + z.getID() + "> " + changes + " changes seen; should see 0 or 2"); + } + else if (!z.useDaylightTime()) + { + errln("FAIL: Timezone<" + z.getID() + "> useDaylightTime false but 2 changes seen"); + } + if (changes != expectedChanges) + { + errln("FAIL: Timezone<" + z.getID() + "> " + changes + " changes seen; expected " + expectedChanges); + } + } + + public void TestStepwise() + { + findBoundariesStepwise(1997, ONE_DAY, TimeZone.getTimeZone("ACT"), 0); + // "EST" is disabled because its behavior depends on the mapping property. (6466476). + //findBoundariesStepwise(1997, ONE_DAY, TimeZone.getTimeZone("EST"), 2); + findBoundariesStepwise(1997, ONE_DAY, TimeZone.getTimeZone("HST"), 0); + findBoundariesStepwise(1997, ONE_DAY, TimeZone.getTimeZone("PST"), 2); + findBoundariesStepwise(1997, ONE_DAY, TimeZone.getTimeZone("PST8PDT"), 2); + findBoundariesStepwise(1997, ONE_DAY, TimeZone.getTimeZone("SystemV/PST"), 0); + findBoundariesStepwise(1997, ONE_DAY, TimeZone.getTimeZone("SystemV/PST8PDT"), 2); + findBoundariesStepwise(1997, ONE_DAY, TimeZone.getTimeZone("Japan"), 0); + findBoundariesStepwise(1997, ONE_DAY, TimeZone.getTimeZone("Europe/Paris"), 2); + findBoundariesStepwise(1997, ONE_DAY, TimeZone.getTimeZone("America/Los_Angeles"), 2); + findBoundariesStepwise(1997, ONE_DAY, TimeZone.getTimeZone(AUSTRALIA), 2); + } +} diff --git a/jdk/test/java/util/TimeZone/TimeZoneRegression.java b/jdk/test/java/util/TimeZone/TimeZoneRegression.java new file mode 100644 index 00000000000..8b9e2f4a22a --- /dev/null +++ b/jdk/test/java/util/TimeZone/TimeZoneRegression.java @@ -0,0 +1,995 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4052967 4073209 4073215 4084933 4096952 4109314 4126678 4151406 4151429 + * 4154525 4154537 4154542 4154650 4159922 4162593 4173604 4176686 4184229 4208960 + * 4966229 6433179 6851214 8007520 8008577 + * @library /java/text/testlib + * @run main/othervm -Djava.locale.providers=COMPAT,SPI TimeZoneRegression + */ + +import java.util.*; +import java.io.*; +import java.text.*; + +public class TimeZoneRegression extends IntlTest { + + public static void main(String[] args) throws Exception { + new TimeZoneRegression().run(args); + } + + public void Test4052967() { + logln("*** CHECK TIMEZONE AGAINST HOST OS SETTING ***"); + String id = TimeZone.getDefault().getID(); + logln("user.timezone: " + System.getProperty("user.timezone", "")); + logln("TimeZone.getDefault().getID(): " + id); + logln(new Date().toString()); + logln("*** THE RESULTS OF THIS TEST MUST BE VERIFIED MANUALLY ***"); + } + + public void Test4073209() { + TimeZone z1 = TimeZone.getTimeZone("PST"); + TimeZone z2 = TimeZone.getTimeZone("PST"); + if (z1 == z2) { + errln("Fail: TimeZone should return clones"); + } + } + + @SuppressWarnings("deprecation") + public void Test4073215() { + SimpleTimeZone z = new SimpleTimeZone(0, "GMT"); + if (z.useDaylightTime()) { + errln("Fail: Fix test to start with non-DST zone"); + } + z.setStartRule(Calendar.FEBRUARY, 1, Calendar.SUNDAY, 0); + z.setEndRule(Calendar.MARCH, -1, Calendar.SUNDAY, 0); + if (!z.useDaylightTime()) { + errln("Fail: DST not active"); + } + if (z.inDaylightTime(new Date(97, Calendar.JANUARY, 31)) || + !z.inDaylightTime(new Date(97, Calendar.MARCH, 1)) || + z.inDaylightTime(new Date(97, Calendar.MARCH, 31))) { + errln("Fail: DST not working as expected"); + } + } + + /** + * The expected behavior of TimeZone around the boundaries is: + * (Assume transition time of 2:00 AM) + * day of onset 1:59 AM STD = display name 1:59 AM ST + * 2:00 AM STD = display name 3:00 AM DT + * day of end 0:59 AM STD = display name 1:59 AM DT + * 1:00 AM STD = display name 1:00 AM ST + */ + public void Test4084933() { + // test both SimpleTimeZone and ZoneInfo objects. + // @since 1.4 + sub4084933(getPST()); + sub4084933(TimeZone.getTimeZone("PST")); + } + + private void sub4084933(TimeZone tz) { + long offset1 = tz.getOffset(1, + 1997, Calendar.OCTOBER, 26, Calendar.SUNDAY, (2*60*60*1000)); + long offset2 = tz.getOffset(1, + 1997, Calendar.OCTOBER, 26, Calendar.SUNDAY, (2*60*60*1000)-1); + + long offset3 = tz.getOffset(1, + 1997, Calendar.OCTOBER, 26, Calendar.SUNDAY, (1*60*60*1000)); + long offset4 = tz.getOffset(1, + 1997, Calendar.OCTOBER, 26, Calendar.SUNDAY, (1*60*60*1000)-1); + + /* + * The following was added just for consistency. It shows that going *to* Daylight + * Savings Time (PDT) does work at 2am. + */ + + long offset5 = tz.getOffset(1, + 1997, Calendar.APRIL, 6, Calendar.SUNDAY, (2*60*60*1000)); + long offset6 = tz.getOffset(1, + 1997, Calendar.APRIL, 6, Calendar.SUNDAY, (2*60*60*1000)-1); + + long offset7 = tz.getOffset(1, + 1997, Calendar.APRIL, 6, Calendar.SUNDAY, (1*60*60*1000)); + long offset8 = tz.getOffset(1, + 1997, Calendar.APRIL, 6, Calendar.SUNDAY, (1*60*60*1000)-1); + + long SToffset = -8 * 60*60*1000L; + long DToffset = -7 * 60*60*1000L; + if (offset1 != SToffset || offset2 != SToffset || + offset3 != SToffset || offset4 != DToffset || + offset5 != DToffset || offset6 != SToffset || + offset7 != SToffset || offset8 != SToffset) + errln("Fail: TimeZone misbehaving"); { + } + } + + public void Test4096952() { + String[] ZONES = { "GMT", "MET", "IST" }; + boolean pass = true; + try { + for (int i=0; i= ONE_DAY) { + millis -= ONE_DAY; + ++date; + dow = Calendar.SUNDAY + ((dow - Calendar.SUNDAY + 1) % 7); + } + + tzOffset = testTZ.getOffset(testCal.get(Calendar.ERA), + testCal.get(Calendar.YEAR), + testCal.get(Calendar.MONTH), + date, + dow, + millis); + tzRawOffset = testTZ.getRawOffset(); + tzOffsetFloat = new Float((float)tzOffset/(float)3600000); + tzRawOffsetFloat = new Float((float)tzRawOffset/(float)3600000); + + Date testDate = testCal.getTime(); + + boolean inDaylightTime = testTZ.inDaylightTime(testDate); + SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy HH:mm"); + sdf.setCalendar(testCal); + String inDaylightTimeString; + + boolean passed; + + if (inDaylightTime) + { + inDaylightTimeString = " DST "; + passed = (tzOffset == (tzRawOffset + 3600000)); + } + else + { + inDaylightTimeString = " "; + passed = (tzOffset == tzRawOffset); + } + + String output = testTZ.getID() + " " + sdf.format(testDate) + + " Offset(" + tzOffsetFloat + ")" + + " RawOffset(" + tzRawOffsetFloat + ")" + + " " + millis/(float)3600000 + " " + + inDaylightTimeString; + + if (passed) + output += " "; + else + output += "ERROR"; + + if (passed) logln(output); else errln(output); + return passed; + } + + /** + * CANNOT REPRODUDE + * + * Yet another _alleged_ bug in TimeZone.getOffset(), a method that never + * should have been made public. It's simply too hard to use correctly. + * + * The original test code failed to do the following: + * (1) Call Calendar.setTime() before getting the fields! + * (2) Use the right millis (as usual) for getOffset(); they were passing + * in the MILLIS field, instead of the STANDARD MILLIS IN DAY. + * When you fix these two problems, the test passes, as expected. + */ + public void Test4126678() { + // Note: this test depends on the PST time zone. + TimeZone initialZone = TimeZone.getDefault(); + + // test both SimpleTimeZone and ZoneInfo objects. + // @since 1.4 + sub4126678(getPST()); + sub4126678(TimeZone.getTimeZone("PST")); + + // restore the initial time zone so that this test case + // doesn't affect the others. + TimeZone.setDefault(initialZone); + } + + @SuppressWarnings("deprecation") + private void sub4126678(TimeZone tz) { + Calendar cal = Calendar.getInstance(); + TimeZone.setDefault(tz); + cal.setTimeZone(tz); + + Date dt = new Date(1998-1900, Calendar.APRIL, 5, 10, 0); + // the dt value is local time in PST. + if (!tz.inDaylightTime(dt)) + errln("We're not in Daylight Savings Time and we should be.\n"); + + cal.setTime(dt); + int era = cal.get(Calendar.ERA); + int year = cal.get(Calendar.YEAR); + int month = cal.get(Calendar.MONTH); + int day = cal.get(Calendar.DATE); + int dayOfWeek = cal.get(Calendar.DAY_OF_WEEK); + int millis = cal.get(Calendar.MILLISECOND) + + (cal.get(Calendar.SECOND) + + (cal.get(Calendar.MINUTE) + + (cal.get(Calendar.HOUR) * 60) * 60) * 1000) - + cal.get(Calendar.DST_OFFSET); + + long offset = tz.getOffset(era, year, month, day, dayOfWeek, millis); + long raw_offset = tz.getRawOffset(); + if (offset == raw_offset) { + errln("Offsets should not match when in DST"); + } + } + + /** + * TimeZone.getAvailableIDs(int) throws exception for certain values, + * due to a faulty constant in TimeZone.java. + */ + public void Test4151406() { + int max = 0; + for (int h=-28; h<=30; ++h) { + // h is in half-hours from GMT; rawoffset is in millis + int rawoffset = h * 1800000; + int hh = (h<0) ? -h : h; + String hname = ((h<0) ? "GMT-" : "GMT+") + + ((hh/2 < 10) ? "0" : "") + + (hh/2) + ':' + + ((hh%2==0) ? "00" : "30"); + try { + String[] ids = TimeZone.getAvailableIDs(rawoffset); + if (ids.length > max) max = ids.length; + logln(hname + ' ' + ids.length + + ((ids.length > 0) ? (" e.g. " + ids[0]) : "")); + } catch (Exception e) { + errln(hname + ' ' + "Fail: " + e); + } + } + logln("Maximum zones per offset = " + max); + } + + public void Test4151429() { + try { + TimeZone tz = TimeZone.getTimeZone("GMT"); + String name = tz.getDisplayName(true, Integer.MAX_VALUE, + Locale.getDefault()); + errln("IllegalArgumentException not thrown by TimeZone.getDisplayName()"); + } catch(IllegalArgumentException e) {} + } + + /** + * SimpleTimeZone accepts illegal DST savings values. These values + * must be non-zero. There is no upper limit at this time. + */ + public void Test4154525() { + final int GOOD = 1, BAD = 0; + int[] DATA = { + 1, GOOD, + 0, BAD, + -1, BAD, + 60*60*1000, GOOD, + Integer.MIN_VALUE, BAD, + // Integer.MAX_VALUE, ?, // no upper limit on DST savings at this time + }; + for (int i=0; i) should work but throws " + ex) + : ", ) should fail but doesn't")); + } + + ex = null; + try { + SimpleTimeZone temp = new SimpleTimeZone(0, "Z", + GOOD_MONTH, GOOD_DAY, GOOD_DAY_OF_WEEK, GOOD_TIME, + month, day, dayOfWeek, time); + } catch (IllegalArgumentException e) { + ex = e; + } + if ((ex == null) != shouldBeGood) { + errln("SimpleTimeZone(, month=" + month + ", day=" + day + + ", dayOfWeek=" + dayOfWeek + ", time=" + time + + (shouldBeGood ? (") should work but throws " + ex) + : ") should fail but doesn't")); + } + } + } + + /** + * SimpleTimeZone.getOffset accepts illegal arguments. + */ + public void Test4154650() { + final int GOOD=1, BAD=0; + final int GOOD_ERA=GregorianCalendar.AD, GOOD_YEAR=1998, GOOD_MONTH=Calendar.AUGUST; + final int GOOD_DAY=2, GOOD_DOW=Calendar.SUNDAY, GOOD_TIME=16*3600000; + int[] DATA = { + GOOD, GOOD_ERA, GOOD_YEAR, GOOD_MONTH, GOOD_DAY, GOOD_DOW, GOOD_TIME, + + GOOD, GregorianCalendar.BC, GOOD_YEAR, GOOD_MONTH, GOOD_DAY, GOOD_DOW, GOOD_TIME, + GOOD, GregorianCalendar.AD, GOOD_YEAR, GOOD_MONTH, GOOD_DAY, GOOD_DOW, GOOD_TIME, + BAD, GregorianCalendar.BC-1, GOOD_YEAR, GOOD_MONTH, GOOD_DAY, GOOD_DOW, GOOD_TIME, + BAD, GregorianCalendar.AD+1, GOOD_YEAR, GOOD_MONTH, GOOD_DAY, GOOD_DOW, GOOD_TIME, + + GOOD, GOOD_ERA, GOOD_YEAR, Calendar.JANUARY, GOOD_DAY, GOOD_DOW, GOOD_TIME, + GOOD, GOOD_ERA, GOOD_YEAR, Calendar.DECEMBER, GOOD_DAY, GOOD_DOW, GOOD_TIME, + BAD, GOOD_ERA, GOOD_YEAR, Calendar.JANUARY-1, GOOD_DAY, GOOD_DOW, GOOD_TIME, + BAD, GOOD_ERA, GOOD_YEAR, Calendar.DECEMBER+1, GOOD_DAY, GOOD_DOW, GOOD_TIME, + + GOOD, GOOD_ERA, GOOD_YEAR, Calendar.JANUARY, 1, GOOD_DOW, GOOD_TIME, + GOOD, GOOD_ERA, GOOD_YEAR, Calendar.JANUARY, 31, GOOD_DOW, GOOD_TIME, + BAD, GOOD_ERA, GOOD_YEAR, Calendar.JANUARY, 0, GOOD_DOW, GOOD_TIME, + BAD, GOOD_ERA, GOOD_YEAR, Calendar.JANUARY, 32, GOOD_DOW, GOOD_TIME, + + GOOD, GOOD_ERA, GOOD_YEAR, GOOD_MONTH, GOOD_DAY, Calendar.SUNDAY, GOOD_TIME, + GOOD, GOOD_ERA, GOOD_YEAR, GOOD_MONTH, GOOD_DAY, Calendar.SATURDAY, GOOD_TIME, + BAD, GOOD_ERA, GOOD_YEAR, GOOD_MONTH, GOOD_DAY, Calendar.SUNDAY-1, GOOD_TIME, + BAD, GOOD_ERA, GOOD_YEAR, GOOD_MONTH, GOOD_DAY, Calendar.SATURDAY+1, GOOD_TIME, + + GOOD, GOOD_ERA, GOOD_YEAR, GOOD_MONTH, GOOD_DAY, GOOD_DOW, 0, + GOOD, GOOD_ERA, GOOD_YEAR, GOOD_MONTH, GOOD_DAY, GOOD_DOW, 24*3600000-1, + BAD, GOOD_ERA, GOOD_YEAR, GOOD_MONTH, GOOD_DAY, GOOD_DOW, -1, + BAD, GOOD_ERA, GOOD_YEAR, GOOD_MONTH, GOOD_DAY, GOOD_DOW, 24*3600000, + }; + + TimeZone tz = TimeZone.getDefault(); + for (int i=0; i " + DATA[i+1] + ", exp " + DATA[i+2]); + } + } + } + + /** + * SimpleTimeZone allows invalid DOM values. + */ + public void Test4184229() { + SimpleTimeZone zone = null; + try { + zone = new SimpleTimeZone(0, "A", 0, -1, 0, 0, 0, 0, 0, 0); + errln("Failed. No exception has been thrown for DOM -1 startDay"); + } catch(IllegalArgumentException e) { + logln("(a) " + e.getMessage()); + } + try { + zone = new SimpleTimeZone(0, "A", 0, 0, 0, 0, 0, -1, 0, 0); + errln("Failed. No exception has been thrown for DOM -1 endDay"); + } catch(IllegalArgumentException e) { + logln("(b) " + e.getMessage()); + } + try { + zone = new SimpleTimeZone(0, "A", 0, -1, 0, 0, 0, 0, 0, 0, 1000); + errln("Failed. No exception has been thrown for DOM -1 startDay +savings"); + } catch(IllegalArgumentException e) { + logln("(c) " + e.getMessage()); + } + try { + zone = new SimpleTimeZone(0, "A", 0, 0, 0, 0, 0, -1, 0, 0, 1000); + errln("Failed. No exception has been thrown for DOM -1 endDay +savings"); + } catch(IllegalArgumentException e) { + logln("(d) " + e.getMessage()); + } + // Make a valid constructor call for subsequent tests. + zone = new SimpleTimeZone(0, "A", 0, 1, 0, 0, 0, 1, 0, 0); + try { + zone.setStartRule(0, -1, 0, 0); + errln("Failed. No exception has been thrown for DOM -1 setStartRule +savings"); + } catch(IllegalArgumentException e) { + logln("(e) " + e.getMessage()); + } + try { + zone.setStartRule(0, -1, 0); + errln("Failed. No exception has been thrown for DOM -1 setStartRule"); + } catch(IllegalArgumentException e) { + logln("(f) " + e.getMessage()); + } + try { + zone.setEndRule(0, -1, 0, 0); + errln("Failed. No exception has been thrown for DOM -1 setEndRule +savings"); + } catch(IllegalArgumentException e) { + logln("(g) " + e.getMessage()); + } + try { + zone.setEndRule(0, -1, 0); + errln("Failed. No exception has been thrown for DOM -1 setEndRule"); + } catch(IllegalArgumentException e) { + logln("(h) " + e.getMessage()); + } + } + + /** + * SimpleTimeZone.getOffset() throws IllegalArgumentException when to get + * of 2/29/1996 (leap day). + */ + public void Test4208960 () { + // test both SimpleTimeZone and ZoneInfo objects. + // @since 1.4 + sub4208960(getPST()); + sub4208960(TimeZone.getTimeZone("PST")); + } + + private void sub4208960(TimeZone tz) { + try { + int offset = tz.getOffset(GregorianCalendar.AD, 1996, Calendar.FEBRUARY, 29, + Calendar.THURSDAY, 0); + } catch (IllegalArgumentException e) { + errln("FAILED: to get TimeZone.getOffset(2/29/96)"); + } + try { + int offset = tz.getOffset(GregorianCalendar.AD, 1997, Calendar.FEBRUARY, 29, + Calendar.THURSDAY, 0); + errln("FAILED: TimeZone.getOffset(2/29/97) expected to throw Exception."); + } catch (IllegalArgumentException e) { + logln("got IllegalArgumentException"); + } + } + + /** + * 4966229: java.util.Date methods may works incorrect. + * sun.util.calendar.ZoneInfo doesn't clone properly. + */ + @SuppressWarnings("deprecation") + public void Test4966229() { + TimeZone savedTZ = TimeZone.getDefault(); + try { + TimeZone.setDefault(TimeZone.getTimeZone("GMT")); + Date d = new Date(2100-1900, 5, 1); // specify year >2037 + TimeZone tz = TimeZone.getTimeZone("America/Los_Angeles"); + + Calendar cal = new GregorianCalendar(tz); + cal.setTime(d); + + // Change the raw offset in tz + int offset = tz.getRawOffset(); + tz.setRawOffset(0); + + TimeZone tz2 = (TimeZone) tz.clone(); + Calendar cal2 = new GregorianCalendar(tz2); + cal2.setTime(d); + int expectedHourOfDay = cal2.get(cal.HOUR_OF_DAY); + + // Restore the GMT offset in tz which shouldn't affect tz2 + tz.setRawOffset(offset); + cal2.setTime(d); + int hourOfDay = cal2.get(cal.HOUR_OF_DAY); + if (hourOfDay != expectedHourOfDay) { + errln("wrong hour of day: got: " + hourOfDay + + ", expected: " + expectedHourOfDay); + } + } finally { + TimeZone.setDefault(savedTZ); + } + } + + /** + * 6433179: (tz) Incorrect DST end for America/Winnipeg and Canada/Central in 2038+ + */ + public void Test6433179() { + // Use the old America/Winnipeg rule for testing. Note that + // startMode is WALL_TIME for testing. It's actually + // STANDARD_TIME, though. + //Rule Winn 1966 2005 - Oct lastSun 2:00s 0 S + //Rule Winn 1987 2005 - Apr Sun>=1 2:00s 1:00 D + TimeZone tz = new SimpleTimeZone(-6*ONE_HOUR, "America/Winnipeg", + Calendar.APRIL, 1, -Calendar.SUNDAY, 2*ONE_HOUR, SimpleTimeZone.WALL_TIME, + Calendar.OCTOBER, -1, Calendar.SUNDAY, 2*ONE_HOUR, SimpleTimeZone.STANDARD_TIME, + 1*ONE_HOUR); + Calendar cal = Calendar.getInstance(tz, Locale.US); + cal.clear(); + cal.set(2039, Calendar.OCTOBER, 1); + cal.getTime(); + cal.set(cal.DAY_OF_WEEK, cal.SUNDAY); + cal.set(cal.DAY_OF_WEEK_IN_MONTH, -1); + cal.add(Calendar.HOUR_OF_DAY, 2); + if (cal.get(cal.DST_OFFSET) == 0) { + errln("Should still be in DST."); + } + } + + private static final int ONE_HOUR = 60 * 60 * 1000; + /** + * Returns an instance of SimpleTimeZone for + * "PST". (TimeZone.getTimeZone() no longer returns a + * SimpleTimeZone object.) + * @since 1.4 + */ + private SimpleTimeZone getPST() { + return new SimpleTimeZone(-8*ONE_HOUR, "PST", + Calendar.APRIL, 1, -Calendar.SUNDAY, 2*ONE_HOUR, + Calendar.OCTOBER, -1, Calendar.SUNDAY, 2*ONE_HOUR, + 1*ONE_HOUR); + } +} +//eof diff --git a/jdk/test/java/util/TimeZone/TimeZoneTest.java b/jdk/test/java/util/TimeZone/TimeZoneTest.java new file mode 100644 index 00000000000..2413d15e8f5 --- /dev/null +++ b/jdk/test/java/util/TimeZone/TimeZoneTest.java @@ -0,0 +1,737 @@ +/* + * Copyright (c) 1997, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4028006 4044013 4096694 4107276 4107570 4112869 4130885 7039469 7126465 7158483 + * 8008577 8077685 8098547 8133321 8138716 8148446 + * @modules java.base/sun.util.resources + * @library /java/text/testlib + * @summary test TimeZone + */ + +import java.io.*; +import java.text.*; +import java.util.*; +import sun.util.resources.LocaleData; + +public class TimeZoneTest extends IntlTest +{ + static final int millisPerHour = 3600000; + + public static void main(String[] args) throws Exception { + new TimeZoneTest().run(args); + } + + /** + * Bug 4130885 + * Certain short zone IDs, used since 1.1.x, are incorrect. + * + * The worst of these is: + * + * "CAT" (Central African Time) should be GMT+2:00, but instead returns a + * zone at GMT-1:00. The zone at GMT-1:00 should be called EGT, CVT, EGST, + * or AZOST, depending on which zone is meant, but in no case is it CAT. + * + * Other wrong zone IDs: + * + * ECT (European Central Time) GMT+1:00: ECT is Ecuador Time, + * GMT-5:00. European Central time is abbreviated CEST. + * + * SST (Solomon Island Time) GMT+11:00. SST is actually Samoa Standard Time, + * GMT-11:00. Solomon Island time is SBT. + * + * NST (New Zealand Time) GMT+12:00. NST is the abbreviation for + * Newfoundland Standard Time, GMT-3:30. New Zealanders use NZST. + * + * AST (Alaska Standard Time) GMT-9:00. [This has already been noted in + * another bug.] It should be "AKST". AST is Atlantic Standard Time, + * GMT-4:00. + * + * PNT (Phoenix Time) GMT-7:00. PNT usually means Pitcairn Time, + * GMT-8:30. There is no standard abbreviation for Phoenix time, as distinct + * from MST with daylight savings. + * + * In addition to these problems, a number of zones are FAKE. That is, they + * don't match what people use in the real world. + * + * FAKE zones: + * + * EET (should be EEST) + * ART (should be EET) + * MET (should be IRST) + * NET (should be AMST) + * PLT (should be PKT) + * BST (should be BDT) + * VST (should be ICT) + * CTT (should be CST) + + * ACT (should be CST) + + * AET (should be EST) + + * MIT (should be WST) + + * IET (should be EST) + + * PRT (should be AST) + + * CNT (should be NST) + * AGT (should be ARST) + * BET (should be EST) + + * + * + A zone with the correct name already exists and means something + * else. E.g., EST usually indicates the US Eastern zone, so it cannot be + * used for Brazil (BET). + */ + public void TestShortZoneIDs() throws Exception { + + ZoneDescriptor[] JDK_116_REFERENCE_LIST = { + new ZoneDescriptor("MIT", 780, true), + new ZoneDescriptor("HST", -600, false), + new ZoneDescriptor("AST", -540, true), + new ZoneDescriptor("PST", -480, true), + new ZoneDescriptor("PNT", -420, false), + new ZoneDescriptor("MST", -420, false), + new ZoneDescriptor("CST", -360, true), + new ZoneDescriptor("IET", -300, true), + new ZoneDescriptor("EST", -300, false), + new ZoneDescriptor("PRT", -240, false), + new ZoneDescriptor("CNT", -210, true), + new ZoneDescriptor("AGT", -180, false), + new ZoneDescriptor("BET", -180, true), + // new ZoneDescriptor("CAT", -60, false), // Wrong: + // As of bug 4130885, fix CAT (Central Africa) + new ZoneDescriptor("CAT", 120, false), // Africa/Harare + new ZoneDescriptor("GMT", 0, false), + new ZoneDescriptor("UTC", 0, false), + new ZoneDescriptor("ECT", 60, true), + new ZoneDescriptor("ART", 120, false), + new ZoneDescriptor("EET", 120, true), + new ZoneDescriptor("EAT", 180, false), + new ZoneDescriptor("MET", 60, true), + new ZoneDescriptor("NET", 240, false), + new ZoneDescriptor("PLT", 300, false), + new ZoneDescriptor("IST", 330, false), + new ZoneDescriptor("BST", 360, false), + new ZoneDescriptor("VST", 420, false), + new ZoneDescriptor("CTT", 480, false), + new ZoneDescriptor("JST", 540, false), + new ZoneDescriptor("ACT", 570, false), + new ZoneDescriptor("AET", 600, true), + new ZoneDescriptor("SST", 660, false), + // new ZoneDescriptor("NST", 720, false), + // As of bug 4130885, fix NST (New Zealand) + new ZoneDescriptor("NST", 720, true), // Pacific/Auckland + }; + + Map hash = new HashMap<>(); + + String[] ids = TimeZone.getAvailableIDs(); + for (String id : ids) { + if (id.length() == 3) { + hash.put(id, new ZoneDescriptor(TimeZone.getTimeZone(id))); + } + } + + for (int i = 0; i < JDK_116_REFERENCE_LIST.length; ++i) { + ZoneDescriptor referenceZone = JDK_116_REFERENCE_LIST[i]; + ZoneDescriptor currentZone = hash.get(referenceZone.getID()); + if (referenceZone.equals(currentZone)) { + logln("ok " + referenceZone); + } + else { + errln("Fail: Expected " + referenceZone + + "; got " + currentZone); + } + } + } + + /** + * A descriptor for a zone; used to regress the short zone IDs. + */ + static class ZoneDescriptor { + String id; + int offset; // In minutes + boolean daylight; + + ZoneDescriptor(TimeZone zone) { + this.id = zone.getID(); + this.offset = zone.getRawOffset() / 60000; + this.daylight = zone.useDaylightTime(); + } + + ZoneDescriptor(String id, int offset, boolean daylight) { + this.id = id; + this.offset = offset; + this.daylight = daylight; + } + + public String getID() { return id; } + + @Override + public boolean equals(Object o) { + ZoneDescriptor that = (ZoneDescriptor)o; + return that != null && + id.equals(that.id) && + offset == that.offset && + daylight == that.daylight; + } + + @Override + public int hashCode() { + return id.hashCode() ^ offset | (daylight ? 1 : 0); + } + + @Override + public String toString() { + int min = offset; + char sign = '+'; + if (min < 0) { sign = '-'; min = -min; } + + return "Zone[\"" + id + "\", GMT" + sign + (min/60) + ':' + + (min%60<10?"0":"") + (min%60) + ", " + + (daylight ? "Daylight" : "Standard") + "]"; + } + + public static int compare(Object o1, Object o2) { + ZoneDescriptor i1 = (ZoneDescriptor)o1; + ZoneDescriptor i2 = (ZoneDescriptor)o2; + if (i1.offset > i2.offset) return 1; + if (i1.offset < i2.offset) return -1; + if (i1.daylight && !i2.daylight) return 1; + if (!i1.daylight && i2.daylight) return -1; + return i1.id.compareTo(i2.id); + } + } + + static final String formatMinutes(int min) { + char sign = '+'; + if (min < 0) { sign = '-'; min = -min; } + int h = min/60; + min = min%60; + return "" + sign + h + ":" + ((min<10) ? "0" : "") + min; + } + /** + * As part of the VM fix (see CCC approved RFE 4028006, bug + * 4044013), TimeZone.getTimeZone() has been modified to recognize + * generic IDs of the form GMT[+-]hh:mm, GMT[+-]hhmm, and + * GMT[+-]hh. Test this behavior here. + * + * Bug 4044013 + * + * ID "Custom" is no longer used for TimeZone objects created with + * a custom time zone ID, such as "GMT-8". See 4322313. + */ + public void TestCustomParse() throws Exception { + Object[] DATA = { + // ID Expected offset in minutes + "GMT", null, + "GMT+0", new Integer(0), + "GMT+1", new Integer(60), + "GMT-0030", new Integer(-30), + "GMT+15:99", null, + "GMT+", null, + "GMT-", null, + "GMT+0:", null, + "GMT-:", null, + "GMT+0010", new Integer(10), // Interpret this as 00:10 + "GMT-10", new Integer(-10*60), + "GMT+30", null, + "GMT-3:30", new Integer(-(3*60+30)), + "GMT-230", new Integer(-(2*60+30)), + }; + for (int i=0; i generic GMT"); + // When TimeZone.getTimeZone() can't parse the id, it + // returns GMT -- a dubious practice, but required for + // backward compatibility. + if (exp != null) { + throw new Exception("Expected offset of " + formatMinutes(exp.intValue()) + + " for " + id + ", got parse failure"); + } + } + else { + int ioffset = zone.getRawOffset()/60000; + String offset = formatMinutes(ioffset); + logln(id + " -> " + zone.getID() + " GMT" + offset); + if (exp == null) { + throw new Exception("Expected parse failure for " + id + + ", got offset of " + offset + + ", id " + zone.getID()); + } + else if (ioffset != exp.intValue()) { + throw new Exception("Expected offset of " + formatMinutes(exp.intValue()) + + ", id Custom, for " + id + + ", got offset of " + offset + + ", id " + zone.getID()); + } + } + } + } + + /** + * Test the basic functionality of the getDisplayName() API. + * + * Bug 4112869 + * Bug 4028006 + * + * See also API change request A41. + * + * 4/21/98 - make smarter, so the test works if the ext resources + * are present or not. + */ + public void TestDisplayName() { + TimeZone zone = TimeZone.getTimeZone("PST"); + String name = zone.getDisplayName(Locale.ENGLISH); + logln("PST->" + name); + if (!name.equals("Pacific Standard Time")) + errln("Fail: Expected \"Pacific Standard Time\""); + + //***************************************************************** + // THE FOLLOWING LINES MUST BE UPDATED IF THE LOCALE DATA CHANGES + // THE FOLLOWING LINES MUST BE UPDATED IF THE LOCALE DATA CHANGES + // THE FOLLOWING LINES MUST BE UPDATED IF THE LOCALE DATA CHANGES + //***************************************************************** + Object[] DATA = { + new Boolean(false), new Integer(TimeZone.SHORT), "PST", + new Boolean(true), new Integer(TimeZone.SHORT), "PDT", + new Boolean(false), new Integer(TimeZone.LONG), "Pacific Standard Time", + new Boolean(true), new Integer(TimeZone.LONG), "Pacific Daylight Time", + }; + + for (int i=0; i" + zone2.inDaylightTime(new Date())); + name = zone2.getDisplayName(Locale.ENGLISH); + logln("Modified PST->" + name); + if (!name.equals("Pacific Standard Time")) + errln("Fail: Expected \"Pacific Standard Time\""); + + // Make sure we get the default display format for Locales + // with no display name data. + Locale zh_CN = Locale.SIMPLIFIED_CHINESE; + name = zone.getDisplayName(zh_CN); + //***************************************************************** + // THE FOLLOWING LINE MUST BE UPDATED IF THE LOCALE DATA CHANGES + // THE FOLLOWING LINE MUST BE UPDATED IF THE LOCALE DATA CHANGES + // THE FOLLOWING LINE MUST BE UPDATED IF THE LOCALE DATA CHANGES + //***************************************************************** + logln("PST(zh_CN)->" + name); + + // Now be smart -- check to see if zh resource is even present. + // If not, we expect the en fallback behavior. + ResourceBundle enRB = LocaleData.getBundle("sun.util.resources.TimeZoneNames", + Locale.ENGLISH); + ResourceBundle zhRB = LocaleData.getBundle("sun.util.resources.TimeZoneNames", + zh_CN); + + boolean noZH = enRB == zhRB; + + if (noZH) { + logln("Warning: Not testing the zh_CN behavior because resource is absent"); + if (!name.equals("Pacific Standard Time")) + errln("Fail: Expected Pacific Standard Time"); + } + else if (!name.equals("Pacific Standard Time") && + !name.equals("\u592a\u5e73\u6d0b\u6807\u51c6\u65f6\u95f4") && + !name.equals("GMT-08:00") && + !name.equals("GMT-8:00") && + !name.equals("GMT-0800") && + !name.equals("GMT-800")) { + errln("Fail: Expected GMT-08:00 or something similar"); + errln("************************************************************"); + errln("THE ABOVE FAILURE MAY JUST MEAN THE LOCALE DATA HAS CHANGED"); + errln("************************************************************"); + } + + // Now try a non-existent zone + zone2 = new SimpleTimeZone(90*60*1000, "xyzzy"); + name = zone2.getDisplayName(Locale.ENGLISH); + logln("GMT+90min->" + name); + if (!name.equals("GMT+01:30") && + !name.equals("GMT+1:30") && + !name.equals("GMT+0130") && + !name.equals("GMT+130")) + errln("Fail: Expected GMT+01:30 or something similar"); + } + + public void TestGenericAPI() { + String id = "NewGMT"; + int offset = 12345; + + SimpleTimeZone zone = new SimpleTimeZone(offset, id); + if (zone.useDaylightTime()) { + errln("FAIL: useDaylightTime should return false"); + } + + TimeZone zoneclone = (TimeZone)zone.clone(); + if (!zoneclone.equals(zone)) { + errln("FAIL: clone or operator== failed"); + } + zoneclone.setID("abc"); + if (zoneclone.equals(zone)) { + errln("FAIL: clone or operator!= failed"); + } + + zoneclone = (TimeZone)zone.clone(); + if (!zoneclone.equals(zone)) { + errln("FAIL: clone or operator== failed"); + } + zoneclone.setRawOffset(45678); + if (zoneclone.equals(zone)) { + errln("FAIL: clone or operator!= failed"); + } + + TimeZone saveDefault = TimeZone.getDefault(); + try { + TimeZone.setDefault(zone); + TimeZone defaultzone = TimeZone.getDefault(); + if (defaultzone == zone) { + errln("FAIL: Default object is identical, not clone"); + } + if (!defaultzone.equals(zone)) { + errln("FAIL: Default object is not equal"); + } + } + finally { + TimeZone.setDefault(saveDefault); + } + } + + @SuppressWarnings("deprecation") + public void TestRuleAPI() + { + // ErrorCode status = ZERO_ERROR; + + int offset = (int)(60*60*1000*1.75); // Pick a weird offset + SimpleTimeZone zone = new SimpleTimeZone(offset, "TestZone"); + if (zone.useDaylightTime()) errln("FAIL: useDaylightTime should return false"); + + // Establish our expected transition times. Do this with a non-DST + // calendar with the (above) declared local offset. + GregorianCalendar gc = new GregorianCalendar(zone); + gc.clear(); + gc.set(1990, Calendar.MARCH, 1); + long marchOneStd = gc.getTime().getTime(); // Local Std time midnight + gc.clear(); + gc.set(1990, Calendar.JULY, 1); + long julyOneStd = gc.getTime().getTime(); // Local Std time midnight + + // Starting and ending hours, WALL TIME + int startHour = (int)(2.25 * 3600000); + int endHour = (int)(3.5 * 3600000); + + zone.setStartRule(Calendar.MARCH, 1, 0, startHour); + zone.setEndRule (Calendar.JULY, 1, 0, endHour); + + gc = new GregorianCalendar(zone); + // if (failure(status, "new GregorianCalendar")) return; + + long marchOne = marchOneStd + startHour; + long julyOne = julyOneStd + endHour - 3600000; // Adjust from wall to Std time + + long expMarchOne = 636251400000L; + if (marchOne != expMarchOne) + { + errln("FAIL: Expected start computed as " + marchOne + + " = " + new Date(marchOne)); + logln(" Should be " + expMarchOne + + " = " + new Date(expMarchOne)); + } + + long expJulyOne = 646793100000L; + if (julyOne != expJulyOne) + { + errln("FAIL: Expected start computed as " + julyOne + + " = " + new Date(julyOne)); + logln(" Should be " + expJulyOne + + " = " + new Date(expJulyOne)); + } + + testUsingBinarySearch(zone, new Date(90, Calendar.JANUARY, 1).getTime(), + new Date(90, Calendar.JUNE, 15).getTime(), marchOne); + testUsingBinarySearch(zone, new Date(90, Calendar.JUNE, 1).getTime(), + new Date(90, Calendar.DECEMBER, 31).getTime(), julyOne); + + if (zone.inDaylightTime(new Date(marchOne - 1000)) || + !zone.inDaylightTime(new Date(marchOne))) + errln("FAIL: Start rule broken"); + if (!zone.inDaylightTime(new Date(julyOne - 1000)) || + zone.inDaylightTime(new Date(julyOne))) + errln("FAIL: End rule broken"); + + zone.setStartYear(1991); + if (zone.inDaylightTime(new Date(marchOne)) || + zone.inDaylightTime(new Date(julyOne - 1000))) + errln("FAIL: Start year broken"); + + // failure(status, "TestRuleAPI"); + // delete gc; + // delete zone; + } + + void testUsingBinarySearch(SimpleTimeZone tz, long min, long max, long expectedBoundary) + { + // ErrorCode status = ZERO_ERROR; + boolean startsInDST = tz.inDaylightTime(new Date(min)); + // if (failure(status, "SimpleTimeZone::inDaylightTime")) return; + if (tz.inDaylightTime(new Date(max)) == startsInDST) { + logln("Error: inDaylightTime(" + new Date(max) + ") != " + (!startsInDST)); + return; + } + // if (failure(status, "SimpleTimeZone::inDaylightTime")) return; + while ((max - min) > INTERVAL) { + long mid = (min + max) / 2; + if (tz.inDaylightTime(new Date(mid)) == startsInDST) { + min = mid; + } + else { + max = mid; + } + // if (failure(status, "SimpleTimeZone::inDaylightTime")) return; + } + logln("Binary Search Before: " + min + " = " + new Date(min)); + logln("Binary Search After: " + max + " = " + new Date(max)); + long mindelta = expectedBoundary - min; + long maxdelta = max - expectedBoundary; + if (mindelta >= 0 && + mindelta <= INTERVAL && + mindelta >= 0 && + mindelta <= INTERVAL) + logln("PASS: Expected bdry: " + expectedBoundary + " = " + new Date(expectedBoundary)); + else + errln("FAIL: Expected bdry: " + expectedBoundary + " = " + new Date(expectedBoundary)); + } + + static final int INTERVAL = 100; + + // Bug 006; verify the offset for a specific zone. + public void TestPRTOffset() + { + TimeZone tz = TimeZone.getTimeZone( "PRT" ); + if( tz == null ) { + errln( "FAIL: TimeZone(PRT) is null" ); + } + else{ + if (tz.getRawOffset() != (-4*millisPerHour)) + errln("FAIL: Offset for PRT should be -4"); + } + + } + + // Test various calls + @SuppressWarnings("deprecation") + public void TestVariousAPI518() + { + TimeZone time_zone = TimeZone.getTimeZone("PST"); + Date d = new Date(97, Calendar.APRIL, 30); + + logln("The timezone is " + time_zone.getID()); + + if (time_zone.inDaylightTime(d) != true) + errln("FAIL: inDaylightTime returned false"); + + if (time_zone.useDaylightTime() != true) + errln("FAIL: useDaylightTime returned false"); + + if (time_zone.getRawOffset() != -8*millisPerHour) + errln( "FAIL: getRawOffset returned wrong value"); + + GregorianCalendar gc = new GregorianCalendar(); + gc.setTime(d); + if (time_zone.getOffset(gc.AD, gc.get(gc.YEAR), gc.get(gc.MONTH), + gc.get(gc.DAY_OF_MONTH), + gc.get(gc.DAY_OF_WEEK), 0) + != -7*millisPerHour) + errln("FAIL: getOffset returned wrong value"); + } + + // Test getAvailableID API + public void TestGetAvailableIDs913() + { + StringBuffer buf = new StringBuffer("TimeZone.getAvailableIDs() = { "); + String[] s = TimeZone.getAvailableIDs(); + for (int i=0; i 0) buf.append(", "); + buf.append(s[i]); + } + buf.append(" };"); + logln(buf.toString()); + + buf.setLength(0); + buf.append("TimeZone.getAvailableIDs(GMT+02:00) = { "); + s = TimeZone.getAvailableIDs(+2 * 60 * 60 * 1000); + for (int i=0; i 0) buf.append(", "); + buf.append(s[i]); + } + buf.append(" };"); + logln(buf.toString()); + + TimeZone tz = TimeZone.getTimeZone("PST"); + if (tz != null) + logln("getTimeZone(PST) = " + tz.getID()); + else + errln("FAIL: getTimeZone(PST) = null"); + + tz = TimeZone.getTimeZone("America/Los_Angeles"); + if (tz != null) + logln("getTimeZone(America/Los_Angeles) = " + tz.getID()); + else + errln("FAIL: getTimeZone(PST) = null"); + + // Bug 4096694 + tz = TimeZone.getTimeZone("NON_EXISTENT"); + if (tz == null) + errln("FAIL: getTimeZone(NON_EXISTENT) = null"); + else if (!tz.getID().equals("GMT")) + errln("FAIL: getTimeZone(NON_EXISTENT) = " + tz.getID()); + } + + /** + * Bug 4107276 + */ + public void TestDSTSavings() { + // It might be better to find a way to integrate this test into the main TimeZone + // tests above, but I don't have time to figure out how to do this (or if it's + // even really a good idea). Let's consider that a future. --rtg 1/27/98 + SimpleTimeZone tz = new SimpleTimeZone(-5 * millisPerHour, "dstSavingsTest", + Calendar.MARCH, 1, 0, 0, Calendar.SEPTEMBER, 1, 0, 0, + (int)(0.5 * millisPerHour)); + + if (tz.getRawOffset() != -5 * millisPerHour) + errln("Got back a raw offset of " + (tz.getRawOffset() / millisPerHour) + + " hours instead of -5 hours."); + if (!tz.useDaylightTime()) + errln("Test time zone should use DST but claims it doesn't."); + if (tz.getDSTSavings() != 0.5 * millisPerHour) + errln("Set DST offset to 0.5 hour, but got back " + (tz.getDSTSavings() / + millisPerHour) + " hours instead."); + + int offset = tz.getOffset(GregorianCalendar.AD, 1998, Calendar.JANUARY, 1, + Calendar.THURSDAY, 10 * millisPerHour); + if (offset != -5 * millisPerHour) + errln("The offset for 10 AM, 1/1/98 should have been -5 hours, but we got " + + (offset / millisPerHour) + " hours."); + + offset = tz.getOffset(GregorianCalendar.AD, 1998, Calendar.JUNE, 1, Calendar.MONDAY, + 10 * millisPerHour); + if (offset != -4.5 * millisPerHour) + errln("The offset for 10 AM, 6/1/98 should have been -4.5 hours, but we got " + + (offset / millisPerHour) + " hours."); + + tz.setDSTSavings(millisPerHour); + offset = tz.getOffset(GregorianCalendar.AD, 1998, Calendar.JANUARY, 1, + Calendar.THURSDAY, 10 * millisPerHour); + if (offset != -5 * millisPerHour) + errln("The offset for 10 AM, 1/1/98 should have been -5 hours, but we got " + + (offset / millisPerHour) + " hours."); + + offset = tz.getOffset(GregorianCalendar.AD, 1998, Calendar.JUNE, 1, Calendar.MONDAY, + 10 * millisPerHour); + if (offset != -4 * millisPerHour) + errln("The offset for 10 AM, 6/1/98 (with a 1-hour DST offset) should have been -4 hours, but we got " + + (offset / millisPerHour) + " hours."); + } + + /** + * Bug 4107570 + */ + public void TestAlternateRules() { + // Like TestDSTSavings, this test should probably be integrated somehow with the main + // test at the top of this class, but I didn't have time to figure out how to do that. + // --rtg 1/28/98 + + SimpleTimeZone tz = new SimpleTimeZone(-5 * millisPerHour, "alternateRuleTest"); + + // test the day-of-month API + tz.setStartRule(Calendar.MARCH, 10, 12 * millisPerHour); + tz.setEndRule(Calendar.OCTOBER, 20, 12 * millisPerHour); + + int offset = tz.getOffset(GregorianCalendar.AD, 1998, Calendar.MARCH, 5, + Calendar.THURSDAY, 10 * millisPerHour); + if (offset != -5 * millisPerHour) + errln("The offset for 10AM, 3/5/98 should have been -5 hours, but we got " + + (offset / millisPerHour) + " hours."); + + offset = tz.getOffset(GregorianCalendar.AD, 1998, Calendar.MARCH, 15, + Calendar.SUNDAY, 10 * millisPerHour); + if (offset != -4 * millisPerHour) + errln("The offset for 10AM, 3/15/98 should have been -4 hours, but we got " + + (offset / millisPerHour) + " hours."); + + offset = tz.getOffset(GregorianCalendar.AD, 1998, Calendar.OCTOBER, 15, + Calendar.THURSDAY, 10 * millisPerHour); + if (offset != -4 * millisPerHour) + errln("The offset for 10AM, 10/15/98 should have been -4 hours, but we got " + + (offset / millisPerHour) + " hours."); + + offset = tz.getOffset(GregorianCalendar.AD, 1998, Calendar.OCTOBER, 25, + Calendar.SUNDAY, 10 * millisPerHour); + if (offset != -5 * millisPerHour) + errln("The offset for 10AM, 10/25/98 should have been -5 hours, but we got " + + (offset / millisPerHour) + " hours."); + + // test the day-of-week-after-day-in-month API + tz.setStartRule(Calendar.MARCH, 10, Calendar.FRIDAY, 12 * millisPerHour, true); + tz.setEndRule(Calendar.OCTOBER, 20, Calendar.FRIDAY, 12 * millisPerHour, false); + + offset = tz.getOffset(GregorianCalendar.AD, 1998, Calendar.MARCH, 11, + Calendar.WEDNESDAY, 10 * millisPerHour); + if (offset != -5 * millisPerHour) + errln("The offset for 10AM, 3/11/98 should have been -5 hours, but we got " + + (offset / millisPerHour) + " hours."); + + offset = tz.getOffset(GregorianCalendar.AD, 1998, Calendar.MARCH, 14, + Calendar.SATURDAY, 10 * millisPerHour); + if (offset != -4 * millisPerHour) + errln("The offset for 10AM, 3/14/98 should have been -4 hours, but we got " + + (offset / millisPerHour) + " hours."); + + offset = tz.getOffset(GregorianCalendar.AD, 1998, Calendar.OCTOBER, 15, + Calendar.THURSDAY, 10 * millisPerHour); + if (offset != -4 * millisPerHour) + errln("The offset for 10AM, 10/15/98 should have been -4 hours, but we got " + + (offset / millisPerHour) + " hours."); + + offset = tz.getOffset(GregorianCalendar.AD, 1998, Calendar.OCTOBER, 17, + Calendar.SATURDAY, 10 * millisPerHour); + if (offset != -5 * millisPerHour) + errln("The offset for 10AM, 10/17/98 should have been -5 hours, but we got " + + (offset / millisPerHour) + " hours."); + } +} + +//eof diff --git a/jdk/test/java/util/TimeZone/TransitionTest.java b/jdk/test/java/util/TimeZone/TransitionTest.java new file mode 100644 index 00000000000..5f012d09d72 --- /dev/null +++ b/jdk/test/java/util/TimeZone/TransitionTest.java @@ -0,0 +1,287 @@ +/* + * Copyright (c) 2002, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4278609 4761696 + * @library /java/text/testlib + * @summary Make sure to handle DST transition ending at 0:00 January 1. + */ + +import java.text.SimpleDateFormat; +import java.util.Calendar; +import java.util.Date; +import java.util.GregorianCalendar; +import java.util.Locale; +import java.util.SimpleTimeZone; +import java.util.TimeZone; + +public class TransitionTest extends IntlTest { + + public static void main(String[] args) throws Exception { + new TransitionTest().run(args); + } + + public void Test4278609() { + SimpleTimeZone tz = new SimpleTimeZone(0, "MyTimeZone", + /* DST start day: August, 1, 0:00 */ + Calendar.AUGUST, 1, 0, 0, + /* DST end day: January, 1, 0:00 (wall-clock)*/ + Calendar.JANUARY, 1, 0, 0, + 60 * 60 * 1000); + + Calendar cal = new GregorianCalendar(TimeZone.getTimeZone("GMT")); + + // setting a date using GMT zone just after the end rule of tz zone + cal.clear(); + cal.set(Calendar.ERA, GregorianCalendar.AD); + cal.set(1998, Calendar.DECEMBER, 31, 23, 01, 00); + + Date date = cal.getTime(); + + int millis = cal.get(Calendar.HOUR_OF_DAY) * 3600000 + + cal.get(Calendar.MINUTE) * 60000 + + cal.get(Calendar.SECOND) * 1000 + + cal.get(Calendar.MILLISECOND); + /* we must use standard local time */ + millis += tz.getRawOffset(); + + int offset = tz.getOffset(cal.get(Calendar.ERA), + cal.get(Calendar.YEAR), + cal.get(Calendar.MONTH), + cal.get(Calendar.DATE), + cal.get(Calendar.DAY_OF_WEEK), + millis); + + if (offset != 0) { + SimpleDateFormat format = new SimpleDateFormat("dd MMM HH:mm:ss zzz", + Locale.US); + format.setTimeZone(tz); + errln("Wrong DST transition: " + tz + + "\na date just after DST = " + format.format(date) + + "\ngetOffset = " + offset); + } + } + + /* + * 4761696: Rewrite SimpleTimeZone to support correct DST transitions + * + * Derived from JCK test cases some of which specify wrong day of week values. + */ + public void Test4761696() { + GregorianCalendar cal = new GregorianCalendar(TimeZone.getTimeZone("GMT")); + + // test#1 + int rawOffset = -43200000; + int saving = 1800000; + int timeOfDay = 84600001; + SimpleTimeZone tz = new SimpleTimeZone(rawOffset, "stz", + Calendar.JULY, 1, 0, 0, + Calendar.JANUARY, 1, 0, 0, + saving); + int year = Integer.MIN_VALUE; + tz.setStartYear(year); + int offset = tz.getOffset(GregorianCalendar.AD, + year, + Calendar.DECEMBER, + 31, + 1, // should be SATURDAY + timeOfDay); + int y = (int) mod((long)year, 28L); // 28-year cycle + cal.clear(); + cal.set(cal.ERA, cal.AD); + cal.set(y, Calendar.DECEMBER, 31); + cal.set(cal.MILLISECOND, timeOfDay); + long localtime = cal.getTimeInMillis() + rawOffset; // local standard time + + cal.clear(); + cal.set(cal.ERA, cal.AD); + cal.set(y + 1, Calendar.JANUARY, 1); + cal.set(cal.MILLISECOND, -saving); + long endTime = cal.getTimeInMillis() + rawOffset; + long expectedOffset = (localtime < endTime) ? rawOffset + saving : rawOffset; + if (offset != expectedOffset) { + errln("test#1: wrong offset: got "+offset+", expected="+expectedOffset); + } + + // test#2 + saving = 1; + timeOfDay = 0; + tz = new SimpleTimeZone(rawOffset, "stz", + Calendar.JULY, 1, 0, 0, + Calendar.JANUARY, 1, 0, 0, + saving); + tz.setStartYear(year); + offset = tz.getOffset(GregorianCalendar.AD, + year, + Calendar.AUGUST, + 15, + 1, // should be MONDAY + timeOfDay); + y = (int) mod((long)year, 28L); // 28-year cycle + cal.clear(); + cal.set(y, Calendar.AUGUST, 15); + cal.set(cal.MILLISECOND, timeOfDay); + localtime = cal.getTimeInMillis() + rawOffset; // local standard time + + cal.clear(); + cal.set(y + 1, Calendar.JANUARY, 1); + cal.set(cal.MILLISECOND, -saving); + endTime = cal.getTimeInMillis() + rawOffset; + expectedOffset = (localtime < endTime) ? rawOffset + saving : rawOffset; + if (offset != expectedOffset) { + errln("Wrong offset: got "+offset+", expected="+expectedOffset); + } + + rawOffset = 43200000; + saving = 1; + timeOfDay = 3599998; + tz = new SimpleTimeZone(rawOffset, "stz", + Calendar.JULY, 1, 0, 3600000, + Calendar.JANUARY, 1, 0, 3600000, + saving); + tz.setStartYear(year); + offset = tz.getOffset(GregorianCalendar.AD, + year, + Calendar.JANUARY, + 1, + 1, + timeOfDay); + y = (int) mod((long)year, 28L); // 28-year cycle + cal.clear(); + cal.set(y, Calendar.JANUARY, 1); + cal.set(cal.MILLISECOND, timeOfDay); + localtime = cal.getTimeInMillis() + rawOffset; // local standard time + + cal.clear(); + cal.set(y + 1, Calendar.JANUARY, 1); + cal.set(cal.MILLISECOND, 3600000-saving); + endTime = cal.getTimeInMillis() + rawOffset; + expectedOffset = (localtime < endTime) ? rawOffset + saving : rawOffset; + if (offset != expectedOffset) { + errln("test#2: wrong offset: got "+offset+", expected="+expectedOffset); + } + + // test#3 + rawOffset = -43200000; + saving = 1800000; + timeOfDay = 84600001; + tz = new SimpleTimeZone(rawOffset, "stz", + Calendar.SEPTEMBER, 1, 0, 0, + Calendar.MARCH, 1, 0, 0, + saving); + tz.setStartYear(year); + offset = tz.getOffset(GregorianCalendar.AD, + year, + Calendar.FEBRUARY, + 28, + 1, + timeOfDay); + y = (int) mod((long)year, 28L); // 28-year cycle + cal.clear(); + cal.set(y, Calendar.FEBRUARY, 28); + cal.set(cal.MILLISECOND, timeOfDay); + localtime = cal.getTimeInMillis() + rawOffset; // local standard time + + cal.clear(); + cal.set(y, Calendar.MARCH, 1); + cal.set(cal.MILLISECOND, -saving); + endTime = cal.getTimeInMillis() + rawOffset; + expectedOffset = (localtime < endTime) ? rawOffset + saving : rawOffset; + if (offset != expectedOffset) { + errln("test#3: wrong offset: got "+offset+", expected="+expectedOffset); + } + + // test#4 + rawOffset = -43200000; + saving = 1; + timeOfDay = 0; + tz = new SimpleTimeZone(rawOffset, "stz", + Calendar.JANUARY, -4, 1, 3600000, + Calendar.JULY, -4, 1, 3600000, + saving); + tz.setStartYear(year); + offset = tz.getOffset(GregorianCalendar.AD, + year, + Calendar.JANUARY, + 10, + 2, // should be 1 (SUNDAY) + timeOfDay); + y = (int) mod((long)year, 28L); // 28-year cycle + cal.clear(); + cal.set(y, Calendar.JANUARY, 10); + cal.set(cal.MILLISECOND, timeOfDay); + localtime = cal.getTimeInMillis() + rawOffset; // local standard time + + cal.clear(); + cal.set(cal.YEAR, y); + cal.set(cal.MONTH, Calendar.JANUARY); + cal.set(cal.DAY_OF_MONTH, 8); + cal.set(cal.WEEK_OF_MONTH, cal.getActualMaximum(cal.WEEK_OF_MONTH)-4+1); + cal.set(cal.DAY_OF_WEEK, 1); + cal.set(cal.MILLISECOND, 3600000-saving); + long startTime = cal.getTimeInMillis() + rawOffset; + expectedOffset = (localtime >= startTime) ? rawOffset + saving : rawOffset; + if (offset != expectedOffset) { + errln("test#4: wrong offset: got "+offset+", expected="+expectedOffset); + } + + // test#5 + rawOffset = 0; + saving = 3600000; + timeOfDay = 7200000; + year = 1982; + tz = new SimpleTimeZone(rawOffset, "stz", + Calendar.APRIL, 1, 0, 7200000, + Calendar.OCTOBER, 10, 0, 7200000, + saving); + offset = tz.getOffset(GregorianCalendar.AD, + year, + Calendar.OCTOBER, + 10, + 1, + timeOfDay); + cal.clear(); + cal.set(year, Calendar.OCTOBER, 10); + cal.set(cal.MILLISECOND, timeOfDay); + localtime = cal.getTimeInMillis() + rawOffset; // local standard time + + cal.clear(); + cal.set(year, Calendar.OCTOBER, 10); + cal.set(cal.MILLISECOND, 7200000-saving); + endTime = cal.getTimeInMillis() + rawOffset; + expectedOffset = (localtime < endTime) ? rawOffset + saving : rawOffset; + if (offset != expectedOffset) { + errln("test#5: wrong offset: got "+offset+", expected="+expectedOffset); + } + } + + public static final long floorDivide(long n, long d) { + return ((n >= 0) ? + (n / d) : (((n + 1L) / d) - 1L)); + } + + public static final long mod(long x, long y) { + return (x - y * floorDivide(x, y)); + } +} diff --git a/jdk/test/java/util/TimeZone/UTCAliasTest.java b/jdk/test/java/util/TimeZone/UTCAliasTest.java new file mode 100644 index 00000000000..aa7079326c0 --- /dev/null +++ b/jdk/test/java/util/TimeZone/UTCAliasTest.java @@ -0,0 +1,52 @@ +/* + * Copyright (c) 2005, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 6282072 + * @summary Make sure that "UTC" is an alias of "Etc/UTC" as defined in the tzdata backward. + * @modules java.base/sun.util.calendar + * @compile -XDignore.symbol.file UTCAliasTest.java + */ + +import java.util.*; +import sun.util.calendar.ZoneInfo; + +public class UTCAliasTest { + public static void main(String[] args) { + Map map = ZoneInfo.getAliasTable(); + String alias = map.get("UTC"); + if (!alias.equals("Etc/UTC")) { + throw new RuntimeException("got " + alias + ", expected Etc/UTC"); + } + TimeZone GMT = TimeZone.getTimeZone("GMT"); + TimeZone UTC = TimeZone.getTimeZone("UTC"); + if (!GMT.hasSameRules(UTC)) { + throw new RuntimeException("GMT and UTC have different rules"); + } + TimeZone EtcUTC = TimeZone.getTimeZone("Etc/UTC"); + if (!UTC.hasSameRules(EtcUTC)) { + throw new RuntimeException("UTC and Etc/UTC have different rules"); + } + } +} diff --git a/jdk/test/java/util/TimeZone/bug4096952.java b/jdk/test/java/util/TimeZone/bug4096952.java new file mode 100644 index 00000000000..20ccc685ac6 --- /dev/null +++ b/jdk/test/java/util/TimeZone/bug4096952.java @@ -0,0 +1,67 @@ +/* + * Copyright (c) 1998, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 4096952 + * @summary simple serialization/deserialization test + */ + +import java.io.ByteArrayInputStream; +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.io.ObjectInputStream; +import java.io.ObjectOutputStream; +import java.util.TimeZone; + +public class bug4096952 { + + public static void main(String[] args) { + int errors = 0; + String[] ZONES = { "GMT", "MET", "IST" }; + for (String id : ZONES) { + TimeZone zone = TimeZone.getTimeZone(id); + try { + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + try (ObjectOutputStream ostream = new ObjectOutputStream(baos)) { + ostream.writeObject(zone); + } + try (ObjectInputStream istream + = new ObjectInputStream(new ByteArrayInputStream(baos.toByteArray()))) { + if (!zone.equals(istream.readObject())) { + errors++; + System.out.println("Time zone " + id + " are not equal to serialized/deserialized one."); + } else { + System.out.println("Time zone " + id + " ok."); + } + } + } catch (IOException | ClassNotFoundException e) { + errors++; + System.out.println(e); + } + } + if (errors > 0) { + throw new RuntimeException("test failed"); + } + } +} diff --git a/jdk/test/jdk/internal/jrtfs/Basic.java b/jdk/test/jdk/internal/jrtfs/Basic.java index 0af30c5e2f7..9c29d8c1428 100644 --- a/jdk/test/jdk/internal/jrtfs/Basic.java +++ b/jdk/test/jdk/internal/jrtfs/Basic.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 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 @@ -65,15 +65,31 @@ public class Basic { private FileSystem theFileSystem; private FileSystem fs; + private boolean isExplodedBuild = false; @BeforeClass public void setup() { + theFileSystem = FileSystems.getFileSystem(URI.create("jrt:/")); + Path javaHomeDir = Paths.get(System.getProperty("java.home")); + Path jrtJarPath = javaHomeDir.resolve("jrt-fs.jar"); + Path modulesPath = javaHomeDir.resolve("lib/modules"); + isExplodedBuild = !Files.exists(jrtJarPath) + && !Files.exists(modulesPath); + if (Files.notExists(jrtJarPath) + && Files.notExists(modulesPath)) { + System.out.printf("Following files not exist: %s, %s", + jrtJarPath.toString(), modulesPath.toString()); + System.out.println(); + System.out.println("It is most probably an exploded build." + + " Skip non-default FileSystem testing."); + return; + } + + Map env = new HashMap<>(); + // set java.home property to be underlying java.home + // so that jrt-fs.jar loading is exercised. + env.put("java.home", System.getProperty("java.home")); try { - theFileSystem = FileSystems.getFileSystem(URI.create("jrt:/")); - Map env = new HashMap<>(); - // set java.home property to be underlying java.home - // so that jrt-fs.jar loading is exercised. - env.put("java.home", System.getProperty("java.home")); fs = FileSystems.newFileSystem(URI.create("jrt:/"), env); } catch (IOException ioExp) { throw new RuntimeException(ioExp); @@ -131,6 +147,12 @@ public class Basic { @Test public void testNewFileSystemWithJavaHome() throws Exception { + if (isExplodedBuild) { + System.out.println("Skip testNewFileSystemWithJavaHome" + + " since this is an exploded build"); + return; + } + Map env = new HashMap<>(); // set java.home property to be underlying java.home // so that jrt-fs.jar loading is exercised. @@ -154,6 +176,11 @@ public class Basic { @Test(dataProvider = "knownClassFiles") public void testKnownClassFiles(String path, boolean theDefault) throws Exception { + if (isExplodedBuild && !theDefault) { + System.out.println("Skip testKnownClassFiles with non-default FileSystem"); + return; + } + FileSystem fs = selectFileSystem(theDefault); Path classFile = fs.getPath(path); @@ -201,6 +228,11 @@ public class Basic { @Test(dataProvider = "knownDirectories") public void testKnownDirectories(String path, boolean theDefault) throws Exception { + if (isExplodedBuild && !theDefault) { + System.out.println("Skip testKnownDirectories with non-default FileSystem"); + return; + } + FileSystem fs = selectFileSystem(theDefault); Path dir = fs.getPath(path); @@ -684,3 +716,4 @@ public class Basic { assertEquals(dirPrefixOkayCount, childCount); } } + diff --git a/jdk/test/jdk/net/SocketFlow/SocketFlowBasic.java b/jdk/test/jdk/net/SocketFlow/SocketFlowBasic.java index ca02ad931d6..f882e88e30a 100644 --- a/jdk/test/jdk/net/SocketFlow/SocketFlowBasic.java +++ b/jdk/test/jdk/net/SocketFlow/SocketFlowBasic.java @@ -25,6 +25,7 @@ * @test * @bug 8765432 * @summary Basic test for SocketFlow API + * @modules jdk.net * @run testng SocketFlowBasic */ diff --git a/jdk/test/jdk/net/Sockets/SupportedOptions.java b/jdk/test/jdk/net/Sockets/SupportedOptions.java index 0ef21204629..caf4d025d67 100644 --- a/jdk/test/jdk/net/Sockets/SupportedOptions.java +++ b/jdk/test/jdk/net/Sockets/SupportedOptions.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 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 @@ -24,6 +24,7 @@ /* * @test * @bug 8062744 + * @modules jdk.net * @run main SupportedOptions */ diff --git a/jdk/test/jdk/nio/zipfs/MultiReleaseJarTest.java b/jdk/test/jdk/nio/zipfs/MultiReleaseJarTest.java index d73c4b1f111..6e483c6e21a 100644 --- a/jdk/test/jdk/nio/zipfs/MultiReleaseJarTest.java +++ b/jdk/test/jdk/nio/zipfs/MultiReleaseJarTest.java @@ -28,7 +28,9 @@ * @library /lib/testlibrary/java/util/jar * @build Compiler JarBuilder CreateMultiReleaseTestJars * @run testng MultiReleaseJarTest - * @modules jdk.zipfs + * @modules java.compiler + * jdk.jartool + * jdk.zipfs */ import java.io.IOException; diff --git a/jdk/test/lib/testlibrary/jdk/testlibrary/SimpleSSLContext.java b/jdk/test/lib/testlibrary/jdk/testlibrary/SimpleSSLContext.java index 4fedb362c5c..17e50c70354 100644 --- a/jdk/test/lib/testlibrary/jdk/testlibrary/SimpleSSLContext.java +++ b/jdk/test/lib/testlibrary/jdk/testlibrary/SimpleSSLContext.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 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,6 @@ package jdk.testlibrary; -import com.sun.net.httpserver.*; - import java.util.*; import java.util.concurrent.*; import java.io.*; @@ -54,7 +52,7 @@ public class SimpleSSLContext { * loads default keystore from SimpleSSLContext * source directory */ - public SimpleSSLContext () throws IOException { + public SimpleSSLContext() throws IOException { String paths = System.getProperty("test.src.path"); StringTokenizer st = new StringTokenizer(paths, File.pathSeparator); boolean securityExceptions = false; @@ -63,8 +61,10 @@ public class SimpleSSLContext { try { File f = new File(path, "jdk/testlibrary/testkeys"); if (f.exists()) { - init (new FileInputStream(f)); - return; + try (FileInputStream fis = new FileInputStream(f)) { + init(fis); + return; + } } } catch (SecurityException e) { // catch and ignore because permission only required @@ -80,13 +80,14 @@ public class SimpleSSLContext { /** * loads default keystore from given directory */ - public SimpleSSLContext (String dir) throws IOException { + public SimpleSSLContext(String dir) throws IOException { String file = dir+"/testkeys"; - FileInputStream fis = new FileInputStream(file); - init(fis); + try (FileInputStream fis = new FileInputStream(file)) { + init(fis); + } } - private void init (InputStream i) throws IOException { + private void init(InputStream i) throws IOException { try { char[] passphrase = "passphrase".toCharArray(); KeyStore ks = KeyStore.getInstance("JKS"); @@ -98,22 +99,22 @@ public class SimpleSSLContext { TrustManagerFactory tmf = TrustManagerFactory.getInstance("SunX509"); tmf.init(ks); - ssl = SSLContext.getInstance ("TLS"); + ssl = SSLContext.getInstance("TLS"); ssl.init(kmf.getKeyManagers(), tmf.getTrustManagers(), null); } catch (KeyManagementException e) { - throw new RuntimeException (e.getMessage()); + throw new RuntimeException(e.getMessage()); } catch (KeyStoreException e) { - throw new RuntimeException (e.getMessage()); + throw new RuntimeException(e.getMessage()); } catch (UnrecoverableKeyException e) { - throw new RuntimeException (e.getMessage()); + throw new RuntimeException(e.getMessage()); } catch (CertificateException e) { - throw new RuntimeException (e.getMessage()); + throw new RuntimeException(e.getMessage()); } catch (NoSuchAlgorithmException e) { - throw new RuntimeException (e.getMessage()); + throw new RuntimeException(e.getMessage()); } } - public SSLContext get () { + public SSLContext get() { return ssl; } } diff --git a/jdk/test/sun/text/IntHashtable/Bug4170614Test.java b/jdk/test/sun/text/IntHashtable/Bug4170614Test.java new file mode 100644 index 00000000000..97e08a1bdd4 --- /dev/null +++ b/jdk/test/sun/text/IntHashtable/Bug4170614Test.java @@ -0,0 +1,191 @@ +/* + * Copyright (c) 1999, 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. + * + * 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. + */ + +/* + (this test doesn't have an at-test tag because it's run by a shell + script instead of directly by the test harness) +*/ + +/* + * + * + * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved + * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved + * + * Portions copyright (c) 2007 Sun Microsystems, Inc. + * All Rights Reserved. + * + * The original version of this source code and documentation + * is copyrighted and owned by Taligent, Inc., a wholly-owned + * subsidiary of IBM. These materials are provided under terms + * of a License Agreement between Taligent and Sun. This technology + * is protected by multiple US and International patents. + * + * This notice and attribution to Taligent may not be removed. + * Taligent is a registered trademark of Taligent, Inc. + * + * Permission to use, copy, modify, and distribute this software + * and its documentation for NON-COMMERCIAL purposes and without + * fee is hereby granted provided that this copyright notice + * appears in all copies. Please refer to the file "copyright.html" + * for further important copyright and licensing information. + * + * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF + * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR + * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. + * + */ +package java.text; +import sun.text.IntHashtable; + + +/** + * This class tests some internal hashCode() functions. + * Bug #4170614 complained that we had two iternal classes that + * break the invariant that if a.equals(b) than a.hashCode() == + * b.hashCode(). This is because these classes overrode equals() + * but not hashCode(). These are both purely internal classes, and + * the library itself doesn't actually call hashCode(), so this isn't + * actually causing anyone problems yet. But if these classes are + * ever exposed in the API, their hashCode() methods need to work right. + * PatternEntry will never be exposed in the API, but IntHashtable + * might be. This is a shell test to allow us to access classes that + * are declared package private. + * @author Richard Gillam + */ +public class Bug4170614Test { + public static void main(String[] args) throws Exception { + testIntHashtable(); + testPatternEntry(); + } + + + public static void testIntHashtable() throws Exception { + IntHashtable fred = new IntHashtable(); + fred.put(1, 10); + fred.put(2, 20); + fred.put(3, 30); + + IntHashtable barney = new IntHashtable(); + barney.put(1, 10); + barney.put(3, 30); + barney.put(2, 20); + + IntHashtable homer = new IntHashtable(); + homer.put(3, 30); + homer.put(1, 10); + homer.put(7, 900); + + if (fred.equals(barney)) { + System.out.println("fred.equals(barney)"); + } + else { + System.out.println("!fred.equals(barney)"); + } + System.out.println("fred.hashCode() == " + fred.hashCode()); + System.out.println("barney.hashCode() == " + barney.hashCode()); + + if (!fred.equals(barney)) { + throw new Exception("equals() failed on two hashtables that are equal"); + } + + if (fred.hashCode() != barney.hashCode()) { + throw new Exception("hashCode() failed on two hashtables that are equal"); + } + + System.out.println(); + if (fred.equals(homer)) { + System.out.println("fred.equals(homer)"); + } + else { + System.out.println("!fred.equals(homer)"); + } + System.out.println("fred.hashCode() == " + fred.hashCode()); + System.out.println("homer.hashCode() == " + homer.hashCode()); + + if (fred.equals(homer)) { + throw new Exception("equals() failed on two hashtables that are not equal"); + } + + if (fred.hashCode() == homer.hashCode()) { + throw new Exception("hashCode() failed on two hashtables that are not equal"); + } + + System.out.println(); + System.out.println("testIntHashtable() passed.\n"); + } + + public static void testPatternEntry() throws Exception { + PatternEntry fred = new PatternEntry(1, + new StringBuffer("hello"), + new StringBuffer("up")); + PatternEntry barney = new PatternEntry(1, + new StringBuffer("hello"), + new StringBuffer("down")); + // (equals() only considers the "chars" field, so fred and barney are equal) + PatternEntry homer = new PatternEntry(1, + new StringBuffer("goodbye"), + new StringBuffer("up")); + + if (fred.equals(barney)) { + System.out.println("fred.equals(barney)"); + } + else { + System.out.println("!fred.equals(barney)"); + } + System.out.println("fred.hashCode() == " + fred.hashCode()); + System.out.println("barney.hashCode() == " + barney.hashCode()); + + if (!fred.equals(barney)) { + throw new Exception("equals() failed on two hashtables that are equal"); + } + + if (fred.hashCode() != barney.hashCode()) { + throw new Exception("hashCode() failed on two hashtables that are equal"); + } + + System.out.println(); + if (fred.equals(homer)) { + System.out.println("fred.equals(homer)"); + } + else { + System.out.println("!fred.equals(homer)"); + } + System.out.println("fred.hashCode() == " + fred.hashCode()); + System.out.println("homer.hashCode() == " + homer.hashCode()); + + if (fred.equals(homer)) { + throw new Exception("equals() failed on two hashtables that are not equal"); + } + + if (fred.hashCode() == homer.hashCode()) { + throw new Exception("hashCode() failed on two hashtables that are not equal"); + } + + System.out.println(); + System.out.println("testPatternEntry() passed.\n"); + } +} diff --git a/jdk/test/sun/text/IntHashtable/Bug4170614Test.sh b/jdk/test/sun/text/IntHashtable/Bug4170614Test.sh new file mode 100644 index 00000000000..b8dad0084a6 --- /dev/null +++ b/jdk/test/sun/text/IntHashtable/Bug4170614Test.sh @@ -0,0 +1,81 @@ +#!/bin/sh + +# +# Copyright (c) 1999, 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. +# +# This code is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# version 2 for more details (a copy is included in the LICENSE file that +# accompanied this code). +# +# You should have received a copy of the GNU General Public License version +# 2 along with this work; if not, write to the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA +# or visit www.oracle.com if you need additional information or have any +# questions. +# + +# +# @test +# @bug 4170614 +# @summary Test internal hashCode() functions +# + +set -x +if [ "${TESTSRC}" = "" ] +then + echo "TESTSRC not set. Test cannot execute. Failed." + exit 1 +fi +echo "TESTSRC=${TESTSRC}" +if [ "${TESTJAVA}" = "" ] +then + echo "TESTJAVA not set. Test cannot execute. Failed." + exit 1 +fi +echo "TESTJAVA=${TESTJAVA}" +if [ "${COMPILEJAVA}" = "" ]; then + COMPILEJAVA="${TESTJAVA}" +fi +echo "COMPILEJAVA=${COMPILEJAVA}" +if [ "${TESTCLASSES}" = "" ] +then + echo "TESTCLASSES not set. Test cannot execute. Failed." + exit 1 +fi +echo "TESTCLASSES=${TESTCLASSES}" + +goback=`pwd` + +cd ${TESTSRC} + +TEST_JAVABASE=${TESTCLASSES}/java.base +mkdir -p ${TEST_JAVABASE} +${COMPILEJAVA}/bin/javac ${TESTJAVACOPTS} ${TESTTOOLVMOPTS} \ + -Xmodule:java.base \ + -d ${TEST_JAVABASE} Bug4170614Test.java + +${TESTJAVA}/bin/java ${TESTVMOPTS} -Xpatch:java.base=${TEST_JAVABASE} java.text.Bug4170614Test + +result=$? + +cd ${goback} + +if [ $result -eq 0 ] +then + echo "Passed" +else + echo "Failed" +fi +exit $result + + + diff --git a/jdk/test/sun/text/IntHashtable/Bug4705389.java b/jdk/test/sun/text/IntHashtable/Bug4705389.java new file mode 100644 index 00000000000..d2f6e49a829 --- /dev/null +++ b/jdk/test/sun/text/IntHashtable/Bug4705389.java @@ -0,0 +1,43 @@ +/* + * Copyright (c) 2002, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * @test + * @bug 4705389 + * @summary Make sure to find removed slots, which test case will be timed out without the fix. + * @modules java.base/sun.text + * @run main/timeout=10 Bug4705389 + */ + +import sun.text.IntHashtable; + +public class Bug4705389 { + public static void main(String args[]) { + IntHashtable table = new IntHashtable(); + for (int i = 1; i < 132; ++i) { + table.put(i, 0); + table.remove(i); + } + table.put(132, 0); + } +} diff --git a/jdk/test/sun/text/resources/Format/Bug4762201.java b/jdk/test/sun/text/resources/Format/Bug4762201.java index e054bc94a4c..78dfce9e42c 100644 --- a/jdk/test/sun/text/resources/Format/Bug4762201.java +++ b/jdk/test/sun/text/resources/Format/Bug4762201.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 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 @@ -25,6 +25,7 @@ *@test *@bug 4762201 *@summary verify the zh_CN full time pattern (and other time patterns) + *@run main/othervm -Djava.locale.providers=COMPAT,SPI Bug4762201 */ import java.io.*; diff --git a/jdk/test/sun/text/resources/LocaleData.cldr b/jdk/test/sun/text/resources/LocaleData.cldr index 231eb55dda5..fbc696101d8 100644 --- a/jdk/test/sun/text/resources/LocaleData.cldr +++ b/jdk/test/sun/text/resources/LocaleData.cldr @@ -55,7 +55,7 @@ FormatData/ja/Eras/1=\u897f\u66a6 LocaleNames/en/LT=Lithuania # bug #4068012, 4290801, 4942982 -CurrencyNames/ru_RU/RUB=\u0440\u0443\u0431. +CurrencyNames/ru_RU/RUB=\u20bd FormatData/ru_RU/NumberPatterns/0=#,##0.### # FormatData/ru_RU/NumberPatterns/1=#,##0.##'\u0440.';-#,##0.##'\u0440.' # Changed; see bug 4122840 FormatData/ru_RU/NumberPatterns/2=#,##0\u00a0% @@ -108,7 +108,7 @@ FormatData/ja/DatePatterns/2=y/MM/dd FormatData/ja/DatePatterns/3=y/MM/dd # bug #4075404, 4290801, 4942982 -CurrencyNames/ru_RU/RUB=\u0440\u0443\u0431. +CurrencyNames/ru_RU/RUB=\u20bd FormatData/ru_RU/TimePatterns/0=H:mm:ss zzzz FormatData/ru_RU/TimePatterns/1=H:mm:ss z FormatData/ru_RU/TimePatterns/2=H:mm:ss @@ -211,7 +211,7 @@ FormatData/en_US/DatePatterns/3=M/d/yy FormatData/en_US/DateTimePatterns/0={1} 'at' {0} # bug #4094033, 4290801, 4942982 -CurrencyNames/ru_RU/RUB=\u0440\u0443\u0431. +CurrencyNames/ru_RU/RUB=\u20bd FormatData/ru_RU/NumberPatterns/0=#,##0.### # FormatData/ru_RU/NumberPatterns/1=#,##0.##'\u0440.';-#,##0.##'\u0440.' # Changed; see bug 4122840 FormatData/ru_RU/NumberPatterns/2=#,##0\u00a0% @@ -246,11 +246,11 @@ FormatData/ru_RU/Eras/1=\u043d. \u044d. LocaleNames/ru_RU/ru=\u0440\u0443\u0441\u0441\u043a\u0438\u0439 FormatData/ru_RU/MonthAbbreviations/0=\u044f\u043d\u0432. FormatData/ru_RU/MonthAbbreviations/1=\u0444\u0435\u0432\u0440. -FormatData/ru_RU/MonthAbbreviations/2=\u043c\u0430\u0440\u0442\u0430 +FormatData/ru_RU/MonthAbbreviations/2=\u043c\u0430\u0440. FormatData/ru_RU/MonthAbbreviations/3=\u0430\u043f\u0440. FormatData/ru_RU/MonthAbbreviations/4=\u043c\u0430\u044f -FormatData/ru_RU/MonthAbbreviations/5=\u0438\u044e\u043d\u044f -FormatData/ru_RU/MonthAbbreviations/6=\u0438\u044e\u043b\u044f +FormatData/ru_RU/MonthAbbreviations/5=\u0438\u044e\u043d. +FormatData/ru_RU/MonthAbbreviations/6=\u0438\u044e\u043b. FormatData/ru_RU/MonthAbbreviations/7=\u0430\u0432\u0433. FormatData/ru_RU/MonthAbbreviations/8=\u0441\u0435\u043d\u0442. FormatData/ru_RU/MonthAbbreviations/9=\u043e\u043a\u0442. @@ -318,8 +318,8 @@ FormatData/ru_RU/DayAbbreviations/3=\u0441\u0440 FormatData/ru_RU/DayAbbreviations/4=\u0447\u0442 FormatData/ru_RU/DayAbbreviations/5=\u043f\u0442 FormatData/ru_RU/DayAbbreviations/6=\u0441\u0431 -FormatData/ru_RU/AmPmMarkers/0=AM -FormatData/ru_RU/AmPmMarkers/1=PM +FormatData/ru_RU/AmPmMarkers/0=\u0414\u041f +FormatData/ru_RU/AmPmMarkers/1=\u041f\u041f CalendarData/ru_RU/firstDayOfWeek=2 CalendarData/ru_RU/minimalDaysInFirstWeek=1 @@ -331,7 +331,7 @@ FormatData/en_AU/TimePatterns/3=h:mm a FormatData/en_AU/DatePatterns/0=EEEE, d MMMM y FormatData/en_AU/DatePatterns/1=d MMMM y FormatData/en_AU/DatePatterns/2=d MMM y -FormatData/en_AU/DatePatterns/3=d/MM/y +FormatData/en_AU/DatePatterns/3=d/M/yy FormatData/en_AU/DateTimePatterns/0={1} 'at' {0} LocaleNames/en_AU/US=United States LocaleNames/en_AU/GB=United Kingdom @@ -398,10 +398,10 @@ CurrencyNames/es_AR/ARS=$ FormatData/es_AR/NumberPatterns/0=#,##0.### # FormatData/es_AR/NumberPatterns/1=$#,##0.00;($#,##0.00) # Changed; see bug 4122840 FormatData/es_AR/NumberPatterns/2=#,##0\u00a0% -FormatData/es_AR/TimePatterns/0=h:mm:ss a zzzz -FormatData/es_AR/TimePatterns/1=h:mm:ss a z -FormatData/es_AR/TimePatterns/2=h:mm:ss a -FormatData/es_AR/TimePatterns/3=h:mm a +FormatData/es_AR/TimePatterns/0=HH:mm:ss zzzz +FormatData/es_AR/TimePatterns/1=HH:mm:ss z +FormatData/es_AR/TimePatterns/2=HH:mm:ss +FormatData/es_AR/TimePatterns/3=HH:mm FormatData/es_AR/DatePatterns/0=EEEE, d 'de' MMMM 'de' y FormatData/es_AR/DatePatterns/1=d 'de' MMMM 'de' y FormatData/es_AR/DatePatterns/2=d MMM y @@ -414,10 +414,10 @@ FormatData/es_BO/NumberPatterns/0=#,##0.### # FormatData/es_BO/NumberPatterns/1=B$#,##0.00;(B$#,##0.00) # Changed; see bug 4122840 FormatData/es_BO/NumberPatterns/2=#,##0\u00a0% CurrencyNames/es_BO/BOB=Bs -FormatData/es_BO/TimePatterns/0=h:mm:ss a zzzz -FormatData/es_BO/TimePatterns/1=h:mm:ss a z -FormatData/es_BO/TimePatterns/2=h:mm:ss a -FormatData/es_BO/TimePatterns/3=h:mm a +FormatData/es_BO/TimePatterns/0=HH:mm:ss zzzz +FormatData/es_BO/TimePatterns/1=HH:mm:ss z +FormatData/es_BO/TimePatterns/2=HH:mm:ss +FormatData/es_BO/TimePatterns/3=HH:mm FormatData/es_BO/DatePatterns/0=EEEE, d 'de' MMMM 'de' y FormatData/es_BO/DatePatterns/1=d 'de' MMMM 'de' y FormatData/es_BO/DatePatterns/2=d MMM y @@ -441,7 +441,7 @@ FormatData/es_CL/DateTimePatterns/0={1}, {0} #FormatData/es_CL/NumberElements/2= FormatData/es_CO/NumberPatterns/0=#,##0.### # FormatData/es_CO/NumberPatterns/1=C$#,##0.00;(C$#,##0.00) # Changed; see bug 4122840 -FormatData/es_CO/NumberPatterns/2=#,##0\u00a0% +FormatData/es_CO/NumberPatterns/2=#,##0% # changed currency symbol during 5102005 bugfix CurrencyNames/es_CO/COP=$ FormatData/es_CO/TimePatterns/0=h:mm:ss a zzzz @@ -461,10 +461,10 @@ FormatData/es_CR/NumberPatterns/0=#,##0.### # FormatData/es_CR/NumberPatterns/1=C#,##0.00;(C#,##0.00) # Changed; see bug 4122840 FormatData/es_CR/NumberPatterns/2=#,##0\u00a0% CurrencyNames/es_CR/CRC=\u20a1 -FormatData/es_CR/TimePatterns/0=h:mm:ss a zzzz -FormatData/es_CR/TimePatterns/1=h:mm:ss a z -FormatData/es_CR/TimePatterns/2=h:mm:ss a -FormatData/es_CR/TimePatterns/3=h:mm a +FormatData/es_CR/TimePatterns/0=HH:mm:ss zzzz +FormatData/es_CR/TimePatterns/1=HH:mm:ss z +FormatData/es_CR/TimePatterns/2=HH:mm:ss +FormatData/es_CR/TimePatterns/3=HH:mm FormatData/es_CR/DatePatterns/0=EEEE, d 'de' MMMM 'de' y FormatData/es_CR/DatePatterns/1=d 'de' MMMM 'de' y FormatData/es_CR/DatePatterns/2=d MMM y @@ -475,8 +475,8 @@ FormatData/es_CR/DateTimePatterns/0={1}, {0} #FormatData/es_CR/NumberElements/2= FormatData/es_DO/NumberPatterns/0=#,##0.### # FormatData/es_DO/NumberPatterns/1=RD$#,##0.00;(RD$#,##0.00) # Changed; see bug 4122840 -FormatData/es_DO/NumberPatterns/2=#,##0\u00a0% -CurrencyNames/es_DO/DOP=$ +FormatData/es_DO/NumberPatterns/2=#,##0% +CurrencyNames/es_DO/DOP=RD$ FormatData/es_DO/TimePatterns/0=h:mm:ss a zzzz FormatData/es_DO/TimePatterns/1=h:mm:ss a z FormatData/es_DO/TimePatterns/2=h:mm:ss a @@ -526,10 +526,10 @@ FormatData/es_GT/NumberPatterns/0=#,##0.### # FormatData/es_GT/NumberPatterns/1=Q#,##0.00;(Q#,##0.00) # Changed; see bug 4122840 FormatData/es_GT/NumberPatterns/2=#,##0\u00a0% CurrencyNames/es_GT/GTQ=Q -FormatData/es_GT/TimePatterns/0=h:mm:ss a zzzz -FormatData/es_GT/TimePatterns/1=h:mm:ss a z -FormatData/es_GT/TimePatterns/2=h:mm:ss a -FormatData/es_GT/TimePatterns/3=h:mm a +FormatData/es_GT/TimePatterns/0=HH:mm:ss zzzz +FormatData/es_GT/TimePatterns/1=HH:mm:ss z +FormatData/es_GT/TimePatterns/2=HH:mm:ss +FormatData/es_GT/TimePatterns/3=HH:mm FormatData/es_GT/DatePatterns/0=EEEE, d 'de' MMMM 'de' y FormatData/es_GT/DatePatterns/1=d 'de' MMMM 'de' y FormatData/es_GT/DatePatterns/2=d/MM/y @@ -542,10 +542,10 @@ FormatData/es_HN/NumberPatterns/0=#,##0.### # FormatData/es_HN/NumberPatterns/1=L#,##0.00;(L#,##0.00) # Changed; see bug 4122840 FormatData/es_HN/NumberPatterns/2=#,##0\u00a0% CurrencyNames/es_HN/HNL=L -FormatData/es_HN/TimePatterns/0=h:mm:ss a zzzz -FormatData/es_HN/TimePatterns/1=h:mm:ss a z -FormatData/es_HN/TimePatterns/2=h:mm:ss a -FormatData/es_HN/TimePatterns/3=h:mm a +FormatData/es_HN/TimePatterns/0=HH:mm:ss zzzz +FormatData/es_HN/TimePatterns/1=HH:mm:ss z +FormatData/es_HN/TimePatterns/2=HH:mm:ss +FormatData/es_HN/TimePatterns/3=HH:mm FormatData/es_HN/DatePatterns/0=EEEE dd 'de' MMMM 'de' y FormatData/es_HN/DatePatterns/1=dd 'de' MMMM 'de' y FormatData/es_HN/DatePatterns/2=d MMM y @@ -558,10 +558,10 @@ FormatData/es_MX/NumberPatterns/0=#,##0.### # FormatData/es_MX/NumberPatterns/1=$#,##0.00;($#,##0.00) # Changed; see bug 4122840 FormatData/es_MX/NumberPatterns/2=#,##0% CurrencyNames/es_MX/MXN=$ -FormatData/es_MX/TimePatterns/0=h:mm:ss a zzzz -FormatData/es_MX/TimePatterns/1=h:mm:ss a z -FormatData/es_MX/TimePatterns/2=h:mm:ss a -FormatData/es_MX/TimePatterns/3=h:mm a +FormatData/es_MX/TimePatterns/0=HH:mm:ss zzzz +FormatData/es_MX/TimePatterns/1=HH:mm:ss z +FormatData/es_MX/TimePatterns/2=HH:mm:ss +FormatData/es_MX/TimePatterns/3=HH:mm FormatData/es_MX/DatePatterns/0=EEEE, d 'de' MMMM 'de' y FormatData/es_MX/DatePatterns/1=d 'de' MMMM 'de' y FormatData/es_MX/DatePatterns/2=dd/MM/y @@ -574,10 +574,10 @@ FormatData/es_NI/NumberPatterns/0=#,##0.### # FormatData/es_NI/NumberPatterns/1=$C#,##0.00;($C#,##0.00) # Changed; see bug 4122840 FormatData/es_NI/NumberPatterns/2=#,##0\u00a0% CurrencyNames/es_NI/NIO=C$ -FormatData/es_NI/TimePatterns/0=h:mm:ss a zzzz -FormatData/es_NI/TimePatterns/1=h:mm:ss a z -FormatData/es_NI/TimePatterns/2=h:mm:ss a -FormatData/es_NI/TimePatterns/3=h:mm a +FormatData/es_NI/TimePatterns/0=HH:mm:ss zzzz +FormatData/es_NI/TimePatterns/1=HH:mm:ss z +FormatData/es_NI/TimePatterns/2=HH:mm:ss +FormatData/es_NI/TimePatterns/3=HH:mm FormatData/es_NI/DatePatterns/0=EEEE, d 'de' MMMM 'de' y FormatData/es_NI/DatePatterns/1=d 'de' MMMM 'de' y FormatData/es_NI/DatePatterns/2=d MMM y @@ -605,10 +605,10 @@ FormatData/es_PA/DateTimePatterns/0={1}, {0} FormatData/es_PE/NumberPatterns/0=#,##0.### # FormatData/es_PE/NumberPatterns/1=S/#,##0.00;S/-#,##0.00 # Changed; see bug 4122840 FormatData/es_PE/NumberPatterns/2=#,##0\u00a0% -FormatData/es_PE/TimePatterns/0=h:mm:ss a zzzz -FormatData/es_PE/TimePatterns/1=h:mm:ss a z -FormatData/es_PE/TimePatterns/2=h:mm:ss a -FormatData/es_PE/TimePatterns/3=h:mm a +FormatData/es_PE/TimePatterns/0=HH:mm:ss zzzz +FormatData/es_PE/TimePatterns/1=HH:mm:ss z +FormatData/es_PE/TimePatterns/2=HH:mm:ss +FormatData/es_PE/TimePatterns/3=HH:mm FormatData/es_PE/DatePatterns/0=EEEE, d 'de' MMMM 'de' y FormatData/es_PE/DatePatterns/1=d 'de' MMMM 'de' y FormatData/es_PE/DatePatterns/2=d MMM y @@ -633,14 +633,14 @@ FormatData/es_PR/DateTimePatterns/0={1}, {0} #FormatData/es_PR/NumberElements/0= #FormatData/es_PR/NumberElements/1= #FormatData/es_PR/NumberElements/2= -CurrencyNames/es_PY/PYG=\u20b2 +CurrencyNames/es_PY/PYG=Gs. FormatData/es_PY/NumberPatterns/0=#,##0.### # FormatData/es_PY/NumberPatterns/1=G#,##0.00;(G#,##0.00) # Changed; see bug 4122840 FormatData/es_PY/NumberPatterns/2=#,##0\u00a0% -FormatData/es_PY/TimePatterns/0=h:mm:ss a zzzz -FormatData/es_PY/TimePatterns/1=h:mm:ss a z -FormatData/es_PY/TimePatterns/2=h:mm:ss a -FormatData/es_PY/TimePatterns/3=h:mm a +FormatData/es_PY/TimePatterns/0=HH:mm:ss zzzz +FormatData/es_PY/TimePatterns/1=HH:mm:ss z +FormatData/es_PY/TimePatterns/2=HH:mm:ss +FormatData/es_PY/TimePatterns/3=HH:mm FormatData/es_PY/DatePatterns/0=EEEE, d 'de' MMMM 'de' y FormatData/es_PY/DatePatterns/1=d 'de' MMMM 'de' y FormatData/es_PY/DatePatterns/2=d MMM y @@ -653,10 +653,10 @@ FormatData/es_SV/NumberPatterns/0=#,##0.### # FormatData/es_SV/NumberPatterns/1=C#,##0.00;(C#,##0.00) # Changed; see bug 4122840 FormatData/es_SV/NumberPatterns/2=#,##0\u00a0% #CurrencyNames/es_SV/SVC= -FormatData/es_SV/TimePatterns/0=h:mm:ss a zzzz -FormatData/es_SV/TimePatterns/1=h:mm:ss a z -FormatData/es_SV/TimePatterns/2=h:mm:ss a -FormatData/es_SV/TimePatterns/3=h:mm a +FormatData/es_SV/TimePatterns/0=HH:mm:ss zzzz +FormatData/es_SV/TimePatterns/1=HH:mm:ss z +FormatData/es_SV/TimePatterns/2=HH:mm:ss +FormatData/es_SV/TimePatterns/3=HH:mm FormatData/es_SV/DatePatterns/0=EEEE, d 'de' MMMM 'de' y FormatData/es_SV/DatePatterns/1=d 'de' MMMM 'de' y FormatData/es_SV/DatePatterns/2=d MMM y @@ -669,10 +669,10 @@ CurrencyNames/es_UY/UYU=$ FormatData/es_UY/NumberPatterns/0=#,##0.### # FormatData/es_UY/NumberPatterns/1=NU$ #,##0.00;(NU$#,##0.00) # Changed; see bug 4122840 FormatData/es_UY/NumberPatterns/2=#,##0\u00a0% -FormatData/es_UY/TimePatterns/0=h:mm:ss a zzzz -FormatData/es_UY/TimePatterns/1=h:mm:ss a z -FormatData/es_UY/TimePatterns/2=h:mm:ss a -FormatData/es_UY/TimePatterns/3=h:mm a +FormatData/es_UY/TimePatterns/0=HH:mm:ss zzzz +FormatData/es_UY/TimePatterns/1=HH:mm:ss z +FormatData/es_UY/TimePatterns/2=HH:mm:ss +FormatData/es_UY/TimePatterns/3=HH:mm FormatData/es_UY/DatePatterns/0=EEEE, d 'de' MMMM 'de' y FormatData/es_UY/DatePatterns/1=d 'de' MMMM 'de' y FormatData/es_UY/DatePatterns/2=d MMM y @@ -1577,10 +1577,10 @@ FormatData/ar_MA/MonthNames/11=\u062f\u062c\u0646\u0628\u0631 FormatData/ar_MA/MonthNames/12= FormatData/ar_MA/AmPmMarkers/0=\u0635 FormatData/ar_MA/AmPmMarkers/1=\u0645 -FormatData/ar_MA/TimePatterns/0=h:mm:ss a zzzz -FormatData/ar_MA/TimePatterns/1=h:mm:ss a z -FormatData/ar_MA/TimePatterns/2=h:mm:ss a -FormatData/ar_MA/TimePatterns/3=h:mm a +FormatData/ar_MA/TimePatterns/0=HH:mm:ss zzzz +FormatData/ar_MA/TimePatterns/1=HH:mm:ss z +FormatData/ar_MA/TimePatterns/2=HH:mm:ss +FormatData/ar_MA/TimePatterns/3=HH:mm FormatData/ar_MA/DatePatterns/0=EEEE\u060c d MMMM\u060c y FormatData/ar_MA/DatePatterns/1=d MMMM\u060c y FormatData/ar_MA/DatePatterns/2=dd\u200f/MM\u200f/y @@ -2289,7 +2289,7 @@ FormatData/fr_FR/DatePatterns/0=EEEE d MMMM y FormatData/fr_FR/DatePatterns/1=d MMMM y FormatData/fr_FR/DatePatterns/2=d MMM y FormatData/fr_FR/DatePatterns/3=dd/MM/y -FormatData/fr_FR/DateTimePatterns/0={1} {0} +FormatData/fr_FR/DateTimePatterns/0={1} '\u00e0' {0} #FormatData/fr_FR/NumberElements/0= #FormatData/fr_FR/NumberElements/1= #FormatData/fr_FR/NumberElements/2= @@ -2372,10 +2372,10 @@ FormatData/ar_YE/NumberPatterns/1=\u00a4\u00a0#,##0.00 FormatData/en_AU/NumberPatterns/1=\u00a4#,##0.00 FormatData/en_NZ/NumberPatterns/1=\u00a4#,##0.00 FormatData/en_ZA/NumberPatterns/1=\u00a4#,##0.00 -FormatData/es_AR/NumberPatterns/1=\u00a4#,##0.00 +FormatData/es_AR/NumberPatterns/1=\u00a4\u00a0#,##0.00 FormatData/es_BO/NumberPatterns/1=\u00a4#,##0.00 FormatData/es_CL/NumberPatterns/1=\u00a4#,##0.00;\u00a4-#,##0.00 -FormatData/es_CO/NumberPatterns/1=\u00a4#,##0.00 +FormatData/es_CO/NumberPatterns/1=\u00a4\u00a0#,##0.00 FormatData/es_CR/NumberPatterns/1=\u00a4#,##0.00 FormatData/es_DO/NumberPatterns/1=\u00a4#,##0.00 FormatData/es_EC/NumberPatterns/1=\u00a4#,##0.00;\u00a4-#,##0.00 @@ -2447,7 +2447,7 @@ FormatData/zh_HK/TimePatterns/3=ah:mm FormatData/zh_HK/DatePatterns/0=y\u5e74M\u6708d\u65e5EEEE FormatData/zh_HK/DatePatterns/1=y\u5e74M\u6708d\u65e5 FormatData/zh_HK/DatePatterns/2=y\u5e74M\u6708d\u65e5 -FormatData/zh_HK/DatePatterns/3=d/M/yy +FormatData/zh_HK/DatePatterns/3=d/M/y FormatData/zh_HK/DateTimePatterns/0={1} {0} #bug #4149569 @@ -2482,7 +2482,7 @@ LocaleNames/es/SV=El Salvador #TimeZoneNames/en_CA/CTT/2= #bug nobugid, 4290801, 4942982 -CurrencyNames/ru_RU/RUB=\u0440\u0443\u0431. +CurrencyNames/ru_RU/RUB=\u20bd #bug 4826794 LocaleNames/ru_RU/MM=\u041c\u044c\u044f\u043d\u043c\u0430 (\u0411\u0438\u0440\u043c\u0430) @@ -2862,10 +2862,10 @@ FormatData/in_ID/DateTimePatterns/0={1} {0} FormatData/en_MT/NumberPatterns/0=#,##0.### FormatData/en_MT/NumberPatterns/1=\u00a4#,##0.00 FormatData/en_MT/NumberPatterns/2=#,##0% -FormatData/en_MT/TimePatterns/0=h:mm:ss a zzzz -FormatData/en_MT/TimePatterns/1=h:mm:ss a z -FormatData/en_MT/TimePatterns/2=h:mm:ss a -FormatData/en_MT/TimePatterns/3=h:mm a +FormatData/en_MT/TimePatterns/0=HH:mm:ss zzzz +FormatData/en_MT/TimePatterns/1=HH:mm:ss z +FormatData/en_MT/TimePatterns/2=HH:mm:ss +FormatData/en_MT/TimePatterns/3=HH:mm FormatData/en_MT/DatePatterns/0=EEEE, d MMMM y FormatData/en_MT/DatePatterns/1=dd MMMM y FormatData/en_MT/DatePatterns/2=dd MMM y @@ -3091,7 +3091,6 @@ LocaleNames/el_CY/AG=\u0391\u03bd\u03c4\u03af\u03b3\u03ba\u03bf\u03c5\u03b1 \u03 LocaleNames/el_CY/AI=\u0391\u03bd\u03b3\u03ba\u03bf\u03c5\u03af\u03bb\u03b1 LocaleNames/el_CY/AL=\u0391\u03bb\u03b2\u03b1\u03bd\u03af\u03b1 LocaleNames/el_CY/AM=\u0391\u03c1\u03bc\u03b5\u03bd\u03af\u03b1 -LocaleNames/el_CY/AN=\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ad\u03c2 \u0391\u03bd\u03c4\u03af\u03bb\u03bb\u03b5\u03c2 LocaleNames/el_CY/AO=\u0391\u03bd\u03b3\u03ba\u03cc\u03bb\u03b1 LocaleNames/el_CY/AQ=\u0391\u03bd\u03c4\u03b1\u03c1\u03ba\u03c4\u03b9\u03ba\u03ae LocaleNames/el_CY/AR=\u0391\u03c1\u03b3\u03b5\u03bd\u03c4\u03b9\u03bd\u03ae @@ -3220,7 +3219,7 @@ LocaleNames/el_CY/MC=\u039c\u03bf\u03bd\u03b1\u03ba\u03cc LocaleNames/el_CY/MD=\u039c\u03bf\u03bb\u03b4\u03b1\u03b2\u03af\u03b1 LocaleNames/el_CY/MG=\u039c\u03b1\u03b4\u03b1\u03b3\u03b1\u03c3\u03ba\u03ac\u03c1\u03b7 LocaleNames/el_CY/MH=\u039d\u03ae\u03c3\u03bf\u03b9 \u039c\u03ac\u03c1\u03c3\u03b1\u03bb -LocaleNames/el_CY/MK=\u03a0\u0393\u0394\u039c +LocaleNames/el_CY/MK=\u03a0\u03c1\u03ce\u03b7\u03bd \u0393\u03b9\u03bf\u03c5\u03b3\u03ba\u03bf\u03c3\u03bb\u03b1\u03b2\u03b9\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 \u03c4\u03b7\u03c2 \u039c\u03b1\u03ba\u03b5\u03b4\u03bf\u03bd\u03af\u03b1\u03c2 LocaleNames/el_CY/ML=\u039c\u03ac\u03bb\u03b9 LocaleNames/el_CY/MM=\u039c\u03b9\u03b1\u03bd\u03bc\u03ac\u03c1/\u0392\u03b9\u03c1\u03bc\u03b1\u03bd\u03af\u03b1 LocaleNames/el_CY/MN=\u039c\u03bf\u03b3\u03b3\u03bf\u03bb\u03af\u03b1 @@ -3289,7 +3288,7 @@ LocaleNames/el_CY/SY=\u03a3\u03c5\u03c1\u03af\u03b1 LocaleNames/el_CY/SZ=\u03a3\u03bf\u03c5\u03b1\u03b6\u03b9\u03bb\u03ac\u03bd\u03b4\u03b7 LocaleNames/el_CY/TC=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a4\u03b5\u03c1\u03ba \u03ba\u03b1\u03b9 \u039a\u03ac\u03b9\u03ba\u03bf\u03c2 LocaleNames/el_CY/TD=\u03a4\u03c3\u03b1\u03bd\u03c4 -LocaleNames/el_CY/TF=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac \u039d\u03cc\u03c4\u03b9\u03b1 \u0395\u03b4\u03ac\u03c6\u03b7 +LocaleNames/el_CY/TF=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ad\u03c2 \u03c4\u03bf\u03c5 \u03bd\u03bf\u03c4\u03af\u03bf\u03c5 \u03b7\u03bc\u03b9\u03c3\u03c6\u03b1\u03b9\u03c1\u03af\u03bf\u03c5 LocaleNames/el_CY/TG=\u03a4\u03cc\u03b3\u03ba\u03bf LocaleNames/el_CY/TH=\u03a4\u03b1\u03ca\u03bb\u03ac\u03bd\u03b4\u03b7 LocaleNames/el_CY/TJ=\u03a4\u03b1\u03c4\u03b6\u03b9\u03ba\u03b9\u03c3\u03c4\u03ac\u03bd @@ -3305,7 +3304,7 @@ LocaleNames/el_CY/TW=\u03a4\u03b1\u03ca\u03b2\u03ac\u03bd LocaleNames/el_CY/TZ=\u03a4\u03b1\u03bd\u03b6\u03b1\u03bd\u03af\u03b1 LocaleNames/el_CY/UA=\u039f\u03c5\u03ba\u03c1\u03b1\u03bd\u03af\u03b1 LocaleNames/el_CY/UG=\u039f\u03c5\u03b3\u03ba\u03ac\u03bd\u03c4\u03b1 -LocaleNames/el_CY/UM=\u0391\u03c0\u03bf\u03bc\u03b1\u03ba\u03c1\u03c5\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u039d\u03b7\u03c3\u03af\u03b4\u03b5\u03c2 \u0397.\u03a0.\u0391. +LocaleNames/el_CY/UM=\u0391\u03c0\u03bf\u03bc\u03b1\u03ba\u03c1\u03c5\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u039d\u03b7\u03c3\u03af\u03b4\u03b5\u03c2 \u0397\u03a0\u0391 LocaleNames/el_CY/US=\u0397\u03bd\u03c9\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b5\u03af\u03b5\u03c2 LocaleNames/el_CY/UY=\u039f\u03c5\u03c1\u03bf\u03c5\u03b3\u03bf\u03c5\u03ac\u03b7 LocaleNames/el_CY/UZ=\u039f\u03c5\u03b6\u03bc\u03c0\u03b5\u03ba\u03b9\u03c3\u03c4\u03ac\u03bd @@ -3364,7 +3363,7 @@ LocaleNames/ms/EG=Mesir LocaleNames/ms/EH=Sahara Barat LocaleNames/ms/ES=Sepanyol LocaleNames/ms/FR=Perancis -LocaleNames/ms/GR=Yunani +LocaleNames/ms/GR=Greece LocaleNames/ms/GS=Kepulauan Georgia Selatan & Sandwich Selatan LocaleNames/ms/GW=Guinea Bissau LocaleNames/ms/HK=Hong Kong SAR China @@ -3442,10 +3441,10 @@ LocaleNames/es_US/ce=checheno LocaleNames/es_US/ch=chamorro LocaleNames/es_US/cr=cree LocaleNames/es_US/cu=eslavo eclesi\u00e1stico -LocaleNames/es_US/cv=chuvash +LocaleNames/es_US/cv=chuvasio LocaleNames/es_US/dv=divehi LocaleNames/es_US/ee=ew\u00e9 -LocaleNames/es_US/eu=euskera +LocaleNames/es_US/eu=vasco LocaleNames/es_US/ff=fula LocaleNames/es_US/fo=fero\u00e9s LocaleNames/es_US/fy=fris\u00f3n occidental @@ -3478,10 +3477,10 @@ LocaleNames/es_US/li=limburgu\u00e9s LocaleNames/es_US/lu=luba-katanga LocaleNames/es_US/mh=marshal\u00e9s LocaleNames/es_US/mr=marat\u00ed -LocaleNames/es_US/nb=bokmal noruego +LocaleNames/es_US/nb=noruego bokmal LocaleNames/es_US/nd=ndebele septentrional LocaleNames/es_US/ng=ndonga -LocaleNames/es_US/nn=nynorsk noruego +LocaleNames/es_US/nn=noruego nynorsk LocaleNames/es_US/nr=ndebele meridional LocaleNames/es_US/nv=navajo LocaleNames/es_US/ny=nyanja @@ -3512,10 +3511,9 @@ LocaleNames/es_US/uz=uzbeko LocaleNames/es_US/ve=venda LocaleNames/es_US/wa=val\u00f3n LocaleNames/es_US/za=zhuang -LocaleNames/es_US/AN=Antillas Neerlandesas LocaleNames/es_US/BA=Bosnia-Herzegovina LocaleNames/es_US/CC=Islas Cocos -LocaleNames/es_US/CX=Isla de Navidad (Christmas) +LocaleNames/es_US/CX=Isla de Navidad LocaleNames/es_US/CZ=Rep\u00fablica Checa LocaleNames/es_US/EH=S\u00e1hara Occidental LocaleNames/es_US/FK=Islas Malvinas @@ -3531,7 +3529,7 @@ LocaleNames/es_US/PG=Pap\u00faa Nueva Guinea LocaleNames/es_US/PK=Pakist\u00e1n LocaleNames/es_US/PN=Islas Pitcairn LocaleNames/es_US/PS=Territorios Palestinos -LocaleNames/es_US/PW=Palau +LocaleNames/es_US/PW=Palaos LocaleNames/es_US/RO=Ruman\u00eda LocaleNames/es_US/SA=Arabia Saud\u00ed LocaleNames/es_US/SH=Santa Elena @@ -3570,7 +3568,7 @@ LocaleNames/pt/co=c\u00f3rsico LocaleNames/pt/cr=cree LocaleNames/pt/cs=tcheco LocaleNames/pt/cu=eslavo eclesi\u00e1stico -LocaleNames/pt/cv=chuvash +LocaleNames/pt/cv=tchuvache LocaleNames/pt/cy=gal\u00eas LocaleNames/pt/da=dinamarqu\u00eas LocaleNames/pt/de=alem\u00e3o @@ -3679,7 +3677,7 @@ LocaleNames/pt/rm=romanche LocaleNames/pt/rn=rundi LocaleNames/pt/ro=romeno LocaleNames/pt/ru=russo -LocaleNames/pt/rw=kinyarwanda +LocaleNames/pt/rw=quiniaruanda LocaleNames/pt/sa=s\u00e2nscrito LocaleNames/pt/sc=sardo LocaleNames/pt/sd=sindi @@ -3729,7 +3727,6 @@ LocaleNames/pt/AF=Afeganist\u00e3o LocaleNames/pt/AG=Ant\u00edgua e Barbuda LocaleNames/pt/AL=Alb\u00e2nia LocaleNames/pt/AM=Arm\u00eania -LocaleNames/pt/AN=Antilhas Holandesas LocaleNames/pt/AQ=Ant\u00e1rtida LocaleNames/pt/AS=Samoa Americana LocaleNames/pt/AT=\u00c1ustria @@ -3918,7 +3915,7 @@ LocaleNames/pt_PT/BA=B\u00f3snia e Herzegovina LocaleNames/pt_PT/BJ=Benim LocaleNames/pt_PT/BY=Bielorr\u00fassia LocaleNames/pt_PT/CM=Camar\u00f5es -LocaleNames/pt_PT/CX=Ilha Christmas +LocaleNames/pt_PT/CX=Ilha do Natal LocaleNames/pt_PT/CZ=Rep\u00fablica Checa LocaleNames/pt_PT/EE=Est\u00f3nia LocaleNames/pt_PT/EG=Egito @@ -3931,7 +3928,7 @@ LocaleNames/pt_PT/GW=Guin\u00e9-Bissau LocaleNames/pt_PT/HK=Hong Kong, RAE da China LocaleNames/pt_PT/KE=Qu\u00e9nia LocaleNames/pt_PT/KG=Quirguist\u00e3o -LocaleNames/pt_PT/KN=S\u00e3o Crist\u00f3v\u00e3o e Nevis +LocaleNames/pt_PT/KN=S\u00e3o Crist\u00f3v\u00e3o e Neves LocaleNames/pt_PT/KP=Coreia do Norte LocaleNames/pt_PT/KR=Coreia do Sul LocaleNames/pt_PT/KY=Ilhas Caim\u00e3o @@ -3954,14 +3951,14 @@ LocaleNames/pt_PT/RO=Rom\u00e9nia LocaleNames/pt_PT/SC=Seicheles LocaleNames/pt_PT/SG=Singapura LocaleNames/pt_PT/SI=Eslov\u00e9nia -LocaleNames/pt_PT/SM=S\u00e3o Marino -LocaleNames/pt_PT/TC=Ilhas Turks e Caicos +LocaleNames/pt_PT/SM=S\u00e3o Marinho +LocaleNames/pt_PT/TC=Ilhas Turcas e Caicos LocaleNames/pt_PT/TD=Chade LocaleNames/pt_PT/TF=Territ\u00f3rios Franceses do Sul LocaleNames/pt_PT/TJ=Tajiquist\u00e3o LocaleNames/pt_PT/TM=Turquemenist\u00e3o -LocaleNames/pt_PT/UM=Ilhas Menores Distantes dos EUA -LocaleNames/pt_PT/UZ=Uzbequist\u00e3o +LocaleNames/pt_PT/UM=Ilhas Menores Afastadas dos EUA +LocaleNames/pt_PT/UZ=Usbequist\u00e3o LocaleNames/pt_PT/VA=Cidade do Vaticano LocaleNames/pt_PT/VC=S\u00e3o Vicente e Granadinas LocaleNames/pt_PT/VG=Ilhas Virgens Brit\u00e2nicas @@ -3983,7 +3980,7 @@ LocaleNames/ga/bo=Tib\u00e9idis LocaleNames/ga/br=Briot\u00e1inis LocaleNames/ga/bs=Boisnis LocaleNames/ga/ca=Catal\u00f3inis -LocaleNames/ga/ce=Sisinis +LocaleNames/ga/ce=Seisnis LocaleNames/ga/co=Corsaicis LocaleNames/ga/cr=Cra\u00eds LocaleNames/ga/cs=Seicis @@ -4090,7 +4087,6 @@ LocaleNames/ga/AF=An Afganast\u00e1in LocaleNames/ga/AG=Antigua agus Barb\u00fada LocaleNames/ga/AL=An Alb\u00e1in LocaleNames/ga/AM=An Airm\u00e9in -LocaleNames/ga/AN=Aintill\u00ed na h\u00cdsilt\u00edre LocaleNames/ga/AO=Ang\u00f3la LocaleNames/ga/AQ=An Antartaice LocaleNames/ga/AR=An Airgint\u00edn @@ -4433,7 +4429,6 @@ LocaleNames/sr/AE=\u0423\u0458\u0435\u0434\u0438\u045a\u0435\u043d\u0438 \u0410\ LocaleNames/sr/AF=\u0410\u0432\u0433\u0430\u043d\u0438\u0441\u0442\u0430\u043d LocaleNames/sr/AL=\u0410\u043b\u0431\u0430\u043d\u0438\u0458\u0430 LocaleNames/sr/AM=\u0408\u0435\u0440\u043c\u0435\u043d\u0438\u0458\u0430 -LocaleNames/sr/AN=\u0425\u043e\u043b\u0430\u043d\u0434\u0441\u043a\u0438 \u0410\u043d\u0442\u0438\u043b\u0438 LocaleNames/sr/AO=\u0410\u043d\u0433\u043e\u043b\u0430 LocaleNames/sr/AR=\u0410\u0440\u0433\u0435\u043d\u0442\u0438\u043d\u0430 LocaleNames/sr/AT=\u0410\u0443\u0441\u0442\u0440\u0438\u0458\u0430 @@ -4461,7 +4456,7 @@ LocaleNames/sr/BW=\u0411\u043e\u0446\u0432\u0430\u043d\u0430 LocaleNames/sr/BY=\u0411\u0435\u043b\u043e\u0440\u0443\u0441\u0438\u0458\u0430 LocaleNames/sr/BZ=\u0411\u0435\u043b\u0438\u0437\u0435 LocaleNames/sr/CA=\u041a\u0430\u043d\u0430\u0434\u0430 -LocaleNames/sr/CC=\u041a\u043e\u043a\u043e\u0441 (\u041a\u0435\u043b\u0438\u043d\u0433) \u041e\u0441\u0442\u0440\u0432\u0430 +LocaleNames/sr/CC=\u041a\u043e\u043a\u043e\u0441\u043e\u0432\u0430 (\u041a\u0438\u043b\u0438\u043d\u0433\u043e\u0432\u0430) \u041e\u0441\u0442\u0440\u0432\u0430 LocaleNames/sr/CD=\u041a\u043e\u043d\u0433\u043e - \u041a\u0438\u043d\u0448\u0430\u0441\u0430 LocaleNames/sr/CF=\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u043d\u043e\u0430\u0444\u0440\u0438\u0447\u043a\u0430 \u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 LocaleNames/sr/CG=\u041a\u043e\u043d\u0433\u043e - \u0411\u0440\u0430\u0437\u0430\u0432\u0438\u043b @@ -4515,7 +4510,7 @@ LocaleNames/sr/GT=\u0413\u0432\u0430\u0442\u0435\u043c\u0430\u043b\u0430 LocaleNames/sr/GU=\u0413\u0443\u0430\u043c LocaleNames/sr/GW=\u0413\u0432\u0438\u043d\u0435\u0458\u0430-\u0411\u0438\u0441\u0430\u043e LocaleNames/sr/GY=\u0413\u0432\u0430\u0458\u0430\u043d\u0430 -LocaleNames/sr/HK=\u0425\u043e\u043d\u0433 \u041a\u043e\u043d\u0433 \u0421. \u0410. \u0420. \u041a\u0438\u043d\u0430 +LocaleNames/sr/HK=\u0421\u0410\u0420 \u0425\u043e\u043d\u0433\u043a\u043e\u043d\u0433 (\u041a\u0438\u043d\u0430) LocaleNames/sr/HM=\u041e\u0441\u0442\u0440\u0432\u0430 \u0425\u0435\u0440\u0434 \u0438 \u041c\u0435\u043a\u0434\u043e\u043d\u0430\u043b\u0434 LocaleNames/sr/HN=\u0425\u043e\u043d\u0434\u0443\u0440\u0430\u0441 LocaleNames/sr/HR=\u0425\u0440\u0432\u0430\u0442\u0441\u043a\u0430 @@ -4578,7 +4573,7 @@ LocaleNames/sr/MZ=\u041c\u043e\u0437\u0430\u043c\u0431\u0438\u043a LocaleNames/sr/NA=\u041d\u0430\u043c\u0438\u0431\u0438\u0458\u0430 LocaleNames/sr/NC=\u041d\u043e\u0432\u0430 \u041a\u0430\u043b\u0435\u0434\u043e\u043d\u0438\u0458\u0430 LocaleNames/sr/NE=\u041d\u0438\u0433\u0435\u0440 -LocaleNames/sr/NF=\u041d\u043e\u0440\u0444\u043e\u043b\u043a \u041e\u0441\u0442\u0440\u0432\u043e +LocaleNames/sr/NF=\u041e\u0441\u0442\u0440\u0432\u043e \u041d\u043e\u0440\u0444\u043e\u043a LocaleNames/sr/NG=\u041d\u0438\u0433\u0435\u0440\u0438\u0458\u0430 LocaleNames/sr/NI=\u041d\u0438\u043a\u0430\u0440\u0430\u0433\u0432\u0430 LocaleNames/sr/NL=\u0425\u043e\u043b\u0430\u043d\u0434\u0438\u0458\u0430 @@ -4749,7 +4744,6 @@ LocaleNames/el/AG=\u0391\u03bd\u03c4\u03af\u03b3\u03ba\u03bf\u03c5\u03b1 \u03ba\ LocaleNames/el/AI=\u0391\u03bd\u03b3\u03ba\u03bf\u03c5\u03af\u03bb\u03b1 LocaleNames/el/AL=\u0391\u03bb\u03b2\u03b1\u03bd\u03af\u03b1 LocaleNames/el/AM=\u0391\u03c1\u03bc\u03b5\u03bd\u03af\u03b1 -LocaleNames/el/AN=\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ad\u03c2 \u0391\u03bd\u03c4\u03af\u03bb\u03bb\u03b5\u03c2 LocaleNames/el/AO=\u0391\u03bd\u03b3\u03ba\u03cc\u03bb\u03b1 LocaleNames/el/AQ=\u0391\u03bd\u03c4\u03b1\u03c1\u03ba\u03c4\u03b9\u03ba\u03ae LocaleNames/el/AR=\u0391\u03c1\u03b3\u03b5\u03bd\u03c4\u03b9\u03bd\u03ae @@ -4878,7 +4872,7 @@ LocaleNames/el/MC=\u039c\u03bf\u03bd\u03b1\u03ba\u03cc LocaleNames/el/MD=\u039c\u03bf\u03bb\u03b4\u03b1\u03b2\u03af\u03b1 LocaleNames/el/MG=\u039c\u03b1\u03b4\u03b1\u03b3\u03b1\u03c3\u03ba\u03ac\u03c1\u03b7 LocaleNames/el/MH=\u039d\u03ae\u03c3\u03bf\u03b9 \u039c\u03ac\u03c1\u03c3\u03b1\u03bb -LocaleNames/el/MK=\u03a0\u0393\u0394\u039c +LocaleNames/el/MK=\u03a0\u03c1\u03ce\u03b7\u03bd \u0393\u03b9\u03bf\u03c5\u03b3\u03ba\u03bf\u03c3\u03bb\u03b1\u03b2\u03b9\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 \u03c4\u03b7\u03c2 \u039c\u03b1\u03ba\u03b5\u03b4\u03bf\u03bd\u03af\u03b1\u03c2 LocaleNames/el/ML=\u039c\u03ac\u03bb\u03b9 LocaleNames/el/MM=\u039c\u03b9\u03b1\u03bd\u03bc\u03ac\u03c1/\u0392\u03b9\u03c1\u03bc\u03b1\u03bd\u03af\u03b1 LocaleNames/el/MN=\u039c\u03bf\u03b3\u03b3\u03bf\u03bb\u03af\u03b1 @@ -4947,7 +4941,7 @@ LocaleNames/el/SY=\u03a3\u03c5\u03c1\u03af\u03b1 LocaleNames/el/SZ=\u03a3\u03bf\u03c5\u03b1\u03b6\u03b9\u03bb\u03ac\u03bd\u03b4\u03b7 LocaleNames/el/TC=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a4\u03b5\u03c1\u03ba \u03ba\u03b1\u03b9 \u039a\u03ac\u03b9\u03ba\u03bf\u03c2 LocaleNames/el/TD=\u03a4\u03c3\u03b1\u03bd\u03c4 -LocaleNames/el/TF=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac \u039d\u03cc\u03c4\u03b9\u03b1 \u0395\u03b4\u03ac\u03c6\u03b7 +LocaleNames/el/TF=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ad\u03c2 \u03c4\u03bf\u03c5 \u03bd\u03bf\u03c4\u03af\u03bf\u03c5 \u03b7\u03bc\u03b9\u03c3\u03c6\u03b1\u03b9\u03c1\u03af\u03bf\u03c5 LocaleNames/el/TG=\u03a4\u03cc\u03b3\u03ba\u03bf LocaleNames/el/TH=\u03a4\u03b1\u03ca\u03bb\u03ac\u03bd\u03b4\u03b7 LocaleNames/el/TJ=\u03a4\u03b1\u03c4\u03b6\u03b9\u03ba\u03b9\u03c3\u03c4\u03ac\u03bd @@ -4963,7 +4957,7 @@ LocaleNames/el/TW=\u03a4\u03b1\u03ca\u03b2\u03ac\u03bd LocaleNames/el/TZ=\u03a4\u03b1\u03bd\u03b6\u03b1\u03bd\u03af\u03b1 LocaleNames/el/UA=\u039f\u03c5\u03ba\u03c1\u03b1\u03bd\u03af\u03b1 LocaleNames/el/UG=\u039f\u03c5\u03b3\u03ba\u03ac\u03bd\u03c4\u03b1 -LocaleNames/el/UM=\u0391\u03c0\u03bf\u03bc\u03b1\u03ba\u03c1\u03c5\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u039d\u03b7\u03c3\u03af\u03b4\u03b5\u03c2 \u0397.\u03a0.\u0391. +LocaleNames/el/UM=\u0391\u03c0\u03bf\u03bc\u03b1\u03ba\u03c1\u03c5\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u039d\u03b7\u03c3\u03af\u03b4\u03b5\u03c2 \u0397\u03a0\u0391 LocaleNames/el/US=\u0397\u03bd\u03c9\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b5\u03af\u03b5\u03c2 LocaleNames/el/UY=\u039f\u03c5\u03c1\u03bf\u03c5\u03b3\u03bf\u03c5\u03ac\u03b7 LocaleNames/el/UZ=\u039f\u03c5\u03b6\u03bc\u03c0\u03b5\u03ba\u03b9\u03c3\u03c4\u03ac\u03bd @@ -5168,7 +5162,6 @@ LocaleNames/mt/AF=Afganistan LocaleNames/mt/AI=Angwilla LocaleNames/mt/AL=Albanija LocaleNames/mt/AM=Armenja -LocaleNames/mt/AN=Antilles Olandi\u017ci LocaleNames/mt/AQ=Antartika LocaleNames/mt/AR=Ar\u0121entina LocaleNames/mt/AS=Samoa Amerikana @@ -5197,7 +5190,7 @@ LocaleNames/mt/CI=Kosta ta\u2019 l-Avorju LocaleNames/mt/CL=\u010aili LocaleNames/mt/CM=Kamerun LocaleNames/mt/CN=I\u010b-\u010aina -LocaleNames/mt/CO=Kolumbja +LocaleNames/mt/CO=Kolombja LocaleNames/mt/CR=Kosta Rika #LocaleNames/mt/CS= LocaleNames/mt/CU=Kuba @@ -5214,7 +5207,7 @@ LocaleNames/mt/EC=Ekwador LocaleNames/mt/EE=Estonja LocaleNames/mt/EG=E\u0121ittu LocaleNames/mt/EH=Sahara tal-Punent -LocaleNames/mt/ER=Eritreja +LocaleNames/mt/ER=Eritrea LocaleNames/mt/ES=Spanja LocaleNames/mt/ET=Etijopja LocaleNames/mt/FI=Finlandja @@ -5223,12 +5216,12 @@ LocaleNames/mt/FM=Mikronesja LocaleNames/mt/FO=G\u017cejjer Faroe LocaleNames/mt/FR=Franza LocaleNames/mt/GB=L-Ingilterra -LocaleNames/mt/GE=\u0120or\u0121ja +LocaleNames/mt/GE=\u0120eor\u0121ja LocaleNames/mt/GF=Gujana Fran\u010bi\u017ca LocaleNames/mt/GH=Gana LocaleNames/mt/GL=Grinlandja LocaleNames/mt/GM=Gambja -LocaleNames/mt/GN=Gineja +LocaleNames/mt/GN=Ginea LocaleNames/mt/GP=Gwadelupe LocaleNames/mt/GQ=Ginea Ekwatorjali LocaleNames/mt/GR=Gre\u010bja @@ -5271,7 +5264,7 @@ LocaleNames/mt/LV=Latvja LocaleNames/mt/LY=Libja LocaleNames/mt/MA=Marokk LocaleNames/mt/MC=Monako -LocaleNames/mt/MD=Maldova +LocaleNames/mt/MD=Moldova LocaleNames/mt/MG=Madagaskar LocaleNames/mt/MH=G\u017cejjer ta\u2019 Marshall LocaleNames/mt/MK=Ma\u010bedonja @@ -5463,7 +5456,7 @@ LocaleNames/pt_PT/os=oss\u00e9tico LocaleNames/pt_PT/st=soto do sul LocaleNames/pt_PT/ta=t\u00e2mil LocaleNames/pt_PT/AI=Anguila -LocaleNames/pt_PT/AX=Ilhas \u00c5land +LocaleNames/pt_PT/AX=Alanda # JE, GG, IM (6544471) #LocaleNames//JE= @@ -5505,10 +5498,10 @@ FormatData/fr_LU/DateTimePatternChars=GyMdkHmsSEDFwWahKzZ FormatData/fr/NumberPatterns/2=#,##0\u00a0% # following two lines are also for bug 4494727 FormatData/fr_CA/NumberPatterns/2=#,##0\u00a0% -FormatData/fr_CH/NumberPatterns/2=#,##0\u00a0% +FormatData/fr_CH/NumberPatterns/2=#,##0% # bug 4494727 -FormatData/de_CH/NumberPatterns/2=#,##0\u00a0% +FormatData/de_CH/NumberPatterns/2=#,##0% FormatData/tr/NumberPatterns/2=%#,##0 # added to verify propper inheritance FormatData/tr_TR/NumberPatterns/2=%#,##0 @@ -5667,9 +5660,9 @@ LocaleNames/es/ku=kurdo LocaleNames/es/ky=kirgu\u00eds LocaleNames/es/lu=luba-katanga LocaleNames/es/mr=marat\u00ed -LocaleNames/es/nb=bokmal noruego +LocaleNames/es/nb=noruego bokmal LocaleNames/es/nd=ndebele septentrional -LocaleNames/es/nn=nynorsk noruego +LocaleNames/es/nn=noruego nynorsk LocaleNames/es/nr=ndebele meridional LocaleNames/es/os=os\u00e9tico LocaleNames/es/rm=retorrom\u00e1nico @@ -5682,7 +5675,7 @@ LocaleNames/es/sn=shona LocaleNames/es/ss=siswati LocaleNames/es/st=sesotho meridional LocaleNames/es/su=sundan\u00e9s -LocaleNames/es/sw=swahili +LocaleNames/es/sw=suajili LocaleNames/es/tg=tayiko LocaleNames/es/ti=tigri\u00f1a LocaleNames/es/tn=setchwana @@ -5855,7 +5848,7 @@ LocaleNames/nl/sw=Swahili LocaleNames/nl/ta=Tamil LocaleNames/nl/te=Telugu LocaleNames/nl/tg=Tadzjieks -LocaleNames/nl/th=Thais +LocaleNames/nl/th=Thai LocaleNames/nl/ti=Tigrinya LocaleNames/nl/tk=Turkmeens LocaleNames/nl/tl=Tagalog @@ -5890,7 +5883,6 @@ LocaleNames/nl/AG=Antigua en Barbuda LocaleNames/nl/AI=Anguilla LocaleNames/nl/AL=Albani\u00eb LocaleNames/nl/AM=Armeni\u00eb -LocaleNames/nl/AN=Nederlandse Antillen LocaleNames/nl/AO=Angola LocaleNames/nl/AQ=Antarctica LocaleNames/nl/AR=Argentini\u00eb @@ -5917,7 +5909,7 @@ LocaleNames/nl/BS=Bahama\u2019s LocaleNames/nl/BT=Bhutan LocaleNames/nl/BV=Bouveteiland LocaleNames/nl/BW=Botswana -LocaleNames/nl/BY=Wit-Rusland +LocaleNames/nl/BY=Belarus LocaleNames/nl/BZ=Belize LocaleNames/nl/CA=Canada LocaleNames/nl/CC=Cocoseilanden @@ -6002,7 +5994,7 @@ LocaleNames/nl/KN=Saint Kitts en Nevis LocaleNames/nl/KP=Noord-Korea LocaleNames/nl/KR=Zuid-Korea LocaleNames/nl/KW=Koeweit -LocaleNames/nl/KY=Caymaneilanden +LocaleNames/nl/KY=Kaaimaneilanden LocaleNames/nl/KZ=Kazachstan LocaleNames/nl/LA=Laos LocaleNames/nl/LB=Libanon @@ -6091,7 +6083,7 @@ LocaleNames/nl/SY=Syri\u00eb LocaleNames/nl/SZ=Swaziland LocaleNames/nl/TC=Turks- en Caicoseilanden LocaleNames/nl/TD=Tsjaad -LocaleNames/nl/TF=Franse Zuidelijke Gebieden +LocaleNames/nl/TF=Franse Gebieden in de zuidelijke Indische Oceaan LocaleNames/nl/TG=Togo LocaleNames/nl/TH=Thailand LocaleNames/nl/TJ=Tadzjikistan @@ -6651,7 +6643,7 @@ CurrencyNames/it/iep=sterlina irlandese CurrencyNames/it/mzn=metical mozambicano CurrencyNames/it/rsd=dinaro serbo CurrencyNames/it/sdg=sterlina sudanese -CurrencyNames/it/srd=dollaro surinamese +CurrencyNames/it/srd=dollaro del Suriname CurrencyNames/it/vef=bol\u00edvar venezuelano CurrencyNames/it/xag=argento CurrencyNames/it/xpd=palladio @@ -6820,7 +6812,7 @@ CurrencyNames/sv/mkd=makedonisk denar CurrencyNames/sv/mmk=myanmarisk kyat CurrencyNames/sv/mnt=mongolisk t\u00f6gr\u00f6g CurrencyNames/sv/mop=macaosk pataca -CurrencyNames/sv/mro=mauretansk ouquiya +CurrencyNames/sv/mro=mauretansk ouguiya CurrencyNames/sv/mtl=maltesisk lire CurrencyNames/sv/mur=mauritisk rupie CurrencyNames/sv/mvr=maldivisk rufiyaa @@ -6900,7 +6892,7 @@ CurrencyNames/sv/xfo=fransk guldfranc CurrencyNames/sv/xpd=palladium CurrencyNames/sv/xpt=platina CurrencyNames/sv/xts=test-valutakod -CurrencyNames/sv/xxx=ok\u00e4nd eller ogiltig valuta +CurrencyNames/sv/xxx=ok\u00e4nd valuta CurrencyNames/sv/yer=jemenitisk rial CurrencyNames/sv/yum=jugoslavisk dinar (1994\u20132002) CurrencyNames/sv/zar=sydafrikansk rand @@ -7072,8 +7064,8 @@ FormatData//DayNarrows/3=W FormatData//DayNarrows/4=T FormatData//DayNarrows/5=F FormatData//DayNarrows/6=S -FormatData//narrow.AmPmMarkers/0=a -FormatData//narrow.AmPmMarkers/1=p +FormatData//narrow.AmPmMarkers/0=AM +FormatData//narrow.AmPmMarkers/1=PM FormatData//narrow.Eras/0=BCE FormatData//narrow.Eras/1=CE FormatData//buddhist.narrow.Eras/0=BC @@ -7498,13 +7490,13 @@ FormatData/ru/standalone.DayNarrows/4=\u0427 FormatData/ru/standalone.DayNarrows/5=\u041f FormatData/ru/standalone.DayNarrows/6=\u0421 -FormatData/sk/DayNarrows/0=N -FormatData/sk/DayNarrows/1=P -FormatData/sk/DayNarrows/2=U -FormatData/sk/DayNarrows/3=S -FormatData/sk/DayNarrows/4=\u0160 -FormatData/sk/DayNarrows/5=P -FormatData/sk/DayNarrows/6=S +FormatData/sk/DayNarrows/0=n +FormatData/sk/DayNarrows/1=p +FormatData/sk/DayNarrows/2=u +FormatData/sk/DayNarrows/3=s +FormatData/sk/DayNarrows/4=\u0161 +FormatData/sk/DayNarrows/5=p +FormatData/sk/DayNarrows/6=s FormatData/sl/DayNarrows/0=n FormatData/sl/DayNarrows/1=p @@ -7563,8 +7555,8 @@ FormatData/sv/standalone.DayNarrows/5=F FormatData/sv/standalone.DayNarrows/6=L FormatData/sv/narrow.Eras/0=f.Kr. FormatData/sv/narrow.Eras/1=e.Kr. -FormatData/sv/narrow.AmPmMarkers/0=f -FormatData/sv/narrow.AmPmMarkers/1=e +FormatData/sv/narrow.AmPmMarkers/0=fm +FormatData/sv/narrow.AmPmMarkers/1=em FormatData/th/standalone.MonthNarrows/0=\u0e21.\u0e04. FormatData/th/standalone.MonthNarrows/1=\u0e01.\u0e1e. @@ -7684,14 +7676,14 @@ LocaleNames/sv/ZA=Sydafrika FormatData/sv_SE/NumberPatterns/2=#,##0\u00a0% # bug 8017142 -FormatData/es_CL/TimePatterns/0=h:mm:ss a zzzz -FormatData/es_CL/TimePatterns/1=h:mm:ss a z -FormatData/es_CL/TimePatterns/2=h:mm:ss a -FormatData/es_CL/TimePatterns/3=h:mm a -FormatData/es_EC/TimePatterns/0=h:mm:ss a zzzz -FormatData/es_EC/TimePatterns/1=h:mm:ss a z -FormatData/es_EC/TimePatterns/2=h:mm:ss a -FormatData/es_EC/TimePatterns/3=h:mm a +FormatData/es_CL/TimePatterns/0=HH:mm:ss zzzz +FormatData/es_CL/TimePatterns/1=HH:mm:ss z +FormatData/es_CL/TimePatterns/2=HH:mm:ss +FormatData/es_CL/TimePatterns/3=HH:mm +FormatData/es_EC/TimePatterns/0=HH:mm:ss zzzz +FormatData/es_EC/TimePatterns/1=HH:mm:ss z +FormatData/es_EC/TimePatterns/2=HH:mm:ss +FormatData/es_EC/TimePatterns/3=HH:mm # bug 8037343 FormatData/es_DO/DatePatterns/2=d MMM y diff --git a/jdk/test/sun/text/resources/LocaleDataTest.java b/jdk/test/sun/text/resources/LocaleDataTest.java index 86ccbd594b3..6f1dca3e0d0 100644 --- a/jdk/test/sun/text/resources/LocaleDataTest.java +++ b/jdk/test/sun/text/resources/LocaleDataTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 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 @@ -37,6 +37,7 @@ * 7003124 7085757 7028073 7171028 7189611 8000983 7195759 8004489 8006509 * 7114053 7074882 7040556 8008577 8013836 8021121 6192407 6931564 8027695 * 8017142 8037343 8055222 8042126 8074791 8075173 8080774 8129361 8134916 + * 8145136 * @summary Verify locale data * @modules java.base/sun.util.resources * @run main LocaleDataTest diff --git a/jdk/test/sun/util/resources/cldr/Bug8145136.java b/jdk/test/sun/util/resources/cldr/Bug8145136.java new file mode 100644 index 00000000000..8a9f34e6f24 --- /dev/null +++ b/jdk/test/sun/util/resources/cldr/Bug8145136.java @@ -0,0 +1,151 @@ + +/* + * 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + + /* + * @test + * @bug 8145136 + * @summary Tests CLDR 28/29 newly added feature LikelySubtags is correctly reflected in JDK. + * @run main/othervm -Djava.locale.providers=CLDR Bug8145136 + */ +import java.util.Arrays; +import java.util.List; +import java.util.Locale; +import java.util.stream.Collectors; + +public class Bug8145136 { + + public static void main(String[] args) { + /* This Golden data is names of all *.xml files which contain locale + specific data in CLDR 29. With newly added feature LikelySubtags, + these locales should be present in output of getAvailableLocales() + method. + */ + List likelySubtagsLocales = List.of("", "af-NA", "af", "af-ZA", + "agq-CM", "agq", "ak-GH", "ak", "am-ET", "am", "ar-001", "ar-AE", + "ar-BH", "ar-DJ", "ar-DZ", "ar-EG", "ar-EH", "ar-ER", "ar-IL", + "ar-IQ", "ar-JO", "ar-KM", "ar-KW", "ar-LB", "ar-LY", "ar-MA", + "ar-MR", "ar-OM", "ar-PS", "ar-QA", "ar-SA", "ar-SD", "ar-SO", + "ar-SS", "ar-SY", "ar-TD", "ar-TN", "ar", "ar-YE", "asa-TZ", + "asa", "as-IN", "ast-ES", "ast", "as", "az-Cyrl-AZ", "az-Cyrl", + "az-Latn-AZ", "az-Latn", "az", "bas-CM", "bas", "be-BY", "bem", + "bem-ZM", "be", "bez-TZ", "bez", "bg-BG", "bg", "bm-ML", "bm", + "bn-BD", "bn-IN", "bn", "bo-CN", "bo-IN", "bo", "br-FR", "brx-IN", + "br", "brx", "bs-Cyrl-BA", "bs-Cyrl", "bs-Latn-BA", "bs-Latn", + "bs", "ca-AD", "ca-ES-VALENCIA", "ca-ES", "ca-FR", "ca-IT", "ca", + "ce-RU", "ce", "cgg-UG", "cgg", "chr-US", "chr", "ckb-IQ", "ckb-IR", + "ckb", "cs-CZ", "cs", "cu-RU", "cu", "cy-GB", "cy", "da-DK", + "da-GL", "dav-KE", "dav", "da", "de-AT", "de-BE", "de-CH", "de-DE", + "de-LI", "de-LU", "de", "dje-NE", "dje", "dsb-DE", "dsb", "dua-CM", + "dua", "dyo-SN", "dyo", "dz-BT", "dz", "ebu-KE", "ebu", "ee-GH", + "ee-TG", "ee", "el-CY", "el-GR", "el", "en-001", "en-150", "en-AG", + "en-AI", "en-AS", "en-AT", "en-AU", "en-BB", "en-BE", "en-BI", + "en-BM", "en-BS", "en-BW", "en-BZ", "en-CA", "en-CC", "en-CH", + "en-CK", "en-CM", "en-CX", "en-CY", "en-DE", "en-DG", "en-DK", + "en-DM", "en-ER", "en-FI", "en-FJ", "en-FK", "en-FM", "en-GB", + "en-GD", "en-GG", "en-GH", "en-GI", "en-GM", "en-GU", "en-GY", + "en-HK", "en-IE", "en-IL", "en-IM", "en-IN", "en-IO", "en-JE", + "en-JM", "en-KE", "en-KI", "en-KN", "en-KY", "en-LC", "en-LR", + "en-LS", "en-MG", "en-MH", "en-MO", "en-MP", "en-MS", "en-MT", + "en-MU", "en-MW", "en-MY", "en-NA", "en-NF", "en-NG", "en-NL", + "en-NR", "en-NU", "en-NZ", "en-PG", "en-PH", "en-PK", "en-PN", + "en-PR", "en-PW", "en-RW", "en-SB", "en-SC", "en-SD", "en-SE", + "en-SG", "en-SH", "en-SI", "en-SL", "en-SS", "en-SX", "en-SZ", + "en-TC", "en-TK", "en-TO", "en-TT", "en-TV", "en-TZ", "en-UG", + "en-UM", "en-US-POSIX", "en-US", "en-VC", "en-VG", "en-VI", + "en-VU", "en-WS", "en", "en-ZA", "en-ZM", "en-ZW", "eo-001", + "eo", "es-419", "es-AR", "es-BO", "es-BR", "es-CL", "es-CO", + "es-CR", "es-CU", "es-DO", "es-EA", "es-EC", "es-ES", "es-GQ", + "es-GT", "es-HN", "es-IC", "es-MX", "es-NI", "es-PA", "es-PE", + "es-PH", "es-PR", "es-PY", "es-SV", "es-US", "es-UY", "es-VE", + "es", "et-EE", "et", "eu-ES", "eu", "ewo-CM", "ewo", "fa-AF", + "fa-IR", "fa", "ff-CM", "ff-GN", "ff-MR", "ff-SN", "ff", "fi-FI", + "fil-PH", "fil", "fi", "fo-DK", "fo-FO", "fo", "fr-BE", "fr-BF", + "fr-BI", "fr-BJ", "fr-BL", "fr-CA", "fr-CD", "fr-CF", "fr-CG", + "fr-CH", "fr-CI", "fr-CM", "fr-DJ", "fr-DZ", "fr-FR", "fr-GA", + "fr-GF", "fr-GN", "fr-GP", "fr-GQ", "fr-HT", "fr-KM", "fr-LU", + "fr-MA", "fr-MC", "fr-MF", "fr-MG", "fr-ML", "fr-MQ", "fr-MR", + "fr-MU", "fr-NC", "fr-NE", "fr-PF", "fr-PM", "fr-RE", "fr-RW", + "fr-SC", "fr-SN", "fr-SY", "fr-TD", "fr-TG", "fr-TN", "fr-VU", + "fr-WF", "fr", "fr-YT", "fur-IT", "fur", "fy-NL", "fy", "ga-IE", + "ga", "gd-GB", "gd", "gl-ES", "gl", "gsw-CH", "gsw-FR", "gsw-LI", + "gsw", "gu-IN", "gu", "guz-KE", "guz", "gv-IM", "gv", "ha-GH", "ha-NE", + "ha-NG", "haw-US", "haw", "ha", "iw-IL", "iw", "hi-IN", "hi", "hr-BA", + "hr-HR", "hr", "hsb-DE", "hsb", "hu-HU", "hu", "hy-AM", "hy", "in-ID", + "in", "ig-NG", "ig", "ii-CN", "ii", "is-IS", "is", "it-CH", "it-IT", + "it-SM", "it", "ja-JP", "ja", "jgo-CM", "jgo", "jmc-TZ", "jmc", "kab-DZ", + "kab", "ka-GE", "kam-KE", "kam", "ka", "kde-TZ", "kde", "kea-CV", "kea", + "khq-ML", "khq", "ki-KE", "ki", "kkj-CM", "kkj", "kk-KZ", "kk", "kl-GL", + "kln-KE", "kln", "kl", "km-KH", "km", "kn-IN", "kn", "kok-IN", "ko-KP", + "ko-KR", "kok", "ko", "ksb-TZ", "ksb", "ksf-CM", "ksf", "ksh-DE", "ksh", + "ks-IN", "ks", "kw-GB", "kw", "ky-KG", "ky", "lag-TZ", "lag", "lb-LU", + "lb", "lg-UG", "lg", "lkt-US", "lkt", "ln-AO", "ln-CD", "ln-CF", "ln-CG", + "ln", "lo-LA", "lo", "lrc-IQ", "lrc-IR", "lrc", "lt-LT", "lt", "lu-CD", + "luo-KE", "luo", "lu", "luy-KE", "luy", "lv-LV", "lv", "mas-KE", "mas-TZ", + "mas", "mer-KE", "mer", "mfe-MU", "mfe", "mgh-MZ", "mgh", "mg-MG", "mgo-CM", + "mgo", "mg", "mk-MK", "mk", "ml-IN", "ml", "mn-MN", "mn", "mr-IN", "mr", + "ms-BN", "ms-MY", "ms-SG", "ms", "mt-MT", "mt", "mua-CM", "mua", "my-MM", + "my", "mzn-IR", "mzn", "naq-NA", "naq", "nb-NO", "nb-SJ", "nb", "nd", + "nd-ZW", "ne-IN", "ne-NP", "ne", "nl-AW", "nl-BE", "nl-BQ", "nl-CW", + "nl-NL", "nl-SR", "nl-SX", "nl", "nmg-CM", "nmg", "nnh-CM", "nnh", + "nn-NO", "nn", "nus-SS", "nus", "nyn-UG", "nyn", "om-ET", "om-KE", + "om", "or-IN", "or", "os-GE", "os-RU", "os", "pa-Arab-PK", "pa-Arab", + "pa-Guru-IN", "pa-Guru", "pa", "pl-PL", "pl", "prg-001", "prg", "ps-AF", + "ps", "pt-AO", "pt-BR", "pt-CH", "pt-CV", "pt-GQ", "pt-GW", "pt-LU", + "pt-MO", "pt-MZ", "pt-PT", "pt-ST", "pt-TL", "pt", "qu-BO", "qu-EC", + "qu-PE", "qu", "rm-CH", "rm", "rn-BI", "rn", "rof-TZ", "rof", "ro-MD", + "ro-RO", "ro", "ru-BY", "ru-KG", "ru-KZ", "ru-MD", "ru-RU", "ru-UA", + "ru", "rwk-TZ", "rwk", "rw-RW", "rw", "sah-RU", "sah", "saq-KE", + "saq", "sbp-TZ", "sbp", "se-FI", "seh-MZ", "seh", "se-NO", "se-SE", + "ses-ML", "ses", "se", "sg-CF", "sg", "shi-Latn-MA", "shi-Latn", + "shi-Tfng-MA", "shi-Tfng", "shi", "si-LK", "si", "sk-SK", "sk", + "sl-SI", "sl", "smn-FI", "smn", "sn", "sn-ZW", "so-DJ", "so-ET", + "so-KE", "so-SO", "so", "sq-AL", "sq-MK", "sq-XK", "sq", "sr-Cyrl-BA", + "sr-Cyrl-ME", "sr-Cyrl-RS", "sr-Cyrl-XK", "sr-Cyrl", "sr-Latn-BA", + "sr-Latn-ME", "sr-Latn-RS", "sr-Latn-XK", "sr-Latn", "sr", "sv-AX", + "sv-FI", "sv-SE", "sv", "sw-CD", "sw-KE", "sw-TZ", "sw-UG", "sw", + "ta-IN", "ta-LK", "ta-MY", "ta-SG", "ta", "te-IN", "teo-KE", "teo-UG", + "teo", "te", "th-TH", "th", "ti-ER", "ti-ET", "ti", "tk-TM", "tk", + "to-TO", "to", "tr-CY", "tr-TR", "tr", "twq-NE", "twq", "tzm-MA", "tzm", + "ug-CN", "ug", "uk-UA", "uk", "ur-IN", "ur-PK", "ur", "uz-Arab-AF", + "uz-Arab", "uz-Cyrl-UZ", "uz-Cyrl", "uz-Latn-UZ", "uz-Latn", "uz", + "vai-Latn-LR", "vai-Latn", "vai-Vaii-LR", "vai-Vaii", "vai", "vi-VN", + "vi", "vo-001", "vo", "vun-TZ", "vun", "wae-CH", "wae", "xog-UG", + "xog", "yav-CM", "yav", "ji-001", "ji", "yo-BJ", "yo-NG", "yo", + "yue-HK", "yue", "zgh-MA", "zgh", "zh-Hans-CN", "zh-Hans-HK", + "zh-Hans-MO", "zh-Hans-SG", "zh-Hans", "zh-Hant-HK", "zh-Hant-MO", + "zh-Hant-TW", "zh-Hant", "zh", "zu", "zu-ZA"); + List availableLocales = Arrays.asList(Locale.getAvailableLocales()); + + List localesNotFound = likelySubtagsLocales.stream() + .map(Locale::forLanguageTag) + .filter(l -> !availableLocales.contains(l)) + .collect(Collectors.toList()); + + if (localesNotFound.size() > 0) { + throw new RuntimeException("Locales " + localesNotFound + + " not found in Available Locales list"); + } + } + +} diff --git a/jdk/test/tools/jlink/plugins/IncludeLocalesPluginTest.java b/jdk/test/tools/jlink/plugins/IncludeLocalesPluginTest.java index 357541a3144..4fe653bdd4c 100644 --- a/jdk/test/tools/jlink/plugins/IncludeLocalesPluginTest.java +++ b/jdk/test/tools/jlink/plugins/IncludeLocalesPluginTest.java @@ -186,7 +186,7 @@ public class IncludeLocalesPluginTest { "/jdk.localedata/sun/text/resources/cldr/ext/FormatData_en_001.class", "/jdk.localedata/sun/text/resources/cldr/ext/FormatData_en_IN.class", "/jdk.localedata/sun/util/resources/cldr/ext/CalendarData_kok_IN.class", - "/jdk.localedata/sun/util/resources/cldr/ext/CalendarData_ks_Arab_IN.class"), + "/jdk.localedata/sun/util/resources/cldr/ext/CalendarData_pa_Guru_IN.class"), List.of( "/jdk.localedata/sun/text/resources/LineBreakIteratorData_th", "/jdk.localedata/sun/text/resources/thai_dict", diff --git a/jdk/test/tools/jlink/plugins/InstalledModuleDescriptors/UserModuleTest.java b/jdk/test/tools/jlink/plugins/InstalledModuleDescriptors/UserModuleTest.java index f5bbe62bcb3..e197acfa50c 100644 --- a/jdk/test/tools/jlink/plugins/InstalledModuleDescriptors/UserModuleTest.java +++ b/jdk/test/tools/jlink/plugins/InstalledModuleDescriptors/UserModuleTest.java @@ -119,7 +119,7 @@ public class UserModuleTest { Path java = IMAGE.resolve("bin").resolve("java"); assertTrue(executeProcess(java.toString(), - "-Djdk.installed.modules.disable", + "-Djdk.system.module.finder.disabledFastPath", "-m", "m1/p1.Main") .outputTo(System.out) .errorTo(System.out) diff --git a/jdk/test/tools/launcher/modules/patch/basic/PatchTest.java b/jdk/test/tools/launcher/modules/patch/basic/PatchTest.java index 971362061ab..8b8290c7b6b 100644 --- a/jdk/test/tools/launcher/modules/patch/basic/PatchTest.java +++ b/jdk/test/tools/launcher/modules/patch/basic/PatchTest.java @@ -177,7 +177,7 @@ public class PatchTest { /** * Run test with -Xpatch and patches in JAR files */ - public void testWitJarPatches() throws Exception { + public void testWithJarPatches() throws Exception { // patches/java.base-1.jar:patches/java-base-2.jar String basePatches = PATCHES_DIR.resolve("java.base-1.jar") @@ -193,4 +193,24 @@ public class PatchTest { } + + /** + * Run test with -Xpatch and patches in JAR files and exploded patches + */ + public void testWithJarAndExplodedPatches() throws Exception { + + // patches/java.base-1.jar:patches2/java.base + String basePatches = PATCHES_DIR.resolve("java.base-1.jar") + + File.pathSeparator + PATCHES2_DIR.resolve("java.base"); + + // patches1/jdk.naming.dns:patches/jdk.naming.dns-2.jar + String dnsPatches = PATCHES1_DIR.resolve("jdk.naming.dns") + + File.pathSeparator + PATCHES_DIR.resolve("jdk.naming.dns-2.jar"); + + String compilerPatches = PATCHES1_DIR.resolve("jdk.compiler") + + File.pathSeparator + PATCHES_DIR.resolve("jdk.compiler-2.jar"); + + runTest(basePatches, dnsPatches, compilerPatches); + + } } diff --git a/jdk/test/tools/launcher/modules/upgrademodulepath/src/test/jdk/test/Main.java b/jdk/test/tools/launcher/modules/upgrademodulepath/src/test/jdk/test/Main.java index 9f87f53a0b7..e5540aded8b 100644 --- a/jdk/test/tools/launcher/modules/upgrademodulepath/src/test/jdk/test/Main.java +++ b/jdk/test/tools/launcher/modules/upgrademodulepath/src/test/jdk/test/Main.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 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,12 @@ package jdk.test; -import javax.transaction.Transaction; +import java.lang.module.ModuleReference; +import java.lang.reflect.Layer; +import java.net.URI; + import javax.enterprise.context.Scope; +import javax.transaction.Transaction; /** * Uses an upgraded version of module java.transaction. @@ -34,6 +38,7 @@ public class Main { public static void main(String[] args) { + String TRANSACTION_MODULE = "java.transaction"; ClassLoader scl = ClassLoader.getSystemClassLoader(); ClassLoader pcl = ClassLoader.getPlatformClassLoader(); assertTrue(pcl.getParent() == null); @@ -43,9 +48,17 @@ public class Main { // javax.transaction.Transaction should be in module java.transaction // and defined by the platform class loader - assertTrue(Transaction.class.getModule().getName().equals("java.transaction")); + assertTrue(Transaction.class.getModule().getName().equals(TRANSACTION_MODULE)); assertTrue(Transaction.class.getClassLoader() == pcl); + // javax.transaction should be found in boot layer. + ModuleReference ref = + Layer.boot().configuration().findModule(TRANSACTION_MODULE).get().reference(); + // check uri of java.transaction found on the upgrade module path. + URI uri = ref.location().get(); + System.out.println("uri: " + uri); + assertTrue(uri.getScheme().equalsIgnoreCase("file")); + // javax.enterprise.context.Scope should be in module java.enterprise // and defined by the application class loader assertTrue(Scope.class.getModule().getName().equals("java.enterprise")); diff --git a/jdk/test/tools/pack200/BandIntegrity.java b/jdk/test/tools/pack200/BandIntegrity.java index 3aa65ff07f4..46a10592e11 100644 --- a/jdk/test/tools/pack200/BandIntegrity.java +++ b/jdk/test/tools/pack200/BandIntegrity.java @@ -26,7 +26,6 @@ * @summary test ensures the proper sequencing of bands, dump bands as well. * @compile -XDignore.symbol.file Utils.java BandIntegrity.java * @run main BandIntegrity - * @key intermittent * @author ksrini */ import java.io.File; diff --git a/langtools/.hgtags b/langtools/.hgtags index 28b589f49ec..22c89e3d14e 100644 --- a/langtools/.hgtags +++ b/langtools/.hgtags @@ -362,3 +362,4 @@ cba09a2e6ae969b029783eb59bb01017b78f8eef jdk-9+114 59adcdd0cd3b6724b4fc0083c258bf4682689f2f jdk-9+117 59a16fa5dedea9ff5bea0a501e4d0d40193426f3 jdk-9+118 6347efd1be03b4fdcf18f64c4fe4be5f60c0831a jdk-9+119 +0f81cdd51b42ad38fbceae40985e9bd0bca12180 jdk-9+120 diff --git a/langtools/make/build.xml b/langtools/make/build.xml index 564c2b5299a..b894201c341 100644 --- a/langtools/make/build.xml +++ b/langtools/make/build.xml @@ -89,11 +89,17 @@ + + + + + +